diff --git a/.editorconfig b/.editorconfig index 4536ecd57..bc65a4709 100644 --- a/.editorconfig +++ b/.editorconfig @@ -12,7 +12,7 @@ indent_style = space indent_size = 8 trim_trailing_whitespace = true -[*.{ASM,INC,asm,inc,nasm,lst}] +[*.{ASM,INC,MAC,NASM,LST,asm,inc,mac,nasm,lst}] indent_style = tab indent_size = 8 trim_trailing_whitespace = true diff --git a/.gitignore b/.gitignore index dc0e6f10d..39790485a 100644 --- a/.gitignore +++ b/.gitignore @@ -18,6 +18,7 @@ node_modules archive/ c64/ ecp/ +projects/ private/ src/ tmp/ diff --git a/Gruntfile.js b/Gruntfile.js index 11f87e138..702f6e821 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -118,12 +118,14 @@ module.exports = function(grunt) { * @property {string} version * @property {Array.} c1pJSFiles * @property {Array.} pcJSFiles + * @property {Array.} pc8080Files * @property {Array.} closureCompilerExterns */ var pkg = grunt.file.readJSON("package.json"); var tmpC1Pjs = "./tmp/c1pjs/" + pkg.version + "/c1p.js"; var tmpPCjs = "./tmp/pcjs/" + pkg.version + "/pc.js"; + var tmpPC8080 = "./tmp/pc8080/" + pkg.version + "/pc8080.js"; grunt.initConfig({ pkg: pkg, // pass the "package.json" object to initConfig() as a property, too @@ -164,6 +166,19 @@ module.exports = function(grunt) { src: pkg.pcJSFiles, dest: "./versions/pcjs/" + pkg.version + "/pc-dbg.js" }, + "pc8080.js": { + src: pkg.pc8080Files, + dest: "./versions/pc8080/" + pkg.version + "/pc8080.js", + options: { + process: function(src, filepath) { + return (path.basename(filepath) == "debugger.js"? "" : src); + } + } + }, + "pc8080-dbg.js": { + src: pkg.pc8080Files, + dest: "./versions/pc8080/" + pkg.version + "/pc8080-dbg.js" + }, "tmp-c1pjs": { src: pkg.c1pJSFiles, dest: tmpC1Pjs, @@ -185,7 +200,19 @@ module.exports = function(grunt) { src.replace(/(^|\n)[ \t]*(['"])use strict\2;?\s*/g, '$1').replace(/[ \t]*if\s*\(NODE\)\s*(\{[^}]*}|[^\n]*)(\n|$)/gm, '').replace(/[ \t]*if\s*\(typeof\s+(module|APP_PCJS)\s*!==\s*(['"])undefined\2\)\s*(\{[^}]*}|[^\n]*)(\n|$)/gm, '').replace(/[ \t]*[A-Za-z_][A-Za-z0-9_\.]*\.assert\([^\n]*\);[^\n]*/g, ''); } } + }, + "tmp-pc8080": { + src: pkg.pc8080Files, + dest: tmpPC8080, + options: { + banner: '"use strict";\n\n', + process: function(src, filepath) { + return "// " + filepath + "\n\n" + + src.replace(/(^|\n)[ \t]*(['"])use strict\2;?\s*/g, '$1').replace(/[ \t]*if\s*\(NODE\)\s*(\{[^}]*}|[^\n]*)(\n|$)/gm, '').replace(/[ \t]*if\s*\(typeof\s+(module|APP_PCJS)\s*!==\s*(['"])undefined\2\)\s*(\{[^}]*}|[^\n]*)(\n|$)/gm, '').replace(/[ \t]*[A-Za-z_][A-Za-z0-9_\.]*\.assert\([^\n]*\);[^\n]*/g, ''); + } + } } + }, prepjs: { options: { @@ -201,6 +228,10 @@ module.exports = function(grunt) { "pc.js": { src: pkg.pcJSFiles, dest: tmpPCjs + }, + "pc8080.js": { + src: pkg.pc8080Files, + dest: tmpPC8080 } }, closureCompiler: { @@ -290,7 +321,7 @@ module.exports = function(grunt) { }, // src: pkg.pcJSFiles, src: tmpPCjs, - dest: "./versions/" + pkg.name + "/" + pkg.version + "/pc.js" + dest: "./versions/pcjs/" + pkg.version + "/pc.js" }, "pc-dbg.js": { /* @@ -305,7 +336,34 @@ module.exports = function(grunt) { }, // src: pkg.pcJSFiles, src: tmpPCjs, - dest: "./versions/" + pkg.name + "/" + pkg.version + "/pc-dbg.js" + dest: "./versions/pcjs/" + pkg.version + "/pc-dbg.js" + }, + "pc8080.js": { + TEMPcompilerOpts: { + // create_source_map: "./tmp/pc8080/" + pkg.version + "/pc8080.map", + define: ["\"APPNAME='PC8080'\"", "\"APPVERSION='" + pkg.version + "'\"", + "\"SITEHOST='www.pcjs.org'\"", "COMPILED=true", "DEBUG=false", "DEBUGGER=false"], + // output_wrapper: "\"(function(){%output%})();//@ sourceMappingURL=/tmp/pc8080/" + pkg.version + "/pc8080.map\"" + output_wrapper: "\"(function(){%output%})();\"" + }, + // src: pkg.pc8080Files, + src: tmpPC8080, + dest: "./versions/pc8080/" + pkg.version + "/pc8080.js" + }, + "pc8080-dbg.js": { + /* + * Technically, this is the one case we don't need to override the default 'define' settings, but maybe it's best to be explicit. + */ + TEMPcompilerOpts: { + // create_source_map: "./tmp/pc8080/" + pkg.version + "/pc8080-dbg.map", + define: ["\"APPNAME='PC8080'\"", "\"APPVERSION='" + pkg.version + "'\"", + "\"SITEHOST='www.pcjs.org'\"", "COMPILED=true", "DEBUG=false", "DEBUGGER=true"], + // output_wrapper: "\"(function(){%output%})();//@ sourceMappingURL=/tmp/pc8080/" + pkg.version + "/pc8080-dbg.map\"" + output_wrapper: "\"(function(){%output%})();\"" + }, + // src: pkg.pc8080Files, + src: tmpPC8080, + dest: "./versions/pc8080/" + pkg.version + "/pc8080-dbg.js" } }, copy: { @@ -345,6 +403,25 @@ module.exports = function(grunt) { } } }, + "pc8080xsl": { + files: [ + { + cwd: "modules/shared/templates/", + src: ["common.css", "common.xsl", "document.css", "document.xsl", "machine.xsl", "manifest.xsl", "outline.xsl"], + dest: "versions/pc8080/<%= pkg.version %>/", + expand: true + } + ], + options: { + process: function(content, srcPath) { + var s = content.replace(/()[^<]*(<\/xsl:variable>)/g, "$1pc8080$2"); + s = s.replace(/()[^<]*(<\/xsl:variable>)/g, "$1" + pkg.version + "$2"); + s = s.replace(/"[^"]*\/?(common.css|common.xsl|components.css|components.xsl|document.css|document.xsl)"/g, '"/versions/pc8080/' + pkg.version + '/$1"'); + s = s.replace(/[ \t]*\/\*[^\*][\s\S]*?\*\//g, "").replace(/[ \t]*[ \t]*\n?/g, ""); + return s; + } + } + }, "c1pjs": { files: [ { @@ -365,7 +442,7 @@ module.exports = function(grunt) { "pcjs": { files: [ { - cwd: "modules/pcjs/templates/", + cwd: "modules/shared/templates/", src: ["components.*"], dest: "versions/pcjs/<%= pkg.version %>/", expand: true @@ -379,6 +456,24 @@ module.exports = function(grunt) { } } }, + "pc8080": { + files: [ + { + cwd: "modules/shared/templates/", + src: ["components.*"], + dest: "versions/pc8080/<%= pkg.version %>/", + expand: true + } + ], + options: { + process: function(content, srcPath) { + var s = content.replace(/()[^<]*(<\/xsl:variable>)/g, "$1pc8080$2"); + s = s.replace(/()[^<]*(<\/xsl:variable>)/g, "$1" + pkg.version + "$2"); + s = s.replace(/[ \t]*\/\*[^\*][\s\S]*?\*\//g, "").replace(/[ \t]*[ \t]*\n?/g, ""); + return s; + } + } + }, "examples": { files: [ { @@ -422,12 +517,13 @@ module.exports = function(grunt) { var contentOrig = content; var reManifest = /([ \t]*)/g, matchManifest; while ((matchManifest = reManifest.exec(contentOrig))) { - var sManifest = grunt.file.read(path.join('.', matchManifest[2])); + var sFile = matchManifest[2]; + var sManifest = grunt.file.read(path.join('.', sFile)); if (!sManifest) continue; var sDefaultName = "", match; match = sManifest.match(/(.*?)<\/title>/); if (match) { - sDefaultName = match[1]; + sDefaultName += match[1]; match = sManifest.match(/(.*?)<\/version>/); if (match) sDefaultName += ' ' + match[1]; } @@ -498,7 +594,7 @@ module.exports = function(grunt) { grunt.loadTasks("modules/grunts/prepjs/tasks"); - grunt.registerTask("preCompiler", grunt.option("rebuild")? ["concat:tmp-c1pjs", "concat:tmp-pcjs"] : ["newer:concat:tmp-c1pjs", "newer:concat:tmp-pcjs"]); + grunt.registerTask("preCompiler", grunt.option("rebuild")? ["concat:tmp-c1pjs", "concat:tmp-pcjs", "concat:tmp-pc8080"] : ["newer:concat:tmp-c1pjs", "newer:concat:tmp-pcjs", "newer:concat:tmp-pc8080"]); grunt.registerTask("compile", ["preCompiler", "closureCompiler", "replace:fix-source-maps"]); diff --git a/README.md b/README.md index 974fd5b83..e31830716 100644 --- a/README.md +++ b/README.md @@ -3,12 +3,15 @@ PCjs: The Virtual IBM PC Welcome to [PCjs](/docs/about/pcjs/), the first IBM PC simulation to run in your web browser without any plugins. It was added to the [JavaScript Machines](/docs/about/) project in Fall 2012, and it is now part of the -[PCjs Project](https://github.com/jeffpar/pcjs) on GitHub. The project includes: +[PCjs Project](https://github.com/jeffpar/pcjs) on GitHub. -* [PCjs](/docs/pcjs/), a simulation of the IBM PC and PC compatibles -* [C1Pjs](/docs/c1pjs/), a simulation of the 6502-based OSI Challenger 1P +The project includes the following web-based emulators: -PCjs first simulated the 4.77Mhz 8088-based IBM PC, and has steadily evolved to support more classic machines, +* [PCjs](/docs/pcjs/): an IBM PC and PC-compatible emulator +* [PC8080](/modules/pc8080/): an 8080-based machine emulation module +* [C1Pjs](/docs/c1pjs/): a simulation of the 6502-based OSI Challenger 1P + +PCjs first simulated the 4.77Mhz 8088-based IBM PC, and has steadily evolved to support more classic x86 machines, including the IBM PC XT, the 80286-based IBM PC AT, and the 80386-based COMPAQ DeskPro 386. PCjs fully supports the original machine original ROMs, video cards, etc, and all machines run at their original speeds. @@ -151,7 +154,8 @@ Using the `--host` option makes it possible to access the web server from other for example, you may want to run PCjs on your iPhone, iPad, or other wireless device. Another useful variation is `--config _config.yml,_developer.yml` which uses the settings in `_developer.yml` -to override the defaults in `_config.yml`. +to override the defaults in `_config.yml`. Using development (non-production) settings in `_developer.yml` is +analogous to running the Node web server with certain development options; see [Debugging PCjs](#debugging-pcjs). GitHub Pages says you can run `jekyll serve` instead of `bundle exec jekyll serve`, but with the addition of more gems to `Gemfile` (eg, `jekyll-sitemap`), running `jekyll serve` may trigger dependency errors on some systems. @@ -294,9 +298,10 @@ to the server, or both. Debugging PCjs --- -NOTE: The following information assumes you're running Node as your local web server, not Jekyll. You can still -debug PCjs while running Jekyll, using `http://localhost:4000/` and your favorite web browser's Developer Tools, -but none of the special server or client features discussed below will be available. +NOTE: The following information assumes you're running Node as your local web server, not Jekyll. You can certainly +debug PCjs while running Jekyll (ideally with `--config _config.yml,_developer.yml`), using `http://localhost:4000/` +and your favorite web browser's Developer Tools, but none of the special server or client features discussed below +will be available. ### Server Components diff --git a/_config.yml b/_config.yml index 09dc8f1b3..3ae5d1ad3 100644 --- a/_config.yml +++ b/_config.yml @@ -32,7 +32,7 @@ gems: pcjs: domain: pcjs.org # whereas site.url is used for linking purposes, site.pcjs.domain is used for display purposes - version: 1.21.6 # IMPORTANT: keep pcjs.version in sync with package.json:version + version: 1.21.7 # IMPORTANT: keep pcjs.version in sync with package.json:version compiled: true # by default, the compiled pcjs.version scripts will be used (eg, pc.js or pc-dbg.js) pc_scripts: # if pcjs.compiled is false, the following scripts will be included instead, in the order listed - /modules/shared/lib/defines.js @@ -98,3 +98,31 @@ pcjs: - /modules/c1pjs/lib/debugger.js - /modules/c1pjs/lib/computer.js - /modules/shared/lib/embed.js + pc8080_scripts: + - /modules/shared/lib/defines.js + - /modules/shared/lib/dumpapi.js + - /modules/shared/lib/reportapi.js + - /modules/shared/lib/userapi.js + - /modules/shared/lib/strlib.js + - /modules/shared/lib/usrlib.js + - /modules/shared/lib/weblib.js + - /modules/shared/lib/component.js + - /modules/pc8080/lib/defines.js + - /modules/pc8080/lib/cpudef.js + - /modules/pc8080/lib/messages.js + - /modules/pc8080/lib/panel.js + - /modules/pc8080/lib/bus.js + - /modules/pc8080/lib/memory.js + - /modules/pc8080/lib/cpu.js + - /modules/pc8080/lib/cpusim.js + - /modules/pc8080/lib/cpuops.js + - /modules/pc8080/lib/chipset.js + - /modules/pc8080/lib/rom.js + - /modules/pc8080/lib/ram.js + - /modules/pc8080/lib/keyboard.js + - /modules/pc8080/lib/video.js + - /modules/pc8080/lib/debugger.js + - /modules/pc8080/lib/state.js + - /modules/pc8080/lib/computer.js + - /modules/shared/lib/embed.js + - /modules/shared/lib/save.js diff --git a/_includes/machine-engines.html b/_includes/machine-engines.html index 4f570bbc5..b1eb20cab 100644 --- a/_includes/machine-engines.html +++ b/_includes/machine-engines.html @@ -5,7 +5,7 @@ in the Front Matter of our Markdown documents, for compatibility with the Jekyll 'id' (eg, "ibm5150") 'name' (eg, "IBM PC (Model 5150) with Monochrome Display") - 'type' ("pc" or "c1p") + 'type' (eg. "pc", "c1p", etc) 'debugger' (default is false) 'config' (default is "machine.xml") 'template' (default is "machine.xsl") @@ -34,6 +34,11 @@ of our Markdown or XML documents. Examples: 'automount' becomes 'autoMount', 'a {% endcomment %} {% for machine in page.machines %} {% capture machine_type %}{{ machine.type | remove:"-dbg" }}{% endcapture %} + {% if machine_type != "pc" and machine_type != "c1p" %} + {% capture machine_app %}{{ machine_type }}{% endcapture %} + {% else %} + {% capture machine_app %}{{ machine_type }}js{% endcapture %} + {% endif %} {% if machine.debugger %} {% capture machine_file %}{{ machine_type }}-dbg{% endcapture %} {% else %} @@ -88,17 +93,18 @@ of our Markdown or XML documents. Examples: 'automount' becomes 'autoMount', 'a {% endunless %} {% capture machine_parms %}{{ site.left_brace }}autoMount:{{ machine_autoMount }}{{ machine_autoPower }}{{ machine_autoStart }}{{ machine_drives }},state:"{{ machine.state }}",messages:"{{ machine.messages }}"{{ site.right_brace }}{% endcapture %} {% if site.pcjs.compiled == true and machine.uncompiled != true %} - {% capture machine_script %}{% endcapture %} + {% capture machine_script %}{% endcapture %} {% unless machine_scripts contains machine_script %} {{ machine_script }} {% endunless %} {% capture machine_scripts %}{{ machine_scripts }}{{ machine_script }}{% endcapture %} {% if machine_template == "" %} - {% capture machine_template %}{{ site.baseurl }}/versions/{{ machine_type }}js/{{ site.pcjs.version }}/components.xsl{% endcapture %} + {% capture machine_template %}{{ site.baseurl }}/versions/{{ machine_app }}/{{ site.pcjs.version }}/components.xsl{% endcapture %} {% endif %} {% else %} - {% if machine_type == "pc" %}{% assign array_scripts = site.pcjs.pc_scripts %}{% endif %} {% if machine_type == "c1p" %}{% assign array_scripts = site.pcjs.c1p_scripts %}{% endif %} + {% if machine_type == "pc" %}{% assign array_scripts = site.pcjs.pc_scripts %}{% endif %} + {% if machine_type == "pc8080" %}{% assign array_scripts = site.pcjs.pc8080_scripts %}{% endif %} {% for script in array_scripts %} {% if script != "/modules/shared/lib/nodebug.js" or machine.debug != true %} {% capture machine_script %}{% endcapture %} @@ -118,8 +124,12 @@ of our Markdown or XML documents. Examples: 'automount' becomes 'autoMount', 'a {% capture machine_scripts %}{{ machine_scripts }}{{ machine_script }}{% endcapture %} {% endif %} {% endfor %} - {% if machine_template == "" %} - {% capture machine_template %}{{ site.baseurl }}/modules/{{ machine_type }}js/templates/components.xsl{% endcapture %} + {% if machine_template == "" %} + {% if machine_app != "c1pjs" %} + {% capture machine_template %}{{ site.baseurl }}/modules/shared/templates/components.xsl{% endcapture %} + {% else %} + {% capture machine_template %}{{ site.baseurl }}/modules/{{ machine_app }}/templates/components.xsl{% endcapture %} + {% endif %} {% endif %} {% endif %} diff --git a/_includes/machine-styles.html b/_includes/machine-styles.html index c20ee94de..9c16c6098 100644 --- a/_includes/machine-styles.html +++ b/_includes/machine-styles.html @@ -1,8 +1,18 @@ {% for machine in page.machines %} + {% capture machine_type %}{{ machine.type | remove:"-dbg" }}{% endcapture %} + {% if machine_type != "pc" and machine_type != "c1p" %} + {% capture machine_app %}{{ machine_type }}{% endcapture %} + {% else %} + {% capture machine_app %}{{ machine_type }}js{% endcapture %} + {% endif %} {% unless site.pcjs.compiled == true and machine.uncompiled != true %} - {% capture machine_style %}{{ site.baseurl }}/modules/{{ machine.type | remove:'-dbg' }}js/templates/components.css{% endcapture %} + {% if machine_app != "c1pjs" %} + {% capture machine_style %}{{ site.baseurl }}/modules/shared/templates/components.css{% endcapture %} + {% else %} + {% capture machine_style %}{{ site.baseurl }}/modules/{{ machine_app }}/templates/components.css{% endcapture %} + {% endif %} {% else %} - {% capture machine_style %}{{ site.baseurl }}/versions/{{ machine.type | remove:'-dbg' }}js/{{ site.pcjs.version }}/components.css{% endcapture %} + {% capture machine_style %}{{ site.baseurl }}/versions/{{ machine_app }}/{{ site.pcjs.version }}/components.css{% endcapture %} {% endunless %} {% unless machine_styles contains machine_style %} diff --git a/_posts/2016-02-08-super-bowl-winner-pcjs.md b/_posts/2016-02-08-super-bowl-winner-pcjs.md index 7342150bb..aaeb71857 100644 --- a/_posts/2016-02-08-super-bowl-winner-pcjs.md +++ b/_posts/2016-02-08-super-bowl-winner-pcjs.md @@ -47,12 +47,8 @@ for example, models 5150 through 5170 refer to IBM PC models. --- -The IBM BASIC ROMs require a bit more research. I'm a little unclear on the precise history of the BASIC ROMs and -exactly which version shipped with each IBM PC machine revision. - -The project currently includes only two BASIC ROM versions, 1.00 and 1.10, which were initially released with the -first model 5150 and 5160 machines, respectively. However, I've also read reports that later revisions of the model -5150 included BASIC ROM 1.10 as well. +The project currently includes only two BASIC ROM versions, C1.00 and C1.10, which were initially released with the +first model 5150 and 5160 machines, respectively. For more details, see [IBM PC ROMs](/devices/pc/rom/). I believe there was also a BASIC ROM version 1.20 released for IBM PCjr, but since PCjs does not yet emulate the PCjr, it has not been added to the project. diff --git a/_posts/2016-04-30-the-intel-8080-cpu.md b/_posts/2016-04-30-the-intel-8080-cpu.md new file mode 100644 index 000000000..aa922e316 --- /dev/null +++ b/_posts/2016-04-30-the-intel-8080-cpu.md @@ -0,0 +1,56 @@ +--- +layout: post +title: The Intel 8080 CPU +date: 2016-04-30 14:00:00 +permalink: /blog/2016/04/30/ +--- + +We'd like to introduce [PC8080](/modules/pc8080/), a new 8080-based machine emulator recently added to the +PCjs Project. + +Our first [8080 Test Machine](/devices/pc8080/machine/test/) loads a copy of the +[8080 Exerciser](https://web.archive.org/web/20151006085348/http://www.idb.me.uk/sunhillow/8080.html) +(specifically, [8080EX1](/devices/pc8080/rom/test/8080EX1.MAC)) and intercepts the exerciser's CP/M console +calls so that you can see its progress in the Control Panel window. It's a "headless" test machine +(no keyboard or display), so that's all you get. + +The good news: PC8080 passes all the 8080 Exerciser tests. And it doesn't do it by using all sorts of weird +"flags tables", which most other 8080 emulations seem to fall back on. + +Like all the other CPU emulations in the PCjs Project, PC8080 never "calculates" the flags unless/until they are +actually required, which considerably speeds up arithmetic operations. + +Of particular note are the 8080's subtract, +compare, and decrement operations, which actually perform addition, not subtraction, by using two's complement +arithmetic in "stages": the first stage (inverting the source operand) occurs *before* the addition, while the second +stage (incrementing the inverted operand) occurs *after* the addition. And it appears to be the result of the *first* +stage, not the second, that determines the state of the Auxiliary Carry flag (AF). + +The behavior of the Auxiliary Carry flag (AF) and the associated DAA instruction are probably the most significant +(and least understood) *arithmetic* differences between the 8080 and all later x86-based CPUs. Well, there's also +the fact that the 8080 doesn't provide an Overflow flag (OF). Internally however, PC8080 retains the ability to +calculate overflow (since PC8080 was a fork of PCjs), which should be useful when we add Z80 support to PC8080. + +On a related note, [Ken Shirriff](http://www.righto.com/) has some fascinating blog posts on the 8085 that also +provide clues as to how the 8080 likely operates: + +* [Inside the ALU of the 8085 microprocessor (January 2013)](http://www.righto.com/2013/01/inside-alu-of-8085-microprocessor.html) +* [Silicon reverse engineering: The 8085's undocumented flags (February 2013)](http://www.righto.com/2013/02/looking-at-silicon-to-understanding.html) +* [The 8085's register file reverse engineered (March 2013)](http://www.righto.com/2013/03/register-file-8085.html) +* [Reverse-engineering the 8085's ALU and its hidden registers (July 2013)](http://www.righto.com/2013/07/reverse-engineering-8085s-alu-and-its.html) +* [Reverse-engineering the flag circuits in the 8085 processor (July 2013)](http://www.righto.com/2013/07/reverse-engineering-flag-circuits-in.html) +* [Reverse-engineering the 8085's decimal adjust circuitry (August 2013)](http://www.righto.com/2013/08/reverse-engineering-8085s-decimal.html) + +The idea is to make [PC8080](/modules/pc8080/) sufficiently configurable so that it will work with a variety of +8080-based systems, including those with memory-mapped video displays (like +[Space Invaders](/devices/pc8080/machine/invaders/)), as well as simpler terminal-based systems, like the CP/M-based +systems of old. + +In fact, as soon as Space Invaders is working, my next planned adaptation is a DEC VT100 terminal emulator (itself +an 8080-based machine) which can then be "wired up" to other PCjs machine simulations. This will not be yet-another +VT100-compatible emulation -- which, like 8080 emulators, has been done to death -- but rather a simulation +of the original VT100 hardware, building on [Adam Mayer's](https://github.com/phooky) work +[reverse-engineering the VT100](https://github.com/phooky/VT100-Hax). + +*[@jeffpar](http://twitter.com/jeffpar)* +*April 30, 2016* diff --git a/apps/pc/1981/visicalc/manifest.xml b/apps/pc/1981/visicalc/manifest.xml index afb061172..4823e9b66 100644 --- a/apps/pc/1981/visicalc/manifest.xml +++ b/apps/pc/1981/visicalc/manifest.xml @@ -1,5 +1,5 @@ - + VisiCalc @@ -13,6 +13,7 @@ Lotus Development + Demo: VisiCalc (1981) VC.COM README.md VisiCalc License diff --git a/apps/pc/1982/esuite/manifest.xml b/apps/pc/1982/esuite/manifest.xml index 51ca52324..762c444d8 100644 --- a/apps/pc/1982/esuite/manifest.xml +++ b/apps/pc/1982/esuite/manifest.xml @@ -1,5 +1,5 @@ - + Executive Suite @@ -9,7 +9,7 @@ 1982 - Executive Suite (1982) + Demo: Executive Suite (1982) ESUITE.COM GAME.DAT MobyGames diff --git a/apps/pc/1985/rogue/manifest.xml b/apps/pc/1985/rogue/manifest.xml index 3930f3139..a49221705 100644 --- a/apps/pc/1985/rogue/manifest.xml +++ b/apps/pc/1985/rogue/manifest.xml @@ -1,5 +1,5 @@ - + Rogue @@ -13,7 +13,7 @@ Jon Lane Michael Toy - Rogue (1985) + Demo: Rogue (1985) MKOPT.EXE ROGUE.COM ROGUE.EXE diff --git a/apps/pc/1987/thinktank/manifest.xml b/apps/pc/1987/thinktank/manifest.xml index 628c25468..e7d2232a6 100644 --- a/apps/pc/1987/thinktank/manifest.xml +++ b/apps/pc/1987/thinktank/manifest.xml @@ -1,5 +1,5 @@ - + ThinkTank 2.41NP @@ -8,7 +8,7 @@ Living Videotext September 25, 1987 - ThinkTank 2.41NP + Demo: ThinkTank (1987) AUTOEXEC.BAT READ_ME.DB READ_ME.SAV diff --git a/apps/pc/1988/moria/manifest.xml b/apps/pc/1988/moria/manifest.xml index 0296e5199..bc0771df1 100644 --- a/apps/pc/1988/moria/manifest.xml +++ b/apps/pc/1988/moria/manifest.xml @@ -1,5 +1,5 @@ - + The Dungeons of Moria 4.872 @@ -15,7 +15,7 @@ MSDOS port - Moria v4.872 + Demo: Moria 4.872 (1988) CONFIG.DOC GOD MADNESS1 diff --git a/apps/pc/1992/moria/manifest.xml b/apps/pc/1992/moria/manifest.xml index c7d53db6e..23d6e182b 100644 --- a/apps/pc/1992/moria/manifest.xml +++ b/apps/pc/1992/moria/manifest.xml @@ -1,5 +1,5 @@ - + The Dungeons of Moria 5.5 @@ -93,7 +93,7 @@ Macintosh port for Think C - Moria 5.5 + Demo: Moria 5.5 (1992) EXP.DOC MORIA.CNF MORIA1.TXT diff --git a/devices/c1p/machine/32kb/machine.xml b/devices/c1p/machine/32kb/machine.xml index 60cd7ebc5..dcf88ebf2 100644 --- a/devices/c1p/machine/32kb/machine.xml +++ b/devices/c1p/machine/32kb/machine.xml @@ -1,5 +1,5 @@ - + OSI Challenger 1P (32Kb) with Disk Support diff --git a/devices/c1p/machine/8kb/all/debugger/machine.xml b/devices/c1p/machine/8kb/all/debugger/machine.xml index c29d4dee8..13b5837b4 100644 --- a/devices/c1p/machine/8kb/all/debugger/machine.xml +++ b/devices/c1p/machine/8kb/all/debugger/machine.xml @@ -1,5 +1,5 @@ - + OSI Challenger 1P (8Kb, Additional Software) diff --git a/devices/c1p/machine/8kb/all/machine.xml b/devices/c1p/machine/8kb/all/machine.xml index a071cce97..cb8b1d88f 100644 --- a/devices/c1p/machine/8kb/all/machine.xml +++ b/devices/c1p/machine/8kb/all/machine.xml @@ -1,5 +1,5 @@ - + OSI Challenger 1P (8Kb, Additional Software) diff --git a/devices/c1p/machine/8kb/array/machine.xml b/devices/c1p/machine/8kb/array/machine.xml index eb6a66dae..3bb88c9a6 100644 --- a/devices/c1p/machine/8kb/array/machine.xml +++ b/devices/c1p/machine/8kb/array/machine.xml @@ -1,5 +1,5 @@ - + Challenger 1P (8Kb) "Server Array" diff --git a/devices/c1p/machine/8kb/large/debugger/machine.xml b/devices/c1p/machine/8kb/large/debugger/machine.xml index a16a735b8..40b505061 100644 --- a/devices/c1p/machine/8kb/large/debugger/machine.xml +++ b/devices/c1p/machine/8kb/large/debugger/machine.xml @@ -1,5 +1,5 @@ - + OSI Challenger 1P (8Kb) with Debugger diff --git a/devices/c1p/machine/8kb/large/machine.xml b/devices/c1p/machine/8kb/large/machine.xml index 88f6ee508..ca63fed88 100644 --- a/devices/c1p/machine/8kb/large/machine.xml +++ b/devices/c1p/machine/8kb/large/machine.xml @@ -1,5 +1,5 @@ - + OSI Challenger 1P (circa 1978) diff --git a/devices/c1p/machine/8kb/small/machine.xml b/devices/c1p/machine/8kb/small/machine.xml index bcc9b6466..34d80df60 100644 --- a/devices/c1p/machine/8kb/small/machine.xml +++ b/devices/c1p/machine/8kb/small/machine.xml @@ -1,5 +1,5 @@ - + diff --git a/devices/pc/machine/5150/cga/384kb/softkbd/machine.xml b/devices/pc/machine/5150/cga/384kb/softkbd/machine.xml index 6cf0c91ba..d7b702bf1 100644 --- a/devices/pc/machine/5150/cga/384kb/softkbd/machine.xml +++ b/devices/pc/machine/5150/cga/384kb/softkbd/machine.xml @@ -1,5 +1,5 @@ - + IBM PC (Model 5150), CGA, 384K diff --git a/devices/pc/machine/5150/cga/64kb/donkey/debugger/machine.xml b/devices/pc/machine/5150/cga/64kb/donkey/debugger/machine.xml index 6f3637b0d..76ffe26dc 100644 --- a/devices/pc/machine/5150/cga/64kb/donkey/debugger/machine.xml +++ b/devices/pc/machine/5150/cga/64kb/donkey/debugger/machine.xml @@ -1,5 +1,5 @@ - + IBM PC (Model 5150), CGA, 64K diff --git a/devices/pc/machine/5150/cga/64kb/donkey/machine.xml b/devices/pc/machine/5150/cga/64kb/donkey/machine.xml index 5494d9834..d217906ed 100644 --- a/devices/pc/machine/5150/cga/64kb/donkey/machine.xml +++ b/devices/pc/machine/5150/cga/64kb/donkey/machine.xml @@ -1,5 +1,5 @@ - + IBM PC (Model 5150), CGA, 64K diff --git a/devices/pc/machine/5150/cga/64kb/softkbd/machine.xml b/devices/pc/machine/5150/cga/64kb/softkbd/machine.xml index 5ccbf4160..3fafd4c9b 100644 --- a/devices/pc/machine/5150/cga/64kb/softkbd/machine.xml +++ b/devices/pc/machine/5150/cga/64kb/softkbd/machine.xml @@ -1,5 +1,5 @@ - + IBM PC (Model 5150), CGA, 64K diff --git a/devices/pc/machine/5150/dual/64kb/machine.xml b/devices/pc/machine/5150/dual/64kb/machine.xml index 87b67f653..71d923220 100644 --- a/devices/pc/machine/5150/dual/64kb/machine.xml +++ b/devices/pc/machine/5150/dual/64kb/machine.xml @@ -1,5 +1,5 @@ - + IBM PC (Model 5150) with Dual Displays diff --git a/devices/pc/machine/5150/mda/64kb/debugger/machine.xml b/devices/pc/machine/5150/mda/64kb/debugger/machine.xml index 151f54c82..f2439dc7c 100644 --- a/devices/pc/machine/5150/mda/64kb/debugger/machine.xml +++ b/devices/pc/machine/5150/mda/64kb/debugger/machine.xml @@ -1,5 +1,5 @@ - + IBM PC (Model 5150) with Monochrome Display diff --git a/devices/pc/machine/5150/mda/64kb/machine.xml b/devices/pc/machine/5150/mda/64kb/machine.xml index 17e4c9b3f..eb7ce184c 100644 --- a/devices/pc/machine/5150/mda/64kb/machine.xml +++ b/devices/pc/machine/5150/mda/64kb/machine.xml @@ -1,5 +1,5 @@ - + IBM PC (Model 5150) with Monochrome Display diff --git a/devices/pc/machine/5150/mda/64kb/softkbd/machine.xml b/devices/pc/machine/5150/mda/64kb/softkbd/machine.xml index e3407d1f9..c7c2ac1e1 100644 --- a/devices/pc/machine/5150/mda/64kb/softkbd/machine.xml +++ b/devices/pc/machine/5150/mda/64kb/softkbd/machine.xml @@ -1,5 +1,5 @@ - + IBM PC (Model 5150), MDA, 64K diff --git a/devices/pc/machine/5160/cga/256kb/array/machine.xml b/devices/pc/machine/5160/cga/256kb/array/machine.xml index 4121939e0..b8f7dd18a 100644 --- a/devices/pc/machine/5160/cga/256kb/array/machine.xml +++ b/devices/pc/machine/5160/cga/256kb/array/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT (Model 5160), CGA, 256K, 10Mb Drive diff --git a/devices/pc/machine/5160/cga/256kb/demo/debugger/machine.xml b/devices/pc/machine/5160/cga/256kb/demo/debugger/machine.xml index 915350158..61436e090 100644 --- a/devices/pc/machine/5160/cga/256kb/demo/debugger/machine.xml +++ b/devices/pc/machine/5160/cga/256kb/demo/debugger/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT (Model 5160), CGA, 256Kb, 10Mb Drive diff --git a/devices/pc/machine/5160/cga/256kb/demo/machine.xml b/devices/pc/machine/5160/cga/256kb/demo/machine.xml index b67dc0cb3..aa47dd1dd 100644 --- a/devices/pc/machine/5160/cga/256kb/demo/machine.xml +++ b/devices/pc/machine/5160/cga/256kb/demo/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT (Model 5160), CGA, 256Kb, 10Mb Drive diff --git a/devices/pc/machine/5160/cga/256kb/softkbd/machine.xml b/devices/pc/machine/5160/cga/256kb/softkbd/machine.xml index c3ab99763..f4fc83870 100644 --- a/devices/pc/machine/5160/cga/256kb/softkbd/machine.xml +++ b/devices/pc/machine/5160/cga/256kb/softkbd/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT (Model 5160), CGA, 256K, 10Mb Drive diff --git a/devices/pc/machine/5160/cga/256kb/win101/debugger/machine.xml b/devices/pc/machine/5160/cga/256kb/win101/debugger/machine.xml index dc7697c0b..a744db7f4 100644 --- a/devices/pc/machine/5160/cga/256kb/win101/debugger/machine.xml +++ b/devices/pc/machine/5160/cga/256kb/win101/debugger/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT (Model 5160) running Windows 1.01 diff --git a/devices/pc/machine/5160/cga/256kb/win101/machine.xml b/devices/pc/machine/5160/cga/256kb/win101/machine.xml index 73fce96e3..07e7a62cd 100644 --- a/devices/pc/machine/5160/cga/256kb/win101/machine.xml +++ b/devices/pc/machine/5160/cga/256kb/win101/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT (Model 5160) running Windows 1.01 @@ -16,7 +16,7 @@ - + diff --git a/devices/pc/machine/5160/cga/256kb/win101/softkbd/machine.xml b/devices/pc/machine/5160/cga/256kb/win101/softkbd/machine.xml index fa0842a98..32b26a1b8 100644 --- a/devices/pc/machine/5160/cga/256kb/win101/softkbd/machine.xml +++ b/devices/pc/machine/5160/cga/256kb/win101/softkbd/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT (Model 5160), CGA, 256K, Windows 1.01 diff --git a/devices/pc/machine/5160/cga/512kb/win101/softkbd/machine.xml b/devices/pc/machine/5160/cga/512kb/win101/softkbd/machine.xml index f2aec62e1..18f9442f3 100644 --- a/devices/pc/machine/5160/cga/512kb/win101/softkbd/machine.xml +++ b/devices/pc/machine/5160/cga/512kb/win101/softkbd/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT (Model 5160), CGA, 512K, WIN101 diff --git a/devices/pc/machine/5160/cga/640kb/debugger/machine.xml b/devices/pc/machine/5160/cga/640kb/debugger/machine.xml index a8c4e8311..87fb7acb6 100644 --- a/devices/pc/machine/5160/cga/640kb/debugger/machine.xml +++ b/devices/pc/machine/5160/cga/640kb/debugger/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT (Model 5160), CGA, 640K, 10Mb Drive @@ -13,9 +13,14 @@ + + Save HD + - + + + diff --git a/devices/pc/machine/5160/cga/640kb/machine.xml b/devices/pc/machine/5160/cga/640kb/machine.xml index 2b94eaf44..9677bdc6d 100644 --- a/devices/pc/machine/5160/cga/640kb/machine.xml +++ b/devices/pc/machine/5160/cga/640kb/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT (Model 5160), CGA, 640K, 10Mb Drive @@ -14,6 +14,11 @@ Reset - + + Save HD + + + + diff --git a/devices/pc/machine/5160/cga/640kb/softkbd/machine.xml b/devices/pc/machine/5160/cga/640kb/softkbd/machine.xml index 50f6686b6..cc0033d9f 100644 --- a/devices/pc/machine/5160/cga/640kb/softkbd/machine.xml +++ b/devices/pc/machine/5160/cga/640kb/softkbd/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT (Model 5160), CGA, 640K, 10Mb Drive diff --git a/devices/pc/machine/5160/ega/256kb/debugger/machine.xml b/devices/pc/machine/5160/ega/256kb/debugger/machine.xml index 84730cc63..ceb3fd6f8 100644 --- a/devices/pc/machine/5160/ega/256kb/debugger/machine.xml +++ b/devices/pc/machine/5160/ega/256kb/debugger/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT (Model 5160), 64K EGA, 256K RAM, 10Mb Hard Disk diff --git a/devices/pc/machine/5160/ega/256kb/machine.xml b/devices/pc/machine/5160/ega/256kb/machine.xml index 611b06664..e4f9485f6 100644 --- a/devices/pc/machine/5160/ega/256kb/machine.xml +++ b/devices/pc/machine/5160/ega/256kb/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT (Model 5160), 64K EGA, 256K RAM, 10Mb Hard Disk diff --git a/devices/pc/machine/5160/ega/640kb/array/machine.xml b/devices/pc/machine/5160/ega/640kb/array/machine.xml index 9decc27d9..d4dad71a8 100644 --- a/devices/pc/machine/5160/ega/640kb/array/machine.xml +++ b/devices/pc/machine/5160/ega/640kb/array/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT, 128K EGA, 640K RAM, 10Mb Hard Disk diff --git a/devices/pc/machine/5160/ega/640kb/debugger/machine.xml b/devices/pc/machine/5160/ega/640kb/debugger/machine.xml index c8ad75a7f..9b3e966b3 100644 --- a/devices/pc/machine/5160/ega/640kb/debugger/machine.xml +++ b/devices/pc/machine/5160/ega/640kb/debugger/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT, 128K EGA, 640K RAM, 10Mb Hard Disk diff --git a/devices/pc/machine/5160/ega/640kb/machine.xml b/devices/pc/machine/5160/ega/640kb/machine.xml index a3aedd285..d2295c63b 100644 --- a/devices/pc/machine/5160/ega/640kb/machine.xml +++ b/devices/pc/machine/5160/ega/640kb/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT, 128K EGA, 640K RAM, 10Mb Hard Disk diff --git a/devices/pc/machine/5160/mda/256kb/debugger/machine.xml b/devices/pc/machine/5160/mda/256kb/debugger/machine.xml index d68860988..d6f6ebe51 100644 --- a/devices/pc/machine/5160/mda/256kb/debugger/machine.xml +++ b/devices/pc/machine/5160/mda/256kb/debugger/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT (Model 5160), MDA, 256Kb, 10Mb Drive diff --git a/devices/pc/machine/5160/mda/256kb/fake188/debugger/machine.xml b/devices/pc/machine/5160/mda/256kb/fake188/debugger/machine.xml index 927d08bcb..d8aa974dd 100644 --- a/devices/pc/machine/5160/mda/256kb/fake188/debugger/machine.xml +++ b/devices/pc/machine/5160/mda/256kb/fake188/debugger/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT (Model 5160), MDA, 256Kb, 10Mb Drive @@ -12,7 +12,6 @@ - None diff --git a/devices/pc/machine/5160/mda/256kb/fake188/machine.xml b/devices/pc/machine/5160/mda/256kb/fake188/machine.xml index c81e7dd9a..b857fcbb7 100644 --- a/devices/pc/machine/5160/mda/256kb/fake188/machine.xml +++ b/devices/pc/machine/5160/mda/256kb/fake188/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT (Model 5160), MDA, 256Kb, 10Mb Drive @@ -11,7 +11,6 @@ - None diff --git a/devices/pc/machine/5160/mda/256kb/machine.xml b/devices/pc/machine/5160/mda/256kb/machine.xml index 7b202822d..2aaf84fcd 100644 --- a/devices/pc/machine/5160/mda/256kb/machine.xml +++ b/devices/pc/machine/5160/mda/256kb/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT (Model 5160), MDA, 256Kb, 10Mb Drive diff --git a/devices/pc/machine/5160/mda/64kb/softkbd/machine.xml b/devices/pc/machine/5160/mda/64kb/softkbd/machine.xml index 07684dfc3..5563af6ac 100644 --- a/devices/pc/machine/5160/mda/64kb/softkbd/machine.xml +++ b/devices/pc/machine/5160/mda/64kb/softkbd/machine.xml @@ -1,5 +1,5 @@ - + IBM PC XT (Model 5160), MDA, 64K, 10Mb Drive diff --git a/devices/pc/machine/5170/cga/640kb/rev3/debugger/machine.xml b/devices/pc/machine/5170/cga/640kb/rev3/debugger/machine.xml index 341165c0a..446f86437 100644 --- a/devices/pc/machine/5170/cga/640kb/rev3/debugger/machine.xml +++ b/devices/pc/machine/5170/cga/640kb/rev3/debugger/machine.xml @@ -1,5 +1,5 @@ - + IBM PC AT (8Mhz, 640Kb, Dual Floppy) with Color Display diff --git a/devices/pc/machine/5170/cga/640kb/rev3/machine.xml b/devices/pc/machine/5170/cga/640kb/rev3/machine.xml index 1d608d418..20cca5fa8 100644 --- a/devices/pc/machine/5170/cga/640kb/rev3/machine.xml +++ b/devices/pc/machine/5170/cga/640kb/rev3/machine.xml @@ -1,5 +1,5 @@ - + IBM PC AT (8Mhz, 640Kb, Dual Floppy) with Color Display diff --git a/devices/pc/machine/5170/ega/1152kb/rev1/debugger/machine.xml b/devices/pc/machine/5170/ega/1152kb/rev1/debugger/machine.xml index 731dee65e..57ffae888 100644 --- a/devices/pc/machine/5170/ega/1152kb/rev1/debugger/machine.xml +++ b/devices/pc/machine/5170/ega/1152kb/rev1/debugger/machine.xml @@ -1,5 +1,5 @@ - + IBM PC AT (6Mhz), 128Kb EGA, 1152Kb RAM, 20Mb Hard Disk diff --git a/devices/pc/machine/5170/ega/1152kb/rev1/machine.xml b/devices/pc/machine/5170/ega/1152kb/rev1/machine.xml index 91366a89c..fac4c32c5 100644 --- a/devices/pc/machine/5170/ega/1152kb/rev1/machine.xml +++ b/devices/pc/machine/5170/ega/1152kb/rev1/machine.xml @@ -1,5 +1,5 @@ - + IBM PC AT (6Mhz), 128Kb EGA, 1152Kb RAM, 20Mb Hard Disk diff --git a/devices/pc/machine/5170/ega/1152kb/rev3/debugger/backtrack/machine.xml b/devices/pc/machine/5170/ega/1152kb/rev3/debugger/backtrack/machine.xml index 7d5042171..ceed065e1 100644 --- a/devices/pc/machine/5170/ega/1152kb/rev3/debugger/backtrack/machine.xml +++ b/devices/pc/machine/5170/ega/1152kb/rev3/debugger/backtrack/machine.xml @@ -1,5 +1,5 @@ - + IBM PC AT (8Mhz), 128Kb EGA, 1152Kb RAM, 20Mb Hard Disk diff --git a/devices/pc/machine/5170/ega/1152kb/rev3/debugger/machine.xml b/devices/pc/machine/5170/ega/1152kb/rev3/debugger/machine.xml index 992ace1bb..5fc57bec0 100644 --- a/devices/pc/machine/5170/ega/1152kb/rev3/debugger/machine.xml +++ b/devices/pc/machine/5170/ega/1152kb/rev3/debugger/machine.xml @@ -1,5 +1,5 @@ - + IBM PC AT (8Mhz), 128Kb EGA, 1152Kb RAM, 20Mb Hard Disk diff --git a/devices/pc/machine/5170/ega/1152kb/rev3/machine.xml b/devices/pc/machine/5170/ega/1152kb/rev3/machine.xml index 1e90ed44d..bc10dd981 100644 --- a/devices/pc/machine/5170/ega/1152kb/rev3/machine.xml +++ b/devices/pc/machine/5170/ega/1152kb/rev3/machine.xml @@ -1,5 +1,5 @@ - + IBM PC AT (8Mhz), 128Kb EGA, 1152Kb RAM, 20Mb Hard Disk diff --git a/devices/pc/machine/5170/ega/2048kb/rev3/debugger/backtrack/machine.xml b/devices/pc/machine/5170/ega/2048kb/rev3/debugger/backtrack/machine.xml index 2c75ab0fc..65d3c78b2 100644 --- a/devices/pc/machine/5170/ega/2048kb/rev3/debugger/backtrack/machine.xml +++ b/devices/pc/machine/5170/ega/2048kb/rev3/debugger/backtrack/machine.xml @@ -1,5 +1,5 @@ - + IBM PC AT (8Mhz), 128Kb EGA, 2Mb RAM, 20Mb Hard Disk diff --git a/devices/pc/machine/5170/ega/2048kb/rev3/debugger/machine.xml b/devices/pc/machine/5170/ega/2048kb/rev3/debugger/machine.xml index f246879e8..71b864f9a 100644 --- a/devices/pc/machine/5170/ega/2048kb/rev3/debugger/machine.xml +++ b/devices/pc/machine/5170/ega/2048kb/rev3/debugger/machine.xml @@ -1,5 +1,5 @@ - + IBM PC AT (8Mhz), 128Kb EGA, 2Mb RAM, 20Mb Hard Disk diff --git a/devices/pc/machine/5170/ega/2048kb/rev3/machine.xml b/devices/pc/machine/5170/ega/2048kb/rev3/machine.xml index b2fe742a6..cb3b62c9b 100644 --- a/devices/pc/machine/5170/ega/2048kb/rev3/machine.xml +++ b/devices/pc/machine/5170/ega/2048kb/rev3/machine.xml @@ -1,5 +1,5 @@ - + IBM PC AT (8Mhz), 128Kb EGA, 2Mb RAM, 20Mb Hard Disk diff --git a/devices/pc/machine/5170/ega/640kb/rev1/debugger/machine.xml b/devices/pc/machine/5170/ega/640kb/rev1/debugger/machine.xml index d15234636..7a31dffc7 100644 --- a/devices/pc/machine/5170/ega/640kb/rev1/debugger/machine.xml +++ b/devices/pc/machine/5170/ega/640kb/rev1/debugger/machine.xml @@ -1,5 +1,5 @@ - + IBM PC AT, 128K EGA, 640Kb RAM diff --git a/devices/pc/machine/5170/ega/640kb/rev1/machine.xml b/devices/pc/machine/5170/ega/640kb/rev1/machine.xml index 3ef8584b0..b9424fbf4 100644 --- a/devices/pc/machine/5170/ega/640kb/rev1/machine.xml +++ b/devices/pc/machine/5170/ega/640kb/rev1/machine.xml @@ -1,5 +1,5 @@ - + IBM PC AT, 128K EGA, 640Kb RAM diff --git a/devices/pc/machine/5170/mda/640kb/rev3/debugger/machine.xml b/devices/pc/machine/5170/mda/640kb/rev3/debugger/machine.xml index 67dd0a96d..7a999f84c 100644 --- a/devices/pc/machine/5170/mda/640kb/rev3/debugger/machine.xml +++ b/devices/pc/machine/5170/mda/640kb/rev3/debugger/machine.xml @@ -1,5 +1,5 @@ - + IBM PC AT (8Mhz, 640Kb, Dual Floppy) with Monochrome Display diff --git a/devices/pc/machine/5170/mda/640kb/rev3/machine.xml b/devices/pc/machine/5170/mda/640kb/rev3/machine.xml index db238eba6..9997eea45 100644 --- a/devices/pc/machine/5170/mda/640kb/rev3/machine.xml +++ b/devices/pc/machine/5170/mda/640kb/rev3/machine.xml @@ -1,5 +1,5 @@ - + IBM PC AT (8Mhz, 640Kb, Dual Floppy) with Monochrome Display diff --git a/devices/pc/machine/5170/vga/2048kb/debugger/machine.xml b/devices/pc/machine/5170/vga/2048kb/debugger/machine.xml index 6d50df095..515ac40fd 100644 --- a/devices/pc/machine/5170/vga/2048kb/debugger/machine.xml +++ b/devices/pc/machine/5170/vga/2048kb/debugger/machine.xml @@ -1,5 +1,5 @@ - + IBM PC AT (8Mhz, 2Mb, 20Mb Hard Disk) with VGA Display diff --git a/devices/pc/machine/5170/vga/2048kb/machine.xml b/devices/pc/machine/5170/vga/2048kb/machine.xml index 19900d0fa..bedcef70e 100644 --- a/devices/pc/machine/5170/vga/2048kb/machine.xml +++ b/devices/pc/machine/5170/vga/2048kb/machine.xml @@ -1,5 +1,5 @@ - + IBM PC AT (8Mhz, 2Mb, 20Mb Hard Disk) with VGA Display diff --git a/devices/pc/machine/5170/vga/4096kb/debugger/machine.xml b/devices/pc/machine/5170/vga/4096kb/debugger/machine.xml index 1e899b5f2..588d74615 100644 --- a/devices/pc/machine/5170/vga/4096kb/debugger/machine.xml +++ b/devices/pc/machine/5170/vga/4096kb/debugger/machine.xml @@ -1,5 +1,5 @@ - + IBM PC AT (8Mhz, 4Mb, 20Mb Hard Disk) with VGA Display diff --git a/devices/pc/machine/5170/vga/4096kb/machine.xml b/devices/pc/machine/5170/vga/4096kb/machine.xml index b3cac099c..c2c401114 100644 --- a/devices/pc/machine/5170/vga/4096kb/machine.xml +++ b/devices/pc/machine/5170/vga/4096kb/machine.xml @@ -1,5 +1,5 @@ - + IBM PC AT (8Mhz), VGA, 4Mb RAM, 20Mb Hard Disk diff --git a/devices/pc/machine/att/6300/cga/640kb/debugger/machine.xml b/devices/pc/machine/att/6300/cga/640kb/debugger/machine.xml index 9470414ec..b277c950f 100644 --- a/devices/pc/machine/att/6300/cga/640kb/debugger/machine.xml +++ b/devices/pc/machine/att/6300/cga/640kb/debugger/machine.xml @@ -1,5 +1,5 @@ - + AT&T Personal Computer 6300 with Color Display diff --git a/devices/pc/machine/att/6300/cga/640kb/machine.xml b/devices/pc/machine/att/6300/cga/640kb/machine.xml index 50c17e52c..367d32181 100644 --- a/devices/pc/machine/att/6300/cga/640kb/machine.xml +++ b/devices/pc/machine/att/6300/cga/640kb/machine.xml @@ -1,5 +1,5 @@ - + AT&T Personal Computer 6300 with Color Display diff --git a/devices/pc/machine/cdp/mpc1600/cga/640kb/debugger/machine.xml b/devices/pc/machine/cdp/mpc1600/cga/640kb/debugger/machine.xml index 2a9747efd..a1fe2f940 100644 --- a/devices/pc/machine/cdp/mpc1600/cga/640kb/debugger/machine.xml +++ b/devices/pc/machine/cdp/mpc1600/cga/640kb/debugger/machine.xml @@ -1,5 +1,5 @@ - + Columbia Data Products MPC 1600 with Color Display diff --git a/devices/pc/machine/cdp/mpc1600/cga/640kb/machine.xml b/devices/pc/machine/cdp/mpc1600/cga/640kb/machine.xml index eb5519585..56b40c8d1 100644 --- a/devices/pc/machine/cdp/mpc1600/cga/640kb/machine.xml +++ b/devices/pc/machine/cdp/mpc1600/cga/640kb/machine.xml @@ -1,5 +1,5 @@ - + Columbia Data Products MPC 1600 with Color Display diff --git a/devices/pc/machine/compaq/deskpro386/ega/2048kb/debugger/machine.xml b/devices/pc/machine/compaq/deskpro386/ega/2048kb/debugger/machine.xml index 75ac626ee..435ec2151 100644 --- a/devices/pc/machine/compaq/deskpro386/ega/2048kb/debugger/machine.xml +++ b/devices/pc/machine/compaq/deskpro386/ega/2048kb/debugger/machine.xml @@ -1,5 +1,5 @@ - + COMPAQ DeskPro 386, 2Mb RAM, 128Kb EGA diff --git a/devices/pc/machine/compaq/deskpro386/ega/2048kb/machine.xml b/devices/pc/machine/compaq/deskpro386/ega/2048kb/machine.xml index d43c1841c..dc11d4e2d 100644 --- a/devices/pc/machine/compaq/deskpro386/ega/2048kb/machine.xml +++ b/devices/pc/machine/compaq/deskpro386/ega/2048kb/machine.xml @@ -1,5 +1,5 @@ - + COMPAQ DeskPro 386, 2Mb RAM, 128Kb EGA diff --git a/devices/pc/machine/compaq/deskpro386/ega/4096kb/debugger/machine.xml b/devices/pc/machine/compaq/deskpro386/ega/4096kb/debugger/machine.xml index d954217a0..971a90a84 100644 --- a/devices/pc/machine/compaq/deskpro386/ega/4096kb/debugger/machine.xml +++ b/devices/pc/machine/compaq/deskpro386/ega/4096kb/debugger/machine.xml @@ -1,5 +1,5 @@ - + COMPAQ DeskPro 386, 4Mb RAM, 128Kb EGA diff --git a/devices/pc/machine/compaq/deskpro386/ega/4096kb/machine.xml b/devices/pc/machine/compaq/deskpro386/ega/4096kb/machine.xml index bb741323b..c251be56a 100644 --- a/devices/pc/machine/compaq/deskpro386/ega/4096kb/machine.xml +++ b/devices/pc/machine/compaq/deskpro386/ega/4096kb/machine.xml @@ -1,5 +1,5 @@ - + COMPAQ DeskPro 386, 4Mb RAM, 128Kb EGA diff --git a/devices/pc/machine/compaq/deskpro386/other/2048kb/debugger/backtrack/machine.xml b/devices/pc/machine/compaq/deskpro386/other/2048kb/debugger/backtrack/machine.xml index d91f6a0d9..972ccb519 100644 --- a/devices/pc/machine/compaq/deskpro386/other/2048kb/debugger/backtrack/machine.xml +++ b/devices/pc/machine/compaq/deskpro386/other/2048kb/debugger/backtrack/machine.xml @@ -1,5 +1,5 @@ - + COMPAQ DeskPro 386, 2Mb RAM, COMPAQ VGA, 20Mb Hard Disk diff --git a/devices/pc/machine/compaq/deskpro386/other/2048kb/debugger/machine.xml b/devices/pc/machine/compaq/deskpro386/other/2048kb/debugger/machine.xml index 8eafd3941..a494dcac2 100644 --- a/devices/pc/machine/compaq/deskpro386/other/2048kb/debugger/machine.xml +++ b/devices/pc/machine/compaq/deskpro386/other/2048kb/debugger/machine.xml @@ -1,5 +1,5 @@ - + COMPAQ DeskPro 386, 2Mb RAM, COMPAQ VGA, 20Mb Hard Disk diff --git a/devices/pc/machine/compaq/deskpro386/vga/2048kb/debugger/machine.xml b/devices/pc/machine/compaq/deskpro386/vga/2048kb/debugger/machine.xml index 5106f0277..cea7a8303 100644 --- a/devices/pc/machine/compaq/deskpro386/vga/2048kb/debugger/machine.xml +++ b/devices/pc/machine/compaq/deskpro386/vga/2048kb/debugger/machine.xml @@ -1,5 +1,5 @@ - + COMPAQ DeskPro 386, 2Mb RAM, IBM VGA, 20Mb Hard Disk diff --git a/devices/pc/machine/compaq/deskpro386/vga/2048kb/machine.xml b/devices/pc/machine/compaq/deskpro386/vga/2048kb/machine.xml index da21cc5f2..860402968 100644 --- a/devices/pc/machine/compaq/deskpro386/vga/2048kb/machine.xml +++ b/devices/pc/machine/compaq/deskpro386/vga/2048kb/machine.xml @@ -1,5 +1,5 @@ - + COMPAQ DeskPro 386, 2Mb RAM, IBM VGA, 20Mb Hard Disk diff --git a/devices/pc/machine/compaq/deskpro386/vga/4096kb/debugger/machine.xml b/devices/pc/machine/compaq/deskpro386/vga/4096kb/debugger/machine.xml index b65f95fba..90e780935 100644 --- a/devices/pc/machine/compaq/deskpro386/vga/4096kb/debugger/machine.xml +++ b/devices/pc/machine/compaq/deskpro386/vga/4096kb/debugger/machine.xml @@ -1,5 +1,5 @@ - + COMPAQ DeskPro 386, 4Mb RAM, IBM VGA, 20Mb Hard Disk diff --git a/devices/pc/machine/compaq/deskpro386/vga/4096kb/machine.xml b/devices/pc/machine/compaq/deskpro386/vga/4096kb/machine.xml index 328c45e86..28c217755 100644 --- a/devices/pc/machine/compaq/deskpro386/vga/4096kb/machine.xml +++ b/devices/pc/machine/compaq/deskpro386/vga/4096kb/machine.xml @@ -1,5 +1,5 @@ - + COMPAQ DeskPro 386, 4Mb RAM, IBM VGA, 20Mb Hard Disk diff --git a/devices/pc/machine/custom/machine.xml b/devices/pc/machine/custom/machine.xml index b22ab1061..6e2200196 100644 --- a/devices/pc/machine/custom/machine.xml +++ b/devices/pc/machine/custom/machine.xml @@ -1,5 +1,5 @@ - + IBM PC (Model 5150) with Monochrome Display diff --git a/devices/pc/machine/zenith/z150/cga/640kb/debugger/machine.xml b/devices/pc/machine/zenith/z150/cga/640kb/debugger/machine.xml index 5523a01b0..c56d4fe48 100644 --- a/devices/pc/machine/zenith/z150/cga/640kb/debugger/machine.xml +++ b/devices/pc/machine/zenith/z150/cga/640kb/debugger/machine.xml @@ -1,5 +1,5 @@ - + Zenith Z-150 with Color Display diff --git a/devices/pc/machine/zenith/z150/cga/640kb/machine.xml b/devices/pc/machine/zenith/z150/cga/640kb/machine.xml index b02ce5ac6..386900458 100644 --- a/devices/pc/machine/zenith/z150/cga/640kb/machine.xml +++ b/devices/pc/machine/zenith/z150/cga/640kb/machine.xml @@ -1,5 +1,5 @@ - + Zenith Z-150 with Color Display diff --git a/devices/pc/rom/5150/basic/README.md b/devices/pc/rom/5150/basic/README.md index 07551cdbd..cd6b6bae3 100644 --- a/devices/pc/rom/5150/basic/README.md +++ b/devices/pc/rom/5150/basic/README.md @@ -6,18 +6,21 @@ redirect_from: - /devices/pc/basic/ --- -BASIC ROMs +IBM PC BASIC ROMs --- -The project contains the following BASIC ROMs: +The project contains the following IBM PC BASIC ROMs: -* [BASIC 1.00](BASIC100.json) -* [BASIC 1.10](../../5160/basic/BASIC110.json) +* [IBM BASIC C1.00](BASIC100.json) +* [IBM BASIC C1.10](../../5160/basic/BASIC110.json) -These built-in versions of BASIC were also referred to as *Cassette BASIC*, because no disk drive was required. +These built-in versions of BASIC were also referred to as Cassette BASIC, because no disk drive was required. Only the original IBM PC (Model 5150) actually provided a cassette interface, but IBM continued to use that -name to describe the built-in BASIC at least up through the IBM PC AT (Model 5170). +name to describe the built-in BASIC, at least up through the IBM PC AT (Model 5170). + +Both versions of Cassette BASIC where 32Kb and spanned physical addresses 0xF6000-0xFDFFF. They were produced by +Microsoft, and unlike the IBM PC BIOS ROMs, no source code listings of these BASIC ROMs were ever published. Here's an [IBM PC Machine](/devices/pc/machine/) XML excerpt that shows how to include a BASIC ROM: - + diff --git a/devices/pc/rom/5160/1986-01-10/XTBIOS-REV2.json b/devices/pc/rom/5160/1986-01-10/XTBIOS-REV2.json new file mode 100644 index 000000000..320681020 --- /dev/null +++ b/devices/pc/rom/5160/1986-01-10/XTBIOS-REV2.json @@ -0,0 +1,4098 @@ +{"bytes":[ +54,50,88,48,56,53,52,32,67,79,80,82,46,32,73,66, +77,32,67,79,82,80,46,32,49,57,56,49,44,49,57,56, +54,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, +1,121,239,130,134,239,2,147,239,3,160,239,132,173,239,4, +186,239,251,85,87,82,83,81,139,236,30,86,232,163,249,128, +252,25,114,2,180,20,128,252,1,118,12,128,252,8,116,7, +128,250,3,118,2,180,20,138,204,50,237,208,225,187,176,0, +3,217,138,230,50,246,139,240,139,250,138,38,65,0,198,6, +65,0,0,46,255,23,94,31,89,91,90,95,93,202,2,0, +226,0,58,1,70,1,82,1,94,1,106,1,205,1,205,1, +215,1,205,1,205,1,205,1,205,1,205,1,205,1,205,1, +205,1,205,1,205,1,205,1,205,1,204,2,0,3,53,3, +157,3,186,242,3,250,160,63,0,36,63,208,192,208,192,208, +192,208,192,12,8,238,198,6,62,0,0,235,0,12,4,238, +251,232,6,10,114,45,185,192,0,81,184,50,1,80,180,8, +232,45,9,88,232,27,10,89,114,25,58,14,66,0,117,19, +254,193,128,249,195,118,226,232,247,2,232,85,7,139,222,138, +195,195,89,128,14,65,0,32,235,240,136,38,65,0,232,65, +7,139,222,138,196,195,128,38,63,0,127,184,70,230,232,178, +3,195,184,74,197,128,14,63,0,128,232,166,3,195,128,38, +63,0,127,184,66,230,232,154,3,195,232,231,2,232,128,4, +128,14,63,0,128,246,6,143,0,1,116,5,232,198,4,114, +65,232,36,5,116,6,232,152,2,232,251,4,176,74,232,39, +5,114,47,180,77,232,131,5,114,40,184,194,1,80,178,3, +232,171,7,232,154,8,178,4,232,163,7,232,146,8,178,7, +232,155,7,232,138,8,178,8,232,147,7,232,130,8,88,232, +181,5,232,189,2,232,186,6,139,222,138,195,195,139,198,180, +1,136,38,65,0,249,195,129,255,128,0,114,6,139,198,180, +1,249,195,232,110,2,199,70,2,0,0,161,16,0,36,193, +208,232,115,124,208,192,208,192,208,192,254,192,136,70,4,246, +6,143,0,1,117,3,233,157,0,131,255,1,119,102,198,70, +5,1,232,10,7,114,22,10,192,116,18,232,227,1,114,13, +136,70,2,46,138,79,4,46,138,111,11,235,50,138,165,144, +0,246,196,16,116,62,128,228,192,128,252,128,117,84,176,1, +232,190,1,46,138,79,4,46,138,111,11,246,133,144,0,1, +116,13,176,4,232,170,1,46,138,79,4,46,138,111,11,137, +78,0,137,94,6,140,200,142,192,232,22,2,51,192,248,195, +198,70,4,0,129,255,128,0,114,9,232,5,2,139,198,180, +1,249,195,51,192,137,70,0,136,102,5,137,70,6,142,192, +235,215,176,2,232,106,1,46,138,79,4,46,138,111,11,128, +252,64,116,187,235,172,131,255,3,119,216,177,9,246,133,144, +0,1,176,1,181,39,116,4,176,3,181,79,136,70,2,198, +70,3,0,198,70,5,1,232,55,1,235,147,246,6,143,0, +1,116,34,232,126,1,138,133,144,0,10,192,116,19,180,1, +168,1,116,2,180,2,80,232,152,1,88,248,139,222,138,195, +195,50,228,235,241,161,16,0,208,232,115,245,180,1,235,235, +246,6,143,0,1,117,3,233,195,254,232,71,1,138,133,144, +0,10,192,116,25,168,1,116,5,232,85,8,116,5,198,6, +65,0,6,232,92,1,232,89,5,139,222,138,195,195,128,14, +65,0,128,235,238,232,28,1,86,139,198,50,228,139,240,128, +165,144,0,15,78,117,7,128,141,144,0,144,235,62,246,6, +143,0,1,116,10,232,237,2,128,62,65,0,128,116,45,78, +117,7,128,141,144,0,112,235,35,78,117,7,128,141,144,0, +16,235,25,78,117,32,246,133,144,0,4,116,9,176,80,246, +133,144,0,2,117,2,176,144,8,133,144,0,232,243,0,232, +240,4,91,138,195,195,198,6,65,0,1,235,239,232,180,0, +51,219,128,126,1,39,117,11,246,133,144,0,1,116,22,179, +3,235,18,179,6,128,126,0,15,116,10,179,18,128,126,0, +18,116,2,179,12,46,139,159,81,0,46,138,71,4,46,138, +103,11,57,70,0,117,35,46,138,71,12,60,64,117,2,12, +32,137,94,6,12,16,128,165,144,0,15,8,133,144,0,140, +200,142,192,232,140,0,232,137,4,195,198,6,65,0,12,235, +242,80,81,51,219,185,6,0,46,138,167,80,0,58,196,116, +8,131,195,3,226,242,249,235,5,46,139,159,81,0,89,88, +195,184,59,4,80,180,3,232,22,6,42,210,232,31,5,232, +14,6,178,1,232,23,5,232,6,6,88,195,184,83,4,80, +180,3,232,251,5,46,138,39,232,245,5,46,138,103,1,232, +238,5,88,195,246,6,143,0,1,116,34,131,255,1,119,29, +128,189,144,0,0,116,23,139,207,208,225,208,225,160,143,0, +210,200,36,7,128,165,144,0,248,8,133,144,0,195,232,250, +6,195,246,6,143,0,1,116,121,131,255,1,119,116,128,189, +144,0,0,116,109,139,207,208,225,208,225,180,2,210,204,132, +38,143,0,117,22,180,7,210,204,246,212,32,38,143,0,138, +133,144,0,36,7,210,200,8,6,143,0,138,165,144,0,138, +252,128,228,192,128,252,0,116,16,176,1,128,252,64,117,22, +246,199,32,117,29,176,7,235,32,232,67,4,114,247,60,2, +117,243,176,2,235,12,176,0,128,252,128,117,232,246,199,1, +117,227,246,199,16,116,2,4,3,128,165,144,0,248,8,133, +144,0,195,80,232,77,255,232,167,0,88,246,6,143,0,1, +116,10,80,232,47,1,88,115,3,233,134,0,80,138,181,144, +0,128,230,192,232,248,3,10,192,116,47,232,211,254,114,42, +87,51,219,185,6,0,46,138,167,80,0,128,228,127,58,196, +117,11,46,139,191,81,0,46,58,117,12,116,29,131,195,3, +226,228,198,6,65,0,255,95,235,63,187,121,239,246,133,144, +0,1,116,9,187,147,239,235,4,144,139,223,95,232,204,254, +232,53,1,116,3,232,15,1,83,232,32,3,91,114,26,88, +80,83,232,51,1,91,88,114,31,80,83,232,141,1,91,114, +8,232,173,1,114,3,232,222,1,232,114,2,88,115,3,233, +105,255,232,38,2,232,173,2,80,232,214,254,88,232,210,2, +195,246,6,143,0,1,116,55,246,133,144,0,16,117,48,184, +128,64,246,133,144,0,4,116,12,176,0,246,133,144,0,2, +117,3,184,128,128,128,165,144,0,31,8,165,144,0,128,38, +139,0,243,208,200,208,200,208,200,208,200,8,6,139,0,195, +246,6,143,0,1,116,73,246,133,144,0,16,117,66,232,30, +3,114,62,254,200,120,58,138,165,144,0,128,228,15,10,192, +117,5,128,204,144,235,37,254,200,117,5,128,204,16,235,28, +254,200,117,15,246,196,4,116,16,246,196,2,116,11,128,204, +80,235,9,254,200,117,10,235,226,128,204,144,136,165,144,0, +195,50,228,235,247,246,6,143,0,1,116,55,232,34,5,116, +52,128,165,144,0,239,139,207,176,1,210,224,246,208,250,32, +6,63,0,251,232,252,2,232,120,250,181,1,232,245,3,50, +237,232,240,3,198,6,65,0,6,232,245,4,116,5,198,6, +65,0,128,249,195,248,195,246,6,143,0,1,116,25,80,128, +38,139,0,63,138,133,144,0,36,192,8,6,139,0,208,192, +208,192,186,247,3,238,88,195,80,138,38,139,0,138,133,144, +0,37,192,192,58,196,88,195,250,230,12,235,0,230,11,60, +66,117,4,51,192,235,21,140,192,209,192,209,192,209,192,209, +192,138,232,36,240,3,70,2,115,2,254,197,80,230,4,235, +0,138,196,230,4,138,197,235,0,36,15,230,129,139,198,134, +196,42,192,209,232,80,178,3,232,83,2,138,204,88,211,224, +72,80,230,5,235,0,138,196,230,5,251,89,88,3,193,176, +2,230,10,115,5,198,6,65,0,9,195,80,232,68,2,138, +110,1,232,63,3,88,114,24,187,64,7,83,232,17,3,139, +198,139,223,208,228,208,228,128,228,4,10,227,232,1,3,91, +195,184,118,7,80,138,102,1,232,245,2,139,198,232,240,2, +138,102,0,232,234,2,178,3,232,243,1,232,226,2,178,4, +232,235,1,232,218,2,46,138,103,5,232,211,2,178,6,232, +220,1,232,203,2,88,195,86,232,143,3,156,232,179,3,114, +71,157,114,60,252,190,66,0,172,36,192,116,51,60,64,117, +41,172,208,224,180,4,114,36,208,224,208,224,180,16,114,28, +208,224,180,8,114,22,208,224,208,224,180,4,114,14,208,224, +180,3,114,8,208,224,180,2,114,2,180,32,8,38,65,0, +128,62,65,0,1,245,94,195,157,235,245,246,6,143,0,1, +116,59,128,62,65,0,0,117,52,128,141,144,0,16,246,133, +144,0,4,117,40,138,133,144,0,36,192,60,128,117,25,232, +45,1,114,20,60,2,116,16,60,4,116,12,128,165,144,0, +253,128,141,144,0,4,235,5,128,141,144,0,6,195,128,62, +65,0,0,116,62,128,62,65,0,128,116,55,138,165,144,0, +246,196,16,117,46,128,228,192,138,46,139,0,208,197,208,197, +208,197,208,197,128,229,192,58,236,116,24,128,252,1,208,220, +128,228,192,128,165,144,0,31,8,165,144,0,198,6,65,0, +0,249,195,248,195,50,192,128,62,65,0,0,117,35,178,4, +232,235,0,138,30,71,0,139,206,58,46,70,0,117,11,138, +46,69,0,58,110,1,116,4,2,220,2,220,42,94,0,138, +195,195,178,2,80,232,198,0,136,38,64,0,88,138,38,65, +0,10,228,116,2,50,192,128,252,1,245,195,246,6,143,0, +1,116,101,138,165,144,0,246,196,16,117,92,198,6,62,0, +0,232,175,0,181,0,232,171,1,232,78,0,114,53,185,80, +4,246,133,144,0,1,116,2,177,160,81,198,6,65,0,0, +51,192,208,237,208,208,208,208,208,208,80,232,134,1,88,11, +248,232,38,0,156,129,231,251,0,157,89,115,8,254,197,58, +233,117,215,249,195,138,14,69,0,136,141,148,0,208,237,58, +233,116,5,128,141,144,0,32,248,195,184,30,9,80,180,74, +232,45,1,139,199,138,224,232,38,1,232,90,254,88,195,160, +16,0,36,193,208,232,115,32,208,192,208,192,208,192,50,228, +59,199,114,20,246,6,143,0,1,117,16,246,133,144,0,1, +176,1,116,6,176,3,235,2,50,192,195,249,235,252,30,86, +43,192,142,216,135,211,42,255,197,54,120,0,138,32,135,211, +94,31,195,83,232,71,0,114,67,232,22,251,184,253,144,205, +21,156,232,223,250,157,115,5,232,51,0,114,47,178,10,232, +204,255,138,196,50,228,60,8,115,2,176,8,80,186,36,244, +247,226,139,202,139,208,248,209,210,209,209,180,134,205,21,88, +115,10,185,94,32,232,248,226,254,200,117,246,91,195,139,223, +138,203,208,195,208,195,208,195,208,195,250,198,6,64,0,255, +160,63,0,36,48,180,1,210,228,58,195,117,6,132,38,63, +0,117,49,10,227,138,62,63,0,128,231,15,128,38,63,0, +192,8,38,63,0,160,63,0,138,216,128,227,15,251,36,63, +208,192,208,192,208,192,208,192,12,12,186,242,3,238,58,223, +116,2,248,195,249,251,195,178,9,232,66,255,246,6,63,0, +128,116,9,128,252,15,115,8,180,15,235,4,10,228,116,31, +138,196,50,228,80,186,232,3,247,226,139,202,139,208,180,134, +205,21,88,115,10,185,66,0,232,101,226,254,200,117,246,195, +83,186,244,3,179,2,51,201,236,36,192,60,128,116,15,226, +247,254,203,117,243,128,14,65,0,128,91,88,249,195,138,196, +66,238,91,195,139,223,186,203,10,82,176,1,134,203,210,192, +134,203,132,6,62,0,117,33,8,6,62,0,232,77,0,115, +10,198,6,65,0,0,232,67,0,114,63,131,255,1,119,33, +198,133,148,0,0,10,237,116,44,131,255,1,119,19,246,133, +144,0,32,116,2,208,229,58,173,148,0,116,29,136,173,148, +0,81,180,15,232,137,255,139,223,138,227,232,130,255,88,232, +126,255,232,30,0,156,232,62,255,157,88,195,81,184,225,10, +80,180,7,232,106,255,139,223,138,227,232,99,255,232,3,0, +88,89,195,184,1,11,80,232,32,0,114,20,180,8,232,79, +255,232,62,0,114,10,160,66,0,36,96,60,96,116,3,248, +88,195,128,14,65,0,64,249,235,246,251,248,184,1,144,205, +21,114,17,179,4,51,201,246,6,62,0,128,117,12,226,247, +254,203,117,243,128,14,65,0,128,249,156,128,38,62,0,127, +157,195,87,191,66,0,179,7,186,244,3,183,2,51,201,236, +36,192,60,192,116,14,226,247,254,207,117,243,128,14,65,0, +128,249,235,27,66,236,136,5,71,185,2,0,232,65,225,74, +236,168,16,116,10,254,203,117,210,128,14,65,0,32,249,95, +195,232,239,253,186,247,3,236,168,128,195,232,229,253,232,75, +255,114,62,181,48,232,220,254,114,55,181,11,254,205,120,38, +81,232,208,254,114,44,184,193,11,80,180,4,232,161,254,139, +199,138,224,232,154,254,232,137,255,88,89,246,6,66,0,16, +116,218,10,237,116,6,128,141,144,0,148,195,128,141,144,0, +1,195,89,195,251,80,30,232,72,238,128,14,62,0,128,31, +176,32,230,32,184,1,145,205,21,88,207,80,83,81,82,87, +86,30,232,45,238,128,14,160,0,1,199,6,144,0,0,0, +128,38,139,0,51,128,14,139,0,192,198,6,62,0,0,198, +6,64,0,0,198,6,63,0,0,198,6,65,0,0,160,16, +0,208,192,208,192,36,3,50,228,51,255,190,16,0,246,6, +143,0,1,117,5,198,133,144,0,148,80,232,77,255,232,81, +248,35,54,66,0,88,71,59,248,118,227,198,6,62,0,0, +128,38,160,0,254,232,58,252,114,5,11,246,117,1,249,31, +94,95,90,89,91,88,195,251,30,83,81,232,180,237,10,228, +116,38,254,204,116,55,254,204,116,100,128,236,3,116,100,128, +236,11,116,12,254,204,116,26,254,204,116,57,89,91,31,207, +232,114,0,232,162,0,235,244,232,106,0,232,165,0,114,248, +235,234,232,134,0,116,24,156,232,141,0,235,17,232,123,0, +116,13,156,232,141,0,115,6,157,232,73,0,235,239,157,89, +91,31,202,2,0,138,38,24,0,128,228,4,177,5,210,228, +160,24,0,36,115,10,224,160,150,0,36,12,10,224,160,23, +0,235,169,86,250,139,30,28,0,139,243,232,141,0,59,30, +26,0,116,11,137,12,137,30,28,0,42,192,235,3,144,176, +1,251,94,235,135,139,30,26,0,59,30,28,0,117,5,184, +2,144,205,21,251,144,250,139,30,26,0,59,30,28,0,116, +243,139,7,232,85,0,137,30,26,0,195,250,139,30,26,0, +59,30,28,0,139,7,251,195,60,240,117,6,10,228,116,2, +50,192,195,128,252,224,117,18,60,13,116,9,60,10,116,5, +180,53,235,35,144,180,28,235,30,144,128,252,132,119,26,60, +240,117,7,10,228,116,16,235,16,144,60,224,117,9,10,228, +116,5,50,192,235,1,144,248,195,249,195,67,67,59,30,130, +0,114,4,139,30,128,0,195,80,83,81,82,86,87,30,6, +252,232,142,236,228,96,147,228,97,138,224,12,128,230,97,134, +224,230,97,251,147,180,79,249,205,21,114,3,233,130,1,138, +224,60,255,117,3,233,239,3,14,7,138,62,150,0,60,224, +117,7,128,14,150,0,18,235,9,60,225,117,8,128,14,150, +0,17,233,97,1,36,127,246,199,2,116,12,185,2,0,191, +172,17,242,174,117,84,235,61,246,199,1,116,22,185,4,0, +191,170,17,242,174,116,219,60,69,117,42,246,196,128,117,37, +233,99,2,60,84,117,51,246,196,128,117,28,246,6,24,0, +4,117,18,128,14,24,0,4,176,32,230,32,184,0,133,251, +205,21,233,22,1,233,9,1,128,38,24,0,251,176,32,230, +32,184,1,133,251,205,21,233,1,1,138,30,23,0,191,166, +17,185,8,0,144,242,174,138,196,116,3,233,207,0,129,239, +167,17,46,138,165,174,17,177,2,168,128,116,3,235,110,144, +128,252,16,115,33,8,38,23,0,246,196,12,117,3,233,192, +0,246,199,2,116,7,8,38,150,0,233,180,0,210,236,8, +38,24,0,233,171,0,246,195,4,116,3,233,143,0,60,82, +117,33,246,195,8,116,3,233,131,0,246,199,2,117,20,246, +195,32,117,10,246,195,3,116,10,138,224,235,112,144,246,195, +3,116,246,132,38,24,0,116,3,235,118,144,8,38,24,0, +48,38,23,0,60,82,117,105,138,224,235,120,144,128,252,16, +246,212,115,67,32,38,23,0,128,252,251,119,38,246,199,2, +116,6,32,38,150,0,235,6,210,252,32,38,24,0,138,224, +160,150,0,210,232,10,6,24,0,210,224,36,12,8,6,23, +0,138,196,60,184,117,42,160,25,0,180,0,136,38,25,0, +60,0,116,29,233,105,2,32,38,24,0,235,20,60,128,115, +16,246,6,24,0,8,116,28,60,69,116,5,128,38,24,0, +247,128,38,150,0,252,250,176,32,230,32,7,31,95,94,90, +89,91,88,207,60,88,119,233,246,195,8,116,12,246,199,16, +116,10,246,6,24,0,4,116,3,233,215,0,246,195,4,116, +55,60,83,117,51,199,6,114,0,52,18,129,38,150,0,16, +0,233,247,208,82,79,80,81,75,76,77,71,72,73,16,17, +18,19,20,21,22,23,24,25,30,31,32,33,34,35,36,37, +38,44,45,46,47,48,49,50,60,57,117,5,176,32,233,211, +1,60,15,117,6,184,0,165,233,201,1,60,74,116,121,60, +78,116,117,191,100,15,185,10,0,242,174,117,24,246,199,2, +117,107,129,239,101,15,160,25,0,180,10,246,228,3,199,162, +25,0,233,92,255,198,6,25,0,0,185,26,0,242,174,116, +66,60,2,114,67,60,13,119,5,128,196,118,235,53,60,87, +114,9,60,88,119,5,128,196,52,235,40,246,199,2,116,24, +60,28,117,6,184,0,166,233,106,1,60,83,116,31,60,53, +117,192,184,0,164,233,92,1,60,59,114,12,60,68,119,178, +128,196,45,176,0,233,76,1,176,240,233,71,1,4,80,138, +224,235,240,246,195,4,117,3,233,128,0,60,70,117,30,246, +199,16,116,5,246,199,2,116,20,139,30,26,0,137,30,28, +0,198,6,113,0,128,205,27,43,192,233,23,1,246,199,16, +117,37,60,69,117,33,128,14,24,0,8,176,32,230,32,128, +62,73,0,7,116,7,186,216,3,160,101,0,238,246,6,24, +0,8,117,249,233,180,254,60,55,117,16,246,199,16,116,5, +246,199,2,116,32,184,0,114,233,217,0,60,15,116,22,60, +53,117,11,246,199,2,116,6,184,0,149,233,198,0,187,182, +17,60,59,114,87,187,182,17,233,168,0,60,55,117,31,246, +199,16,116,7,246,199,2,117,7,235,52,246,195,3,116,47, +176,32,230,32,205,5,128,38,150,0,252,233,93,254,60,58, +119,44,60,53,117,5,246,199,2,117,20,185,26,0,191,110, +15,242,174,117,5,246,195,64,117,10,246,195,3,117,10,187, +14,18,235,80,246,195,3,117,246,187,102,18,235,70,60,68, +119,2,235,54,60,83,119,44,60,74,116,237,60,78,116,233, +246,199,2,117,10,246,195,32,117,19,246,195,3,117,19,60, +76,117,5,176,240,235,61,144,187,14,18,235,38,246,195,3, +117,237,235,197,60,86,117,2,235,176,246,195,3,116,224,187, +102,18,235,15,254,200,46,215,246,6,150,0,2,116,21,180, +224,235,17,254,200,46,215,138,224,176,0,246,6,150,0,2, +116,2,176,224,60,255,116,5,128,252,255,117,3,233,177,253, +250,139,30,28,0,139,243,232,241,251,59,30,26,0,116,23, +137,4,137,30,28,0,176,32,230,32,184,2,145,205,21,128, +38,150,0,252,233,148,253,176,32,230,32,185,166,2,179,4, +232,185,218,233,133,253,82,58,69,70,56,29,42,54,128,64, +32,16,8,4,2,1,27,255,0,255,255,255,30,255,255,255, +255,31,255,127,148,17,23,5,18,20,25,21,9,15,16,27, +29,10,255,1,19,4,6,7,8,10,11,12,255,255,255,255, +28,26,24,3,22,2,14,13,255,255,255,255,150,255,32,255, +94,95,96,97,98,99,100,101,102,103,255,255,119,141,132,142, +115,143,116,144,117,145,118,146,147,255,255,255,137,138,27,49, +50,51,52,53,54,55,56,57,48,45,61,8,9,113,119,101, +114,116,121,117,105,111,112,91,93,13,255,97,115,100,102,103, +104,106,107,108,59,39,96,255,92,122,120,99,118,98,110,109, +44,46,47,255,42,255,32,255,59,60,61,62,63,64,65,66, +67,68,255,255,71,72,73,255,75,255,77,255,79,80,81,82, +83,255,255,92,133,134,27,33,64,35,36,37,94,38,42,40, +41,95,43,8,0,81,87,69,82,84,89,85,73,79,80,123, +125,13,255,65,83,68,70,71,72,74,75,76,58,34,126,255, +124,90,88,67,86,66,78,77,60,62,63,255,42,255,32,255, +84,85,86,87,88,89,90,91,92,93,255,255,55,56,57,45, +52,53,54,43,49,50,51,48,46,255,255,124,135,136,251,82, +83,131,250,3,119,37,138,248,30,232,70,231,86,139,242,138, +156,120,0,209,230,139,148,8,0,94,31,11,210,116,12,10, +228,116,13,254,204,116,75,254,204,116,57,180,41,91,90,207, +238,66,236,236,168,128,117,5,184,254,144,205,21,81,43,201, +236,138,224,168,128,117,15,226,247,254,203,117,243,89,128,204, +1,128,228,249,235,21,89,176,13,66,250,238,235,0,176,12, +238,251,74,74,66,236,236,36,248,138,224,138,199,128,244,72, +235,187,66,66,176,8,238,184,232,3,72,117,253,176,12,238, +74,74,235,224,251,30,82,86,87,81,83,131,250,3,119,36, +139,242,139,250,209,230,232,185,230,139,148,0,0,11,210,116, +19,10,228,116,24,254,204,116,75,254,204,116,112,254,204,117, +3,233,139,0,180,128,91,89,95,94,90,31,207,138,224,131, +194,3,176,128,238,138,212,177,4,210,194,129,226,14,0,191, +41,231,3,250,139,148,0,0,66,46,138,69,1,238,74,144, +46,138,5,238,131,194,3,138,196,36,31,238,74,74,144,176, +0,238,235,75,80,131,194,4,176,3,238,66,66,183,48,232, +76,0,116,8,89,138,193,128,204,128,235,170,74,183,32,232, +60,0,117,240,131,234,5,89,138,193,238,235,153,131,194,4, +176,1,238,66,66,183,32,232,36,0,117,219,74,183,1,232, +28,0,117,211,128,228,30,139,148,0,0,236,233,119,255,139, +148,0,0,131,194,5,236,138,224,66,236,233,104,255,138,157, +124,0,43,201,236,138,224,34,199,58,199,116,8,226,245,254, +203,117,239,10,255,195,133,20,108,21,141,21,181,21,171,27, +204,21,53,22,211,22,37,23,130,23,180,23,238,21,118,24, +101,24,36,27,20,22,99,21,99,21,99,21,225,23,251,252, +128,252,20,115,47,6,30,82,81,83,86,87,85,190,64,0, +142,222,139,240,160,16,0,36,48,60,48,191,0,184,117,3, +191,0,176,142,199,138,196,152,209,224,150,138,38,73,0,46, +255,164,38,20,207,186,212,3,139,62,16,0,129,231,48,0, +131,255,48,117,6,176,7,178,180,235,13,60,7,114,9,176, +0,131,255,32,116,2,176,2,162,73,0,137,22,99,0,198, +6,132,0,24,30,80,152,139,240,46,138,132,244,240,162,101, +0,36,55,82,131,194,4,238,90,43,219,142,219,197,30,116, +0,88,185,16,0,60,2,114,14,3,217,60,4,114,8,3, +217,60,7,114,2,3,217,80,139,71,10,134,224,30,232,33, +229,163,96,0,31,50,228,138,196,238,66,254,196,138,7,238, +67,74,226,243,88,31,51,255,137,62,78,0,198,6,98,0, +0,185,0,32,60,4,114,10,60,7,116,4,51,192,235,5, +181,8,184,32,7,243,171,139,22,99,0,131,194,4,160,101, +0,238,46,138,132,236,240,152,163,74,0,129,230,14,0,46, +139,132,228,240,163,76,0,185,8,0,191,80,0,30,7,51, +192,243,171,66,176,48,128,62,73,0,6,117,2,176,63,238, +162,102,0,93,95,94,91,89,90,31,7,207,180,10,137,14, +96,0,232,2,0,235,236,139,22,99,0,138,196,238,66,138, +197,238,74,138,196,254,192,238,66,138,193,238,195,138,199,152, +209,224,150,137,148,80,0,56,62,98,0,117,5,139,194,232, +2,0,235,191,232,127,0,139,200,3,14,78,0,209,249,180, +14,232,195,255,195,138,223,50,255,209,227,139,151,80,0,139, +14,96,0,93,95,94,91,88,88,31,7,207,162,98,0,152, +80,247,38,76,0,163,78,0,139,200,209,249,180,12,232,150, +255,91,209,227,139,135,80,0,232,185,255,233,117,255,139,22, +99,0,131,194,5,160,102,0,10,255,117,14,36,224,128,227, +31,10,195,238,162,102,0,233,89,255,36,223,208,235,115,243, +12,32,235,239,138,38,74,0,160,73,0,138,62,98,0,93, +95,94,89,233,65,255,83,147,160,74,0,246,231,50,255,3, +195,209,224,91,195,232,216,0,128,252,4,114,8,128,252,7, +116,3,233,141,2,83,139,193,232,55,0,116,49,3,240,138, +230,42,227,232,109,0,3,245,3,253,254,204,117,245,88,176, +32,232,104,0,3,253,254,203,117,247,232,165,227,128,62,73, +0,7,116,7,160,101,0,186,216,3,238,233,229,254,138,222, +235,220,232,161,255,3,6,78,0,139,248,139,240,43,209,254, +198,254,194,50,237,139,46,74,0,3,237,160,74,0,246,227, +3,192,80,160,73,0,6,31,60,2,114,19,60,3,119,15, +82,186,218,3,236,168,8,116,251,176,37,178,216,238,90,88, +10,219,195,138,202,86,87,243,165,95,94,195,138,202,87,243, +171,95,195,253,232,57,0,128,252,4,114,8,128,252,7,116, +3,233,69,2,83,139,194,232,152,255,116,32,43,240,138,230, +42,227,232,206,255,43,245,43,253,254,204,117,245,88,176,32, +232,201,255,43,253,254,203,117,247,233,94,255,138,222,235,237, +138,216,10,192,116,14,80,138,198,42,197,254,192,58,195,88, +117,2,42,219,195,128,252,4,114,8,128,252,7,116,3,233, +50,3,232,25,0,139,247,6,31,10,219,117,13,251,144,250, +236,168,1,117,248,236,168,9,116,251,173,233,21,254,134,227, +139,232,128,235,2,208,235,138,199,152,139,248,209,231,139,149, +80,0,116,9,51,255,3,62,76,0,72,117,249,160,74,0, +246,230,50,246,3,194,209,224,3,248,139,22,99,0,131,194, +6,195,128,252,4,114,8,128,252,7,116,3,233,33,2,232, +188,255,10,219,116,6,149,243,171,235,22,149,251,144,250,236, +168,8,117,9,168,1,117,244,236,168,9,116,251,149,171,226, +234,233,175,253,128,252,4,114,8,128,252,7,116,3,233,239, +1,232,138,255,251,10,219,117,15,250,236,168,8,117,9,168, +1,117,241,236,168,9,116,251,139,197,170,71,226,230,233,130, +253,85,139,236,142,70,16,93,152,139,248,60,4,115,115,227, +113,139,243,138,223,50,255,135,243,209,230,255,180,80,0,184, +0,2,205,16,38,138,70,0,69,60,8,116,12,60,13,116, +8,60,10,116,4,60,7,117,10,180,14,205,16,139,148,80, +0,235,45,81,83,185,1,0,131,255,2,114,5,38,138,94, +0,69,180,9,205,16,91,89,254,194,58,22,74,0,114,16, +254,198,42,210,128,254,25,114,7,184,10,14,205,16,254,206, +184,0,2,205,16,226,173,90,151,168,1,117,5,184,0,2, +205,16,233,254,252,232,49,0,38,138,4,34,196,210,224,138, +206,210,192,233,237,252,80,80,232,30,0,210,232,34,196,38, +138,12,91,246,195,128,117,13,246,212,34,204,10,193,38,136, +4,88,233,206,252,50,193,235,245,150,176,40,246,226,168,8, +116,3,5,216,31,150,139,209,187,192,2,185,2,3,128,62, +73,0,6,114,6,187,128,1,185,3,7,34,234,211,234,3, +242,138,247,42,201,208,200,2,205,254,207,117,248,138,227,210, +236,195,138,216,139,193,232,57,2,139,248,43,209,129,194,1, +1,208,230,208,230,128,62,73,0,6,115,4,208,226,209,231, +6,31,42,237,208,227,208,227,116,43,176,80,246,227,139,247, +3,240,138,230,42,227,232,125,0,129,238,176,31,129,239,176, +31,254,204,117,241,138,199,232,133,0,129,239,176,31,254,203, +117,245,233,62,252,138,222,235,236,253,138,216,139,194,232,225, +1,139,248,43,209,129,194,1,1,208,230,208,230,128,62,73, +0,6,115,5,208,226,209,231,71,6,31,42,237,129,199,240, +0,208,227,208,227,116,43,176,80,246,227,139,247,43,240,138, +230,42,227,232,32,0,129,238,80,32,129,239,80,32,254,204, +117,241,138,199,232,40,0,129,239,80,32,254,203,117,245,233, +225,251,138,222,235,236,138,202,86,87,243,164,95,94,129,198, +0,32,129,199,0,32,86,87,138,202,243,164,95,94,195,138, +202,87,243,170,95,129,199,0,32,87,138,202,243,170,95,195, +180,0,80,232,89,1,139,248,88,60,128,115,6,190,110,250, +14,235,24,44,128,30,43,246,142,222,197,54,124,0,140,218, +31,82,11,214,117,5,88,190,110,250,14,209,224,209,224,209, +224,3,240,128,62,73,0,6,31,114,44,87,86,182,4,172, +246,195,128,117,22,170,172,38,136,133,255,31,131,199,79,254, +206,117,236,94,95,71,226,227,233,88,251,38,50,5,170,172, +38,50,133,255,31,235,224,138,211,209,231,128,227,3,176,85, +246,227,138,216,138,248,87,86,182,4,172,232,184,0,35,195, +134,224,246,194,128,116,3,38,51,5,38,137,5,172,232,165, +0,35,195,134,224,246,194,128,116,5,38,51,133,0,32,38, +137,133,0,32,131,199,80,254,206,117,207,94,95,71,71,226, +197,233,255,250,232,168,0,139,240,131,236,8,139,236,128,62, +73,0,6,6,31,114,25,182,4,138,4,136,70,0,69,138, +132,0,32,136,70,0,69,131,198,80,254,206,117,235,235,22, +209,230,182,4,232,94,0,129,198,254,31,232,87,0,129,238, +178,31,254,206,117,238,191,110,250,14,7,131,237,8,139,245, +176,0,22,31,186,128,0,86,87,185,4,0,243,167,95,94, +116,30,254,192,131,199,8,74,117,237,60,0,116,18,43,192, +142,216,196,62,124,0,140,192,11,199,116,4,176,128,235,210, +131,196,8,233,125,250,81,185,8,0,208,200,209,221,209,253, +226,248,149,89,195,173,134,196,185,0,192,178,0,133,193,116, +1,249,208,210,209,233,209,233,115,243,136,86,0,69,195,161, +80,0,83,139,216,160,74,0,246,228,209,224,209,224,42,255, +3,195,91,195,151,180,3,138,62,98,0,205,16,139,199,60, +13,118,70,180,10,185,1,0,205,16,254,194,58,22,74,0, +117,51,178,0,128,254,24,117,42,180,2,205,16,160,73,0, +60,4,114,6,60,7,183,0,117,6,180,8,205,16,138,252, +184,1,6,43,201,182,24,138,22,74,0,254,202,205,16,151, +233,240,249,254,198,180,2,235,244,116,19,60,10,116,19,60, +7,116,22,60,8,117,172,10,210,116,234,74,235,231,178,0, +235,227,128,254,24,117,220,235,176,185,51,5,179,31,232,187, +208,235,204,3,3,5,5,3,3,3,4,180,0,139,22,99, +0,131,194,6,236,168,4,116,3,233,128,0,168,2,117,3, +233,131,0,180,16,139,22,99,0,138,196,238,144,66,236,138, +232,74,254,196,138,196,238,66,144,236,138,229,138,30,73,0, +42,255,46,138,159,163,27,43,195,139,30,78,0,209,235,43, +195,121,2,43,192,177,3,128,62,73,0,4,114,42,128,62, +73,0,7,116,35,178,40,246,242,138,232,2,237,138,220,42, +255,128,62,73,0,6,117,4,177,4,208,228,211,227,138,212, +138,240,208,238,208,238,235,18,246,54,74,0,138,240,138,212, +210,224,138,232,138,220,50,255,211,227,180,1,82,139,22,99, +0,131,194,7,238,90,93,95,94,31,31,31,31,7,207,251, +128,252,128,115,6,180,134,249,202,2,0,128,252,192,116,46, +128,236,128,116,37,254,204,116,33,254,204,116,29,254,204,254, +204,116,39,254,204,116,19,254,204,254,204,254,204,116,24,128, +236,8,116,6,254,204,116,5,235,203,248,235,203,207,14,7, +187,60,231,50,228,235,193,51,192,207,251,139,194,186,1,2, +10,192,116,9,254,200,116,10,235,171,251,235,171,236,36,240, +235,248,179,1,232,25,0,81,179,2,232,19,0,81,179,4, +232,13,0,81,179,8,232,7,0,139,209,89,91,88,235,218, +82,250,176,0,230,67,235,0,228,64,235,0,138,224,228,64, +134,224,80,185,255,4,238,235,0,236,132,195,224,251,131,249, +0,89,117,4,43,201,235,45,176,0,230,67,235,0,228,64, +138,224,235,0,228,64,134,224,59,200,115,11,82,186,255,255, +43,208,3,202,90,235,2,43,200,129,225,240,31,209,233,209, +233,209,233,209,233,251,186,1,2,81,80,185,255,4,236,168, +15,224,251,88,89,90,195,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +233,143,126,232,167,107,203,232,2,101,203,93,232,199,47,116, +13,139,54,233,4,138,68,46,60,254,116,2,60,253,195,0, +0,0,0,0,0,51,46,148,13,104,115,91,17,89,21,102, +55,62,22,143,17,237,16,182,16,248,18,12,46,206,16,53, +17,95,17,45,46,72,19,80,47,53,31,27,45,254,17,88, +30,240,27,145,34,133,46,190,7,190,7,83,30,67,19,46, +31,0,0,138,30,95,17,156,46,157,46,163,46,243,46,223, +54,169,18,88,18,57,34,184,18,216,34,251,15,254,15,1, +16,4,16,217,20,4,61,48,61,160,93,0,0,0,0,0, +0,169,61,63,36,158,36,4,64,82,67,108,65,109,65,206, +65,47,83,231,82,38,93,19,70,51,70,41,88,13,88,209, +71,205,71,147,81,42,80,23,84,104,41,165,41,177,41,28, +101,128,126,150,125,241,112,135,120,14,122,12,115,132,98,244, +121,173,122,205,122,140,43,61,30,122,27,232,40,23,38,233, +41,248,40,11,41,128,34,71,41,13,38,18,38,117,27,173, +107,81,107,130,107,156,101,250,85,152,86,18,87,192,68,152, +68,172,68,55,1,72,1,87,1,139,1,180,1,217,1,229, +1,244,1,249,1,21,2,22,2,26,2,80,2,98,2,109, +2,134,2,169,2,170,2,223,2,35,3,58,3,67,3,77, +3,101,3,105,3,106,3,85,84,207,170,78,196,238,66,211, +6,84,206,14,83,195,21,0,83,65,86,197,194,76,79,65, +196,195,69,69,208,197,0,79,76,79,210,191,76,79,83,197, +187,79,78,212,153,76,69,65,210,146,83,82,76,73,206,219, +73,78,212,28,83,78,199,29,68,66,204,30,79,211,12,72, +82,164,22,65,76,204,179,76,211,192,0,69,76,69,84,197, +169,65,84,193,132,73,205,134,69,70,83,84,210,172,69,70, +73,78,212,173,69,70,83,78,199,174,69,70,68,66,204,175, +69,198,151,0,76,83,197,161,78,196,129,82,65,83,197,165, +68,73,212,166,82,82,79,210,167,82,204,212,82,210,213,88, +208,11,79,198,35,81,214,241,0,79,210,130,206,209,82,197, +15,73,216,31,0,79,84,207,137,79,32,84,207,137,79,83, +85,194,141,0,69,88,164,26,0,78,80,85,212,133,198,139, +78,83,84,210,216,78,212,5,78,208,16,77,208,242,78,75, +69,89,164,222,0,0,69,217,201,0,79,67,65,84,197,202, +80,82,73,78,212,157,76,73,83,212,158,80,79,211,27,69, +212,136,73,78,197,176,79,65,196,188,73,83,212,147,79,199, +10,79,195,36,69,206,18,69,70,84,164,1,79,198,37,0, +79,84,79,210,193,69,82,71,197,189,79,196,243,73,68,164, +3,0,69,88,212,131,69,215,148,79,212,211,0,80,69,206, +186,85,212,156,206,149,210,239,67,84,164,25,80,84,73,79, +206,184,70,198,221,0,82,73,78,212,145,79,75,197,152,79, +211,17,69,69,203,23,83,69,212,198,82,69,83,69,212,199, +79,73,78,212,220,69,206,32,0,0,85,206,138,69,84,85, +82,206,142,69,65,196,135,69,83,84,79,82,197,140,69,205, +143,69,83,85,77,197,168,73,71,72,84,164,2,78,196,8, +69,78,85,205,171,65,78,68,79,77,73,90,197,185,0,67, +82,69,69,206,200,84,79,208,144,87,65,208,164,65,86,197, +190,80,67,168,210,84,69,208,207,71,206,4,81,210,7,73, +206,9,84,82,164,19,84,82,73,78,71,164,214,80,65,67, +69,164,24,79,85,78,196,196,84,73,67,203,33,84,82,73, +199,34,0,72,69,206,205,82,79,206,162,82,79,70,198,163, +65,66,168,206,207,204,65,206,13,0,83,73,78,199,215,83, +210,208,0,65,204,20,65,82,80,84,210,218,0,73,68,84, +200,160,65,73,212,150,72,73,76,197,177,69,78,196,178,82, +73,84,197,183,0,79,210,240,0,0,0,171,233,173,234,170, +235,175,236,222,237,220,244,167,217,190,230,189,231,188,232,0, +121,121,124,124,127,80,70,60,50,40,122,123,130,107,0,0, +173,107,59,100,81,107,168,102,3,99,83,108,32,99,116,101, +18,99,25,99,65,99,40,99,49,100,106,99,79,99,137,99, +215,24,180,101,0,78,69,88,84,32,119,105,116,104,111,117, +116,32,70,79,82,0,83,121,110,116,97,120,32,101,114,114, +111,114,0,82,69,84,85,82,78,32,119,105,116,104,111,117, +116,32,71,79,83,85,66,0,79,117,116,32,111,102,32,68, +65,84,65,0,73,108,108,101,103,97,108,32,102,117,110,99, +116,105,111,110,32,99,97,108,108,0,79,118,101,114,102,108, +111,119,0,79,117,116,32,111,102,32,109,101,109,111,114,121, +0,85,110,100,101,102,105,110,101,100,32,108,105,110,101,32, +110,117,109,98,101,114,0,83,117,98,115,99,114,105,112,116, +32,111,117,116,32,111,102,32,114,97,110,103,101,0,68,117, +112,108,105,99,97,116,101,32,68,101,102,105,110,105,116,105, +111,110,0,68,105,118,105,115,105,111,110,32,98,121,32,122, +101,114,111,0,73,108,108,101,103,97,108,32,100,105,114,101, +99,116,0,84,121,112,101,32,109,105,115,109,97,116,99,104, +0,79,117,116,32,111,102,32,115,116,114,105,110,103,32,115, +112,97,99,101,0,83,116,114,105,110,103,32,116,111,111,32, +108,111,110,103,0,83,116,114,105,110,103,32,102,111,114,109, +117,108,97,32,116,111,111,32,99,111,109,112,108,101,120,0, +67,97,110,39,116,32,99,111,110,116,105,110,117,101,0,85, +110,100,101,102,105,110,101,100,32,117,115,101,114,32,102,117, +110,99,116,105,111,110,0,78,111,32,82,69,83,85,77,69, +0,82,69,83,85,77,69,32,119,105,116,104,111,117,116,32, +101,114,114,111,114,0,85,110,112,114,105,110,116,97,98,108, +101,32,101,114,114,111,114,0,77,105,115,115,105,110,103,32, +111,112,101,114,97,110,100,0,76,105,110,101,32,98,117,102, +102,101,114,32,111,118,101,114,102,108,111,119,0,68,101,118, +105,99,101,32,84,105,109,101,111,117,116,0,68,101,118,105, +99,101,32,70,97,117,108,116,0,70,79,82,32,87,105,116, +104,111,117,116,32,78,69,88,84,0,79,117,116,32,111,102, +32,80,97,112,101,114,0,63,0,87,72,73,76,69,32,119, +105,116,104,111,117,116,32,87,69,78,68,0,87,69,78,68, +32,119,105,116,104,111,117,116,32,87,72,73,76,69,0,70, +73,69,76,68,32,111,118,101,114,102,108,111,119,0,73,110, +116,101,114,110,97,108,32,101,114,114,111,114,0,66,97,100, +32,102,105,108,101,32,110,117,109,98,101,114,0,70,105,108, +101,32,110,111,116,32,102,111,117,110,100,0,66,97,100,32, +102,105,108,101,32,109,111,100,101,0,70,105,108,101,32,97, +108,114,101,97,100,121,32,111,112,101,110,0,63,0,68,101, +118,105,99,101,32,73,47,79,32,69,114,114,111,114,0,70, +105,108,101,32,97,108,114,101,97,100,121,32,101,120,105,115, +116,115,0,63,0,63,0,68,105,115,107,32,102,117,108,108, +0,73,110,112,117,116,32,112,97,115,116,32,101,110,100,0, +66,97,100,32,114,101,99,111,114,100,32,110,117,109,98,101, +114,0,66,97,100,32,102,105,108,101,32,110,97,109,101,0, +63,0,68,105,114,101,99,116,32,115,116,97,116,101,109,101, +110,116,32,105,110,32,102,105,108,101,0,84,111,111,32,109, +97,110,121,32,102,105,108,101,115,0,0,0,0,195,30,16, +0,82,199,79,128,82,199,79,128,228,0,203,255,255,255,255, +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, +1,0,0,80,56,0,114,7,254,255,15,7,10,4,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,7,0,0,7,7,32,0,0,0,0,0, +0,0,0,0,0,1,24,24,0,0,0,0,80,0,1,0, +0,0,7,7,0,0,0,0,0,0,0,1,0,0,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,32,105,110,32,0,79,107,255, +13,0,66,114,101,97,107,0,187,4,0,3,220,67,138,7, +67,60,177,117,7,185,6,0,3,217,235,241,60,130,116,1, +195,138,15,67,138,47,67,83,139,217,11,210,135,218,116,4, +135,218,59,218,185,16,0,91,116,230,3,217,235,207,185,181, +8,233,145,0,205,134,139,30,46,0,138,199,34,195,254,192, +116,9,160,79,3,10,192,178,19,117,77,233,189,38,178,61, +185,178,57,185,178,54,185,178,53,185,178,52,185,178,51,185, +178,62,185,178,55,185,178,64,185,178,63,185,178,50,185,178, +67,185,178,58,235,34,139,30,55,3,137,30,46,0,178,2, +185,178,11,185,178,1,185,178,10,185,178,18,185,178,20,185, +178,6,185,178,22,185,178,13,50,192,162,54,5,162,95,0, +162,98,4,162,96,0,139,30,46,0,137,30,71,3,50,192, +162,101,4,162,107,4,138,199,34,195,254,192,116,4,137,30, +73,3,185,12,8,139,30,69,3,233,177,37,89,138,194,138, +202,162,40,0,139,30,67,3,137,30,75,3,135,218,139,30, +71,3,138,199,34,195,254,192,116,10,137,30,84,3,135,218, +137,30,86,3,139,30,77,3,11,219,135,218,187,79,3,116, +11,34,7,117,7,254,15,135,218,233,115,6,50,192,136,7, +138,209,232,8,36,187,180,3,205,135,138,194,60,68,115,8, +60,50,115,6,60,31,114,6,176,40,44,19,138,208,46,138, +7,67,10,192,117,248,75,67,254,202,117,242,83,139,30,71, +3,94,135,222,86,205,136,46,138,7,60,63,117,6,91,187, +180,3,235,212,232,190,114,91,186,254,255,59,218,205,137,117, +3,233,238,117,138,199,34,195,254,192,116,3,232,153,92,176, +255,232,241,34,176,89,205,138,50,192,162,111,0,232,59,60, +232,154,35,187,45,7,232,140,114,160,40,0,44,2,117,3, +232,238,45,205,139,187,255,255,137,30,46,0,160,62,3,10, +192,116,73,139,30,63,3,83,232,101,92,90,82,232,119,1, +176,42,114,2,176,32,232,172,34,232,132,40,90,115,14,50, +192,162,62,3,235,176,50,192,162,62,3,235,21,139,30,65, +3,3,218,114,241,82,186,249,255,59,218,90,115,232,137,30, +63,3,160,247,1,10,192,116,170,233,168,45,232,81,40,114, +162,232,233,5,254,192,254,200,116,153,156,232,45,7,115,8, +232,147,38,117,3,233,118,254,232,56,4,138,7,60,32,117, +3,232,240,91,82,232,49,1,90,157,137,30,67,3,205,140, +114,3,233,111,59,82,81,232,238,61,232,176,5,10,192,156, +137,22,73,3,232,240,0,114,9,157,156,117,3,233,176,7, +10,192,81,156,83,232,173,26,91,157,89,81,115,3,232,214, +24,90,157,82,116,71,90,160,107,4,10,192,117,8,139,30, +10,3,137,30,47,3,139,30,88,3,94,135,222,86,89,83, +3,217,83,232,21,91,91,137,30,88,3,135,218,136,63,89, +90,83,67,67,137,23,67,67,186,184,0,73,73,73,73,139, +242,172,136,7,67,66,73,138,193,10,197,117,242,205,141,90, +232,30,0,139,30,233,4,137,30,82,3,232,73,35,205,142, +139,30,82,3,137,30,233,4,233,216,254,139,30,48,0,135, +218,138,254,138,218,138,7,67,10,7,117,1,195,67,67,67, +138,7,10,192,116,16,60,32,115,245,60,11,114,241,232,253, +4,232,249,4,235,236,67,135,218,137,23,235,212,186,0,0, +82,116,23,60,44,116,19,90,232,35,6,82,116,29,60,44, +116,25,232,175,35,234,116,2,60,44,186,250,255,116,3,232, +12,6,116,7,60,44,116,3,233,99,253,137,30,59,3,135, +218,90,94,135,222,86,83,139,30,48,0,139,203,138,7,67, +10,7,159,75,158,116,149,67,67,139,31,59,218,139,217,139, +31,245,116,136,245,115,133,235,226,50,192,162,253,2,162,252, +2,205,143,185,59,1,186,184,0,138,7,10,192,117,32,187, +64,1,138,195,42,193,138,200,138,199,26,197,138,232,187,183, +0,50,192,139,250,170,66,139,250,170,66,139,250,170,195,60, +34,117,3,233,51,0,60,32,116,9,160,252,2,10,192,138, +7,116,47,67,80,232,84,2,88,44,58,116,6,60,74,117, +8,176,1,162,252,2,162,253,2,44,85,117,172,80,138,7, +10,192,88,116,170,58,7,116,218,80,138,7,67,232,44,2, +235,236,67,10,192,120,146,75,60,63,176,145,82,81,117,3, +233,226,0,186,107,3,232,210,14,232,41,36,115,3,233,46, +1,83,186,94,11,232,32,0,117,62,232,240,3,186,98,11, +232,21,0,176,137,117,3,235,11,144,186,101,11,232,8,0, +117,38,176,141,89,233,173,0,139,242,46,172,10,192,117,1, +195,138,200,232,149,14,58,193,117,246,67,66,235,234,71,79, +32,0,84,79,0,85,66,0,91,232,127,14,83,205,144,187, +3,1,44,65,2,192,138,200,181,0,3,217,46,139,23,91, +67,83,232,102,14,138,200,139,242,46,172,36,127,117,3,233, +171,1,67,58,193,117,80,139,242,46,172,66,10,192,121,226, +138,193,60,40,116,29,139,242,46,172,60,209,116,21,60,208, +116,17,232,54,14,60,46,116,3,232,199,21,176,0,114,3, +233,122,1,88,139,242,46,172,205,145,10,192,121,3,233,35, +0,89,90,12,128,80,176,255,232,81,1,50,192,162,253,2, +88,232,72,1,233,178,254,91,139,242,46,172,66,10,192,121, +247,66,235,141,75,80,205,146,186,12,12,138,200,139,242,46, +172,10,192,116,23,66,58,193,117,243,235,20,140,170,171,169, +166,168,212,161,138,147,158,137,142,205,141,0,50,192,235,2, +176,1,162,253,2,88,89,90,60,161,80,117,3,232,250,0, +88,60,177,117,5,232,244,0,176,233,60,217,116,3,233,198, +0,80,232,229,0,176,143,232,226,0,88,80,233,173,254,138, +7,60,46,116,14,60,58,114,3,233,144,0,60,48,115,3, +233,137,0,160,253,2,10,192,138,7,89,90,121,3,233,98, +254,116,39,60,46,117,3,233,89,254,176,14,232,173,0,82, +232,232,3,232,253,0,94,135,222,86,135,218,138,195,232,155, +0,138,199,91,232,149,0,233,255,253,82,81,138,7,232,31, +93,232,223,0,89,90,83,160,251,2,60,2,117,26,139,30, +163,4,138,199,10,192,176,2,117,14,138,195,138,251,179,15, +60,10,115,200,4,17,235,203,80,208,200,4,27,232,92,0, +187,163,4,232,79,14,114,3,187,159,4,88,80,138,7,232, +74,0,88,67,254,200,117,244,91,233,173,253,186,106,3,66, +139,242,46,172,36,127,117,3,233,107,0,66,58,7,139,242, +46,172,117,235,233,111,0,60,38,116,3,233,197,253,83,232, +11,2,91,232,215,12,60,72,176,11,117,2,176,12,232,11, +0,82,81,232,217,12,89,233,92,255,176,58,139,250,170,66, +73,138,193,10,197,116,1,195,178,23,233,155,250,205,147,91, +75,254,200,162,253,2,89,90,232,160,12,232,222,255,67,232, +153,12,232,240,33,115,244,60,58,115,8,60,48,115,236,60, +46,116,232,233,51,253,138,7,60,32,115,10,60,9,116,6, +60,10,116,2,176,32,80,160,253,2,254,192,116,2,254,200, +233,159,254,75,138,7,60,32,116,249,60,9,116,245,60,10, +116,241,67,195,176,100,162,57,3,232,210,41,232,85,32,231, +82,137,22,59,3,160,251,2,80,232,123,9,88,83,232,41, +16,187,86,4,232,69,86,91,90,89,83,232,157,3,137,30, +53,3,187,2,0,3,220,232,115,249,117,30,3,217,82,75, +138,55,75,138,23,67,67,83,139,30,53,3,59,218,91,90, +117,229,90,139,227,137,30,69,3,177,90,135,218,177,8,232, +227,30,83,139,30,53,3,94,135,222,86,83,139,30,46,0, +94,135,222,86,232,237,31,204,232,26,13,117,3,233,198,249, +114,3,233,193,249,156,232,14,9,157,83,120,3,233,28,0, +232,138,93,94,135,222,86,186,1,0,138,7,60,207,117,3, +232,212,16,82,83,135,218,232,198,86,235,39,232,18,93,232, +177,85,91,81,82,185,0,129,138,241,138,214,205,148,138,7, +60,207,176,1,117,14,232,207,8,83,232,244,92,232,147,85, +232,18,109,91,81,82,138,200,232,186,12,138,232,81,75,232, +171,0,116,3,233,71,249,232,129,22,232,160,0,83,83,139, +30,90,4,137,30,46,0,139,30,59,3,94,135,222,86,181, +130,81,159,134,196,80,134,196,159,134,196,80,134,196,233,207, +100,181,130,81,235,66,233,203,248,233,18,249,195,232,117,0, +235,80,205,149,233,99,15,233,213,2,10,192,117,235,67,138, +7,67,10,7,116,224,67,139,23,67,137,22,46,0,246,6, +118,4,255,116,38,83,176,91,232,202,28,135,218,232,112,86, +176,93,232,192,28,91,235,19,205,150,232,155,29,137,38,69, +3,137,30,67,3,138,7,60,58,117,191,67,138,7,60,58, +114,171,186,232,14,82,116,164,44,129,114,171,60,74,115,162, +50,228,2,192,139,240,205,151,46,255,180,37,0,67,138,7, +60,58,114,1,195,60,32,116,244,114,8,60,48,245,254,192, +254,200,195,10,192,116,251,60,11,114,114,60,30,117,6,160, +0,3,10,192,195,60,16,116,60,80,67,162,0,3,44,28, +115,57,44,245,115,7,60,254,117,27,138,7,67,137,30,254, +2,183,0,138,216,137,30,2,3,176,2,162,1,3,187,4, +0,88,10,192,195,138,7,67,67,137,30,254,2,75,138,63, +235,225,232,55,0,139,30,254,2,235,147,254,192,208,192,162, +1,3,82,81,186,2,3,135,218,138,232,232,19,85,135,218, +89,90,137,30,254,2,88,187,4,0,10,192,195,60,9,114, +3,233,105,255,60,48,245,254,192,254,200,195,160,0,3,60, +15,115,23,60,13,114,19,139,30,2,3,117,10,67,67,67, +138,23,67,138,55,135,218,233,106,84,160,1,3,162,251,2, +60,8,116,17,139,30,2,3,137,30,163,4,139,30,4,3, +137,30,165,4,195,187,2,3,233,157,84,178,3,185,178,2, +185,178,4,185,178,8,232,58,31,185,190,7,81,114,229,44, +65,138,200,138,232,232,5,255,60,234,117,15,232,254,254,232, +33,31,114,208,44,65,138,232,232,242,254,138,197,42,193,114, +195,254,192,94,135,222,86,187,96,3,181,0,3,217,136,23, +67,254,200,117,249,91,138,7,60,44,117,168,232,206,254,235, +181,232,201,254,232,179,14,121,155,178,5,233,122,247,138,7, +60,46,139,22,73,3,117,3,233,178,254,75,232,174,254,60, +14,116,2,60,13,139,22,2,3,117,3,233,159,254,50,192, +162,0,3,75,186,0,0,232,147,254,114,1,195,83,159,80, +187,152,25,59,218,114,27,138,254,138,218,3,218,3,219,3, +218,3,219,88,158,44,48,138,208,182,0,3,218,135,218,91, +235,213,88,158,91,195,117,3,233,124,28,60,14,116,7,60, +13,116,3,233,163,48,232,117,28,185,232,14,235,30,177,3, +232,2,28,232,149,255,89,83,83,139,30,46,0,94,135,222, +86,176,141,159,134,196,80,134,196,81,235,4,81,232,123,255, +160,0,3,60,13,135,218,116,188,60,14,116,3,233,190,246, +135,218,83,139,30,254,2,94,135,222,86,232,81,0,67,83, +139,30,46,0,59,218,91,115,3,232,79,249,114,3,232,70, +249,115,13,73,176,13,162,61,3,91,232,252,18,139,217,195, +178,8,233,163,246,205,152,117,246,182,255,232,250,245,139,227, +137,30,69,3,60,141,178,3,116,3,233,139,246,91,137,30, +46,0,187,232,14,94,135,222,86,176,91,177,58,235,2,177, +0,181,0,138,193,138,205,138,232,75,232,176,253,10,192,116, +190,58,197,116,186,67,60,34,116,233,254,192,116,236,44,140, +117,231,58,197,18,198,138,240,235,223,88,4,3,235,20,232, +220,37,232,95,28,231,137,22,59,3,82,160,251,2,80,232, +133,5,88,94,135,222,86,138,232,160,251,2,58,197,138,197, +116,6,232,37,12,160,251,2,186,163,4,60,5,114,3,186, +159,4,83,60,3,117,49,139,30,163,4,83,67,139,23,139, +30,48,0,59,218,115,17,139,30,92,3,59,218,90,115,17, +187,44,3,59,218,115,10,176,90,232,230,22,135,218,232,51, +20,232,222,22,94,135,222,86,232,190,82,90,91,195,60,167, +117,50,232,24,253,232,236,27,137,232,95,254,11,210,116,13, +232,79,248,138,245,138,209,91,114,3,233,19,255,137,22,77, +3,114,218,160,79,3,10,192,138,194,116,209,160,40,0,138, +208,233,206,245,232,229,12,138,7,138,232,60,141,116,5,232, +178,27,137,75,138,202,254,201,138,197,117,3,233,185,252,232, +26,254,60,44,117,167,235,238,160,79,3,10,192,117,8,51, +192,163,77,3,233,102,245,254,192,162,40,0,128,63,131,116, +18,232,247,253,117,12,11,210,116,16,232,115,254,50,192,162, +79,3,195,232,151,252,117,250,235,7,50,192,162,79,3,254, +192,161,71,3,163,46,0,139,30,75,3,117,229,128,63,0, +117,3,131,195,4,67,233,23,25,232,112,12,117,218,10,192, +117,3,233,164,253,233,32,245,186,10,0,82,116,31,232,157, +253,135,218,94,135,222,86,116,22,135,218,232,38,27,44,139, +22,65,3,116,8,232,147,253,116,3,233,225,244,135,218,138, +199,10,195,117,3,233,113,253,137,30,65,3,162,62,3,91, +137,30,63,3,89,233,219,245,232,44,4,138,7,60,44,117, +3,232,25,252,60,137,116,5,232,233,26,205,75,83,232,210, +81,91,116,25,232,6,252,117,1,195,60,14,117,3,233,204, +253,60,13,116,3,233,224,251,139,30,2,3,195,182,1,232, +41,254,10,192,116,246,232,228,251,60,161,117,242,254,206,117, +238,235,209,232,106,1,235,3,232,155,49,75,232,206,251,117, +3,232,29,25,117,3,233,63,1,60,215,117,3,233,107,39, +60,206,117,3,233,171,0,60,210,117,3,233,164,0,83,60, +44,116,109,60,59,117,3,233,23,1,89,232,169,3,83,232, +163,7,116,15,232,65,93,232,194,18,198,7,32,139,30,163, +4,254,7,205,153,139,30,163,4,83,232,57,28,116,13,232, +49,1,120,3,233,49,0,232,129,69,235,3,160,41,0,138, +232,254,192,116,35,232,30,28,116,7,232,102,69,138,7,235, +3,232,104,59,91,83,10,192,116,14,2,7,245,115,4,254, +200,58,197,114,3,232,153,24,91,232,222,18,91,233,107,255, +205,154,185,50,0,139,30,233,4,3,217,232,232,27,138,7, +117,24,160,42,0,138,232,232,50,59,60,255,116,12,58,197, +114,3,232,108,24,114,3,233,135,0,44,14,115,252,246,208, +235,114,80,232,7,251,232,241,10,88,80,60,210,116,1,74, +138,198,10,192,120,3,233,3,0,186,0,0,83,232,166,27, +116,13,232,158,0,120,3,233,21,0,232,238,68,235,3,160, +41,0,138,216,254,192,116,7,183,0,232,124,81,135,218,91, +232,161,25,41,75,88,44,210,83,116,19,185,50,0,139,30, +233,4,3,217,232,111,27,138,7,117,3,232,190,58,246,208, +2,194,114,16,254,192,116,25,232,246,23,138,194,254,200,121, +3,233,13,0,254,192,138,232,176,32,232,24,23,254,205,117, +249,91,232,136,250,233,188,254,205,155,50,192,83,82,81,232, +134,44,89,90,50,192,138,248,138,216,137,30,233,4,91,195, +83,50,192,159,134,196,80,134,196,232,233,42,116,3,233,226, +242,83,185,46,0,178,2,182,253,3,217,136,55,176,0,91, +233,230,41,232,51,46,10,192,195,60,133,116,3,233,162,51, +232,17,25,133,60,35,117,3,233,40,48,232,48,29,232,115, +0,232,122,34,232,68,79,82,83,232,167,28,90,89,115,3, +233,69,25,81,82,181,0,232,69,17,91,176,3,233,147,252, +63,82,101,100,111,32,102,114,111,109,32,115,116,97,114,116, +13,0,67,138,7,10,192,117,3,233,146,242,60,34,117,242, +233,155,0,91,91,235,12,205,156,160,58,3,10,192,116,3, +233,115,242,89,187,16,21,232,11,102,139,30,67,3,195,232, +148,47,83,187,246,1,233,224,0,60,35,116,242,232,190,28, +185,140,21,81,60,34,176,0,176,255,162,95,4,117,223,232, +219,16,138,7,60,44,117,10,50,192,162,95,4,232,157,249, +235,4,232,111,24,59,83,232,48,17,91,195,83,160,95,4, +10,192,116,10,176,63,232,12,22,176,32,232,7,22,232,2, +28,89,115,3,233,161,24,81,50,192,162,58,3,198,7,44, +135,218,91,83,82,82,75,176,128,162,57,3,232,94,249,232, +165,34,138,7,75,60,40,117,32,67,181,0,254,197,232,76, +249,117,3,233,232,241,60,34,117,3,233,69,255,60,40,116, +235,60,41,117,233,254,205,117,229,232,49,249,116,7,60,44, +116,3,233,201,241,94,135,222,86,138,7,60,44,116,3,233, +49,255,176,1,162,169,4,232,98,0,160,169,4,254,200,116, +3,233,31,255,83,232,13,5,117,3,232,140,18,91,75,232, +251,248,94,135,222,86,138,7,60,44,116,139,91,75,232,236, +248,10,192,91,116,3,233,10,255,198,7,44,235,6,83,139, +30,94,3,13,50,192,162,58,3,94,135,222,86,235,4,232, +162,23,44,232,24,33,94,135,222,86,82,138,7,60,44,116, +10,160,58,3,10,192,116,3,233,139,0,13,50,192,162,82, +4,232,98,25,116,3,233,139,46,232,169,4,80,117,56,232, +155,248,138,240,138,232,60,34,116,14,160,58,3,10,192,138, +240,116,2,182,58,181,44,75,232,182,15,88,4,3,138,200, +160,82,4,10,192,117,1,195,138,193,135,218,187,202,22,94, +135,222,86,82,233,240,250,232,99,248,88,80,60,5,185,155, +22,81,115,3,233,249,82,233,253,82,75,232,79,248,116,7, +60,44,116,3,233,96,254,94,135,222,86,75,232,62,248,116, +3,233,107,255,90,160,58,3,10,192,135,218,116,3,233,53, +23,82,91,233,162,253,232,98,250,10,192,117,21,67,138,7, +67,10,7,178,4,117,3,233,206,240,67,139,23,67,137,22, +55,3,232,8,248,60,132,117,221,233,79,255,232,213,22,231, +233,4,0,232,206,22,40,75,182,0,82,177,1,232,165,21, +205,157,232,178,1,50,192,162,168,4,137,30,82,3,139,30, +82,3,89,138,7,137,30,49,3,60,230,115,1,195,60,233, +114,117,44,233,138,208,117,12,160,251,2,60,3,138,194,117, +3,233,214,16,60,12,115,229,187,128,3,182,0,3,218,138, +197,46,138,55,58,198,115,213,81,185,62,23,81,138,198,205, +158,60,127,116,100,60,81,114,109,36,254,60,122,116,103,160, +251,2,44,3,117,3,233,61,240,10,192,255,54,163,4,121, +3,233,17,0,255,54,165,4,122,3,233,8,0,255,54,159, +4,255,54,161,4,4,3,138,202,138,232,81,185,35,24,81, +139,30,49,3,233,99,255,182,0,44,230,114,52,60,3,115, +48,60,1,208,208,50,198,58,198,138,240,115,3,233,222,239, +137,30,49,3,232,54,247,235,224,232,101,83,232,55,76,185, +41,101,182,127,235,201,82,232,179,83,90,83,185,49,27,235, +190,138,197,60,100,114,1,195,81,82,186,4,100,187,3,27, +83,232,17,3,116,3,233,118,255,139,30,163,4,83,185,200, +37,235,156,89,138,193,162,252,2,160,251,2,58,197,117,13, +60,2,116,40,60,4,117,3,233,127,0,115,57,138,240,138, +197,60,8,116,46,138,198,60,8,116,87,138,197,60,4,116, +102,138,198,60,3,117,3,233,124,239,115,101,187,170,3,181, +0,3,217,3,217,46,138,15,67,46,138,47,90,139,30,163, +4,81,195,232,12,83,232,37,76,91,137,30,161,4,91,137, +30,159,4,89,90,232,90,75,232,247,82,187,150,3,160,252, +2,208,192,2,195,138,216,18,199,42,195,138,248,46,139,31, +255,227,138,197,80,232,246,75,88,162,251,2,60,4,116,211, +91,137,30,163,4,235,209,232,151,82,89,90,187,160,3,235, +205,91,232,97,75,232,101,74,232,40,75,91,137,30,165,4, +91,137,30,163,4,235,229,83,135,218,232,80,74,91,232,69, +75,232,73,74,233,59,76,232,51,246,117,3,233,228,238,115, +3,233,204,80,232,78,22,114,3,233,219,0,60,32,115,3, +233,127,246,205,159,254,192,117,3,233,106,1,254,200,60,233, +116,213,60,234,117,3,233,175,0,60,34,117,3,233,45,13, +60,211,117,3,233,236,1,60,38,117,3,233,209,0,60,213, +117,12,232,232,245,160,40,0,83,232,67,2,91,195,60,212, +117,13,232,216,245,83,139,30,71,3,232,247,74,91,195,60, +218,117,46,232,199,245,232,155,20,40,60,35,117,13,232,184, +5,83,232,64,38,135,218,91,233,3,0,232,249,30,232,131, +20,41,83,135,218,11,219,117,3,233,221,246,232,141,75,91, +195,60,208,117,3,233,0,2,60,216,117,3,233,139,16,60, +200,117,3,233,208,59,60,220,117,3,233,76,46,60,222,117, +3,233,249,18,60,214,117,3,233,112,15,60,133,117,3,233, +56,42,60,219,117,3,233,164,59,60,209,117,3,233,126,2, +232,96,253,232,46,20,41,195,182,125,232,93,253,139,30,82, +3,83,232,214,99,91,195,232,148,29,83,135,218,137,30,163, +4,232,65,1,116,3,232,175,74,91,195,138,7,60,97,114, +249,60,123,115,245,36,95,195,60,38,116,3,233,108,246,186, +0,0,232,24,245,232,229,255,60,79,116,57,60,72,117,52, +181,5,67,138,7,232,213,255,232,42,21,135,218,115,10,60, +58,115,77,44,48,114,73,235,6,60,71,115,67,44,55,3, +219,3,219,3,219,3,219,10,195,138,216,135,218,254,205,117, +209,233,140,237,75,232,213,244,135,218,115,36,60,56,114,3, +233,107,237,185,208,7,81,3,219,114,156,3,219,114,152,3, +219,114,148,89,181,0,44,48,138,200,3,217,135,218,235,213, +232,153,74,135,218,195,67,138,7,44,129,60,7,117,14,83, +232,154,244,60,40,91,116,3,233,224,73,176,7,181,0,208, +192,138,200,81,232,134,244,138,193,60,5,115,34,232,131,252, +232,81,19,44,232,148,73,135,218,139,30,163,4,94,135,222, +86,83,135,218,232,101,4,135,218,94,135,222,86,235,33,232, +254,254,94,135,222,86,138,195,60,12,114,11,60,27,205,161, +83,115,3,232,123,80,91,186,213,25,82,176,1,162,168,4, +185,185,0,205,160,3,217,46,255,39,254,206,60,234,116,133, +60,45,116,129,254,198,60,43,117,1,195,60,233,116,251,159, +75,158,195,254,192,18,192,89,34,197,4,255,26,192,232,248, +73,235,15,182,90,232,18,252,232,146,80,247,211,137,30,163, +4,89,233,25,252,160,251,2,60,8,254,200,254,200,254,200, +195,138,197,80,232,118,80,88,90,60,122,117,3,233,137,74, +60,123,117,3,233,102,72,185,12,101,81,60,70,117,3,11, +218,195,60,80,117,3,35,218,195,60,60,117,3,51,218,195, +60,50,117,5,51,218,247,211,195,247,211,35,218,247,211,195, +43,218,233,207,72,160,99,0,235,3,232,175,51,254,192,138, +216,50,192,138,248,233,132,73,232,46,0,82,232,49,254,94, +135,222,86,139,23,128,250,255,117,3,233,188,244,14,187,7, +101,83,255,54,80,3,82,160,251,2,80,60,3,117,3,232, +247,12,88,135,218,187,163,4,203,232,97,243,185,0,0,60, +27,115,16,60,17,114,12,232,83,243,160,2,3,10,192,208, +208,138,200,135,218,187,18,0,3,217,135,218,195,232,217,255, +82,232,16,18,231,232,194,6,94,135,222,86,137,23,91,195, +60,208,116,233,60,209,116,28,232,249,17,83,232,245,17,69, +232,241,17,71,140,218,116,7,232,233,17,231,232,155,6,137, +22,80,3,195,232,243,1,232,224,1,135,218,137,23,135,218, +138,7,60,40,116,3,233,50,245,232,241,242,232,63,27,138, +7,60,41,117,3,233,35,245,232,185,17,44,235,238,232,201, +1,160,251,2,10,192,80,137,30,82,3,135,218,139,31,11, +219,117,3,233,116,235,138,7,60,40,116,3,233,206,0,232, +187,242,137,30,49,3,135,218,139,30,82,3,232,133,17,40, +50,192,80,83,135,218,176,128,162,57,3,232,240,26,135,218, +94,135,222,86,160,251,2,80,82,232,155,250,137,30,82,3, +91,137,30,49,3,88,232,65,1,177,4,232,55,16,187,248, +255,3,220,139,227,232,249,71,160,251,2,80,139,30,82,3, +138,7,60,41,116,19,232,59,17,44,83,139,30,49,3,232, +50,17,44,235,177,88,162,228,3,88,10,192,116,78,162,251, +2,187,0,0,3,220,232,191,71,187,8,0,3,220,139,227, +90,179,3,254,195,74,139,242,172,10,192,120,246,74,74,74, +160,251,2,2,195,138,232,160,228,3,138,200,2,197,60,100, +114,3,233,84,243,80,138,195,181,0,187,230,3,3,217,138, +200,232,223,0,185,197,28,81,81,233,153,244,139,30,82,3, +232,250,241,83,139,30,49,3,232,201,16,41,176,82,137,30, +49,3,160,124,3,4,4,80,208,200,138,200,232,150,15,88, +138,200,246,208,254,192,138,216,183,255,3,220,139,227,83,186, +122,3,232,158,0,91,137,30,122,3,139,30,228,3,137,30, +124,3,139,203,187,126,3,186,230,3,232,134,0,138,248,138, +216,137,30,228,3,139,30,80,4,67,137,30,80,4,138,199, +10,195,162,77,4,139,30,49,3,232,144,249,75,232,141,241, +116,3,233,41,234,232,141,253,117,17,186,44,3,139,30,163, +4,59,218,114,6,232,124,8,232,230,8,139,30,122,3,138, +247,138,211,67,67,138,15,67,138,47,65,65,65,65,187,122, +3,232,47,0,135,218,139,227,139,30,80,4,75,137,30,80, +4,138,199,10,195,162,77,4,91,88,83,36,7,187,140,3, +138,200,181,0,3,217,232,252,252,91,195,139,242,172,136,7, +67,66,73,138,197,10,193,117,242,195,83,139,30,46,0,67, +11,219,91,117,244,178,12,233,206,233,232,231,15,209,176,128, +162,57,3,10,7,138,200,233,91,25,60,126,116,3,233,157, +233,67,138,7,67,60,131,117,3,233,164,12,60,160,117,3, +233,175,55,60,162,117,3,233,192,56,233,129,233,232,117,4, +135,218,236,233,57,253,232,97,4,82,232,167,15,44,232,203, +0,90,195,232,240,255,238,195,232,235,255,82,80,178,0,75, +232,186,240,116,7,232,140,15,44,232,176,0,88,138,240,94, +135,222,86,160,94,0,10,192,117,11,135,218,236,135,218,50, +194,34,198,116,238,91,195,233,52,233,60,35,116,60,232,150, +248,232,145,252,117,88,232,125,32,138,198,182,0,246,208,10, +192,121,3,233,179,241,138,208,82,232,72,15,44,232,108,0, +90,159,134,196,80,134,196,83,82,138,194,2,192,138,208,176, +20,159,134,196,80,134,196,233,8,32,232,80,240,232,76,0, +80,232,32,15,44,232,68,0,88,83,82,232,199,32,232,50, +58,10,192,121,3,233,113,241,67,90,136,23,91,195,232,46, +0,232,184,51,162,41,0,44,14,115,252,4,28,246,208,254, +192,2,194,162,42,0,195,232,19,240,232,26,248,83,232,156, +76,135,218,91,138,198,10,192,195,232,1,240,232,8,248,232, +235,255,116,3,233,50,241,75,232,242,239,138,194,195,232,127, +245,75,232,232,239,205,162,89,232,242,234,81,232,25,40,139, +30,59,3,75,232,214,239,116,14,232,168,14,44,232,195,31, +178,2,50,192,232,150,33,187,255,255,137,30,46,0,232,117, +16,117,5,176,1,162,111,0,91,90,138,15,67,138,47,67, +138,197,10,193,117,3,233,61,233,232,144,224,117,3,232,7, +13,81,138,15,67,138,47,67,81,94,135,222,86,135,218,59, +218,89,115,3,233,30,233,94,135,222,86,83,81,135,218,137, +30,73,3,232,170,69,91,138,7,60,9,116,5,176,32,232, +243,11,232,24,0,187,247,1,232,5,0,232,179,12,235,151, +138,7,10,192,117,1,195,232,105,23,67,235,243,185,247,1, +182,255,50,192,162,252,2,50,192,162,94,4,232,121,39,235, +6,65,67,254,206,116,223,138,7,10,192,139,249,170,116,214, +60,11,114,40,60,32,138,208,114,56,60,34,117,10,160,252, +2,52,1,162,252,2,176,34,60,58,117,16,160,252,2,208, +216,114,7,208,208,36,253,162,252,2,176,58,10,192,121,3, +233,60,0,138,208,60,46,116,9,232,87,1,115,4,50,192, +235,24,160,94,4,10,192,116,15,254,192,117,11,176,32,139, +249,170,65,254,206,117,1,195,176,1,162,94,4,138,194,60, +11,114,7,60,32,115,3,233,55,1,139,249,170,235,130,160, +252,2,208,216,114,67,208,216,208,216,115,82,138,7,60,217, +83,81,187,165,32,83,117,207,73,139,241,172,60,77,117,199, +73,139,241,172,60,69,117,191,73,139,241,172,60,82,117,183, +73,139,241,172,60,58,117,175,88,88,91,254,198,254,198,254, +198,254,198,235,45,89,91,138,7,233,53,255,160,252,2,12, +2,162,252,2,50,192,195,160,252,2,12,4,235,243,208,208, +114,231,138,7,60,132,117,3,232,225,255,60,143,117,3,232, +229,255,138,7,254,192,138,7,117,5,67,138,7,36,127,67, +60,161,117,3,232,248,67,60,177,117,10,138,7,67,60,233, +176,177,116,1,75,83,81,82,205,163,187,54,1,138,232,177, +64,254,193,67,138,247,138,211,46,138,7,10,192,116,242,159, +67,158,121,244,46,138,7,58,197,117,232,135,218,60,208,116, +2,60,209,138,193,90,89,138,208,117,12,160,94,4,10,192, +176,0,162,94,4,235,21,60,91,117,7,50,192,162,94,4, +235,29,160,94,4,10,192,176,255,162,94,4,116,13,176,32, +139,249,170,65,254,206,117,3,233,164,5,138,194,235,6,46, +138,7,67,138,208,36,127,139,249,170,65,254,206,117,3,233, +141,5,10,194,121,233,60,168,117,5,50,192,162,94,4,91, +233,100,254,232,191,13,114,1,195,60,48,114,251,60,58,245, +195,75,232,136,237,82,81,80,232,33,238,88,185,181,33,81, +60,11,117,3,233,96,66,60,12,117,3,233,99,66,139,30, +2,3,233,19,79,89,90,160,0,3,178,79,60,11,116,6, +60,12,178,72,117,20,176,38,139,249,170,65,254,206,116,192, +138,194,139,249,170,65,254,206,116,182,160,1,3,60,4,178, +0,114,6,178,33,116,2,178,35,138,7,60,32,117,3,232, +82,67,138,7,67,10,192,116,42,139,249,170,65,254,206,116, +143,160,1,3,60,4,114,234,159,73,158,139,241,172,159,65, +158,117,4,60,46,116,8,60,68,116,4,60,69,117,211,178, +0,235,207,138,194,10,192,116,9,139,249,170,65,254,206,117, +1,195,139,30,254,2,233,174,253,232,241,231,81,232,245,1, +89,90,81,81,232,32,232,115,11,138,247,138,211,94,135,222, +86,83,59,218,114,3,233,0,238,187,45,7,232,246,88,89, +187,221,9,94,135,222,86,135,218,139,30,88,3,139,242,172, +139,249,170,65,66,59,218,117,244,139,217,137,30,88,3,195, +232,50,0,232,195,36,30,142,30,80,3,138,7,31,233,238, +248,232,22,0,82,232,177,36,232,89,11,44,232,125,252,90, +6,142,6,80,3,139,250,170,7,195,232,122,244,83,232,4, +0,135,218,91,195,185,173,107,81,232,105,248,120,246,205,164, +160,166,4,60,144,117,237,232,171,88,120,232,232,130,72,185, +128,145,186,0,0,233,58,64,185,10,0,81,138,245,138,213, +116,53,60,44,116,11,82,232,116,237,138,238,138,202,90,116, +38,232,0,11,44,232,102,237,116,29,88,232,246,10,44,82, +232,104,237,116,3,233,182,228,11,210,117,3,233,74,237,135, +218,94,135,222,86,135,218,81,232,76,231,90,82,81,232,70, +231,139,217,90,59,218,135,218,115,3,233,44,237,90,89,88, +83,82,235,21,3,217,115,3,233,30,237,135,218,83,187,249, +255,59,218,91,115,3,233,16,237,82,139,23,11,210,135,218, +90,116,12,138,7,67,10,7,159,75,158,135,218,117,213,81, +232,36,0,89,90,91,82,139,23,67,11,210,116,20,135,218, +94,135,222,86,135,218,67,137,23,135,218,3,217,135,218,91, +235,228,185,181,8,81,60,13,50,192,162,61,3,139,30,48, +0,75,67,138,7,67,10,7,117,1,195,67,139,23,67,232, +123,235,10,192,116,236,138,200,160,61,3,10,192,138,193,116, +91,205,165,60,167,117,24,232,99,235,60,137,117,228,232,92, +235,60,14,117,221,82,232,172,236,11,210,117,10,235,41,60, +14,117,204,82,232,158,236,83,232,140,230,159,73,158,176,13, +114,63,232,120,8,187,252,35,82,232,105,87,91,232,96,65, +89,91,83,81,232,81,65,91,90,75,235,163,85,110,100,101, +102,105,110,101,100,32,108,105,110,101,32,0,60,13,117,234, +82,232,97,236,83,135,218,67,67,67,138,15,67,138,47,176, +14,187,247,35,83,139,30,254,2,83,75,136,47,75,136,15, +75,136,7,91,195,160,61,3,10,192,116,248,233,73,255,232, +178,9,66,232,174,9,65,232,170,9,83,232,166,9,69,160, +93,4,10,192,116,3,233,110,227,83,139,30,90,3,135,218, +139,30,92,3,59,218,116,3,233,92,227,91,138,7,44,48, +115,3,233,73,227,60,2,114,3,233,66,227,162,92,4,254, +192,162,93,4,232,150,234,195,46,138,7,10,192,116,248,232, +3,0,67,235,243,159,134,196,80,134,196,233,25,7,116,9, +232,132,242,83,232,6,71,235,32,83,187,210,36,232,165,86, +232,225,12,90,115,3,233,143,9,82,67,138,7,232,0,69, +138,7,10,192,117,228,232,228,70,137,30,12,0,232,158,63, +91,195,82,97,110,100,111,109,32,110,117,109,98,101,114,32, +115,101,101,100,32,40,45,51,50,55,54,56,32,116,111,32, +51,50,55,54,55,41,0,177,29,235,2,177,26,181,0,135, +218,139,30,46,0,137,30,90,4,135,218,254,197,75,232,12, +234,116,23,60,34,117,11,232,3,234,10,192,116,12,60,34, +117,245,60,161,116,29,60,205,117,228,10,192,117,21,67,138, +7,67,10,7,138,209,117,3,233,157,226,67,139,23,67,137, +22,90,4,232,215,233,60,143,117,7,81,232,17,236,89,235, +217,60,132,117,7,81,232,2,236,89,235,206,138,193,60,26, +138,7,116,13,60,177,116,163,60,178,117,161,254,205,117,157, +195,60,130,116,150,60,131,117,148,254,205,116,243,232,157,233, +116,168,135,218,139,30,46,0,83,139,30,90,4,137,30,46, +0,135,218,81,232,215,17,89,75,232,129,233,186,42,37,116, +8,232,80,8,44,75,186,121,37,94,135,222,86,137,30,46, +0,91,82,195,159,80,160,168,4,162,169,4,88,158,159,80, +50,192,162,168,4,88,158,195,232,219,2,138,7,67,138,15, +67,138,47,90,81,80,232,214,2,88,138,240,138,23,67,138, +15,67,138,47,91,138,194,10,198,117,1,195,138,198,44,1, +114,249,50,192,58,194,254,192,115,241,254,206,254,202,139,241, +172,65,58,7,159,67,158,116,220,245,233,114,63,232,247,61, +235,8,232,252,61,235,3,232,174,74,232,47,0,232,137,2, +185,23,41,81,138,7,67,83,232,171,0,91,138,15,67,138, +47,232,13,0,83,138,216,232,91,2,90,195,176,1,232,149, +0,187,44,3,83,136,7,67,137,23,91,195,75,181,34,138, +245,83,177,255,67,138,7,254,193,10,192,116,8,58,198,116, +4,58,197,117,239,60,34,117,3,232,177,232,83,138,197,60, +44,117,13,254,193,254,201,116,7,75,138,7,60,32,116,245, +91,94,135,222,86,67,135,218,138,193,232,180,255,186,44,3, +176,82,139,30,12,3,137,30,163,4,176,3,162,251,2,232, +23,62,186,47,3,59,218,137,30,12,3,91,138,7,117,155, +186,16,0,233,34,225,67,232,146,255,232,236,1,232,124,62, +254,198,254,206,116,133,139,241,172,232,217,4,60,13,117,3, +232,165,5,65,235,236,10,192,235,2,88,158,159,80,139,30, +92,3,135,218,139,30,47,3,246,208,138,200,181,255,3,217, +67,59,218,114,15,137,30,47,3,67,135,218,88,158,195,88, +134,196,158,195,88,158,186,14,0,117,3,233,202,224,58,192, +159,80,185,218,38,81,139,30,10,3,137,30,47,3,187,0, +0,83,139,30,92,3,83,187,14,3,139,22,12,3,59,218, +185,42,39,116,3,233,156,0,187,226,3,137,30,78,4,139, +30,90,3,137,30,75,4,139,30,88,3,139,22,75,4,59, +218,116,27,138,7,67,67,67,80,232,69,19,88,60,3,117, +5,232,113,0,50,192,138,208,182,0,3,218,235,221,139,30, +78,4,139,23,11,210,139,30,90,3,116,25,135,218,137,30, +78,4,67,67,139,23,67,67,135,218,3,218,137,30,75,4, +135,218,235,183,89,139,22,92,3,59,218,117,3,233,108,0, +138,7,67,80,67,67,232,248,18,138,15,67,138,47,67,88, +83,3,217,60,3,117,221,137,30,51,3,91,138,15,181,0, +3,217,3,217,67,135,218,139,30,51,3,135,218,59,218,116, +196,185,197,39,81,50,192,10,7,159,67,158,138,23,159,67, +158,138,55,159,67,158,117,1,195,139,203,139,30,47,3,59, +218,139,217,114,243,91,94,135,222,86,59,218,94,135,222,86, +83,139,217,115,227,89,88,88,83,82,81,195,90,91,11,219, +116,249,75,138,47,75,138,15,83,75,138,31,183,0,3,217, +138,245,138,209,75,139,203,139,30,47,3,232,160,60,91,136, +15,67,136,47,139,217,75,233,224,254,81,83,139,30,163,4, +94,135,222,86,232,160,240,94,135,222,86,232,237,59,138,7, +83,139,30,163,4,83,2,7,186,15,0,115,3,233,120,223, +232,219,253,90,232,72,0,94,135,222,86,232,63,0,83,139, +30,45,3,135,218,232,14,0,232,11,0,187,58,23,94,135, +222,86,83,233,7,254,91,94,135,222,86,138,7,67,138,15, +67,138,47,138,216,254,195,254,203,117,1,195,139,241,172,139, +250,170,65,66,235,241,232,146,59,139,30,163,4,135,218,232, +32,0,135,218,117,229,82,138,245,138,209,74,138,15,139,30, +47,3,59,218,117,10,50,192,138,232,3,217,137,30,47,3, +91,195,205,238,139,30,12,3,75,138,47,75,138,15,75,59, +218,117,238,137,30,12,3,195,185,127,27,81,232,183,255,50, +192,138,240,138,7,10,192,195,185,127,27,81,232,237,255,117, +3,233,85,231,67,139,23,139,242,172,195,232,46,253,232,14, +246,139,30,45,3,136,23,89,233,114,253,232,255,229,232,211, +4,40,232,247,245,82,232,203,4,44,232,250,237,232,196,4, +41,94,135,222,86,83,232,236,241,116,5,232,225,245,235,3, +232,185,255,90,232,5,0,232,213,245,176,32,80,138,194,232, +236,252,138,232,88,254,197,254,205,116,188,139,30,45,3,136, +7,67,254,205,117,249,235,175,232,163,0,50,192,94,135,222, +86,138,200,176,83,83,138,7,58,197,114,3,138,197,186,177, +0,81,232,81,253,89,91,83,67,138,47,67,138,63,138,221, +181,0,3,217,139,203,232,168,252,138,216,232,247,254,90,232, +13,255,233,232,252,232,102,0,90,82,139,242,172,42,197,235, +188,135,218,138,7,232,92,0,254,197,254,205,117,3,233,152, +230,81,232,181,1,88,134,196,158,94,135,222,86,185,117,41, +81,254,200,58,7,181,0,114,1,195,138,200,138,7,42,193, +58,194,138,232,114,243,138,234,195,232,0,255,117,3,233,142, +241,138,208,67,139,31,83,3,218,138,47,136,55,94,135,222, +86,81,75,232,23,229,232,190,63,89,91,136,47,195,135,218, +232,225,3,41,89,90,81,138,234,195,232,0,229,232,3,237, +232,2,241,176,1,80,116,22,88,232,243,244,10,192,117,3, +233,38,230,80,232,189,3,44,232,236,236,232,253,57,232,179, +3,44,83,139,30,163,4,94,135,222,86,232,217,236,232,163, +3,41,83,232,80,254,135,218,89,91,88,81,185,7,101,81, +185,127,27,81,80,82,232,68,254,90,88,138,232,254,200,138, +200,58,7,176,0,115,162,139,242,172,10,192,138,197,116,153, +138,7,67,138,47,67,138,63,138,221,181,0,3,217,42,193, +138,232,81,82,94,135,222,86,138,15,67,139,23,91,83,82, +81,139,242,172,58,7,117,30,66,254,201,116,12,67,254,205, +117,239,90,90,89,90,50,192,195,91,90,90,89,138,197,42, +199,2,193,254,192,195,89,90,91,67,254,205,117,208,235,229, +232,33,3,40,232,151,12,232,97,57,83,82,135,218,67,139, +23,139,30,92,3,59,218,114,18,139,30,48,0,59,218,115, +10,91,83,232,46,251,91,83,232,190,57,91,94,135,222,86, +232,241,2,44,232,21,244,10,192,117,3,233,75,229,80,138, +7,232,102,0,82,232,4,236,83,232,138,253,135,218,91,89, +88,138,232,94,135,222,86,83,187,7,101,94,135,222,86,138, +193,10,192,116,144,138,7,42,197,115,3,233,27,229,254,192, +58,193,114,2,138,193,138,205,254,201,181,0,82,67,138,23, +67,138,63,138,218,3,217,138,232,90,135,218,138,15,67,139, +31,135,218,138,193,10,192,117,1,195,139,242,172,136,7,66, +67,254,201,116,244,254,205,117,241,195,178,255,60,41,116,7, +232,113,2,44,232,149,243,232,106,2,41,195,232,150,239,116, +3,233,6,0,232,18,253,232,124,251,139,22,92,3,139,30, +47,3,233,203,239,205,180,159,134,196,80,134,196,83,232,37, +4,116,3,233,221,23,91,88,134,196,158,81,159,80,235,18, +50,192,162,79,3,233,147,229,25,254,200,232,99,35,176,8, +235,56,60,9,117,16,176,32,232,202,255,232,78,35,36,7, +117,244,88,158,89,195,60,32,114,32,160,41,0,138,232,232, +58,35,254,197,116,11,254,205,58,197,117,3,232,114,0,116, +9,60,255,116,5,254,192,232,39,35,88,158,89,159,80,88, +158,232,124,34,195,205,181,232,188,3,116,61,232,182,23,115, +243,81,82,83,160,54,5,36,200,162,54,5,232,204,24,91, +90,89,160,107,4,10,192,116,3,233,10,49,160,239,4,10, +192,116,7,187,232,14,83,233,237,0,83,81,82,187,45,7, +232,2,79,90,89,176,13,91,195,232,18,33,195,232,204,34, +10,192,116,248,235,11,198,7,0,232,106,3,187,246,1,117, +7,205,182,176,13,232,45,255,232,91,3,116,3,50,192,195, +50,192,232,172,34,50,192,195,205,183,160,94,0,10,192,117, +1,195,232,196,255,117,3,232,220,1,233,144,1,232,239,50, +83,232,175,32,116,33,232,176,255,10,192,117,16,80,176,2, +232,139,249,139,30,45,3,90,137,23,233,208,249,80,232,123, +249,88,138,208,232,74,252,187,6,0,137,30,163,4,176,3, +162,251,2,91,195,83,139,30,10,3,181,0,3,217,3,217, +176,38,42,195,138,216,176,255,26,199,138,248,114,6,3,220, +91,115,1,195,139,30,44,0,75,75,137,30,69,3,186,7, +0,233,212,218,57,30,47,3,115,233,81,82,83,232,6,250, +91,90,89,57,30,47,3,115,218,235,227,117,214,139,30,48, +0,232,121,1,162,100,4,162,62,3,162,61,3,136,7,67, +136,7,67,137,30,88,3,205,174,139,30,48,0,75,205,175, +137,30,59,3,160,101,4,10,192,117,23,50,192,162,93,4, +162,92,4,181,26,187,96,3,205,176,198,7,4,67,254,205, +117,248,186,7,0,187,11,0,232,198,55,50,192,162,79,3, +138,216,138,248,137,30,77,3,137,30,86,3,139,30,10,3, +160,107,4,10,192,117,4,137,30,47,3,50,192,232,124,0, +139,30,88,3,137,30,90,3,137,30,92,3,160,101,4,10, +192,117,3,232,180,21,160,54,5,36,1,117,3,162,54,5, +89,139,30,44,0,75,75,137,30,69,3,67,67,205,177,139, +227,187,14,3,137,30,12,3,232,243,247,232,202,230,50,192, +138,248,138,216,137,30,124,3,162,77,4,137,30,228,3,137, +30,80,4,137,30,122,3,162,57,3,83,81,139,30,59,3, +195,59,218,195,94,139,251,252,46,166,86,139,223,117,10,138, +7,60,58,114,1,195,233,28,225,233,178,217,135,218,139,30, +48,0,116,17,135,218,232,82,226,83,232,74,220,139,217,90, +114,3,233,11,227,75,137,30,94,3,135,218,195,117,253,254, +192,235,9,117,247,156,117,3,232,159,10,157,137,30,67,3, +187,14,3,137,30,12,3,187,12,255,89,139,30,46,0,83, +156,138,195,34,199,254,192,116,12,137,30,84,3,139,30,67, +3,137,30,86,3,232,245,253,157,187,50,7,116,3,233,20, +218,233,65,218,176,15,80,176,94,232,41,253,88,4,64,232, +35,253,233,236,253,139,30,86,3,11,219,186,17,0,117,3, +233,69,217,139,22,84,3,137,22,46,0,195,184,50,192,162, +118,4,195,232,200,8,82,83,187,110,4,232,11,54,139,30, +90,3,94,135,222,86,232,108,236,80,232,55,255,44,232,173, +8,88,138,232,232,94,236,58,197,116,3,233,8,217,94,135, +222,86,135,218,83,139,30,90,3,59,218,117,19,90,91,94, +135,222,86,82,232,210,53,91,186,110,4,232,203,53,91,195, +233,102,225,176,1,162,57,3,232,115,8,117,243,83,162,57, +3,138,253,138,217,73,73,73,139,241,172,73,10,192,120,248, +73,73,3,218,135,218,139,30,92,3,59,218,139,242,172,139, +249,170,159,66,158,159,65,158,117,240,73,139,217,137,30,92, +3,91,138,7,60,44,117,183,232,226,223,235,182,88,134,196, +158,91,195,138,7,60,65,114,249,60,91,245,195,233,238,253, +116,251,60,44,116,9,232,251,224,75,232,192,223,116,238,232, +146,254,44,116,232,139,22,44,0,60,44,116,3,232,71,0, +75,232,169,223,82,116,78,232,122,254,44,116,72,232,55,0, +75,232,153,223,116,3,233,53,216,94,135,222,86,83,187,238, +0,59,218,115,45,91,232,54,0,114,39,83,139,30,88,3, +185,20,0,3,217,59,218,115,25,135,218,137,30,10,3,91, +137,30,44,0,91,235,150,232,240,242,11,210,117,3,233,152, +224,195,233,47,253,139,22,44,0,43,22,10,3,235,186,139, +195,43,194,139,208,195,205,178,83,139,30,233,4,11,219,91, +195,1,48,78,48,225,48,253,47,241,47,91,48,48,48,27, +48,139,30,86,0,232,74,0,116,1,195,235,4,176,1,235, +2,176,255,162,112,0,254,192,232,101,1,183,1,232,11,0, +117,232,232,11,31,232,94,0,50,192,195,160,92,0,58,195, +116,248,115,7,138,216,50,192,233,245,30,254,195,233,240,30, +160,91,0,58,195,116,227,176,1,58,195,116,221,254,203,233, +222,30,160,41,0,58,199,116,209,254,199,233,210,30,139,30, +91,0,183,1,137,30,88,0,233,197,30,139,30,86,0,232, +9,0,117,182,160,41,0,138,248,235,197,176,1,58,199,116, +169,254,207,233,170,30,160,91,0,138,248,160,92,0,138,216, +42,199,114,150,254,192,80,232,153,0,160,88,0,254,195,58, +195,254,203,115,13,58,199,114,9,117,2,176,1,254,200,162, +88,0,88,254,200,117,3,233,3,0,232,222,30,195,160,91, +0,138,216,160,92,0,138,248,42,195,114,241,254,192,80,232, +127,0,160,88,0,58,195,114,16,58,199,120,3,233,9,0, +117,2,176,255,254,192,162,88,0,88,254,200,116,207,233,187, +30,139,30,91,0,160,93,0,138,232,138,197,58,195,115,2, +138,216,58,199,115,2,138,248,138,199,183,0,42,195,254,192, +186,114,0,80,135,218,3,218,136,7,67,136,7,67,254,200, +117,249,135,218,88,50,192,162,88,0,162,89,0,162,90,0, +233,43,255,80,232,55,0,181,1,138,200,138,197,139,250,170, +74,139,242,172,138,233,138,200,88,254,200,117,1,195,80,235, +234,80,181,1,232,23,0,138,200,138,197,139,250,170,66,139, +242,172,138,233,138,200,88,254,200,116,226,80,235,235,83,186, +116,0,183,0,254,203,3,218,138,7,135,218,91,34,192,195, +83,186,116,0,183,0,254,203,3,218,136,7,135,218,91,195, +205,166,232,65,1,139,30,86,0,137,30,88,0,160,41,0, +254,192,235,30,176,63,232,12,250,176,32,232,7,250,50,192, +162,39,0,205,167,232,30,1,139,30,86,0,137,30,88,0, +138,199,162,90,0,232,225,4,254,203,116,5,176,1,232,175, +255,232,12,35,232,65,35,232,164,27,232,8,35,232,56,35, +10,192,117,3,232,119,28,80,139,30,86,0,138,38,41,0, +254,196,58,30,88,0,117,18,58,62,89,0,115,4,136,62, +89,0,58,62,90,0,118,6,138,231,136,38,90,0,88,232, +47,0,114,16,116,187,232,3,2,232,153,249,235,179,1,232, +147,249,235,173,60,3,249,116,1,245,187,246,1,195,60,59, +117,251,233,248,220,75,67,254,201,120,242,46,58,7,117,246, +195,187,148,50,177,14,232,236,255,121,3,233,7,0,80,50, +192,162,114,0,88,187,162,50,177,12,232,216,255,121,3,233, +32,0,80,138,193,10,192,208,192,138,200,50,192,138,232,187, +174,50,3,217,46,138,23,67,46,138,55,88,82,139,30,86, +0,195,10,192,195,3,34,192,195,139,30,86,0,128,255,1, +117,11,254,203,232,215,254,117,7,138,62,41,0,232,144,28, +233,222,249,195,13,2,6,5,3,11,12,28,29,30,31,14, +127,27,9,10,8,18,2,6,5,3,13,14,127,27,255,52, +86,52,202,52,57,51,175,51,7,53,37,53,77,53,1,52, +119,52,243,50,193,51,232,13,253,116,200,88,181,254,187,247, +1,232,65,249,136,7,60,13,116,17,60,10,117,6,138,197, +60,254,116,237,67,254,205,117,232,254,205,50,192,136,7,187, +246,1,195,160,114,0,10,192,116,58,232,97,254,80,135,218, +198,7,0,135,218,254,195,232,41,3,160,41,0,42,199,116, +11,254,192,80,232,245,0,88,254,200,117,247,139,30,86,0, +232,59,254,88,138,200,50,192,139,250,170,66,138,193,139,250, +170,50,192,195,176,10,10,192,195,232,90,2,186,247,1,181, +254,160,88,0,58,195,183,1,160,41,0,117,19,139,30,88, +0,82,232,9,254,90,160,41,0,116,5,160,90,0,254,200, +162,90,0,232,60,2,138,197,34,192,116,16,82,232,238,253, +90,117,9,183,1,254,195,160,41,0,235,228,135,218,176,254, +42,198,138,240,75,138,7,60,32,116,8,10,192,117,7,254, +206,116,3,75,235,239,67,198,7,0,135,218,176,13,80,183, +1,232,124,27,176,13,232,252,247,187,246,1,88,249,195,50, +192,162,247,1,232,167,253,117,4,254,195,235,247,176,3,235, +221,138,199,254,200,36,248,4,8,254,192,138,232,160,41,0, +58,197,115,2,138,232,138,197,160,114,0,10,192,138,197,117, +12,58,199,116,5,138,248,232,54,27,50,192,195,42,199,116, +251,80,160,80,0,232,20,0,232,170,247,88,254,200,117,241, +195,160,114,0,246,208,162,114,0,50,192,195,83,139,30,86, +0,80,160,114,0,10,192,116,3,232,3,0,88,91,195,160, +88,0,58,195,117,16,83,187,90,0,254,7,160,41,0,58, +7,115,2,136,7,91,160,80,0,138,200,232,143,1,114,16, +116,220,80,50,192,232,40,253,254,195,232,230,1,88,254,203, +254,195,183,1,235,227,83,160,41,0,58,199,117,11,183,0, +160,93,0,58,195,117,0,254,195,254,199,232,9,0,91,83, +232,173,26,50,192,91,195,176,1,58,199,116,4,254,207,235, +20,83,254,203,116,14,160,41,0,138,248,232,208,252,117,4, +94,135,222,86,91,232,136,26,160,88,0,58,195,117,10,160, +90,0,254,200,116,3,162,90,0,232,66,1,83,232,174,252, +117,17,254,195,183,1,232,5,2,94,135,222,86,232,251,1, +91,235,230,91,232,85,26,50,192,195,232,145,252,117,11,160, +91,0,58,195,116,4,254,195,235,240,160,41,0,138,248,160, +80,0,138,200,81,232,34,26,89,10,192,116,12,58,193,116, +8,254,199,232,42,26,50,192,195,254,207,116,244,235,229,232, +148,0,183,1,232,25,26,83,160,80,0,232,173,1,91,254, +199,160,41,0,254,192,58,199,117,237,232,65,252,117,165,183, +1,254,195,235,226,198,6,112,0,0,235,8,232,229,25,232, +74,1,114,15,232,64,0,116,19,235,241,232,214,25,232,59, +1,115,7,232,49,0,116,4,235,241,50,192,195,50,192,162, +112,0,235,8,232,189,25,232,34,1,115,15,232,38,0,116, +235,235,241,232,174,25,232,19,1,114,7,232,23,0,116,220, +235,241,232,2,0,235,211,139,30,86,0,232,196,250,117,204, +183,1,233,150,250,139,30,86,0,232,223,250,117,190,160,41, +0,138,248,233,154,250,254,203,116,5,232,193,251,116,247,254, +195,195,81,160,90,0,58,199,114,26,232,103,25,232,22,0, +139,250,170,66,94,135,222,86,254,207,94,135,222,86,116,4, +254,199,235,223,89,195,10,192,117,2,176,32,195,232,69,0, +80,232,138,251,116,21,88,34,192,116,241,60,32,116,237,160, +80,0,58,193,116,230,138,193,34,192,195,88,249,195,160,41, +0,58,199,116,25,254,199,232,196,0,83,254,207,232,187,0, +91,254,199,160,41,0,254,192,58,199,117,235,254,207,160,80, +0,232,167,0,195,83,81,232,164,0,89,80,138,193,232,154, +0,88,138,200,160,41,0,254,192,254,199,58,199,117,231,138, +193,91,195,83,160,92,0,42,195,114,47,116,34,139,30,91, +0,94,135,222,86,83,138,195,162,91,0,160,93,0,162,92, +0,232,90,250,91,94,135,222,86,137,30,91,0,91,83,183, +1,232,249,24,91,176,1,233,6,251,139,30,86,0,254,203, +116,3,232,171,24,232,254,249,91,254,203,195,60,48,114,251, +60,58,114,18,60,65,114,243,60,91,114,10,60,97,114,235, +60,123,114,2,249,195,34,192,195,83,183,1,160,41,0,138, +232,81,232,101,24,89,60,255,116,8,254,199,254,205,117,241, +91,195,91,83,183,1,232,164,24,91,195,233,67,24,233,73, +24,162,40,0,139,30,71,3,10,199,34,195,254,192,135,218, +116,232,235,19,187,246,1,116,225,249,156,67,233,117,210,232, +124,217,116,3,233,114,217,91,137,22,73,3,232,120,211,114, +3,233,60,218,139,217,67,67,139,23,67,67,83,135,218,232, +78,46,91,138,7,60,9,116,5,176,32,232,151,244,232,188, +232,187,247,1,232,169,232,232,95,251,139,30,86,0,254,203, +116,9,254,203,116,5,232,53,250,116,247,254,195,232,240,23, +233,160,209,60,10,116,3,233,107,244,83,139,30,233,4,138, +199,10,195,91,176,10,117,8,80,176,13,232,87,244,88,195, +232,82,244,176,13,232,77,244,176,10,195,75,232,190,215,117, +1,195,232,143,246,44,185,91,55,81,176,200,235,2,50,192, +162,250,2,138,15,205,179,232,201,247,115,3,233,63,208,50, +192,138,232,162,142,0,67,138,7,60,46,114,66,116,13,60, +58,115,4,60,48,115,5,232,171,247,114,51,138,232,81,181, +255,186,142,0,12,128,254,197,139,250,170,66,67,138,7,60, +58,115,4,60,48,115,237,232,139,247,115,232,60,46,116,228, +138,197,60,39,114,3,233,245,207,89,162,142,0,138,7,60, +38,115,30,186,3,56,82,182,2,60,37,116,132,254,198,60, +36,117,1,195,254,198,60,33,116,249,182,8,60,35,116,243, +88,138,193,36,127,138,208,182,0,83,187,31,3,3,218,138, +55,91,75,138,198,162,251,2,232,18,215,160,57,3,254,200, +117,3,233,122,1,120,3,233,16,0,138,7,44,40,117,3, +233,205,0,44,51,117,3,233,198,0,50,192,162,57,3,83, +160,77,4,10,192,162,74,4,116,30,139,30,124,3,186,126, +3,3,218,137,30,75,4,135,218,233,247,45,160,74,4,10, +192,116,36,50,192,162,74,4,139,30,90,3,137,30,75,4, +139,30,88,3,233,220,45,232,4,255,195,50,192,138,240,138, +208,89,94,135,222,86,195,91,94,135,222,86,82,186,106,56, +59,218,116,231,186,218,25,59,218,90,116,73,94,135,222,86, +83,81,160,251,2,138,232,160,142,0,2,197,254,192,138,200, +81,181,0,65,65,65,139,30,92,3,83,3,217,89,83,232, +25,44,91,137,30,92,3,139,217,137,30,90,3,75,198,7, +0,59,218,117,248,90,136,55,67,90,137,23,67,232,221,1, +135,218,66,91,195,232,134,66,235,8,198,6,79,3,0,233, +120,10,232,64,226,117,7,187,6,0,137,30,163,4,91,195, +83,139,30,250,2,94,135,222,86,138,240,82,81,186,142,0, +139,242,172,10,192,116,61,135,218,4,2,208,216,138,200,232, +195,243,138,193,138,15,67,138,47,67,81,254,200,117,245,83, +160,142,0,80,135,218,232,40,215,88,137,30,181,0,91,4, +2,208,216,89,75,136,47,75,136,15,254,200,117,245,139,30, +181,0,235,8,232,10,215,50,192,162,142,0,160,92,4,10, +192,116,8,11,210,117,3,233,95,0,74,89,88,134,196,158, +135,218,94,135,222,86,83,135,218,254,192,138,240,138,7,60, +44,116,136,60,41,116,7,60,93,116,3,233,64,206,232,156, +213,137,30,82,3,91,137,30,250,2,178,0,82,235,7,83, +159,134,196,80,134,196,139,30,90,3,233,175,44,160,250,2, +10,192,116,3,233,32,206,88,134,196,158,139,203,117,3,233, +85,43,42,7,117,3,233,152,0,186,9,0,233,25,206,160, +251,2,136,7,67,138,208,182,0,88,134,196,158,117,3,233, +202,0,136,15,67,136,47,232,211,0,67,138,200,232,245,242, +67,67,137,30,49,3,136,15,67,160,250,2,208,208,138,193, +114,15,159,80,160,92,4,52,11,138,200,181,0,88,158,115, +4,89,159,65,158,136,15,159,80,67,136,47,67,232,122,42, +88,158,254,200,117,218,159,80,138,238,138,202,135,218,3,218, +115,3,233,207,242,232,220,242,137,30,92,3,75,198,7,0, +59,218,117,248,50,192,65,138,240,139,30,49,3,138,23,135, +218,3,219,3,217,135,218,75,75,137,23,67,67,88,158,114, +70,138,232,138,200,138,7,67,182,91,139,23,67,67,94,135, +222,86,80,59,218,114,3,233,79,255,232,29,42,3,218,88, +254,200,139,203,117,227,160,251,2,139,203,3,219,44,4,114, +8,3,219,10,192,116,11,3,219,10,192,122,3,233,2,0, +3,217,89,3,217,135,218,139,30,82,3,195,249,26,192,91, +195,138,7,67,81,181,0,138,200,3,217,89,195,81,82,159, +80,186,142,0,139,242,172,138,232,254,197,139,242,172,66,67, +136,7,254,205,117,245,88,158,90,89,195,232,90,220,232,106, +41,232,32,243,59,135,218,139,30,163,4,235,10,160,58,3, +10,192,116,17,90,135,218,83,50,192,162,58,3,254,192,156, +82,138,47,10,237,117,3,233,95,213,67,139,31,235,36,138, +213,83,177,2,138,7,67,60,92,117,3,233,157,1,60,32, +117,6,254,193,254,205,117,236,91,138,234,176,92,232,214,1, +232,130,240,50,192,138,208,138,240,232,202,1,138,240,138,7, +67,60,33,117,3,233,111,1,60,35,116,82,60,38,117,3, +233,96,1,254,205,117,3,233,46,1,60,43,176,8,116,217, +75,138,7,67,60,46,116,85,60,95,117,3,233,55,1,60, +92,116,156,58,7,117,182,60,36,116,24,60,42,117,174,138, +197,67,60,2,114,4,138,7,60,36,176,32,117,10,254,205, +254,194,190,50,192,4,16,67,254,194,2,198,138,240,254,194, +177,0,254,205,116,97,138,7,67,60,46,116,30,60,35,116, +237,60,44,117,35,138,198,12,64,138,240,235,225,138,7,60, +35,176,46,116,3,233,101,255,177,1,67,254,193,254,205,116, +54,138,7,67,60,35,116,243,82,186,244,59,82,138,247,138, +211,60,94,116,1,195,58,7,117,251,67,58,7,117,246,67, +58,7,117,241,67,138,197,44,4,114,234,90,90,138,232,254, +198,67,235,3,135,218,90,138,198,75,254,194,36,8,117,28, +254,202,138,197,10,192,116,20,138,7,44,45,116,6,60,254, +117,10,176,8,4,4,2,198,138,240,254,205,91,157,116,101, +81,82,232,2,219,90,89,81,83,138,234,138,197,2,193,60, +25,114,3,233,35,212,138,198,12,128,232,92,59,232,119,234, +91,75,232,216,210,249,116,17,162,58,3,60,59,116,7,60, +44,116,3,233,104,203,232,196,210,89,135,218,91,83,156,82, +138,7,42,197,67,182,0,138,208,139,31,3,218,138,197,10, +192,116,3,233,173,254,235,6,232,123,0,232,39,239,91,157, +116,3,233,88,254,115,3,232,231,239,94,135,222,86,232,28, +236,91,233,3,216,195,232,93,0,254,205,138,7,67,232,4, +239,235,202,177,0,235,5,177,1,235,1,88,254,205,232,69, +0,91,157,116,208,81,232,110,218,232,127,39,89,81,83,139, +30,163,4,138,233,177,0,138,197,80,138,197,10,192,116,3, +232,161,236,232,228,233,139,30,163,4,88,10,192,117,3,233, +94,255,42,7,138,232,176,32,254,197,254,205,117,3,233,79, +255,232,177,238,235,244,80,138,198,10,192,176,43,116,3,232, +163,238,88,195,137,30,53,3,232,236,231,232,15,210,135,218, +232,102,0,159,68,158,159,68,158,117,8,3,217,139,227,137, +30,69,3,139,30,46,0,83,139,30,53,3,83,82,235,40, +116,3,233,137,202,135,218,232,63,0,117,103,139,227,137,30, +69,3,139,22,46,0,137,22,90,4,67,67,139,23,67,67, +139,31,137,30,46,0,135,218,232,204,217,83,232,132,39,91, +116,9,185,177,0,138,233,81,233,125,209,139,30,90,4,137, +30,46,0,91,89,89,233,111,209,187,4,0,3,220,67,138, +7,67,185,130,0,58,193,117,7,185,18,0,3,217,235,238, +185,177,0,58,193,116,1,195,57,23,185,6,0,116,248,3, +217,235,219,186,30,0,233,47,202,232,58,7,75,232,109,209, +116,85,232,114,217,83,232,108,221,116,61,232,10,51,232,139, +232,139,30,163,4,67,138,23,67,138,55,139,242,172,60,32, +117,9,66,136,55,75,136,23,75,254,15,232,220,232,91,75, +232,58,209,116,34,60,59,116,5,232,8,240,44,75,232,44, +209,176,44,232,175,237,235,186,176,34,232,168,237,232,186,232, +176,34,232,160,237,235,215,232,103,238,233,139,214,205,168,83, +138,242,232,135,1,116,9,60,58,116,15,232,126,1,121,247, +138,214,91,50,192,176,252,205,171,195,138,198,42,194,254,200, +60,2,115,5,205,172,233,97,201,60,5,114,3,233,90,201, +89,82,81,138,200,138,232,186,156,62,94,135,222,86,83,138, +7,60,97,114,6,60,123,115,2,44,32,81,138,232,139,242, +46,172,67,66,58,197,89,117,21,254,201,117,226,139,242,46, +172,10,192,120,3,233,6,0,91,91,90,10,192,195,10,192, +120,235,139,242,46,172,10,192,159,66,158,121,245,138,205,91, +83,139,242,46,172,10,192,117,182,233,254,200,75,89,66,68, +255,83,67,82,78,254,76,80,84,49,253,67,65,83,49,252, +0,123,88,145,88,167,88,189,88,205,169,83,82,159,134,196, +80,134,196,186,46,0,3,218,176,255,42,7,2,192,138,208, +205,170,182,0,187,177,62,3,218,46,138,23,67,46,138,55, +88,134,196,158,138,216,183,0,3,218,46,138,23,67,46,138, +55,135,218,90,94,135,222,86,195,71,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,232,17,216,83,232,140,233,138,7,10,192,116,79, +67,138,23,67,138,63,138,218,138,208,50,192,162,255,6,232, +219,254,159,134,196,80,134,196,185,240,4,182,11,254,194,254, +202,116,77,138,7,60,32,114,38,60,46,116,40,139,249,170, +65,67,254,206,117,233,88,134,196,158,159,134,196,80,134,196, +138,240,160,240,4,254,192,116,6,88,134,196,158,91,195,233, +40,200,67,235,202,176,1,162,255,6,138,198,60,11,116,239, +60,3,114,235,116,236,176,32,139,249,170,65,254,206,235,234, +176,32,139,249,170,65,254,206,117,246,235,186,138,7,67,254, +202,195,232,122,223,138,216,160,223,4,58,195,115,3,233,233, +199,183,0,3,219,135,218,139,30,224,4,3,218,139,31,160, +54,5,254,192,116,219,138,7,10,192,116,213,83,186,46,0, +3,218,138,7,60,9,115,5,205,220,233,192,199,91,138,7, +10,192,249,195,75,232,53,207,60,35,117,3,232,46,207,232, +42,223,94,135,222,86,83,232,171,255,117,3,233,155,199,137, +30,233,4,195,185,152,20,81,232,28,215,138,7,60,44,117, +89,83,232,145,232,138,7,10,192,117,3,233,124,199,67,139, +31,138,7,36,223,178,1,60,73,116,21,178,2,60,79,116, +15,178,4,60,82,116,9,178,8,60,65,116,3,233,84,199, +91,82,232,175,237,44,60,35,117,3,232,208,206,232,204,222, +232,161,237,44,138,194,10,192,117,3,233,61,199,80,232,178, +254,88,89,138,209,205,221,233,131,0,232,169,254,138,7,60, +130,178,4,117,89,232,165,206,60,133,178,1,116,77,60,79, +116,32,60,73,116,55,232,107,237,65,232,103,237,80,232,99, +237,80,232,95,237,69,232,91,237,78,232,87,237,68,178,8, +235,44,232,120,206,232,76,237,85,232,72,237,84,232,68,237, +80,232,64,237,85,232,60,237,84,178,2,235,17,232,93,206, +232,49,237,66,232,45,237,77,178,32,75,232,79,206,232,35, +237,65,232,31,237,83,82,138,7,60,35,117,3,232,61,206, +232,57,222,10,192,117,3,233,176,198,205,222,180,82,75,138, +208,232,41,206,116,3,233,197,198,94,135,222,86,138,194,159, +134,196,80,134,196,83,232,156,254,116,3,233,149,198,90,138, +198,60,9,205,223,115,3,233,131,198,83,185,46,0,3,217, +136,55,176,0,91,233,145,253,83,10,192,117,10,160,54,5, +36,1,116,3,233,70,3,232,107,254,116,21,137,30,233,4, +83,176,2,115,3,233,113,253,205,224,233,80,198,232,36,3, +91,83,186,49,0,3,218,136,7,138,248,138,216,137,30,233, +4,91,2,7,198,7,0,91,195,249,235,3,13,50,192,159, +80,232,159,253,205,233,88,158,159,80,116,20,138,7,44,44, +10,192,117,12,232,150,205,232,106,236,82,88,158,249,159,80, +159,80,50,192,178,1,232,84,255,139,30,233,4,185,49,0, +3,217,88,158,26,192,36,128,12,1,162,54,5,88,158,159, +80,26,192,162,239,4,138,7,10,192,121,3,233,216,0,88, +158,116,3,232,87,235,50,192,232,44,254,233,5,199,232,66, +253,205,234,75,232,70,205,178,128,249,117,3,232,121,5,116, +24,232,16,236,44,60,80,178,146,117,6,232,47,205,249,235, +8,232,0,236,65,10,192,178,2,159,80,138,194,36,16,162, +98,4,88,158,159,80,254,192,162,95,0,50,192,232,221,254, +88,158,83,139,30,233,4,138,7,91,36,128,117,3,233,20, +221,83,232,99,225,160,98,4,10,192,116,3,232,121,4,139, +30,88,3,137,30,4,7,139,30,48,0,83,139,30,233,4, +232,198,0,10,192,121,3,233,22,0,233,77,197,160,98,4, +10,192,116,3,232,162,4,91,50,192,162,98,4,233,200,254, +91,232,2,0,235,231,232,160,0,60,252,117,3,233,13,26, +205,235,233,31,197,139,30,48,0,10,192,232,3,0,233,70, +0,159,80,232,131,0,60,252,117,3,233,54,26,88,158,205, +236,233,0,197,88,158,195,36,32,162,99,4,88,158,117,3, +233,241,196,232,119,234,160,99,4,162,100,4,232,171,0,50, +192,232,241,252,198,7,128,137,30,233,4,232,75,0,10,192, +120,179,205,237,233,211,196,160,100,4,10,192,116,3,232,40, +4,232,39,199,67,67,137,30,88,3,232,90,234,50,192,162, +54,5,232,67,254,160,239,4,10,192,116,3,233,249,203,233, +196,197,135,218,139,30,47,3,135,218,59,218,114,152,232,28, +234,50,192,162,54,5,233,235,233,83,82,139,30,233,4,186, +46,0,3,218,138,7,90,91,195,117,30,83,81,80,186,38, +67,82,81,10,192,195,88,89,254,200,121,240,91,195,89,91, +138,7,60,44,117,247,232,228,203,81,138,7,60,35,117,3, +232,218,203,232,214,219,94,135,222,86,83,186,46,67,82,249, +255,227,185,40,65,160,223,4,235,191,160,54,5,10,192,120, +204,185,40,65,50,192,160,223,4,235,174,50,192,138,232,138, +197,232,49,252,198,7,0,160,223,4,254,197,42,197,115,239, +50,192,162,54,5,232,149,233,139,30,48,0,75,198,7,0, +233,219,195,91,88,134,196,158,83,82,81,159,134,196,80,134, +196,139,30,233,4,176,6,232,5,0,205,227,233,235,195,159, +134,196,80,134,196,82,135,218,187,46,0,3,218,138,7,135, +218,90,60,9,115,3,233,202,0,88,134,196,158,94,135,222, +86,91,233,228,250,81,83,82,139,30,233,4,176,8,232,206, +255,205,228,233,180,195,90,91,89,195,232,48,203,232,4,234, +36,232,0,234,40,83,139,30,233,4,83,187,0,0,137,30, +233,4,91,94,135,222,86,232,18,219,82,138,7,60,44,117, +11,232,9,203,232,205,251,91,50,192,138,7,159,80,232,211, +233,41,88,158,94,135,222,86,159,80,138,195,10,192,117,3, +233,38,204,83,232,7,226,135,218,89,88,158,159,80,116,40, +232,22,232,60,3,116,19,136,7,67,254,201,117,236,88,158, +89,91,137,30,233,4,81,233,51,226,88,158,139,30,46,0, +137,30,71,3,91,233,6,195,232,106,255,115,3,233,48,195, +235,213,205,229,232,18,0,83,181,1,232,2,0,91,195,50, +192,136,7,67,254,205,117,249,195,139,30,233,4,186,51,0, +3,218,195,88,134,196,158,195,232,7,251,117,3,233,250,194, +176,10,115,3,233,18,250,205,230,233,238,194,232,243,250,117, +3,233,230,194,176,12,115,3,233,254,249,205,231,233,218,194, +232,223,250,117,3,233,210,194,176,14,115,3,233,234,249,205, +232,233,198,194,232,255,234,117,3,233,31,202,50,192,232,71, +252,178,66,233,242,194,60,35,117,173,232,44,218,232,4,233, +44,138,194,83,232,0,251,91,138,7,195,185,236,45,81,50, +192,233,36,252,232,30,214,185,155,22,186,32,44,117,27,138, +214,235,23,185,152,20,81,232,204,255,232,81,242,232,27,31, +82,185,138,17,50,192,138,240,138,208,80,81,83,232,165,254, +115,3,233,107,194,60,32,117,6,254,198,254,206,117,238,60, +34,117,19,138,232,138,194,60,44,138,197,117,9,138,245,138, +213,232,129,254,114,83,187,247,1,181,255,138,200,138,198,60, +34,138,193,116,46,60,13,83,116,89,91,60,10,117,36,138, +200,138,194,60,44,138,193,116,3,232,137,0,83,232,85,254, +91,114,38,60,13,117,12,138,194,60,32,116,21,60,44,176, +13,116,15,10,192,116,11,58,198,116,14,58,194,116,10,232, +99,0,83,232,47,254,91,115,178,83,60,34,116,4,60,32, +117,37,232,32,254,114,32,60,32,116,247,60,44,116,24,60, +13,117,4,205,225,116,16,139,30,233,4,138,200,176,18,232, +221,253,205,226,233,195,193,91,198,7,0,187,246,1,138,194, +44,32,116,7,181,0,232,102,224,91,195,232,55,213,159,80, +232,42,201,88,158,159,80,115,3,232,196,35,88,158,114,3, +232,196,35,91,195,10,192,116,251,136,7,67,254,205,117,244, +89,235,197,232,70,0,162,96,0,254,192,116,3,233,158,193, +83,81,178,2,232,198,250,91,232,59,252,50,192,162,96,0, +233,26,252,232,38,0,10,192,116,7,254,192,117,3,233,125, +193,254,200,162,96,0,83,81,50,192,178,1,232,158,250,91, +232,46,252,50,192,162,96,0,91,233,204,250,232,180,248,82, +75,232,185,200,90,117,3,176,1,195,82,232,134,231,44,232, +43,0,82,75,232,166,200,117,5,89,90,50,192,195,232,115, +231,44,232,24,0,89,135,218,3,217,137,30,4,7,135,218, +75,232,137,200,116,3,233,37,193,90,176,255,195,232,135,208, +83,232,17,220,90,135,218,195,185,11,13,139,30,48,0,135, +218,139,30,88,3,59,218,117,1,195,187,23,98,138,195,2, +193,138,216,138,199,20,0,138,248,139,242,172,42,197,46,50, +7,80,187,118,97,138,195,2,197,138,216,138,199,20,0,138, +248,88,46,50,7,2,193,139,250,170,66,254,201,117,2,177, +11,254,205,117,188,181,13,235,184,185,11,13,139,30,48,0, +135,218,139,30,88,3,59,218,116,175,187,118,97,138,195,2, +197,138,216,138,199,20,0,138,248,139,242,172,42,193,46,50, +7,80,187,23,98,138,195,2,193,138,216,138,199,20,0,138, +248,88,46,50,7,2,197,139,250,170,66,254,201,117,2,177, +11,254,205,117,189,181,13,235,185,83,139,30,46,0,138,199, +34,195,91,254,192,116,1,195,159,80,160,100,4,10,192,116, +3,233,245,200,88,158,195,138,7,60,64,117,3,232,173,199, +185,0,0,138,245,138,209,60,234,116,31,138,7,60,207,156, +117,3,232,152,199,232,108,230,40,232,126,215,82,232,100,230, +44,232,118,215,232,93,230,41,89,157,83,139,30,61,5,116, +3,187,0,0,159,3,217,209,222,158,209,214,137,30,61,5, +137,30,55,5,139,203,139,30,59,5,116,3,187,0,0,3, +218,137,30,59,5,137,30,57,5,135,218,91,195,50,192,235, +2,176,3,80,232,164,255,88,232,46,0,83,232,40,3,115, +6,232,127,2,232,85,2,91,195,232,49,199,232,140,255,83, +232,20,3,187,255,255,115,10,232,104,2,232,27,2,138,216, +183,0,232,7,29,91,195,176,3,81,82,138,208,75,232,12, +199,116,11,232,222,229,44,60,44,116,3,232,254,214,138,194, +83,232,193,2,115,3,233,48,200,91,90,89,233,239,198,139, +30,55,5,138,195,42,193,138,216,138,199,26,197,138,248,115, +197,50,192,42,195,138,216,26,199,42,195,138,248,249,195,139, +30,57,5,138,195,42,194,138,216,138,199,26,198,138,248,235, +222,83,139,30,57,5,135,218,137,30,57,5,91,195,232,240, +255,83,81,139,30,55,5,94,135,222,86,137,30,55,5,89, +91,195,232,226,254,81,82,232,106,229,234,232,237,254,232,118, +255,90,89,116,83,232,92,229,44,232,88,229,66,117,3,233, +96,0,232,79,229,70,83,232,93,2,232,193,255,232,87,2, +232,156,255,115,3,232,169,255,67,83,232,114,255,115,3,232, +175,255,67,83,232,156,1,90,89,82,81,232,219,0,80,83, +135,218,232,105,2,91,88,232,215,0,232,248,0,89,90,73, +138,197,10,193,117,227,91,195,81,82,83,232,69,0,139,30, +61,5,137,30,55,5,139,30,59,5,137,30,57,5,91,90, +89,195,83,139,30,57,5,83,82,135,218,232,218,255,91,137, +30,57,5,135,218,232,208,255,91,137,30,57,5,139,30,55, +5,81,139,203,232,193,255,91,137,30,55,5,139,203,232,183, +255,91,195,205,184,232,207,1,232,51,255,232,201,1,232,14, +255,115,3,232,40,255,82,83,232,228,254,135,218,187,241,73, +115,3,187,5,74,94,135,222,86,59,218,115,20,137,30,253, +6,91,137,30,247,6,187,213,73,137,30,249,6,135,218,235, +22,94,135,222,86,137,30,249,6,187,213,73,137,30,247,6, +135,218,137,30,253,6,91,90,83,137,30,251,6,232,211,0, +90,82,232,5,0,89,65,233,32,2,138,198,10,192,208,216, +138,240,138,194,208,216,138,208,195,139,30,243,6,160,245,6, +195,137,30,243,6,162,245,6,195,139,30,243,6,129,251,0, +32,114,9,129,235,0,32,137,30,243,6,195,129,195,80,32, +137,30,243,6,195,139,30,243,6,129,251,0,32,114,9,129, +235,176,31,137,30,243,6,195,129,195,0,32,137,30,243,6, +195,138,193,138,14,85,0,210,14,245,6,138,200,114,1,195, +255,6,243,6,195,138,193,138,14,85,0,210,6,245,6,138, +200,114,1,195,255,14,243,6,195,140,198,191,0,184,142,199, +139,30,243,6,38,138,7,138,22,245,6,34,194,138,14,85, +0,210,234,114,4,210,232,235,248,142,198,195,140,198,191,0, +184,142,199,139,30,243,6,139,233,160,245,6,246,208,38,34, +7,138,14,246,6,34,14,245,6,10,193,38,136,7,139,205, +142,198,195,139,233,209,234,159,139,218,177,2,211,226,3,211, +177,4,211,226,158,115,4,129,194,0,32,137,22,243,6,139, +213,138,202,246,6,85,0,1,116,20,176,7,34,200,176,128, +210,232,162,245,6,177,3,211,234,1,22,243,6,195,176,3, +34,200,2,201,176,192,210,232,162,245,6,177,2,211,234,1, +22,243,6,195,160,72,0,199,6,59,5,100,0,60,6,116, +18,115,28,60,4,114,24,198,6,85,0,2,199,6,61,5, +160,0,195,198,6,85,0,1,199,6,61,5,64,1,195,198, +6,85,0,0,195,60,4,115,15,246,6,85,0,1,116,12, +36,1,246,216,162,246,6,248,195,233,93,197,36,3,177,85, +246,225,162,246,6,248,195,160,85,0,10,192,116,235,10,237, +120,39,187,128,2,132,6,1,0,116,3,187,64,1,59,203, +159,114,3,75,139,203,10,246,120,12,129,250,200,0,114,4, +186,199,0,195,158,195,51,210,195,51,201,159,235,232,140,198, +191,0,184,142,199,139,211,11,210,116,108,139,30,243,6,38, +138,47,160,245,6,138,224,246,208,138,14,85,0,138,30,246, +6,34,232,138,252,34,251,10,239,74,116,64,210,200,210,204, +115,239,139,30,243,6,38,136,47,255,6,243,6,136,38,245, +6,139,202,209,233,209,233,246,6,85,0,1,117,6,129,226, +3,0,235,6,129,226,7,0,209,233,227,171,252,160,246,6, +139,62,243,6,243,170,137,62,243,6,235,155,139,30,243,6, +38,136,47,136,38,245,6,142,198,195,232,127,254,3,22,253, +6,59,22,251,6,114,9,43,22,251,6,62,255,22,249,6, +62,255,22,247,6,226,227,195,83,232,163,207,91,195,83,232, +39,25,91,195,246,128,62,113,0,0,116,3,233,249,4,195, +160,41,0,138,208,232,255,210,233,237,4,0,0,0,180,15, +205,16,162,72,0,180,40,60,2,114,13,180,80,60,7,117, +7,185,12,11,137,14,104,0,136,38,41,0,250,140,219,137, +30,80,3,30,186,0,0,142,218,137,30,16,5,187,52,77, +137,30,108,0,187,68,87,137,30,112,0,140,14,110,0,140, +14,114,0,31,232,50,0,187,24,2,185,0,0,142,193,185, +122,0,38,140,143,2,0,38,199,7,148,76,131,195,4,224, +241,140,219,142,195,232,72,225,251,180,1,205,23,232,119,6, +187,155,76,232,223,46,233,99,50,190,237,76,187,83,6,185, +10,0,83,252,46,172,136,7,67,10,192,117,246,91,131,195, +16,224,239,195,207,62,255,46,0,7,203,84,104,101,32,73, +66,77,32,80,101,114,115,111,110,97,108,32,67,111,109,112, +117,116,101,114,32,66,97,115,105,99,255,13,86,101,114,115, +105,111,110,32,67,49,46,49,48,32,67,111,112,121,114,105, +103,104,116,32,73,66,77,32,67,111,114,112,32,49,57,56, +49,255,13,0,50,53,45,65,112,114,45,56,49,76,73,83, +84,32,0,82,85,78,13,0,76,79,65,68,34,0,83,65, +86,69,34,0,67,79,78,84,13,0,44,34,76,80,84,49, +58,34,13,0,84,82,79,78,13,0,84,82,79,70,70,13, +0,75,69,89,32,0,83,67,82,69,69,78,32,48,44,48, +44,48,13,0,156,80,30,82,186,0,0,142,218,142,30,16, +5,232,58,10,136,22,106,0,254,202,136,22,94,0,90,31, +88,157,207,86,160,94,0,10,192,117,17,160,106,0,10,192, +117,10,180,1,205,22,176,0,116,2,254,200,94,195,160,94, +0,10,192,116,8,50,192,162,94,0,176,3,195,86,87,160, +106,0,10,192,117,116,180,0,205,22,10,192,116,3,95,94, +195,83,128,252,59,114,5,128,252,69,114,60,139,30,46,0, +67,11,219,117,19,187,52,78,177,26,46,58,39,116,12,67, +254,192,254,201,117,244,50,192,91,235,211,50,228,208,224,139, +216,46,139,159,3,1,137,30,107,0,254,14,106,0,208,232, +4,65,140,14,109,0,235,224,80,134,196,44,59,179,16,246, +227,187,83,6,3,216,246,7,255,88,116,204,137,30,107,0, +140,30,109,0,254,14,106,0,235,12,83,254,200,117,7,162, +106,0,176,32,235,178,30,197,30,107,0,138,7,31,255,6, +107,0,10,192,116,2,121,160,50,228,140,203,138,30,110,0, +58,223,114,4,254,196,36,127,136,38,106,0,10,192,117,136, +91,233,119,17,30,48,46,32,18,33,34,35,23,36,37,38, +50,49,24,25,16,19,31,20,22,47,17,45,21,44,83,81, +86,190,108,78,177,14,252,46,172,58,224,116,9,70,254,201, +117,244,50,192,235,2,46,172,94,89,91,195,71,11,72,30, +75,29,77,28,80,31,28,10,116,6,115,2,118,1,82,18, +83,127,79,14,117,5,119,12,31,30,29,28,13,12,11,10, +156,83,81,82,80,60,7,116,77,60,13,117,10,246,6,111, +0,255,116,3,232,139,0,232,44,2,116,4,60,255,116,57, +60,12,116,34,187,135,78,185,8,0,67,254,201,120,28,46, +58,7,117,246,208,225,139,217,185,233,78,81,46,255,183,225, +47,139,30,86,0,195,232,14,4,235,14,232,62,0,232,14, +0,232,13,225,235,3,232,36,9,88,90,89,91,157,195,80, +138,62,73,0,138,30,78,0,185,1,0,180,9,205,16,88, +195,83,232,113,0,232,231,255,91,195,83,232,104,0,180,8, +205,16,91,195,232,243,255,138,232,138,204,195,139,30,86,0, +137,30,86,0,156,83,232,77,0,91,157,195,160,87,0,254, +200,195,80,138,14,41,0,42,14,87,0,254,193,181,0,138, +62,73,0,138,30,79,0,176,32,180,9,205,16,139,22,86, +0,134,242,254,206,254,202,180,2,205,16,88,195,83,232,21, +0,138,62,73,0,138,30,79,0,138,14,41,0,181,0,176, +32,180,9,205,16,91,80,82,139,211,134,242,254,206,254,202, +138,62,73,0,180,2,205,16,90,88,195,83,82,177,0,138, +239,138,243,232,27,0,180,6,205,16,235,15,83,82,177,0, +138,235,138,247,232,10,0,180,7,205,16,232,28,0,90,91, +195,232,17,0,138,22,41,0,254,202,254,206,254,205,176,1, +138,62,79,0,195,160,73,0,235,3,160,74,0,232,6,1, +117,32,138,38,72,0,128,252,7,116,23,82,186,0,8,128, +252,2,114,2,208,230,50,228,247,226,30,142,218,163,78,4, +31,90,195,156,83,82,80,186,0,0,180,0,205,23,138,196, +128,228,40,128,252,40,116,13,246,196,8,117,12,168,1,116, +13,178,24,235,6,178,27,235,2,178,25,233,186,183,88,80, +60,13,233,93,15,88,90,91,157,195,60,147,116,96,60,149, +116,70,60,221,116,70,232,227,206,10,192,116,56,254,200,60, +10,115,50,186,16,0,246,226,138,208,129,194,83,6,82,232, +162,221,44,232,209,198,83,232,76,216,138,15,128,249,15,114, +2,177,15,67,139,55,91,95,83,181,0,252,243,164,136,45, +232,114,251,91,195,233,225,191,176,255,235,2,176,0,58,6, +113,0,162,113,0,116,3,232,94,0,232,144,190,195,83,190, +83,6,185,10,0,254,197,86,176,70,232,8,219,81,138,221, +183,0,232,171,20,176,32,232,251,218,89,94,86,81,252,172, +10,192,116,5,232,19,0,235,245,176,13,232,231,218,89,94, +131,198,16,254,201,117,206,91,235,192,86,60,13,117,2,176, +27,232,209,218,94,195,80,160,72,0,60,7,116,4,60,4, +115,2,50,192,10,192,88,195,83,205,173,182,24,178,0,138, +62,73,0,180,2,205,16,160,113,0,10,192,117,19,138,30, +79,0,138,14,41,0,181,0,180,9,205,16,232,13,254,91, +195,179,7,232,192,255,117,9,160,76,0,10,192,117,2,179, +112,190,83,6,181,5,160,41,0,60,40,176,49,116,2,181, +10,80,83,138,30,78,0,232,55,0,91,86,177,6,81,252, +172,10,192,156,86,117,2,50,192,232,37,0,94,157,117,1, +78,89,254,201,117,232,232,22,0,94,131,198,16,88,254,192, +60,58,114,2,176,48,254,205,117,199,232,175,253,91,195,50, +192,83,10,192,117,6,176,32,138,30,79,0,60,13,117,2, +176,27,81,185,1,0,180,9,205,16,254,194,180,2,205,16, +89,91,195,138,14,73,0,181,0,138,38,72,0,246,196,1, +116,3,128,205,128,128,252,4,114,9,254,197,128,252,6,114, +2,254,197,81,60,44,116,12,232,97,205,89,138,232,81,232, +92,189,116,64,232,45,220,44,60,44,116,21,232,77,205,10, +192,116,2,176,128,89,128,229,3,10,232,81,232,63,189,116, +35,232,16,220,44,60,44,116,12,232,48,205,89,138,200,81, +232,43,189,116,15,232,252,219,44,232,32,205,138,240,89,235, +6,233,85,190,89,138,241,138,38,41,0,138,197,36,127,10, +192,116,10,50,210,10,214,10,209,117,230,235,27,128,252,40, +116,12,128,254,4,115,218,128,249,4,114,12,235,211,128,254, +8,115,206,128,249,8,115,201,138,209,10,192,116,32,128,62, +72,0,7,116,92,177,6,60,2,180,80,116,42,180,40,254, +201,254,200,117,172,246,197,128,117,29,254,201,235,25,177,2, +128,252,40,116,9,246,197,128,116,13,254,193,235,9,254,201, +246,197,128,117,2,254,201,136,38,41,0,161,72,0,136,14, +72,0,137,22,73,0,58,193,116,26,184,7,0,163,75,0, +134,196,163,77,0,136,38,79,0,232,58,254,116,3,162,79, +0,232,110,0,160,74,0,180,5,205,16,195,58,6,41,0, +116,52,138,38,72,0,60,80,116,7,60,40,116,3,233,152, +189,128,252,7,117,4,176,80,235,28,128,244,2,128,252,7, +117,2,254,204,80,162,41,0,136,38,72,0,199,6,73,0, +0,0,232,45,0,88,195,83,232,218,252,178,39,128,62,41, +0,40,116,2,178,79,182,24,138,62,79,0,185,0,0,138, +193,180,6,205,16,186,0,0,138,62,73,0,180,2,205,16, +235,15,83,185,0,0,137,14,73,0,160,72,0,180,0,205, +16,232,189,221,232,201,248,232,138,247,232,157,252,91,195,232, +164,253,116,91,177,0,190,81,0,128,62,72,0,6,117,3, +233,22,189,138,44,86,81,232,212,187,116,64,60,44,116,7, +232,201,203,89,138,232,81,89,81,83,138,249,138,221,128,255, +0,117,8,128,251,8,114,3,128,203,16,180,11,205,16,91, +232,171,187,116,3,232,165,187,89,94,136,44,116,8,70,254, +193,128,249,4,114,189,198,6,79,0,0,195,89,94,195,255, +54,77,0,255,54,75,0,60,44,116,16,232,126,203,60,32, +115,24,89,138,200,81,232,117,187,116,44,232,70,218,44,60, +44,116,19,232,102,203,60,16,114,3,233,156,188,89,138,232, +81,232,90,187,116,17,232,43,218,44,232,79,203,60,16,115, +233,89,90,138,208,82,81,89,90,138,241,128,230,15,137,14, +75,0,138,197,208,224,36,16,10,194,128,229,7,208,229,208, +229,208,229,208,229,246,193,16,116,3,128,205,128,10,238,83, +138,216,183,0,36,15,162,77,0,136,46,78,0,136,46,79, +0,180,11,205,16,91,195,255,54,86,0,60,44,116,32,232, +250,202,10,192,116,91,60,26,115,87,138,38,113,0,10,228, +116,4,60,25,115,75,90,138,208,82,232,225,186,116,123,232, +178,217,44,60,44,116,24,232,210,202,10,192,116,51,138,38, +41,0,58,224,114,43,90,138,240,82,232,193,186,116,91,255, +54,104,0,232,142,217,44,60,44,116,25,232,174,202,10,192, +176,0,117,2,176,32,89,10,232,81,232,161,186,116,45,235, +3,233,213,187,232,109,217,44,232,145,202,60,32,115,242,89, +128,229,32,10,232,138,200,81,232,131,186,116,15,232,84,217, +44,232,120,202,60,32,115,217,89,138,200,81,89,81,128,229, +15,137,14,104,0,89,180,1,205,16,90,137,22,86,0,134, +242,254,206,254,202,83,138,62,73,0,180,2,205,16,91,195, +80,176,0,235,3,80,176,32,156,81,83,80,232,61,250,88, +91,139,14,104,0,246,6,114,0,255,116,2,181,4,10,232, +180,1,205,16,89,157,88,195,0,0,0,0,255,255,255,255, +255,255,255,255,255,255,255,255,80,156,232,201,251,116,75,83, +81,82,140,198,191,0,0,142,199,38,255,54,124,0,38,255, +54,126,0,38,199,6,124,0,248,84,38,140,14,126,0,142, +198,176,129,2,6,114,0,179,131,138,62,73,0,185,1,0, +180,9,205,16,140,198,191,0,0,142,199,38,143,6,126,0, +38,143,6,124,0,142,198,90,89,91,157,88,195,232,189,185, +160,86,0,233,114,246,232,180,185,232,101,0,10,238,117,86, +10,234,10,233,116,80,138,38,41,0,58,226,114,72,128,249, +26,115,67,160,113,0,10,192,116,5,128,249,25,115,55,83, +138,241,254,206,254,202,138,62,73,0,180,2,205,16,180,8, +205,16,91,80,232,119,185,60,44,116,4,176,0,235,7,232, +66,216,44,232,102,201,80,232,58,216,41,88,10,192,88,116, +2,138,196,233,18,246,233,144,186,232,5,0,232,37,216,41, +195,232,32,216,40,232,50,201,82,232,24,216,44,232,42,201, +89,195,232,56,185,60,149,116,8,232,8,216,221,50,192,235, +5,232,41,185,176,255,162,52,0,195,160,52,0,10,192,116, +48,232,27,201,60,10,115,41,83,86,186,26,86,82,50,228, +209,224,139,240,46,255,180,29,86,195,94,91,195,52,86,63, +86,70,86,76,86,107,86,114,86,120,86,128,86,136,86,144, +86,233,37,186,187,53,0,138,7,198,7,0,233,159,245,139, +30,55,0,233,198,14,160,57,0,233,140,245,180,4,205,16, +80,10,228,116,12,137,30,58,0,136,46,60,0,137,22,63, +0,88,138,196,254,200,246,208,233,115,245,139,30,58,0,233, +154,14,160,60,0,233,96,245,160,62,0,254,192,233,88,245, +160,61,0,254,192,233,80,245,160,64,0,254,192,233,72,245, +160,63,0,254,192,233,64,245,232,132,200,10,192,116,18,60, +4,115,84,180,0,83,187,65,0,3,216,138,7,91,233,39, +245,83,186,1,2,185,1,1,187,15,0,250,238,236,36,15, +58,195,225,249,227,11,50,195,138,225,80,254,199,50,216,235, +236,10,255,116,26,138,215,187,65,0,185,4,0,88,246,212, +2,226,208,232,115,2,136,39,67,226,247,254,202,117,232,251, +91,160,65,0,233,225,244,233,95,185,232,32,184,60,149,116, +8,232,240,214,221,50,192,235,5,232,17,184,176,255,162,69, +0,195,160,69,0,10,192,116,222,232,3,200,60,4,115,215, +168,1,116,14,180,16,254,200,116,2,180,64,232,208,0,233, +172,244,83,187,70,0,10,192,116,1,67,138,7,198,7,0, +91,233,154,244,156,80,85,86,87,30,186,0,0,142,218,142, +30,16,5,161,102,0,10,196,116,9,255,14,102,0,117,3, +232,39,0,160,52,0,10,192,116,3,232,54,0,160,69,0, +10,192,116,3,232,105,0,31,95,94,93,88,157,207,198,6, +101,0,0,161,102,0,11,192,116,24,82,250,246,6,101,0, +255,117,7,186,97,0,236,36,252,238,199,6,102,0,0,0, +251,90,195,83,81,82,180,4,205,16,80,10,228,116,12,137, +30,58,0,136,46,60,0,137,22,63,0,88,160,54,0,50, +196,116,25,10,228,136,38,54,0,116,17,137,30,55,0,136, +46,57,0,137,22,61,0,176,255,162,53,0,90,89,91,195, +83,187,70,0,128,63,0,117,7,180,16,232,17,0,136,7, +67,128,63,0,117,7,180,64,232,4,0,136,7,91,195,82, +186,1,2,236,34,196,254,200,152,138,196,90,195,232,9,0, +184,211,5,186,4,0,82,235,56,139,22,102,0,10,242,116, +7,198,6,101,0,255,235,241,195,232,222,198,131,250,37,114, +18,82,232,191,213,44,232,113,202,89,82,11,210,117,7,90, +233,59,255,233,19,184,232,208,255,186,18,0,184,220,52,247, +241,246,6,101,0,255,117,8,80,186,67,0,176,182,238,88, +186,66,0,238,138,196,238,117,7,186,97,0,236,12,3,238, +90,137,22,102,0,198,6,101,0,0,195,10,90,77,65,89, +16,89,16,25,90,89,16,89,16,89,16,89,16,45,90,89, +16,52,90,77,65,89,16,69,90,89,16,89,16,89,16,89, +16,89,16,89,16,93,90,99,90,77,65,89,16,124,90,89, +16,89,16,89,16,89,16,89,16,89,16,170,90,177,90,110, +91,89,16,171,91,240,91,89,16,89,16,108,92,89,16,118, +92,89,16,34,194,117,34,156,80,83,137,30,233,4,136,23, +131,195,45,198,7,0,67,67,136,47,67,198,7,0,67,136, +15,67,198,7,0,91,88,157,195,233,152,174,88,91,195,128, +250,128,117,2,178,2,195,88,134,196,158,89,90,91,195,90, +91,89,195,131,195,46,138,7,246,208,195,139,30,233,4,131, +195,43,195,139,30,233,4,131,195,50,195,139,30,233,4,138, +135,47,0,195,86,87,81,198,6,63,5,165,190,240,4,191, +64,5,185,8,0,252,164,226,253,89,95,94,195,83,81,187, +64,5,177,8,128,63,32,117,13,67,254,201,117,246,190,92, +5,191,72,5,235,16,190,84,5,191,64,5,177,8,252,166, +117,39,254,201,117,249,138,5,58,4,116,9,10,192,117,25, +246,4,1,117,20,138,4,139,30,233,4,136,135,49,0,187, +244,89,232,14,0,50,192,235,7,187,254,89,232,4,0,249, +89,91,195,83,139,30,46,0,67,11,219,116,2,91,195,187, +83,5,83,67,177,8,138,7,232,213,244,67,254,201,117,246, +176,46,232,203,244,91,131,195,9,176,68,246,7,225,116,23, +176,80,246,7,32,117,16,176,66,246,7,128,117,9,176,65, +246,7,64,117,2,176,77,91,232,165,244,46,138,7,67,10, +192,117,245,195,32,70,111,117,110,100,46,255,13,0,32,83, +107,105,112,112,101,100,46,255,13,0,185,0,0,136,14,82, +5,176,234,232,189,254,233,227,254,187,82,5,138,7,198,7, +0,10,192,117,5,232,70,243,10,192,233,226,254,136,14,82, +5,233,163,235,232,200,254,138,46,41,0,177,0,176,237,232, +145,254,233,183,254,88,80,134,196,232,68,244,138,14,87,0, +254,201,139,30,233,4,136,143,50,0,233,170,254,88,134,196, +233,73,248,138,46,98,0,177,0,232,147,254,176,109,232,98, +254,232,175,254,160,99,0,136,7,233,128,254,88,80,134,196, +232,3,0,233,129,254,232,106,245,187,99,0,60,13,117,3, +233,228,4,60,32,115,1,195,254,7,83,232,141,254,91,254, +192,116,244,254,200,56,7,233,197,4,88,134,196,162,98,0, +195,160,97,0,10,192,116,3,233,232,172,128,226,251,117,2, +178,1,162,81,5,254,192,162,80,5,138,202,128,225,128,128, +233,1,245,26,201,128,225,128,246,194,16,116,3,128,201,32, +160,96,0,10,192,116,2,177,1,10,201,117,9,246,6,95, +0,255,116,2,177,64,136,14,72,5,181,255,176,104,232,210, +253,138,39,232,46,254,246,196,1,117,12,246,193,129,117,3, +232,47,0,176,255,235,31,232,51,0,232,48,254,114,248,139, +30,233,4,246,135,49,0,129,117,10,232,17,1,115,5,198, +6,80,5,0,176,1,162,97,0,232,231,253,198,7,1,233, +186,253,187,63,5,185,17,0,180,3,205,21,195,187,83,5, +185,17,0,83,180,2,205,21,115,3,233,2,1,91,160,94, +0,10,192,117,6,128,63,165,117,230,195,233,41,172,160,97, +0,254,192,116,11,50,192,162,97,0,162,96,0,233,205,229, +139,30,233,4,246,135,49,0,129,117,234,232,59,0,232,31, +1,235,226,83,187,97,0,56,39,117,13,139,30,233,4,246, +135,49,0,129,91,117,1,195,233,233,171,180,255,232,227,255, +88,80,134,196,232,3,0,233,77,253,232,38,0,136,7,254, +193,116,11,232,93,253,136,15,195,232,87,253,138,15,187,83, +5,181,0,254,201,65,136,15,180,3,205,21,232,68,253,198, +7,1,195,232,61,253,138,15,181,0,187,83,5,3,217,195, +180,1,232,158,255,232,3,0,233,20,253,160,80,5,44,1, +115,1,195,187,81,5,138,7,198,7,0,10,192,116,1,195, +232,10,0,115,7,198,6,80,5,0,10,192,195,232,195,255, +138,7,254,193,232,252,252,136,15,232,239,252,58,15,116,3, +10,192,195,128,63,0,117,221,80,232,2,0,88,195,187,83, +5,185,0,1,180,2,205,21,114,21,160,83,5,232,203,252, +136,7,232,206,252,198,7,1,254,200,249,116,1,248,195,128, +252,4,117,5,178,24,233,111,171,233,37,171,160,80,5,44, +1,26,192,233,147,8,136,14,81,5,233,90,233,198,6,95, +0,0,83,137,30,77,5,139,22,80,3,137,22,75,5,139, +14,4,7,43,203,137,14,73,5,81,82,232,164,254,90,89, +91,160,96,0,10,192,6,116,2,142,194,180,3,205,21,7, +232,137,0,186,5,0,185,0,0,73,117,253,74,117,250,232, +118,0,195,190,83,5,139,140,10,0,160,96,0,10,192,156, +81,117,13,80,83,81,86,3,217,232,22,230,94,89,91,88, +60,1,117,4,139,156,14,0,6,10,192,116,14,139,148,12, +0,254,200,116,4,139,22,80,3,142,194,180,2,205,21,7, +114,18,89,157,117,11,139,30,48,0,3,217,67,137,30,88, +3,233,128,229,80,232,5,208,88,128,252,4,117,5,178,24, +233,181,170,233,107,170,75,232,243,177,117,5,160,100,0,235, +3,232,232,193,10,192,117,4,176,1,235,2,176,0,162,100, +0,138,224,205,21,195,205,219,249,235,1,248,139,243,156,139, +14,165,4,138,195,50,193,162,167,4,138,199,50,228,138,221, +50,255,157,115,7,3,195,45,1,1,235,2,43,195,10,228, +120,13,61,128,0,114,21,139,222,131,196,2,233,93,23,5, +128,0,121,11,139,222,131,196,2,233,223,29,5,128,0,162, +166,4,187,165,4,128,15,128,139,222,50,255,128,203,128,195, +198,6,57,3,128,232,198,217,83,139,218,232,234,6,232,4, +197,137,30,94,4,177,32,232,27,207,91,232,96,177,116,23, +232,49,208,40,232,167,217,82,138,7,60,44,117,5,232,76, +177,235,241,232,30,208,41,137,30,59,3,14,184,233,93,80, +255,54,80,3,255,54,94,4,203,139,30,59,3,195,83,232, +14,5,60,108,116,10,60,76,116,6,60,113,116,2,60,81, +91,195,38,38,38,38,38,38,38,38,38,38,38,38,38,38, +38,38,38,38,38,38,38,38,38,38,38,37,37,37,36,36, +36,35,35,35,34,34,34,34,33,33,33,32,32,32,31,31, +31,31,30,30,30,29,29,29,29,28,28,28,27,27,27,26, +26,26,25,25,25,25,24,24,24,23,23,23,23,22,22,22, +22,21,21,21,20,20,20,19,19,19,19,18,18,18,17,17, +17,16,16,16,16,15,15,15,14,14,14,13,13,13,13,12, +12,12,11,11,11,10,10,10,10,9,9,9,8,8,8,7, +7,7,6,6,6,6,5,5,5,4,4,4,3,3,3,3, +2,2,2,1,1,1,0,0,0,0,255,255,255,254,254,254, +253,253,253,253,252,252,252,251,251,251,250,250,250,250,249,249, +249,248,248,248,247,247,247,247,246,246,246,245,245,245,244,244, +244,244,243,243,243,242,242,242,241,241,241,241,240,240,240,239, +239,239,238,238,238,238,237,237,237,236,236,236,235,235,235,235, +234,234,234,233,233,233,232,232,232,231,231,231,231,230,230,230, +229,229,229,228,228,228,228,227,227,227,226,226,226,225,225,225, +225,224,11,246,121,2,247,218,43,215,112,61,116,58,83,232, +144,28,156,115,3,232,106,12,11,210,120,15,131,250,39,114, +29,157,115,3,232,61,12,91,233,177,21,131,250,218,125,14, +131,194,38,131,250,218,124,17,232,19,0,186,218,255,232,13, +0,157,115,3,232,29,12,91,195,232,31,28,235,243,11,210, +156,121,2,247,218,185,3,0,211,226,129,194,50,96,135,218, +232,37,29,157,120,3,233,236,12,232,236,28,233,212,8,114, +9,176,13,144,233,15,251,198,7,0,138,7,232,164,249,136, +7,195,117,6,176,10,144,232,105,240,88,90,91,157,195,128, +62,106,0,0,116,18,30,83,197,30,107,0,128,63,0,91, +31,117,5,198,6,106,0,0,233,114,175,95,94,233,190,237, +117,16,91,136,54,167,4,187,0,16,198,6,251,2,4,233, +40,21,199,6,165,4,0,0,195,16,91,136,54,167,4,187, +0,16,198,6,251,2,4,233,16,21,199,6,165,4,0,0, +195,92,214,237,189,206,254,230,91,95,166,180,54,65,95,112, +9,99,207,97,132,17,119,204,43,102,67,122,229,213,148,191, +86,105,106,108,175,5,189,55,6,109,133,71,27,71,172,197, +39,112,102,25,226,88,23,183,81,115,224,79,141,151,110,18, +3,119,216,163,112,61,10,215,35,122,205,204,204,204,204,204, +76,125,0,0,0,0,0,0,0,129,0,0,0,0,0,0, +32,132,0,0,0,0,0,0,72,135,0,0,0,0,0,0, +122,138,0,0,0,0,0,64,28,142,0,0,0,0,0,80, +67,145,0,0,0,0,0,36,116,148,0,0,0,0,128,150, +24,152,0,0,0,0,32,188,62,155,0,0,0,0,40,107, +110,158,0,0,0,0,249,2,21,162,0,0,0,64,183,67, +58,165,0,0,0,16,165,212,104,168,0,0,0,42,231,132, +17,172,0,0,128,244,32,230,53,175,0,0,160,49,169,95, +99,178,0,0,4,191,201,27,14,182,0,0,197,46,188,162, +49,185,0,64,118,58,107,11,94,188,0,232,137,4,35,199, +10,192,0,98,172,197,235,120,45,195,128,122,23,183,38,215, +88,198,144,172,110,50,120,134,7,202,181,87,10,63,22,104, +41,205,162,237,204,206,27,194,83,208,133,20,64,97,81,89, +4,212,166,25,144,185,165,111,37,215,16,32,244,39,143,203, +78,218,10,148,248,120,57,63,1,222,12,185,54,215,7,143, +33,225,79,103,4,205,201,242,73,228,35,129,69,64,124,111, +124,231,182,112,43,168,173,197,29,235,228,76,54,18,25,55, +69,238,28,224,195,86,223,132,118,241,18,108,58,150,11,19, +26,245,22,7,201,123,206,151,64,248,220,72,187,26,194,189, +112,251,137,13,181,80,153,118,22,255,0,0,0,0,0,0, +0,128,241,4,53,128,4,154,247,25,131,36,99,67,131,117, +205,141,132,169,127,131,130,4,0,0,0,129,226,176,77,131, +10,114,17,131,244,4,53,127,24,114,49,128,46,101,69,37, +35,33,68,100,44,48,0,128,198,164,126,141,3,0,64,122, +16,243,90,0,0,160,114,78,24,9,0,0,16,165,212,232, +0,0,0,232,118,72,23,0,0,0,228,11,84,2,0,0, +0,202,154,59,0,0,0,0,225,245,5,0,0,0,128,150, +152,0,0,0,0,64,66,15,0,0,0,0,64,66,15,160, +134,1,16,39,0,16,39,232,3,100,0,10,0,1,0,0, +0,128,144,255,255,255,255,255,255,127,255,255,255,255,255,255, +255,255,255,59,170,56,129,7,124,136,89,116,224,151,38,119, +196,29,30,122,94,80,99,124,26,254,117,126,24,114,49,128, +0,0,0,129,5,251,215,30,134,101,38,153,135,88,52,35, +135,225,93,165,134,219,15,73,131,2,215,179,93,129,0,0, +128,129,4,98,53,131,126,80,36,76,126,121,169,170,127,0, +0,0,129,11,68,78,110,131,249,34,126,253,67,3,195,158, +38,1,0,0,48,49,50,51,52,53,54,55,56,57,65,66, +67,68,69,70,186,59,170,187,56,129,232,114,10,160,166,4, +60,136,115,60,60,104,114,75,255,54,163,4,255,54,165,4, +232,96,16,138,226,128,196,129,116,35,80,246,6,167,4,128, +232,67,16,50,228,232,230,17,88,91,90,80,232,168,4,187, +23,98,232,141,18,91,51,210,138,218,233,50,10,131,196,4, +128,38,165,4,128,116,3,233,145,24,50,228,136,38,167,4, +233,249,17,191,163,4,144,51,192,252,171,199,5,0,129,195, +232,175,24,117,3,233,222,164,195,252,171,199,5,0,129,195, +233,26,172,205,185,128,54,165,4,128,128,54,177,4,128,233, +138,3,205,186,135,217,233,90,4,205,187,135,217,233,71,4, +205,188,232,51,25,233,27,5,135,217,233,177,5,205,189,137, +30,163,4,233,107,8,205,190,82,152,139,208,232,238,8,90, +195,205,191,135,217,233,183,9,205,192,135,217,233,237,13,129, +251,0,128,117,19,205,193,232,211,8,51,210,187,128,144,232, +5,4,232,75,26,233,69,8,247,219,83,3,218,112,4,88, +233,153,1,205,194,232,181,8,90,255,54,163,4,255,54,165, +4,232,169,8,91,90,233,234,3,139,195,82,247,234,90,114, +5,139,216,233,118,1,205,195,83,232,145,8,90,255,54,163, +4,255,54,165,4,232,133,8,91,90,233,82,9,11,219,117, +12,136,54,167,4,198,6,251,2,4,233,45,17,137,30,163, +4,184,0,0,163,165,4,146,11,192,121,3,186,255,255,11, +219,121,6,199,6,165,4,255,255,247,62,163,4,139,216,233, +42,1,135,217,232,215,24,135,217,195,83,232,69,26,91,131, +195,4,195,139,22,163,4,139,14,165,4,195,156,83,232,25, +26,91,131,195,4,157,195,232,171,190,137,30,163,4,233,103, +10,232,161,190,137,30,163,4,233,101,10,205,196,139,23,139, +159,2,0,233,77,3,94,255,54,163,4,255,54,165,4,255, +230,205,197,135,217,232,160,24,135,217,195,232,100,23,116,3, +233,147,163,195,135,218,232,205,0,50,192,181,152,205,198,187, +166,4,138,200,136,47,181,0,67,136,47,208,208,205,199,115, +3,232,32,1,138,229,138,217,233,51,16,232,146,254,83,51, +219,137,30,163,4,183,129,137,30,165,4,198,6,251,2,4, +232,4,20,91,198,6,251,2,4,195,139,193,247,226,146,115, +3,233,37,213,195,187,171,4,186,183,100,233,6,0,187,171, +4,186,185,100,82,186,163,4,232,247,22,114,3,186,159,4, +195,138,205,50,237,235,8,135,218,160,251,2,152,139,200,252, +139,242,139,251,243,164,139,214,139,223,195,232,54,200,139,241, +139,251,253,43,202,65,243,164,139,218,139,207,65,252,195,156, +73,157,195,232,188,22,117,3,233,235,162,205,200,120,3,233, +131,22,161,163,4,11,192,116,6,176,1,121,2,176,255,195, +51,192,11,219,117,243,195,91,195,152,139,216,198,6,251,2, +2,137,30,163,4,195,198,6,251,2,4,195,232,196,255,233, +231,255,205,201,91,90,233,181,3,232,37,6,91,90,233,11, +12,185,4,0,233,136,255,156,138,23,67,157,156,138,55,67, +139,15,67,157,156,67,157,195,83,187,40,7,232,6,22,91, +185,182,38,81,232,181,255,50,192,205,202,162,49,3,187,180, +4,198,7,32,10,7,67,198,7,48,233,106,11,205,203,160, +165,4,235,9,205,204,232,229,23,116,8,246,208,208,224,26, +192,116,61,195,205,205,128,54,167,4,128,51,219,246,221,139, +195,27,194,139,208,138,195,26,193,138,200,195,232,3,22,120, +250,205,206,232,207,21,120,3,233,213,24,232,2,24,232,207, +24,233,252,23,139,195,43,194,116,14,112,7,120,7,50,192, +254,192,195,120,249,249,26,192,195,59,218,117,5,51,219,233, +38,0,139,194,137,30,163,4,11,219,232,211,249,144,144,144, +121,6,199,6,165,4,255,255,11,192,186,0,0,121,3,186, +255,255,247,62,163,4,139,218,137,30,163,4,195,173,58,225, +116,17,70,2,4,254,192,152,3,240,59,245,117,239,139,214, +233,57,210,58,6,251,2,117,233,58,44,117,229,70,138,208, +172,58,6,142,0,116,4,2,194,235,220,10,192,116,16,152, +145,191,143,0,243,166,145,116,6,3,240,138,194,235,200,139, +214,91,195,139,243,139,46,75,4,252,235,190,139,243,139,46, +92,3,252,233,13,0,173,58,225,116,17,70,172,152,3,240, +173,3,240,59,238,117,239,139,222,233,83,211,58,6,251,2, +117,233,58,44,117,229,70,172,58,6,142,0,117,223,10,192, +116,14,152,145,191,143,0,243,166,145,116,4,3,240,235,208, +173,139,208,139,222,233,5,211,232,24,22,195,161,165,4,10, +228,116,245,128,54,165,4,128,205,215,176,0,162,158,4,162, +170,4,160,178,4,10,192,116,226,161,165,4,10,228,116,216, +139,30,177,4,128,14,165,4,128,128,14,177,4,128,138,204, +42,207,162,167,4,116,34,115,18,134,195,246,217,162,167,4, +136,62,166,4,80,81,232,111,21,89,88,128,249,57,115,95, +83,248,232,33,21,160,167,4,91,50,195,187,158,4,190,170, +4,185,4,0,248,252,120,30,173,17,7,67,67,226,249,115, +18,187,166,4,254,7,116,52,75,75,185,4,0,209,31,75, +75,226,250,233,233,17,173,25,7,67,67,226,249,115,26,246, +151,1,0,185,4,0,75,75,247,23,226,250,185,4,0,255, +7,117,6,67,67,226,248,116,200,233,244,12,233,141,13,160, +167,4,36,128,128,38,165,4,127,8,6,165,4,195,137,30, +165,4,137,22,163,4,195,161,165,4,10,228,116,240,128,54, +165,4,128,10,255,116,239,161,165,4,10,228,116,224,51,201, +139,54,163,4,162,167,4,138,204,42,207,115,13,246,217,134, +223,137,30,166,4,134,223,147,135,214,138,224,50,227,156,180, +128,10,196,10,220,50,228,138,252,11,201,116,70,131,249,25, +114,18,157,137,54,163,4,138,38,167,4,37,127,128,10,196, +162,165,4,195,128,249,8,114,28,233,5,3,144,138,243,50, +219,128,233,8,246,196,31,116,208,128,204,32,235,203,128,204, +32,226,3,235,14,248,208,219,209,218,208,220,246,196,16,117, +237,226,243,157,121,37,42,204,138,225,27,242,139,214,26,195, +138,216,115,47,246,22,167,4,246,212,247,210,246,211,254,196, +117,33,66,117,30,254,195,117,26,235,6,3,214,18,216,115, +12,254,6,166,4,116,9,208,219,209,218,208,220,233,36,17, +233,169,12,233,104,12,232,37,19,195,160,177,4,162,167,4, +233,167,12,246,6,166,4,255,116,240,246,6,178,4,255,116, +229,139,30,177,4,232,243,244,137,30,177,4,187,164,4,248, +232,161,19,187,176,4,248,232,154,19,255,54,166,4,232,94, +21,143,6,166,4,185,64,0,81,235,8,81,248,187,170,4, +232,119,19,139,252,131,236,8,131,239,2,190,176,4,185,4, +0,253,243,165,190,120,4,185,4,0,187,170,4,248,252,173, +25,7,67,67,226,249,115,16,185,4,0,139,244,191,170,4, +252,243,165,139,230,248,235,4,131,196,8,249,187,158,4,232, +56,19,89,226,182,246,6,165,4,128,116,9,255,6,166,4, +117,9,233,7,12,187,158,4,232,31,19,233,49,16,232,148, +18,117,7,136,30,167,4,233,0,12,10,255,117,3,233,122, +18,232,87,244,139,250,51,210,138,254,139,243,138,223,185,32, +0,85,139,46,163,4,160,165,4,138,231,235,5,248,209,215, +209,214,86,87,43,253,27,240,115,4,95,94,235,4,131,196, +4,248,245,209,210,209,211,226,228,11,219,121,10,254,6,166, +4,117,8,93,233,165,11,209,210,209,211,138,226,138,214,138, +243,138,223,93,233,13,16,19,249,83,87,81,44,48,80,232, +80,18,88,152,121,30,139,30,163,4,129,251,205,12,115,25, +139,203,209,227,209,227,3,217,209,227,3,216,120,11,137,30, +163,4,235,72,80,114,8,235,51,80,232,36,2,235,20,199, +6,124,4,0,36,199,6,126,4,116,148,187,126,4,232,131, +19,121,22,232,60,18,90,255,54,163,4,255,54,165,4,232, +139,2,91,90,232,204,253,235,19,232,231,1,232,35,18,232, +238,18,90,232,119,2,232,218,1,232,238,252,89,95,91,195, +205,217,50,192,233,9,0,205,218,176,1,198,6,251,2,8, +198,6,168,4,1,190,180,37,86,51,255,139,207,139,247,247, +209,80,232,134,17,88,10,192,117,5,198,6,251,2,2,138, +7,60,38,117,3,233,7,176,60,45,156,116,5,60,43,116, +1,75,232,251,248,115,6,232,61,255,233,245,255,189,163,97, +51,210,139,242,46,58,134,0,0,116,10,129,253,156,97,116, +36,77,233,239,255,129,237,156,97,209,229,46,255,166,48,106, +75,106,95,106,95,106,103,106,109,106,115,106,64,106,64,106, +50,192,232,156,0,232,65,0,233,45,0,65,117,247,232,81, +17,121,175,81,83,87,232,72,1,95,91,89,233,163,255,232, +140,243,116,225,233,219,255,67,235,219,233,11,0,232,188,0, +233,5,0,50,192,232,182,0,157,117,13,232,45,19,232,33, +17,122,5,83,232,237,18,91,195,233,118,244,198,6,85,4, +255,232,137,164,139,212,233,227,8,10,255,117,5,232,232,16, +249,195,160,166,4,10,192,117,8,138,195,246,208,232,228,16, +249,195,232,228,255,93,114,20,235,16,83,139,31,232,217,255, +91,93,114,8,83,87,191,165,4,144,85,195,254,192,44,1, +195,246,196,255,138,226,116,3,128,204,32,138,214,233,237,252, +16,159,128,62,251,2,8,117,4,158,233,8,0,158,83,87, +232,92,0,95,91,51,246,139,214,232,4,248,114,19,60,45, +117,4,247,214,235,5,60,43,116,1,195,232,242,247,114,1, +195,129,250,204,12,114,5,186,255,127,235,239,80,184,10,0, +247,226,90,128,234,48,50,246,3,208,235,223,12,1,83,87, +117,7,232,28,0,235,5,144,144,232,70,0,95,91,51,246, +139,214,232,189,243,67,195,232,88,16,120,249,233,111,156,116, +49,232,78,16,123,86,117,3,233,123,156,205,207,121,5,232, +63,0,235,72,176,4,162,251,2,138,30,165,4,136,30,167, +4,139,22,163,4,138,38,162,4,128,204,64,128,203,128,233, +213,13,232,29,16,115,37,117,3,233,74,156,205,208,121,3, +232,14,0,176,8,162,251,2,51,192,163,159,4,163,161,4, +195,82,86,139,22,163,4,232,131,0,94,90,195,232,242,15, +121,5,139,30,163,4,195,205,209,117,3,233,24,156,160,166, +4,60,144,114,49,116,3,233,6,156,160,165,4,10,192,120, +3,233,252,155,186,0,0,187,0,128,232,138,251,232,203,6, +232,205,17,186,0,0,187,128,144,232,236,16,116,3,233,223, +155,187,0,128,235,45,160,165,4,10,192,156,121,5,36,127, +162,165,4,186,0,0,187,0,128,232,103,251,160,166,4,60, +144,117,6,157,120,219,233,183,155,232,231,6,139,218,157,121, +2,247,219,137,30,163,4,198,6,251,2,2,195,51,219,50, +228,190,167,4,198,132,255,255,144,198,4,0,11,210,121,5, +247,218,198,4,128,138,222,138,242,138,215,198,6,251,2,4, +233,75,8,205,214,160,166,4,10,192,116,10,160,178,4,10, +192,117,4,233,248,14,195,139,30,177,4,232,218,240,255,54, +166,4,137,30,177,4,232,86,17,139,240,163,166,4,187,120, +4,163,178,4,189,171,4,139,0,11,192,116,44,191,0,0, +139,207,139,0,247,35,83,139,222,3,223,129,195,151,4,3, +7,115,1,66,3,193,115,1,66,137,7,139,202,91,131,255, +6,116,4,71,71,235,219,139,193,83,187,159,4,137,0,91, +131,254,6,116,4,70,70,235,190,190,157,4,253,185,7,0, +172,10,192,225,251,116,5,128,14,158,4,32,160,165,4,10, +192,143,6,166,4,120,15,187,158,4,185,4,0,209,23,67, +67,226,250,233,25,12,254,6,166,4,117,247,233,221,7,232, +115,14,116,4,10,255,117,3,233,96,14,232,58,240,139,14, +165,4,50,237,161,163,4,138,253,83,81,82,81,80,247,226, +139,202,88,247,227,3,200,115,1,66,139,218,90,88,247,226, +3,200,115,1,66,3,218,90,88,246,226,3,216,115,13,209, +219,209,217,254,6,166,4,117,3,233,144,7,10,255,121,9, +254,6,166,4,117,7,233,131,7,209,209,209,211,138,213,138, +243,138,223,138,225,233,236,11,195,83,176,8,114,2,176,17, +138,232,138,200,81,156,232,72,2,10,192,116,2,121,12,157, +89,80,123,11,4,16,88,121,26,235,9,157,89,235,38,4, +7,88,121,15,80,232,246,11,88,138,224,2,225,126,22,2, +232,235,12,2,197,254,197,58,232,181,3,114,12,138,232,254, +197,176,2,235,4,2,197,181,3,254,200,254,200,91,80,156, +50,201,232,77,0,198,7,48,117,1,67,232,232,0,75,128, +63,48,116,250,128,63,46,116,1,67,157,88,116,43,156,80, +232,191,13,180,69,123,2,180,68,136,39,67,88,157,198,7, +43,121,5,198,7,45,246,216,180,47,254,196,44,10,115,250, +4,58,67,134,196,137,7,67,67,198,7,0,135,217,187,180, +4,195,254,205,121,22,137,30,82,3,198,7,46,67,198,7, +48,254,197,117,248,67,51,201,235,26,254,205,117,12,198,7, +46,137,30,82,3,67,51,201,235,10,254,201,117,6,198,7, +44,67,177,3,137,14,129,4,195,180,5,189,245,97,232,217, +255,46,139,150,0,0,69,69,139,54,163,4,176,47,254,192, +43,242,115,250,3,242,136,7,67,137,54,163,4,254,204,117, +221,232,182,255,198,7,0,195,185,1,3,190,6,0,235,6, +185,4,4,190,4,0,191,179,4,252,187,116,98,139,22,163, +4,86,138,198,50,228,211,224,134,224,46,215,170,211,226,138, +205,78,117,238,198,5,0,187,179,4,89,254,201,128,63,48, +117,3,67,226,248,195,232,233,12,123,119,81,83,190,159,4, +191,171,4,185,4,0,252,243,165,232,117,3,83,187,177,4, +232,253,13,91,190,171,4,191,159,4,185,4,0,252,243,165, +116,3,232,206,12,138,14,166,4,128,233,184,246,217,248,232, +90,3,91,89,190,166,97,176,9,232,46,255,80,176,47,80, +88,254,192,80,232,148,0,115,247,232,163,0,88,235,11,117, +9,198,7,49,67,198,7,48,235,2,136,7,67,88,254,200, +117,215,81,190,159,4,191,163,4,185,2,0,252,243,165,89, +235,41,83,81,232,24,15,232,113,3,90,91,232,153,13,116, +11,137,30,165,4,137,22,163,4,232,115,12,176,1,232,178, +3,137,30,165,4,137,22,163,4,89,91,176,3,186,236,97, +232,199,254,80,83,82,232,94,13,93,176,47,80,88,254,192, +80,232,23,14,115,247,46,3,150,0,0,46,18,158,2,0, +69,69,69,232,56,13,88,135,213,91,136,7,67,88,254,200, +117,206,66,66,139,234,180,4,233,179,254,81,86,185,7,0, +191,159,4,248,252,46,172,24,5,71,226,249,94,89,195,81, +185,7,0,191,159,4,248,252,46,172,16,5,71,226,249,89, +195,83,81,51,255,87,187,2,94,160,166,4,46,215,10,192, +116,12,95,152,43,248,87,139,208,232,50,239,235,232,187,102, +96,232,136,12,232,45,13,115,6,232,230,11,95,79,87,232, +176,11,114,31,187,122,96,232,142,12,232,88,252,88,44,9, +80,187,246,127,232,109,12,232,87,13,118,7,232,185,11,88, +254,192,80,88,89,91,10,192,195,88,89,91,10,192,195,187, +180,4,138,47,177,32,138,38,131,4,246,196,32,116,13,58, +233,177,42,117,7,246,196,4,117,2,138,233,136,15,232,191, +242,116,50,189,165,97,46,58,134,0,0,116,9,129,253,156, +97,116,38,77,235,240,129,237,156,97,209,229,46,255,166,97, +112,117,112,117,112,121,112,121,112,121,112,121,112,117,112,121, +112,60,112,60,112,75,198,7,48,138,38,131,4,246,196,16, +116,4,75,198,7,36,246,196,4,117,5,75,136,47,50,237, +195,10,192,235,6,198,7,48,67,254,200,117,248,195,232,137, +253,198,7,48,67,254,200,117,245,195,187,180,4,198,7,32, +83,232,193,10,91,156,121,10,198,7,45,83,232,236,12,91, +12,1,67,198,7,48,157,195,205,216,232,221,255,117,8,67, +198,7,0,187,180,4,195,232,200,10,121,18,185,0,7,51, +192,163,131,4,137,14,129,4,232,94,253,233,49,255,233,120, +252,232,129,10,121,3,233,96,159,117,1,195,160,166,4,208, +232,80,198,6,166,4,64,208,22,166,4,187,171,4,232,9, +13,185,4,0,81,232,55,13,139,22,171,4,139,30,173,4, +232,187,247,90,91,232,75,246,254,14,166,4,89,116,10,226, +227,88,4,192,0,6,166,4,195,233,47,10,191,190,37,87, +191,168,4,198,5,1,232,44,10,117,3,233,54,241,121,7, +10,255,117,10,233,147,3,10,255,117,3,233,13,10,10,219, +121,38,128,62,166,4,153,114,3,233,237,158,82,83,255,54, +163,4,255,54,165,4,232,50,1,91,90,232,90,11,232,61, +11,91,90,116,3,233,209,158,160,165,4,10,192,121,9,191, +196,113,87,36,127,162,165,4,83,82,128,203,127,156,255,54, +165,4,255,54,163,4,232,2,1,90,91,232,42,11,117,28, +82,83,51,210,187,0,144,232,30,11,91,90,121,14,157,90, +91,235,60,144,51,210,187,0,129,233,18,247,157,121,14,83, +82,232,47,1,138,194,232,197,2,90,91,208,216,143,6,163, +4,143,6,165,4,159,128,38,165,4,127,158,115,4,191,176, +125,87,83,82,232,21,1,90,91,232,3,251,233,133,240,83, +82,232,255,0,137,22,178,4,199,6,163,4,0,0,199,6, +165,4,0,129,209,46,178,4,115,7,90,91,83,82,232,222, +250,247,6,178,4,255,255,116,21,90,91,232,33,12,232,141, +10,232,203,250,90,91,232,22,12,232,130,10,235,214,90,91, +195,138,14,166,4,128,233,184,115,57,246,217,156,187,164,4, +138,135,1,0,136,135,3,0,10,192,156,12,128,136,135,1, +0,198,135,2,0,184,157,156,121,3,232,34,0,50,237,232, +18,0,157,121,3,232,38,0,198,6,158,4,0,157,115,3, +233,189,1,195,81,83,248,232,122,9,91,89,226,246,195,83, +187,159,4,131,47,1,115,4,67,67,235,247,91,195,83,187, +159,4,254,7,117,3,67,235,249,91,195,138,14,166,4,128, +233,152,115,65,246,217,156,139,22,163,4,139,30,165,4,10, +219,156,136,30,167,4,198,6,166,4,152,128,203,128,157,156, +121,6,131,234,1,128,219,0,50,237,10,201,116,6,208,235, +209,218,226,250,157,159,121,5,66,117,2,254,195,157,115,5, +50,228,233,169,1,158,121,10,247,210,246,211,131,194,1,128, +211,0,195,177,152,42,14,166,4,248,235,170,232,102,8,126, +81,186,0,0,187,0,129,232,190,9,117,9,137,22,163,4, +137,22,165,4,195,160,166,4,44,128,152,80,198,6,166,4, +128,232,27,11,187,118,97,232,24,2,90,91,232,16,11,232, +124,9,187,135,97,232,10,2,90,91,232,145,245,90,232,254, +10,232,217,248,90,91,232,26,244,187,49,128,186,24,114,233, +157,249,233,244,156,233,92,148,159,134,224,80,176,1,235,2, +50,192,162,85,4,88,134,196,158,186,0,0,137,30,83,4, +116,3,232,233,195,137,30,59,3,232,172,147,117,215,139,227, +139,54,83,4,57,55,117,205,82,138,167,2,0,80,82,131, +195,4,246,135,255,255,128,120,65,185,2,0,252,139,243,191, +163,4,243,165,91,86,83,246,6,85,4,255,117,15,190,86, +4,131,239,4,185,2,0,243,165,50,192,116,3,232,75,240, +95,190,163,4,185,2,0,252,243,165,94,139,20,139,140,2, +0,131,198,4,86,232,73,240,235,39,131,195,4,139,15,67, +67,94,139,20,246,6,85,4,255,117,6,139,22,86,4,235, +4,3,209,112,53,137,20,82,139,23,67,67,88,83,232,165, +241,91,89,42,197,232,31,241,116,11,137,22,46,0,139,209, +135,211,233,124,154,139,227,137,30,69,3,139,30,59,3,128, +63,44,117,9,232,85,246,232,66,255,233,147,147,233,168,154, +81,83,86,87,82,178,57,187,158,4,191,165,4,190,166,4, +235,25,83,185,4,0,248,209,23,67,67,226,250,91,246,7, +64,117,41,254,12,116,42,254,202,116,38,246,5,255,120,33, +117,224,128,44,8,118,26,128,234,8,118,21,190,164,4,185, +7,0,253,243,164,128,38,158,4,32,235,190,128,15,32,235, +210,90,95,94,91,89,118,3,233,116,4,233,192,6,138,62, +166,4,185,4,0,10,219,120,33,117,17,128,239,8,114,23, +138,222,138,242,138,212,50,228,226,235,116,11,248,208,212,209, +210,208,211,254,207,117,222,233,161,6,136,62,166,4,233,131, +4,204,32,235,244,136,62,166,4,233,120,4,83,232,2,0, +91,195,232,45,0,187,10,4,235,12,83,232,2,0,91,195, +232,31,0,187,99,4,128,62,168,4,1,120,7,117,18,198, +6,168,4,2,232,129,175,176,13,232,137,175,176,10,232,132, +175,195,252,10,255,190,3,98,116,10,246,6,167,4,128,121, +3,190,11,98,232,123,6,114,8,191,159,4,185,4,0,235, +9,131,198,4,191,163,4,185,2,0,46,165,226,252,195,232, +13,9,83,232,129,7,232,182,247,91,232,5,0,90,91,233, +173,247,46,138,7,152,232,246,8,80,67,46,139,7,163,163, +4,131,195,2,46,139,7,163,165,4,131,195,2,88,90,89, +72,116,28,81,82,80,83,135,217,232,131,247,91,83,46,139, +23,46,139,159,2,0,232,234,241,91,131,195,4,235,222,195, +83,208,232,115,3,233,9,1,187,178,96,232,214,6,232,47, +7,114,9,91,232,35,251,75,198,7,37,195,232,243,5,181, +16,115,2,181,7,232,189,5,116,3,232,4,250,91,120,63, +138,208,2,197,42,6,130,4,121,5,246,216,232,194,250,50, +201,232,177,0,255,54,129,4,82,232,218,248,90,143,6,129, +4,255,54,129,4,50,192,10,194,116,6,232,179,250,232,57, +248,143,6,129,4,255,54,129,4,160,129,4,233,114,2,138, +208,160,129,4,10,192,116,2,254,200,138,240,2,194,138,200, +120,4,50,192,138,200,121,17,80,81,82,83,232,169,5,91, +90,89,88,254,192,120,241,138,225,138,194,42,193,2,197,121, +23,160,130,4,232,90,250,198,7,46,137,30,82,3,67,50, +201,138,198,42,197,233,161,9,160,130,4,82,255,54,129,4, +42,197,42,194,2,193,120,3,232,54,250,232,39,0,255,54, +129,4,232,81,248,160,130,4,143,6,129,4,10,192,88,90, +117,7,139,30,82,3,233,103,1,2,194,254,200,120,3,232, +15,250,233,91,1,138,197,2,194,42,193,254,192,138,232,44, +3,127,252,4,3,138,200,160,131,4,36,64,117,2,138,200, +195,232,254,4,180,7,114,2,180,16,232,200,4,91,249,116, +9,83,80,232,11,249,90,91,138,230,156,80,139,22,129,4, +10,246,156,10,210,116,2,254,202,2,242,157,116,9,246,6, +131,4,4,117,2,254,206,42,244,138,230,80,120,3,233,78, +0,83,80,80,232,225,4,88,254,196,117,247,232,191,4,232, +142,7,88,80,185,3,0,210,228,232,166,4,114,16,138,196, +152,187,178,96,3,216,232,107,5,232,85,6,235,14,187,110, +96,138,196,152,3,216,232,83,5,232,248,5,88,91,120,17, +88,89,254,193,81,80,83,80,232,157,4,88,91,235,2,50, +228,246,220,160,130,4,2,224,254,196,10,192,116,9,246,6, +131,4,4,117,2,254,204,138,236,50,201,88,255,54,129,4, +80,136,46,130,4,232,94,247,88,10,228,126,5,138,196,232, +63,249,88,163,129,4,10,192,117,12,75,138,7,60,46,116, +1,67,137,30,82,3,88,157,114,21,2,196,138,38,130,4, +42,196,10,228,116,9,246,6,131,4,4,117,2,254,192,10, +192,232,74,246,139,217,233,71,0,138,224,246,196,64,180,3, +117,2,50,228,163,131,4,137,14,129,4,138,224,187,180,4, +198,7,32,246,196,8,116,3,198,7,43,83,232,182,3,91, +121,8,198,7,45,83,232,226,5,91,67,198,7,48,232,209, +3,161,131,4,139,14,129,4,120,3,233,179,253,233,104,0, +83,232,59,248,91,116,3,136,47,67,198,7,0,187,179,4, +67,139,62,82,3,139,22,129,4,160,130,4,50,228,43,251, +43,248,116,67,138,7,60,32,116,230,60,42,116,226,180,1, +75,83,80,232,234,234,50,228,60,45,116,246,60,43,116,242, +60,36,116,238,60,48,117,22,67,232,212,234,115,16,75,235, +3,75,136,7,88,10,228,116,248,131,196,2,235,179,88,10, +228,116,251,91,198,7,37,195,161,131,4,138,204,181,6,208, +232,139,22,129,4,115,11,83,82,232,69,243,50,192,90,233, +63,254,138,198,44,5,120,3,232,38,248,82,232,218,245,88, +80,10,192,117,1,75,254,200,120,6,232,20,248,198,7,0, +143,6,129,4,233,89,255,232,235,2,116,109,121,12,161,163, +4,163,11,0,160,165,4,162,13,0,161,11,0,46,247,38, +107,98,139,248,138,202,46,160,109,98,246,38,11,0,2,200, +46,160,13,0,46,246,38,107,98,2,200,50,192,46,139,22, +110,98,3,215,46,138,30,112,98,18,217,162,167,4,176,128, +162,166,4,137,22,11,0,136,30,13,0,176,4,162,251,2, +233,187,251,0,0,0,187,179,4,185,32,0,3,7,67,67, +226,250,36,254,163,11,0,235,161,139,22,11,0,138,30,13, +0,51,192,176,128,162,166,4,136,38,167,4,233,143,251,83, +81,187,158,4,129,7,128,0,185,3,0,115,14,67,67,255, +7,117,8,226,248,254,6,166,4,209,31,89,116,32,246,6, +158,4,255,117,5,128,38,159,4,254,187,165,4,138,7,138, +167,2,0,36,127,128,228,128,10,224,136,39,91,195,144,144, +144,233,136,251,128,228,224,128,196,128,115,28,156,66,117,18, +157,254,195,117,19,249,208,219,254,6,166,4,117,10,144,233, +106,251,157,117,3,128,226,254,86,190,163,4,137,20,70,70, +138,62,167,4,129,227,127,128,10,223,136,28,94,195,139,241, +232,180,4,139,206,81,232,9,2,114,9,128,62,166,4,184, +121,15,235,7,128,62,166,4,152,121,6,232,0,2,232,207, +4,187,134,4,232,81,4,89,81,191,142,4,187,134,4,232, +53,4,187,134,4,232,93,4,232,253,1,232,178,4,187,134, +4,232,52,4,232,251,1,187,148,4,232,197,1,115,3,131, +235,4,232,87,4,89,117,4,254,193,235,204,139,233,232,117, +4,139,205,195,128,38,165,4,127,232,134,0,232,165,0,198, +6,178,4,127,232,163,236,232,132,0,235,27,101,237,161,165, +4,128,252,119,115,1,195,10,192,121,9,36,127,162,165,4, +184,176,125,80,232,91,0,160,166,4,10,192,116,5,128,6, +166,4,2,232,97,0,161,177,4,128,252,130,156,246,196,1, +117,2,168,64,156,232,73,0,157,116,9,187,50,96,232,55, +2,232,72,236,128,46,166,4,2,115,3,232,0,1,232,3, +241,160,166,4,60,116,115,11,186,219,15,187,73,131,232,142, +242,235,6,187,52,98,232,198,250,157,117,5,128,54,165,4, +128,195,187,99,98,232,0,2,232,8,241,232,199,241,232,6, +0,232,8,236,233,25,3,232,173,3,232,164,247,232,0,2, +232,195,3,195,187,50,96,233,222,1,184,240,195,255,54,165, +4,255,54,163,4,232,86,255,90,91,255,54,163,4,255,54, +165,4,232,249,1,232,44,255,91,90,233,17,238,161,165,4, +10,192,121,9,191,176,125,87,36,127,162,165,4,128,252,129, +114,12,191,57,123,87,51,210,187,0,129,232,240,237,186,162, +48,187,9,127,232,225,1,120,58,191,66,123,87,255,54,163, +4,255,54,165,4,186,215,179,187,93,129,232,101,236,91,90, +255,54,163,4,255,54,165,4,232,163,1,187,73,98,232,49, +250,91,90,255,54,163,4,255,54,165,4,232,144,1,91,90, +232,171,237,187,82,98,233,6,250,186,219,15,187,73,129,233, +37,236,186,146,10,187,6,128,233,40,236,232,87,176,60,13, +117,3,232,35,177,46,138,7,67,10,192,117,238,195,191,159, +4,185,4,0,184,0,0,252,243,171,195,184,0,0,163,163, +4,163,165,4,195,232,120,231,121,14,161,163,4,11,192,116, +32,176,1,121,28,246,216,195,205,212,160,166,4,10,192,116, +16,160,165,4,10,192,116,7,176,1,121,5,246,216,195,12, +1,195,160,251,2,60,8,254,200,254,200,254,200,195,232,241, +255,114,12,83,187,106,97,232,206,0,232,237,234,91,195,51, +210,187,0,128,232,172,235,195,232,215,255,187,42,96,114,17, +235,8,232,205,255,187,58,96,114,7,232,171,0,232,117,240, +195,255,54,165,4,255,54,163,4,198,6,251,2,8,232,156, +0,232,112,239,90,91,232,6,241,195,185,4,0,209,23,67, +67,226,250,195,185,4,0,209,31,75,75,226,250,195,128,143, +2,0,32,226,1,195,187,176,4,128,249,8,114,38,81,185, +7,0,187,170,4,138,39,138,135,1,0,136,7,67,226,247, +50,192,136,7,89,128,233,8,128,228,32,116,217,8,38,170, +4,233,210,255,10,201,116,15,81,248,232,183,255,89,246,135, +2,0,16,117,185,226,191,195,190,159,4,191,171,4,252,185, +4,0,139,5,165,137,132,254,255,226,247,195,191,124,4,185, +2,0,235,6,191,120,4,185,4,0,252,46,139,7,171,67, +67,226,248,139,223,75,75,195,191,171,4,235,234,191,159,4, +235,229,191,171,4,185,4,0,135,222,252,243,165,135,222,195, +81,83,87,187,159,4,191,171,4,185,4,0,232,233,255,95, +91,89,195,81,83,87,187,171,4,191,159,4,235,235,137,22, +163,4,137,30,165,4,195,139,22,163,4,139,30,165,4,195, +232,207,254,114,63,233,137,0,232,215,237,83,87,138,195,50, +6,165,4,120,60,10,219,120,16,161,165,4,43,195,114,63, +117,55,161,163,4,43,194,235,16,139,195,43,6,165,4,114, +46,117,38,139,194,43,6,163,4,114,36,117,28,50,192,235, +74,192,235,71,232,163,237,144,144,139,7,50,6,165,4,121, +19,138,38,165,4,10,228,120,6,176,1,10,192,235,44,176, +255,249,235,39,81,185,2,0,135,222,160,165,4,10,192,121, +2,135,247,253,167,117,6,226,251,176,0,235,13,115,6,176, +1,10,192,235,5,176,255,10,192,249,89,95,91,195,187,177, +4,232,86,237,144,144,138,5,50,7,121,2,235,179,81,185, +4,0,235,196,187,255,97,232,242,254,232,151,255,117,11,198, +6,251,2,2,199,6,163,4,0,128,195,46,43,150,0,0, +46,26,158,2,0,195,232,9,254,120,8,160,165,4,10,192, +120,14,195,161,163,4,11,192,120,17,195,232,244,253,120,8, +205,210,128,54,165,4,128,195,161,163,4,61,0,128,117,10, +205,211,83,232,219,237,91,233,230,255,247,30,163,4,195,187, +121,4,232,51,0,191,151,4,185,8,0,184,0,0,252,243, +171,162,120,4,162,170,4,195,232,183,253,114,3,233,162,254, +139,23,139,159,2,0,195,185,4,0,232,165,253,114,3,233, +150,254,185,2,0,233,144,254,185,4,0,135,251,187,159,4, +232,143,253,114,3,233,128,254,135,223,185,2,0,191,163,4, +135,251,233,115,254,185,4,0,191,159,4,232,116,253,114,3, +233,101,254,185,2,0,191,163,4,233,92,254,232,99,253,114, +3,233,29,255,233,205,254,232,88,253,185,4,0,115,3,185, +2,0,93,191,165,4,255,53,79,79,226,250,85,195,191,171, +4,185,4,0,235,17,232,57,253,191,159,4,185,4,0,115, +6,191,163,4,185,2,0,88,143,5,71,71,226,250,80,195, +232,31,253,121,1,195,205,213,114,3,233,180,243,233,27,244, +0,0,250,186,96,0,142,218,142,194,142,210,50,192,162,100, +4,181,145,187,0,0,186,154,6,139,242,46,172,136,7,67, +66,254,205,117,244,188,14,7,205,18,250,187,64,0,247,227, +140,219,43,195,187,0,0,246,196,240,117,6,177,4,211,224, +139,216,75,137,30,44,0,139,227,233,34,205,176,44,162,246, +1,187,183,0,198,7,58,50,192,162,249,2,162,6,0,162, +107,4,162,101,4,162,40,0,187,14,3,137,30,12,3,187, +122,3,137,30,226,3,139,30,44,0,75,137,30,10,3,75, +83,187,14,7,176,4,162,223,4,83,137,30,224,4,160,223, +4,254,192,2,192,138,208,182,0,3,218,90,135,218,139,30, +224,4,136,23,67,136,55,67,160,223,4,185,52,0,10,192, +116,14,135,218,3,217,135,218,137,23,67,67,254,200,117,242, +135,218,3,217,67,83,254,200,162,54,5,139,30,224,4,139, +23,187,51,0,3,218,137,30,228,4,91,67,137,30,48,0, +137,30,69,3,90,138,194,36,254,138,208,138,194,42,195,138, +216,138,198,26,199,138,248,115,3,233,104,173,177,3,211,235, +138,199,60,2,114,3,187,0,2,138,194,42,195,138,216,138, +198,26,199,138,248,115,3,233,74,173,137,30,10,3,135,218, +137,30,44,0,137,30,47,3,139,227,137,30,69,3,139,30, +48,0,135,218,232,61,173,43,218,75,75,83,91,232,128,229, +187,220,127,232,127,251,232,152,172,233,143,195,32,66,121,116, +101,115,32,102,114,101,101,0,20,232,165,240,51,201,82,255, +54,129,4,233,104,246,253,255,3,191,201,27,14,182,0,0, +54,50,88,48,56,53,49,32,67,79,80,82,46,32,73,66, +77,32,49,57,56,54,213,224,129,225,32,75,66,32,79,75, +13,232,204,25,138,251,232,199,25,138,235,138,207,252,250,191, +0,5,176,253,230,33,176,10,230,32,186,97,0,187,204,76, +180,2,138,195,238,138,199,238,74,228,32,34,196,116,250,236, +170,66,226,238,234,0,5,0,0,204,204,250,180,213,158,115, +74,117,72,123,70,121,68,159,177,5,210,236,115,61,176,64, +208,224,113,55,50,228,158,118,50,120,48,122,46,159,210,236, +114,41,208,228,112,37,184,255,255,249,142,216,140,219,142,195, +140,193,142,209,140,210,139,226,139,236,139,245,139,254,115,7, +51,199,117,7,248,235,227,11,199,116,1,244,230,160,230,131, +186,216,3,238,254,192,178,184,238,176,137,230,99,176,165,230, +97,176,1,230,96,140,200,142,208,142,216,252,187,0,0,188, +22,224,233,234,23,117,212,176,2,230,96,176,4,230,8,176, +84,230,67,138,193,230,65,176,64,230,67,128,251,255,116,7, +228,65,10,216,226,241,244,138,195,43,201,230,65,176,64,230, +67,144,144,228,65,34,216,116,3,226,242,244,176,3,230,96, +230,13,176,255,138,216,138,248,185,8,0,186,0,0,238,80, +238,176,1,236,138,224,236,59,216,116,1,244,66,249,226,238, +115,249,254,192,116,222,142,219,142,195,176,255,230,1,80,230, +1,176,88,230,11,176,0,138,232,230,8,80,230,10,176,18, +230,65,176,65,230,11,80,228,8,36,16,116,1,244,176,66, +230,11,176,67,230,11,173,173,173,173,139,30,114,4,139,46, +150,4,185,0,128,129,251,52,18,116,22,188,24,224,233,78, +11,116,18,138,216,176,4,230,96,43,201,226,254,134,216,235, +246,43,192,243,171,137,30,114,4,131,253,16,116,2,43,237, +137,46,150,4,43,237,186,0,4,187,16,0,142,194,43,255, +184,85,170,139,200,38,137,5,176,15,38,139,5,51,193,117, +17,185,0,32,243,171,129,194,0,4,131,195,16,128,254,160, +117,218,137,30,19,4,184,48,0,142,208,188,0,1,176,19, +230,32,176,8,230,33,176,9,230,33,176,255,230,33,30,185, +32,0,43,255,142,199,184,35,255,171,140,200,171,226,247,191, +64,0,14,31,190,3,255,185,16,0,165,71,71,226,251,31, +30,228,98,36,15,138,224,176,173,230,97,144,228,98,177,4, +210,192,36,240,10,196,42,228,163,16,4,176,153,230,99,232, +177,23,128,251,234,117,8,198,6,150,4,16,235,34,144,128, +251,170,116,28,128,251,101,117,3,233,213,253,10,219,117,16, +176,56,230,97,144,144,228,96,36,255,117,4,254,6,18,4, +161,16,4,80,176,48,163,16,4,42,228,205,16,176,32,163, +16,4,42,228,205,16,88,163,16,4,36,48,117,10,191,64, +0,199,5,73,255,233,179,0,60,48,116,8,254,196,60,32, +117,2,180,3,134,224,80,42,228,205,16,88,80,187,0,176, +235,36,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,233,150,21,186,184,3,185,0,8,176,1,128,252, +48,116,9,183,184,186,216,3,181,32,254,200,238,129,62,114, +4,52,18,142,195,116,7,142,219,232,227,9,117,51,88,80, +180,0,205,16,184,32,112,43,255,185,40,0,243,171,88,80, +128,252,48,186,186,3,116,3,186,218,3,180,8,43,201,236, +34,196,117,4,226,249,235,9,43,201,236,34,196,116,17,226, +249,31,30,198,6,21,0,6,186,2,1,232,119,22,235,6, +177,3,210,236,117,215,88,180,0,205,16,186,0,192,142,218, +43,219,139,7,83,91,61,85,170,117,5,232,210,21,235,4, +129,194,128,0,129,250,0,200,124,228,31,198,6,21,4,5, +176,0,230,33,228,33,10,192,117,27,176,255,230,33,228,33, +4,1,117,17,162,107,4,251,43,201,226,254,226,254,128,62, +107,4,0,116,8,190,204,248,232,235,21,250,244,198,6,21, +4,2,176,254,230,33,176,16,230,67,185,22,0,138,193,230, +64,246,6,107,4,1,117,4,226,247,235,217,177,12,176,255, +230,64,198,6,107,4,0,176,254,230,33,246,6,107,4,1, +117,195,226,247,176,255,230,33,176,54,230,67,176,0,230,64, +230,64,176,153,230,99,160,16,4,36,1,116,48,128,62,18, +4,1,116,41,232,252,21,227,30,176,73,230,97,128,251,170, +117,21,176,200,230,97,176,72,230,97,43,201,226,254,228,96, +60,0,116,9,232,81,21,190,138,233,232,105,21,30,43,192, +142,192,185,8,0,14,31,190,243,254,191,32,0,165,71,71, +226,251,31,199,6,8,0,195,226,199,6,20,0,84,255,199, +6,98,0,0,246,199,6,126,0,0,0,128,62,18,4,1, +117,10,199,6,112,0,9,249,176,254,230,33,186,16,2,184, +85,85,238,176,1,236,58,196,117,67,247,208,238,176,1,236, +58,196,117,57,187,1,0,186,21,2,185,16,0,46,136,7, +144,236,58,199,117,33,66,236,58,195,117,27,74,209,227,226, +236,185,8,0,176,1,74,138,224,238,176,1,236,58,196,117, +6,208,224,226,242,235,6,190,220,248,232,217,20,232,114,21, +30,129,62,114,0,52,18,117,3,233,158,0,184,64,0,235, +40,139,30,19,0,131,235,64,177,4,211,235,139,203,187,0, +16,142,219,142,195,129,195,0,4,82,81,83,80,185,0,32, +232,252,7,117,76,88,5,16,0,80,187,10,0,185,3,0, +51,210,247,243,128,202,48,82,226,246,185,3,0,88,232,120, +20,226,250,185,7,0,190,26,224,46,138,4,70,232,105,20, +226,247,88,61,64,0,116,169,91,89,90,226,180,176,10,232, +87,20,228,8,36,1,117,50,31,198,6,21,0,3,233,100, +254,138,232,176,13,232,65,20,176,10,232,60,20,88,131,196, +6,140,218,31,30,163,19,0,136,54,21,0,232,123,7,138, +197,232,20,20,190,209,248,232,44,20,186,0,200,142,218,43, +219,139,7,83,91,61,85,170,117,6,232,195,19,235,5,144, +129,194,128,0,129,250,0,240,124,227,31,160,16,0,36,1, +116,94,186,241,3,236,144,187,255,255,36,248,128,38,143,0, +254,60,80,117,5,128,14,143,0,1,228,33,36,191,230,33, +180,0,138,212,205,19,246,196,255,117,25,186,242,3,176,28, +238,43,201,226,254,226,254,51,210,181,34,136,22,62,0,232, +178,36,115,5,190,144,233,235,2,51,246,176,12,186,242,3, +238,232,23,38,114,4,11,246,116,6,190,144,233,232,166,19, +198,6,107,0,0,190,30,0,137,54,26,0,137,54,28,0, +137,54,128,0,131,198,32,137,54,130,0,191,120,0,30,7, +184,20,20,171,171,184,1,1,171,171,228,33,36,252,230,33, +131,253,0,116,24,186,2,0,232,154,19,190,105,231,232,134, +19,180,0,205,22,128,252,59,117,247,235,14,144,128,62,18, +0,1,116,6,186,1,0,232,123,19,160,16,0,36,1,117, +3,233,39,250,42,228,160,73,0,205,16,189,112,249,190,0, +0,46,139,86,0,176,170,238,30,236,31,60,170,117,5,137, +84,8,70,70,69,69,129,253,118,249,117,229,187,0,0,186, +250,3,236,168,248,117,6,199,7,248,3,67,67,186,250,2, +236,168,248,117,6,199,7,248,2,67,67,139,198,177,3,210, +200,10,195,162,17,0,186,1,2,236,144,144,144,168,15,117, +5,128,14,17,0,16,228,97,12,48,230,97,36,207,230,97, +176,128,230,160,205,25,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,251,43,192,142,216,199,6,120,0,199,239,140,14,122, +0,185,4,0,81,180,0,205,19,114,15,184,1,2,43,210, +142,194,187,0,124,185,1,0,205,19,89,115,4,226,229,205, +24,234,0,124,0,0,204,204,204,23,4,0,3,128,1,192, +0,96,0,48,0,24,0,12,0,233,8,44,8,0,251,0, +1,80,0,0,0,0,82,80,140,218,38,136,54,21,0,129, +250,0,200,124,12,232,98,5,190,215,248,232,24,18,88,90, +195,186,2,1,232,62,18,235,245,69,82,82,79,82,46,32, +40,82,69,83,85,77,69,32,61,32,34,70,49,34,32,75, +69,89,41,13,10,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,233,38, +36,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,233,238,35,32,51,48,49,13,10, +54,48,49,13,10,251,128,252,12,245,114,23,30,232,114,16, +86,138,196,152,3,192,139,240,250,46,255,148,182,233,251,180, +0,94,31,202,2,0,206,233,223,233,237,233,237,233,237,233, +237,233,237,233,237,233,237,233,237,233,239,233,244,233,160,112, +0,198,6,112,0,0,139,14,110,0,139,22,108,0,195,137, +22,108,0,137,14,110,0,198,6,112,0,0,195,249,195,139, +14,206,0,195,137,14,206,0,195,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,233,6,20,156,250,176,182, +230,67,144,138,193,230,66,144,138,197,230,66,228,97,138,224, +12,3,230,97,157,185,11,4,232,37,0,254,203,117,246,156, +250,228,97,12,252,34,224,138,196,36,252,230,97,157,185,11, +4,232,12,0,156,250,228,97,36,3,10,196,230,97,157,195, +80,209,233,227,19,230,12,156,250,228,0,36,254,58,224,138, +224,228,0,116,244,157,226,239,88,195,138,198,232,153,12,138, +194,232,148,12,176,48,232,160,12,176,32,232,155,12,195,139, +217,252,43,255,43,192,136,5,138,5,50,196,117,121,254,196, +138,196,117,242,184,170,85,139,208,243,171,228,97,12,48,230, +97,144,36,207,230,97,79,79,253,139,247,139,203,173,51,194, +117,87,184,85,170,171,226,245,252,71,71,139,247,139,203,139, +208,173,51,194,117,67,184,255,255,171,226,245,79,79,253,139, +247,139,203,139,208,173,51,194,117,47,184,1,1,171,226,245, +252,71,71,139,247,139,203,139,208,173,51,194,117,27,171,226, +248,79,79,253,139,247,139,203,139,208,173,51,194,117,10,226, +249,228,98,36,192,176,0,252,195,60,0,117,250,138,196,235, +246,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,233,106,28,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,223,2,37,2,9,42,255, +80,246,15,8,39,128,223,2,37,2,9,42,255,80,246,15, +8,39,64,223,2,37,2,15,27,255,84,246,15,8,79,0, +223,2,37,2,9,42,255,80,246,15,8,79,128,223,2,37, +2,9,42,255,80,246,15,8,79,128,175,2,37,2,18,27, +255,108,246,15,8,79,0,207,2,37,2,8,42,255,80,246, +25,4,233,233,34,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,133,20,108,21,141,21,181,21,171,27,204, +21,53,22,211,22,37,23,130,23,180,23,238,21,118,24,101, +24,36,27,20,22,233,230,35,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,56,40,45,10,31,6,25,28,2,7,6,7, +0,0,0,0,113,80,90,10,31,6,25,28,2,7,6,7, +0,0,0,0,56,40,45,10,127,6,100,112,2,1,6,7, +0,0,0,0,97,80,82,15,25,6,25,25,2,13,11,12, +0,0,0,0,0,8,0,16,0,64,0,64,40,40,80,80, +40,40,80,80,44,40,45,41,42,46,30,41,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,251,30,232,204,1,161,19,0,31,207,204,204,251,30,232, +192,1,161,16,0,31,207,204,204,233,243,35,80,228,98,168, +192,117,3,235,88,144,186,64,0,142,218,190,226,248,168,64, +117,3,190,242,248,180,0,160,73,0,205,16,232,24,1,176, +0,230,160,228,97,12,48,230,97,36,207,230,97,139,30,19, +0,252,43,210,142,218,142,194,185,0,64,43,246,243,172,228, +98,36,192,117,17,129,194,0,4,131,235,16,117,230,190,2, +249,232,227,0,250,244,140,218,232,255,243,250,244,88,207,185, +0,0,50,192,2,7,67,226,251,10,192,195,49,48,49,13, +10,32,50,48,49,13,10,82,79,77,13,10,49,56,48,49, +13,10,80,65,82,73,84,89,32,67,72,69,67,75,32,50, +13,10,80,65,82,73,84,89,32,67,72,69,67,75,32,49, +13,10,63,63,63,63,63,13,10,251,80,228,97,138,224,246, +208,36,64,128,228,191,10,196,230,97,176,32,230,32,88,207, +184,64,0,142,192,42,228,138,71,2,177,9,211,224,139,200, +81,185,4,0,211,232,3,208,89,232,134,255,116,6,232,5, +238,235,20,144,82,38,199,6,103,0,3,0,38,140,30,105, +0,38,255,30,103,0,90,195,80,177,4,210,232,232,3,0, +88,36,15,4,144,39,20,64,39,180,14,183,0,205,16,195, +188,3,120,3,120,2,139,238,232,28,0,30,232,147,0,160, +16,0,36,1,117,15,250,176,137,230,99,176,133,230,97,160, +21,0,230,96,244,31,195,46,138,4,70,80,232,202,255,88, +60,10,117,243,195,156,250,10,246,116,30,179,112,185,0,5, +232,169,242,185,51,194,232,231,242,254,206,117,238,30,232,81, +0,128,62,18,0,1,31,116,189,179,18,185,184,4,232,139, +242,185,120,129,232,201,242,254,202,117,238,185,120,129,232,191, +242,157,195,176,8,230,97,185,86,41,226,254,176,200,230,97, +176,72,230,97,176,253,230,33,198,6,107,4,0,251,43,201, +246,6,107,4,2,117,2,226,247,228,96,138,216,176,200,230, +97,195,46,142,30,24,250,195,64,0,251,30,80,82,184,64, +0,142,216,255,6,108,0,117,4,255,6,110,0,131,62,110, +0,24,117,25,129,62,108,0,176,0,117,17,43,192,163,110, +0,163,108,0,198,6,112,0,1,255,6,206,0,254,14,64, +0,117,11,128,38,63,0,240,176,12,186,242,3,238,205,28, +250,176,32,230,32,90,88,31,207,204,204,204,204,204,0,0, +0,0,0,0,0,0,126,129,165,129,189,153,129,126,126,255, +219,255,195,231,255,126,108,254,254,254,124,56,16,0,16,56, +124,254,124,56,16,0,56,124,56,254,254,124,56,124,16,16, +56,124,254,124,56,124,0,0,24,60,60,24,0,0,255,255, +231,195,195,231,255,255,0,60,102,66,66,102,60,0,255,195, +153,189,189,153,195,255,15,7,15,125,204,204,204,120,60,102, +102,102,60,24,126,24,63,51,63,48,48,112,240,224,127,99, +127,99,99,103,230,192,153,90,60,231,231,60,90,153,128,224, +248,254,248,224,128,0,2,14,62,254,62,14,2,0,24,60, +126,24,24,126,60,24,102,102,102,102,102,0,102,0,127,219, +219,123,27,27,27,0,62,99,56,108,108,56,204,120,0,0, +0,0,126,126,126,0,24,60,126,24,126,60,24,255,24,60, +126,24,24,24,24,0,24,24,24,24,126,60,24,0,0,24, +12,254,12,24,0,0,0,48,96,254,96,48,0,0,0,0, +192,192,192,254,0,0,0,36,102,255,102,36,0,0,0,24, +60,126,255,255,0,0,0,255,255,126,60,24,0,0,0,0, +0,0,0,0,0,0,48,120,120,48,48,0,48,0,108,108, +108,0,0,0,0,0,108,108,254,108,254,108,108,0,48,124, +192,120,12,248,48,0,0,198,204,24,48,102,198,0,56,108, +56,118,220,204,118,0,96,96,192,0,0,0,0,0,24,48, +96,96,96,48,24,0,96,48,24,24,24,48,96,0,0,102, +60,255,60,102,0,0,0,48,48,252,48,48,0,0,0,0, +0,0,0,48,48,96,0,0,0,252,0,0,0,0,0,0, +0,0,0,48,48,0,6,12,24,48,96,192,128,0,124,198, +206,222,246,230,124,0,48,112,48,48,48,48,252,0,120,204, +12,56,96,204,252,0,120,204,12,56,12,204,120,0,28,60, +108,204,254,12,30,0,252,192,248,12,12,204,120,0,56,96, +192,248,204,204,120,0,252,204,12,24,48,48,48,0,120,204, +204,120,204,204,120,0,120,204,204,124,12,24,112,0,0,48, +48,0,0,48,48,0,0,48,48,0,0,48,48,96,24,48, +96,192,96,48,24,0,0,0,252,0,0,252,0,0,96,48, +24,12,24,48,96,0,120,204,12,24,48,0,48,0,124,198, +222,222,222,192,120,0,48,120,204,204,252,204,204,0,252,102, +102,124,102,102,252,0,60,102,192,192,192,102,60,0,248,108, +102,102,102,108,248,0,254,98,104,120,104,98,254,0,254,98, +104,120,104,96,240,0,60,102,192,192,206,102,62,0,204,204, +204,252,204,204,204,0,120,48,48,48,48,48,120,0,30,12, +12,12,204,204,120,0,230,102,108,120,108,102,230,0,240,96, +96,96,98,102,254,0,198,238,254,254,214,198,198,0,198,230, +246,222,206,198,198,0,56,108,198,198,198,108,56,0,252,102, +102,124,96,96,240,0,120,204,204,204,220,120,28,0,252,102, +102,124,108,102,230,0,120,204,224,112,28,204,120,0,252,180, +48,48,48,48,120,0,204,204,204,204,204,204,252,0,204,204, +204,204,204,120,48,0,198,198,198,214,254,238,198,0,198,198, +108,56,56,108,198,0,204,204,204,120,48,48,120,0,254,198, +140,24,50,102,254,0,120,96,96,96,96,96,120,0,192,96, +48,24,12,6,2,0,120,24,24,24,24,24,120,0,16,56, +108,198,0,0,0,0,0,0,0,0,0,0,0,255,48,48, +24,0,0,0,0,0,0,0,120,12,124,204,118,0,224,96, +96,124,102,102,220,0,0,0,120,204,192,204,120,0,28,12, +12,124,204,204,118,0,0,0,120,204,252,192,120,0,56,108, +96,240,96,96,240,0,0,0,118,204,204,124,12,248,224,96, +108,118,102,102,230,0,48,0,112,48,48,48,120,0,12,0, +12,12,12,204,204,120,224,96,102,108,120,108,230,0,112,48, +48,48,48,48,120,0,0,0,204,254,254,214,198,0,0,0, +248,204,204,204,204,0,0,0,120,204,204,204,120,0,0,0, +220,102,102,124,96,240,0,0,118,204,204,124,12,30,0,0, +220,118,102,96,240,0,0,0,124,192,120,12,248,0,16,48, +124,48,48,52,24,0,0,0,204,204,204,204,118,0,0,0, +204,204,204,120,48,0,0,0,198,214,254,254,108,0,0,0, +198,108,56,108,198,0,0,0,204,204,204,124,12,248,0,0, +252,152,48,100,252,0,28,48,48,224,48,48,28,0,24,24, +24,0,24,24,24,0,224,48,48,28,48,48,224,0,118,220, +0,0,0,0,0,0,0,16,56,108,198,198,254,0,233,36, +235,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,233,114,251,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204, +204,204,204,165,254,135,233,35,255,35,255,35,255,35,255,87, +239,35,255,101,240,77,248,65,248,89,236,57,231,89,248,46, +232,210,239,0,0,242,230,110,254,73,255,73,255,164,240,199, +239,0,0,30,232,235,250,80,176,11,230,32,144,228,32,138, +224,10,196,117,4,180,255,235,10,228,33,10,196,230,33,176, +32,230,32,136,38,107,0,88,31,207,204,204,204,204,204,204, +204,204,204,207,30,232,186,250,128,62,0,1,1,116,124,198, +6,0,1,1,251,80,83,81,82,180,15,205,16,138,204,138, +46,132,0,254,197,51,210,180,2,205,23,128,244,128,246,196, +160,117,78,232,87,0,81,180,3,205,16,89,82,51,210,180, +2,205,16,180,8,205,16,10,192,117,2,176,32,82,51,210, +50,228,205,23,90,246,196,41,117,34,254,194,58,202,117,223, +50,210,138,226,82,232,37,0,90,254,198,58,238,117,208,90, +180,2,205,16,250,198,6,0,1,0,235,11,90,180,2,205, +16,250,198,6,0,1,255,90,89,91,88,31,207,51,210,184, +13,0,205,23,184,10,0,205,23,195,204,204,204,204,204,204, +234,91,224,0,240,48,49,47,49,48,47,56,54,204,251,163] +} \ No newline at end of file diff --git a/devices/pc/rom/5160/1986-01-10/XTBIOS-REV2.rom b/devices/pc/rom/5160/1986-01-10/XTBIOS-REV2.rom new file mode 100644 index 000000000..d9d1619be Binary files /dev/null and b/devices/pc/rom/5160/1986-01-10/XTBIOS-REV2.rom differ diff --git a/devices/pc/rom/README.md b/devices/pc/rom/README.md index 1447190db..e714eb004 100644 --- a/devices/pc/rom/README.md +++ b/devices/pc/rom/README.md @@ -16,20 +16,49 @@ for each ROM in the machine; eg: ### BASIC ROMs -The project contains the following IBM PC BASIC ROMs: +The project contains the following [IBM PC BASIC ROMs](/devices/pc/rom/5150/basic/): - * [IBM BASIC 1.00](5150/basic/BASIC100.json) - * [IBM BASIC 1.10](5160/basic/BASIC110.json) + * [IBM BASIC C1.00](5150/basic/BASIC100.json) + * [IBM BASIC C1.10](5160/basic/BASIC110.json) + +We informally refer to version C1.00 as the Model 5150 version, and C1.10 as the Model 5160 (and later) version of +Cassette BASIC. It's true that the last few Model 5150 machines produced were upgraded with version C1.10, but we +are simply referring to the respective model with which each version of Cassette BASIC was *introduced*. ### BIOS ROMs The project contains the following IBM PC BIOS ROMs: - * [Model 5150: Apr 24, 1981](5150/1981-04-24/PCBIOS-REV1.json) - * [Model 5150: Oct 19, 1981](5150/1981-10-19/PCBIOS-REV2.json) - * [Model 5150: Oct 27, 1982](5150/1982-10-27/PCBIOS-REV3.json) - * [Model 5160: Nov 08, 1982](5160/1982-11-08/XTBIOS-REV1.json) - * [Model 5160: May 09, 1986](5160/1986-05-09/XTBIOS-REV3.json) + * [Model 5150: Apr 24, 1981](5150/1981-04-24/PCBIOS-REV1.json) (included with [IBM BASIC C1.00](5150/basic/BASIC100.json)) + * [Model 5150: Oct 19, 1981](5150/1981-10-19/PCBIOS-REV2.json) (included with [IBM BASIC C1.00](5150/basic/BASIC100.json)) + * [Model 5150: Oct 27, 1982](5150/1982-10-27/PCBIOS-REV3.json) (included with [IBM BASIC C1.00](5150/basic/BASIC100.json) *or* [IBM BASIC C1.10](5160/basic/BASIC110.json)) + * [Model 5160: Nov 08, 1982](5160/1982-11-08/XTBIOS-REV1.json) (included with [IBM BASIC C1.10](5160/basic/BASIC110.json)) + * [Model 5160: Jan 10, 1986](5160/1986-01-10/XTBIOS-REV2.json) (includes [IBM BASIC C1.10](5160/basic/BASIC110.json)) + * [Model 5160: May 09, 1986](5160/1986-05-09/XTBIOS-REV3.json) (includes [IBM BASIC C1.10](5160/basic/BASIC110.json)) + +As hinted above, some newer Model 5150 machines with the **Oct 27, 1982** BIOS included IBM BASIC C1.10. And +some even *newer* 5150 machines had a BIOS with a "1982" copyright year instead of "1981", which also changed the checksum +byte from 0x78 to 0x77. However, the project includes only the original "1981" version, since the difference was trivial. + +In general, IBM BASIC ROM images are 32Kb and IBM BIOS ROM images are 8Kb, and together they provide 40Kb of contiguous +read-only memory, with the BASIC ROM spanning physical addresses 0xF6000-0xFDFFF and the BIOS ROM spanning addresses +0xFE000-0xFFFFF. + +However, starting with Model 5160 ROM images dated **Jan 10, 1986**, our ROM images are actually 64Kb images that +span addresses 0xF0000-0xFFFFF and include IBM BASIC C1.10 at offset 0x6000 (physical address 0xF6000), so there's no +need to load the BASIC ROM separately. That trend continued with the IBM PC AT Model 5170, whose ROM images are also +64Kb and all contain IBM BASIC C1.10. + +Apparently, even the first Model 5160 was socketed for two 32Kb ROMs, but it came with an 8Kb ROM in the first socket, +so that ROM (containing the first 8Kb of IBM BASIC C1.10) appeared at multiple addresses: 0xF0000, 0xF2000, 0xF4000, +and 0xF6000. None of our Model 5160 machine configurations emulate that layout, but it could easily be done, +by extracting the first 8Kb of IBM BASIC C1.10 into a separate image and explicitly mapping it at each of those four +addresses. + +See this [diagram](http://www.minuszerodegrees.net/5160/misc/5160_memory_layout_of_bios_and_basic.jpg) for a more +visual description of the Model 5160's ROM layout. + +--- The project also contains BIOS ROMs, along with more detailed information, for the following machines: diff --git a/devices/pc8080/machine/invaders/README.md b/devices/pc8080/machine/invaders/README.md new file mode 100644 index 000000000..4415cce63 --- /dev/null +++ b/devices/pc8080/machine/invaders/README.md @@ -0,0 +1,28 @@ +--- +layout: page +title: Space Invaders (Under Construction) +permalink: /devices/pc8080/machine/invaders/ +machines: + - type: pc8080 + id: invaders + debugger: true +--- + +Space Invaders (Under Construction) +--- + +This is a test of [PC8080](/modules/pc8080/), a new 8080-based machine emulator recently added to the +PCjs Project. It's a work-in-progress, so there's not much to look at yet. And the goal is not to build +yet-another Space Invaders/Arcade Machine emulator -- that's been done many times over -- but to start with +a well-understood 8080-based machine architecture that doesn't need a lot of peripherals, and use it as an +early test case for another classic CPU that we can add to the PCjs toolbox. + +Assorted [Space Invaders Hardware Notes](#space-invaders-hardware-notes) are collected below. + +{% include machine.html id="invaders" %} + +Space Invaders Hardware Notes +--- + +See [Computer Archeology](http://www.computerarcheology.com/Arcade/SpaceInvaders/) for an excellent collection +of materials on the original Space Invaders, including commented ROM disassemblies. diff --git a/devices/pc8080/machine/invaders/machine.xml b/devices/pc8080/machine/invaders/machine.xml new file mode 100644 index 000000000..2a511465d --- /dev/null +++ b/devices/pc8080/machine/invaders/machine.xml @@ -0,0 +1,19 @@ + + + + Space Invaders + + + + + + + + + + + diff --git a/devices/pc8080/machine/test/README.md b/devices/pc8080/machine/test/README.md new file mode 100644 index 000000000..03489fb4d --- /dev/null +++ b/devices/pc8080/machine/test/README.md @@ -0,0 +1,48 @@ +--- +layout: page +title: 8080 Test Machine +permalink: /devices/pc8080/machine/test/ +machines: + - type: pc8080 + id: test8080 + debugger: true +--- + +8080 Test Machine +--- + +This is a test of [PC8080](/modules/pc8080/), a new 8080-based machine emulator being added to the +PCjs Project. + +The test machine below loads a copy of the +[8080 Exerciser](https://web.archive.org/web/20151006085348/http://www.idb.me.uk/sunhillow/8080.html) +(specifically, [8080EX1](/devices/pc8080/rom/test/8080EX1.MAC)) and intercepts the exerciser's CP/M console +calls so that you can see its progress in the Control Panel window. This is a "headless" test machine +(no keyboard or display), so that's all you get. + +The good news: PC8080 passes all the 8080 Exerciser tests. And it doesn't do it by using all sorts of weird +"flags tables", which most other 8080 emulations seem to fall back on. + +Like all the other CPU emulations in the PCjs Project, PC8080 never "calculates" the flags unless/until they are +actually required, which considerably speeds up all arithmetic operations. + +Of particular note are the 8080's subtract, +compare, and decrement operations, which actually perform addition, not subtraction, by using two's complement +arithmetic in "stages": the first stage (inverting the source operand) occurs *before* the addition, and the second +stage (incrementing the inverted operand) occurs *after* the addition. And it appears to be the result of the *first* +stage, not the second, that determines the state of the Auxiliary Carry flag (AF). + +At 2Mhz, the 8080 Exerciser tests take quite a while, but you can click the speed button while the machine is running +to increase the simulated speed; it will revert to 2Mhz when you exceed the maximum speed that your system supports. + +NOTE: The original [8080 Exerciser website](http://www.idb.me.uk/sunhillow/8080.html) is currently unavailable, +so we refer you to the copy on +[archive.org](https://web.archive.org/web/20151006085348/http://www.idb.me.uk/sunhillow/8080.html). +The 8080 Exerciser source code has also been "forked" on [GitHub](https://github.com/begoon/8080ex1). + +{% include machine.html id="test8080" %} + +8080 Online Resources +--- + +[8080 Opcode Map](http://pastraiser.com/cpu/i8080/i8080_opcodes.html) diff --git a/devices/pc8080/machine/test/machine.xml b/devices/pc8080/machine/test/machine.xml new file mode 100644 index 000000000..fa92ba6f6 --- /dev/null +++ b/devices/pc8080/machine/test/machine.xml @@ -0,0 +1,11 @@ + + + + 8080 Test Machine + + + + + + + diff --git a/devices/pc8080/panel/left.xml b/devices/pc8080/panel/left.xml new file mode 100644 index 000000000..b8126d511 --- /dev/null +++ b/devices/pc8080/panel/left.xml @@ -0,0 +1,35 @@ + + + Control Panel + + + + + 00 + 0000 + 0000 + 0000 + 0000 + 0000 + + 0 + 0 + 0 + 0 + 0 + 0 + + Speed: + Stopped + + + Run + Step + Reset + Fast + + + Enter + Clear + + diff --git a/devices/pc8080/panel/wide.xml b/devices/pc8080/panel/wide.xml new file mode 100644 index 000000000..f4ec9675e --- /dev/null +++ b/devices/pc8080/panel/wide.xml @@ -0,0 +1,35 @@ + + + Control Panel + + + + + 00 + 0000 + 0000 + 0000 + 0000 + 0000 + + 0 + 0 + 0 + 0 + 0 + 0 + + Speed: + Stopped + + + Run + Step + Reset + Fast + + + Enter + Clear + + diff --git a/devices/pc8080/rom/invaders/INVADERS-E.json b/devices/pc8080/rom/invaders/INVADERS-E.json new file mode 100644 index 000000000..1352517dd --- /dev/null +++ b/devices/pc8080/rom/invaders/INVADERS-E.json @@ -0,0 +1,130 @@ +{"bytes":[ +32,195,201,22,33,132,32,126,167,202,7,7,35,126,167,192, +6,1,195,250,24,33,16,40,17,163,28,14,21,205,243,8, +62,10,50,108,32,1,190,29,205,86,24,218,55,24,205,68, +24,195,40,24,205,177,10,1,207,29,205,86,24,216,205,76, +24,195,58,24,197,6,16,205,57,20,193,201,197,58,108,32, +79,205,147,10,193,201,10,254,255,55,200,111,3,10,103,3, +10,95,3,10,87,3,167,201,33,194,32,52,35,78,205,217, +1,71,58,202,32,184,202,152,24,58,194,32,230,4,42,204, +32,194,136,24,17,48,0,25,34,199,32,33,197,32,205,59, +26,235,195,211,21,0,0,0,62,1,50,203,32,201,33,80, +32,17,192,27,6,16,205,50,26,62,2,50,128,32,62,255, +50,126,32,62,4,50,193,32,58,85,32,230,1,202,184,24, +58,85,32,230,1,194,192,24,33,17,51,62,38,0,205,255, +8,195,182,10,49,0,36,6,0,205,230,1,205,86,25,62, +8,50,207,32,195,234,10,58,103,32,33,231,32,15,208,35, +201,6,2,58,130,32,61,192,4,201,58,148,32,176,50,148, +32,211,3,201,33,0,34,195,195,1,205,216,20,195,151,21, +33,231,32,58,103,32,15,216,35,201,14,28,33,30,36,17, +228,26,195,243,8,33,248,32,195,49,25,33,252,32,195,49, +25,94,35,86,35,126,35,102,111,195,173,9,14,7,33,1, +53,17,169,31,195,243,8,58,235,32,33,1,60,195,178,9, +33,244,32,195,49,25,205,92,26,205,26,25,205,37,25,205, +43,25,205,80,25,205,60,25,195,71,25,205,220,25,195,113, +22,62,1,50,109,32,195,230,22,205,215,25,205,71,25,195, +60,25,50,193,32,201,139,25,195,214,9,33,3,40,17,190, +25,14,19,195,243,8,0,0,0,0,58,30,32,167,194,172, +25,219,1,230,118,214,114,192,60,50,30,32,219,1,230,118, +254,52,192,33,27,46,17,247,11,14,9,195,243,8,40,19, +0,8,19,14,38,2,14,17,15,14,17,0,19,8,14,13, +40,62,1,50,233,32,201,175,195,211,25,0,58,148,32,160, +50,148,32,211,3,201,33,1,39,202,250,25,17,96,28,6, +16,79,205,57,20,121,61,194,236,25,6,16,205,203,20,124, +254,53,194,250,25,201,33,114,32,70,26,230,128,168,192,55, +201,50,43,36,28,22,17,13,10,8,7,6,5,4,3,2, +1,52,46,39,34,28,24,21,19,16,14,13,12,11,9,7, +5,255,26,119,35,19,5,194,50,26,201,94,35,86,35,126, +35,78,35,70,97,111,201,197,6,3,124,31,103,125,31,111, +5,194,74,26,124,230,63,246,32,103,193,201,33,0,36,54, +0,35,124,254,64,194,95,26,201,197,229,26,182,119,19,35, +13,194,107,26,225,1,32,0,9,193,5,194,105,26,201,205, +46,9,167,200,245,61,119,205,230,25,241,33,1,37,230,15, +195,197,9,0,0,0,0,255,184,254,32,28,16,158,0,32, +28,48,16,11,8,7,6,0,12,4,38,14,21,4,17,38, +38,15,11,0,24,4,17,36,38,37,27,38,14,17,38,28, +15,11,0,24,4,17,18,38,1,20,19,19,14,13,38,14, +13,11,24,38,27,15,11,0,24,4,17,38,38,1,20,19, +19,14,13,38,38,18,2,14,17,4,36,27,37,38,7,8, +63,18,2,14,17,4,38,18,2,14,17,4,36,28,37,38, +1,0,0,16,0,0,0,0,2,120,56,120,56,0,248,0, +0,128,0,142,2,255,5,12,96,28,32,48,16,1,0,0, +0,0,0,187,3,0,16,144,28,40,48,1,4,0,255,255, +0,0,2,118,4,0,0,0,0,0,4,238,28,0,0,3, +0,0,0,182,4,0,0,1,0,29,4,226,28,0,0,3, +0,0,0,130,6,0,0,1,6,29,4,208,28,0,0,3, +255,0,192,28,0,0,16,33,1,0,48,0,18,0,0,0, +15,11,0,24,38,15,11,0,24,4,17,36,27,37,252,0, +1,255,255,0,0,0,32,100,29,208,41,24,2,84,29,0, +8,0,6,0,0,1,64,0,1,0,0,16,158,0,32,28, +0,3,4,120,20,19,8,26,61,104,252,252,104,61,26,0, +0,0,1,184,152,160,27,16,255,0,160,27,0,0,0,0, +0,16,0,14,5,0,0,0,0,0,7,208,28,200,155,3, +0,0,3,4,120,20,11,25,58,109,250,250,109,58,25,0, +0,0,0,0,0,0,0,0,0,1,0,0,1,116,31,0, +128,0,0,0,0,0,28,47,0,0,28,39,0,0,28,57, +0,0,57,121,122,110,236,250,250,236,110,122,121,57,0,0, +0,0,0,120,29,190,108,60,60,60,108,190,29,120,0,0, +0,0,0,0,25,58,109,250,250,109,58,25,0,0,0,0, +0,0,56,122,127,109,236,250,250,236,109,127,122,56,0,0, +0,0,0,14,24,190,109,61,60,61,109,190,24,14,0,0, +0,0,0,0,26,61,104,252,252,104,61,26,0,0,0,0, +0,0,15,31,31,31,31,127,255,127,31,31,31,31,15,0, +0,4,1,19,3,7,179,15,47,3,47,73,4,3,0,1, +64,8,5,163,10,3,91,15,39,39,11,75,64,132,17,72, +15,153,60,126,61,188,62,124,153,39,27,26,38,15,14,8, +13,19,18,40,18,2,14,17,4,38,0,3,21,0,13,2, +4,38,19,0,1,11,4,40,2,16,32,48,19,8,11,19, +0,8,73,34,20,129,66,0,66,129,20,34,73,8,0,0, +68,170,16,136,84,34,16,170,68,34,84,136,74,21,190,63, +94,37,4,252,4,16,252,16,32,252,32,128,252,128,0,254, +0,36,254,18,0,254,0,72,254,144,15,11,0,41,0,0, +1,7,1,1,1,4,11,1,6,3,1,1,11,9,2,8, +2,11,4,7,10,5,2,5,4,6,7,8,10,6,10,3, +255,15,255,31,255,63,255,127,255,255,252,255,248,255,240,255, +240,255,240,255,240,255,240,255,240,255,240,255,248,255,252,255, +255,255,255,255,255,127,255,63,255,31,255,15,5,16,21,48, +148,151,154,157,16,5,5,16,21,16,16,5,48,16,16,16, +5,21,16,5,0,0,0,0,4,12,30,55,62,124,116,126, +126,116,124,62,55,30,12,4,0,0,0,0,0,34,0,165, +64,8,152,61,182,60,54,29,16,72,98,182,29,152,8,66, +144,8,0,0,38,31,26,27,26,26,27,31,26,29,26,26, +16,32,48,96,80,72,72,72,64,64,64,15,11,0,24,18, +15,0,2,4,38,38,8,13,21,0,3,4,17,18,14,44, +104,29,12,44,32,28,10,44,64,28,8,44,0,28,255,14, +46,224,29,12,46,234,29,10,46,244,29,8,46,153,28,255, +39,56,38,12,24,18,19,4,17,24,39,29,26,38,15,14, +8,13,19,18,39,28,26,38,15,14,8,13,19,18,0,0, +0,31,36,68,36,31,0,0,0,127,73,73,73,54,0,0, +0,62,65,65,65,34,0,0,0,127,65,65,65,62,0,0, +0,127,73,73,73,65,0,0,0,127,72,72,72,64,0,0, +0,62,65,65,69,71,0,0,0,127,8,8,8,127,0,0, +0,0,65,127,65,0,0,0,0,2,1,1,1,126,0,0, +0,127,8,20,34,65,0,0,0,127,1,1,1,1,0,0, +0,127,32,24,32,127,0,0,0,127,16,8,4,127,0,0, +0,62,65,65,65,62,0,0,0,127,72,72,72,48,0,0, +0,62,65,69,66,61,0,0,0,127,72,76,74,49,0,0, +0,50,73,73,73,38,0,0,0,64,64,127,64,64,0,0, +0,126,1,1,1,126,0,0,0,124,2,1,2,124,0,0, +0,127,2,12,2,127,0,0,0,99,20,8,20,99,0,0, +0,96,16,15,16,96,0,0,0,67,69,73,81,97,0,0, +0,62,69,73,81,62,0,0,0,0,33,127,1,0,0,0, +0,35,69,73,73,49,0,0,0,66,65,73,89,102,0,0, +0,12,20,36,127,4,0,0,0,114,81,81,81,78,0,0, +0,30,41,73,73,70,0,0,0,64,71,72,80,96,0,0, +0,54,73,73,73,54,0,0,0,49,73,73,74,60,0,0, +0,8,20,34,65,0,0,0,0,0,65,34,20,8,0,0, +0,0,0,0,0,0,0,0,0,20,20,20,20,20,0,0, +0,34,20,127,20,34,0,0,0,3,4,120,4,3,0,0, +36,27,38,14,17,38,28,38,15,11,0,24,4,17,18,37, +38,38,40,27,38,15,11,0,24,4,17,38,38,27,38,2, +14,8,13,38,1,1,0,0,1,0,2,1,0,2,1,0, +96,16,15,16,96,48,24,26,61,104,252,252,104,61,26,0, +8,13,18,4,17,19,38,38,2,14,8,13,13,42,80,31, +10,42,98,31,7,42,225,31,255,2,17,4,3,8,19,38, +0,96,16,15,16,96,56,25,58,109,250,250,109,58,25,0, +0,32,64,77,80,32,0,0,0,0,0,255,184,255,128,31, +16,151,0,128,31,0,0,1,208,34,32,28,16,148,0,32, +28,40,28,38,15,11,0,24,4,17,18,38,28,38,2,14, +8,13,18,15,20,18,7,38,0,8,8,8,8,8,0,0] +} \ No newline at end of file diff --git a/devices/pc8080/rom/invaders/INVADERS-F.json b/devices/pc8080/rom/invaders/INVADERS-F.json new file mode 100644 index 000000000..18fd3f287 --- /dev/null +++ b/devices/pc8080/rom/invaders/INVADERS-F.json @@ -0,0 +1,130 @@ +{"bytes":[ +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,205,116,20,0,197,229,26,211,4,219,3,182,119,35,19, +175,211,4,219,3,182,119,225,1,32,0,9,193,5,194,5, +20,201,0,0,205,116,20,197,229,175,119,35,119,35,225,1, +32,0,9,193,5,194,39,20,201,197,26,119,19,1,32,0, +9,193,5,194,57,20,201,0,0,0,0,0,0,0,0,0, +0,0,205,116,20,197,229,26,211,4,219,3,47,166,119,35, +19,175,211,4,219,3,47,166,119,225,1,32,0,9,193,5, +194,85,20,201,125,230,7,211,2,195,71,26,197,229,126,18, +19,35,13,194,126,20,225,1,32,0,9,193,5,194,124,20, +201,205,116,20,175,50,97,32,197,229,26,211,4,219,3,245, +166,202,169,20,62,1,50,97,32,241,182,119,35,19,175,211, +4,219,3,245,166,202,189,20,62,1,50,97,32,241,182,119, +225,1,32,0,9,193,5,194,152,20,201,175,197,119,1,32, +0,9,193,5,194,204,20,201,58,37,32,254,5,200,254,2, +192,58,41,32,254,216,71,210,48,21,58,2,32,167,200,120, +254,206,210,121,21,198,6,71,58,9,32,254,144,210,4,21, +184,210,48,21,104,205,98,21,58,42,32,103,205,111,21,34, +100,32,62,5,50,37,32,205,129,21,126,167,202,48,21,54, +0,205,95,10,205,59,26,205,211,21,62,16,50,3,32,201, +62,3,50,37,32,195,74,21,33,3,32,53,192,42,100,32, +6,16,205,36,20,62,4,50,37,32,175,50,2,32,6,247, +195,220,25,0,14,0,188,212,144,21,188,208,198,16,12,195, +90,21,58,9,32,101,205,84,21,65,5,222,16,111,201,58, +10,32,205,84,21,222,16,103,201,62,1,50,133,32,195,69, +21,120,7,7,7,128,128,128,129,61,111,58,103,32,103,201, +12,198,16,250,144,21,201,58,13,32,167,194,183,21,33,164, +62,205,197,21,208,6,254,62,1,50,13,32,120,50,8,32, +58,14,32,50,7,32,201,33,36,37,205,197,21,208,205,241, +24,175,195,169,21,6,23,126,167,194,107,22,35,5,194,199, +21,201,0,205,116,20,229,197,229,26,211,4,219,3,119,35, +19,175,211,4,219,3,119,225,1,32,0,9,193,5,194,215, +21,225,201,205,17,22,1,0,55,126,167,202,255,21,12,35, +5,194,249,21,121,50,130,32,254,1,192,33,107,32,54,1, +201,46,0,58,103,32,103,201,58,21,32,254,255,192,33,16, +32,126,35,70,176,192,58,37,32,167,192,58,239,32,167,202, +82,22,58,45,32,167,194,72,22,205,192,23,230,16,200,62, +1,50,37,32,50,45,32,201,205,192,23,230,16,192,50,45, +32,201,33,37,32,54,1,42,237,32,35,125,254,126,218,99, +22,46,116,34,237,32,126,50,29,32,201,55,201,175,205,139, +26,205,16,25,54,0,205,202,9,35,17,245,32,26,190,27, +43,26,202,139,22,210,152,22,195,143,22,190,210,152,22,126, +18,19,35,126,18,205,80,25,58,206,32,167,202,201,22,33, +3,40,17,166,26,14,20,205,147,10,37,37,6,27,58,103, +32,15,218,183,22,6,28,120,205,255,8,205,177,10,205,231, +24,126,167,202,201,22,195,237,2,33,24,45,17,166,26,14, +10,205,147,10,205,182,10,205,214,9,175,50,239,32,211,5, +205,209,25,195,137,11,49,0,36,251,175,50,21,32,205,216, +20,6,4,205,250,24,205,89,10,194,238,22,205,215,25,33, +1,39,205,250,25,175,205,139,26,6,251,195,107,25,205,202, +9,35,126,17,184,28,33,161,26,14,4,71,26,184,210,39, +23,35,19,13,194,28,23,126,50,207,32,201,58,37,32,254, +0,194,57,23,6,253,195,220,25,6,2,195,250,24,0,0, +33,155,32,53,204,109,23,58,104,32,167,202,109,23,33,150, +32,53,192,33,152,32,126,211,5,58,130,32,167,202,109,23, +43,126,43,119,43,54,1,62,4,50,155,32,201,58,152,32, +230,48,211,5,201,58,149,32,167,202,170,23,33,17,26,17, +33,26,58,130,32,190,210,142,23,35,19,195,133,23,26,50, +151,32,33,152,32,126,230,48,71,126,230,15,7,254,16,194, +164,23,62,1,176,119,175,50,149,32,33,153,32,53,192,6, +239,195,220,25,6,239,33,152,32,126,160,119,211,5,201,0, +58,103,32,15,210,202,23,219,1,201,219,2,201,219,2,230, +4,200,58,154,32,167,192,49,0,36,6,4,205,214,9,5, +194,220,23,62,1,50,154,32,205,215,25,251,17,188,28,33, +22,48,14,4,205,147,10,205,177,10,175,50,154,32,50,147] +} \ No newline at end of file diff --git a/devices/pc8080/rom/invaders/INVADERS-G.json b/devices/pc8080/rom/invaders/INVADERS-G.json new file mode 100644 index 000000000..71c26291e --- /dev/null +++ b/devices/pc8080/rom/invaders/INVADERS-G.json @@ -0,0 +1,130 @@ +{"bytes":[ +175,50,193,32,205,207,1,58,103,32,15,218,114,8,205,19, +2,205,207,1,205,177,0,205,209,25,6,32,205,250,24,205, +24,22,205,10,25,205,243,21,205,136,9,58,130,32,167,202, +239,9,205,14,23,205,53,9,205,216,8,205,44,23,205,89, +10,202,73,8,6,4,205,250,24,205,117,23,211,6,205,4, +24,195,31,8,0,0,0,17,186,26,205,243,8,6,152,219, +1,15,15,218,109,8,15,218,152,7,195,127,7,62,1,195, +155,7,205,26,2,195,20,8,58,8,32,71,42,9,32,235, +195,134,8,0,0,0,58,103,32,103,46,252,201,33,17,43, +17,112,27,14,14,205,243,8,58,103,32,15,62,28,33,17, +55,212,255,8,62,176,50,192,32,58,192,32,167,200,230,4, +194,188,8,205,202,9,205,49,25,195,169,8,6,32,33,28, +39,58,103,32,15,218,203,8,33,28,57,205,203,20,195,169, +8,219,2,230,3,198,3,201,58,130,32,254,9,208,62,251, +50,126,32,201,58,206,32,167,192,33,28,57,6,32,195,203, +20,14,3,26,213,205,255,8,209,19,13,194,243,8,201,17, +0,30,229,38,0,111,41,41,41,25,235,225,6,8,211,6, +195,57,20,58,9,32,254,120,208,42,145,32,125,180,194,41, +9,33,0,6,62,1,50,131,32,43,34,145,32,201,205,17, +22,46,255,126,201,205,16,25,43,43,126,167,200,6,21,219, +2,230,8,202,72,9,6,16,205,202,9,35,126,184,216,205, +46,9,52,126,245,33,1,37,36,36,61,194,88,9,6,16, +17,96,28,205,57,20,241,60,205,139,26,205,16,25,43,43, +54,0,62,255,50,153,32,6,16,195,250,24,33,160,29,254, +2,216,35,254,4,216,35,201,205,202,9,58,241,32,167,200, +175,50,241,32,229,42,242,32,235,225,126,131,39,119,95,35, +126,138,39,119,87,35,126,35,102,111,195,173,9,122,205,178, +9,123,213,245,15,15,15,15,230,15,205,197,9,241,230,15, +205,197,9,209,201,198,26,195,255,8,58,103,32,15,33,248, +32,216,33,252,32,201,33,2,36,54,0,35,125,230,31,254, +28,218,232,9,17,6,0,25,124,254,64,218,217,9,201,205, +60,10,175,50,233,32,205,214,9,58,103,32,245,205,228,1, +241,50,103,32,58,103,32,103,229,46,254,126,230,7,60,119, +33,162,29,35,61,194,19,10,126,225,46,252,119,35,54,56, +124,15,218,51,10,62,33,50,152,32,205,245,1,205,4,25, +195,4,8,205,239,1,205,192,1,195,4,8,205,89,10,194, +82,10,62,48,50,192,32,58,192,32,167,200,205,89,10,202, +71,10,205,89,10,194,82,10,201,58,21,32,254,255,201,58, +239,32,167,202,124,10,72,6,8,205,250,24,65,120,205,124, +9,126,33,243,32,54,0,43,119,43,54,1,33,98,32,201, +62,2,50,193,32,211,6,58,203,32,167,202,133,10,175,50, +193,32,201,213,26,205,255,8,209,62,7,50,192,32,58,192, +32,61,194,158,10,19,13,194,147,10,201,33,80,32,195,75, +2,62,64,195,215,10,62,128,195,215,10,225,195,114,0,58, +193,32,15,218,187,10,15,218,104,24,15,218,171,10,201,33, +20,43,14,15,195,147,10,50,192,32,58,192,32,167,194,218, +10,201,33,194,32,6,12,195,50,26,175,211,3,211,5,205, +130,25,251,205,177,10,58,236,32,167,33,23,48,14,4,194, +232,11,17,250,28,205,147,10,17,175,29,205,207,10,205,177, +10,205,21,24,205,182,10,58,236,32,167,194,74,11,17,149, +26,205,226,10,205,128,10,17,176,27,205,226,10,205,128,10, +205,177,10,17,201,31,205,226,10,205,128,10,205,177,10,33, +183,51,6,10,205,203,20,205,182,10,205,214,9,58,255,33, +167,194,93,11,205,209,8,50,255,33,205,127,26,205,228,1, +205,192,1,205,239,1,205,26,2,62,1,50,193,32,205,207, +1,205,24,22,205,241,11,211,6,205,89,10,202,113,11,175, +50,37,32,205,89,10,194,131,11,175,50,193,32,205,177,10, +205,136,25,14,12,33,17,44,17,144,31,205,243,8,58,236, +32,254,0,194,174,11,33,17,51,62,2,205,255,8,1,156, +31,205,86,24,205,76,24,219,2,7,218,195,11,1,160,31, +205,58,24,205,182,10,58,236,32,254,0,194,218,11,17,213, +31,205,226,10,205,128,10,205,158,24,33,236,32,126,60,230, +1,119,205,214,9,195,223,24,17,171,29,205,147,10,195,11, +11,205,10,25,195,154,25,19,0,8,19,14,38,2,14,15, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0] +} \ No newline at end of file diff --git a/devices/pc8080/rom/invaders/INVADERS-H.json b/devices/pc8080/rom/invaders/INVADERS-H.json new file mode 100644 index 000000000..ea669f7bd --- /dev/null +++ b/devices/pc8080/rom/invaders/INVADERS-H.json @@ -0,0 +1,130 @@ +{"bytes":[ +0,0,0,195,212,24,0,0,245,197,213,229,195,140,0,0, +245,197,213,229,62,128,50,114,32,33,192,32,53,205,205,23, +219,1,15,218,103,0,58,234,32,167,202,66,0,58,235,32, +254,153,202,62,0,198,1,39,50,235,32,205,71,25,175,50, +234,32,58,233,32,167,202,130,0,58,239,32,167,194,111,0, +58,235,32,167,194,93,0,205,191,10,195,130,0,58,147,32, +167,194,130,0,195,101,7,62,1,50,234,32,195,63,0,205, +64,23,58,50,32,50,128,32,205,0,1,205,72,2,205,19, +9,0,225,209,193,241,251,201,0,0,0,0,175,50,114,32, +58,233,32,167,202,130,0,58,239,32,167,194,165,0,58,193, +32,15,210,130,0,33,32,32,205,75,2,205,65,1,195,130, +0,205,134,8,229,126,35,102,111,34,9,32,34,11,32,225, +43,126,254,3,194,200,0,61,50,8,32,254,254,62,0,194, +211,0,60,50,13,32,201,62,2,50,251,33,50,251,34,195, +228,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +33,2,32,126,167,194,56,21,229,58,6,32,111,58,103,32, +103,126,167,225,202,54,1,35,35,126,35,70,230,254,7,7, +7,95,22,0,33,0,28,25,235,120,167,196,59,1,42,11, +32,6,16,205,211,21,175,50,0,32,201,33,48,0,25,235, +201,58,104,32,167,200,58,0,32,167,192,58,103,32,103,58, +6,32,22,2,60,254,55,204,161,1,111,70,5,194,84,1, +50,6,32,205,122,1,97,34,11,32,125,254,40,218,113,25, +122,50,4,32,62,1,50,0,32,201,22,0,125,33,9,32, +70,35,78,254,11,250,148,1,222,11,95,120,198,16,71,123, +20,195,131,1,104,167,200,95,121,198,16,79,123,61,195,149, +1,21,202,205,1,33,6,32,54,0,35,78,54,0,205,217, +1,33,5,32,126,60,230,1,119,175,33,103,32,102,201,0, +33,0,33,6,55,54,1,35,5,194,197,1,201,225,201,62, +1,6,224,33,2,36,195,204,20,35,70,35,121,134,119,35, +120,134,119,201,6,192,17,0,27,33,0,32,195,50,26,33, +66,33,195,248,1,33,66,34,14,4,17,32,29,213,6,44, +205,50,26,209,13,194,253,1,201,62,1,195,27,2,62,1, +195,20,2,175,17,66,34,195,30,2,175,17,66,33,50,129, +32,1,2,22,33,6,40,62,4,245,197,58,129,32,167,194, +66,2,205,105,26,193,241,61,200,213,17,224,2,25,209,195, +41,2,205,124,20,195,53,2,33,16,32,126,254,255,200,254, +254,202,129,2,35,70,79,176,121,194,119,2,35,126,167,194, +136,2,35,94,35,86,229,235,229,33,111,2,227,213,233,225, +17,12,0,25,195,75,2,5,4,194,125,2,61,5,112,43, +119,17,16,0,25,195,75,2,53,43,43,195,129,2,225,35, +126,254,255,202,59,3,35,53,192,71,175,50,104,32,50,105, +32,62,48,50,106,32,120,54,5,35,53,194,155,3,42,26, +32,6,16,205,36,20,33,16,32,17,16,27,6,16,205,50, +26,6,0,205,220,25,58,109,32,167,192,58,239,32,167,200, +49,0,36,251,205,215,25,205,46,9,167,202,109,22,205,231, +24,126,167,202,44,3,58,206,32,167,202,44,3,58,103,32, +245,15,218,50,3,205,14,2,205,120,8,115,35,114,43,43, +112,0,205,228,1,241,15,62,33,6,0,210,18,3,6,32, +62,34,50,103,32,205,182,10,175,50,17,32,120,211,5,60, +50,152,32,205,214,9,205,127,26,195,249,7,205,127,26,195, +23,8,205,9,2,195,248,2,0,0,0,33,104,32,54,1, +35,126,167,195,176,3,0,43,54,1,58,27,32,71,58,239, +32,167,194,99,3,58,29,32,15,218,129,3,15,218,142,3, +195,111,3,205,192,23,7,7,218,129,3,7,218,142,3,33, +24,32,205,59,26,205,71,26,205,57,20,62,0,50,18,32, +201,120,254,217,202,111,3,60,50,27,32,195,111,3,120,254, +48,202,111,3,61,50,27,32,195,111,3,60,230,1,50,21, +32,7,7,7,7,33,112,28,133,111,34,24,32,195,111,3, +194,74,3,35,53,194,74,3,195,70,3,17,42,32,205,6, +26,225,208,35,126,167,200,254,1,202,250,3,254,2,202,10, +4,35,254,3,194,42,4,53,202,54,4,126,254,15,192,229, +205,48,4,205,82,20,225,35,52,35,35,53,53,35,53,53, +53,35,54,8,205,48,4,195,0,20,60,119,58,27,32,198, +8,50,42,32,205,48,4,195,0,20,205,48,4,213,229,197, +205,82,20,193,225,209,58,44,32,133,111,50,41,32,205,145, +20,58,97,32,167,200,50,2,32,201,254,5,200,195,54,4, +33,39,32,195,59,26,205,48,4,205,82,20,33,37,32,17, +37,27,6,7,205,50,26,42,141,32,44,125,254,99,218,83, +4,46,84,34,141,32,42,143,32,44,34,143,32,58,132,32, +167,192,126,230,1,1,41,2,194,110,4,1,224,254,33,138, +32,113,35,35,112,201,225,58,50,27,50,50,32,42,56,32, +125,180,194,138,4,43,34,56,32,201,17,53,32,62,249,205, +80,5,58,70,32,50,112,32,58,86,32,50,113,32,205,99, +5,58,120,32,167,33,53,32,194,91,5,17,48,27,33,48, +32,6,16,195,50,26,225,58,110,32,167,192,58,128,32,254, +1,192,17,69,32,62,237,205,80,5,58,54,32,50,112,32, +58,86,32,50,113,32,205,99,5,58,118,32,254,16,218,231, +4,58,72,27,50,118,32,58,120,32,167,33,69,32,194,91, +5,17,64,27,33,64,32,6,16,205,50,26,58,130,32,61, +194,8,5,62,1,50,110,32,42,118,32,195,126,6,225,17, +85,32,62,219,205,80,5,58,70,32,50,112,32,58,54,32, +50,113,32,205,99,5,58,118,32,254,21,218,52,5,58,88, +27,50,118,32,58,120,32,167,33,85,32,194,91,5,17,80, +27,33,80,32,6,16,205,50,26,42,118,32,34,88,32,201, +50,127,32,33,115,32,6,11,195,50,26,17,115,32,6,11, +195,50,26,33,115,32,126,230,128,194,193,5,58,193,32,254, +4,58,105,32,202,183,5,167,200,35,54,0,58,112,32,167, +202,137,5,71,58,207,32,184,208,58,113,32,167,202,150,5, +71,58,207,32,184,208,35,126,167,202,27,6,42,118,32,78, +35,0,34,118,32,205,47,6,208,205,122,1,121,198,7,103, +125,214,10,111,34,123,32,33,115,32,126,246,128,119,35,52, +201,17,124,32,205,6,26,208,35,126,230,1,194,68,6,35, +52,205,117,6,58,121,32,198,3,33,127,32,190,218,226,5, +214,12,50,121,32,58,123,32,71,58,126,32,128,50,123,32, +205,108,6,58,123,32,254,21,218,18,6,58,97,32,167,200, +58,123,32,254,30,218,18,6,254,39,0,210,18,6,151,50, +21,32,58,115,32,246,1,50,115,32,201,58,27,32,198,8, +103,205,111,21,121,254,12,218,165,5,14,11,195,165,5,13, +58,103,32,103,105,22,5,126,167,55,192,125,198,11,111,21, +194,55,6,201,33,120,32,53,126,254,3,194,103,6,205,117, +6,33,220,28,34,121,32,33,124,32,53,53,43,53,53,62, +6,50,125,32,195,108,6,167,192,195,117,6,33,121,32,205, +59,26,195,145,20,33,121,32,205,59,26,195,82,20,34,72, +32,201,225,58,128,32,254,2,192,33,131,32,126,167,202,15, +5,58,86,32,167,194,15,5,35,126,167,194,171,6,58,130, +32,254,8,218,15,5,54,1,205,60,7,17,138,32,205,6, +26,208,33,133,32,126,167,194,214,6,33,138,32,126,35,35, +134,50,138,32,205,60,7,33,138,32,126,254,40,218,249,6, +254,225,210,249,6,201,6,254,205,220,25,35,53,126,254,31, +202,75,7,254,24,202,12,7,167,192,6,239,33,152,32,126, +160,119,230,32,211,5,0,0,0,205,66,7,205,203,20,33, +131,32,6,10,205,95,7,6,254,195,220,25,62,1,50,241, +32,42,141,32,70,14,4,33,80,29,17,76,29,26,184,202, +40,7,35,19,13,194,29,7,126,50,135,32,38,0,104,41, +41,41,41,34,242,32,205,66,7,195,241,8,205,66,7,195, +57,20,33,135,32,205,59,26,195,71,26,6,16,33,152,32, +126,176,119,205,112,23,33,124,29,34,135,32,195,60,7,17, +131,27,195,50,26,62,1,50,147,32,49,0,36,251,205,121, +25,205,214,9,33,19,48,17,243,31,14,4,205,243,8,58, +235,32,61,33,16,40,14,20,194,87,8,17,207,26,205,243, +8,219,1,230,4,202,127,7,6,153,175,50,206,32,58,235, +32,128,39,50,235,32,205,71,25,33,0,0,34,248,32,34, +252,32,205,37,25,205,43,25,205,215,25,33,1,1,124,50, +239,32,34,231,32,34,229,32,205,86,25,205,239,1,205,245, +1,205,209,8,50,255,33,50,255,34,205,215,0,175,50,254, +33,50,254,34,205,192,1,205,4,25,33,120,56,34,252,33, +34,252,34,205,228,1,205,127,26,205,141,8,205,214,9,0] +} \ No newline at end of file diff --git a/devices/pc8080/rom/test/8080EX1.MAC b/devices/pc8080/rom/test/8080EX1.MAC new file mode 100644 index 000000000..669b68653 --- /dev/null +++ b/devices/pc8080/rom/test/8080EX1.MAC @@ -0,0 +1,1286 @@ + title 'Z80 instruction set exerciser' + +; zexlax.z80 - Z80 instruction set exerciser +; Copyright (C) 1994 Frank D. Cringle +; +; This program is free software; you can redistribute it and/or +; modify it under the terms of the GNU General Public License +; as published by the Free Software Foundation; either version 2 +; of the License, or (at your option) any later version. +; +; This program is distributed in the hope that it will be useful, +; but WITHOUT ANY WARRANTY; without even the implied warranty of +; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +; GNU General Public License for more details. +; +; You should have received a copy of the GNU General Public License +; along with this program; if not, write to the Free Software +; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +; +;****************************************************************************** +; +; Modified to exercise an 8080 by Ian Bartholomew, February 2009 +; +; CRC values for a KR580VM80A CPU +; +; I have made the following changes - +; +; Converted all mnemonics to 8080 and rewritten any Z80 code used +; in the original exerciser. Changes are tagged with a #idb in the +; source code listing. +; +; Removed any test descriptors that are not used. +; +; Changed the macro definitions to work in M80 +; +; The machine state snapshot has been changed to remove the IX/IY registers. +; They have been replaced by two more copies of HL to obviate the need +; for major changes in the exerciser code. +; +; Changed flag mask in all tests to 0ffh to reflect that the 8080, unlike the 8085 +; and Z80, does define the unused bits in the flag register - [S Z 0 AC 0 P 1 C] +; +;****************************************************************************** + + .8080 + aseg + org 100h + +begin: jmp start + +; machine state before test (needs to be at predictably constant address) +msbt: ds 14 +spbt: ds 2 + +; For the purposes of this test program, the machine state consists of: +; a 2 byte memory operand, followed by +; the registers iy,ix,hl,de,bc,af,sp +; for a total of 16 bytes. + +; The program tests instructions (or groups of similar instructions) +; by cycling through a sequence of machine states, executing the test +; instruction for each one and running a 32-bit crc over the resulting +; machine states. At the end of the sequence the crc is compared to +; an expected value that was found empirically on a real Z80. + +; A test case is defined by a descriptor which consists of: +; a flag mask byte, +; the base case, +; the incement vector, +; the shift vector, +; the expected crc, +; a short descriptive message. +; +; The flag mask byte is used to prevent undefined flag bits from +; influencing the results. Documented flags are as per Mostek Z80 +; Technical Manual. +; +; The next three parts of the descriptor are 20 byte vectors +; corresponding to a 4 byte instruction and a 16 byte machine state. +; The first part is the base case, which is the first test case of +; the sequence. This base is then modified according to the next 2 +; vectors. Each 1 bit in the increment vector specifies a bit to be +; cycled in the form of a binary counter. For instance, if the byte +; corresponding to the accumulator is set to 0ffh in the increment +; vector, the test will be repeated for all 256 values of the +; accumulator. Note that 1 bits don't have to be contiguous. The +; number of test cases 'caused' by the increment vector is equal to +; 2^(number of 1 bits). The shift vector is similar, but specifies a +; set of bits in the test case that are to be successively inverted. +; Thus the shift vector 'causes' a number of test cases equal to the +; number of 1 bits in it. + +; The total number of test cases is the product of those caused by the +; counter and shift vectors and can easily become unweildy. Each +; individual test case can take a few milliseconds to execute, due to +; the overhead of test setup and crc calculation, so test design is a +; compromise between coverage and execution time. + +; This program is designed to detect differences between +; implementations and is not ideal for diagnosing the causes of any +; discrepancies. However, provided a reference implementation (or +; real system) is available, a failing test case can be isolated by +; hand using a binary search of the test space. + + +start: lhld 6 + sphl + lxi d,msg1 + mvi c,9 + call bdos + + lxi h,tests ; first test case +loop: mov a,m ; end of list ? + inx h + ora m + jz done + dcx h + call stt + jmp loop + +done: lxi d,msg2 + mvi c,9 + call bdos + jmp 0 ; warm boot + +tests: + dw add16 + dw alu8i + dw alu8r + dw daa + dw inca + dw incb + dw incbc + dw incc + dw incd + dw incde + dw ince + dw inch + dw inchl + dw incl + dw incm + dw incsp + dw ld162 + dw ld166 + dw ld16im + dw ld8bd + dw ld8im + dw ld8rr + dw lda + dw rot8080 + dw stabd + dw 0 + +tstr macro insn,memop,hliy,hlix,hl,de,bc,flags,acc,sp + local lab +lab: db insn + ds lab+4-$,0 + dw memop,hliy,hlix,hl,de,bc + db flags + db acc + dw sp + if $-lab ne 20 + error 'missing parameter' + endif + endm + +tmsg macro m + local lab +lab: db m + if $ ge lab+30 + error 'message too long' + else + ds lab+30-$,'.' + endif + db '$' + endm + +; add hl, (19,456 cycles) +add16: db 0ffh ; flag mask + tstr 9,0c4a5h,0c4c7h,0d226h,0a050h,058eah,08566h,0c6h,0deh,09bc9h + tstr 030h,0,0,0,0f821h,0,0,0,0,0 ; (512 cycles) + tstr 0,0,0,0,-1,-1,-1,0d7h,0,-1 ; (38 cycles) + db 014h, 047h, 04bh, 0a6h ; expected crc + tmsg 'dad ' + +; aluop a,nn (28,672 cycles) +alu8i: db 0ffh ; flag mask + tstr 0c6h,09140h,07e3ch,07a67h,0df6dh,05b61h,00b29h,010h,066h,085b2h + tstr 038h,0,0,0,0,0,0,0,-1,0 ; (2048 cycles) + tstr <0,-1>,0,0,0,0,0,0,0d7h,0,0 ; (14 cycles) + db 09eh, 092h, 02fh, 09eh ; expected crc + tmsg 'aluop nn' + +; aluop a, (753,664 cycles) +alu8r: db 0ffh ; flag mask + tstr 080h,0c53eh,0573ah,04c4dh,msbt,0e309h,0a666h,0d0h,03bh,0adbbh + tstr 03fh,0,0,0,0,0,0,0,-1,0 ; (16,384 cycles) + tstr 0,0ffh,0,0,0,-1,-1,0d7h,0,0 ; (46 cycles) + db 0cfh, 076h, 02ch, 086h ; expected crc + tmsg 'aluop ' + +; +daa: db 0ffh ; flag mask + tstr 027h,02141h,009fah,01d60h,0a559h,08d5bh,09079h,004h,08eh,0299dh + tstr 018h,0,0,0,0,0,0,0d7h,-1,0 ; (65,536 cycles) + tstr 0,0,0,0,0,0,0,0,0,0 ; (1 cycle) + db 0bbh,03fh,003h,00ch ; expected crc + tmsg '' + +; a (3072 cycles) +inca: db 0ffh ; flag mask + tstr 03ch,04adfh,0d5d8h,0e598h,08a2bh,0a7b0h,0431bh,044h,05ah,0d030h + tstr 001h,0,0,0,0,0,0,0,-1,0 ; (512 cycles) + tstr 0,0,0,0,0,0,0,0d7h,0,0 ; (6 cycles) + db 0adh,0b6h,046h,00eh ; expected crc + tmsg ' a' + +; b (3072 cycles) +incb: db 0ffh ; flag mask + tstr 004h,0d623h,0432dh,07a61h,08180h,05a86h,01e85h,086h,058h,09bbbh + tstr 001h,0,0,0,0,0,0ff00h,0,0,0 ; (512 cycles) + tstr 0,0,0,0,0,0,0,0d7h,0,0 ; (6 cycles) + db 083h,0edh,013h,045h ; expected crc + tmsg ' b' + +; bc (1536 cycles) +incbc: db 0ffh ; flag mask + tstr 003h,0cd97h,044abh,08dc9h,0e3e3h,011cch,0e8a4h,002h,049h,02a4dh + tstr 008h,0,0,0,0,0,0f821h,0,0,0 ; (256 cycles) + tstr 0,0,0,0,0,0,0,0d7h,0,0 ; (6 cycles) + db 0f7h,092h,087h,0cdh ; expected crc + tmsg ' b' + +; c (3072 cycles) +incc: db 0ffh ; flag mask + tstr 00ch,0d789h,00935h,0055bh,09f85h,08b27h,0d208h,095h,005h,00660h + tstr 001h,0,0,0,0,0,0ffh,0,0,0 ; (512 cycles) + tstr 0,0,0,0,0,0,0,0d7h,0,0 ; (6 cycles) + db 0e5h,0f6h,072h,01bh ; expected crc + tmsg ' c' + +; d (3072 cycles) +incd: db 0ffh ; flag mask + tstr 014h,0a0eah,05fbah,065fbh,0981ch,038cch,0debch,043h,05ch,003bdh + tstr 001h,0,0,0,0,0ff00h,0,0,0,0 ; (512 cycles) + tstr 0,0,0,0,0,0,0,0d7h,0,0 ; (6 cycles) + db 015h,0b5h,057h,09ah ; expected crc + tmsg ' d' + +; de (1536 cycles) +incde: db 0ffh ; flag mask + tstr 013h,0342eh,0131dh,028c9h,00acah,09967h,03a2eh,092h,0f6h,09d54h + tstr 008h,0,0,0,0,0f821h,0,0,0,0 ; (256 cycles) + tstr 0,0,0,0,0,0,0,0d7h,0,0 ; (6 cycles) + db 07fh,04eh,025h,001h ; expected crc + tmsg ' d' + +; e (3072 cycles) +ince: db 0ffh ; flag mask + tstr 01ch,0602fh,04c0dh,02402h,0e2f5h,0a0f4h,0a10ah,013h,032h,05925h + tstr 001h,0,0,0,0,0ffh,0,0,0,0 ; (512 cycles) + tstr 0,0,0,0,0,0,0,0d7h,0,0 ; (6 cycles) + db 0cfh,02ah,0b3h,096h ; expected crc + tmsg ' e' + +; h (3072 cycles) +inch: db 0ffh ; flag mask + tstr 024h,01506h,0f2ebh,0e8ddh,0262bh,011a6h,0bc1ah,017h,006h,02818h + tstr 001h,0,0,0,0ff00h,0,0,0,0,0 ; (512 cycles) + tstr 0,0,0,0,0,0,0,0d7h,0,0 ; (6 cycles) + db 012h,0b2h,095h,02ch ; expected crc + tmsg ' h' + +; hl (1536 cycles) +inchl: db 0ffh ; flag mask + tstr 023h,0c3f4h,007a5h,01b6dh,04f04h,0e2c2h,0822ah,057h,0e0h,0c3e1h + tstr 008h,0,0,0,0f821h,0,0,0,0,0 ; (256 cycles) + tstr 0,0,0,0,0,0,0,0d7h,0,0 ; (6 cycles) + db 09fh,02bh,023h,0c0h ; expected crc + tmsg ' h' + +; l (3072 cycles) +incl: db 0ffh ; flag mask + tstr 02ch,08031h,0a520h,04356h,0b409h,0f4c1h,0dfa2h,0d1h,03ch,03ea2h + tstr 001h,0,0,0,0ffh,0,0,0,0,0 ; (512 cycles) + tstr 0,0,0,0,0,0,0,0d7h,0,0 ; (6 cycles) + db 0ffh,057h,0d3h,056h ; expected crc + tmsg ' l' + +; (hl) (3072 cycles) +incm: db 0ffh ; flag mask + tstr 034h,0b856h,00c7ch,0e53eh,msbt,0877eh,0da58h,015h,05ch,01f37h + tstr 001h,0ffh,0,0,0,0,0,0,0,0 ; (512 cycles) + tstr 0,0,0,0,0,0,0,0d7h,0,0 ; (6 cycles) + db 092h,0e9h,063h,0bdh ; expected crc + tmsg ' m' + +; sp (1536 cycles) +incsp: db 0ffh ; flag mask + tstr 033h,0346fh,0d482h,0d169h,0deb6h,0a494h,0f476h,053h,002h,0855bh + tstr 008h,0,0,0,0,0,0,0,0,0f821h ; (256 cycles) + tstr 0,0,0,0,0,0,0,0d7h,0,0 ; (6 cycles) + db 0d5h,070h,02fh,0abh ; expected crc + tmsg ' sp' + +; ld hl,(nnnn) (16 cycles) +ld162: db 0ffh ; flag mask + tstr <02ah,low msbt,high msbt>,09863h,07830h,02077h,0b1feh,0b9fah,0abb8h,004h,006h,06015h + tstr 0,0,0,0,0,0,0,0,0,0 ; (1 cycle) + tstr 0,-1,0,0,0,0,0,0,0,0 ; (16 cycles) + db 0a9h,0c3h,0d5h,0cbh ; expected crc + tmsg 'lhld nnnn' + +; ld (nnnn),hl (16 cycles) +ld166: db 0ffh ; flag mask + tstr <022h,low msbt,high msbt>,0d003h,07772h,07f53h,03f72h,064eah,0e180h,010h,02dh,035e9h + tstr 0,0,0,0,0,0,0,0,0,0 ; (1 cycle) + tstr 0,0,0,0,-1,0,0,0,0,0 ; (16 cycles) + db 0e8h,086h,04fh,026h ; expected crc + tmsg 'shld nnnn' + +; ld ,nnnn (64 cycles) +ld16im: db 0ffh ; flag mask + tstr 1,05c1ch,02d46h,08eb9h,06078h,074b1h,0b30eh,046h,0d1h,030cch + tstr 030h,0,0,0,0,0,0,0,0,0 ; (4 cycles) + tstr <0,0ffh,0ffh>,0,0,0,0,0,0,0,0,0 ; (16 cycles) + db 0fch,0f4h,06eh,012h ; expected crc + tmsg 'lxi ,nnnn' + +; ld a,<(bc),(de)> (44 cycles) +ld8bd: db 0ffh ; flag mask + tstr 00ah,0b3a8h,01d2ah,07f8eh,042ach,msbt,msbt,0c6h,0b1h,0ef8eh + tstr 010h,0,0,0,0,0,0,0,0,0 ; (2 cycles) + tstr 0,0ffh,0,0,0,0,0,0d7h,-1,0 ; (22 cycles) + db 02bh,082h,01dh,05fh ; expected crc + tmsg 'ldax ' + +; ld ,nn (64 cycles) +ld8im: db 0ffh ; flag mask + tstr 6,0c407h,0f49dh,0d13dh,00339h,0de89h,07455h,053h,0c0h,05509h + tstr 038h,0,0,0,0,0,0,0,0,0 ; (8 cycles) + tstr 0,0,0,0,0,0,0,0,-1,0 ; (8 cycles) + db 0eah,0a7h,020h,044h ; expected crc + tmsg 'mvi ,nn' + +; ld , (3456 cycles) +ld8rr: db 0ffh ; flag mask + tstr 040h,072a4h,0a024h,061ach,msbt,082c7h,0718fh,097h,08fh,0ef8eh + tstr 03fh,0,0,0,0,0,0,0,0,0 ; (64 cycles) + tstr 0,0ffh,0,0,0,-1,-1,0d7h,-1,0 ; (54 cycles) + db 010h,0b5h,08ch,0eeh ; expected crc + tmsg 'mov ,' + +; ld a,(nnnn) / ld (nnnn),a (44 cycles) +lda: db 0ffh ; flag mask + tstr <032h,low msbt,high msbt>,0fd68h,0f4ech,044a0h,0b543h,00653h,0cdbah,0d2h,04fh,01fd8h + tstr 008h,0,0,0,0,0,0,0,0,0 ; (2 cycle) + tstr 0,0ffh,0,0,0,0,0,0d7h,-1,0 ; (22 cycles) + db 0edh,057h,0afh,072h ; expected crc + tmsg 'sta nnnn / lda nnnn' + +; (6144 cycles) +rot8080: db 0ffh ; flag mask + tstr 7,0cb92h,06d43h,00a90h,0c284h,00c53h,0f50eh,091h,0ebh,040fch + tstr 018h,0,0,0,0,0,0,0,-1,0 ; (1024 cycles) + tstr 0,0,0,0,0,0,0,0d7h,0,0 ; (6 cycles) + db 0e0h,0d8h,092h,035h ; expected crc + tmsg '' + +; ld (),a (96 cycles) +stabd: db 0ffh ; flag mask + tstr 2,00c3bh,0b592h,06cffh,0959eh,msbt,msbt+1,0c1h,021h,0bde7h + tstr 018h,0,0,0,0,0,0,0,0,0 ; (4 cycles) + tstr 0,-1,0,0,0,0,0,0,-1,0 ; (24 cycles) + db 02bh,004h,071h,0e9h ; expected crc + tmsg 'stax ' + +; start test pointed to by (hl) +stt: push h + mov a,m ; get pointer to test + inx h + mov h,m + mov l,a + mov a,m ; flag mask + sta flgmsk+1 + inx h + push h + lxi d,20 + dad d ; point to incmask + lxi d,counter + call initmask + pop h + push h + lxi d,20+20 + dad d ; point to scanmask + lxi d,shifter + call initmask + lxi h,shifter + mvi m,1 ; first bit + pop h + push h + lxi d,iut ; copy initial instruction under test + lxi b,4 + +;#idb ldir replaced with following code +ldir1: mov a,m + stax d + inx h + inx d + dcx b + mov a,b + ora c + jnz ldir1 +;#idb + + lxi d,msbt ; copy initial machine state + lxi b,16 + +;#idb ldir replaced with following code +ldir2: mov a,m + stax d + inx h + inx d + dcx b + mov a,b + ora c + jnz ldir2 +;#idb + + lxi d,20+20+4 ; skip incmask, scanmask and expcrc + dad d + xchg + mvi c,9 + call bdos ; show test name + call initcrc ; initialise crc +; test loop +tlp: lda iut + cpi 076h ; pragmatically avoid halt intructions + jz tlp2 + ani 0dfh + cpi 0ddh + jnz tlp1 + lda iut+1 + cpi 076h +tlp1: cnz test ; execute the test instruction +tlp2: call count ; increment the counter + cnz shift ; shift the scan bit + pop h ; pointer to test case + jz tlp3 ; done if shift returned NZ + lxi d,20+20+20 + dad d ; point to expected crc + call cmpcrc + lxi d,okmsg + jz tlpok + lxi d,ermsg1 + mvi c,9 + call bdos + call phex8 + lxi d,ermsg2 + mvi c,9 + call bdos + lxi h,crcval + call phex8 + lxi d,crlf +tlpok: mvi c,9 + call bdos + pop h + inx h + inx h + ret + +tlp3: push h + mvi a,1 ; initialise count and shift scanners + sta cntbit + sta shfbit + lxi h,counter + shld cntbyt + lxi h,shifter + shld shfbyt + + mvi b,4 ; bytes in iut field + pop h ; pointer to test case + push h + lxi d,iut + call setup ; setup iut + mvi b,16 ; bytes in machine state + lxi d,msbt + call setup ; setup machine state + jmp tlp + +; setup a field of the test case +; b = number of bytes +; hl = pointer to base case +; de = destination +setup: call subyte + inx h + dcr b + jnz setup + ret + +subyte: push b + push d + push h + mov c,m ; get base byte + lxi d,20 + dad d ; point to incmask + mov a,m + cpi 0 + jz subshf + mvi b,8 ; 8 bits +subclp: rrc + push psw + mvi a,0 + cc nxtcbit ; get next counter bit if mask bit was set + xra c ; flip bit if counter bit was set + rrc + mov c,a + pop psw + dcr b + jnz subclp + mvi b,8 +subshf: lxi d,20 + dad d ; point to shift mask + mov a,m + cpi 0 + jz substr + mvi b,8 ; 8 bits +sbshf1: rrc + push psw + mvi a,0 + cc nxtsbit ; get next shifter bit if mask bit was set + xra c ; flip bit if shifter bit was set + rrc + mov c,a + pop psw + dcr b + jnz sbshf1 +substr: pop h + pop d + mov a,c + stax d ; mangled byte to destination + inx d + pop b + ret + +; get next counter bit in low bit of a +cntbit: ds 1 +cntbyt: ds 2 + +nxtcbit: push b + push h + lhld cntbyt + mov b,m + lxi h,cntbit + mov a,m + mov c,a + rlc + mov m,a + cpi 1 + jnz ncb1 + lhld cntbyt + inx h + shld cntbyt +ncb1: mov a,b + ana c + pop h + pop b + rz + mvi a,1 + ret + +; get next shifter bit in low bit of a +shfbit: ds 1 +shfbyt: ds 2 + +nxtsbit: push b + push h + lhld shfbyt + mov b,m + lxi h,shfbit + mov a,m + mov c,a + rlc + mov m,a + cpi 1 + jnz nsb1 + lhld shfbyt + inx h + shld shfbyt +nsb1: mov a,b + ana c + pop h + pop b + rz + mvi a,1 + ret + + +; clear memory at hl, bc bytes +clrmem: push psw + push b + push d + push h + mvi m,0 + mov d,h + mov e,l + inx d + dcx b + +;#idb ldir replaced with following code +ldir3: mov a,m + stax d + inx h + inx d + dcx b + mov a,b + ora c + jnz ldir3 +;#idb + + pop h + pop d + pop b + pop psw + ret + +; initialise counter or shifter +; de = pointer to work area for counter or shifter +; hl = pointer to mask +initmask: + push d + xchg + lxi b,20+20 + call clrmem ; clear work area + xchg + mvi b,20 ; byte counter + mvi c,1 ; first bit + mvi d,0 ; bit counter +imlp: mov e,m +imlp1: mov a,e + ana c + jz imlp2 + inr d +imlp2: mov a,c + rlc + mov c,a + cpi 1 + jnz imlp1 + inx h + dcr b + jnz imlp +; got number of 1-bits in mask in reg d + mov a,d + ani 0f8h + rrc + rrc + rrc ; divide by 8 (get byte offset) + mov l,a + mvi h,0 + mov a,d + ani 7 ; bit offset + inr a + mov b,a + mvi a,080h +imlp3: rlc + dcr b + jnz imlp3 + pop d + dad d + lxi d,20 + dad d + mov m,a + ret + +; multi-byte counter +count: push b + push d + push h + lxi h,counter ; 20 byte counter starts here + lxi d,20 ; somewhere in here is the stop bit + xchg + dad d + xchg +cntlp: inr m + mov a,m + cpi 0 + jz cntlp1 ; overflow to next byte + mov b,a + ldax d + ana b ; test for terminal value + jz cntend + mvi m,0 ; reset to zero +cntend: pop b + pop d + pop h + ret + +cntlp1: inx h + inx d + jmp cntlp + + +; multi-byte shifter +shift: push b + push d + push h + lxi h,shifter ; 20 byte shift register starts here + lxi d,20 ; somewhere in here is the stop bit + xchg + dad d + xchg +shflp: mov a,m + ora a + jz shflp1 + mov b,a + ldax d + ana b + jnz shlpe + mov a,b + rlc + cpi 1 + jnz shflp2 + mvi m,0 + inx h + inx d +shflp2: mov m,a + xra a ; set Z +shlpe: pop h + pop d + pop b + ret +shflp1: inx h + inx d + jmp shflp + +counter: ds 2*20 +shifter: ds 2*20 + +; test harness +test: push psw + push b + push d + push h + if 0 + lxi d,crlf + mvi c,9 + call bdos + lxi h,iut + mvi b,4 + call hexstr + mvi e,' ' + mvi c,2 + call bdos + mvi b,16 + lxi h,msbt + call hexstr + endif + di ; disable interrupts + +;#idb ld (spsav),sp replaced by following code +;#idb All registers and flages are immediately overwritten so +;#idb no need to preserve any state. + lxi h,0 ; save stack pointer + dad sp + shld spsav +;#idb + + lxi sp,msbt+2 ; point to test-case machine state + +;#idb pop iy +;#idb pop ix both replaced by following code +;#idb Just dummy out ix/iy with copies of hl + pop h ; and load all regs + pop h +;#idb + + pop h + pop d + pop b + pop psw + +;#idb ld sp,(spbt) replaced with the following code +;#idb HL is copied/restored before/after load so no state changed + shld temp + lhld spbt + sphl + lhld temp +;#idb + +iut: ds 4 ; max 4 byte instruction under test + +;#idb ld (spat),sp replaced with the following code +;#idb Must be very careful to preserve registers and flag +;#idb state resulting from the test. The temptation is to use the +;#idb stack - but that doesn't work because of the way the app +;#idb uses SP as a quick way of pointing to memory. +;#idb Bit of a code smell, but I can't think of an easier way. + shld temp + lxi h,0 + jc temp1 ;jump on the state of the C flag set in the test + + dad sp ;this code will clear the C flag (0 + nnnn = nc) + jmp temp2 ;C flag is same state as before + +temp1: dad sp ;this code will clear the C flag (0 + nnnn = nc) + stc ;C flage needs re-setting to preserve state + +temp2: shld spat + lhld temp +;#idb + + lxi sp,spat + push psw ; save other registers + push b + push d + push h + +;#idb push ix +;#idb push iy both replaced by following code +;#idb Must match change made to pops made before test + push h + push h +;#idb + +;#idb ld sp,(spsav) replaced with following code +;#idb No need to preserve state + lhld spsav ; restore stack pointer + sphl +;#idb + + ei ; enable interrupts + lhld msbt ; copy memory operand + shld msat + lxi h,flgsat ; flags after test + mov a,m +flgmsk: ani 0ffh ; mask-out irrelevant bits (self-modified code!) + mov m,a + mvi b,16 ; total of 16 bytes of state + lxi d,msat + lxi h,crcval +tcrc: ldax d + inx d + call updcrc ; accumulate crc of this test case + dcr b + jnz tcrc + if 0 + mvi e,' ' + mvi c,2 + call bdos + lxi h,crcval + call phex8 + lxi d,crlf + mvi c,9 + call bdos + lxi h,msat + mvi b,16 + call hexstr + lxi d,crlf + mvi c,9 + call bdos + endif + pop h + pop d + pop b + pop psw + ret + +;#idb Added to store HL state +temp: ds 2 +;#idb + +; machine state after test +msat: ds 14 ; memop,iy,ix,hl,de,bc,af +spat: ds 2 ; stack pointer after test +flgsat equ spat-2 ; flags + +spsav: ds 2 ; saved stack pointer + +; display hex string (pointer in hl, byte count in b) +hexstr: mov a,m + call phex2 + inx h + dcr b + jnz hexstr + ret + +; display hex +; display the big-endian 32-bit value pointed to by hl +phex8: push psw + push b + push h + mvi b,4 +ph8lp: mov a,m + call phex2 + inx h + dcr b + jnz ph8lp + pop h + pop b + pop psw + ret + +; display byte in a +phex2: push psw + rrc + rrc + rrc + rrc + call phex1 + pop psw +; fall through + +; display low nibble in a +phex1: push psw + push b + push d + push h + ani 0fh + cpi 10 + jc ph11 + adi 'a'-'9'-1 +ph11: adi '0' + mov e,a + mvi c,2 + call bdos + pop h + pop d + pop b + pop psw + ret + +bdos: push psw + push b + push d + push h + call 5 + pop h + pop d + pop b + pop psw + ret + +msg1: db '8080 instruction exerciser (Intel and clones)',10,13,'$' +msg2: db 'Tests complete$' +okmsg: db ' OK',10,13,'$' +ermsg1: db ' ERROR **** crc expected:$' +ermsg2: db ' found:$' +crlf: db 10,13,'$' + +; compare crc +; hl points to value to compare to crcval +cmpcrc: push b + push d + push h + lxi d,crcval + mvi b,4 +cclp: ldax d + cmp m + jnz cce + inx h + inx d + dcr b + jnz cclp +cce: pop h + pop d + pop b + ret + +; 32-bit crc routine +; entry: a contains next byte, hl points to crc +; exit: crc updated +updcrc: push psw + push b + push d + push h + push h + lxi d,3 + dad d ; point to low byte of old crc + xra m ; xor with new byte + mov l,a + mvi h,0 + dad h ; use result as index into table of 4 byte entries + dad h + xchg + lxi h,crctab + dad d ; point to selected entry in crctab + xchg + pop h + lxi b,4 ; c = byte count, b = accumulator +crclp: ldax d + xra b + mov b,m + mov m,a + inx d + inx h + dcr c + jnz crclp + if 0 + lxi h,crcval + call phex8 + lxi d,crlf + mvi c,9 + call bdos + endif + pop h + pop d + pop b + pop psw + ret + +initcrc:push psw + push b + push h + lxi h,crcval + mvi a,0ffh + mvi b,4 +icrclp: mov m,a + inx h + dcr b + jnz icrclp + pop h + pop b + pop psw + ret + +crcval: ds 4 + +crctab: db 000h,000h,000h,000h + db 077h,007h,030h,096h + db 0eeh,00eh,061h,02ch + db 099h,009h,051h,0bah + db 007h,06dh,0c4h,019h + db 070h,06ah,0f4h,08fh + db 0e9h,063h,0a5h,035h + db 09eh,064h,095h,0a3h + db 00eh,0dbh,088h,032h + db 079h,0dch,0b8h,0a4h + db 0e0h,0d5h,0e9h,01eh + db 097h,0d2h,0d9h,088h + db 009h,0b6h,04ch,02bh + db 07eh,0b1h,07ch,0bdh + db 0e7h,0b8h,02dh,007h + db 090h,0bfh,01dh,091h + db 01dh,0b7h,010h,064h + db 06ah,0b0h,020h,0f2h + db 0f3h,0b9h,071h,048h + db 084h,0beh,041h,0deh + db 01ah,0dah,0d4h,07dh + db 06dh,0ddh,0e4h,0ebh + db 0f4h,0d4h,0b5h,051h + db 083h,0d3h,085h,0c7h + db 013h,06ch,098h,056h + db 064h,06bh,0a8h,0c0h + db 0fdh,062h,0f9h,07ah + db 08ah,065h,0c9h,0ech + db 014h,001h,05ch,04fh + db 063h,006h,06ch,0d9h + db 0fah,00fh,03dh,063h + db 08dh,008h,00dh,0f5h + db 03bh,06eh,020h,0c8h + db 04ch,069h,010h,05eh + db 0d5h,060h,041h,0e4h + db 0a2h,067h,071h,072h + db 03ch,003h,0e4h,0d1h + db 04bh,004h,0d4h,047h + db 0d2h,00dh,085h,0fdh + db 0a5h,00ah,0b5h,06bh + db 035h,0b5h,0a8h,0fah + db 042h,0b2h,098h,06ch + db 0dbh,0bbh,0c9h,0d6h + db 0ach,0bch,0f9h,040h + db 032h,0d8h,06ch,0e3h + db 045h,0dfh,05ch,075h + db 0dch,0d6h,00dh,0cfh + db 0abh,0d1h,03dh,059h + db 026h,0d9h,030h,0ach + db 051h,0deh,000h,03ah + db 0c8h,0d7h,051h,080h + db 0bfh,0d0h,061h,016h + db 021h,0b4h,0f4h,0b5h + db 056h,0b3h,0c4h,023h + db 0cfh,0bah,095h,099h + db 0b8h,0bdh,0a5h,00fh + db 028h,002h,0b8h,09eh + db 05fh,005h,088h,008h + db 0c6h,00ch,0d9h,0b2h + db 0b1h,00bh,0e9h,024h + db 02fh,06fh,07ch,087h + db 058h,068h,04ch,011h + db 0c1h,061h,01dh,0abh + db 0b6h,066h,02dh,03dh + db 076h,0dch,041h,090h + db 001h,0dbh,071h,006h + db 098h,0d2h,020h,0bch + db 0efh,0d5h,010h,02ah + db 071h,0b1h,085h,089h + db 006h,0b6h,0b5h,01fh + db 09fh,0bfh,0e4h,0a5h + db 0e8h,0b8h,0d4h,033h + db 078h,007h,0c9h,0a2h + db 00fh,000h,0f9h,034h + db 096h,009h,0a8h,08eh + db 0e1h,00eh,098h,018h + db 07fh,06ah,00dh,0bbh + db 008h,06dh,03dh,02dh + db 091h,064h,06ch,097h + db 0e6h,063h,05ch,001h + db 06bh,06bh,051h,0f4h + db 01ch,06ch,061h,062h + db 085h,065h,030h,0d8h + db 0f2h,062h,000h,04eh + db 06ch,006h,095h,0edh + db 01bh,001h,0a5h,07bh + db 082h,008h,0f4h,0c1h + db 0f5h,00fh,0c4h,057h + db 065h,0b0h,0d9h,0c6h + db 012h,0b7h,0e9h,050h + db 08bh,0beh,0b8h,0eah + db 0fch,0b9h,088h,07ch + db 062h,0ddh,01dh,0dfh + db 015h,0dah,02dh,049h + db 08ch,0d3h,07ch,0f3h + db 0fbh,0d4h,04ch,065h + db 04dh,0b2h,061h,058h + db 03ah,0b5h,051h,0ceh + db 0a3h,0bch,000h,074h + db 0d4h,0bbh,030h,0e2h + db 04ah,0dfh,0a5h,041h + db 03dh,0d8h,095h,0d7h + db 0a4h,0d1h,0c4h,06dh + db 0d3h,0d6h,0f4h,0fbh + db 043h,069h,0e9h,06ah + db 034h,06eh,0d9h,0fch + db 0adh,067h,088h,046h + db 0dah,060h,0b8h,0d0h + db 044h,004h,02dh,073h + db 033h,003h,01dh,0e5h + db 0aah,00ah,04ch,05fh + db 0ddh,00dh,07ch,0c9h + db 050h,005h,071h,03ch + db 027h,002h,041h,0aah + db 0beh,00bh,010h,010h + db 0c9h,00ch,020h,086h + db 057h,068h,0b5h,025h + db 020h,06fh,085h,0b3h + db 0b9h,066h,0d4h,009h + db 0ceh,061h,0e4h,09fh + db 05eh,0deh,0f9h,00eh + db 029h,0d9h,0c9h,098h + db 0b0h,0d0h,098h,022h + db 0c7h,0d7h,0a8h,0b4h + db 059h,0b3h,03dh,017h + db 02eh,0b4h,00dh,081h + db 0b7h,0bdh,05ch,03bh + db 0c0h,0bah,06ch,0adh + db 0edh,0b8h,083h,020h + db 09ah,0bfh,0b3h,0b6h + db 003h,0b6h,0e2h,00ch + db 074h,0b1h,0d2h,09ah + db 0eah,0d5h,047h,039h + db 09dh,0d2h,077h,0afh + db 004h,0dbh,026h,015h + db 073h,0dch,016h,083h + db 0e3h,063h,00bh,012h + db 094h,064h,03bh,084h + db 00dh,06dh,06ah,03eh + db 07ah,06ah,05ah,0a8h + db 0e4h,00eh,0cfh,00bh + db 093h,009h,0ffh,09dh + db 00ah,000h,0aeh,027h + db 07dh,007h,09eh,0b1h + db 0f0h,00fh,093h,044h + db 087h,008h,0a3h,0d2h + db 01eh,001h,0f2h,068h + db 069h,006h,0c2h,0feh + db 0f7h,062h,057h,05dh + db 080h,065h,067h,0cbh + db 019h,06ch,036h,071h + db 06eh,06bh,006h,0e7h + db 0feh,0d4h,01bh,076h + db 089h,0d3h,02bh,0e0h + db 010h,0dah,07ah,05ah + db 067h,0ddh,04ah,0cch + db 0f9h,0b9h,0dfh,06fh + db 08eh,0beh,0efh,0f9h + db 017h,0b7h,0beh,043h + db 060h,0b0h,08eh,0d5h + db 0d6h,0d6h,0a3h,0e8h + db 0a1h,0d1h,093h,07eh + db 038h,0d8h,0c2h,0c4h + db 04fh,0dfh,0f2h,052h + db 0d1h,0bbh,067h,0f1h + db 0a6h,0bch,057h,067h + db 03fh,0b5h,006h,0ddh + db 048h,0b2h,036h,04bh + db 0d8h,00dh,02bh,0dah + db 0afh,00ah,01bh,04ch + db 036h,003h,04ah,0f6h + db 041h,004h,07ah,060h + db 0dfh,060h,0efh,0c3h + db 0a8h,067h,0dfh,055h + db 031h,06eh,08eh,0efh + db 046h,069h,0beh,079h + db 0cbh,061h,0b3h,08ch + db 0bch,066h,083h,01ah + db 025h,06fh,0d2h,0a0h + db 052h,068h,0e2h,036h + db 0cch,00ch,077h,095h + db 0bbh,00bh,047h,003h + db 022h,002h,016h,0b9h + db 055h,005h,026h,02fh + db 0c5h,0bah,03bh,0beh + db 0b2h,0bdh,00bh,028h + db 02bh,0b4h,05ah,092h + db 05ch,0b3h,06ah,004h + db 0c2h,0d7h,0ffh,0a7h + db 0b5h,0d0h,0cfh,031h + db 02ch,0d9h,09eh,08bh + db 05bh,0deh,0aeh,01dh + db 09bh,064h,0c2h,0b0h + db 0ech,063h,0f2h,026h + db 075h,06ah,0a3h,09ch + db 002h,06dh,093h,00ah + db 09ch,009h,006h,0a9h + db 0ebh,00eh,036h,03fh + db 072h,007h,067h,085h + db 005h,000h,057h,013h + db 095h,0bfh,04ah,082h + db 0e2h,0b8h,07ah,014h + db 07bh,0b1h,02bh,0aeh + db 00ch,0b6h,01bh,038h + db 092h,0d2h,08eh,09bh + db 0e5h,0d5h,0beh,00dh + db 07ch,0dch,0efh,0b7h + db 00bh,0dbh,0dfh,021h + db 086h,0d3h,0d2h,0d4h + db 0f1h,0d4h,0e2h,042h + db 068h,0ddh,0b3h,0f8h + db 01fh,0dah,083h,06eh + db 081h,0beh,016h,0cdh + db 0f6h,0b9h,026h,05bh + db 06fh,0b0h,077h,0e1h + db 018h,0b7h,047h,077h + db 088h,008h,05ah,0e6h + db 0ffh,00fh,06ah,070h + db 066h,006h,03bh,0cah + db 011h,001h,00bh,05ch + db 08fh,065h,09eh,0ffh + db 0f8h,062h,0aeh,069h + db 061h,06bh,0ffh,0d3h + db 016h,06ch,0cfh,045h + db 0a0h,00ah,0e2h,078h + db 0d7h,00dh,0d2h,0eeh + db 04eh,004h,083h,054h + db 039h,003h,0b3h,0c2h + db 0a7h,067h,026h,061h + db 0d0h,060h,016h,0f7h + db 049h,069h,047h,04dh + db 03eh,06eh,077h,0dbh + db 0aeh,0d1h,06ah,04ah + db 0d9h,0d6h,05ah,0dch + db 040h,0dfh,00bh,066h + db 037h,0d8h,03bh,0f0h + db 0a9h,0bch,0aeh,053h + db 0deh,0bbh,09eh,0c5h + db 047h,0b2h,0cfh,07fh + db 030h,0b5h,0ffh,0e9h + db 0bdh,0bdh,0f2h,01ch + db 0cah,0bah,0c2h,08ah + db 053h,0b3h,093h,030h + db 024h,0b4h,0a3h,0a6h + db 0bah,0d0h,036h,005h + db 0cdh,0d7h,006h,093h + db 054h,0deh,057h,029h + db 023h,0d9h,067h,0bfh + db 0b3h,066h,07ah,02eh + db 0c4h,061h,04ah,0b8h + db 05dh,068h,01bh,002h + db 02ah,06fh,02bh,094h + db 0b4h,00bh,0beh,037h + db 0c3h,00ch,08eh,0a1h + db 05ah,005h,0dfh,01bh + db 02dh,002h,0efh,08dh + + end + \ No newline at end of file diff --git a/devices/pc8080/rom/test/8080EX1.json b/devices/pc8080/rom/test/8080EX1.json new file mode 100644 index 000000000..732166c2e --- /dev/null +++ b/devices/pc8080/rom/test/8080EX1.json @@ -0,0 +1,290 @@ +{"bytes":[ +195,19,1,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,42,6,0,249,17,246,13,14,9,205,234,13,33, +58,1,126,35,182,202,47,1,43,205,206,10,195,34,1,17, +36,14,14,9,205,234,13,195,0,0,110,1,206,1,46,2, +142,2,238,2,78,3,174,3,14,4,110,4,206,4,46,5, +142,5,238,5,78,6,174,6,14,7,110,7,206,7,46,8, +142,8,238,8,78,9,174,9,14,10,110,10,0,0,255,9, +0,0,0,165,196,199,196,38,210,80,160,234,88,102,133,198, +222,201,155,48,0,0,0,0,0,0,0,0,0,33,248,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,255,255,255,255,255,255,215,0,255,255,20,71,75,166,100, +97,100,32,60,98,44,100,44,104,44,115,112,62,46,46,46, +46,46,46,46,46,46,46,46,46,46,46,46,46,36,255,198, +0,0,0,64,145,60,126,103,122,109,223,97,91,41,11,16, +102,178,133,56,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,255,0,0,0,255,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,215,0,0,0,158,146,47,158,97, +108,117,111,112,32,110,110,46,46,46,46,46,46,46,46,46, +46,46,46,46,46,46,46,46,46,46,46,46,46,36,255,128, +0,0,0,62,197,58,87,77,76,3,1,9,227,102,166,208, +59,187,173,63,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0, +0,0,0,255,255,255,255,215,0,0,0,207,118,44,134,97, +108,117,111,112,32,60,98,44,99,44,100,44,101,44,104,44, +108,44,109,44,97,62,46,46,46,46,46,46,46,36,255,39, +0,0,0,65,33,250,9,96,29,89,165,91,141,121,144,4, +142,157,41,24,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,215,255,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,187,63,3,12,60, +100,97,97,44,99,109,97,44,115,116,99,44,99,109,99,62, +46,46,46,46,46,46,46,46,46,46,46,46,46,36,255,60, +0,0,0,223,74,216,213,152,229,43,138,176,167,27,67,68, +90,48,208,1,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,215,0,0,0,173,182,70,14,60, +105,110,114,44,100,99,114,62,32,97,46,46,46,46,46,46, +46,46,46,46,46,46,46,46,46,46,46,46,46,36,255,4, +0,0,0,35,214,45,67,97,122,128,129,134,90,133,30,134, +88,187,155,1,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,215,0,0,0,131,237,19,69,60, +105,110,114,44,100,99,114,62,32,98,46,46,46,46,46,46, +46,46,46,46,46,46,46,46,46,46,46,46,46,36,255,3, +0,0,0,151,205,171,68,201,141,227,227,204,17,164,232,2, +73,77,42,8,0,0,0,0,0,0,0,0,0,0,0,0, +0,33,248,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,215,0,0,0,247,146,135,205,60, +105,110,120,44,100,99,120,62,32,98,46,46,46,46,46,46, +46,46,46,46,46,46,46,46,46,46,46,46,46,36,255,12, +0,0,0,137,215,53,9,91,5,133,159,39,139,8,210,149, +5,96,6,1,0,0,0,0,0,0,0,0,0,0,0,0, +0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,215,0,0,0,229,246,114,27,60, +105,110,114,44,100,99,114,62,32,99,46,46,46,46,46,46, +46,46,46,46,46,46,46,46,46,46,46,46,46,36,255,20, +0,0,0,234,160,186,95,251,101,28,152,204,56,188,222,67, +92,189,3,1,0,0,0,0,0,0,0,0,0,0,0,0, +255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,215,0,0,0,21,181,87,154,60, +105,110,114,44,100,99,114,62,32,100,46,46,46,46,46,46, +46,46,46,46,46,46,46,46,46,46,46,46,46,36,255,19, +0,0,0,46,52,29,19,201,40,202,10,103,153,46,58,146, +246,84,157,8,0,0,0,0,0,0,0,0,0,0,0,33, +248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,215,0,0,0,127,78,37,1,60, +105,110,120,44,100,99,120,62,32,100,46,46,46,46,46,46, +46,46,46,46,46,46,46,46,46,46,46,46,46,36,255,28, +0,0,0,47,96,13,76,2,36,245,226,244,160,10,161,19, +50,37,89,1,0,0,0,0,0,0,0,0,0,0,0,255, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,215,0,0,0,207,42,179,150,60, +105,110,114,44,100,99,114,62,32,101,46,46,46,46,46,46, +46,46,46,46,46,46,46,46,46,46,46,46,46,36,255,36, +0,0,0,6,21,235,242,221,232,43,38,166,17,26,188,23, +6,24,40,1,0,0,0,0,0,0,0,0,0,0,255,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,215,0,0,0,18,178,149,44,60, +105,110,114,44,100,99,114,62,32,104,46,46,46,46,46,46, +46,46,46,46,46,46,46,46,46,46,46,46,46,36,255,35, +0,0,0,244,195,165,7,109,27,4,79,194,226,42,130,87, +224,225,195,8,0,0,0,0,0,0,0,0,0,33,248,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,215,0,0,0,159,43,35,192,60, +105,110,120,44,100,99,120,62,32,104,46,46,46,46,46,46, +46,46,46,46,46,46,46,46,46,46,46,46,46,36,255,44, +0,0,0,49,128,32,165,86,67,9,180,193,244,162,223,209, +60,162,62,1,0,0,0,0,0,0,0,0,0,255,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,215,0,0,0,255,87,211,86,60, +105,110,114,44,100,99,114,62,32,108,46,46,46,46,46,46, +46,46,46,46,46,46,46,46,46,46,46,46,46,36,255,52, +0,0,0,86,184,124,12,62,229,3,1,126,135,88,218,21, +92,55,31,1,0,0,0,255,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,215,0,0,0,146,233,99,189,60, +105,110,114,44,100,99,114,62,32,109,46,46,46,46,46,46, +46,46,46,46,46,46,46,46,46,46,46,46,46,36,255,51, +0,0,0,111,52,130,212,105,209,182,222,148,164,118,244,83, +2,91,133,8,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,33,248,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,215,0,0,0,213,112,47,171,60, +105,110,120,44,100,99,120,62,32,115,112,46,46,46,46,46, +46,46,46,46,46,46,46,46,46,46,46,46,46,36,255,42, +3,1,0,99,152,48,120,119,32,254,177,250,185,184,171,4, +6,21,96,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,255,255,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,169,195,213,203,108, +104,108,100,32,110,110,110,110,46,46,46,46,46,46,46,46, +46,46,46,46,46,46,46,46,46,46,46,46,46,36,255,34, +3,1,0,3,208,114,119,83,127,114,63,234,100,128,225,16, +45,233,53,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,255,255,0,0,0,0,0,0,0,0,232,134,79,38,115, +104,108,100,32,110,110,110,110,46,46,46,46,46,46,46,46, +46,46,46,46,46,46,46,46,46,46,46,46,46,36,255,1, +0,0,0,28,92,70,45,185,142,120,96,177,116,14,179,70, +209,204,48,48,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,255,255,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,252,244,110,18,108, +120,105,32,60,98,44,100,44,104,44,115,112,62,44,110,110, +110,110,46,46,46,46,46,46,46,46,46,46,46,36,255,10, +0,0,0,168,179,42,29,142,127,172,66,3,1,3,1,198, +177,142,239,16,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0, +0,0,0,0,0,0,0,215,255,0,0,43,130,29,95,108, +100,97,120,32,60,98,44,100,62,46,46,46,46,46,46,46, +46,46,46,46,46,46,46,46,46,46,46,46,46,36,255,6, +0,0,0,7,196,157,244,61,209,57,3,137,222,85,116,83, +192,9,85,56,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,255,0,0,234,167,32,68,109, +118,105,32,60,98,44,99,44,100,44,101,44,104,44,108,44, +109,44,97,62,44,110,110,46,46,46,46,46,46,36,255,64, +0,0,0,164,114,36,160,172,97,3,1,199,130,143,113,151, +143,142,239,63,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0, +0,0,0,255,255,255,255,215,255,0,0,16,181,140,238,109, +111,118,32,60,98,99,100,101,104,108,97,62,44,60,98,99, +100,101,104,108,97,62,46,46,46,46,46,46,46,36,255,50, +3,1,0,104,253,236,244,160,68,67,181,83,6,186,205,210, +79,216,31,8,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0, +0,0,0,0,0,0,0,215,255,0,0,237,87,175,114,115, +116,97,32,110,110,110,110,32,47,32,108,100,97,32,110,110, +110,110,46,46,46,46,46,46,46,46,46,46,46,36,255,7, +0,0,0,146,203,67,109,144,10,132,194,83,12,14,245,145, +235,252,64,24,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,215,0,0,0,224,216,146,53,60, +114,108,99,44,114,114,99,44,114,97,108,44,114,97,114,62, +46,46,46,46,46,46,46,46,46,46,46,46,46,36,255,2, +0,0,0,59,12,146,181,255,108,158,149,3,1,4,1,193, +33,231,189,24,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,255,255,0,0,0, +0,0,0,0,0,0,0,0,255,0,0,43,4,113,233,115, +116,97,120,32,60,98,44,100,62,46,46,46,46,46,46,46, +46,46,46,46,46,46,46,46,46,46,46,46,46,36,229,126, +35,102,111,126,50,127,13,35,229,17,20,0,25,17,222,12, +205,77,12,225,229,17,40,0,25,17,6,13,205,77,12,33, +6,13,54,1,225,229,17,77,13,1,4,0,126,18,35,19, +11,120,177,194,252,10,17,3,1,1,16,0,126,18,35,19, +11,120,177,194,12,11,17,44,0,25,235,14,9,205,234,13, +205,159,14,58,77,13,254,118,202,58,11,230,223,254,221,194, +55,11,58,78,13,254,118,196,46,13,205,141,12,196,177,12, +225,202,118,11,17,60,0,25,205,96,14,17,51,14,202,109, +11,17,58,14,14,9,205,234,13,205,181,13,17,85,14,14, +9,205,234,13,33,179,14,205,181,13,17,93,14,14,9,205, +234,13,225,35,35,201,229,62,1,50,236,11,50,16,12,33, +222,12,34,237,11,33,6,13,34,17,12,6,4,225,229,17, +77,13,205,160,11,6,16,17,3,1,205,160,11,195,35,11, +205,169,11,35,5,194,160,11,201,197,213,229,78,17,20,0, +25,126,254,0,202,202,11,6,8,15,245,62,0,220,239,11, +169,15,79,241,5,194,185,11,6,8,17,20,0,25,126,254, +0,202,229,11,6,8,15,245,62,0,220,19,12,169,15,79, +241,5,194,214,11,225,209,121,18,19,193,201,0,0,0,197, +229,42,237,11,70,33,236,11,126,79,7,119,254,1,194,8, +12,42,237,11,35,34,237,11,120,161,225,193,200,62,1,201, +0,0,0,197,229,42,17,12,70,33,16,12,126,79,7,119, +254,1,194,44,12,42,17,12,35,34,17,12,120,161,225,193, +200,62,1,201,245,197,213,229,54,0,84,93,19,11,126,18, +35,19,11,120,177,194,62,12,225,209,193,241,201,213,235,1, +40,0,205,52,12,235,6,20,14,1,22,0,94,123,161,202, +99,12,20,121,7,79,254,1,194,93,12,35,5,194,92,12, +122,230,248,15,15,15,111,38,0,122,230,7,60,71,62,128, +7,5,194,128,12,209,25,17,20,0,25,119,201,197,213,229, +33,222,12,17,20,0,235,25,235,52,126,254,0,202,172,12, +71,26,160,202,168,12,54,0,193,209,225,201,35,19,195,153, +12,197,213,229,33,6,13,17,20,0,235,25,235,126,183,202, +217,12,71,26,160,194,213,12,120,7,254,1,194,211,12,54, +0,35,19,119,175,225,209,193,201,35,19,195,189,12,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,245,197, +213,229,243,33,0,0,57,34,169,13,49,5,1,225,225,225, +209,193,241,34,151,13,42,17,1,249,42,151,13,0,0,0, +0,34,151,13,33,0,0,218,94,13,57,195,96,13,57,55, +34,167,13,42,151,13,49,167,13,245,197,213,229,229,229,42, +169,13,249,251,42,3,1,34,153,13,33,165,13,126,230,255, +119,6,16,17,153,13,33,179,14,26,19,205,119,14,5,194, +137,13,225,209,193,241,201,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,126,205,199,13,35, +5,194,171,13,201,245,197,229,6,4,126,205,199,13,35,5, +194,186,13,225,193,241,201,245,15,15,15,15,205,208,13,241, +245,197,213,229,230,15,254,10,218,221,13,198,39,198,48,95, +14,2,205,234,13,225,209,193,241,201,245,197,213,229,205,5, +0,225,209,193,241,201,56,48,56,48,32,105,110,115,116,114, +117,99,116,105,111,110,32,101,120,101,114,99,105,115,101,114, +32,40,75,82,53,56,48,86,77,56,48,65,32,67,80,85, +41,10,13,36,84,101,115,116,115,32,99,111,109,112,108,101, +116,101,36,32,32,79,75,10,13,36,32,32,69,82,82,79, +82,32,42,42,42,42,32,99,114,99,32,101,120,112,101,99, +116,101,100,58,36,32,102,111,117,110,100,58,36,10,13,36, +197,213,229,17,179,14,6,4,26,190,194,115,14,35,19,5, +194,104,14,225,209,193,201,245,197,213,229,229,17,3,0,25, +174,111,38,0,41,41,235,33,183,14,25,235,225,1,4,0, +26,168,70,119,19,35,13,194,144,14,225,209,193,241,201,245, +197,229,33,179,14,62,255,6,4,119,35,5,194,169,14,225, +193,241,201,0,0,0,0,0,0,0,0,119,7,48,150,238, +14,97,44,153,9,81,186,7,109,196,25,112,106,244,143,233, +99,165,53,158,100,149,163,14,219,136,50,121,220,184,164,224, +213,233,30,151,210,217,136,9,182,76,43,126,177,124,189,231, +184,45,7,144,191,29,145,29,183,16,100,106,176,32,242,243, +185,113,72,132,190,65,222,26,218,212,125,109,221,228,235,244, +212,181,81,131,211,133,199,19,108,152,86,100,107,168,192,253, +98,249,122,138,101,201,236,20,1,92,79,99,6,108,217,250, +15,61,99,141,8,13,245,59,110,32,200,76,105,16,94,213, +96,65,228,162,103,113,114,60,3,228,209,75,4,212,71,210, +13,133,253,165,10,181,107,53,181,168,250,66,178,152,108,219, +187,201,214,172,188,249,64,50,216,108,227,69,223,92,117,220, +214,13,207,171,209,61,89,38,217,48,172,81,222,0,58,200, +215,81,128,191,208,97,22,33,180,244,181,86,179,196,35,207, +186,149,153,184,189,165,15,40,2,184,158,95,5,136,8,198, +12,217,178,177,11,233,36,47,111,124,135,88,104,76,17,193, +97,29,171,182,102,45,61,118,220,65,144,1,219,113,6,152, +210,32,188,239,213,16,42,113,177,133,137,6,182,181,31,159, +191,228,165,232,184,212,51,120,7,201,162,15,0,249,52,150, +9,168,142,225,14,152,24,127,106,13,187,8,109,61,45,145, +100,108,151,230,99,92,1,107,107,81,244,28,108,97,98,133, +101,48,216,242,98,0,78,108,6,149,237,27,1,165,123,130, +8,244,193,245,15,196,87,101,176,217,198,18,183,233,80,139, +190,184,234,252,185,136,124,98,221,29,223,21,218,45,73,140, +211,124,243,251,212,76,101,77,178,97,88,58,181,81,206,163, +188,0,116,212,187,48,226,74,223,165,65,61,216,149,215,164, +209,196,109,211,214,244,251,67,105,233,106,52,110,217,252,173, +103,136,70,218,96,184,208,68,4,45,115,51,3,29,229,170, +10,76,95,221,13,124,201,80,5,113,60,39,2,65,170,190, +11,16,16,201,12,32,134,87,104,181,37,32,111,133,179,185, +102,212,9,206,97,228,159,94,222,249,14,41,217,201,152,176, +208,152,34,199,215,168,180,89,179,61,23,46,180,13,129,183, +189,92,59,192,186,108,173,237,184,131,32,154,191,179,182,3, +182,226,12,116,177,210,154,234,213,71,57,157,210,119,175,4, +219,38,21,115,220,22,131,227,99,11,18,148,100,59,132,13, +109,106,62,122,106,90,168,228,14,207,11,147,9,255,157,10, +0,174,39,125,7,158,177,240,15,147,68,135,8,163,210,30, +1,242,104,105,6,194,254,247,98,87,93,128,101,103,203,25, +108,54,113,110,107,6,231,254,212,27,118,137,211,43,224,16, +218,122,90,103,221,74,204,249,185,223,111,142,190,239,249,23, +183,190,67,96,176,142,213,214,214,163,232,161,209,147,126,56, +216,194,196,79,223,242,82,209,187,103,241,166,188,87,103,63, +181,6,221,72,178,54,75,216,13,43,218,175,10,27,76,54, +3,74,246,65,4,122,96,223,96,239,195,168,103,223,85,49, +110,142,239,70,105,190,121,203,97,179,140,188,102,131,26,37, +111,210,160,82,104,226,54,204,12,119,149,187,11,71,3,34, +2,22,185,85,5,38,47,197,186,59,190,178,189,11,40,43, +180,90,146,92,179,106,4,194,215,255,167,181,208,207,49,44, +217,158,139,91,222,174,29,155,100,194,176,236,99,242,38,117, +106,163,156,2,109,147,10,156,9,6,169,235,14,54,63,114, +7,103,133,5,0,87,19,149,191,74,130,226,184,122,20,123, +177,43,174,12,182,27,56,146,210,142,155,229,213,190,13,124, +220,239,183,11,219,223,33,134,211,210,212,241,212,226,66,104, +221,179,248,31,218,131,110,129,190,22,205,246,185,38,91,111, +176,119,225,24,183,71,119,136,8,90,230,255,15,106,112,102, +6,59,202,17,1,11,92,143,101,158,255,248,98,174,105,97, +107,255,211,22,108,207,69,160,10,226,120,215,13,210,238,78, +4,131,84,57,3,179,194,167,103,38,97,208,96,22,247,73, +105,71,77,62,110,119,219,174,209,106,74,217,214,90,220,64, +223,11,102,55,216,59,240,169,188,174,83,222,187,158,197,71, +178,207,127,48,181,255,233,189,189,242,28,202,186,194,138,83, +179,147,48,36,180,163,166,186,208,54,5,205,215,6,147,84, +222,87,41,35,217,103,191,179,102,122,46,196,97,74,184,93, +104,27,2,42,111,43,148,180,11,190,55,195,12,142,161,90, +5,223,27,45,2,239,141,160,10,226,120,215,13,210,238,78, +4,131,84,57,3,179,194,167,103,38,97,208,96,22,247,73, +105,71,77,62,110,119,219,174,209,106,74,217,214,90,220,64, +223,11,102,55,216,59,240,169,188,174,83,222,187,158,197,71, +178,207,127,48,181,255,233,189,189,242,28,202,186,194,138,83] +} \ No newline at end of file diff --git a/devices/pc8080/rom/test/8080EXER.MAC b/devices/pc8080/rom/test/8080EXER.MAC new file mode 100644 index 000000000..243fade69 --- /dev/null +++ b/devices/pc8080/rom/test/8080EXER.MAC @@ -0,0 +1,1284 @@ + title 'Z80 instruction set exerciser' + +; zexlax.z80 - Z80 instruction set exerciser +; Copyright (C) 1994 Frank D. Cringle +; +; This program is free software; you can redistribute it and/or +; modify it under the terms of the GNU General Public License +; as published by the Free Software Foundation; either version 2 +; of the License, or (at your option) any later version. +; +; This program is distributed in the hope that it will be useful, +; but WITHOUT ANY WARRANTY; without even the implied warranty of +; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +; GNU General Public License for more details. +; +; You should have received a copy of the GNU General Public License +; along with this program; if not, write to the Free Software +; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +; +;****************************************************************************** +; +; Modified to exercise an 8080 by Ian Bartholomew, February 2009 +; +; I have made the following changes - +; +; Converted all mnemonics to 8080 and rewritten any Z80 code used +; in the original exerciser. Changes are tagged with a #idb in the +; source code listing. +; +; Removed any test descriptors that are not used. +; +; Changed the macro definitions to work in M80 +; +; The machine state snapshot has been changed to remove the IX/IY registers. +; They have been replaced by two more copies of HL to obviate the need +; for major changes in the exerciser code. +; +; Changed flag mask in all tests to 0ffh to reflect that the 8080, unlike the 8085 +; and Z80, does define the unused bits in the flag register - [S Z 0 AC 0 P 1 C] +; +;****************************************************************************** + + .8080 + aseg + org 100h + +begin: jmp start + +; machine state before test (needs to be at predictably constant address) +msbt: ds 14 +spbt: ds 2 + +; For the purposes of this test program, the machine state consists of: +; a 2 byte memory operand, followed by +; the registers iy,ix,hl,de,bc,af,sp +; for a total of 16 bytes. + +; The program tests instructions (or groups of similar instructions) +; by cycling through a sequence of machine states, executing the test +; instruction for each one and running a 32-bit crc over the resulting +; machine states. At the end of the sequence the crc is compared to +; an expected value that was found empirically on a real Z80. + +; A test case is defined by a descriptor which consists of: +; a flag mask byte, +; the base case, +; the incement vector, +; the shift vector, +; the expected crc, +; a short descriptive message. +; +; The flag mask byte is used to prevent undefined flag bits from +; influencing the results. Documented flags are as per Mostek Z80 +; Technical Manual. +; +; The next three parts of the descriptor are 20 byte vectors +; corresponding to a 4 byte instruction and a 16 byte machine state. +; The first part is the base case, which is the first test case of +; the sequence. This base is then modified according to the next 2 +; vectors. Each 1 bit in the increment vector specifies a bit to be +; cycled in the form of a binary counter. For instance, if the byte +; corresponding to the accumulator is set to 0ffh in the increment +; vector, the test will be repeated for all 256 values of the +; accumulator. Note that 1 bits don't have to be contiguous. The +; number of test cases 'caused' by the increment vector is equal to +; 2^(number of 1 bits). The shift vector is similar, but specifies a +; set of bits in the test case that are to be successively inverted. +; Thus the shift vector 'causes' a number of test cases equal to the +; number of 1 bits in it. + +; The total number of test cases is the product of those caused by the +; counter and shift vectors and can easily become unweildy. Each +; individual test case can take a few milliseconds to execute, due to +; the overhead of test setup and crc calculation, so test design is a +; compromise between coverage and execution time. + +; This program is designed to detect differences between +; implementations and is not ideal for diagnosing the causes of any +; discrepancies. However, provided a reference implementation (or +; real system) is available, a failing test case can be isolated by +; hand using a binary search of the test space. + + +start: lhld 6 + sphl + lxi d,msg1 + mvi c,9 + call bdos + + lxi h,tests ; first test case +loop: mov a,m ; end of list ? + inx h + ora m + jz done + dcx h + call stt + jmp loop + +done: lxi d,msg2 + mvi c,9 + call bdos + jmp 0 ; warm boot + +tests: + dw add16 + dw alu8i + dw alu8r + dw daa + dw inca + dw incb + dw incbc + dw incc + dw incd + dw incde + dw ince + dw inch + dw inchl + dw incl + dw incm + dw incsp + dw ld162 + dw ld166 + dw ld16im + dw ld8bd + dw ld8im + dw ld8rr + dw lda + dw rot8080 + dw stabd + dw 0 + +tstr macro insn,memop,hliy,hlix,hl,de,bc,flags,acc,sp + local lab +lab: db insn + ds lab+4-$,0 + dw memop,hliy,hlix,hl,de,bc + db flags + db acc + dw sp + if $-lab ne 20 + error 'missing parameter' + endif + endm + +tmsg macro m + local lab +lab: db m + if $ ge lab+30 + error 'message too long' + else + ds lab+30-$,'.' + endif + db '$' + endm + +; add hl, (19,456 cycles) +add16: db 0ffh ; flag mask + tstr 9,0c4a5h,0c4c7h,0d226h,0a050h,058eah,08566h,0c6h,0deh,09bc9h + tstr 030h,0,0,0,0f821h,0,0,0,0,0 ; (512 cycles) + tstr 0,0,0,0,-1,-1,-1,0d7h,0,-1 ; (38 cycles) + db 0,0,0,0 ; expected crc + tmsg 'dad ' + +; aluop a,nn (28,672 cycles) +alu8i: db 0ffh ; flag mask + tstr 0c6h,09140h,07e3ch,07a67h,0df6dh,05b61h,00b29h,010h,066h,085b2h + tstr 038h,0,0,0,0,0,0,0,-1,0 ; (2048 cycles) + tstr <0,-1>,0,0,0,0,0,0,0d7h,0,0 ; (14 cycles) + db 0,0,0,0 ; expected crc + tmsg 'aluop nn' + +; aluop a, (753,664 cycles) +alu8r: db 0ffh ; flag mask + tstr 080h,0c53eh,0573ah,04c4dh,msbt,0e309h,0a666h,0d0h,03bh,0adbbh + tstr 03fh,0,0,0,0,0,0,0,-1,0 ; (16,384 cycles) + tstr 0,0ffh,0,0,0,-1,-1,0d7h,0,0 ; (46 cycles) + db 0,0,0,0 ; expected crc + tmsg 'aluop ' + +; +daa: db 0ffh ; flag mask + tstr 027h,02141h,009fah,01d60h,0a559h,08d5bh,09079h,004h,08eh,0299dh + tstr 018h,0,0,0,0,0,0,0d7h,-1,0 ; (65,536 cycles) + tstr 0,0,0,0,0,0,0,0,0,0 ; (1 cycle) + db 0,0,0,0 ; expected crc + tmsg '' + +; a (3072 cycles) +inca: db 0ffh ; flag mask + tstr 03ch,04adfh,0d5d8h,0e598h,08a2bh,0a7b0h,0431bh,044h,05ah,0d030h + tstr 001h,0,0,0,0,0,0,0,-1,0 ; (512 cycles) + tstr 0,0,0,0,0,0,0,0d7h,0,0 ; (6 cycles) + db 0,0,0,0 ; expected crc + tmsg ' a' + +; b (3072 cycles) +incb: db 0ffh ; flag mask + tstr 004h,0d623h,0432dh,07a61h,08180h,05a86h,01e85h,086h,058h,09bbbh + tstr 001h,0,0,0,0,0,0ff00h,0,0,0 ; (512 cycles) + tstr 0,0,0,0,0,0,0,0d7h,0,0 ; (6 cycles) + db 0,0,0,0 ; expected crc + tmsg ' b' + +; bc (1536 cycles) +incbc: db 0ffh ; flag mask + tstr 003h,0cd97h,044abh,08dc9h,0e3e3h,011cch,0e8a4h,002h,049h,02a4dh + tstr 008h,0,0,0,0,0,0f821h,0,0,0 ; (256 cycles) + tstr 0,0,0,0,0,0,0,0d7h,0,0 ; (6 cycles) + db 0,0,0,0 ; expected crc + tmsg ' b' + +; c (3072 cycles) +incc: db 0ffh ; flag mask + tstr 00ch,0d789h,00935h,0055bh,09f85h,08b27h,0d208h,095h,005h,00660h + tstr 001h,0,0,0,0,0,0ffh,0,0,0 ; (512 cycles) + tstr 0,0,0,0,0,0,0,0d7h,0,0 ; (6 cycles) + db 0,0,0,0 ; expected crc + tmsg ' c' + +; d (3072 cycles) +incd: db 0ffh ; flag mask + tstr 014h,0a0eah,05fbah,065fbh,0981ch,038cch,0debch,043h,05ch,003bdh + tstr 001h,0,0,0,0,0ff00h,0,0,0,0 ; (512 cycles) + tstr 0,0,0,0,0,0,0,0d7h,0,0 ; (6 cycles) + db 0,0,0,0 ; expected crc + tmsg ' d' + +; de (1536 cycles) +incde: db 0ffh ; flag mask + tstr 013h,0342eh,0131dh,028c9h,00acah,09967h,03a2eh,092h,0f6h,09d54h + tstr 008h,0,0,0,0,0f821h,0,0,0,0 ; (256 cycles) + tstr 0,0,0,0,0,0,0,0d7h,0,0 ; (6 cycles) + db 0,0,0,0 ; expected crc + tmsg ' d' + +; e (3072 cycles) +ince: db 0ffh ; flag mask + tstr 01ch,0602fh,04c0dh,02402h,0e2f5h,0a0f4h,0a10ah,013h,032h,05925h + tstr 001h,0,0,0,0,0ffh,0,0,0,0 ; (512 cycles) + tstr 0,0,0,0,0,0,0,0d7h,0,0 ; (6 cycles) + db 0,0,0,0 ; expected crc + tmsg ' e' + +; h (3072 cycles) +inch: db 0ffh ; flag mask + tstr 024h,01506h,0f2ebh,0e8ddh,0262bh,011a6h,0bc1ah,017h,006h,02818h + tstr 001h,0,0,0,0ff00h,0,0,0,0,0 ; (512 cycles) + tstr 0,0,0,0,0,0,0,0d7h,0,0 ; (6 cycles) + db 0,0,0,0 ; expected crc + tmsg ' h' + +; hl (1536 cycles) +inchl: db 0ffh ; flag mask + tstr 023h,0c3f4h,007a5h,01b6dh,04f04h,0e2c2h,0822ah,057h,0e0h,0c3e1h + tstr 008h,0,0,0,0f821h,0,0,0,0,0 ; (256 cycles) + tstr 0,0,0,0,0,0,0,0d7h,0,0 ; (6 cycles) + db 0,0,0,0 ; expected crc + tmsg ' h' + +; l (3072 cycles) +incl: db 0ffh ; flag mask + tstr 02ch,08031h,0a520h,04356h,0b409h,0f4c1h,0dfa2h,0d1h,03ch,03ea2h + tstr 001h,0,0,0,0ffh,0,0,0,0,0 ; (512 cycles) + tstr 0,0,0,0,0,0,0,0d7h,0,0 ; (6 cycles) + db 0,0,0,0 ; expected crc + tmsg ' l' + +; (hl) (3072 cycles) +incm: db 0ffh ; flag mask + tstr 034h,0b856h,00c7ch,0e53eh,msbt,0877eh,0da58h,015h,05ch,01f37h + tstr 001h,0ffh,0,0,0,0,0,0,0,0 ; (512 cycles) + tstr 0,0,0,0,0,0,0,0d7h,0,0 ; (6 cycles) + db 0,0,0,0 ; expected crc + tmsg ' m' + +; sp (1536 cycles) +incsp: db 0ffh ; flag mask + tstr 033h,0346fh,0d482h,0d169h,0deb6h,0a494h,0f476h,053h,002h,0855bh + tstr 008h,0,0,0,0,0,0,0,0,0f821h ; (256 cycles) + tstr 0,0,0,0,0,0,0,0d7h,0,0 ; (6 cycles) + db 0,0,0,0 ; expected crc + tmsg ' sp' + +; ld hl,(nnnn) (16 cycles) +ld162: db 0ffh ; flag mask + tstr <02ah,low msbt,high msbt>,09863h,07830h,02077h,0b1feh,0b9fah,0abb8h,004h,006h,06015h + tstr 0,0,0,0,0,0,0,0,0,0 ; (1 cycle) + tstr 0,-1,0,0,0,0,0,0,0,0 ; (16 cycles) + db 0,0,0,0 ; expected crc + tmsg 'lhld nnnn' + +; ld (nnnn),hl (16 cycles) +ld166: db 0ffh ; flag mask + tstr <022h,low msbt,high msbt>,0d003h,07772h,07f53h,03f72h,064eah,0e180h,010h,02dh,035e9h + tstr 0,0,0,0,0,0,0,0,0,0 ; (1 cycle) + tstr 0,0,0,0,-1,0,0,0,0,0 ; (16 cycles) + db 0,0,0,0 ; expected crc + tmsg 'shld nnnn' + +; ld ,nnnn (64 cycles) +ld16im: db 0ffh ; flag mask + tstr 1,05c1ch,02d46h,08eb9h,06078h,074b1h,0b30eh,046h,0d1h,030cch + tstr 030h,0,0,0,0,0,0,0,0,0 ; (4 cycles) + tstr <0,0ffh,0ffh>,0,0,0,0,0,0,0,0,0 ; (16 cycles) + db 0,0,0,0 ; expected crc + tmsg 'lxi ,nnnn' + +; ld a,<(bc),(de)> (44 cycles) +ld8bd: db 0ffh ; flag mask + tstr 00ah,0b3a8h,01d2ah,07f8eh,042ach,msbt,msbt,0c6h,0b1h,0ef8eh + tstr 010h,0,0,0,0,0,0,0,0,0 ; (2 cycles) + tstr 0,0ffh,0,0,0,0,0,0d7h,-1,0 ; (22 cycles) + db 0,0,0,0 ; expected crc + tmsg 'ldax ' + +; ld ,nn (64 cycles) +ld8im: db 0ffh ; flag mask + tstr 6,0c407h,0f49dh,0d13dh,00339h,0de89h,07455h,053h,0c0h,05509h + tstr 038h,0,0,0,0,0,0,0,0,0 ; (8 cycles) + tstr 0,0,0,0,0,0,0,0,-1,0 ; (8 cycles) + db 0,0,0,0 ; expected crc + tmsg 'mvi ,nn' + +; ld , (3456 cycles) +ld8rr: db 0ffh ; flag mask + tstr 040h,072a4h,0a024h,061ach,msbt,082c7h,0718fh,097h,08fh,0ef8eh + tstr 03fh,0,0,0,0,0,0,0,0,0 ; (64 cycles) + tstr 0,0ffh,0,0,0,-1,-1,0d7h,-1,0 ; (54 cycles) + db 0,0,0,0 ; expected crc + tmsg 'mov ,' + +; ld a,(nnnn) / ld (nnnn),a (44 cycles) +lda: db 0ffh ; flag mask + tstr <032h,low msbt,high msbt>,0fd68h,0f4ech,044a0h,0b543h,00653h,0cdbah,0d2h,04fh,01fd8h + tstr 008h,0,0,0,0,0,0,0,0,0 ; (2 cycle) + tstr 0,0ffh,0,0,0,0,0,0d7h,-1,0 ; (22 cycles) + db 0,0,0,0 ; expected crc + tmsg 'sta nnnn / lda nnnn' + +; (6144 cycles) +rot8080: db 0ffh ; flag mask + tstr 7,0cb92h,06d43h,00a90h,0c284h,00c53h,0f50eh,091h,0ebh,040fch + tstr 018h,0,0,0,0,0,0,0,-1,0 ; (1024 cycles) + tstr 0,0,0,0,0,0,0,0d7h,0,0 ; (6 cycles) + db 0,0,0,0 ; expected crc + tmsg '' + +; ld (),a (96 cycles) +stabd: db 0ffh ; flag mask + tstr 2,00c3bh,0b592h,06cffh,0959eh,msbt,msbt+1,0c1h,021h,0bde7h + tstr 018h,0,0,0,0,0,0,0,0,0 ; (4 cycles) + tstr 0,-1,0,0,0,0,0,0,-1,0 ; (24 cycles) + db 0,0,0,0 ; expected crc + tmsg 'stax ' + +; start test pointed to by (hl) +stt: push h + mov a,m ; get pointer to test + inx h + mov h,m + mov l,a + mov a,m ; flag mask + sta flgmsk+1 + inx h + push h + lxi d,20 + dad d ; point to incmask + lxi d,counter + call initmask + pop h + push h + lxi d,20+20 + dad d ; point to scanmask + lxi d,shifter + call initmask + lxi h,shifter + mvi m,1 ; first bit + pop h + push h + lxi d,iut ; copy initial instruction under test + lxi b,4 + +;#idb ldir replaced with following code +ldir1: mov a,m + stax d + inx h + inx d + dcx b + mov a,b + ora c + jnz ldir1 +;#idb + + lxi d,msbt ; copy initial machine state + lxi b,16 + +;#idb ldir replaced with following code +ldir2: mov a,m + stax d + inx h + inx d + dcx b + mov a,b + ora c + jnz ldir2 +;#idb + + lxi d,20+20+4 ; skip incmask, scanmask and expcrc + dad d + xchg + mvi c,9 + call bdos ; show test name + call initcrc ; initialise crc +; test loop +tlp: lda iut + cpi 076h ; pragmatically avoid halt intructions + jz tlp2 + ani 0dfh + cpi 0ddh + jnz tlp1 + lda iut+1 + cpi 076h +tlp1: cnz test ; execute the test instruction +tlp2: call count ; increment the counter + cnz shift ; shift the scan bit + pop h ; pointer to test case + jz tlp3 ; done if shift returned NZ + lxi d,20+20+20 + dad d ; point to expected crc + call cmpcrc + lxi d,okmsg + jz tlpok + lxi d,ermsg1 + mvi c,9 + call bdos + call phex8 + lxi d,ermsg2 + mvi c,9 + call bdos + lxi h,crcval + call phex8 + lxi d,crlf +tlpok: mvi c,9 + call bdos + pop h + inx h + inx h + ret + +tlp3: push h + mvi a,1 ; initialise count and shift scanners + sta cntbit + sta shfbit + lxi h,counter + shld cntbyt + lxi h,shifter + shld shfbyt + + mvi b,4 ; bytes in iut field + pop h ; pointer to test case + push h + lxi d,iut + call setup ; setup iut + mvi b,16 ; bytes in machine state + lxi d,msbt + call setup ; setup machine state + jmp tlp + +; setup a field of the test case +; b = number of bytes +; hl = pointer to base case +; de = destination +setup: call subyte + inx h + dcr b + jnz setup + ret + +subyte: push b + push d + push h + mov c,m ; get base byte + lxi d,20 + dad d ; point to incmask + mov a,m + cpi 0 + jz subshf + mvi b,8 ; 8 bits +subclp: rrc + push psw + mvi a,0 + cc nxtcbit ; get next counter bit if mask bit was set + xra c ; flip bit if counter bit was set + rrc + mov c,a + pop psw + dcr b + jnz subclp + mvi b,8 +subshf: lxi d,20 + dad d ; point to shift mask + mov a,m + cpi 0 + jz substr + mvi b,8 ; 8 bits +sbshf1: rrc + push psw + mvi a,0 + cc nxtsbit ; get next shifter bit if mask bit was set + xra c ; flip bit if shifter bit was set + rrc + mov c,a + pop psw + dcr b + jnz sbshf1 +substr: pop h + pop d + mov a,c + stax d ; mangled byte to destination + inx d + pop b + ret + +; get next counter bit in low bit of a +cntbit: ds 1 +cntbyt: ds 2 + +nxtcbit: push b + push h + lhld cntbyt + mov b,m + lxi h,cntbit + mov a,m + mov c,a + rlc + mov m,a + cpi 1 + jnz ncb1 + lhld cntbyt + inx h + shld cntbyt +ncb1: mov a,b + ana c + pop h + pop b + rz + mvi a,1 + ret + +; get next shifter bit in low bit of a +shfbit: ds 1 +shfbyt: ds 2 + +nxtsbit: push b + push h + lhld shfbyt + mov b,m + lxi h,shfbit + mov a,m + mov c,a + rlc + mov m,a + cpi 1 + jnz nsb1 + lhld shfbyt + inx h + shld shfbyt +nsb1: mov a,b + ana c + pop h + pop b + rz + mvi a,1 + ret + + +; clear memory at hl, bc bytes +clrmem: push psw + push b + push d + push h + mvi m,0 + mov d,h + mov e,l + inx d + dcx b + +;#idb ldir replaced with following code +ldir3: mov a,m + stax d + inx h + inx d + dcx b + mov a,b + ora c + jnz ldir3 +;#idb + + pop h + pop d + pop b + pop psw + ret + +; initialise counter or shifter +; de = pointer to work area for counter or shifter +; hl = pointer to mask +initmask: + push d + xchg + lxi b,20+20 + call clrmem ; clear work area + xchg + mvi b,20 ; byte counter + mvi c,1 ; first bit + mvi d,0 ; bit counter +imlp: mov e,m +imlp1: mov a,e + ana c + jz imlp2 + inr d +imlp2: mov a,c + rlc + mov c,a + cpi 1 + jnz imlp1 + inx h + dcr b + jnz imlp +; got number of 1-bits in mask in reg d + mov a,d + ani 0f8h + rrc + rrc + rrc ; divide by 8 (get byte offset) + mov l,a + mvi h,0 + mov a,d + ani 7 ; bit offset + inr a + mov b,a + mvi a,080h +imlp3: rlc + dcr b + jnz imlp3 + pop d + dad d + lxi d,20 + dad d + mov m,a + ret + +; multi-byte counter +count: push b + push d + push h + lxi h,counter ; 20 byte counter starts here + lxi d,20 ; somewhere in here is the stop bit + xchg + dad d + xchg +cntlp: inr m + mov a,m + cpi 0 + jz cntlp1 ; overflow to next byte + mov b,a + ldax d + ana b ; test for terminal value + jz cntend + mvi m,0 ; reset to zero +cntend: pop b + pop d + pop h + ret + +cntlp1: inx h + inx d + jmp cntlp + + +; multi-byte shifter +shift: push b + push d + push h + lxi h,shifter ; 20 byte shift register starts here + lxi d,20 ; somewhere in here is the stop bit + xchg + dad d + xchg +shflp: mov a,m + ora a + jz shflp1 + mov b,a + ldax d + ana b + jnz shlpe + mov a,b + rlc + cpi 1 + jnz shflp2 + mvi m,0 + inx h + inx d +shflp2: mov m,a + xra a ; set Z +shlpe: pop h + pop d + pop b + ret +shflp1: inx h + inx d + jmp shflp + +counter: ds 2*20 +shifter: ds 2*20 + +; test harness +test: push psw + push b + push d + push h + if 0 + lxi d,crlf + mvi c,9 + call bdos + lxi h,iut + mvi b,4 + call hexstr + mvi e,' ' + mvi c,2 + call bdos + mvi b,16 + lxi h,msbt + call hexstr + endif + di ; disable interrupts + +;#idb ld (spsav),sp replaced by following code +;#idb All registers and flages are immediately overwritten so +;#idb no need to preserve any state. + lxi h,0 ; save stack pointer + dad sp + shld spsav +;#idb + + lxi sp,msbt+2 ; point to test-case machine state + +;#idb pop iy +;#idb pop ix both replaced by following code +;#idb Just dummy out ix/iy with copies of hl + pop h ; and load all regs + pop h +;#idb + + pop h + pop d + pop b + pop psw + +;#idb ld sp,(spbt) replaced with the following code +;#idb HL is copied/restored before/after load so no state changed + shld temp + lhld spbt + sphl + lhld temp +;#idb + +iut: ds 4 ; max 4 byte instruction under test + +;#idb ld (spat),sp replaced with the following code +;#idb Must be very careful to preserve registers and flag +;#idb state resulting from the test. The temptation is to use the +;#idb stack - but that doesn't work because of the way the app +;#idb uses SP as a quick way of pointing to memory. +;#idb Bit of a code smell, but I can't think of an easier way. + shld temp + lxi h,0 + jc temp1 ;jump on the state of the C flag set in the test + + dad sp ;this code will clear the C flag (0 + nnnn = nc) + jmp temp2 ;C flag is same state as before + +temp1: dad sp ;this code will clear the C flag (0 + nnnn = nc) + stc ;C flage needs re-setting to preserve state + +temp2: shld spat + lhld temp +;#idb + + lxi sp,spat + push psw ; save other registers + push b + push d + push h + +;#idb push ix +;#idb push iy both replaced by following code +;#idb Must match change made to pops made before test + push h + push h +;#idb + +;#idb ld sp,(spsav) replaced with following code +;#idb No need to preserve state + lhld spsav ; restore stack pointer + sphl +;#idb + + ei ; enable interrupts + lhld msbt ; copy memory operand + shld msat + lxi h,flgsat ; flags after test + mov a,m +flgmsk: ani 0ffh ; mask-out irrelevant bits (self-modified code!) + mov m,a + mvi b,16 ; total of 16 bytes of state + lxi d,msat + lxi h,crcval +tcrc: ldax d + inx d + call updcrc ; accumulate crc of this test case + dcr b + jnz tcrc + if 0 + mvi e,' ' + mvi c,2 + call bdos + lxi h,crcval + call phex8 + lxi d,crlf + mvi c,9 + call bdos + lxi h,msat + mvi b,16 + call hexstr + lxi d,crlf + mvi c,9 + call bdos + endif + pop h + pop d + pop b + pop psw + ret + +;#idb Added to store HL state +temp: ds 2 +;#idb + +; machine state after test +msat: ds 14 ; memop,iy,ix,hl,de,bc,af +spat: ds 2 ; stack pointer after test +flgsat equ spat-2 ; flags + +spsav: ds 2 ; saved stack pointer + +; display hex string (pointer in hl, byte count in b) +hexstr: mov a,m + call phex2 + inx h + dcr b + jnz hexstr + ret + +; display hex +; display the big-endian 32-bit value pointed to by hl +phex8: push psw + push b + push h + mvi b,4 +ph8lp: mov a,m + call phex2 + inx h + dcr b + jnz ph8lp + pop h + pop b + pop psw + ret + +; display byte in a +phex2: push psw + rrc + rrc + rrc + rrc + call phex1 + pop psw +; fall through + +; display low nibble in a +phex1: push psw + push b + push d + push h + ani 0fh + cpi 10 + jc ph11 + adi 'a'-'9'-1 +ph11: adi '0' + mov e,a + mvi c,2 + call bdos + pop h + pop d + pop b + pop psw + ret + +bdos: push psw + push b + push d + push h + call 5 + pop h + pop d + pop b + pop psw + ret + +msg1: db '8080 instruction exerciser',10,13,'$' +msg2: db 'Tests complete$' +okmsg: db ' OK',10,13,'$' +ermsg1: db ' ERROR **** crc expected:$' +ermsg2: db ' found:$' +crlf: db 10,13,'$' + +; compare crc +; hl points to value to compare to crcval +cmpcrc: push b + push d + push h + lxi d,crcval + mvi b,4 +cclp: ldax d + cmp m + jnz cce + inx h + inx d + dcr b + jnz cclp +cce: pop h + pop d + pop b + ret + +; 32-bit crc routine +; entry: a contains next byte, hl points to crc +; exit: crc updated +updcrc: push psw + push b + push d + push h + push h + lxi d,3 + dad d ; point to low byte of old crc + xra m ; xor with new byte + mov l,a + mvi h,0 + dad h ; use result as index into table of 4 byte entries + dad h + xchg + lxi h,crctab + dad d ; point to selected entry in crctab + xchg + pop h + lxi b,4 ; c = byte count, b = accumulator +crclp: ldax d + xra b + mov b,m + mov m,a + inx d + inx h + dcr c + jnz crclp + if 0 + lxi h,crcval + call phex8 + lxi d,crlf + mvi c,9 + call bdos + endif + pop h + pop d + pop b + pop psw + ret + +initcrc:push psw + push b + push h + lxi h,crcval + mvi a,0ffh + mvi b,4 +icrclp: mov m,a + inx h + dcr b + jnz icrclp + pop h + pop b + pop psw + ret + +crcval: ds 4 + +crctab: db 000h,000h,000h,000h + db 077h,007h,030h,096h + db 0eeh,00eh,061h,02ch + db 099h,009h,051h,0bah + db 007h,06dh,0c4h,019h + db 070h,06ah,0f4h,08fh + db 0e9h,063h,0a5h,035h + db 09eh,064h,095h,0a3h + db 00eh,0dbh,088h,032h + db 079h,0dch,0b8h,0a4h + db 0e0h,0d5h,0e9h,01eh + db 097h,0d2h,0d9h,088h + db 009h,0b6h,04ch,02bh + db 07eh,0b1h,07ch,0bdh + db 0e7h,0b8h,02dh,007h + db 090h,0bfh,01dh,091h + db 01dh,0b7h,010h,064h + db 06ah,0b0h,020h,0f2h + db 0f3h,0b9h,071h,048h + db 084h,0beh,041h,0deh + db 01ah,0dah,0d4h,07dh + db 06dh,0ddh,0e4h,0ebh + db 0f4h,0d4h,0b5h,051h + db 083h,0d3h,085h,0c7h + db 013h,06ch,098h,056h + db 064h,06bh,0a8h,0c0h + db 0fdh,062h,0f9h,07ah + db 08ah,065h,0c9h,0ech + db 014h,001h,05ch,04fh + db 063h,006h,06ch,0d9h + db 0fah,00fh,03dh,063h + db 08dh,008h,00dh,0f5h + db 03bh,06eh,020h,0c8h + db 04ch,069h,010h,05eh + db 0d5h,060h,041h,0e4h + db 0a2h,067h,071h,072h + db 03ch,003h,0e4h,0d1h + db 04bh,004h,0d4h,047h + db 0d2h,00dh,085h,0fdh + db 0a5h,00ah,0b5h,06bh + db 035h,0b5h,0a8h,0fah + db 042h,0b2h,098h,06ch + db 0dbh,0bbh,0c9h,0d6h + db 0ach,0bch,0f9h,040h + db 032h,0d8h,06ch,0e3h + db 045h,0dfh,05ch,075h + db 0dch,0d6h,00dh,0cfh + db 0abh,0d1h,03dh,059h + db 026h,0d9h,030h,0ach + db 051h,0deh,000h,03ah + db 0c8h,0d7h,051h,080h + db 0bfh,0d0h,061h,016h + db 021h,0b4h,0f4h,0b5h + db 056h,0b3h,0c4h,023h + db 0cfh,0bah,095h,099h + db 0b8h,0bdh,0a5h,00fh + db 028h,002h,0b8h,09eh + db 05fh,005h,088h,008h + db 0c6h,00ch,0d9h,0b2h + db 0b1h,00bh,0e9h,024h + db 02fh,06fh,07ch,087h + db 058h,068h,04ch,011h + db 0c1h,061h,01dh,0abh + db 0b6h,066h,02dh,03dh + db 076h,0dch,041h,090h + db 001h,0dbh,071h,006h + db 098h,0d2h,020h,0bch + db 0efh,0d5h,010h,02ah + db 071h,0b1h,085h,089h + db 006h,0b6h,0b5h,01fh + db 09fh,0bfh,0e4h,0a5h + db 0e8h,0b8h,0d4h,033h + db 078h,007h,0c9h,0a2h + db 00fh,000h,0f9h,034h + db 096h,009h,0a8h,08eh + db 0e1h,00eh,098h,018h + db 07fh,06ah,00dh,0bbh + db 008h,06dh,03dh,02dh + db 091h,064h,06ch,097h + db 0e6h,063h,05ch,001h + db 06bh,06bh,051h,0f4h + db 01ch,06ch,061h,062h + db 085h,065h,030h,0d8h + db 0f2h,062h,000h,04eh + db 06ch,006h,095h,0edh + db 01bh,001h,0a5h,07bh + db 082h,008h,0f4h,0c1h + db 0f5h,00fh,0c4h,057h + db 065h,0b0h,0d9h,0c6h + db 012h,0b7h,0e9h,050h + db 08bh,0beh,0b8h,0eah + db 0fch,0b9h,088h,07ch + db 062h,0ddh,01dh,0dfh + db 015h,0dah,02dh,049h + db 08ch,0d3h,07ch,0f3h + db 0fbh,0d4h,04ch,065h + db 04dh,0b2h,061h,058h + db 03ah,0b5h,051h,0ceh + db 0a3h,0bch,000h,074h + db 0d4h,0bbh,030h,0e2h + db 04ah,0dfh,0a5h,041h + db 03dh,0d8h,095h,0d7h + db 0a4h,0d1h,0c4h,06dh + db 0d3h,0d6h,0f4h,0fbh + db 043h,069h,0e9h,06ah + db 034h,06eh,0d9h,0fch + db 0adh,067h,088h,046h + db 0dah,060h,0b8h,0d0h + db 044h,004h,02dh,073h + db 033h,003h,01dh,0e5h + db 0aah,00ah,04ch,05fh + db 0ddh,00dh,07ch,0c9h + db 050h,005h,071h,03ch + db 027h,002h,041h,0aah + db 0beh,00bh,010h,010h + db 0c9h,00ch,020h,086h + db 057h,068h,0b5h,025h + db 020h,06fh,085h,0b3h + db 0b9h,066h,0d4h,009h + db 0ceh,061h,0e4h,09fh + db 05eh,0deh,0f9h,00eh + db 029h,0d9h,0c9h,098h + db 0b0h,0d0h,098h,022h + db 0c7h,0d7h,0a8h,0b4h + db 059h,0b3h,03dh,017h + db 02eh,0b4h,00dh,081h + db 0b7h,0bdh,05ch,03bh + db 0c0h,0bah,06ch,0adh + db 0edh,0b8h,083h,020h + db 09ah,0bfh,0b3h,0b6h + db 003h,0b6h,0e2h,00ch + db 074h,0b1h,0d2h,09ah + db 0eah,0d5h,047h,039h + db 09dh,0d2h,077h,0afh + db 004h,0dbh,026h,015h + db 073h,0dch,016h,083h + db 0e3h,063h,00bh,012h + db 094h,064h,03bh,084h + db 00dh,06dh,06ah,03eh + db 07ah,06ah,05ah,0a8h + db 0e4h,00eh,0cfh,00bh + db 093h,009h,0ffh,09dh + db 00ah,000h,0aeh,027h + db 07dh,007h,09eh,0b1h + db 0f0h,00fh,093h,044h + db 087h,008h,0a3h,0d2h + db 01eh,001h,0f2h,068h + db 069h,006h,0c2h,0feh + db 0f7h,062h,057h,05dh + db 080h,065h,067h,0cbh + db 019h,06ch,036h,071h + db 06eh,06bh,006h,0e7h + db 0feh,0d4h,01bh,076h + db 089h,0d3h,02bh,0e0h + db 010h,0dah,07ah,05ah + db 067h,0ddh,04ah,0cch + db 0f9h,0b9h,0dfh,06fh + db 08eh,0beh,0efh,0f9h + db 017h,0b7h,0beh,043h + db 060h,0b0h,08eh,0d5h + db 0d6h,0d6h,0a3h,0e8h + db 0a1h,0d1h,093h,07eh + db 038h,0d8h,0c2h,0c4h + db 04fh,0dfh,0f2h,052h + db 0d1h,0bbh,067h,0f1h + db 0a6h,0bch,057h,067h + db 03fh,0b5h,006h,0ddh + db 048h,0b2h,036h,04bh + db 0d8h,00dh,02bh,0dah + db 0afh,00ah,01bh,04ch + db 036h,003h,04ah,0f6h + db 041h,004h,07ah,060h + db 0dfh,060h,0efh,0c3h + db 0a8h,067h,0dfh,055h + db 031h,06eh,08eh,0efh + db 046h,069h,0beh,079h + db 0cbh,061h,0b3h,08ch + db 0bch,066h,083h,01ah + db 025h,06fh,0d2h,0a0h + db 052h,068h,0e2h,036h + db 0cch,00ch,077h,095h + db 0bbh,00bh,047h,003h + db 022h,002h,016h,0b9h + db 055h,005h,026h,02fh + db 0c5h,0bah,03bh,0beh + db 0b2h,0bdh,00bh,028h + db 02bh,0b4h,05ah,092h + db 05ch,0b3h,06ah,004h + db 0c2h,0d7h,0ffh,0a7h + db 0b5h,0d0h,0cfh,031h + db 02ch,0d9h,09eh,08bh + db 05bh,0deh,0aeh,01dh + db 09bh,064h,0c2h,0b0h + db 0ech,063h,0f2h,026h + db 075h,06ah,0a3h,09ch + db 002h,06dh,093h,00ah + db 09ch,009h,006h,0a9h + db 0ebh,00eh,036h,03fh + db 072h,007h,067h,085h + db 005h,000h,057h,013h + db 095h,0bfh,04ah,082h + db 0e2h,0b8h,07ah,014h + db 07bh,0b1h,02bh,0aeh + db 00ch,0b6h,01bh,038h + db 092h,0d2h,08eh,09bh + db 0e5h,0d5h,0beh,00dh + db 07ch,0dch,0efh,0b7h + db 00bh,0dbh,0dfh,021h + db 086h,0d3h,0d2h,0d4h + db 0f1h,0d4h,0e2h,042h + db 068h,0ddh,0b3h,0f8h + db 01fh,0dah,083h,06eh + db 081h,0beh,016h,0cdh + db 0f6h,0b9h,026h,05bh + db 06fh,0b0h,077h,0e1h + db 018h,0b7h,047h,077h + db 088h,008h,05ah,0e6h + db 0ffh,00fh,06ah,070h + db 066h,006h,03bh,0cah + db 011h,001h,00bh,05ch + db 08fh,065h,09eh,0ffh + db 0f8h,062h,0aeh,069h + db 061h,06bh,0ffh,0d3h + db 016h,06ch,0cfh,045h + db 0a0h,00ah,0e2h,078h + db 0d7h,00dh,0d2h,0eeh + db 04eh,004h,083h,054h + db 039h,003h,0b3h,0c2h + db 0a7h,067h,026h,061h + db 0d0h,060h,016h,0f7h + db 049h,069h,047h,04dh + db 03eh,06eh,077h,0dbh + db 0aeh,0d1h,06ah,04ah + db 0d9h,0d6h,05ah,0dch + db 040h,0dfh,00bh,066h + db 037h,0d8h,03bh,0f0h + db 0a9h,0bch,0aeh,053h + db 0deh,0bbh,09eh,0c5h + db 047h,0b2h,0cfh,07fh + db 030h,0b5h,0ffh,0e9h + db 0bdh,0bdh,0f2h,01ch + db 0cah,0bah,0c2h,08ah + db 053h,0b3h,093h,030h + db 024h,0b4h,0a3h,0a6h + db 0bah,0d0h,036h,005h + db 0cdh,0d7h,006h,093h + db 054h,0deh,057h,029h + db 023h,0d9h,067h,0bfh + db 0b3h,066h,07ah,02eh + db 0c4h,061h,04ah,0b8h + db 05dh,068h,01bh,002h + db 02ah,06fh,02bh,094h + db 0b4h,00bh,0beh,037h + db 0c3h,00ch,08eh,0a1h + db 05ah,005h,0dfh,01bh + db 02dh,002h,0efh,08dh + + end + \ No newline at end of file diff --git a/devices/pc8080/rom/test/8080EXER.json b/devices/pc8080/rom/test/8080EXER.json new file mode 100644 index 000000000..e29308c6c --- /dev/null +++ b/devices/pc8080/rom/test/8080EXER.json @@ -0,0 +1,290 @@ +{"bytes":[ +195,19,1,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,42,6,0,249,17,246,13,14,9,205,234,13,33, +58,1,126,35,182,202,47,1,43,205,206,10,195,34,1,17, +19,14,14,9,205,234,13,195,0,0,110,1,206,1,46,2, +142,2,238,2,78,3,174,3,14,4,110,4,206,4,46,5, +142,5,238,5,78,6,174,6,14,7,110,7,206,7,46,8, +142,8,238,8,78,9,174,9,14,10,110,10,0,0,255,9, +0,0,0,165,196,199,196,38,210,80,160,234,88,102,133,198, +222,201,155,48,0,0,0,0,0,0,0,0,0,33,248,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,255,255,255,255,255,255,215,0,255,255,0,0,0,0,100, +97,100,32,60,98,44,100,44,104,44,115,112,62,46,46,46, +46,46,46,46,46,46,46,46,46,46,46,46,46,36,255,198, +0,0,0,64,145,60,126,103,122,109,223,97,91,41,11,16, +102,178,133,56,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,255,0,0,0,255,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,97, +108,117,111,112,32,110,110,46,46,46,46,46,46,46,46,46, +46,46,46,46,46,46,46,46,46,46,46,46,46,36,255,128, +0,0,0,62,197,58,87,77,76,3,1,9,227,102,166,208, +59,187,173,63,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,255,0,0,0,0,0,0,255,0,0,0,0, +0,0,0,255,255,255,255,215,0,0,0,0,0,0,0,97, +108,117,111,112,32,60,98,44,99,44,100,44,101,44,104,44, +108,44,109,44,97,62,46,46,46,46,46,46,46,36,255,39, +0,0,0,65,33,250,9,96,29,89,165,91,141,121,144,4, +142,157,41,24,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,215,255,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60, +100,97,97,44,99,109,97,44,115,116,99,44,99,109,99,62, +46,46,46,46,46,46,46,46,46,46,46,46,46,36,255,60, +0,0,0,223,74,216,213,152,229,43,138,176,167,27,67,68, +90,48,208,1,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,60, +105,110,114,44,100,99,114,62,32,97,46,46,46,46,46,46, +46,46,46,46,46,46,46,46,46,46,46,46,46,36,255,4, +0,0,0,35,214,45,67,97,122,128,129,134,90,133,30,134, +88,187,155,1,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,60, +105,110,114,44,100,99,114,62,32,98,46,46,46,46,46,46, +46,46,46,46,46,46,46,46,46,46,46,46,46,36,255,3, +0,0,0,151,205,171,68,201,141,227,227,204,17,164,232,2, +73,77,42,8,0,0,0,0,0,0,0,0,0,0,0,0, +0,33,248,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,60, +105,110,120,44,100,99,120,62,32,98,46,46,46,46,46,46, +46,46,46,46,46,46,46,46,46,46,46,46,46,36,255,12, +0,0,0,137,215,53,9,91,5,133,159,39,139,8,210,149, +5,96,6,1,0,0,0,0,0,0,0,0,0,0,0,0, +0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,60, +105,110,114,44,100,99,114,62,32,99,46,46,46,46,46,46, +46,46,46,46,46,46,46,46,46,46,46,46,46,36,255,20, +0,0,0,234,160,186,95,251,101,28,152,204,56,188,222,67, +92,189,3,1,0,0,0,0,0,0,0,0,0,0,0,0, +255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,60, +105,110,114,44,100,99,114,62,32,100,46,46,46,46,46,46, +46,46,46,46,46,46,46,46,46,46,46,46,46,36,255,19, +0,0,0,46,52,29,19,201,40,202,10,103,153,46,58,146, +246,84,157,8,0,0,0,0,0,0,0,0,0,0,0,33, +248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,60, +105,110,120,44,100,99,120,62,32,100,46,46,46,46,46,46, +46,46,46,46,46,46,46,46,46,46,46,46,46,36,255,28, +0,0,0,47,96,13,76,2,36,245,226,244,160,10,161,19, +50,37,89,1,0,0,0,0,0,0,0,0,0,0,0,255, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,60, +105,110,114,44,100,99,114,62,32,101,46,46,46,46,46,46, +46,46,46,46,46,46,46,46,46,46,46,46,46,36,255,36, +0,0,0,6,21,235,242,221,232,43,38,166,17,26,188,23, +6,24,40,1,0,0,0,0,0,0,0,0,0,0,255,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,60, +105,110,114,44,100,99,114,62,32,104,46,46,46,46,46,46, +46,46,46,46,46,46,46,46,46,46,46,46,46,36,255,35, +0,0,0,244,195,165,7,109,27,4,79,194,226,42,130,87, +224,225,195,8,0,0,0,0,0,0,0,0,0,33,248,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,60, +105,110,120,44,100,99,120,62,32,104,46,46,46,46,46,46, +46,46,46,46,46,46,46,46,46,46,46,46,46,36,255,44, +0,0,0,49,128,32,165,86,67,9,180,193,244,162,223,209, +60,162,62,1,0,0,0,0,0,0,0,0,0,255,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,60, +105,110,114,44,100,99,114,62,32,108,46,46,46,46,46,46, +46,46,46,46,46,46,46,46,46,46,46,46,46,36,255,52, +0,0,0,86,184,124,12,62,229,3,1,126,135,88,218,21, +92,55,31,1,0,0,0,255,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,60, +105,110,114,44,100,99,114,62,32,109,46,46,46,46,46,46, +46,46,46,46,46,46,46,46,46,46,46,46,46,36,255,51, +0,0,0,111,52,130,212,105,209,182,222,148,164,118,244,83, +2,91,133,8,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,33,248,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,60, +105,110,120,44,100,99,120,62,32,115,112,46,46,46,46,46, +46,46,46,46,46,46,46,46,46,46,46,46,46,36,255,42, +3,1,0,99,152,48,120,119,32,254,177,250,185,184,171,4, +6,21,96,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,255,255,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108, +104,108,100,32,110,110,110,110,46,46,46,46,46,46,46,46, +46,46,46,46,46,46,46,46,46,46,46,46,46,36,255,34, +3,1,0,3,208,114,119,83,127,114,63,234,100,128,225,16, +45,233,53,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,255,255,0,0,0,0,0,0,0,0,0,0,0,0,115, +104,108,100,32,110,110,110,110,46,46,46,46,46,46,46,46, +46,46,46,46,46,46,46,46,46,46,46,46,46,36,255,1, +0,0,0,28,92,70,45,185,142,120,96,177,116,14,179,70, +209,204,48,48,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,255,255,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108, +120,105,32,60,98,44,100,44,104,44,115,112,62,44,110,110, +110,110,46,46,46,46,46,46,46,46,46,46,46,36,255,10, +0,0,0,168,179,42,29,142,127,172,66,3,1,3,1,198, +177,142,239,16,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0, +0,0,0,0,0,0,0,215,255,0,0,0,0,0,0,108, +100,97,120,32,60,98,44,100,62,46,46,46,46,46,46,46, +46,46,46,46,46,46,46,46,46,46,46,46,46,36,255,6, +0,0,0,7,196,157,244,61,209,57,3,137,222,85,116,83, +192,9,85,56,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,109, +118,105,32,60,98,44,99,44,100,44,101,44,104,44,108,44, +109,44,97,62,44,110,110,46,46,46,46,46,46,36,255,64, +0,0,0,164,114,36,160,172,97,3,1,199,130,143,113,151, +143,142,239,63,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0, +0,0,0,255,255,255,255,215,255,0,0,0,0,0,0,109, +111,118,32,60,98,99,100,101,104,108,97,62,44,60,98,99, +100,101,104,108,97,62,46,46,46,46,46,46,46,36,255,50, +3,1,0,104,253,236,244,160,68,67,181,83,6,186,205,210, +79,216,31,8,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0, +0,0,0,0,0,0,0,215,255,0,0,0,0,0,0,115, +116,97,32,110,110,110,110,32,47,32,108,100,97,32,110,110, +110,110,46,46,46,46,46,46,46,46,46,46,46,36,255,7, +0,0,0,146,203,67,109,144,10,132,194,83,12,14,245,145, +235,252,64,24,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,215,0,0,0,0,0,0,0,60, +114,108,99,44,114,114,99,44,114,97,108,44,114,97,114,62, +46,46,46,46,46,46,46,46,46,46,46,46,46,36,255,2, +0,0,0,59,12,146,181,255,108,158,149,3,1,4,1,193, +33,231,189,24,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,255,255,0,0,0, +0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,115, +116,97,120,32,60,98,44,100,62,46,46,46,46,46,46,46, +46,46,46,46,46,46,46,46,46,46,46,46,46,36,229,126, +35,102,111,126,50,127,13,35,229,17,20,0,25,17,222,12, +205,77,12,225,229,17,40,0,25,17,6,13,205,77,12,33, +6,13,54,1,225,229,17,77,13,1,4,0,126,18,35,19, +11,120,177,194,252,10,17,3,1,1,16,0,126,18,35,19, +11,120,177,194,12,11,17,44,0,25,235,14,9,205,234,13, +205,142,14,58,77,13,254,118,202,58,11,230,223,254,221,194, +55,11,58,78,13,254,118,196,46,13,205,141,12,196,177,12, +225,202,118,11,17,60,0,25,205,79,14,17,34,14,202,109, +11,17,41,14,14,9,205,234,13,205,181,13,17,68,14,14, +9,205,234,13,33,162,14,205,181,13,17,76,14,14,9,205, +234,13,225,35,35,201,229,62,1,50,236,11,50,16,12,33, +222,12,34,237,11,33,6,13,34,17,12,6,4,225,229,17, +77,13,205,160,11,6,16,17,3,1,205,160,11,195,35,11, +205,169,11,35,5,194,160,11,201,197,213,229,78,17,20,0, +25,126,254,0,202,202,11,6,8,15,245,62,0,220,239,11, +169,15,79,241,5,194,185,11,6,8,17,20,0,25,126,254, +0,202,229,11,6,8,15,245,62,0,220,19,12,169,15,79, +241,5,194,214,11,225,209,121,18,19,193,201,0,0,0,197, +229,42,237,11,70,33,236,11,126,79,7,119,254,1,194,8, +12,42,237,11,35,34,237,11,120,161,225,193,200,62,1,201, +0,0,0,197,229,42,17,12,70,33,16,12,126,79,7,119, +254,1,194,44,12,42,17,12,35,34,17,12,120,161,225,193, +200,62,1,201,245,197,213,229,54,0,84,93,19,11,126,18, +35,19,11,120,177,194,62,12,225,209,193,241,201,213,235,1, +40,0,205,52,12,235,6,20,14,1,22,0,94,123,161,202, +99,12,20,121,7,79,254,1,194,93,12,35,5,194,92,12, +122,230,248,15,15,15,111,38,0,122,230,7,60,71,62,128, +7,5,194,128,12,209,25,17,20,0,25,119,201,197,213,229, +33,222,12,17,20,0,235,25,235,52,126,254,0,202,172,12, +71,26,160,202,168,12,54,0,193,209,225,201,35,19,195,153, +12,197,213,229,33,6,13,17,20,0,235,25,235,126,183,202, +217,12,71,26,160,194,213,12,120,7,254,1,194,211,12,54, +0,35,19,119,175,225,209,193,201,35,19,195,189,12,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,245,197, +213,229,243,33,0,0,57,34,169,13,49,5,1,225,225,225, +209,193,241,34,151,13,42,17,1,249,42,151,13,0,0,0, +0,34,151,13,33,0,0,218,94,13,57,195,96,13,57,55, +34,167,13,42,151,13,49,167,13,245,197,213,229,229,229,42, +169,13,249,251,42,3,1,34,153,13,33,165,13,126,230,255, +119,6,16,17,153,13,33,162,14,26,19,205,102,14,5,194, +137,13,225,209,193,241,201,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,126,205,199,13,35, +5,194,171,13,201,245,197,229,6,4,126,205,199,13,35,5, +194,186,13,225,193,241,201,245,15,15,15,15,205,208,13,241, +245,197,213,229,230,15,254,10,218,221,13,198,39,198,48,95, +14,2,205,234,13,225,209,193,241,201,245,197,213,229,205,5, +0,225,209,193,241,201,56,48,56,48,32,105,110,115,116,114, +117,99,116,105,111,110,32,101,120,101,114,99,105,115,101,114, +10,13,36,84,101,115,116,115,32,99,111,109,112,108,101,116, +101,36,32,32,79,75,10,13,36,32,32,69,82,82,79,82, +32,42,42,42,42,32,99,114,99,32,101,120,112,101,99,116, +101,100,58,36,32,102,111,117,110,100,58,36,10,13,36,197, +213,229,17,162,14,6,4,26,190,194,98,14,35,19,5,194, +87,14,225,209,193,201,245,197,213,229,229,17,3,0,25,174, +111,38,0,41,41,235,33,166,14,25,235,225,1,4,0,26, +168,70,119,19,35,13,194,127,14,225,209,193,241,201,245,197, +229,33,162,14,62,255,6,4,119,35,5,194,152,14,225,193, +241,201,0,0,0,0,0,0,0,0,119,7,48,150,238,14, +97,44,153,9,81,186,7,109,196,25,112,106,244,143,233,99, +165,53,158,100,149,163,14,219,136,50,121,220,184,164,224,213, +233,30,151,210,217,136,9,182,76,43,126,177,124,189,231,184, +45,7,144,191,29,145,29,183,16,100,106,176,32,242,243,185, +113,72,132,190,65,222,26,218,212,125,109,221,228,235,244,212, +181,81,131,211,133,199,19,108,152,86,100,107,168,192,253,98, +249,122,138,101,201,236,20,1,92,79,99,6,108,217,250,15, +61,99,141,8,13,245,59,110,32,200,76,105,16,94,213,96, +65,228,162,103,113,114,60,3,228,209,75,4,212,71,210,13, +133,253,165,10,181,107,53,181,168,250,66,178,152,108,219,187, +201,214,172,188,249,64,50,216,108,227,69,223,92,117,220,214, +13,207,171,209,61,89,38,217,48,172,81,222,0,58,200,215, +81,128,191,208,97,22,33,180,244,181,86,179,196,35,207,186, +149,153,184,189,165,15,40,2,184,158,95,5,136,8,198,12, +217,178,177,11,233,36,47,111,124,135,88,104,76,17,193,97, +29,171,182,102,45,61,118,220,65,144,1,219,113,6,152,210, +32,188,239,213,16,42,113,177,133,137,6,182,181,31,159,191, +228,165,232,184,212,51,120,7,201,162,15,0,249,52,150,9, +168,142,225,14,152,24,127,106,13,187,8,109,61,45,145,100, +108,151,230,99,92,1,107,107,81,244,28,108,97,98,133,101, +48,216,242,98,0,78,108,6,149,237,27,1,165,123,130,8, +244,193,245,15,196,87,101,176,217,198,18,183,233,80,139,190, +184,234,252,185,136,124,98,221,29,223,21,218,45,73,140,211, +124,243,251,212,76,101,77,178,97,88,58,181,81,206,163,188, +0,116,212,187,48,226,74,223,165,65,61,216,149,215,164,209, +196,109,211,214,244,251,67,105,233,106,52,110,217,252,173,103, +136,70,218,96,184,208,68,4,45,115,51,3,29,229,170,10, +76,95,221,13,124,201,80,5,113,60,39,2,65,170,190,11, +16,16,201,12,32,134,87,104,181,37,32,111,133,179,185,102, +212,9,206,97,228,159,94,222,249,14,41,217,201,152,176,208, +152,34,199,215,168,180,89,179,61,23,46,180,13,129,183,189, +92,59,192,186,108,173,237,184,131,32,154,191,179,182,3,182, +226,12,116,177,210,154,234,213,71,57,157,210,119,175,4,219, +38,21,115,220,22,131,227,99,11,18,148,100,59,132,13,109, +106,62,122,106,90,168,228,14,207,11,147,9,255,157,10,0, +174,39,125,7,158,177,240,15,147,68,135,8,163,210,30,1, +242,104,105,6,194,254,247,98,87,93,128,101,103,203,25,108, +54,113,110,107,6,231,254,212,27,118,137,211,43,224,16,218, +122,90,103,221,74,204,249,185,223,111,142,190,239,249,23,183, +190,67,96,176,142,213,214,214,163,232,161,209,147,126,56,216, +194,196,79,223,242,82,209,187,103,241,166,188,87,103,63,181, +6,221,72,178,54,75,216,13,43,218,175,10,27,76,54,3, +74,246,65,4,122,96,223,96,239,195,168,103,223,85,49,110, +142,239,70,105,190,121,203,97,179,140,188,102,131,26,37,111, +210,160,82,104,226,54,204,12,119,149,187,11,71,3,34,2, +22,185,85,5,38,47,197,186,59,190,178,189,11,40,43,180, +90,146,92,179,106,4,194,215,255,167,181,208,207,49,44,217, +158,139,91,222,174,29,155,100,194,176,236,99,242,38,117,106, +163,156,2,109,147,10,156,9,6,169,235,14,54,63,114,7, +103,133,5,0,87,19,149,191,74,130,226,184,122,20,123,177, +43,174,12,182,27,56,146,210,142,155,229,213,190,13,124,220, +239,183,11,219,223,33,134,211,210,212,241,212,226,66,104,221, +179,248,31,218,131,110,129,190,22,205,246,185,38,91,111,176, +119,225,24,183,71,119,136,8,90,230,255,15,106,112,102,6, +59,202,17,1,11,92,143,101,158,255,248,98,174,105,97,107, +255,211,22,108,207,69,160,10,226,120,215,13,210,238,78,4, +131,84,57,3,179,194,167,103,38,97,208,96,22,247,73,105, +71,77,62,110,119,219,174,209,106,74,217,214,90,220,64,223, +11,102,55,216,59,240,169,188,174,83,222,187,158,197,71,178, +207,127,48,181,255,233,189,189,242,28,202,186,194,138,83,179, +147,48,36,180,163,166,186,208,54,5,205,215,6,147,84,222, +87,41,35,217,103,191,179,102,122,46,196,97,74,184,93,104, +27,2,42,111,43,148,180,11,190,55,195,12,142,161,90,5, +223,27,45,2,239,141,160,10,226,120,215,13,210,238,78,4, +131,84,57,3,179,194,167,103,38,97,208,96,22,247,73,105, +71,77,62,110,119,219,174,209,106,74,217,214,90,220,64,223, +11,102,55,216,59,240,169,188,174,83,222,187,158,197,71,178, +207,127,48,181,255,233,189,189,242,28,202,186,194,138,83,179, +147,48,36,180,163,166,186,208,54,5,205,215,6,147,84,222] +} \ No newline at end of file diff --git a/devices/pc8080/rom/test/8080PRE.MAC b/devices/pc8080/rom/test/8080PRE.MAC new file mode 100644 index 000000000..147dfe8ae --- /dev/null +++ b/devices/pc8080/rom/test/8080PRE.MAC @@ -0,0 +1,291 @@ + title 'Preliminary Z80 tests' + +; prelim.z80 - Preliminary Z80 tests +; Copyright (C) 1994 Frank D. Cringle +; +; This program is free software; you can redistribute it and/or +; modify it under the terms of the GNU General Public License +; as published by the Free Software Foundation; either version 2 +; of the License, or (at your option) any later version. +; +; This program is distributed in the hope that it will be useful, +; but WITHOUT ANY WARRANTY; without even the implied warranty of +; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +; GNU General Public License for more details. +; +; You should have received a copy of the GNU General Public License +; along with this program; if not, write to the Free Software +; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + + +; These tests have two goals. To start with, we assume the worst and +; successively test the instructions needed to continue testing. +; Then we try to test all instructions which cannot be handled by +; zexlax - the crc-based instruction exerciser. + +; Initially errors are 'reported' by jumping to 0. This should reboot +; cp/m, so if the program terminates without any output one of the +; early tests failed. Later errors are reported by outputting an +; address via the bdos conout routine. The address can be located in +; a listing of this program. + +; If the program runs to completion it displays a suitable message. + +;****************************************************************************** +; +; Modified by Ian Bartholomew to run a preliminary test on an 8080 CPU +; +; Assemble using M80 +; +;****************************************************************************** + + .8080 + aseg + org 100h + +start: mvi a,1 ; test simple compares and z/nz jumps + cpi 2 + jz 0 + cpi 1 + jnz 0 + jmp lab0 + hlt ; emergency exit + db 0ffh + +lab0: call lab2 ; does a simple call work? +lab1: jmp 0 ; fail + +lab2: pop h ; check return address + mov a,h + cpi high lab1 + jz lab3 + jmp 0 +lab3: mov a,l + cpi low lab1 + jz lab4 + jmp 0 + +; test presence and uniqueness of all machine registers +; (except ir) +lab4: lxi sp,regs1 + pop psw + pop b + pop d + pop h + lxi sp,regs2+8 + push h + push d + push b + push psw + +v defl 0 + rept 8 + lda regs2+v/2 +v defl v+2 + cpi v + jnz 0 + endm + +; test access to memory via (hl) + lxi h,hlval + mov a,m + cpi 0a5h + jnz 0 + lxi h,hlval+1 + mov a,m + cpi 03ch + jnz 0 + +; test unconditional return + lxi sp,stack + lxi h,reta + push h + ret + jmp 0 + +; test instructions needed for hex output +reta: mvi a,0ffh + ani 0fh + cpi 0fh + jnz 0 + mvi a,05ah + ani 0fh + cpi 0ah + jnz 0 + rrc + cpi 05h + jnz 0 + rrc + cpi 82h + jnz 0 + rrc + cpi 41h + jnz 0 + rrc + cpi 0a0h + jnz 0 + lxi h,01234h + push h + pop b + mov a,b + cpi 12h + jnz 0 + mov a,c + cpi 34h + jnz 0 + +; from now on we can report errors by displaying an address + +; test conditional call, ret, jp, jr +tcond macro flag,pcond,ncond,rel + lxi h,&flag + push h + pop psw + c&pcond lab1&pcond + jmp error +lab1&pcond: pop h + lxi h,0d7h xor &flag + push h + pop psw + c&ncond lab2&pcond + jmp error +lab2&pcond: pop h + lxi h,lab3&pcond + push h + lxi h,&flag + push h + pop psw + r&pcond + call error +lab3&pcond: lxi h,lab4&pcond + push h + lxi h,0d7h xor &flag + push h + pop psw + r&ncond + call error +lab4&pcond: lxi h,&flag + push h + pop psw + j&pcond lab5&pcond + call error +lab5&pcond: lxi h,0d7h xor &flag + push h + pop psw + j&ncond lab6&pcond + call error +lab6&pcond: + endm + + tcond 1,c,nc,1 + tcond 4,pe,po,0 + tcond 040h,z,nz,1 + tcond 080h,m,p,0 + +; test indirect jumps + lxi h,lab7 + pchl + call error + +; djnz (and (partially) inc a, inc hl) +lab7: mvi a,0a5h + mvi b,4 +lab8: rrc + dcr b + jnz lab8 + cpi 05ah + cnz error + mvi b,16 +lab9: inr a + dcr b + jnz lab9 + cpi 06ah + cnz error + mvi b,0 + lxi h,0 +lab10: inx h + dcr b + jnz lab10 + mov a,h + cpi 1 + cnz error + mov a,l + cpi 0 + cnz error + +allok: lxi d,okmsg + mvi c,9 + call 5 + jmp 0 + +okmsg: db '8080 Preliminary tests complete$' + +; display address at top of stack and exit +error: pop b + mvi h,high hextab + mov a,b + rrc + rrc + rrc + rrc + ani 15 + mov l,a + mov a,m + call conout + mov a,b + ani 15 + mov l,a + mov a,m + call conout + mov a,c + rrc + rrc + rrc + rrc + ani 15 + mov l,a + mov a,m + call conout + mov a,c + ani 15 + mov l,a + mov a,m + call conout + mvi a,13 + call conout + mvi a,10 + call conout + jmp 0 + +conout: push psw + push b + push d + push h + mvi c,2 + mov e,a + call 5 + pop h + pop d + pop b + pop psw + ret + +v defl 0 +regs1: rept 8 +v defl v+2 + db v + endm + +regs2: ds 8,0 + +hlval: db 0a5h,03ch + +; skip to next page boundary + org (($+255)/256)*256 +hextab: db '0123456789abcdef' + ds 240 + +stack equ $ + + end start + \ No newline at end of file diff --git a/devices/pc8080/rom/test/8080PRE.json b/devices/pc8080/rom/test/8080PRE.json new file mode 100644 index 000000000..01f0bf284 --- /dev/null +++ b/devices/pc8080/rom/test/8080PRE.json @@ -0,0 +1,66 @@ +{"bytes":[ +62,1,254,2,202,0,0,254,1,194,0,0,195,17,1,118, +255,205,23,1,195,0,0,225,124,254,1,202,33,1,195,0, +0,125,254,20,202,42,1,195,0,0,49,153,3,241,193,209, +225,49,169,3,229,213,197,245,58,161,3,254,2,194,0,0, +58,162,3,254,4,194,0,0,58,163,3,254,6,194,0,0, +58,164,3,254,8,194,0,0,58,165,3,254,10,194,0,0, +58,166,3,254,12,194,0,0,58,167,3,254,14,194,0,0, +58,168,3,254,16,194,0,0,33,169,3,126,254,165,194,0, +0,33,170,3,126,254,60,194,0,0,49,0,5,33,149,1, +229,201,195,0,0,62,255,230,15,254,15,194,0,0,62,90, +230,15,254,10,194,0,0,15,254,5,194,0,0,15,254,130, +194,0,0,15,254,65,194,0,0,15,254,160,194,0,0,33, +52,18,229,193,120,254,18,194,0,0,121,254,52,194,0,0, +33,1,0,229,241,220,219,1,195,82,3,225,33,214,0,229, +241,212,231,1,195,82,3,225,33,245,1,229,33,1,0,229, +241,216,205,82,3,33,2,2,229,33,214,0,229,241,208,205, +82,3,33,1,0,229,241,218,13,2,205,82,3,33,214,0, +229,241,210,24,2,205,82,3,33,4,0,229,241,236,35,2, +195,82,3,225,33,211,0,229,241,228,47,2,195,82,3,225, +33,61,2,229,33,4,0,229,241,232,205,82,3,33,74,2, +229,33,211,0,229,241,224,205,82,3,33,4,0,229,241,234, +85,2,205,82,3,33,211,0,229,241,226,96,2,205,82,3, +33,64,0,229,241,204,107,2,195,82,3,225,33,151,0,229, +241,196,119,2,195,82,3,225,33,133,2,229,33,64,0,229, +241,200,205,82,3,33,146,2,229,33,151,0,229,241,192,205, +82,3,33,64,0,229,241,202,157,2,205,82,3,33,151,0, +229,241,194,168,2,205,82,3,33,128,0,229,241,252,179,2, +195,82,3,225,33,87,0,229,241,244,191,2,195,82,3,225, +33,205,2,229,33,128,0,229,241,248,205,82,3,33,218,2, +229,33,87,0,229,241,240,205,82,3,33,128,0,229,241,250, +229,2,205,82,3,33,87,0,229,241,242,240,2,205,82,3, +33,247,2,233,205,82,3,62,165,6,4,15,5,194,251,2, +254,90,196,82,3,6,16,60,5,194,7,3,254,106,196,82, +3,6,0,33,0,0,35,5,194,22,3,124,254,1,196,82, +3,125,254,0,196,82,3,17,50,3,14,9,205,5,0,195, +0,0,56,48,56,48,32,80,114,101,108,105,109,105,110,97, +114,121,32,116,101,115,116,115,32,99,111,109,112,108,101,116, +101,36,193,38,4,120,15,15,15,15,230,15,111,126,205,138, +3,120,230,15,111,126,205,138,3,121,15,15,15,15,230,15, +111,126,205,138,3,121,230,15,111,126,205,138,3,62,13,205, +138,3,62,10,205,138,3,195,0,0,245,197,213,229,14,2, +95,205,5,0,225,209,193,241,201,2,4,6,8,10,12,14, +16,0,0,0,0,0,0,0,0,165,60,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +48,49,50,51,52,53,54,55,56,57,97,98,99,100,101,102, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0] +} \ No newline at end of file diff --git a/disks/pc/README.md b/disks/pc/README.md index 37a75b707..bc93adf70 100644 --- a/disks/pc/README.md +++ b/disks/pc/README.md @@ -37,10 +37,12 @@ computer diagnostics, programming tools, and more. ### Applications +* [IBM TopView](apps/ibm/topview/) * [Lotus 1-2-3](apps/lotus/123/) * [MicroPro WordStar](apps/micropro/wordstar/) * [Microsoft Chart](apps/microsoft/chart/) * [Microsoft Word](apps/microsoft/word/) +* [Sunny Hill Omniview](apps/sunnyhill/omniview/) ### Games diff --git a/disks/pc/apps/README.md b/disks/pc/apps/README.md index e4fcc3520..1ec75acc9 100644 --- a/disks/pc/apps/README.md +++ b/disks/pc/apps/README.md @@ -9,6 +9,8 @@ PC Applications Information is available for applications from these vendors: +* [IBM](ibm/) * [Lotus](lotus/) * [MicroPro](micropro/) * [Microsoft](microsoft/) +* [Sunny Hill](sunnyhill/) diff --git a/disks/pc/apps/ibm/README.md b/disks/pc/apps/ibm/README.md new file mode 100644 index 000000000..5be7e37c6 --- /dev/null +++ b/disks/pc/apps/ibm/README.md @@ -0,0 +1,12 @@ +--- +layout: page +title: IBM Applications +permalink: /disks/pc/apps/ibm/ +--- + +IBM Applications +--- + +Information is available for these IBM applications: + +* [TopView](topview/) diff --git a/disks/pc/apps/ibm/topview/1.01/README.md b/disks/pc/apps/ibm/topview/1.01/README.md new file mode 100644 index 000000000..2629daa77 --- /dev/null +++ b/disks/pc/apps/ibm/topview/1.01/README.md @@ -0,0 +1,103 @@ +--- +layout: page +title: TopView 1.01 +permalink: /disks/pc/apps/ibm/topview/1.01/ +machines: + - type: pc + id: ibm5160 + config: /devices/pc/machine/5160/cga/640kb/machine.xml + autoMount: + A: + path: /disks/pc/dos/ibm/2.00/PCDOS200-DISK1.json + B: + path: /disks/pc/apps/ibm/topview/1.01/TOPVIEW101-PROGRAM.json +--- + +TopView 1.01 +--- + +{% include machine.html id="ibm5160" %} + +### Directory of TopView 1.01 (Program) + + Volume in drive A is TV101032885 + + Directory of A:\ + + TV PIF 13946 03-28-85 12:00p + TV PII 1408 03-28-85 12:00p + ADD EXT 16384 03-28-85 12:00p + ATRIBUTE DEF 32 03-28-85 12:00p + AUTOPIF 369 03-28-85 12:00p + CHANGE EXT 13568 03-28-85 12:00p + CLOCK COM 3682 03-28-85 12:00p + CLOCK PLB 2071 03-28-85 12:00p + COLORS EXT 10752 03-28-85 12:00p + COLORS PIF 369 03-28-85 12:00p + DELETE EXT 6400 03-28-85 12:00p + DOS EXT 39168 03-28-85 12:00p + DOSHELP PLB 10237 03-28-85 12:00p + DW1 TBL 51 03-28-85 12:00p + DW2 TBL 51 03-28-85 12:00p + EW TBL 55 03-28-85 12:00p + FD BAT 6163 03-28-85 12:00p + FDPGM COM 187 03-28-85 12:00p + FDR BAT 46 03-28-85 12:00p + FILTER EXT 3905 03-28-85 12:00p + G BAT 33 03-28-85 12:00p + PCW TBL 55 03-28-85 12:00p + PDIO EXT 3072 03-28-85 12:00p + PDIOKEYB EXT 3072 03-28-85 12:00p + PDIOMICP EXT 3222 03-28-85 12:00p + PDIOMICS EXT 3209 03-28-85 12:00p + PDIOMSY1 EXT 3096 03-28-85 12:00p + PDIOVIS1 EXT 3214 03-28-85 12:00p + PE TBL 44 03-28-85 12:00p + PROFED TBL 65 03-28-85 12:00p + PROGRAMS COM 11520 03-28-85 12:00p + PROGRAMS HLP 9979 03-28-85 12:00p + SETSYS EXT 11008 03-28-85 12:00p + SETUP BAT 74 03-28-85 12:00p + SYSTEM 84 03-28-85 12:00p + TUTORPIF 369 03-28-85 12:00p + TV COM 43264 03-28-85 12:00p + TV EXT 49972 03-28-85 12:00p + WA TBL 56 03-28-85 12:00p + WELCOME EXT 2560 03-28-85 12:00p + WP TBL 53 03-28-85 12:00p + VENDOR-# DO1 0 07-04-83 12:00a + 42 file(s) 276865 bytes + + Total files listed: + 42 file(s) 276865 bytes + 57344 bytes free + +### Directory of TopView 1.01 (Tutorial) + + Volume in drive A is TUT110784 + + Directory of A:\ + + CALC EXE 56549 11-07-84 12:00p + CALC PIF 369 11-07-84 12:00p + CALC PLB 5133 11-07-84 12:00p + ERROR LIB 8765 11-07-84 12:00p + GASWAP BAT 758 11-07-84 12:00p + INSTRUCT GRA 2540 11-07-84 12:00p + INSTRUCT WRT 2734 11-07-84 12:00p + LESSON1 LIB 56019 11-07-84 12:00p + LESSON2 LIB 10256 11-07-84 12:00p + LESSON3 LIB 10083 11-07-84 12:00p + LESSON4 LIB 43072 11-07-84 12:00p + OCRS PIF 369 11-07-84 12:00p + QUD PNL 121 11-07-84 12:00p + QUIT PNL 139 11-07-84 12:00p + TUTORIAL EXT 6556 11-07-84 12:00p + TUTORIAL PIF 369 11-07-84 12:00p + WASWAP BAT 1190 11-07-84 12:00p + VENDOR-# DO1 0 07-04-83 12:00a + 18 file(s) 205022 bytes + + Total files listed: + 18 file(s) 205022 bytes + 146432 bytes free diff --git a/disks/pc/apps/ibm/topview/1.01/manifest.xml b/disks/pc/apps/ibm/topview/1.01/manifest.xml index a8fdbe4b5..cc6ef4b99 100644 --- a/disks/pc/apps/ibm/topview/1.01/manifest.xml +++ b/disks/pc/apps/ibm/topview/1.01/manifest.xml @@ -1,5 +1,5 @@ - + TopView 1.01 diff --git a/disks/pc/apps/ibm/topview/README.md b/disks/pc/apps/ibm/topview/README.md new file mode 100644 index 000000000..0fe7e9316 --- /dev/null +++ b/disks/pc/apps/ibm/topview/README.md @@ -0,0 +1,12 @@ +--- +layout: page +title: TopView +permalink: /disks/pc/apps/ibm/topview/ +--- + +TopView +--- + +Information is available for these versions of TopView: + +* [TopView 1.01](1.01/) diff --git a/disks/pc/apps/lotus/123/1.0a/manifest.xml b/disks/pc/apps/lotus/123/1.0a/manifest.xml index 012175204..e99818260 100644 --- a/disks/pc/apps/lotus/123/1.0a/manifest.xml +++ b/disks/pc/apps/lotus/123/1.0a/manifest.xml @@ -1,5 +1,5 @@ - + 1-2-3 1.0a diff --git a/disks/pc/apps/micropro/wordstar/3.30/manifest.xml b/disks/pc/apps/micropro/wordstar/3.30/manifest.xml index 3ad929077..60dd895ed 100644 --- a/disks/pc/apps/micropro/wordstar/3.30/manifest.xml +++ b/disks/pc/apps/micropro/wordstar/3.30/manifest.xml @@ -1,5 +1,5 @@ - + WordStar 3.30 diff --git a/disks/pc/apps/micropro/wordstar/4.00/manifest.xml b/disks/pc/apps/micropro/wordstar/4.00/manifest.xml index c2d0a9454..6d66435e6 100644 --- a/disks/pc/apps/micropro/wordstar/4.00/manifest.xml +++ b/disks/pc/apps/micropro/wordstar/4.00/manifest.xml @@ -1,5 +1,5 @@ - + WordStar 4.00 diff --git a/disks/pc/apps/microsoft/chart/2.02/manifest.xml b/disks/pc/apps/microsoft/chart/2.02/manifest.xml index 26da3ae06..0e2b84342 100644 --- a/disks/pc/apps/microsoft/chart/2.02/manifest.xml +++ b/disks/pc/apps/microsoft/chart/2.02/manifest.xml @@ -1,5 +1,5 @@ - + Microsoft Chart 2.02 diff --git a/disks/pc/apps/microsoft/winword/2.0c/manifest.xml b/disks/pc/apps/microsoft/winword/2.0c/manifest.xml index d4d08e556..b9095197c 100644 --- a/disks/pc/apps/microsoft/winword/2.0c/manifest.xml +++ b/disks/pc/apps/microsoft/winword/2.0c/manifest.xml @@ -1,5 +1,5 @@ - + Word for Windows 2.0c diff --git a/disks/pc/apps/microsoft/word/3.0/manifest.xml b/disks/pc/apps/microsoft/word/3.0/manifest.xml index 64478b5e0..b46c8c223 100644 --- a/disks/pc/apps/microsoft/word/3.0/manifest.xml +++ b/disks/pc/apps/microsoft/word/3.0/manifest.xml @@ -1,5 +1,5 @@ - + MS Word 3.0 diff --git a/disks/pc/apps/microsoft/word/3.1/manifest.xml b/disks/pc/apps/microsoft/word/3.1/manifest.xml index 812982c0f..afae03eed 100644 --- a/disks/pc/apps/microsoft/word/3.1/manifest.xml +++ b/disks/pc/apps/microsoft/word/3.1/manifest.xml @@ -1,5 +1,5 @@ - + MS Word 3.1 diff --git a/disks/pc/apps/microsoft/word/5.0/manifest.xml b/disks/pc/apps/microsoft/word/5.0/manifest.xml index 4b9ce3103..9da0fefe8 100644 --- a/disks/pc/apps/microsoft/word/5.0/manifest.xml +++ b/disks/pc/apps/microsoft/word/5.0/manifest.xml @@ -1,5 +1,5 @@ - + MS Word 5.0 diff --git a/disks/pc/apps/sunnyhill/README.md b/disks/pc/apps/sunnyhill/README.md new file mode 100644 index 000000000..c8cf950f8 --- /dev/null +++ b/disks/pc/apps/sunnyhill/README.md @@ -0,0 +1,12 @@ +--- +layout: page +title: Sunny Hill Applications +permalink: /disks/pc/apps/sunnyhill/ +--- + +Sunny Hill Applications +--- + +Information is available for these Sunny Hill applications: + +* [Omniview](omniview/) diff --git a/disks/pc/apps/sunnyhill/omniview/4.30/OMNIVIEW386-430.json b/disks/pc/apps/sunnyhill/omniview/4.30/OMNIVIEW386-430.json new file mode 100644 index 000000000..04e0691e6 --- /dev/null +++ b/disks/pc/apps/sunnyhill/omniview/4.30/OMNIVIEW386-430.json @@ -0,0 +1 @@ +[[[{"sector":1,"length":512,"pattern":0,"data":[1351679723,777210435,4674127,66050,-1610584062,260357,131081]},{"sector":2,"length":512,"data":[67108857,1610940480,9436928,184590345,-267517968,17825791,318840849,1611989312,25171713,453091353,-534969920,33562369,587341857,1613038144,41953026,721592361,-533921088,50343682,855842865,1614086976,58734339,990093369,-532872256,67124995,1124343873,1615135808,75515652,1258594377,-531823424,83906308,1392844881,1616184640,92296965,1527095385,-530774592,100687621,1661345889,1617233472,109078278,1795596393,-529725760,117468934,1929850879,1618282304,125859591,2064097401,-528613392,134250247,-2096619391,1619331136,142640904,-1962368887,-527628096,151031560,-16175105,1620379983,159422217,-1693867879,-526579264,167812873,-1559617375,1621428800,176203530,-1425366871,-525530432,184594186,-1291116367,1622477632,192984843,-1156865863,-524481600,201375499,-1022615359,1623526464,209766156,-888364855,-523432768,218156812,-754114351,1624575296,226547469,-619863847,-522383936,234938125,-485613343,1625624128,243328782,-351362839,-521335104,251719438,-217112335,1626672960,260110095,-82861831,-520286272,268500751,51388673,1627721793,276891408,185639177,-519237439,285282064,319889681,1628770625,293672721,454140185,-518188607,302063377,588390689,1629819457,310454034,722641193,-517139775,318844690,856891697,1630868289,327235347,991142201,-516090943,335626003,1125392705,1631917121,344016660,1259643209,-515042111,352407316,1393893713,1632965953]},{"sector":3,"length":512,"pattern":0,"data":[360797973,1528144217,-513993279,369188629,1662394721,1634014785,377579286,1796645225,-512944447,385969942,1930895729,1635063617,394360599,2065146233,-511895615,402751255,-2095570559,1636112449,411141912,-1961320055,-510846783,419532568,-1827069551,1637161281,427923225,-1692819047,-509797951,436313881,-1558568543,1638210113,444704538,-1424318039,-508749119,453095194,-1290067535,1639258945,461485851,-1155817031,-507700287,469876507,-1021566527,1640307777,478267164,-887316023,-506651455,486657820,-753065519,1641356609,495048477,-618815015,-505602623,503439133,-484564511,1642405441,511829790,-350314007,-504553791,520220446,-216063503,1643454273,-919777,-81812999,-503504959,537001759,52437505,1644503106,545392416,186688009,-502456126,553783072,320938513,1645551938,562173729,455189017,-501407294,570564385,589439521,1646600770,578955042,723690025,-500358462,587345698,857940529,-231398590,-1,16773689]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"data":[67108857,1610940480,9436928,184590345,-267517968,17825791,318840849,1611989312,25171713,453091353,-534969920,33562369,587341857,1613038144,41953026,721592361,-533921088,50343682,855842865,1614086976,58734339,990093369,-532872256,67124995,1124343873,1615135808,75515652,1258594377,-531823424,83906308,1392844881,1616184640,92296965,1527095385,-530774592,100687621,1661345889,1617233472,109078278,1795596393,-529725760,117468934,1929850879,1618282304,125859591,2064097401,-528613392,134250247,-2096619391,1619331136,142640904,-1962368887,-527628096,151031560,-16175105,1620379983,159422217,-1693867879,-526579264,167812873,-1559617375,1621428800,176203530,-1425366871,-525530432,184594186,-1291116367,1622477632,192984843,-1156865863,-524481600,201375499,-1022615359,1623526464,209766156,-888364855,-523432768,218156812,-754114351,1624575296,226547469,-619863847,-522383936,234938125,-485613343,1625624128,243328782,-351362839,-521335104,251719438,-217112335,1626672960,260110095,-82861831,-520286272,268500751,51388673,1627721793,276891408,185639177,-519237439,285282064,319889681,1628770625,293672721,454140185,-518188607,302063377,588390689,1629819457,310454034,722641193,-517139775,318844690,856891697,1630868289,327235347,991142201,-516090943,335626003,1125392705,1631917121,344016660,1259643209,-515042111,352407316,1393893713,1632965953]},{"sector":6,"length":512,"pattern":0,"data":[360797973,1528144217,-513993279,369188629,1662394721,1634014785,377579286,1796645225,-512944447,385969942,1930895729,1635063617,394360599,2065146233,-511895615,402751255,-2095570559,1636112449,411141912,-1961320055,-510846783,419532568,-1827069551,1637161281,427923225,-1692819047,-509797951,436313881,-1558568543,1638210113,444704538,-1424318039,-508749119,453095194,-1290067535,1639258945,461485851,-1155817031,-507700287,469876507,-1021566527,1640307777,478267164,-887316023,-506651455,486657820,-753065519,1641356609,495048477,-618815015,-505602623,503439133,-484564511,1642405441,511829790,-350314007,-504553791,520220446,-216063503,1643454273,-919777,-81812999,-503504959,537001759,52437505,1644503106,545392416,186688009,-502456126,553783072,320938513,1645551938,562173729,455189017,-501407294,570564385,589439521,1646600770,578955042,723690025,-500358462,587345698,857940529,-231398590,-1,16773689]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[1229868367,1464158550,136323104,0,0,1610612736,780,0,538976306,538976288,538976288,0,0,1262157824,137255,4790,538976307,538976288,538976288,0,0,1192624128,464942,4902,538985537,538976288,538976288,0,0,2135162880,792626,1691,1263749444,538976288,538985545,0,0,599785472,923457,83,1414745673,541871169,541415493,0,0,599785472,988993,99477,542654797,538976288,538976288,0,0,1006698496,7411772,10250,542654797,538976288,541282116,0,0,1547370496,8132673,21063,1398099789,1263027013,541415493,0,0,599785472,9508673,1504,942888527,538976310,540094512,0,0,599785472,9639745,364852,942888527,538976310,541478473,0,0,599785472,33036097,63280,1145128274,538976288,538985805,0,0,599785472,37099329,753,1380009299,538986563,538987843,0,0,1693974528,37164831,833,1129532760,1262699848,541415493,0,0,599785472,37230401,1099,229,0,0,0,0,0,0,0,229]},{"sector":9,"length":512,"pattern":0,"data":[229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229]}],[{"sector":1,"length":512,"pattern":0,"data":[229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229]},{"sector":2,"length":512,"pattern":0,"data":[229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229]},{"sector":3,"length":512,"pattern":0,"data":[229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229]},{"sector":4,"length":512,"pattern":0,"data":[229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229]},{"sector":5,"length":512,"pattern":0,"data":[229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229]},{"sector":6,"length":512,"data":[707398157,707406378,707406378,707406378,707406378,707406378,707406378,707406378,707406378,707406378,707406378,168632362,538970637,538976288,538976288,1986360403,544417637,1751344468,1802264916,1819231008,225340789,538976266,538976288,538976288,538976288,544370534,1868983881,1819438935,537529700,538976288,538976288,538976288,538976288,1936935200,589325685,218762547,538976266,538976288,1126178848,1836412015,1868701806,1814067556,1952935525,540876904,221524273,707406346,707406378,707406378,707406378,707406378,707406378,707406378,707406378,707406378,707406378,707406378,218762528,1734693386,1918987381,1634038304,1936876900,543584032,1936287860,1819239200,544107893,2003791467,1634235424,541663348,1852115469,544829290,1953067639,543649385,1970233953,1752440948,1936158313,543584032,1936617315,1702195557,543515502,1869875725,543517984,543452769,1948282740,1763730792,1937073262,779711092,1998604576,1702127986,1868718368,220230773,2003136010,1667593248,1819242088,746153839,2003136032,1701079328,539784033,543452769,544695662,1869810189,1769239916,544435823,1814065012,543649391,1851880563,1735289188,1869770784,1835363426,1394617971,1701015145,1225395488,1785619744,1830844783,1701978233,1769234796,1752395375,1998614633,543716457,1886220131,1852404853,1869815911,1829375264,745038709,1696614688,1667592307,1819042153,1852121209,544829290]},{"sector":7,"length":512,"data":[1668506980,1768057202,1629513582,220226670,1886938378,1852399980,543649385,1936681076,1634869349,1881171314,1869836901,543973742,543452769,1868761613,1919905906,543519841,1768448865,1835365989,1937010277,1634235424,1701322868,1948282988,168632431,1702125933,1818323314,543521385,544372079,1918986355,1679844453,1835099506,543584032,168632417,1667462515,1718842213,1864395893,1865246062,1852779886,1701978213,1769234796,1752395375,1998614633,543716457,1869416973,1852990820,1836016416,1769239920,1948280686,1852334949,1735355503,1092628089,1702305907,1953391904,220230245,960049418,1226845234,543520295,1768121700,543450468,1931505524,1701994856,544828704,1635348342,1763730791,544175214,543230477,1668505958,1952542313,543649385,544695662,1852797542,1919248756,543584032,1936876912,1818324591,1661603104,1970302319,544367988,1751344500,1869377390,540703079,1635148897,1684366190,1769300512,1852400748,168632423,1869903201,1769234797,539913839,220203533,1870091274,1634040096,1629516658,1226862439,1852729632,1852138351,544828532,1634166114,1752440942,168632421,1936617315,1668641396,1852795252,543584032,1701716065,1868767351,1919905906,543519841,1701317133,1970365537,1702130273,1713402738,1830842991,1768693881,1701606516,1836016416,2037277040,1700208686,1919252256,168632421,1735685487,1769434994,1864394606,1814065781,1702060389,1886593124,744842081,1684955424,1746946336]},{"sector":8,"length":512,"data":[1684369519,544175136,1919093261,1702125925,1881170208,1935762796,544501345,544695662,1802661751,543649385,1769369189,1835954034,544501349,1868958221,2037194866,1869768480,1735289207,1869768480,539914357,1668180307,1953833061,2053729385,543649385,1702103565,1869506659,2036821868,544434464,1952540791,1718184992,544417637,543976545,1970233953,1226845300,1846152480,1920300129,2037148769,1851881248,543450484,572551028,1886220131,1919251573,577075817,1920298784,2003136032,1644825888,1684826485,543649385,1696624233,2037540214,2036430624,1936683040,1818388851,1226845797,1734960672,1684370037,1946815776,544498024,1918989427,1735289204,1953853216,1869768224,1668489325,1668571506,1870078056,543452277,1869376609,168632439,1948280173,1852383343,1886547811,1952543343,1634541669,1931508078,1768843113,1633904998,220230766,1852729610,1952544367,1936617321,1953392928,1752440943,1634082917,1667854946,543584032,543516788,544695662,1634077197,1768712547,539916660,168626701,2037277005,1768453152,544434030,1752461154,1684370021,543517984,1970233953,1970217076,1969430642,1852142194,168632436,1836409890,1646273122,1684826485,778530409,1852396320,1226859875,1935767328,1952870176,1948282469,1814062440,544502625,1701841421,1852797810,544175136,1986094444,1752440933,1969365093,1768189033,1629513582,1752440948,1852121189,1718558820,1946815776,1679844712,539785569,1768169545,1802071155]},{"sector":9,"length":512,"data":[1746953317,1852405345,1869881447,1818326816,168632427,1869768820,1869113205,1864397941,1864397429,1667851878,1948283749,1768845941,1864394606,1814062694,1952999273,220212339,1701344266,1936682354,1937006964,1868767276,1701144166,1953460256,1663052915,544829551,1751343469,1936027241,168632364,543452769,1702060396,1919950962,1702129257,539915122,1633886281,1629513074,1953853282,1953459744,1812598048,1769365861,1948280686,1702063976,1768453152,544434030,1998614127,544105832,2036689012,543519271,544501614,1700923917,543649385,1684370293,544497952,1751607662,1851859060,1986994276,1948283493,1998611816,1701537125,539780206,1851853325,2019893348,1769104752,1701015141,1684105248,1969320992,544499815,1948280173,544498024,1226860137,1678380320,661546089,1634541684,1931502955,543519349,1952540788,1701344288,1702305913,1864394098,539780710,1868722030,220232036,1936483594,1870078053,778333301,544166688,543518319,1948280431,1713399144,1953722985,1634690848,1713402732,220230255,1701344266,2003136032,1769300512,1852400748,1635197031,1752440947,1868767333,1701605485,220226932,1851878666,1835362145,544501349,543452769,1869903201,1769234797,1864396399,1818304614,1768693868,1769236583,539780974,1701317133,1852404833,1663052903,1768714095,539780974,543452769,1702326128,1868767346,1869771886,1377840748,1952999273,1678380320,544110447,1931505524,1953789288,543649385,543581807]}]],[[{"sector":1,"length":512,"data":[543516788,2037411683,1667329312,1701734760,220212339,1935764490,1881174629,1953393010,745763429,1684955424,1718575904,543516006,1937010544,1816207406,1970235508,220227687,2003791882,1830842981,1734438497,1852140901,1851859060,1868767332,1919251310,1769234806,1998614127,1684829551,543515168,543230477,1852270963,1667851881,544501345,1701079411,1717986592,544498533,1931503215,543712117,1953394531,745303922,1225395488,1936682272,544828532,1953390967,1948279909,1986076783,543451503,1769365864,1948280686,1635197039,220228460,1919448074,1751610735,544503151,1634476129,1919248242,1667327520,1953066089,1970544761,1852403314,1718558823,168632422,1919252069,1701736313,1936483616,544417637,1769304421,1852140912,220212852,1393167626,1701015145,1701344288,1769300512,1852400748,1870078055,543452277,1702257000,1913261344,1869640549,1651077998,1953066089,1868963961,1752440946,1868767333,1869771886,1718558828,1819042080,1862929696,1667851878,1768693861,1769236583,1629513582,1864393838,1919248500,1970365728,1701671017,1881175150,1919252335,168632364,1998615657,1684829551,1701146144,1869881444,1869507360,1752637559,1701344357,1752440946,1635131493,1970235762,168632435,1768318575,1931502947,1701011824,1702305907,1864394098,1886741347,543450473,1847620207,539915375,220229459,1935765514,1702259059,1718511904,1701994866,1702043748,1919906670,1998597235,1751345512,1936028192,1684959088]},{"sector":2,"length":512,"data":[544175136,1751321101,1701277281,1852383347,1701344288,1668246560,1869182049,1718558830,1634035744,1869815924,1701016181,168632435,1752459639,1629515369,1869574688,1998597229,543519333,1667329136,1763730533,544175214,1919252069,168632441,1818455653,1684370287,1734701600,544108393,1948280431,1646290280,1684826485,778530409,537529632,538976288,538976288,538976288,538976288,1767049741,543515502,1915184503,1919950949,1918987625,544828521,1836261473,543976545,1702061426,1751347809,1684955424,1678380320,1818588773,1701671023,1663071342,1634757999,539785582,1746953591,543520353,2037540214,1953066016,543517812,1920207373,1768318561,1718558819,1752440934,1953701989,1952802162,1950425134,1701344288,1835103008,1769218149,220226925,661940490,1700929651,1897950821,1702127989,1852727584,1852406127,1869881447,1936286752,1702260579,543236210,1953696269,1735287154,1998615141,1701080673,1735289202,1919448096,1751610735,1920298784,1717989152,1936024425,1701345056,168632430,543516788,1701012850,1869182064,1953720686,1935767328,1769103904,2037147237,1919903264,543450467,1986094444,168632421,543516788,1852797542,1868832884,1965060719,1635084142,1684366450,1867718702,1869504800,1919248500,1936024608,544106345,1869023757,1713400929,1948283503,1847616872,1646294885,1684826485,543649385,1998615401,544498024,1702242121,1946815776,1701671525,1629626468,1986622563,544828517,1969448307]},{"sector":3,"length":512,"data":[778331506,1631920162,1864394851,1752440934,168632421,1818850658,1735289188,1948283687,1701147240,1953391904,1668178290,1914729317,1767992677,1869357166,1684368227,839519520,1869098292,544436853,1633951841,1931488377,1852143205,2036425760,543236211,1801807223,1750343726,168632421,1818850658,1735289188,1679848231,1936879471,1701994784,1668246560,543450475,543452769,1869377141,1684368227,1762266400,1635021678,1851880558,1937076069,1646295404,1696735353,1952671084,1634561906,1952804455,1931502441,1918985576,1812598048,1936417647,1752637474,543712105,544104803,1752459639,1851880563,842211428,1881157680,1684960623,1718558835,1812598048,1919251553,1713400929,1701016175,1750540334,1629515365,1668246560,543450475,1919905636,544434464,1885407757,1634693744,1684367459,1869768224,1752440941,1852383333,1701079411,543236140,1936941424,543520361,1852377613,761360998,543450482,1936614771,1931506287,1702063717,1752440947,1885413477,1634693744,1948280931,1752440943,168632421,1919905636,1684955424,1835886880,1634296933,2037146996,1818587680,1702060389,1752440947,1868832869,220230255,1668246538,1948283755,1818304623,544698220,1965059681,1886218606,1684366437,1769497888,220212852,1091177738,1869116524,543713141,1702242121,2003591456,544438625,1852138850,1886218528,1936942450,1998611557,543716457,1752435213,1818566757,1851877221,539780451,1768711538,1818845793,544830569,543452769]},{"sector":4,"length":512,"pattern":538976288,"data":[2019912806,1818845801,544830569,1718553101,1635021600,1918985326,1869357156,1702112631,1830840419,1818326117,1869571104,1701519474,539784057,2036689012,1745489184,543520353,1881173870,1701011820,544106784,1953701985,761623649,1949132399,1630365032,220230770,1769300490,1852400748,1159736935,543712097,1819307365,1701149039,1684955424,1769104928,543452773,1948280431,220226920,1836016394,2037277040,1935763488,1931501856,1819042157,1701602592,1869771875,543385966,544826731,1868718376,220230773,1818322954,1752440934,1769152613,1864394106,543236198,1769174370,1936942446,1918984992,1864378724,1752440942,544368997,1701513741,1769087097,539912046,1969430593,1836020851,1953392928,1634887525,543450484,1668442467,544500085,1769409037,1852401780,1667327264,1635000424,1701978215,1986618723,1696625509,1952671084,1634561906,1952804455,220226409,2003791882,1713402469,544042866,543516788,1919905636,544825719,543452769,1970562418,544435826,1853169761,1702195561,839519520,1768041782,1702043764,1818323314,1836412448,779248994,543574304,543516788,1936876912,1763733103,168632435,1752462689,2053730927,1948279909,1852121199,544367988,543516788,1818850658,1735289188,544497952,1952540788,1678380320,1629518177,1948279918,744844649,1701344288,1869571104,1629516658,1763730802,1684368749,1702125929,220232044,1819178250,1701536623,220212836,538976266]},{"sector":5,"length":512,"data":[168632352,1802465100,543649385,1801675106,2003791392,541663276,661545315,1701978228,1651336557,1696625253,1952670072,220232044,1701345034,541663342,1936877926,1701978228,2053729377,1948279909,544498024,543516788,1818850658,1735289188,1846152480,1701078373,1869881444,543515168,1701601889,544175136,1634037875,1769414763,1629513844,1768912416,1864394083,168632422,544437353,745437039,1953849888,1634235424,544417652,1633886305,1768055152,2037672300,1768453920,1948280931,544434536,1701710349,1969365111,1768189033,1746954094,539915105,1668180307,1752440933,1969365093,1768189033,1663068014,220229217,1852142346,1881171315,1819307877,1869422693,1735289206,1919448096,1751610735,544503151,539784297,1936024947,1946815776,544040296,1702129253,1735289202,1684955424,1769497888,1735289204,1868767276,1869771886,1948283756,1919509864,1812598048,1952999273,744975977,2003791904,539783781,1952540008,543649385,543452769,1819242339,744975977,544500000,1852770829,1830844780,543515745,1936614771,1868963941,1752440946,1969365093,1768189033,1948280686,1667309679,1986357608,168632421,1701847137,1852797810,1953066081,1718558841,1937008928,1853320992,2034376750,1886217504,1919252335,543649385,543516788,1969359373,1768189033,1998612334,543716457,1701146739,539781219,1763734633,168632435,1752460897,1869639538,1886547821,1633905000,544828524,1851877475,543450471,1836020326,1768251936]},{"sector":6,"length":512,"pattern":0,"data":[1629513582,168632430,1869903201,1702125933,1948393572,1735289192,1869881378,1768251936,1629513582,1919250464,1634627443,2037672300,1628048672,1629512814,1818585120,1819633264,1918988320,1718558836,1701344288,1836016416,2037277040,1699618862,220230776,1701148426,1702043755,1869095013,168636023,538976288,538976288,538976288,538976288,538976288,758133549,168626701,707406378,707406378,707406378,707406378,707406378,707406378,707406378,707406378,707406378,707406378,220867114,6666]},{"sector":7,"length":512,"data":[707398157,707406378,707406378,707406378,707406378,707406378,707406378,707406378,707406378,707406378,707406378,168632362,538970637,538976288,538976288,1986360403,544417637,1751344468,1802264916,1819231008,225340789,538976266,538976288,538976288,538976288,544370534,1868983881,1819438935,537529700,538976288,538976288,538976288,538976288,1936935200,589325685,218762547,538976266,538976288,1126178848,1836412015,1868701806,1814067556,1952935525,540876904,221524273,707406346,707406378,707406378,707406378,707406378,707406378,707406378,707406378,707406378,707406378,707406378,218762528,1935756298,1702305908,1226861413,1734697504,1679847009,1919120229,1852400233,1752440935,1970479205,762471792,1969293837,1634561908,543450484,1886547811,1952543343,1634082917,1768712547,1226865012,543520295,1852138850,1997147424,1768649327,1864394606,1868963950,1752440946,1634738277,1948284019,2032168823,1936875877,1700208686,2002875168,1946815776,544498024,543516788,1818850658,1735289188,1818851104,1701847148,1768252274,1864394102,220230261,1701998602,1668179315,1769414757,1646291060,544826479,1952540008,1852142368,1936879475,1668246560,1684370529,544106784,1986333197,544830053,1836019570,1851858988,1752440932,1763734625,1769414772,1629514860,1852798069,1970236783,544828531,1634535949,1701273966,1819042080,2003791904,1629516389,1814062190,1952999273,744975977]},{"sector":8,"length":512,"data":[1634035744,1735289204,1684955424,1661603104,1768714095,539780974,1919905636,1668246560,1735289195,1684955424,1667592992,1953067637,1226845817,168632430,1701081711,1869881458,1836016416,1768846701,1702125923,1701344288,1769300512,1852400748,544417639,1952543859,220230517,1684955402,1953392928,1769238117,745762415,544500000,1819044215,1936482592,1700929647,1818386720,1869881445,1930038560,1801545072,544175136,1998615413,543716457,1870012513,543515497,1763731055,1864397684,539913847,168626701,1701146707,1763731555,1851859059,1953392928,1936028261,1735289204,1634231072,1852140652,1948280167,2036425839,168632366,2037277005,1868918816,543517808,1818584422,1634235424,1752440948,1667309669,1986357608,1852140901,1718558836,1661603104,1970302319,544367988,1701146739,1763731555,1953853550,1684955424,1953853216,544503152,1819044215,1918987552,168632427,1970544737,1852403314,1869619303,544501353,1663069801,1970302319,544367988,1970302832,1769103724,220232052,1852404490,1948280163,1763730792,1835627630,1952539753,544108393,1948280431,1797285224,1868724581,543453793,1819044215,1644825888,1818566757,1852403049,1684370529,544106784,1870029158,1718558834,1937074720,1635000436,1852402540,1869881447,1946815776,1663067496,1970302319,779249012,1936016416,1702127984,1701344288,1684370208,1769235317,220226934,1953460234,1769238117,1864395873,1868767334,1953853549,1931506277,1667589488]},{"sector":9,"length":512,"data":[793321576,1763716175,168632436,1634559346,544435817,1696624225,1769174380,1679844726,1835099506,1750343726,1969430629,1852142194,1646403700,544502629,1768294925,1713382004,544042866,1701146739,1948280931,1852334949,1735355503,1868767353,544433517,1836020326,1661603104,1717924449,2037148789,1936024608,1768843113,1629513582,1885413486,1667853424,1869182049,1918967918,1684960623,1946815776,1663067496,1650552929,1953066089,544433513,1881171567,1702061426,1679848558,1948285281,1852334949,1735355503,220212857,1175063818,1696625263,1886216568,539780460,1852139639,544828704,1818850658,1735289188,544434464,1919971425,1751343471,220226661,544108298,1632837729,1685222772,1629518177,1919251558,1852796782,1752440876,1633886309,1919249516,1818851104,1700929644,1728711968,1952802162,1998611557,543716457,1819287649,1634951525,1629516910,1914725486,1852797797,544501345,1869563682,168632420,1702127201,1869573746,1629495918,1752440947,1629518181,1869770864,778593121,1701336864,1752440942,1868832869,220230255,1853039114,1936090729,2037194786,1953849632,1769107304,543450490,544826731,744972660,1701344288,1644825888,1684826485,661089897,1702043763,1769108835,1931508084,1702130553,1769414765,1646292076,168632421,1634953572,1684368754,1752440876,1868832869,544436847,1819044215,1819178272,543908719,1629515636,2003790956,544828704,1852115469,1851880052,539780451,543516788,1751607660]}],[{"sector":1,"length":512,"data":[1763734388,1752440942,1701978213,1852795239,541663347,1684956532,1946815776,1937055855,1769414757,1763732588,1836412012,1952542313,1629498469,1629512814,1701868320,1919249249,544497952,1752435213,1852121189,1851880052,1864394083,1752440934,1969365093,1768189033,1998612334,543976553,1819281933,1634951525,2037150830,2036429600,1327636538,1746938984,1951604841,778401381,1852396320,2032166243,220231023,1684628490,544483182,1852794992,1751195749,744776037,1970239776,1718558834,1701013862,1701994784,1936269409,1661603104,1701999221,2037150830,540162080,1919378788,544433509,1919443270,1701342821,539915369,1998615625,543976553,220226914,1869570826,543450476,1897952097,1801677173,1629518188,1869619315,1651078003,539911532,544567129,1702257000,1695157536,1952999273,1767995168,1735289204,1294812448,543975777,1936942445,1936025441,1752440876,543516018,1836020326,1930038560,1769107316,1864397669,1752440942,1346445413,2003136032,1919514483,1752440933,1746957409,543520353,544499053,1870203405,1931506293,1668440421,1919098984,1919251561,573464937,1918978080,1869881444,1818583584,1702258025,544432416,1818298893,1752440940,1830843489,1952999273,744841760,661940512,1818304627,1868767340,1701605485,2037146996,1711934752,1769169253,543517794,1752459639,1701998624,1953391987,2036425760,1667593248,1819242088,779708271,1292504352,1868919407,745694582,1701344288,1953391904,543519337]},{"sector":2,"length":512,"data":[1953724787,1763732837,1700929651,543649385,1835600397,1835363440,1702129253,544153700,1129324641,1918986272,1918990180,1819287653,1868985441,1998613874,543716457,1718553101,1752440934,1752375397,543583333,1685217640,1701994871,1684955424,1718580000,1918990196,220212837,1225395466,1851881248,543450484,543516788,1818850658,1735289188,1981838119,1701013871,544175136,1853190003,168632420,1634036848,1953390963,1869815852,1936287856,1633905012,744777076,1684955424,1869574944,1852401780,220212839,1935819018,1953852527,544828517,544501614,1701538156,1836020512,1768453221,1998612334,1752440933,543911529,220227183,544432394,1768779619,1713399662,544042866,1868767329,1953853549,539914853,544370502,1835104357,744844400,1701344288,1980370208,1701013871,543584032,543516788,541868360,808464441,1836016416,1702131056,1852383346,1701344288,1661603104,1936941420,1931502441,1852139875,1713399139,1769235305,1830841967,1701410415,808464928,1870078001,543452277,220226914,1937074698,1768300660,539911534,1751348557,1802071072,1970217061,2003771506,1752440942,1751610735,168632436,1668248176,1702064997,1864379507,1713402485,1818846049,1701409897,1769414771,1931503732,1667589488,1918967912,168632421,1701536116,1970348142,543519849,544370534,1851880039,778331508,543512352,1852401780,1851859051,1886593124,543908197,1818298893,1953722221,1953068832,1953853288,1768453152,1852402542]},{"sector":3,"length":512,"data":[1650532455,544503151,539784297,1763733363,544417652,1634011661,1948285299,1919950959,1836413797,1752440933,1948284001,1701995880,1847620391,1948284015,544498024,1751348589,1728711968,1735289199,544108320,1919248500,1948269413,544498024,539784041,1769238133,1870209132,1920213109,1869881465,1728711968,1830843493,1768448865,1948280174,1868832879,561277216,218762528,1952534026,1818325621,1701868320,543712101,1730179945,1919250021,1684370529,1869768224,543236205,1886220131,544761196,1852377613,1634887028,1869182051,1700929646,1701148532,1970217070,1870012530,543973731,1685221219,1864379507,220230261,1919448074,745824623,1970236704,539781236,1936746860,1851858988,1869881444,1702193006,1884495918,1751344485,1930038560,1684960623,1918967923,1818435685,1769173857,1684367718,544432416,1768912418,577004899,544370464,1965165069,1768912494,577004899,1885692960,1768189541,1965057902,544108400,1952802935,544367976,544372079,1633906550,168632428,1685221219,1918967923,1937055845,1948279909,1919098991,1702125925,1701344288,1970238240,539911278,544370502,2019887629,1819307361,1948265573,1931502952,1684960623,543584032,539120418,1663071081,1701604449,168632420,1870032501,1684366185,1852404512,1948280163,1969386101,1953391980,1919508768,1869375008,1634869367,1919248500,1946815776,544104808,544372079,1633906550,1868767340,544433266,1965060969,543450483,1663070068,1952540018]},{"sector":4,"length":512,"data":[1752440933,168632421,1853190003,1411395172,1931502952,1701539696,1869815918,543452789,572548719,1763713605,543236211,1667854198,220226661,1970238218,1931502702,1701015145,1920298784,1668249120,1663069281,1935962735,1701994784,1869767200,1952999285,1762266400,544175214,2036427888,168632366,1968114189,1870012530,543973731,1685221219,1886330995,1629515365,1663067246,1702063980,1919050016,1819570293,168632441,1634038371,1735289204,1919508768,1869375008,1920213111,1769172577,1937010277,1953068832,543236200,1701079415,1930038560,1952671088,544044402,1629513327,1937076067,543385972,1919250021,539916647,1936287828,1684633376,168632421,1667592307,1836413556,543584032,1919250021,1763735911,1768300659,1919251564,1646290021,1701978233,1634627443,220230766,1986093834,1701409897,1851859059,1634738276,1734439795,1763734373,1970217070,1752440946,1952542578,1684955424,1829375264,1752462703,1750343726,1701978213,1953265011,543649385,1701146739,1931503715,1684960623,1918967923,543236197,1868761613,1852400237,1869182049,1718558830,1768912416,543450467,543452769,1870032501,1684366185,1970238240,220226670,1953068810,1868767336,1701605485,1851859064,1836261476,1752461167,1981839724,1769566817,1713399662,1702128745,1735289202,1879706912,1868984933,1684368754,544108320,543516788,544828518,1998615393,1886593125,778789221,537529632,538976288,538976288,538976288,538976288,1884490253]},{"sector":5,"length":512,"data":[1751344485,1936028192,1668440421,1936876904,1986095136,1919033445,1852140399,1836410912,1931505249,1667589488,168632424,1869901417,1869898016,1663071085,1701604449,1752178788,1835363951,539915109,543516756,1836213620,1952522784,539127151,1936263693,1702065440,1869881444,1886218528,1931508076,1952804207,1735289192,1634235424,544417652,544501614,1969621517,1701344370,1701978226,1768125796,543517794,1679848047,1936291433,1701601897,1750081582,1835363951,220230501,1701994762,1835627296,543517808,1853190003,1998615396,1701980005,1819042080,1835099680,1634298985,1769414770,220227700,1802071050,1931616357,572533794,539763297,740451618,1751196192,572533794,740452463,578101792,1948393516,539763304,1851853325,1886593124,1751344485,544434464,1886220131,1684370287,543584032,1767991395,1864397678,1752440934,543519589,1752173069,1835363951,1931506533,1853190772,1836261479,1752461167,1948285292,1952802671,544367976,1663070068,1952540018,168632421,1869573491,2037147764,1869375008,1735289207,1634037024,1735289198,168632366,538976288,538976288,538976288,538976288,1460276512,543716457,543976545,1948280431,544434536,1701146739,1914726499,1634038629,543712114,543452769,1868916852,220232050,544174858,1819043191,544106784,1667329136,1763716197,1635197044,1852776563,1847621996,1920300129,1948281953,544105832,1752435213,1948284001,1852334949,1735355503,1937011561,1970239264]},{"sector":6,"length":512,"data":[1965057132,1948280179,544434536,1701080941,1868963948,168632434,543516788,1769169250,1718558835,1931501856,1752460921,2053731173,1948283493,1919098991,1702125925,571084064,1953397107,1769235816,1746936419,1851878773,1701868320,778593125,1701336096,1869571872,1701716068,1763734391,168632435,1952540788,1668641568,1752178792,1835363951,2037588069,1701344366,1702521203,1629516658,1629513074,1919252000,168632441,2019913321,1936614768,543520361,1851876717,1868963955,1701257330,1634887022,1735289204,1701868320,543712101,1769146893,543515502,543516788,1668442467,1920231797,1701978233,1919513969,1663067237,1937011567,1937074720,543236212,1701186061,1868832887,1918987372,1869881459,779706724,1953841696,1701344288,1684103712,2003136032,1936269427,1634235424,168632436,1752460385,1751610735,1869115424,1701668206,1935761965,1931502693,1667589488,2037588072,1701344366,544433523,544104803,1700923917,1684960544,1953722981,744779631,1701344288,1931961714,544173600,1936029041,1852795252,1634235424,168632436,1701670771,1852401780,1769414759,1629513844,1634035744,1864397938,1920213094,1769172577,1919906931,1851859059,168632420,1685023076,1763734373,1868832883,543649385,543516788,1634037875,1735289195,1750540334,2032168549,1746957679,544366949,1852770829,1718558821,1701344288,1948280179,1735289192,1931616371,1801545072,1870209058,1852514421,2032170863,1915188591,168632421,544501614]},{"sector":7,"length":512,"pattern":0,"data":[1260416617,1634954849,1851859059,1869422713,539911538,1702129225,1734962284,1818845801,544830569,1818298893,1948282739,1935961701,544175136,1629513058,1651864352,1952671082,543520361,1852401780,1769414759,220227700,1836020490,1701847141,1701605487,1952801312,544367988,1701601889,544175136,1684960546,1953722981,577007201,544500000,1752435213,1864396385,1919248500,1310731891,544503909,1801807223,660961056,1814064236,543911791,1864397921,1919248500,1829375264,1869116517,1864397668,1868767334,1953853549,2053730917,1931502693,1667589488,1701257320,1634887022,1852795252,168632366,538970637,538976288,538976288,538976288,538976288,858595360,168635696,707398157,707406378,707406378,707406378,707406378,707406378,707406378,707406378,707406378,707406378,707406378,218762538,6666]},{"sector":8,"length":512,"data":[1700006413,1869506659,2036821868,544434464,1986360403,544417637,1936877926,1869357172,539911542,824208969,540424249,1646290280,1851877221,1936024608,1651077731,543649385,1752435213,1768431717,1919906931,1948265593,1852334949,1735355503,1881156729,1953066095,745759593,1868918816,744844400,1869770784,1952675172,1629498483,1713398894,1920300149,168632421,1948280431,1881171304,1869836901,543973742,1886220131,1852404853,1852383335,1953723748,539916658,544434504,1953067639,1936158313,1819044128,1852403061,543519841,1752631821,543519333,1982293367,1700929637,539782757,544698216,1998615657,1936421487,1752637484,1953046649,1885431840,1701733744,1998597220,544498024,1679848553,745760111,1628048672,1998611566,1701995880,660961056,1730176370,1735289199,1750343726,1982298469,1700929637,1746955877,1701603681,1935745124,1768846624,1818588529,1701978233,1650549857,220226924,1953854474,1634300527,539784044,1634036835,2019893362,1851878512,1869182049,1864397678,1868767334,1701605485,1702109304,1869506659,2036821868,1835606060,1953656688,544501345,1700923917,1835557742,1936421473,1852383276,1751607667,1819633268,1836016416,1953391981,746156641,1684955424,1769104160,1633905012,1851859052,1937337441,1864397673,1752440934,220230505,1953068554,1763732577,1937073262,779711092,218762528,1634751242,1852403310,1752440935,1701847141,1685023090,1869768224,959520877,1948268088,1970238056]},{"sector":9,"length":512,"data":[824207463,741357881,1701344288,1713399155,1953722985,942748192,1225395488,2003789422,1684828783,1667585056,1818317928,1868767339,1852667244,1634214003,1646290294,544105829,1702257000,1701143072,1935745134,1651336563,744777068,1661603104,1919970671,1852139621,1702259059,1663072620,1936945010,1684957485,1684371557,1851858988,1852121188,1668178280,1998611557,543716457,1701998445,1634235424,808984686,1678380320,1767994469,543450476,1734437220,1936548210,544175136,1634038371,1948280180,544434536,1953720680,1667854959,1819239200,1952671084,1931965039,1768187168,1852795252,1628048672,1869116526,2036821868,168632366,1750338061,1768300645,2033018230,544366949,1970107747,1769234796,1948280182,1667854447,1763732577,2019910766,1801547040,1713402725,1768189545,1663068014,1836412015,1864397678,168632430,544829025,1784837491,544498533,1667855729,1851859051,1769152612,1701605485,1816338478,544366949,1819310181,1952542305,1936617321,1936024608,1651077731,543649385,1881278989,1702129522,1684370531,1685024032,539763301,1667853602,1919971186,1634887535,1852403053,539763303,1819634978,1752459636,1684104562,577203817,168632364,1953525538,2053729641,1869182049,539763310,742478665,1397310752,1159736385,539775821,743656792,544370464,1953655158,1819042165,1851859065,1970479225,1667590754,1852383348,1946815776,1344300392,1852383299,1953723748,1663072626,1646292577,1869357157,1702125923]}]],[[{"sector":1,"length":512,"data":[1852383332,1667592992,1935961711,168632366,1867319821,1948280178,544104808,1646276664,1684955506,2003136032,1634886688,1735289207,1702043763,543520370,1713401716,1752461941,1663070821,1769103724,1629518182,220226670,1819044106,1852403061,543519841,1852143205,1701344288,1936682272,1868767348,1701605485,1869881464,1935894896,168632366,541133325,1936941392,544108393,544370534,1751344468,1869377390,1763735911,1970282611,1936288866,543450472,1193310562,1869832809,1699881070,1918985587,220227683,1919894282,1634889584,1852795252,544108320,623915057,1768120608,1919298916,1881171301,1633824072,1668178284,1629512805,1768448882,762077558,1684107879,1634738277,544367984,1869875725,1935764512,1868963956,1702258034,1176514162,1780511343,544502645,775173412,1948267833,544434536,1818452833,1701669217,1969692772,543515753,1948282740,1344300392,168632387,1969516137,2037544051,1634235424,1633886324,1700929646,1970239776,1948283762,1701519471,1629515877,1914725486,1919247973,1701015141,1919903264,1634040096,1948283762,168632431,1701670755,1917788206,544367972,543518319,2037411683,1919903264,1970239776,1818588018,1629498470,1629512814,1953064036,1634627433,1868767340,1936025968,1919903264,1628048672,1852799342,1752637541,544417647,1970435187,1768712039,1948280686,1919361135,544240481,543516788,1919118953,1651074149,1713404268,762606433,1701011824,1129324644,1762266400,1937073262]},{"sector":2,"length":512,"pattern":0,"data":[779711092,1818313504,1869881452,1713400940,543516018,808466472,859250729,909126966,539768627,1914729071,1920300133,1870209134,1881174645,1701673313,220230766,1953068810,1752440936,1868767333,1852797045,1818583584,1948284783,1701978223,1986618723,1870209125,1864397429,1344302711,1769173857,1713401455,220230255,1667585034,1819242088,544827247,1819045731,1869898597,544417650,1752460897,1735355503,168636025,1706509]},{"sector":3,"length":512,"pattern":0,"data":[1229868367,1464158550,909652768,1700137485,1869181810,775168110,757084211,1952665376,1919246959,959520812,168636729,1229868367,1464158550,909652768,1936278560,1651077748,1869182069,1766072430,1952803699,589325684,658737]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"data":[7887437,65731,925433858,935838603,-1335144928,3,80740380,407175174,-67009751,-1945231866,939917768,407812609,-661929469,-1910964219,868257499,-1174457354,-1510801400,2034911307,-1899786514,4898520,-1293382739,724363792,-53621,-1192916651,1150943234,-2094337278,533070572,33507057,-84016149,-466551414,-125836405,-1946228783,193258629,1954866821,-348911823,1065399807,-1192755985,-1706033071,-803470527,1026680003,-846610304,-827203844,-21889400,-1310523678,-18820797,1071108235,-754667066,-1527118873,-760969008,1955072059,-1693983157,-52294144,1103665114,-1072233001,-771958390,2130677632,-1972042498,1962934266,-13440765,-320324727,286966621,436445259,-705762410,-1716423274,1107685886,1262698828,1163262468,1206124293,1313162578,1096368900,1156973390,1308386055,1425098561,1330830913,-1895215529,1195986111,1105089608,1094977625,-387232942,1992748535,-1042085176,-1125402053,-167199075,-1580004169,-544230665,1279613190,1459990604,1163151688,1425075484,-671132644,100957892,-1367437993,1354258198,1144718278,-1389893114,-1308627201,234966463,120560215,-284920339,-352261160,1954671443,1089268481,1983572824,-346100990,-352117472,-345796549,-352051826,-951522457,-1542526203,1661397871,-344593657,-351817262,-337050753,-2116490488,-327881848,-342693111,-351651264,-342024074,-351585507,-1903105113,1209920268,-955389008,-339875058,-351378524,-342751292,1390143247,28870829,79887423]},{"sector":6,"length":512,"data":[-50462720,52239871,502986622,-15338288,1819239423,1931506287,1852404340,1869881447,549961839,1325594609,-277410482,1878997860,1944068215,1667326497,1743308651,-327848078,1710253615,-485431051,1640148654,1511220589,2082214657,318237825,315491590,-1367605910,-2146995200,-115551170,118393595,522981609,1609996817,-1370614170,822715976,2012953178,263058985,867036027,-51934694,-1085231549,-18933686,35129566,-672711445,-596262929,175506092,-1673826625,-1166092060,-83367760,741583784,-1203363087,-1113074009,-1426661240,-84480113,-1084691541,2065552004,2087314311,-1918047017,-906058050,21237074,-844310702,1274541128,971563638,-938554371,-174464033,-505789179,-604524976,-606527724,548107434,-100228408,-2022800214,-647067453,-142387542,-401574485,1612572787,799795349,-1439161017,45922809,199283685,-1285797694,716242950,-458033590,-940499359,-393170857,-2103247204,-1560436561,89340121,-1695808027,566406223,-151994439,1956627447,1052809733,88456693,1481378654,6430893,-138399646,-45486800,-1080383862,-1878849449,1835712294,522178294,-1609930846,501064445,-387170685,-702566192,91733577,-871028151,-155738644,-1674090950,53739009,363829885,1048018327,-877543425,1576014169,-95692045,-165420657,-235531549,1074346052,1190585074,283900424,181469617,-46125604,7127623,-1181079647,646703628,-1886699265,-49774965,-222979332,-337050505,-855506276,148700360,1142949632,-36735434]},{"sector":7,"length":512,"data":[539172965,543254633,-596351634,1801353181,1072391200,1344286306,1935762796,1945985763,1006055029,1634209849,552663412,-132063623,1634738124,1970365796,415954927,1751632647,-156452492,1846742481,-327894676,976148597,1454924052,107065366,-216980233,-139497982,-1478661103,1975519387,-248672245,1672059566,-93554449,-2144134785,-1095803056,1050803626,-1215258362,1704826864,-450012476,1186961326,-159484958,-1199363046,-1636268033,-401698997,149761517,-1029006447,-151545168,-643772675,-922397986,1811209124,-1426806676,-1954957730,-595385446,768604636,-1350866,1095060733,1126188371,-112242872,1330462553,1226854997,926176078,1413603743,-743442615,1125796223,1498566484,1341657632,541192402,140003654,1390969827,222647881,-826293809,-865309657,-203056795,-1065757669,1875836156,-814304410,1818845683,-1785765279,2020621625,387982724,-227818086,-1065774702,1768908899,-832119572,1940287687,-771998513,1919263813,-1658725826,545988737,1300499014,2017565007,-1895313819,1461722400,-879953722,-410292878,1713160431,361068649,1880760042,547295296,1267563682,250817389,56825026,956416491,12958805,970373894,1869527824,1538725853,573469843,-495564630,-830959539,-1832561888,-747111609,1953081205,591331357,-232537373,-2082241426,-957028503,1983181753,791581614,109301980,192780195,-587503136,-2005773146,1741584763,1043230295,-861004244,-968639437,-1273604657,807403809,1677262288,-788726895,305048168]},{"sector":8,"length":512,"data":[83109492,1814598,-210920902,-1583592434,-660719487,-985921983,1631782661,-1731842283,2027852970,1717855076,-1385602165,-1569747024,1070658787,1125959873,-210163718,-681365670,113002695,548326756,1742443869,1114047320,2122446840,1855979286,-2094959233,460002430,-748801275,-952442371,-50727782,-1836646554,-22243703,820973035,-1944828220,-1101270590,-1603557253,792992971,-1955794565,-1801656427,1841252540,-2080222201,1261397617,637746194,9065407,1742969791,-2033811966,-1882784081,-2046058427,1958313376,167554373,-661612626,-1904198903,-52119809,-1704836132,262052608,-563980356,1980182277,-658569551,-1964827681,-538511370,-2115513592,-617932089,401188097,20771007,-1841558668,37371452,-26747545,16599143,1963070154,123584282,-1645803488,-351991938,-1579530491,-1042397317,222810430,-564532306,-383754250,500910346,-549396421,-469436184,-570424571,301434945,1973933071,362437040,2145956869,-2144991119,1966080381,-153159929,-117439034,-1099859872,2307416,1335948383,2093763506,-942740164,-956265175,-950995173,-783916157,-1051688249,499614825,1122831773,502711354,2000386688,-1656386929,-418685286,-2010716816,700501747,-1915505487,38623835,-1439184151,1648758878,183304844,-2143559866,-1191222551,1805036741,1350974926,-360283131,12900608,-1947456558,939569798,-1670429692,-100033522,-1455772321,-1021916431,-1183620889,239141013,1964121558,847766906,-150619418,488608994,1178058112,-327196954]},{"sector":9,"length":512,"data":[2140936192,2145995708,717192268,483788346,-2080470375,-972906269,-352214907,-1022055444,-1077997451,1223626379,-1286668708,1363280142,-472310500,898068697,-1863285333,1675618420,313593907,-670493761,403531009,491392763,251017030,935481880,-1056529618,1000261629,-1932863485,-1549171094,345836594,-940970301,1836387883,-1066174133,1274904635,1064642224,319830535,-522603303,1660770589,1862443828,420244545,136119851,713769165,1676549566,434095343,-55569517,1347637949,-2080994840,434836866,-1901270031,-1393830652,77348348,-388065274,-1058028544,1895222760,-297442277,-751057089,-2029379137,-1613115100,-1627164199,1271868600,-97963061,330687935,-356576957,2049958298,668080790,-1566277232,-264233651,-169267836,137681194,373924073,67647045,-148585483,-1093374395,201596414,-1885845984,-16971786,-71401471,1997791283,1324976687,263873718,-477722287,-830272289,-1554145894,-569953180,-25560125,-352172551,-1334803510,51781525,-1793419800,246419152,1174435477,-635595510,234460435,381763989,-1836655133,945881390,-1863806217,793293063,295812897,-257707381,-1400210872,-25631849,-2135491896,1140576983,1971240482,-2072156790,-370611760,403965037,500433120,846387269,1911588420,-807477566,2143337089,-277813049,225771324,-388923932,-1049234589,604044832,1498955780,1493303592,-837688276,-167385056,-451790336,101263800,-780143805,839078469,1412183349,2096616728,-720579323,1526726853,-117175622]}],[{"sector":1,"length":512,"data":[-267376185,-718947362,-1089104091,1624773245,186869994,-1147593634,-1115018760,-477970686,162818716,-299131354,-1699775057,-1293833925,-2085021458,1107597410,-707243700,-1535737383,517636313,-885521959,-994099081,319747957,-1275933761,-624105004,-1274805344,-242939818,524184598,-1073660396,316817092,-321711878,-1794368976,-487111860,-1778733027,-1695445533,2086944889,1187451166,1576741626,1291582606,837348297,-398697504,-804120678,-188287862,-2030657910,-17269257,-192154485,-199286901,1586087817,-212432388,-1946742648,1492618231,1527160716,-599175344,1560363003,1986939153,1684630625,-277938656,1953393007,1650284632,1026605830,-134769644,1468049155,537597158,-377617047,-306207730,-334686999,745482492,29815034,-725051573,-515170695,-1077793800,-100864584,-237207406,-1566910821,905249628,930599189,-72806013,-283781379,-1896890614,790971725,-2018776319,489166051,1866179175,87689193,-33418214,1455378436,-1441000226,-1286381026,14161362,82707508,1082493855,1255649901,544521912,279583429,1868297209,1695941987,-839178140,-1021312502,1582102356,-22550276,-1616642284,-2140310503,-167084482,-2030395271,-79718976,-1709523516,827362086,-3699758,-1579512888,-751068707,75443580,-333594309,31008626,528537940,796657279,1986546649,371773227,-918952911,-1876048704,113651443,174616479,481206272,-1575878947,1584922327,46171859,26132476,-1995241709,-272462137,-1778280768,-1775431942,62708521]},{"sector":2,"length":512,"data":[-298235389,-620200186,-1661074317,-1562910787,346466165,-933791848,1305532562,-292679427,2147256580,2004991484,10450232,-1331512681,-2054497156,-35435848,-2115300490,-134360157,1976102211,18348237,1980657137,-1707340390,1340344864,1350886518,-398747643,-1778259691,-1765197056,-520027544,-1920241516,-1690855218,-1751906188,484577215,-792014848,221644835,1434518526,837760411,1170196485,-568830626,-191931434,-1074978626,1935334541,-2046054890,2085945142,465044361,-210211847,-1743795228,646958116,405125120,156411578,-1776929490,-640199627,279466170,313156072,-273643110,2080115941,-67369226,249324954,145809046,40484528,1138006533,656188476,-1605509119,-491869925,1963015395,-1452470521,-352133605,-184214775,-303870487,-1825092586,-1546784286,-1453588885,-1549177093,-538269328,1411394516,44492136,2132095356,-2117118670,1785595456,1145577488,1928735340,1863599660,1886445083,1208050021,541622617,46053473,541526108,1142954620,-1612488552,-1739754377,-2135173272,-1170250266,258800661,1396911650,1279618125,1398993285,1183428613,1694780912,302650578,-1743437491,243635720,522192643,43719990,235001880,979052259,-763670496,-992894252,2004142880,-238037170,-1399074351,-455604151,466461339,-1826496359,-140539534,1701519479,-286821511,796478822,771944964,25680204,537016112,1184369696,1843571462,429770576,1315762955,544849996,1642302977,873559809,-331939384,-1005246208,652309728,831622871]},{"sector":3,"length":512,"data":[2037544275,-811045240,776696771,857757159,-1240284914,668484671,-551704508,661580868,-1616478168,286930176,-432991604,-982561424,721505981,-468237561,2004462335,37714273,1547318935,-627483647,-148698637,-32871551,268777058,89050210,1654002272,1655872485,1647978768,1094701809,1949310156,703373321,99165434,1801267669,-1608227199,912680210,-1790845051,-1377866341,-1527337761,1256817606,66373635,-2144142113,1968889726,-1604983073,48389951,-1457788851,-2025975876,301334854,-21969162,140524390,-1328433663,-414519483,-1062948122,801431918,1353145874,381759512,381174626,1807689456,1191366169,-1113512373,1223137203,556174504,580322292,1299615745,1157554856,-285194157,-323894081,1005399680,820890907,-1968961296,53074089,-1124051927,702277801,-1867870694,-882596774,675980856,1694803530,1423647440,2081887752,-1551738006,-665594616,-1188944836,1206501311,-525548795,618980502,-2029797413,436846339,-1947750624,1317407728,1635018603,-2131809258,1611011805,-52119809,-1608332836,-566778962,636027666,288662354,-1930557344,-378355962,-2016401671,119374496,288809389,90299553,-773795905,78429773,884999445,-1083766594,90028,-1705332815,-738693596,180998024,-168261192,-1500118262,-1303976331,756255272,-1819771161,-1615123330,-1029250023,-511176996,-879069296,-2114911739,-258237840,949553698,-1475559374,-1606694422,1971662570,384499178,-2145876770,-596240197,-328174469,-327846143,1549887953]},{"sector":4,"length":512,"data":[-735426366,-939401452,-543379753,794442734,353035810,271650990,116154065,6003404,1791024972,6994684,32101641,-1100429221,-957481229,-968586112,-960740654,-1908160990,-211966217,-962158163,15294381,-361377089,-1250428672,2001406217,-958463781,-1279691494,-1670430571,298683270,56595275,161783900,-1104460717,1183432448,-598308390,-673395453,-365698296,1960592907,-2003207412,-95781924,-425264422,1001732420,402734808,868286748,47442176,-622421684,1599093748,2131262686,1945516914,1997857388,816398453,578563033,1578420518,-808141024,-452129983,317256896,-696169686,-1751481983,-2049337983,-441842768,-794139875,-1538397274,-1320570761,1719920148,687411889,1988523711,-68642342,991021073,501288336,-1728921728,-1394445077,54120664,1262661868,-1338855282,941483789,-1615745479,1590282220,75551528,-200358609,-1410843817,1671447299,133614337,-1206989854,236651395,-1441284594,-1878870270,-938310874,-2102373366,359931264,-954568171,-1201864120,-1904505432,-375619569,-2009054653,-1100010502,-358941566,-816906672,-238620707,-1792295127,1867385371,1212395654,-960968279,414376454,380673347,784863876,-985821256,378486042,-978926258,-124151744,136733318,1273109287,112827016,-1664009019,-1341786943,570601582,822001420,347794,-1164213832,2007534743,231340620,-1997339783,1179029922,-1236451847,-1311274953,-1780664789,1955599723,243712262,-913608736,-1891398938,553658517,296158208,1353339895]},{"sector":5,"length":512,"data":[1432183618,-1973190399,-1321159928,-2034080669,226540387,-1676943103,2041187055,252720334,1819543287,494956275,-325757439,-1786637152,1004306692,-2119631242,-750750183,-1986824134,-141416826,-553703347,544136506,308844660,-259690493,1233155354,1489815054,1131957888,1236145312,1625420635,-1512042133,366033669,1773681829,1727902217,1048633150,669952282,-1074953790,-785332265,34122180,-138386062,-452214969,-1156104026,-1220971465,-2060291324,-993350077,-1227223282,-1395529280,-738106464,-1183518924,20246922,2071939450,-1457806705,-1084523737,-1007533848,414273832,638273704,698775312,-690421527,-1023538622,1064539341,327468497,-258467921,399234801,-337540610,465767304,1209528373,1394628431,-1191583416,-213559520,4476481,1414122239,540811327,1749285423,-1385730463,1875427171,543452277,1170957666,1633182575,1791537161,1714773410,88105583,1930949042,1702130553,1073336173,1932027244,537931305,-20972000,1330926913,1128618053,1413562926,-276825330,1179537219,1395541833,-150252711,1230500145,1241329230,-1849673151,362980710,-1337405908,1143919592,382119325,-368839764,2060398317,15850119,-229257720,1833295936,-943428767,1667323639,1232106859,1466962049,-1519947153,-1379005475,1960242182,-1254571028,-1041757246,-193181467,1835104357,-367160976,-1352105420,1740144423,1701079413,1309415020,-1963233376,-546790813,1761226566,572157807,2036501603,578015600,-2073268661,-1939265842,1166975783,1953096560]},{"sector":6,"length":512,"data":[-1928852805,478608286,-209120573,1818353915,-1681038204,1676805893,-1399518672,1202263552,-753921810,119140337,1685024252,-586712402,-514354665,-390594245,-279084478,-1331661664,45141312,-1402336753,726535296,-530511900,1307064880,-202424096,-120130336,708986242,152068100,275621367,-1341129770,875467092,237451374,1321203728,1173181571,-1274300032,107563041,-426687173,-431619229,-429430966,120710818,-431167790,-424551975,1996594994,-1065947715,496889140,-315232769,675049200,-603506963,-638749203,2012034817,955101718,-89912978,252971063,-623626316,35260431,298200566,-1192591994,-1742082991,1065329450,378111208,-708868886,1279182029,-512429204,1625038214,-287511521,-328163876,-1327696932,-588249969,945675506,-203675388,439427292,-2033787137,-1090257927,213770780,1233569780,1258026615,-200930210,-628463326,-304561380,-779405330,206647566,-520321015,-729028371,-2031575525,-952379397,1621907319,-574563834,-2011828921,-1290131584,-316281597,1475075962,1556152892,17744321,-1334394521,29455361,1371742232,-2032851948,-68486387,-67156197,-83819198,-76261309,580916349,-1016086482,173816332,1159122433,1388633100,1640712773,-839040542,1162124287,1162037590,1428095059,1933763182,1662626257,-1897623486,127634990,-1354154537,590956872,-1840845744,1832062073,-1493272926,1500703152,-726028346,-2119170536,-1464282314,-1488751103,161916212,-1681023590,342747344,1080590221,-1067875306,944962918]},{"sector":7,"length":512,"data":[1891931954,1735853133,-1509562154,511714848,122463932,1260680968,1566592019,-146005742,-1291417070,396568258,-2094592542,-35259059,1964310284,-521778808,-901843210,698340104,262150518,-1601687644,675476443,1758179899,606875843,-102415312,1087516885,1251668471,576117030,-1059993787,-1133142903,-214252146,-985796962,-67472414,-1914577413,294965374,520343707,1971159309,379623943,-344514600,170040003,37939690,-1511561044,-1122640884,-917127327,-592324427,-593433826,1038162583,2081805919,-839412526,1173721527,-1257702721,-4480963,-1193403338,-1958634822,-1495312032,700301332,-33099392,-1610576101,-2037905832,-1884797793,233731834,1493204224,-1068031900,1680140806,-1485069476,-1653557373,121438481,-554252233,2124301245,707273359,-1868397828,-156300664,-1914806187,-1948166725,-37166848,-376932992,-17806601,2118169327,17260579,2106414716,994082044,72216007,-334795565,-159916812,-567149263,1551367424,1812715636,187097096,52527149,1963053075,1153140363,1400363332,-1312685306,1426391872,1973743604,-1307459671,97445917,-1627160410,-133699443,-1869742704,-1088263536,-1084001185,328162986,1142644897,-2057393248,794501395,-1280579238,-2145190650,-1421864115,-1707053118,-1844166833,2023817343,2047216412,850711348,-800553045,-1737455634,1574889454,-1674980753,343486515,1719266502,1162379800,-335363864,-767884032,1141535572,932840252,-977272090,47548801,2123039742,-54118908,-1192540914,674068341]},{"sector":8,"length":512,"data":[785139337,1040972874,-998672185,-1547531021,1602748286,117316736,-39838586,-945848330,-992262775,941392390,-67902522,1872647676,-1969818115,-2082457444,517833678,-678142552,-1158561552,243579602,25828469,-870481810,-1207428754,646613495,-1023350272,-1585368828,-440374152,-1744145025,-397054730,-949883337,-2037797861,284952884,-1094385866,-2032905992,107507768,-1204100923,1694632684,1460056887,-787547356,1900397606,-1960857409,-125432840,-1250609605,1543754909,171984912,45110987,-1441805559,-1408141025,-877762276,-906147912,1257653640,-852818512,-1580337662,-1429352355,-238192571,-763191108,500019900,1880097454,-279917040,-1329329930,1019334162,-830288364,-835029042,1145351485,-229511087,2081550538,-146392298,-315701899,1642065439,-992016914,821047325,-1042844174,-218378197,-2109573362,-274169278,-2109963582,-1963746176,-1279335663,1478603712,-986795074,666821566,661893044,163111862,-620923840,1673159665,-772144570,-1309144068,-172362920,254266111,-305077341,-526523600,-1125002367,123583694,1650334908,755117168,74906966,29723332,67136604,-149427192,-1329260021,292612256,765073761,1621359988,-531009197,1838895101,890879130,-1272253901,-394257036,998302598,1308419018,-1363208331,199083184,1951002573,-2045354375,1097405877,-305922696,1826726968,-79684598,1961858785,-1131681311,199671624,-764692458,-2116678487,134574261,-927169623,-517309249,-722092193,697762048,1873592436,-189375992]},{"sector":9,"length":512,"data":[1913045672,1913035769,1036396042,-763443794,63487848,-302303611,-1946854018,1358640261,-50906116,1031808519,-311134870,-638118112,-750222615,1348088327,-1447174390,-277126463,-1477177979,92862958,1374342135,2012922362,-1040452050,-335810419,199284475,-973601934,1963157300,83947440,1943642760,-507915525,-42008809,2000170219,-2050714977,1329593842,-2087506609,1477140186,-1067531591,1402196529,-1669526517,414580548,-683804387,168591452,64215420,-347208589,-1114411006,-446560617,284521640,-2147153180,1163205632,281658530,-1182404614,-1441174167,-387922167,-136021877,-789035321,-84150625,469939018,-401036599,-332716239,561010203,-1426199,502201974,1671101693,-474424604,1689835142,-661259270,-331677190,226487243,-1550118095,-126355221,549214475,687276375,-1207157644,-1345710717,102235024,852897989,1643654795,-143853534,-201770074,11389551,-119277601,-83950357,-2130919797,656317371,-2003944968,-287809835,1308487648,-1602587341,-1136917230,-987724253,2012817222,-937102545,-688234788,252966915,-763131296,-2059733575,1959850908,-369562878,1372712750,-1744440613,15520594,-56630503,1532624409,-753155797,-1563142355,236864113,126341763,837539704,972379079,1439324523,98629809,-741481849,-153294412,903032542,570611729,-1596479874,-1495197121,1919155186,1885941803,553736052,-33311093,-2110600393,24360696,-1818559671,1548749039,-1770224322,933662185,-1792177106,-2085861820,-1013292610]}]],[[{"sector":1,"length":512,"data":[1181134159,-6676220,-1751518994,-979502735,1957615194,-417347142,-159019684,-1043938182,1375782047,-639410681,-653326592,1292298025,-1334331175,-628315776,1125451230,-562766307,-217537828,-660592642,203858990,-1565067325,68820480,1547752649,-334234993,1091143834,190789541,474969344,-622523427,2079201281,1193144691,1853156147,-1724339168,-155068672,27723777,-366548807,1136195210,-1896456202,735657486,-1006099434,1095643072,-1156823731,1414082048,1157820428,-297751029,-286324236,1431586131,705033808,572373754,-1111088596,962248695,-14915472,1297571700,-331677484,1091759025,-1711214864,1983313338,2091619519,-1188636106,-1579632275,321314268,114619667,-1344474392,2008483641,1340530899,-367239703,-777952288,-526917503,1994988857,-1541480730,-277823744,-1004571391,-991148600,-1003092133,-1595050005,-1962749127,785640462,1249836243,-1327003969,1408781615,-1188215434,754668378,1883168223,125047470,-109772039,1946371961,-655051490,-1260981510,-2118844958,542430026,184223107,1634607323,-76735704,-1176857592,1416960096,1886362368,-332375875,1919223668,1106831135,1801807219,196011040,-2132762309,1162085439,1543917389,809938559,375796016,1674763267,189017964,1254005619,1663919459,-147987414,-728188439,-1573883611,-1455504637,-385287469,-402380609,552336900,470428436,1377170767,-1165919348,-1077798926,358365920,-1710669360,1706134393,-1585769000,-1662506636,-689091747,-568219864,221013180,-1314495458]},{"sector":2,"length":512,"data":[-1629003613,-1525427288,1536852365,1315361124,-489235654,-314569048,473670697,-844642990,1578417930,1893794704,675739392,2094859962,476711155,-835025074,1884868122,1975899397,-82120927,-2137050525,-125498570,2085747453,174760656,-1239554399,-1451096565,-847527698,-1271218404,-24103725,561338896,1183384037,-1399853194,143318803,-1006548848,-1076240998,-1655345089,45971942,1979349470,218557989,1485139187,-17031838,1382510057,47659764,-1184018670,276057879,1179326147,-834355171,-2145605757,2080963646,1867044922,-2123414016,208638144,1353212217,84303890,-1840750508,912601953,669852528,1972522410,350060377,-1419414159,2019904110,991473371,-1296927636,1615578150,-1897851578,522117965,702818305,-1018412666,364955023,1997605929,365120932,-358347160,-722664690,699461911,1904243788,27292690,2067417833,1546068196,1654431798,990179442,-1390866625,-521795728,1677724576,-1172818729,-718260891,-1304284644,467786670,1352940327,-181777322,806500864,1004798188,30479064,1952556306,-655536659,3852033,-941094931,68296922,499278836,153707664,1280803588,-553223956,-753140677,-1687195024,1668637702,492950161,-544704348,-631847751,-331619839,-2023693626,499389188,118942800,1124191821,-384580688,-109209036,975200609,1357650274,1641331463,487040793,-2146959130,74180259,1083014821,1836606726,-1585362350,-330287423,312482615,-612428632,-1822298011,-712552910,-986313507,1518621800,-719877523]},{"sector":3,"length":512,"data":[-1977533497,-71756498,812552417,-353502245,993722995,-156122850,1671325301,1567133289,218918225,-139456363,1229215877,201546054,-183399877,-829748499,251676538,802243565,236834864,1410737136,1290753248,-1206538683,-74530648,1403653967,1162170947,1413291152,300438100,-1099553040,1317228366,-236130731,1138224659,-276871349,1314213714,1095254852,-1282487572,1118388557,-1095151025,-267325377,-514830512,250572144,2045721615,1448362921,-277035447,162398799,-1487669179,911421545,-1621948915,-2033842434,-2033778619,-86934058,-1327957488,113655207,-1164313772,-1557069698,8351092,-9603333,-587405642,-430732060,-516487432,672245216,-1124728254,1530095191,609959413,-184997668,1041851400,886833219,1364326977,-1600536831,1866090957,-944550411,2024804622,1392821512,-1306477632,1603822222,-1774497024,2136293275,992443400,-1049194874,1457980892,-51629824,247483376,234145334,-16873843,2144654088,-420603160,-796505164,30758357,1865669570,-1660943344,635623410,-488718717,-776014923,1795637487,-492832343,-1075187111,841392382,-1005002243,-989401338,-77059134,-1990452253,-1761807738,-34694156,1490101739,496898192,-2144477238,-654250981,-121360528,1612462265,761270508,506092792,-268638074,-51753585,-1929855292,769454016,-2071333125,-80344334,-495975426,500034812,-2021580936,-2037691513,1694425319,2030599334,-1089437884,-1864207403,1932339719,-458698234,-1077953055,1195905270,-821686779,-2122002447]},{"sector":4,"length":512,"data":[-459362555,-492830472,-159023620,-1507837789,359208954,-1326700681,94880770,-1329104660,251844098,-739911965,-1339330048,-1408602088,1774066139,946498169,36906712,1977734395,1198410731,306214764,-77395288,-72074821,-19127035,27854587,-1549203712,-1443960823,-1494348813,-574882905,-637207561,277278960,-537154849,-383993663,35849081,1058361885,1075503767,1077414860,-1569758954,-767874752,594956463,369112642,1089535212,-1137997984,-185875549,773256260,303393844,1980490249,-715128780,886812800,482214071,-494808780,-734349453,-1586399631,141653006,1995500706,-1877118656,1879273862,-2085064347,-1877118618,-606758648,1908699521,1907122292,585864450,1677518299,-600104330,-1636797444,-2085511626,538811951,-1396916479,-83895363,-687707167,-235987590,-722735640,-1865244436,32435974,-1871540074,-1206675225,499917031,-1466892025,-1667418047,62123488,728853472,-333810655,-80719708,-333599152,2095841360,-1098827536,1979839707,149866614,82636352,1947123712,-1268616219,-1263211401,-2023705512,499525121,818229482,-814027331,-1025441561,245921767,-1017590262,-568596698,-1634472991,-1640783218,-1629456728,1685018653,-725369030,499671155,-87540211,1003012328,124158936,1107421085,-319854910,-1211045726,-1756659608,46379076,-1704796214,-466118284,1656819049,1970334254,252082731,-1089148136,622150607,530744164,241742300,-452127524,-2037905420,-1098843331,1792555772,-520062922,2016179529,1981475116]},{"sector":5,"length":512,"data":[538828909,-485823798,567737300,67146097,1935771676,1415473671,598858858,-1136649110,-88140395,-709422057,-211277002,-2134935646,1423444265,-779564947,1559208782,2145358158,1352533038,318926468,-2053063552,784852849,2011077333,518769576,1410258119,-888389433,1642662880,-417338620,1494961639,1946967972,390814740,692165352,1089029375,-1811480828,-37356383,6601113,-1466762761,-402416673,2028976841,-112598706,567805404,1093775230,2131675055,1426666267,43694419,-349216581,1212650003,-1973339871,975945883,-341710464,958859786,-805190144,607887672,1530275041,914290749,1154909985,-2116317232,341854229,907326749,-578430959,-2145563628,-1702643024,242749344,801636493,274654727,-407173493,-91911801,-1007381111,-259264259,-2062168053,-330654732,550094966,1774155588,1962113,1891571828,17523947,1489206209,137157321,-75093897,-69682374,1598063320,688699449,1357856497,17123334,990349264,-800451376,-711496064,-801437786,-791655409,1990241806,1085873840,495175193,-803730880,-770591701,501483514,-1215502144,-698291516,-954201404,-1004944370,1304408808,251651681,-1565131585,1975256401,180152496,-1140366571,-1011565554,495148776,180878572,-2116499679,-564165862,1453824703,807762663,216800640,-1608336574,490389691,173136059,-999572700,397196046,-234435796,-1350524402,802715064,1268566765,-1950640018,857577830,-351621192,-1122756335,231741952,-460178942,486607010,-1594385375]},{"sector":6,"length":512,"data":[970434822,1007187197,37487857,980806837,100502395,-191188360,-1542827153,1952973551,-74886899,-133302035,216791789,990316228,284338294,-290454599,1996486617,-392038147,-50023011,-1791314772,-1966326757,1931100231,2146968103,-878697932,56268060,1333024033,-1081799428,1333791201,719264668,-371612053,887151428,-797466360,-1358055119,2063789889,47423586,183566556,-759563288,989921289,-1057949460,-1029524779,244926732,1666198028,-2059546824,348234701,389220559,-400234490,64997515,-549003744,217862158,-134477060,972818620,722324480,328227882,1393653921,-115574132,-1342171324,-1642031100,-185294292,2012926040,-2004373726,-67173397,-1694519434,-950964861,-1070480754,-1982199002,-559468219,-478838161,1579182307,899668741,1869488142,-2146046336,-1639726373,-139937547,-2029486396,-1762490826,-697720113,1778575667,402030181,-10320246,-116354691,2666818,-2047806602,976585200,-252935838,1246822527,732080686,-1246691653,789307802,-1796412343,1087832502,-716856699,-869238207,-1813905411,-946583928,-1533481402,-1947335170,2072047230,-403261299,-1924953353,2007109479,-1342798882,-939285532,-1170180684,503769349,1487634659,-1610372370,-2013217301,1575301957,1494691555,1862218719,-1063946986,-1685363547,-1705962874,-1187473763,-333917347,1392771217,-167193596,-1286159694,-1258881008,-1332280046,178107178,954557760,-777373526,-180521075,-2069098580,-1280701750,-1967475796,-1665939711,-1944407552,-1404827522]},{"sector":7,"length":512,"data":[29914563,-1090728192,1195984905,1425820744,1112034601,1749962116,876056552,1970169197,189063118,-225733021,1464816397,1431152383,1346982988,2131576140,1297245168,-145865143,-475591867,990835940,1397310496,481531889,1599083052,-905807102,1979652928,1769292068,-1948070404,197624312,53951328,1481528056,-2143128512,-874536844,-613586205,-1545656136,-1364813550,-731041405,1392646584,-1346342334,-2050613053,-801500208,558083775,1442619091,-1374681482,-902101131,-792056048,-609349347,499811208,-901969992,345291907,-890567739,-606025214,-8486912,-1257929462,549713082,-535960832,17122673,-656080435,279315650,848754448,1300557321,1907686822,234832345,74837115,16119038,-816777729,-1431503734,-1596367866,-2030104439,1179012867,-1502710515,-513315944,1992350074,1853154568,1735321527,807948948,-146734043,988283796,-2145648492,-2136077590,1817184863,1254427140,124783619,402871580,248320551,-592984538,2110007739,1963914502,1356472282,981139776,-1326064924,49943456,-303583588,63775514,1753044804,-349087902,393216616,964607,1129203983,1162106188,1113253437,1346585627,-1957953295,-1610259504,737766720,1960985538,-1241505509,-1145405412,1125885049,-2100672302,1975681265,-709215282,911607231,-601780544,179251726,392443509,-457282534,2019831677,-1585905658,1426660344,1162364243,-379956671,1366313989,628120068,-220333752,221509504,-1813513158,-1526914925,-80046415,1830182007,-402227744]},{"sector":8,"length":512,"data":[862304909,31950087,-2064191891,-1383551572,6120470,847971481,1970740644,-49640791,163817601,135142903,133629943,-1092914396,1879137411,738832546,-579860368,-2091035806,-858277098,-22930574,-1690142255,920482823,1766817163,-1290921741,1884408462,247690240,1879825792,-187114208,1699408730,-1270431218,1102330384,-434106312,1174150532,-373361154,2080130307,-247287331,1349500288,-744107146,2084219893,1979643147,-170113247,544610673,-546020875,2042164501,-1415118338,1411759424,-704546416,50234457,197989805,-1067987853,352845481,160921820,40222655,74729578,-1677196643,1680976388,1981620742,-655439355,512617434,156352097,-2081915,-335483861,890575292,-1173502637,-36806318,1126187859,1163005003,1431390221,459637878,1846239576,1297023856,1310575140,830138122,139280722,-147751551,1173124363,-901394700,1343223119,-1411759600,181326903,246960961,1388580433,1465157475,-921744493,-84921827,-597592829,-134658399,-146313458,646248773,-146475070,-1563430693,1048578687,-1180273774,159585458,-1727217621,-1961978535,-1046626787,451477957,-1021558539,-1012432662,-803608494,1623655308,-2032074447,986154768,835171440,-385771592,-954367064,-464404477,619971013,-385806624,-797523093,63163139,34521478,-797523154,63165443,37929232,-2085574671,180609027,43647862,61916084,-1430000893,-2095965008,-352206021,1104725112,29686786,-791822002,-337896191,184730684,121750618,-1231352318]},{"sector":9,"length":512,"data":[351070977,-1658842948,1121977085,141427540,879687490,-1404786676,-927944603,1755762881,822138540,-406844271,-336211503,-1125103499,-2037283804,-379197487,-849561343,-1978103528,-1607250695,-1324216659,1037941668,653026420,-370415361,-503082761,136368426,1670441442,1961008643,-1333760942,-1114667271,1927035884,-1867412669,-1472012662,1135651878,608423190,668238730,-1205917430,1889135108,1348116487,-1443255095,-22160105,1454647802,552128684,-1160000192,400778061,1644263714,1668178308,184747475,-1077649364,1920333384,2084720109,-1751098247,-49718,575529130,1568713310,1464131308,-992657505,647633597,-2071832839,-283317746,1755469944,501279242,1772247297,-457754390,199819354,1650185923,1981747758,1359071088,-318367582,-266705675,113511360,1418796168,646471328,97975305,-1120929329,975632272,-113609211,268859570,-588845161,-512165548,-1508709550,-217149746,464841805,902101434,-340398322,30983859,-2122796530,30482369,1122897096,915260212,-493680698,1497459020,-596215032,-1991224028,118321512,-791414981,-659277362,1648009719,-29688165,-1055342898,39597824,-1117820150,-1239764756,343257153,-969899149,134579457,-964946826,-419362960,1555926262,1145650948,320146454,-1240790657,1847648224,1700949365,-1811766414,-1081749270,880894607,157839117,495325571,-153320073,-153184773,-203179295,1962116363,-1578553576,-768539048,1042277574,159320444,-713825289,1865969204,-863824484,-2088572493]}],[{"sector":1,"length":512,"data":[1858221408,-1671905816,-1695895588,-1133997168,1947043548,536969955,84961599,-604530170,-1363044596,390727681,1078361356,-156545737,-1069326155,-1783852824,1100660480,420454400,-356812267,584741413,-1143312355,-2116408721,-1922432995,1970076271,1630781254,-405320961,1961692246,1760084275,245404115,-1841244962,179601864,-111290300,207837795,1073153024,542392608,153113595,1600611650,107896820,1157827225,608906489,1642884307,-1140678543,1691700451,1750552420,1741684454,1474579557,1951267177,16895592,75849985,-149806900,-787934491,-84864572,-235483067,-239468053,544596486,-446502266,1048540400,-34109816,-1106827841,-1308756244,1085736721,-243366442,-141424258,-2140200332,-1991084679,1959001222,-41357217,-33913249,547306987,-1579619641,190478806,1729923590,-390105789,-1440571128,-163976384,633039822,-141109103,-58903693,8832560,-356940099,-1096156946,-1024981901,-237501454,727984831,-869518372,-1958601247,-1210551677,137757020,-372125093,873374141,1624426685,1165233597,-1136627011,-1115620416,1978539379,-1085481123,-2109993984,1082459406,1648098114,-361293451,-936114629,24344330,-222461002,1798890215,1210941092,939021817,-1191381967,-51763965,-21399559,798885089,-193004801,1782792838,-1083644376,-899327826,1426899066,809818338,-698631559,-662003528,1001315515,-390826595,280214851,12515248,100107165,201682032,1606263079,-1840913418,1192288466,-1576703334,-158698947,-362620100]},{"sector":2,"length":512,"data":[760314683,1579200748,-1072385956,-832086739,-696841748,-529207006,1112703718,-344340234,-1243346998,-2008418285,1040067242,1975528445,-1962860035,978910398,1829387432,482023936,1382139912,-1053396507,-244586104,62941316,-1897754709,500859658,-1098673912,-1908152334,-1896267720,71765127,-249283964,1407012922,-280402175,904593886,-1328842534,-58306484,-1710312095,1785726432,420034177,-1406765660,-909342728,172805862,1195765760,1315325247,1324369917,487175748,-754927587,442908531,444674034,-1630011212,-1542550911,1245733892,-322935386,1214989958,-2128811014,899180265,-1299535505,1466369770,1707538504,-416708534,1715096458,1680113866,-725188572,1307261725,-790674209,-1327498738,628960389,-360986128,-1227191352,499188654,-757918754,-1034817857,34955957,-229138160,78707156,-1333397224,22697847,13862120,-1518937820,1122990152,-1040076720,1118077858,-104791970,1006415477,-332641495,208894384,656213234,1265771266,539456216,830753373,1754991076,370014401,-1527247926,-1638790181,1114180485,481722873,1682141435,-53454144,-1609278205,379801614,1090333984,37018755,-1984438174,1459489771,-519569830,353349674,812138824,255526398,1356811008,-1052185077,1409944847,29364222,1083029778,-754135983,-1607160835,-1890621010,-1363584853,-1568536635,-928972370,-179130705,241970094,874047918,204990227,24720882,-1018529869,-1827998240,1768538406,1975129370,1884629691,788082788,771956796,774766731]},{"sector":3,"length":512,"data":[303166208,1237466885,1111392503,-666119266,-192596684,998255594,892349435,-517946635,854188355,188496518,-1089438096,-1026760313,1642004712,-159370342,169541648,-1991284201,-1156037212,585900503,1898735458,-2143630045,1890195021,-2080439208,-1598322187,-568261296,-187292413,-1063520909,55795370,-2094818669,483035812,100444645,-1082058251,-601468450,1680093603,1881256667,992485916,-1371477034,-1077393188,-156802694,-199016375,1166735618,-1941775217,651341930,529796031,-1704420722,756795886,1965558949,114391188,-2011443054,854926213,-121729914,1380320303,1409437007,-66991281,1651856162,1962931539,1716488562,2037588002,241267822,1944287264,1944387386,1935745252,-2040043149,1962241644,1798351333,-1946746834,1496151102,2113456008,-135475807,-300121916,-1195630464,1248014401,-513048485,-1089258513,-2115148686,-638369555,-226175570,-283083465,-677106200,-198742469,-1212373983,-1517071920,-988736034,-670946839,-1311162901,-355610621,2009973888,-854087408,1075679232,-1076784991,686317787,-1309399613,230890715,398303683,15450907,2012136425,-614132801,986686455,-1544817545,-374415153,-2066779133,-1698920547,-326162975,-605111320,-17902534,1281152156,-1398586564,-1870645510,-601281636,28363200,2074359017,-1865824192,-332525900,113640888,-1396768529,-257446271,469825186,-547334161,-1072251230,495905691,831774257,-2100469731,-1104412329,1154809883,21301040,-1699666716,-599889895,65583113,1977021022]},{"sector":4,"length":512,"data":[-1037461742,1175164570,1697108506,-1198440303,1223214749,-199389608,1220042044,1483776236,-344527655,1962157517,1219373600,-1825523363,1394150403,1418231317,-145992639,399245521,2059340665,42563950,-570486676,1527454465,-647008446,-163285857,391996790,1620265307,1819073303,1145425282,267999337,2037542772,1970090077,-669185559,-529177056,1881175139,-467638050,-1011822816,-270003706,1869760120,1830921325,-1069863063,-465519,1751326721,1701013871,1514754827,1329942375,1429882694,-1823012784,1213529827,-1655435790,760759793,1414457923,1293796874,-940228295,-800108509,1313818964,239862492,-2023501087,176237975,606745424,292946187,1369308326,1330005333,467516754,1431219470,-30262195,21543511,236978480,-1001348932,-372368067,2080879114,-830758572,-906499573,1397444161,-453946796,1330602211,1458979924,286235205,-447966833,-293897769,474235145,1397094420,1991939667,1112880068,101380814,-1562753418,73674393,589020319,-1810593285,1230406051,998526481,-1831643910,1125134391,213602901,1135975196,1375803342,-1999693479,1306546713,-586604486,1330507551,5850839,1364021523,-1178221831,1095255019,1329659381,1095625743,1364348330,284176034,-890178585,-150035888,-1896935697,-277243584,-1309903025,1350124371,-2103785900,-1578099029,-1251420171,1961904030,-278574778,-840887027,1463765032,1425671311,36633429,1342892623,-1789876578,31889292,-843052248,1377667601,7787508,-1070587888,816892398]},{"sector":5,"length":512,"data":[935456601,1970397098,-243369484,1144476448,-179087537,1398668802,1868849512,-368544905,-149144041,98529260,-1249352476,1349745120,-2138584934,1944185521,1885688476,1357555558,-1491948333,1319949535,-1201567668,-1011296275,1819168676,223436166,507893792,-234335683,1138723096,661349736,1802634999,702811251,1056237456,-437052287,-1159318207,-1921497751,1950140948,1170001389,1249368072,-339229730,1923181763,1666430977,-694454238,1735440028,1360952646,-1972380843,248075662,123400336,-723651156,-1963392656,-760800006,31659251,246075192,1077534500,2136741871,-1388220516,34817108,-1517412294,-353328477,-1074338219,-312053192,-1059053840,-1115628039,-1294140376,155515195,2131951862,-2041572096,449477350,-964335553,785065751,-629061306,1846670748,-436993246,195669136,-279524052,-1806170012,-2034925437,-1559585200,234206555,-993748025,1768323577,-1839000393,-356934349,-336577614,-1150861046,1506952330,-180026194,1886799625,1169704071,-385814772,301079283,-1938874224,-1941739999,169882608,-1341886944,45792518,192323869,-1627781407,1375936635,875430300,-443250606,-2096572802,-1031774859,1709099962,-2004814989,2105042208,-400335901,1923410734,-856144264,277920504,791795454,-135934243,2030721109,116757774,-1035224584,-1841299129,1374993693,1272603514,863197509,-730619540,1633197836,-1534155834,292923112,-1325648683,493879336,-117637632,-2031067018,68217346,1153689862,1969582201,545319041,-1020190937]},{"sector":6,"length":512,"data":[-314711714,501031397,785334218,1750343712,1733921932,841932897,-590264350,-455350143,808462160,-418432551,551275002,-1607957536,-307203029,699559783,-826074578,1800247220,13836429,579892039,-525541243,-831599173,-316124178,-487253445,1448341965,115751240,1497443747,-687524864,-674366780,-1106203904,1718201248,468125366,1267436609,-1039295725,-391387516,1631801357,-996423168,660747750,-1248839665,876850928,264318037,1642929952,1749297506,547316543,752609518,484884375,1499738029,-1417644300,-1421315002,-1645179264,-1616167034,-1601578143,-752906687,320509430,-900652658,-1916190021,1636569273,853343002,-1580398977,194101237,1321135557,675069017,-293682926,-1165910962,-2006830130,-622641066,1276231188,1993392917,-1670091665,1706033736,481275960,140308922,-2094083429,-1011046127,-1947869292,-2125126399,-1075325245,1124540677,-646615834,2033791870,1064919415,-425720309,-647589619,-621212635,272517455,1149366114,-1626488318,-596305181,1924544131,541508454,519966042,96620730,-2140739858,148122834,502216735,-192083117,-971833170,-786680983,-234250550,1700367672,436875006,215366535,2140824823,869302290,-832057421,-224956299,-1169947959,-921804797,198375024,1857508083,-506262087,-1679887643,1693517068,-1705822311,1292045697,748789301,-2135045476,792290101,-286319087,-972362869,1378979123,290289205,-1914033704,539532507,-1803432890,378655220,-360428849,-1702701627,833078854,1404518813]},{"sector":7,"length":512,"data":[-2007412483,-227793690,1693123028,1892680325,37559685,1896773019,1275363569,1431637880,1440479582,9496868,90906189,1086584264,36984564,-628760517,551944248,1936464401,-433853991,-1832356911,1838554421,163079945,-358888271,-311050240,2050951899,704855923,-1710020050,471242826,137825285,-1100511503,453988774,1195245700,-934061741,1185617134,2134332591,1282687343,1764324476,709256045,1238015533,-563107551,-445690592,-439986055,2035509125,1863777167,378301805,1994137840,550424286,217712144,-1501741794,1717990722,-1531965769,-825261288,1179992576,250864966,696645681,442567997,-2147065664,1981108243,-456187390,1577201872,1360190676,557154639,851708169,1761123201,2045317573,1783972337,1136589194,-1643115454,1709228368,-106827304,219917525,-2027334462,-199076783,-465916382,272265680,1997885907,60822889,483969120,-1070600662,1953322068,-509294560,-2143607608,2034046013,-713735930,1104233562,992205634,-505149694,241757241,998643001,-2039707632,555105142,1452496073,-2139288699,1774417476,-933358071,1930321992,1118421780,1002393716,124129536,-1603683104,1893990915,-2028639053,1905814454,874015115,1810410546,1742859282,1246168161,-1496130309,167438,751517628,-1281552862,983050570,1605133718,1754609688,2053836481,-832287636,1911603637,-160429021,1328343415,-1832644669,-807650409,-828528890,1874418008,-110968452,1855025966,1679027757,1408697386,1423860865,-1589610086,1609499956]},{"sector":8,"length":512,"data":[837353764,1095043909,1314394904,1302593968,-496406737,308479438,-1045238514,-2036304,-274724460,483041889,-320244165,-457251827,-1924178112,1458770622,-60734624,159947487,123676304,188579878,-623461552,-459091290,-158239511,1865731830,-1090253834,-190011110,-1677596643,-627143959,-1636890879,-1071218570,1048608963,1399740917,-314589071,-1646716230,1374281275,-1822103353,986145557,245302707,-357024560,-1063562985,-130754237,-100329476,277928602,-2030184972,1266153787,-858515960,1946039942,696779046,340865588,1360279040,1502834989,330820204,-1660884651,-168943956,-2039106106,1970584178,-66789382,-1684153864,-594360477,213412866,939823199,-370378845,1213140113,1613398023,-1747038153,-1910487906,-1566445274,-528593495,-274470827,832501664,1389373138,-1042707098,235507028,1368202869,755318925,-1073503946,-1072373526,495902217,-1067466741,-1607517232,-1333875962,-1097739747,-1677176596,-1845138754,2002440538,-266663920,-1174116190,-2137679871,279868701,-646391337,310322882,-354627806,-115552512,-786578752,-152572315,-1766066597,244223468,247068139,1780084714,-1274570453,-2087654631,-1257760287,-2136204930,-769992810,-2145661878,9567582,419602392,251293684,-2087803992,1477026589,-1472157021,964413116,-382650111,-940853313,-1102266866,-1107033462,100313161,1325011652,273872634,1611945766,-1182077763,155374748,-901722912,-2005728972,539752324,138763191,178387653,2047871040,1249509766,1226179065]},{"sector":9,"length":512,"data":[-2069870210,2114000509,61902846,-813017151,1018691626,779954185,-2147018878,-683593026,1493333629,1102745416,1599276935,166299569,431730953,-368916584,-1598488139,822871275,1668773696,112685108,607843634,1811593907,-753715723,5193153,-1902654435,10620751,1325984887,-1975496758,-2102768506,1363183145,-1919410795,721276249,-371309439,231409596,-1977768294,-655753946,-2116696619,998294571,-586706967,-1925718802,671376702,-875232079,-568741420,-1154979051,-958267892,1156485,-725265175,-723418900,1748259210,-826256238,-1931951347,125240569,-1464267287,-356914429,-1598475656,-603477733,-1044671557,113772829,-39830597,1925726907,1979738588,1669383255,1003214988,-844459520,-1870761967,-671950865,-684849296,428686296,1832528597,249052027,2067990907,-1475760479,125565251,984119149,-433460761,-420871403,62435359,-1146057794,75209328,-735971418,30286005,-322036107,1909361856,-609182270,-1311793943,-724622077,1848455373,-459324649,-934277525,2097572159,-2122530405,-1335482243,755006783,62746883,-1973993124,1871120201,-2081848240,722018563,-1335181074,-1088136823,-371560661,191038439,1223700068,-1072290428,-327706081,664863391,-1061393220,-2050990547,-1608842335,802951696,859871828,-387258492,-1737956455,-215898550,1081282465,-209286576,-422147311,144362440,500082691,2055792250,453568268,-895886028,-895514163,123767810,-936020216,396971469,-525831028,-368950316,-984668423,369333648]}]],[[{"sector":1,"length":512,"data":[1611777542,-1943937254,-334903385,501456484,-426907246,34037910,-487834376,-666447952,1558811165,-1897883953,-924764927,-926900195,-1773567405,-1008992117,-2142617209,1347130887,9830681,-116820849,-1132526672,1761189015,-1943600937,123779053,1858882311,1225701316,-1060647250,38314338,165736391,-1897199546,-642029106,-2031997923,1044515033,791110696,-803769166,1919474309,-751044504,1099270232,-2078282980,1884575188,-374994419,-752709526,1171317122,1815544162,-657211538,-67405633,7100459,-67015654,113643381,-1429208540,-1098006415,-247534911,2130731124,917534267,92764591,309692923,906031080,1052809850,-1915470964,31296989,243319352,-1334450830,1459742109,-1360716477,22080741,129885500,1393091920,1788537278,248406363,-521680921,-711323875,-2023721438,-1606760701,-253632297,-535950814,891129571,-790567200,-1071424242,-524074064,-520306659,-1710300396,-1696589711,-1327819104,1004248643,-613346624,430397469,981957083,-2133123365,1319113715,-1702856921,500966510,719082986,565182684,-938009393,-128050961,-933369285,779423465,1087982809,-652359621,-648603172,-367142519,-647833337,1299778176,1809438956,1648040409,-650845991,-646692746,-646299619,-646682742,-642131653,-643824728,-646250262,-642538694,1133697300,-641279715,-1373106480,-725714983,-372773415,-652393621,248568290,2010753889,-958795962,981943513,-1596326695,1624880654,-646835913,-640402785,-282666723,416904763,-591406370]},{"sector":2,"length":512,"data":[-1569325592,1002571089,-684460897,-684195722,-299864115,-1300813592,1010399133,1079507062,234896757,-817311883,429692120,-2114547801,395866136,-2100534538,1561395210,197311111,1235649953,-617152649,456836580,383275122,-704634496,-941146079,-435034616,1344403360,-840824841,540786843,1489097821,245174621,526191364,1021450680,1885151346,123590864,247716326,-2124548259,84987194,2103688890,90529074,1612876112,1952283649,-1509600094,1141193465,-1397748145,490949325,-993166899,-1575091584,66964821,-854077973,-141949616,169697604,386247440,1618280946,36438708,86049972,1560589513,1479661334,-810090396,-759519455,953802369,828591292,-1689516189,40902425,1352823619,1612315929,1791832093,-619468159,-854575183,499326410,-355006505,44350176,1913521127,-39562590,-725128028,537840944,-1658925619,-1824455944,-1852177036,118438827,-1880741869,-1525759791,-687843887,346301838,2122349865,-2033843867,-1493240005,-147159432,-2141303003,-49672507,-798488577,1087895817,99805468,1274874107,-283205381,-49838459,1036379413,-487950029,-83363335,-956236674,50351531,762782976,-1762869500,335664158,-963703070,-2003967355,-838765042,281998336,5966867,-1661504381,-1936493292,-267614745,2005148489,-269996591,1119409682,1310031800,-1176129194,-266321663,-1812715069,-828136334,-1975566930,2045770738,-806487049,99810195,-153192402,-250671116,214629320,2079303534,-30129344,460740485,11306799]},{"sector":3,"length":512,"data":[220874749,1095898152,244840167,-1242124353,68240147,-953286448,1930987377,-838383161,134297543,-361935513,-1697502566,-1180967930,-1187180895,1740168320,1979834395,61399163,646504520,-835318958,-492348300,-948582122,587444464,1383403036,-661040231,-1475418975,56747014,-1659339281,2104887120,358024116,-122561312,58843181,812638256,-294915927,-651469824,-640560069,-1688086138,-1546124995,2062651583,-827930354,554697228,-656275246,-730874808,-522666781,-1546235826,484564456,-249724729,-1586797299,1003382524,2121102854,1806225705,-1449358691,-1281300428,686600043,-1549565934,1002665411,1124037728,1108582876,465207310,-1225886354,1903905,-1305678281,-1608697591,2113984029,53002821,1790312416,852751612,-448526488,579361634,-239468255,-285152634,723624517,1457319722,-254295238,-2010580411,-798856570,-1358848262,-520044223,249912704,1640569588,113508357,-1779370273,415505472,-1091456245,1812872259,-352189519,-334084598,-904526768,-887696377,-88703878,1497138112,1818717235,107777286,294319967,-1464807745,152857454,-1693724560,121717360,-2097968009,1188234503,2012850689,1357578624,-2133984293,1064613821,859004940,984091778,-221329912,176169520,-603607421,252324889,1998195493,355274687,15933946,1482175386,-1070474880,381836849,151182376,1903820044,271118637,398454647,-979299793,218763820,46522565,1959731947,2133707013,-754405076,723178727,-1661932537,1781381609,-1099202049]},{"sector":4,"length":512,"data":[129126107,1088365216,718272175,-1124009552,94049152,-1191622424,-138923326,1578092633,-1705475260,711361315,610077280,506140032,-115148503,-1990083424,-1074172998,22430761,-328581788,-264362000,-571384700,-1401020490,5896453,-826414995,725288288,1026406862,-889609270,1844511242,776172562,875905115,792108078,1879089896,-1205254715,-533834103,-1904377026,1060636422,486987248,434688186,35293306,-286842500,2049769991,-1332311403,-359610751,1006660738,-1229393979,-344542761,-1510685256,-524287626,13263900,881778160,593350921,-300497439,-975837030,-975697165,805361217,1057206540,604006924,29419737,81017801,29969353,-2075846635,1081515534,232088328,1992182144,-1607810864,2005000963,-591018378,304792139,2013732912,1964501113,185382919,633342325,47277076,96597463,-192257675,2042066687,537452450,542196123,80348425,-1577013598,-1062074631,-1913476331,8484669,-183862015,214803683,-1236007189,-105326854,74160442,-517457251,-1090210465,-278867786,1996425732,619332790,1767878306,-1825440586,-1415569803,190771038,784778859,-1343749477,-1310704265,1023495145,-481528517,1960110010,1909663719,1958997946,148979987,-651613738,-1613758336,-377716329,-1740832518,-1140820221,-589199104,-1762330718,992266347,374862605,992242268,-1377168048,458562059,-581580751,908793137,-2077479756,-385499229,1508637807,16874454,1512622125,873917904,100785538,-894447680,1027009308,-63867638]},{"sector":5,"length":512,"data":[1934929848,-2132073140,-227354570,-536382448,-819759124,-1697686412,771619713,-1980242298,-201856874,309649148,746839231,-73671679,1996593387,71669979,82873622,-1469929077,292914211,-966816800,-2034564665,-117638666,419017196,-83691802,-2145257755,-1501232054,-948305382,-1134294976,817048171,247389574,14483574,-1495212739,17744348,-1374364335,-1503601283,924289898,-574926462,1258550382,-125088874,1124828925,-765977739,-49357887,-154727232,-184877057,2145390335,-962582038,718064429,237938320,51019667,-101640564,113570306,-1447281913,-4734324,-57635914,-1327193868,-968365901,1996179195,670778849,1158345211,2086791248,908750733,1889801762,31356301,1324156,1004569084,697766517,44162252,1579159244,1922179020,348416116,-314943644,470744596,-758059042,61984801,-319893387,-796929943,-789585664,-794654864,-107806630,385720578,-1763138736,-2063354829,1165387888,1910028211,191918058,-574778228,871815703,1060165251,-598827,-153168409,1012968864,1039896393,-2097024637,82605040,-1253819378,-151998845,-1192190404,-50659072,-1558871310,-1441332435,-1015017342,552027451,-387942826,-128967355,-1769492155,-2022744251,-1537486656,-2130551804,1866054107,1131808799,2034835342,-734585336,-2081482319,-1967063304,-655298352,-336030840,544683808,-1474437604,-2069635384,-800456554,705101934,705760993,1062163593,1060716337,326871989,2124424207,-934002007,447360152,1683049880,130209635]},{"sector":6,"length":512,"data":[-145141350,1356907451,-985286980,1734209479,-1238218561,2092487479,963185829,1356064570,609704144,-1051702048,2134524007,1879168184,-1811717960,-515500984,-1595246834,-138732471,-415106565,498643118,722835040,-1120237764,397202307,-1476311962,-250430967,-1765862277,1969026506,52536869,1596991162,1534462966,-2023662686,-1204077862,131747546,-625353222,249171190,-1696939532,122652410,1828357763,-1971453686,438424710,359978219,-2142775785,1756946473,-1158918465,-1904482674,180113282,200604980,9432202,2000009876,-2105161134,-312445728,922775340,-1929409603,1963015217,895401743,787829715,183210874,2029982780,-1575168608,-39835006,483788346,717947217,501524668,-106429086,257183867,-1004724169,83974880,926058615,1309066801,104790328,301706768,-939789812,-1637284153,-434000366,8288495,-1095816216,1087615640,-783222338,349626876,541068472,-2070616524,1101337533,-1878338288,36896907,-219737903,-796851675,1914755321,2130844662,806764628,1945170427,-1340151804,497930754,-504242962,1220362664,753636816,-1203633714,-400369998,2102657833,-2054570016,-1786149660,-45906714,200379377,-242911312,-1842752948,-1309630346,4587554,732879019,-57812992,1961306254,1454100794,-423549761,-556572153,79806929,954970653,-797657402,1372068806,1940430209,-542175504,-588192070,-601144242,-688950527,-469590591,-1188309330,1671561394,83672325,33594900,-1199515168,-772003005,-1269629216,-405601153]},{"sector":7,"length":512,"data":[1515780099,-791904642,-1999451000,-1008284153,-1008171133,-1016331544,724179436,55623150,490462078,-789910254,638017391,705037706,29402860,-1006131702,-906020854,-13702660,-1673787669,-352178861,-604139520,662088589,1097290374,1000245810,-30313455,-1167103041,-1034168687,-1088367652,-1086218159,1908926864,-1584644862,941924380,522583235,-2146999920,1903028415,-2074544664,447144599,1426217186,-1392874782,-209568244,-2034323465,-2093695488,10560249,1629585978,-507639914,103441841,46309587,489681330,-522899400,-627844480,-1225850548,-1559631015,2053786047,-507484161,1617190973,-1454698093,1946212192,-2146121959,28993720,-796776725,1813450036,77229066,86318536,441215806,-2116801666,-1130096342,-1864882621,774743970,1724262428,10088127,807193482,-800512907,1880099496,618397955,5993229,554092515,550980661,-2024780563,-174056291,744413188,679721121,242618055,-905114818,1834849930,-146853669,1947574476,1635833624,-1759354672,153473141,-178450015,991883332,1619663715,-670790931,1868137910,-422004928,1081950231,18545154,785333889,9837752,1847872886,-523147024,196311959,654005441,471123053,923902994,-2046622612,202716983,1611430005,675769635,10684068,-2001389208,-823643588,-281166603,-1214221901,-66621525,1873190632,584234144,-1466808467,263556,1806090168,-1065554918,-11212387,727715475,-52466198,-2093428584,5111802,578750332,1931939901,1096832797,-1575681163]},{"sector":8,"length":512,"data":[-93084784,-2052755056,1337512603,-760141178,1461379116,117482298,-589567469,182162337,1219345576,-1246931710,-367419366,1875093524,-1643899379,267389000,-1091673983,125252082,6420611,31249649,1573577,-586960684,-125771518,608386512,-2120121193,807608448,-487571983,-16454666,-1309308934,-377251076,-948991095,-475741554,973776129,1970933992,31141189,1994780291,776292440,-1074775393,38122909,-1320407361,-1144307453,826640874,241218984,-301255936,-815636818,-2125332632,1102881832,1213207863,-262822911,-1586977774,481963896,477758987,-1306404660,1894858436,363955758,175607784,-829270448,621481665,-1756003096,2053641683,-1916617018,1479268096,81440885,1412709137,-1207145481,-712942848,1212865224,-1058416090,1724930640,-2097543454,-300481014,-1602935552,1089477739,322670161,1081606976,1083444928,1208145978,1095252227,-1547172011,1963067201,852312400,1484195596,1477617924,1477542124,33242094,1499780483,-1441593904,327204095,627636980,-1905039992,-2114484334,-537423468,-1755105950,-856518414,-805369233,1431271792,-859811071,504409608,199911807,1866523170,-1324973759,-1566407802,5250496,-687488985,-1332981484,-583663357,-583856399,906035850,1172147160,1141077506,152387770,-642746633,-1132245247,-2082930215,1627511069,18736345,1089264064,2032299521,1643418643,-21999107,-1319694950,1212947456,560013925,-1165090038,1602923965,2113368131,-1688073993,1483300071,-504289889,-250570195]},{"sector":9,"length":512,"data":[-243617610,649512392,-521265694,189849722,1663619468,-1460903203,2042150667,4986924,1371056818,90305318,85030410,356528022,-1603006177,1980675072,-1013251901,-1408367696,1270428355,-985767661,-1383143339,1792944617,-108523505,-116524620,483377097,115869286,1728833693,1256549155,-1105395539,450193800,-159086730,63922387,1930571678,204024838,302442660,1169692262,1777764009,-792434269,-324988912,1477553024,70133267,-1430403316,-845335038,-1436206454,-616577581,1135613169,1485892688,-201054906,337380075,703004001,-1872249904,289609331,1290396313,-1605233354,-519084717,-1441887971,263102507,254116540,19556058,-1596452888,364258582,256275348,306290787,-1861667218,141579828,1963746746,872452943,876872859,1696305349,-1236058965,-1089658726,2112469321,-948415395,315034960,11979226,107636155,-724471671,-1162750971,1548244143,365634184,1031851132,1721280664,-455034015,1719805651,-251516018,1005541299,1341287406,-789777835,-1509708479,33520065,-334580818,-1497161482,-1497328906,48218270,1052712171,-899859485,510777315,320531389,-655478783,1110576236,482244024,2009982994,1241114882,1451708637,259849693,616039327,-161447974,1623131029,-491528442,-1553925285,-390820992,-1002728126,12370703,129948219,-2099925236,-2110916581,1637429282,-274063500,-457215864,-1777063424,-1283491200,1146985600,579552358,337076360,-813154865,-1698406417,707748356,-1485921535,178028636,-1097700479]}],[{"sector":1,"length":512,"data":[1476463505,35067398,87093585,-353865990,-1699514065,1388672970,-468975889,-1465892288,395764894,57943616,-430679896,-290153672,85144312,-1077847486,453051065,1346744568,-522151260,-1581382279,-1580761463,236715681,219922566,495180154,460325403,1663705324,1344014875,131341224,-317908165,316520475,-1230832196,210683794,-324115208,-39291333,-2146961913,-1907760658,-1981698019,16898785,1354162554,-780347581,1566942452,-1444735677,-118680720,-516852244,128582332,1572616172,-1914077173,-2023586304,870968738,943733418,-1553965654,910101889,-112102192,-2008938400,-767358798,484695840,889305498,420025242,150012186,-952481315,-1200740883,-2039675573,-998945628,-543113225,316371024,1773057138,-182240512,-1545498519,-264911608,-57677539,1829944156,19549678,-144421558,662719808,1553409506,1303435341,1409500896,-2108116728,897734738,1359134090,-804814773,1901613487,984917746,721464447,-2055840138,1969756930,1004665860,467756708,488866016,-2101607000,-318759976,-1582690071,605781770,1170889001,-1866528908,-1559329558,-1085037677,821853488,-278753345,1925045888,-401026620,61990981,-284170047,-1161067198,-1161052101,-199090471,1509029189,-199999125,593563806,1739597249,1732641810,391956228,-88008003,-230460091,-2134305995,-242152107,1316103425,-764239580,1953677085,958777678,1018461820,-1696640918,-2059135780,22915014,-685678417,1209008853,-2033707977,1995505845,-869536944,704783104]},{"sector":2,"length":512,"data":[-1459543230,-597523397,1779039121,-916389716,-1408783342,-1405200968,-1408815614,1313323777,622325131,11290888,-1408927265,536981895,205763329,159319789,280954191,1894755451,954858734,1391049528,705881140,27444642,-1918715036,251234432,1002259238,-1807619887,13632624,1896141263,1422859764,-291929905,400758798,-315685042,-317514468,317254949,-600955532,75629425,-916537467,-1394538063,1101152508,-141497145,679514876,-1075258377,-1935456385,479109916,-1587539498,-870973245,-1959266848,788712934,1726017963,-240402169,-1332261952,1893063696,309092008,-612997462,649472074,17858656,-2134370917,-1931371883,541067351,-523427690,718739177,-1553542924,-522722914,-1058411112,1652765165,-972851653,-509521239,1385497512,975641268,-156161861,379775341,-1992130517,-1976958954,-588713978,-318348948,1407259024,-670314079,962867824,-1371068681,67749323,1303965684,-1942059771,-2054612774,277806740,-23685637,1633770849,1353676291,120914764,105557792,1918482588,-1929334960,1986265688,939896656,313458806,-692564624,11492417,-286877837,-299335258,-183247489,999523720,-12553130,-1590397763,-401060561,487368846,-90022149,-628867045,-1135082521,-1036122744,308901625,539469760,-369273074,-2069343649,1738221512,-1237032843,1071705629,-569945888,-1695696672,1893747724,987766663,2011229312,-1813508680,1124196949,-487464419,-148766400,-12731528,-1007253761,1472426204,-845334770,994240718,-53642235]},{"sector":3,"length":512,"data":[1017199551,1040583429,1092515077,1975330580,-474831526,-1798042332,-1351669439,-1081222079,269864212,-2105053181,897596084,614010548,-1056176204,484361975,-30944742,-1546591756,-1897149716,1170951453,1009991883,1893381178,-94207748,1021882975,-1018379183,-119304690,92707342,-337125251,1575782656,-2003957566,-44814846,-45482676,-45911048,-443984558,-100400968,537009229,-127338516,-1604124472,1548436805,-235425994,-246636507,-346166622,1996757544,1807860216,-750403770,521821258,-2121377368,-1295649292,-1192934797,-1170078973,1476672503,1583279234,2471958,628575680,61900127,-393886697,1502434366,2049546001,-100075001,856607607,1987557532,2009536320,2006087174,322798512,440409463,121206730,-527792658,-1785067219,46161730,-667173979,-1832052846,-1838124031,-2113744176,131285388,-1333213309,-1350176992,-1242674961,-441566765,3458010,-304633387,59089132,96993084,1229213253,973144134,-14616061,1279591679,1763329363,1920234350,1769235317,1849687407,1159920928,577074028,872311840,1409770985,1112823877,-4958129,1279347134,1292781391,-78003121,1229384687,1091192140,-575516592,1225258383,-1254014130,153118557,-284494430,-339544432,297790424,-1127203850,-301137442,-1365816647,279840262,1187444590,-2033709825,2082221309,-419693434,-435524102,223574682,-2048280422,-560104508,-263285,33796100,-1694547959,1793983110,-1802044845,2058817768,-906039597,-245595913,-180937439,1558902746]},{"sector":4,"length":512,"data":[245140626,2112286857,-75069206,-16825090,1966940675,-1745487548,1492770692,-1582156172,733086112,1088992929,494201563,-1403338614,60490504,-540832895,1802835457,-1118389287,14607866,-998142273,-33309470,-669154330,-287833088,-824667648,2122325519,-1508346434,81491148,-409528458,-31998259,-1341495290,-1799545469,-1122303933,-1112351203,2010869620,-1663304928,500939843,1255914048,-86277665,246969563,-402406949,232465883,1088106102,-287634915,1146015744,502965479,-620075028,-1820753706,30817031,-2116233719,492492515,61396673,-308221822,-402453997,1611921585,-619640185,-989679497,-1022555885,-619390179,1264758,-73571520,5701454,1643951965,-335735575,-167384754,-324730291,-790296064,1409247049,-1005628588,1413694802,-1081191857,939913305,909652784,855276783,1480077818,-84418556,1195574267,-62586047,-61409667,1208196941,1128769531,1280375815,-1315744939,1292171519,1162350559,1137594706,1330882133,2029937487,1095571026,1358317652,71520082,-262935360,-26674697,1141986305,1163282770,588706451,1111619654,1741033679,-868136726,1162560581,31400281,222581313,656388573,1413828103,1677181271,-800191413,1101417548,-705137596,1296162058,-183499506,124813634,1229750494,-1598018798,-78130468,1292672478,-1720171703,1286804259,-1906553192,1091811591,1712379989,1413665285,1237599927,1313608172,3885048,-296527533,2020242752,1006694091,467783822,1727089150,-276754216,-217108767]},{"sector":5,"length":512,"data":[-580042624,2002600562,1544849166,1897399036,501235677,1414582513,183701593,-833665395,1141513654,-866652395,-1041055640,1000092667,-91805184,-528742456,2132886639,389174095,16921462,-144505833,60473692,123945340,1102961656,-935804943,79895429,-358058526,-365886653,-354820623,1954671187,61401603,-583931303,-2116425142,-1468732833,57010693,-368645399,-362150064,-368598574,-361847794,-367181048,-2025264526,-1875187191,1980689014,184854538,2047060202,206629354,-771260694,-1578496534,-1528134130,501878339,-1444246904,501935261,283807560,-1612039545,286167274,-1239386646,317332970,1089128682,-722857158,-1997874815,-320156434,988473152,-269871660,-1802993174,-54583903,394741994,130053866,-367138103,-367465960,-367445440,-366247468,-1004883788,468347139,-368614972,-1279348702,-363337213,-367177495,-355334295,245492254,-733681029,-1978758458,541304042,-1689772566,981934570,-1863668758,1978278414,501922336,-940956694,607797482,-662579990,-2110056214,-300925974,-1884020246,-1459355713,1889544170,1022020103,-58054580,1432658639,1441581312,-943303293,713360927,713358314,1344385024,-6096449,-1593832574,86016039,-1593317058,-980885182,-937684798,938252482,-1073619266,1036195248,714514725,-124199387,-1375578,-55097996,-1801322503,-2036248534,329002,-127990389,35961351,172643525,2141356090,1853167466,1701601889,1679836960,-637666024,1701339936,1801684189,420744842,-369647107]},{"sector":6,"length":512,"data":[-1760494437,-1710100183,138655973,713204471,1978675183,1014926831,365199770,-223546875,-784447918,1341324531,-680217595,141583859,662589662,-805224806,1388120497,837817038,-65275322,-121218053,-63505156,-17010947,433097764,1217569580,2089460711,154694728,11660317,1588261149,184943539,367920364,1568014325,104466154,-436220421,1089385792,1978560414,-235773132,-423462832,-230641645,-693804735,1806700715,1077928450,805952318,-1202720,712505203,588003552,1996433922,-34492684,-44459278,459189194,125155397,-2107941225,1711485960,247004464,1006173438,-25169264,1986947346,1684630625,-1083347076,1918988378,1852797801,1635189879,-1927743536,1575584,1996764689,-344838127,-1059058035,-1100114481,-1989211937,-199742496,-1018733219,1754813393,-1136083576,353289469,769724789,1081933248,-58005025,2134949947,33557614,1176460346,2017841513,1952777212,1701978227,-76974735,1634500599,1819633184,1951211628,-333795224,-1074001894,1817190505,11498357,1699221535,-21601422,1850322639,1869377347,359132530,751747312,1174932124,518309716,488636745,-6329235,1667329136,1763885669,-138403226,1701994272,1953391981,1924671337,602737524,273414404,21450399,-1021571378,251307793,-518980597,1393364722,164564709,-2143266025,2112111597,1157315309,1923048412,-12624519,1866619659,658797679,241001846,1188827855,305861490,-1859904019,2085800999,153814853,175411446,-461563,771894785]},{"sector":7,"length":512,"data":[1866732848,-1098371981,-1356799712,-1658788576,-814362689,85667841,-587086703,973582448,-468199555,1314632188,-329093771,-2107417256,-259978551,1015285799,278744866,1024499126,1335448638,1433131748,343678894,1862800641,652362657,1426736434,34804703,493504595,-1007220602,-917798551,1411647973,1288461073,-223997932,-653799611,-292680223,270951656,-515523258,-283853952,1313144871,-1175511210,1119877396,218583857,-1252699713,101467482,-435160606,1162126418,-200550386,1488854503,183791177,234187779,1290326644,-327924374,-202172667,677700487,1443749953,-269548259,1307055424,117532738,-362157543,1195491380,603609577,-434152019,1873657673,2053729895,-1400853587,-1880278006,343993845,1428530556,193746414,-1730887689,1780778162,-1095319296,-1719286112,2093506814,937952458,-11453194,93645164,-1048613399,1963015173,-796868814,-1781447307,-1115684629,636322593,1256742120,-2033142954,-1209855250,46807017,352489077,15250663,518578919,578094055,-1149477503,-1413504094,119808297,83417840,74911292,819636698,-623769542,-1042490875,-402072913,114994288,-1559775782,-628750118,-632525049,979472270,1611192856,149822938,1624948442,-633730956,-2085037559,-506340670,182064136,-960622886,65931482,-779941060,-624422552,249682444,-2025399606,232432136,-837272614,-629405478,-636555747,1952504535,265967112,-612124454,149017050,-636429776,-622803442,299502088,242548911,417696,1006811647]},{"sector":8,"length":512,"data":[-1607764718,224420335,1567251552,-213424371,503837580,-1848522305,-1197927516,-852056921,246153366,47845446,118807203,285453175,1217440620,-2076421116,-2095558275,-1587675586,-2132527103,384063736,995430261,-155457408,1159471341,-324908051,-1561918880,-1176758779,779426001,-1284794658,-216998293,725322313,1006161517,1006756868,-1624476391,-1609690400,1672032375,-1162607408,1545261085,274750549,-1090916959,-306647805,-309413236,39617564,-293829492,-300088386,-1953698213,1964961386,184575519,-1828239342,1011049806,-889073561,-549008547,-299831755,1174531678,287436323,2001527994,2051074048,205607401,63382249,-739701947,-587149570,1965243392,-2133991916,-492366685,619234657,-390122379,-2045106043,-1292024816,1109082942,826337913,-1706633887,490012867,-594687936,1965410513,-372520919,-1610561312,-543573434,-349650990,1965440096,1376627787,-1189248132,1608476081,-2139479667,302294589,-399689069,551756544,-1053557046,300614599,1022109500,1965555995,-2104984055,-143773475,-1573714293,1997204251,-1150420427,-1145059605,26858502,51162089,617935295,2031860657,-639088060,-1619480778,-787365983,1982005521,-1864293028,-297527497,-1596061780,-1077870175,1187383104,-1681260384,-293672064,2123177733,-1148921696,898028058,-422546,-1581587408,-1948059904,-721059336,-370471993,-355104139,-1810972672,-944203924,970688893,559376234,15190606,-1170618902,411842239,34741313,1533572496,-420107847,-1667117755]},{"sector":9,"length":512,"data":[-1395819227,1082807223,1938729854,-1962806002,-1257526094,1890233116,2001069986,2011580834,-1559522644,50198438,520174380,372901728,158654520,-1592202026,16389280,1187356142,-387847950,1211556024,1590480153,1429883127,1177267872,-44958410,396951988,49044796,1123347266,-1108779824,910367916,-1255885973,1001852011,-1857522314,75752503,-1598390561,-1172385664,249224448,1759117941,-1092943654,-1139902112,490931161,1624869081,-321306617,899767224,6020739,-774787443,-1606374193,21360910,157157860,2010845161,-1463829755,481907937,1470700287,-61609508,-1126100493,62101216,-1429094191,252520448,992516613,30546157,-1468742207,63751589,-987314710,-1063250176,-952563215,-947387948,-949175180,-1305222168,326833026,1292003338,-1274727491,135374322,-390001206,-1338462208,-1088650558,699932142,-1232756386,-286074386,-1183183136,1884969778,202829312,1882130695,2106525813,-337170167,-982487292,1715275803,-1263608000,-353521485,-135421437,-185741923,509493384,-1644183805,-1488908939,-685191741,-2098408560,-771633716,-330067838,-231210635,-28508771,-469374909,1163081180,-53560552,1442631773,-1702104622,-800490109,-1106994455,-1743637040,399607339,-1831730829,-2090602502,629248,1936138894,-820498210,-1364174427,209067310,486599054,-252647008,-945534741,-266010637,309663,1385818323,1464890914,940286145,-1930679279,500830170,-556650080,-558469117,1189834295,-355057134,-2010786697,245422304]}]],[[{"sector":1,"length":512,"data":[-562703178,181489848,671205565,-1773491527,-799012935,-699628476,1144258793,250850244,1328610991,436261001,335292605,-1966003480,395983744,-163656686,-23427703,-73622021,-1634397545,-581707010,-1947782802,2008517607,-286815257,1565386726,2136831371,-763524332,-1056131686,1509106035,-605457296,1321321179,147723979,-885273738,-2085958746,1120612499,112661884,-1821185164,-322153443,-864938372,1055618002,-871555693,1997933804,1909235404,1485198859,-1156661838,-470883132,-564607549,-1341382908,80436226,1179651105,795535074,1196477811,-2068238443,-1774580422,-15001728,-1197815570,-1224893912,-100534181,941441025,-373973381,-335114421,435048602,570011233,-372844285,245488165,1716574811,62798931,-1733724000,1110628249,1949640283,1812181595,-2102119728,-470672055,-479328416,-857177948,1886406104,2038864129,-196753458,484965006,1004410614,48134616,1954668034,1135664772,-1948384510,763685281,-611457010,245735445,96185094,-668318792,-661106659,1546296910,-392625668,994814478,712976983,2072912074,399712354,1664139074,-312471855,-734934551,-1046497266,-1615261426,1747232886,-1459435105,-1071782371,-723893702,903536129,139180,-5224164,-187679821,1427033711,954650128,-1277254592,-1141641981,-1592652934,953949394,-619976221,-922762792,191896833,131123411,-1302542230,51829683,106486617,-336821936,30989179,251517732,44931604,-1260838238,1020875875,1068813319,502059051,-617616581]},{"sector":2,"length":512,"data":[244374354,-275981532,1524657243,-334347008,-688651392,-2137173435,-829678270,552100406,-991594953,-138244944,-717520413,159123583,-1368602120,1438686066,-116960846,9236444,-595654532,-1234641801,177134748,-597228772,-570205152,2075975323,505310955,45899139,-553394680,1290492351,-566109136,1988947712,-1679919394,720058350,-744448998,-2142248959,-2145249331,905986509,-1155461653,-203485341,-1599012096,520456457,1097857396,1023493459,-300598783,1128759336,543519585,427453693,-253092850,1864430052,1727820917,1677685280,1701277281,104545026,-1135652773,533136980,1749223096,-396138129,1936262199,232824851,1617194565,79400937,2027768901,1940855320,-1267371404,-1221060075,1816470269,585507910,-915503328,37722185,660952864,-1973055114,1859252119,-1066244748,77799574,-1088311776,-204230445,284090802,-833391696,1265201763,552542128,771960321,539032622,229127968,-546169831,1818730807,218721401,-511110286,-1184336716,1413186043,1970563555,1652655789,-100181290,-528913297,-2147421656,-806483354,1629007218,778567029,1087001522,-361296160,1063625440,326141728,540083066,93976528,-16611592,-1163496394,986039405,527008365,1881407526,194703966,1404043309,1551960681,-1189297855,885813306,1502670336,552706992,1760910708,-1487101377,-1863326176,2034888721,558904403,-1441904719,-780679609,-550846715,1971844192,-385540749,-1908803412,-622519011,1346405368,2012448394,730196230,1090760837]},{"sector":3,"length":512,"data":[-1389600532,292837635,-159235923,-1340213681,493462326,125357144,152938056,-1825443580,-863766474,-2037824519,-226230898,777771600,-603051584,-789791103,-125630593,-409854717,-1341724860,-694620338,-1511516581,-2037484420,-1599833029,-393641557,-190832360,1679960846,-1846958640,-1709877450,1838749344,-2145086212,1040028094,1714258487,1759946755,269091336,-620498265,1207835503,1081680753,-1086263627,-1369688991,-2048344152,-538408164,-1878900350,-871461594,-371878910,1690256366,39248046,448594838,452726562,-679480419,654766677,1551335021,-563562191,859871905,-1700332739,-1393162246,-1384846718,-1085450250,55796843,-2076648664,-1863683526,451593488,-361165111,45057636,1918057281,-1959399118,-1818522412,700395994,-234905319,-125091649,-71727,-1111460171,-1695417235,705431477,1272482950,-1146938044,-565507204,-1188331288,-509600254,-1245626741,-2113928032,-1457247995,1418002819,-2092235738,-259796988,1183333153,1576897219,2024317498,294204584,-143657124,2133553189,-1361377009,508293770,-1862195847,1678600528,-744349171,-1240022792,-462585823,104022305,1382296839,1693002001,1678808294,1693712420,-876486137,144354944,-1273163517,-1603336541,-1125383085,9204994,2019233302,-728624220,-216845557,652984395,2025077753,-1896220716,-891435053,1533861277,-38737492,182620175,899819712,1824570139,835687813,-678638745,-1897348637,1075696701,-334375760,-437394056,535495821,1252816641,-1824790374,1062181518]},{"sector":4,"length":512,"data":[10632014,-1523587695,-2113910963,1951591538,2101095913,-1111211775,116916282,-243287267,-1697532167,1084719155,-1411055663,33982654,-865311722,-105660459,739961877,1676673436,-1359183862,1544932928,199688480,756679612,1702822605,813057207,1650598917,-515588712,54264754,1344295113,1791588136,-1463210143,-321190101,-949335408,-785409522,-2033782808,-351863417,1943992581,-770982140,-153866113,-1324646579,-2115513592,-181724473,-532479048,-539396304,-1241314896,-1359606325,933750525,-955952480,-848547974,10900468,1608325660,-253721821,979282783,-1457728250,-24873090,1793722603,-362006437,1156756472,1650332611,1458319490,1766714640,-2019217562,-1125188887,-756051607,-1049811,740753444,308859936,980069133,-1168047597,-1658833022,15724406,375224440,1979862262,1342898169,1162039122,1163023684,571413280,544173940,1880746861,1880202209,-1024576651,-1047581781,1377044774,611573047,1678697608,216113354,-1457516831,-3657983,1287919425,-1056487601,1329749951,1346439768,1229381456,1394577620,1431524421,1328302065,1181045842,-398373382,1224974240,-384688058,1650571519,1830839660,6578464,1485543016,-1579239737,-558631414,-1326117631,-132641034,74200749,-1824108795,-955214314,-1074280956,-1550230790,622614207,1370688735,-1709411353,228819968,-69925284,19004219,1859255281,117728900,720389850,103395335,-2142592772,-250499344,-180981241,1004144618,1693485241,466403206,-1140881966,-2098664025]},{"sector":5,"length":512,"data":[-1877251805,1941334271,594634061,-138348845,1752368834,-254482722,-1328925599,956776866,405916752,-1546588306,1924658523,687313694,-1341585555,-1958465006,-1509996266,-912657712,-376597111,-837918591,-989633557,-520950015,1744295920,-1726173544,1553877412,2077662973,855433029,-512428428,-1501906691,65142313,-628373338,-391715936,445490239,480086426,-1947340592,-309990376,-437222133,-768207462,-1528845271,230655459,99617413,63770652,1556962374,234902634,-1097472372,5326315,1942022190,122321801,1724311574,366041643,-1580731168,385631760,-168360922,1600536211,331416326,-1710998829,553993277,-871926755,-9243648,-751068698,243205756,-1053073933,741005683,-753202863,-1332312249,1343199948,1561303456,-1445314751,1854533576,123775231,723570689,-179043912,-2097129471,1493298345,1275158135,-50519133,-17791352,1026866816,1031134721,-2062092807,2037286752,-1225847032,249336885,1220760136,62322437,-1247260993,-1086338082,1950477141,-346171903,352390896,1928030399,-2065104686,-1090447301,620881534,1788539477,-1813111179,-17586920,-1681198366,2034104008,-1669164278,1836453573,-1334993149,1839858563,-1207704547,1002178157,31904216,1500605771,-673448380,-680121342,-97269521,-993572368,-1037307999,-830498208,319230721,-1030830199,-579778940,1572538808,811195501,-980402443,1711991035,204669161,-181078189,-1083440941,-1483030811,1825441344,6911154,117776596,451669092,-427464699,1575911586]},{"sector":6,"length":512,"data":[500354726,-1747063229,338092735,-196941774,-1676365609,-203866855,1395861986,-54667469,-175915012,-390804098,-1507339774,-734286246,-1281316029,-16776968,-64285130,-2095039826,-1911040246,-1566398286,-1440815944,1043741689,-567699711,662718224,-565053463,-1577020640,-466870910,1111083892,1506491620,46913668,1142421550,1163282770,-469226195,514224740,1970142825,1965884141,-1062181279,-1806761397,890593640,49112053,1445838961,1443395325,600958710,-45222866,-668072851,2130739422,-1815856006,94011398,990283776,840634619,-24117056,181009267,-107338284,119838735,-1811886557,601174523,-481526630,95484797,-1916198238,-1929642441,1795189499,641440289,1196798195,38769020,322842623,-1934294614,-151457250,-855911850,582955036,2123463896,-858536965,821155093,-2002529952,603824553,427092856,1748046982,268108861,-301171907,2080386573,-1094697714,62392815,265508867,15702668,-1447250487,190713210,-28929254,1005653589,-520133638,-1633484399,-16454870,-622265850,1793654332,-1695148114,-1609557572,-1341315082,-473720966,1961140532,-1545439626,1555906786,-560903966,1888683490,-2131501036,-1149369915,-1898403486,-1210261388,506642317,-973051923,1593253427,-636798900,-86372958,-420911475,1768431010,-1345529897,453938710,-1011817109,1684006362,-1363202955,-1360578128,-371343475,205510784,1751393304,378858040,-1257331388,-1264652523,496952963,-1628894976,103354107,-989782828,-521347140,-369364545]},{"sector":7,"length":512,"data":[529071094,-457551838,-1665921360,1073901943,460263006,-25934865,-504163097,-487782,-1914111066,111470599,-1605838104,2131036775,111074722,779420585,-935122922,1279683478,938742990,-346454812,-954260761,33782278,-403276550,-188481286,388874892,-628883481,-1985343818,-592834538,-1547919059,-1330569590,-1544642168,-388281357,215350213,-2123934923,13139774,1006088574,8547876,25227511,-1527747094,-1383057658,1928167656,-259340276,-1694967758,-2109885475,209846530,2126837729,1342461286,188752861,-144280296,-1287453204,1481258406,1128163116,808225190,113375184,1043019201,-236714813,-1779894434,-214061313,815766114,2111326325,-1495424548,-2090962421,1149486214,1191883361,-340199545,-350949369,998690594,461818584,-1595046373,1124173376,-1054875212,284819650,1001452300,17925048,-2124326096,-1238841340,1149159671,1206067717,-33233114,-29062356,-492525649,-1329772508,-1771455246,-391548158,20496150,-648383981,-817874413,-847002265,29097875,39584046,1107505456,998329153,-2130179580,37423095,-2146074619,-958227867,-13993622,-134847235,334147591,505270281,-1999963394,-655695869,-520494968,-1391993407,-1011949560,-1403723530,-1405994377,907220276,-775121699,1388746537,711384071,1980170383,-2130431139,-1048423692,-997776931,-67769828,-237223733,882573061,89104417,770572860,-325864894,-547620224,1008397175,-424286684,973210544,-1197641591,1380167305,-722227564,1179294453,196630134]},{"sector":8,"length":512,"data":[-401670932,-957612561,362830534,-1319168344,1701995284,996842534,-2023716817,541638389,1869374216,-1789240690,-149546986,109073430,1256785172,-2123305178,-922850820,664862880,636847755,1001823108,-476863725,-280798738,-303971137,61879864,1565564658,-1004521549,-2025801098,1308630275,64530339,-2088021021,1947424830,1485973573,1660811827,2012815276,-1196100811,-931699763,-658662662,-667523792,138095850,-533621088,-874152133,-780840722,990316162,-2103705470,822575336,-1039200710,-1477527809,-2074200700,-1689741563,757530391,-1090086388,-264347351,246019861,5428393,-710275947,2128020570,-179292823,92851131,1654274554,1941393042,-1963983115,1947108101,-1361804406,-891545065,-547518166,-540141641,-284237830,-1039936048,15655123,205509493,469795851,-1253745836,329806679,-1993990087,1712289929,42669673,1984505134,-579842635,1663169261,-463117201,-531150206,582767652,378610177,-1517894366,587433207,175683612,2147274814,1979916371,94093077,44484385,1128663783,584832002,-1842408415,2012814298,-1786169979,-1192191252,200313631,-1541541755,-737820555,1007222206,-681609918,855718984,-2009107783,1105198714,-91292093,877067405,-509367488,1284514286,-135427677,-457252096,2005824769,1053049543,-541006610,1006688233,988465989,-1058248220,-384710976,1967971507,2114351729,1916132244,-1594886086,661668466,-1092292885,277464181,-522574865,1055589030,-1193631442,-1505610010,-352135764,1015652514]},{"sector":9,"length":512,"data":[-488737320,-1011345930,150224117,790895872,519121666,1847617209,-1174983175,-227317470,-1297990802,1328676891,-1961131237,990250413,1348358701,407046055,-129175132,1074164401,1014495546,-348092944,1950088707,124653920,-518895377,-991623849,2023999861,280362782,-580079364,1877164515,-150011922,2008510803,1851611906,1858978650,1840795482,-997479810,-923245038,-604184894,-1075143730,-2074277804,1014084825,475317329,-1494957428,-559393143,195448263,1005234246,-2024167748,-1206663295,-1019559156,-540799675,-1101613612,-602457049,1163949898,-1680751786,-302195515,1456473804,1458102632,1991248080,-781668800,1689179,1145311302,-1397118279,355773113,1916972217,-1935449092,128157980,-1491300842,1727001770,478868599,-1256418118,-1431592030,-629128873,-337221904,107935695,-1980447856,844782600,-1908707752,-1365159182,101437361,-317819730,666968904,-1940591630,-1544406052,1620552226,2105572999,479392694,-1735196335,913623669,6337300,-709698143,1036558394,-387189580,1056951760,911423132,-1549133077,239299143,488097442,575221960,1084456629,-695028179,-1273579400,-385697748,-939489888,-438743926,-1417118792,-286991424,-884256280,1526797915,17224705,1811366668,1350512849,-658609579,-754106076,877946490,2138311771,1530970890,-59213912,-327041026,-17156128,161057923,1358510265,826471765,-1507063873,-654651717,727998170,-1697396286,-2059111062,121834803,7167980,1480928772,1087055949,440630873]}],[{"sector":1,"length":512,"data":[-577093503,-2006097557,1752450792,1820693366,440563522,69226745,544643104,1226848510,1969671906,762005614,1696966121,1107442550,-393770851,543750256,-2134415245,-1698652806,285739878,988068049,-2031521247,-1650183451,390504735,-378309349,-133844969,1935800065,32359212,-654608108,-534244720,1283093702,902973703,1685567696,-843984785,365937156,-865220894,-908586847,-1002579277,-1283952798,-563121770,-143187927,1627647632,-491856526,-2032429562,-1780880053,1049223179,1042285960,1141283961,465810036,-649613739,2002053067,1634191614,-1911406595,1030115330,399061443,652461319,137251532,1886328481,303225555,108163,-2141297535,-136396243,44315648,804330560,662749170,-1155384615,-1493485301,-401734927,78456553,1954018332,107011566,64970973,-571089526,629153249,62385373,-51126937,93140024,-397441052,-1997996831,1659465197,-964116186,-1575945990,285884418,1342164804,1057083649,-531510626,205975303,-232606848,256242285,-233508168,-944645467,1195301547,1000470255,1002373421,-2097134974,-378089034,228610442,89953668,170325493,-1085966539,21840192,-523459882,-412500035,-1569166824,-1304184744,-1292429918,-13751803,248438794,-315573906,-307776584,-303168719,-2131956254,997715250,871173144,-125398912,-1307957241,-2024790400,-1298119338,-947756847,900741701,-1549712975,1406296322,-163228555,1168917006,-1126411832,726249480,-1178803804,-1950579504,713203714,-900262548,1922094050]},{"sector":2,"length":512,"data":[-591747324,-1771402023,124888621,-1466538561,1990230388,1117812736,-1322296248,1688672517,-677884410,1779374854,-199680528,-1975343587,778020502,-1760859903,-535895945,92648960,446049062,1409775066,-655773972,-140504618,-283806655,938875564,-182959083,-471333867,367922490,1441625090,9689987,874318493,-134083968,1840846353,893888643,-377758825,-788763920,16417572,125624959,742198399,-392793343,-116639787,-1291786775,246079944,128616730,423298728,-1863799512,-1335815657,1747321343,-1938977653,2028241366,-389304195,-1847592581,-453832151,870297476,140503287,-16389888,1958243823,-1030697205,-1995806540,-502902081,-1667175320,302122856,1155355246,-1236105556,355103470,-2076644054,115563341,-515111934,370213964,1148979,302075628,-1962909460,-1827895744,216826091,551424082,1616974192,-1255617403,-171492632,-2025891796,-2063010492,350803589,-1307523888,1988123143,1969118310,1317557252,-668727373,-667418234,-661203088,-378627839,50583712,230135765,1141276548,92843194,348336962,-1662014720,541611073,1040596474,183700340,552843991,235617782,167002288,1039481795,1568729610,1106904125,-1048382048,571197216,682296929,1886648108,-1694427898,1081477142,180399940,-1668936826,315736855,-1845321068,-2104056992,-276572184,1836318952,-521413185,-1084751587,-2084770844,-272678143,32536555,-335823058,499063041,-351074988,2055773184,-1073874169,-509999344,2017872901,-64619031,-54689254]},{"sector":3,"length":512,"data":[-495709942,674174252,384054488,2018982631,366572806,1566891710,-155186283,-2004561462,-1997340368,-599960394,1356009024,1299470404,1283773647,-1273937478,812943636,-1066753772,1108396796,34216763,383728443,-1928331192,66633919,339167224,-316115909,-1964045891,-682565299,487901254,-1191106068,-989026187,-974191860,2007024908,1086712834,1420474334,-1679949616,42355594,-1953459371,-169443093,1686504780,878443674,-842268515,-2146828177,-1096750070,1198395450,389228807,753598936,1195443669,-150484992,-641793582,-653357528,540702080,1378937074,1242259261,1425621950,2130710218,1430390787,1380271686,-1824415917,316686849,-761095673,-1090260096,377595482,1874876416,-787185654,1234628390,1620657484,-1715262713,-1609298211,-1396465648,1214278135,-1737662784,-770974338,-239014484,-957914821,1183168801,1355883261,1083700955,-1441205682,1652636155,-2081319473,-2030886176,727378690,988912625,-1485633978,-1414102568,-969106266,-768477946,-1122168155,1345497842,-221010011,-596309301,-846751033,1537066323,-721157987,1387802995,-149746531,86425861,596779542,-2075349615,-2050561002,-1568246636,1798597020,-2142790818,-1803754091,1387194476,2046860206,-255623460,883419481,24829778,54582585,-968416897,361627907,-268914989,1170159617,-1193947799,347667735,376675007,-1476325053,-1935862932,1673760596,-51721081,-1506676411,1160132846,790593987,1633904996,1870264180,-223382923,1970302277,670707513,362967596]},{"sector":4,"length":512,"data":[1564673141,-1131763632,-395815736,-238603664,1927270138,1764565732,-1171624065,-1946722360,-1100714891,773944430,1409233050,1330926913,1128618053,-1950334418,-803266332,1328527683,776431182,-2108466861,-278977902,-412718779,-2121640243,-582481212,178498612,-1015442744,648231720,-1430273160,209776478,-486088155,-545184488,-317121345,-315784979,-313193157,1645609523,-2122316139,115045878,-534675227,-1466501974,-1602110202,1342725803,760465959,100977659,1394622064,2037851073,405758516,-1854818876,1751610875,1836755762,1986120422,1827439358,194077281,-43717092,-712586878,2037445167,-818139594,1976298045,-1871578649,1814085317,272332730,-1301044129,2011031173,-1172259407,1894924306,1670317440,-2004668796,1889096798,-1097440872,1634673120,163111625,-907344402,-2099212162,1684657163,206031788,-1251092889,-18194067,1886150282,-1029273298,41589813,727489203,548315693,1068411914,-1360166573,-310564236,246143150,-2102469700,-1396715588,-1364527521,-2146849067,-1010805200,-1233077444,1760508221,1811602666,-1605341021,-2034822303,272312872,23753678,1959861686,42800297,1772416688,1688892403,193131052,218106306,-1197636432,84792889,671216363,44611813,356730303,-1484592552,1458236674,-1157431888,-35958697,147428355,-2066216237,1644611122,483188159,683456850,450283530,300275156,-1327122162,-857355581,713112597,-430917888,539527362,-1655778026,1949645080,1742239587,587265007,1472785772,1894474730]},{"sector":5,"length":512,"data":[29916922,1142959406,-283376171,1641602699,680457217,-952381168,30308276,164973083,553081923,1356122116,-1706281024,1581793103,1171376485,1068135563,-1328479600,-736613379,-1191003193,-2125356052,-1156123470,-760696856,709893853,-379662163,1091939798,1485130180,1477960877,483788346,-368922448,1543828754,-351626942,1349148542,87109209,174095942,1480369733,-2044973724,1377682419,-1777438619,1064569722,1178068750,334358387,-1577997817,-333926164,-877884714,-419189035,857005207,-363318248,-1283401966,-960819685,-739808411,451165198,2003575538,-2116939684,500725669,577359079,-582993346,914839559,-91869867,-145243854,-346745771,727045306,-1992860183,539720425,-1824357762,-1322222768,-789836786,225870928,-1012536286,-50260350,196623624,52111223,-1191462936,234229890,1552055168,111959030,-1558680750,-1498903562,192153676,-670162801,1096108124,-2120031327,1228334090,274140062,1547323627,538904815,-184285120,-482678753,520226286,-303190668,750582290,1825455747,629758730,-59246185,-1525910270,-369287960,78550903,-1034770241,-278486454,602514048,930281727,919057,-2040536885,-1769341422,-100860396,134229495,989911683,2096095217,991526664,-418155547,1456741504,-1751470660,994191791,-1139156747,-1026033477,182517646,-2122787252,-435520214,-380814104,-949259007,1390419136,806339656,-351341600,-1762902994,-1811869654,-237990905,-1809929590,-1805409627,134547183,981857684,782783380]},{"sector":6,"length":512,"data":[1806941992,1154000704,1295260551,-1342602620,1311408787,-1871503499,-680520679,-332409387,53406015,-32733498,-83049984,1622276875,-1229521058,-2042866560,683671326,-738254675,445007847,-384006493,-522226925,-1045792548,-1427897842,-1495121829,30970742,-420565301,-1098907267,-1155697513,-1530782962,-1899824957,181331072,-1479668525,-660178293,1215844608,-1208084346,370604662,1608516772,38426620,-253432198,99045315,297733547,-1535453908,-117488151,-758617347,1880307459,792172154,1872906232,1256848645,-1610501115,819595945,-1374942344,216982483,930842306,1934180616,-2119250754,1420733187,1054513814,-452908794,470215586,486540891,-1698787334,1376983210,490950362,-388352550,393583341,471404179,31125681,1366848689,-618599465,215905601,19944881,1762952964,-720428875,-1619534098,-1199516007,13331651,-2082010613,1060229855,1723769035,1072189628,1336919288,1446764543,2080866288,-297387159,-1582537614,-34834703,1711905514,183042325,-1056312348,503151081,1950349847,-1566975983,902097180,759324049,-2055446136,713735948,-1662287753,234615690,-44003971,1929566343,-335718152,385454358,1814450228,-572746861,74822015,512493311,344835361,286658081,-1987654426,69736951,-1943526813,916457684,750142664,562240090,746415309,601785698,-841722908,-1046815408,-841102784,1932827377,-557668931,-756052781,2129604046,-184788066,-551182778,-9550091,-149882980,1165919130,2014354136,1357770589]},{"sector":7,"length":512,"data":[520679176,-129175559,-1549889892,-1051461106,49996881,947200518,-113775098,1155083893,684732021,-1630861877,113131911,1146265126,-1545255,973209610,774505308,1116943658,-1473813161,-955870703,-1034939015,485519000,1242698452,103319821,1622544346,-1267146444,741157036,926089658,1942862441,1744281794,1683676706,-1707809169,1329919665,1505247051,1021415535,1635094406,-1960646814,-1733579924,-479016920,237092050,97086600,61052987,-2012941223,1308769662,-1739373969,-1499209202,1632320403,133499486,1975716777,90904942,808193456,1634744547,1969449395,-967798015,437485652,-864563480,661545315,752126592,1692114198,1143135534,-309302867,1198587938,90615492,138026861,406848193,1914562799,-736470297,-126414617,1701766934,-1569190608,486776956,-874483223,-26792490,1392797446,-2124409097,-1689435993,1610749139,1108732930,17448907,-7960322,-368906755,-1244080316,-152518560,-1082633034,991187359,401817807,29171013,1172831549,-523031903,-1314080307,-1081205283,-1882137950,-1363213929,116465328,-151218572,-494674286,-1709452096,60876126,-1985810199,-599500651,38109402,-1641070187,-1363146091,-152965909,17014975,-291444066,226690206,-902758252,-560666624,483762177,939857813,-1090396534,1216935486,1442548215,248445186,114218614,234944071,89103951,-867990118,143284642,1949625815,-1196361975,804775619,-1063624270,-475446466,147327374,-1753539311,-1488312791,19298055,-521564737]},{"sector":8,"length":512,"data":[-101845850,-632829351,-1086520023,-104761724,-385814719,-1609211392,429921027,-1472185496,-102214883,-634033931,-876082726,-295203630,-474942174,-2106659654,-195863828,-1688737751,313421947,2074540442,66652063,13831285,-376803689,725877218,1749120488,-2141752831,1315482303,-843618203,409476487,1883276168,1075842256,31029520,-2139651283,122586063,-1538421286,-1462519549,-1203114526,984221924,182363787,366130438,1384491730,-1177318831,-497787325,-487893475,-795454263,-1466192126,-292484165,1689269632,2123383825,997661647,-1043330887,218241395,-1626537277,253108301,-253260987,765856741,-137722352,272732321,650103536,-2104423206,548504732,-652629777,637817639,90572231,-526179677,-796492845,-842238446,-795078216,-501975794,1995718868,-1295464256,-922943765,-927333928,-599899404,-1033250708,-598824908,1114837159,-9013386,-1365190139,2122863516,1112049199,-1393350957,-1649693506,-873650962,91750283,-150991430,-2114417694,-1352794169,-1242975424,-700768031,-1864680300,-611989791,-2054406126,-1371142034,-788185028,1693170620,37060286,-1958092253,-1067799542,118063169,1003473892,161104104,-717895674,250140590,1689059087,1371373791,1754581877,-922778644,-572322418,-1980151731,-1739854843,88396428,-443391480,-2070030322,-147859415,1969008215,1946392111,1314941481,706512862,-2065520444,1465946803,-1675075709,-230953050,-41097054,587563989,511907218,226555962,111521371,11610941,1250472906]},{"sector":9,"length":512,"data":[-2055940660,-1669273365,494167772,-883269429,-1070038617,1661647080,994249589,-1038428431,1178286063,-10006358,389022448,1124939520,-598928301,-1068408541,884377778,-28904431,916622327,2102443136,-1610382536,-1076804112,157876707,-797908200,200423425,42901590,1993372674,315683232,1995576694,1724927680,12182330,42005811,-2014694219,-763000200,-800782098,421322228,1036125172,603684548,1611082832,1644606375,536798686,1850286106,43737462,241461612,-1340798949,820322051,61891077,26148064,1393295392,1880084939,1691379940,513005423,1769497969,776550351,325337888,1301517664,227446120,237567235,-1186192190,1685054587,20906281,1410502442,139952902,-142407720,474125148,43212973,-1985958632,573110784,1929397530,-1594747554,1186993349,-1005709530,1539669531,-1760781810,1953647914,1173721322,1663861157,-1960249901,-1309681123,-2144473243,-804610178,-685645794,61989060,-1050222548,105697786,-352777716,1395757066,-363948864,-1014400087,555079103,-1040022424,61280296,-2132225855,1814876400,-1340063308,420492834,-1139273663,-1771518815,-636323008,188760323,-1368382329,90984660,326949320,1289239493,1978343424,-2063514928,1747158593,1964374323,1894274308,92036604,451415552,275540475,1493373651,2034244332,-2057591563,-737653512,-1810732573,-1715633998,-1645327940,571633922,-1133566776,-1880641335,936397245,2074476687,-1258237119,-1289602496,-754204856,47311337,1119098178,2085363892]}]],[[{"sector":1,"length":512,"data":[677905337,-16404271,1199453080,-2097090690,-335063714,-1031737809,1543282778,821134766,-654989668,2117344576,2118508778,-804339966,-2123061431,639329769,357276223,-2123119677,774666210,-1350197002,993230537,1886420930,271826759,-1258207951,303563021,1582667049,1343158794,377755624,1415102442,1525743618,-652774080,-202636856,-1468863923,1648579753,-803339110,-415212491,676889257,851447218,1997177532,91256831,-272570227,1676214412,-99580674,587861734,-1419226981,-1042202342,620769641,1161736480,1131701587,-380436279,-1694413336,1415670106,702555823,1906931058,1124966243,-1123119077,1632485320,1778482088,1020965741,-1452105201,1125970526,1048577951,-1737031691,781517893,-257949583,-374665822,1091560188,235324933,805128185,1145980173,1431391829,1336595013,1964376147,1695156542,1837454177,1678449519,169937983,1549429012,-1821601699,-30354942,-1203863049,1862309404,-1710918034,947220004,196341186,1420795585,-536941573,1956724831,779108461,-868563518,-596583806,-1209402498,1803455995,667258022,-419830572,1969157978,-241132954,-2029016379,-960219393,-90507281,1621934343,-165143785,1323877215,-281664779,1176727398,-334118912,2143276014,-1573234162,-245289518,-2094927521,1685100554,-1071801812,-1306334651,-607394195,949626164,-134757620,1306853776,1863506944,-2037790047,-591134874,1996045287,-1678206426,-2115243907,-67173594,847865469,-1384976145,-1899525346,-1566916670,-1165014964,978263]},{"sector":2,"length":512,"data":[-530453494,1758233876,788862548,-1642331531,-1474433683,-546307111,-86195991,-1981793498,535703877,1170613934,1988821043,-1962296219,-1697841302,723910792,-2063252412,35382073,-266074903,149549116,-2142429293,-522135553,251779037,255636509,-1871378729,-1079228768,-1977168880,-68154363,92862606,1894780651,1810940436,1489771796,483139207,-792798094,-940571103,989970141,1384519263,-526321798,-2034302335,129967892,-1153617907,544601824,-1394498839,144347695,489066499,911278498,-1633923900,-1159001841,93394437,-2132034681,-1599798068,229192963,682768648,-459996632,1638618728,-665389256,-1378811007,2086615832,499486976,318997120,-1005981991,50676101,12832060,1566182205,1526130508,-1036374409,-1930949259,547978602,1771700256,-1988024901,1701710760,1635967193,1079567218,295232835,862844270,111177535,85328529,-636406243,284820022,966730432,1330794514,1402163783,938690848,1094928772,223498068,547046165,-1326604719,1981870618,551890791,1357589806,-569627275,-1704528648,88880149,-1152518604,-235503897,-250089074,186553505,1478399494,19159455,1990857942,18523060,959950706,1721939238,263256048,1135638380,-1602708656,327361528,1550791424,-836857665,-1103205410,-376854797,1953039060,-771636778,1845667024,-479536858,-418971630,-2025403134,-1759655785,-1941054123,-926445009,974369012,-165382149,1082450174,-1932329986,1152777880,-333591869,332586527,-1076039480,-1193183799,269359156]},{"sector":3,"length":512,"data":[-534913853,-2001675247,334565390,14631677,303819107,-1889953047,1653144500,-1984190412,-1702135818,176767637,84156894,1101077748,-83878258,1026489231,-53147629,-99507715,-117912376,-161024003,68296090,-1520254280,-1268626567,-531295862,-165588561,-1207593228,-1845357403,701212003,-26782122,212138404,1785765953,-2029336985,-218309645,-340741493,-284682228,-220401113,1324581664,159121534,209617306,-296651472,1073797876,-1341290376,465707020,1860959722,336595956,-856475661,185349284,1157662888,108395463,-348980551,1173465912,-1931164620,213490370,1396325493,-216992944,1582956020,-122971553,-2031147079,-17420032,-207250872,-71659735,-84980644,-1135805811,-85318771,-1711759376,2006942380,1178785190,1744527099,-202989214,1359810128,672070905,-621023238,-545947843,1010860493,780260658,-224365360,-1678272304,976106235,877711370,872692273,30946310,1999897607,2117339344,-1571756078,536476346,-1443586885,-37546355,1533720052,2025170942,-2062499277,1607207728,753599074,-1777786766,-1272771711,1619699365,197366589,-2106882492,1826864672,688990240,2025490856,544352773,-1979023714,132608636,-1624708027,694682233,-1420868601,138629699,1945645047,309028197,-1871162590,683258882,2009558886,-469163421,1702150775,-36009817,1192200398,-1806016096,1632704772,-697344881,-863559152,1886371385,220209893,1606446677,1852272432,-1811711383,33557657,1629901871,-1286979225,-1203620089,270730148]},{"sector":4,"length":512,"data":[1016592129,-828374417,1585455451,142534542,756120852,1819076672,1446725887,2114812934,-256208920,-126745007,1773668999,204947548,-1607464688,-474784663,-1698744652,1766981691,-501467412,-2044213734,143482073,499122213,-1730007424,250403278,-1748094776,27723444,-1554845254,12342668,1136620174,-352232727,-333612739,973895986,102228139,1006685417,2008910852,-521805763,115716561,1167095781,-133365019,1963473949,-447824106,-352198788,-435536772,-71178655,188506626,1809714918,1011352294,-260577780,771942004,1736687164,2011596006,-1089207600,67234453,-1393831471,1486760496,-1633483967,-215736051,-816174978,-229603685,-805887647,228425923,17140291,-384080156,-714231808,-1884418595,2010885036,-1844913206,-522252800,145594940,-167544233,1979310808,31384256,-797523543,-553467456,-725494725,-1782906431,-1800380947,-1077432893,61908675,-1174282509,-880313626,1682749926,-2065652022,-86443399,-1740324671,-721756422,912754682,1927184352,-1456209158,-387911281,-1932489251,1854900690,1451867206,-171903554,-180822856,-501158982,-560121316,-1897275682,-1747722674,-1127227777,1144881190,-150152361,1855190968,-504368868,-546824805,927261083,-657924931,463647944,-722094392,502640885,-543444242,-382044962,-748864802,-1531415330,1135647668,-1685283971,-809103139,-1555592524,-160335953,-174998813,434367459,60940149,361375480,-1132990733,-1036384781,1089422196,1950071480,-256310477,52655167,1004585586]},{"sector":5,"length":512,"data":[-1594879216,378200303,2005918602,294942177,-576880725,-394575652,-487443642,-487726469,-256252409,-424027008,-495857699,-771692359,977001720,-566530000,1966814465,1111209144,-1561366013,-265154501,581058676,-536383806,-1442648046,1129511136,-1298842539,842847751,-1170636484,-454031584,1024244342,483616936,-1271817152,-2080072168,-1224421266,1166801567,-1177407208,-1696910998,62785038,-628373271,451492963,197200873,510631891,1744707324,1748394640,1593903450,-1300998942,-721750880,-64954392,550960338,-541834854,577282315,-1021905470,-181897222,-465895,-25261061,-406841135,-625606658,-2068263172,-755564397,-33035264,-1042450984,-55960187,15147628,88179389,561000000,1364101710,-1339075188,1830840423,-1761560450,2014485698,1208311668,1632469994,1635260299,1478514294,1131610464,-228507354,1946759153,-244097208,-1122017778,-603603910,411247475,1961887200,1956642160,1718968864,-1864567962,-586217870,-428665472,-795197720,1878098745,2131197041,655375631,-1494579597,-2126346736,1578824120,-1730074287,1803222097,985703201,-123892722,1995900475,-1414597368,107068397,1710530943,-226503877,991026671,-1089636671,-1329220574,-604142762,366680322,1136627741,-324001317,-2074620462,1003441059,1500845705,991620256,1939925008,46818250,-899102254,-898137252,-1623143852,393231644,-521520269,-352138617,827225831,-1544510528,-285159318,981206911,1986344858,-1021154507,-148109050,1692397118,109258099]},{"sector":6,"length":512,"data":[377684473,-1790960149,-434278517,1518701003,-1786147997,1958406986,-591262902,-335419081,808536577,-1861436539,-1101447689,1230173671,-766752755,-1910093368,-226430920,1929629773,1123558845,772940991,-987225896,-1328399384,1654520976,981463248,22276864,-217402640,139531539,905682507,2114372659,-1932553956,704182210,-910351110,-96072712,-224008676,267147270,1363491674,-389804683,115203415,-1108731925,1900397571,-832664628,1122893020,160936054,-1755479126,1941057281,-1701744840,84181464,-776964657,-2087316838,1241619037,-712300878,244926289,-375838776,-1243954445,1085466434,-2036530637,-506308112,1420562047,2047063732,1853166719,-1591003541,581846391,-603284540,1642797466,989967377,150713318,-295212669,57439871,326591854,1631146016,-879093645,426080494,1988361584,-187297034,876866342,672260488,-43584740,579824095,1477690209,-2083440682,28964697,349829678,-1575437102,1422923511,375997928,-626448300,1654673186,-585949150,-1564536928,-1849861275,-1578141417,729069852,461120218,513908773,-1540849469,-492804575,831949009,-1701971969,-1667397206,513843370,1114625872,-278337456,2138784765,-1891402561,-2046412278,1410816540,-558685976,-801313324,654201990,-1964503472,-616505347,1297844862,2114024836,780584956,-90963713,2000027440,-444301591,2082732406,961523720,-1376982535,-1425662473,816709037,-637889572,-156666970,682634798,1640168494,2088393710,-55954341,-1248155086,47307783]},{"sector":7,"length":512,"data":[-1897028632,-1572068295,-2098538187,315736519,-574099948,-199220151,1679844354,-796902625,-1115616135,376785398,-356835592,856585531,855759389,30874091,-544881651,-506196005,300127881,-2140439376,1405140560,-1451676529,89791399,-475636582,793891844,-1089047480,204786455,-1406651812,-1897258877,-298385012,-1550077920,-332209823,-471123814,1694141265,-201020920,985612347,-366000701,-1608878500,-861650936,1988030029,904235736,1981657992,-1596877491,1915546523,-769080868,1789005312,-2074540590,198596616,-1124072234,1758882860,13107926,-1426075704,-402204577,-773198513,-922826832,1562251278,-68486372,-1203424083,98459844,-670764127,-465238613,-1041963526,1878816694,-526717601,-1215721612,-1224283898,-2140615915,18012077,-201775637,-1842740584,1850864560,1543625644,343695542,747701662,1663720546,137251944,539501676,111174020,-729794656,379753549,211511563,-581768348,-733032880,-1696489868,-1150350968,401391554,-150987826,-663226969,1344466158,-1953148908,103676334,805350632,732082150,-853980390,1251813658,1956835783,351729378,-1432914939,-2111760523,-850976078,71720693,-1560568088,-1997602681,1422063941,1377597463,-253095532,1604143735,-404652827,-1681747688,550525902,33303965,-1558174540,-282719952,-1626727559,750191001,-219472073,392390432,-2133736557,1456522009,-1067810408,1729851869,1628470724,1888460820,-853335389,-1092813788,1701254193,2047838836,548862837,-956474769,1818433141]},{"sector":8,"length":512,"data":[1934208623,1615363819,-374753536,71364126,-899645350,-338663335,717470787,1816758218,-1010146711,130829821,1705534254,884151619,-2092862526,-918750864,745639537,-362261534,947331180,1169219172,-59260364,-1870343320,-650254032,1005685348,387989485,69044435,1746600168,-505028216,2038326429,90021227,931273602,-1221753830,123876716,-1507278766,-1458017808,265292535,-314572052,-1904320244,-840452476,-1995602919,-1175862916,561668611,1837101799,-1075319064,-411099094,-1789745631,-1846806231,1166683043,-894835657,62908663,-1575168608,-667263317,-1002060171,2057168529,-1276048590,-1676573381,-319485461,-1564104227,25374446,949619655,-1649049461,1318493726,-1283460997,1690796497,1357681727,231195532,636585355,-1338966015,1893472003,-687936820,-996532756,-1876039207,2078551406,-2136379879,497679034,30466720,1087423773,500207751,118721880,-1981575864,1972475096,-2089273787,1760101550,-36734776,-61522973,108792959,318391800,-1106479214,-100704808,-2065859200,197865565,-857784104,-273347954,681778418,-1532496352,-205905911,408923785,1507760956,1396048444,383751270,-51189675,-127499808,969694794,-1556131942,-1090468997,-1339609945,-385632860,-1341209074,-1028641023,-254091937,2018320994,-581468260,-1115669504,10899608,933774947,-995857445,1103942199,-484921741,1079287532,-1108997887,417069329,-15212712,-1089261810,484907558,1588211287,-984201216,-1108651032,1382677881,1055645425,1116468434]},{"sector":9,"length":512,"data":[-637433796,-336871701,-448807120,432955403,618087584,-53861494,178236692,-1515324492,1473260905,1830759832,780762104,713209726,-39759271,1535205066,1568131685,334949473,771269985,427150790,108410902,-44166165,220225274,271371243,1359230669,-1579036531,590019341,1105921047,1189814836,-990796809,576913243,-1205598861,-1039818692,285151093,2033910105,-309313417,993969733,-1707524953,1142912392,-1072622726,-2146284493,1720085890,-1935825763,1125511760,-1401210160,-1554981871,-2101610988,-1712428187,348940497,144113937,-2001141080,1620087566,1159118983,638472214,-116663786,37952717,994033840,1946600471,103536041,467762261,-1852398623,580398815,240589291,-1880812086,1622501,101448097,1080227577,9633939,-1645956357,-1541087216,1617065161,-593322735,-283139440,-689240415,-2046703423,979203185,-1608750497,-1461704000,-2052466256,-159328749,-1682181004,-1323380479,-838951643,-186700106,-103089790,-369629649,1956708121,861016866,-1158216253,-1048985791,12178203,-1317426416,1055400174,1299225020,628693215,673522470,-629243604,1925266220,-1042872536,-57761010,-510622795,25759420,-68363291,536230858,2131262523,-368690413,988548471,74374948,353556264,1857732796,1920318691,1853209731,-1488865251,1824267761,975346879,-582610915,-938114287,-1570139990,-859237078,-213899568,-1852511859,-1701794261,-953971696,-2094109203,-1708720929,1910208099,406787695,-1009844701,710426612,720314373]}],[{"sector":1,"length":512,"data":[198204142,1510308875,-309230484,-955331513,276697606,351939588,-455742214,1879296640,-485105245,-1371198825,262587377,-527912928,-440434497,1338219053,-1255140509,-682298719,1707855225,-512312117,-457220237,-150919664,-389092910,-409959759,-774052913,1933386101,1310514244,-88798089,-382734113,264240810,1745393695,1680504067,-1957893926,-267967766,747997541,2099493582,169030403,1073296320,-1071518471,53210155,-101910224,3017134,-1164373094,10632055,1132498194,-1845435455,580174114,-992806493,240777624,661131213,1937415980,-4866501,-58367003,513470484,-1728250380,-1795385604,-400662041,-2002328697,128733615,1940865717,-1571898506,-1430176117,-1825308553,-1987862795,-421579451,798491352,-1605500083,1857218755,514004678,341568138,135862387,1500162733,-1442248255,-1820683499,1477835739,-1711923004,1856005414,-1474192420,1888798849,-792580968,393821154,-1015220668,-228495840,1332749875,1840479429,-2091122386,1682358797,1408696368,-826851278,-45950430,-1997821417,2122562374,1025368049,435483124,1388011729,555371294,1715134360,402974755,-1937237008,10695386,-1143591445,-300033740,-370217116,196903703,-285032890,-1764653235,1624272388,1511509635,-1163612265,-263070502,-1615934246,556548514,2002276026,-1046308251,1506138250,851147996,-974716892,1609997042,-167338741,-1351322342,141843696,649182211,-1040121719,5505130,-332184922,151011979,-793815264,154822136,711132870,144824763]},{"sector":2,"length":512,"data":[541210605,253763586,-1601542110,611290512,253035628,1686382696,102436356,1915296008,1667330279,-260606774,325415033,1125843645,1668449541,-435658538,746791109,772530654,1090952992,-1257888705,-100000191,821499416,1462239552,-630912215,-1768258846,-157387546,-1910196801,-1026571241,-384213426,-156943566,1998747878,481856622,137464950,-216471794,-1536326758,-1230803821,408648926,615362106,-179079707,-1456202672,-637075698,-1671856154,513712926,-2145140501,963251659,1154193118,1609439446,1787599602,-643801469,195654455,1433709325,-563365133,350020850,-1914705338,236772560,-256381344,-1999612963,-1486283849,-220199731,1217700404,-363692861,1718331598,-1126661903,1144716556,1146170164,1363825493,-1041395501,-606654821,1090598759,-1315282443,314264865,-1717682143,-1306571335,-1292444970,-765338177,-1967858940,1082394230,29387949,-2055819347,1572646790,12807571,-1719361716,-2138593482,1631985085,1240448834,-2139012966,-1593407026,-2004536346,1455448369,-1108990238,-336600754,539730125,-959917892,1811987589,-59211533,-2033874038,2097166275,-795742371,-169087475,1008630514,994093692,-1710874506,904619103,-513866138,-31528657,1076841370,125936355,-104357680,50708995,-187894108,-1617252475,-1030079685,-545647748,-719498320,337048638,-94175052,-331873861,-1604020608,829688347,143127980,355834572,-1139457285,204913865,-1698762505,740639381,-625696301,-623748594,33580033,1056141363,1879735226]},{"sector":3,"length":512,"data":[-636121264,1075145055,819370639,1201710091,-1957559552,-922736057,772552337,-1328292466,790484257,-1560956477,87319754,-1031132683,-202233354,70907637,1236893346,-92535664,-2075626586,-2030403550,6754105,986706336,449776280,-324243320,344713683,2072316323,276698347,860762584,2033419659,2112940785,-1232952392,249871496,108379183,-3976463,-142796240,-1999370689,388424747,-61123390,221515024,-376319912,-383946481,1980334228,817722003,-1272170761,781893525,-813310206,-243071253,1979136528,-1137139447,1943983860,-1227505826,1351929479,1577185953,-539105170,-1496840148,1462534411,748612485,-8502532,740622783,-418700944,-2044168701,951910656,717488414,1018888965,-578116977,-1551647621,616707041,791110404,1552515914,334100480,2041806338,1772201888,-801406501,-100440114,973012758,1103885056,1824771477,-1616134167,-1861744988,1945574799,-236586078,-344504945,-1329926576,-1100863000,-373661906,220984854,1375871465,154619978,139762729,601425520,-1424699976,-841215507,-504829692,-1827456504,-661025408,622674089,606997249,-250215215,2884817,1087467501,1859252824,-774000959,812583437,-788141592,1041209409,153420871,1089700076,249315388,48909520,-819183946,370366211,-1559951783,-1141291527,405473581,1329689986,914617058,116126178,-319167972,-325581846,-2131104614,-235279263,-52559680,-724152116,-63906013,1358491937,-2082899968,-1221614786,-1090773043,-174129721,922090444]},{"sector":4,"length":512,"data":[318161357,-402517310,465037091,554631369,771989741,-1588947747,-650653957,1031019589,1146438452,-1228897851,-329252166,-1188363850,-1191176984,-222295864,1917899297,-632675998,1163307306,-1159646138,1819284933,-464441979,324824292,1732293143,-1156775670,459477922,-138191938,700853312,1768886503,1108964197,-1870069438,790651780,1293973891,1115523608,-482122510,1869479148,991244484,265445750,1051574433,-898765598,1949432171,359167014,118688224,-1145298411,-1581913489,1757327162,-1962475366,-2145488120,-273250165,1836412449,310763618,1852170184,1227646307,1191191662,935514179,842748121,-1876942384,-1182244185,-2015045501,1886757103,-753848716,1426082048,1441874862,1866923022,1724962918,1795781850,988050086,-150173944,252763066,1478910123,1995444333,-1594404282,-1797469757,-128163902,166396195,-2004456497,341831669,589341192,-111491326,589098787,346057272,-2113857571,-736365300,32413435,-1963716912,-800690344,-1931982779,2081480796,-340118758,-1232296198,-1908841228,744399638,-345494698,-174186546,1140389539,505815907,371559618,1643717936,150839510,-1763527526,452133944,586803573,58046968,601935080,-105322842,-179346660,1979270755,-723347145,587601450,1094500346,697103492,2128940145,-287319240,-1009465963,1140396916,1632388291,1433222084,820500712,-759451591,-57921339,1881335198,-237473191,440238111,447761524,-150044868,1539382256,1848511432,889436315,615651572,-1546722244]},{"sector":5,"length":512,"data":[1272629999,52011226,-680816446,1974401087,466220306,302113582,74575106,457106659,588948019,-46909280,1618358060,1956863665,1172635151,274005795,-385791505,-790559673,-401967986,885240344,-206969596,2105786088,-183448015,838568484,725255175,-448315258,764939284,782792161,1822433264,176755118,-1563081982,1611570114,1319727841,501471884,1171934363,-515253592,532182210,-1876354331,-911817898,-1963179384,-503142710,-477596534,-379796742,-104536501,515600007,168892788,-522579338,-1578752513,101385532,87985383,-325164939,240798143,164834536,-160212044,-138686605,-192148957,-200886307,-1441554424,415796010,-1675084246,-1997758412,1910719856,-1949433076,1964909547,-456530885,4215664,382326930,-1158752020,-383708101,-185276159,1487503448,-1459421310,-2097150459,-89980718,-66863356,-552473821,-236074892,-620424108,2146581311,-2060092408,1927693645,8493871,25754861,5660657,-1679912997,-1967277094,99596662,-238192948,-256576733,898298982,-1308494234,-1331541628,2019887651,-66968042,-1854727562,-386442891,-167396735,512106886,-809733859,1883433200,-83859505,1114689792,-972994550,-2114673022,-1336136170,628458101,-817856336,335788796,-359795274,1167518738,1922771686,589697652,27662315,1143720561,188298101,-2098844218,803612289,-433126120,-351286088,332249976,-603225643,-1571535856,1561804990,-1516042401,1490150232,883645093,180158920,-786854304,-1492078736,1085505896]},{"sector":6,"length":512,"data":[-1961430834,-1220694404,268503814,254763592,-469219222,-1421557632,-1422382589,1993241114,231610448,2114991263,-362820523,-1294412476,-2144783351,146971257,33725305,-733327893,-1588786924,-1909448630,2059194934,1275127024,-1662649456,-1072103639,-103937733,-26363443,797003996,-270402928,-905839890,125070967,-923782729,-1281599068,-1881047720,-1539146246,-743935307,-1007567078,-770006529,-750196697,725532826,-334491372,-691151197,460608607,23769327,87420955,-558113145,1613062530,-636747711,828290,-837347993,-903358029,15435584,-1325859586,544731139,459367154,337646759,-1063535552,-1853341923,1025275928,-1204725126,-1948112801,-513756119,-291967325,68972775,-1087801642,1489100993,995356130,146790423,-267172790,-823353285,-521391870,1526921037,-129305610,-1432619254,-49741670,1137012995,-1195974395,1866770190,3816004,-255953924,-37773404,-309814328,-667191391,2031140576,2097740347,-225559552,-16520258,-1099497477,-1908339353,-2146235284,1881836234,-19082174,-1393923078,-129791291,-1702920477,729056223,-18921868,-18874657,-2132811017,246278011,-405605471,-775681271,-32378763,-86280957,-272368897,-2138010700,1131186293,90978839,-539684255,1092617419,-268754860,891310902,-2046486782,901253623,573439678,1191227422,-1495368463,1925144141,-1846430975,-102362382,343476539,1894545343,1560316353,-827149000,-1036857852,-818754035,-1680803195,86986766,431448507,423244751,651149519]},{"sector":7,"length":512,"data":[-118218666,524751010,433030077,502402718,-504823129,-1336997376,-1327217606,-570480144,1091772929,2147435588,1212371535,1162300993,1162758476,1213483351,-2037046345,-863694955,1922747639,-2135391364,-238231547,432824306,43368285,-241863200,-356647712,-308625410,-288710189,-771928306,958355934,1712443728,584283371,-43815029,1960507481,1862280295,1088144484,649321903,-2034387465,1224315771,-151298246,411320178,-1219592938,-1089272879,1965178185,-764292322,285591280,1089602677,-267785349,1975600503,-1337741882,-511355881,-1001588766,1547983438,-531557761,-1379029606,-603938295,1751680,-273922195,1092238060,766433872,-428471635,-1362362188,-1780579653,131793849,1468862918,60327563,-725803935,-797459514,1892976538,1005766504,142604624,1330138448,22629454,2146042175,1819625026,1952534636,-2089855896,1684803839,1685217635,544410727,1863151470,2003819646,35808357,1830759994,-960474608,817887173,2117291363,195741256,-1145062048,-1074506817,1253139087,1956410082,-487567072,167535346,1438595997,-428208434,-1251337571,341602140,-752495608,-974794489,1209734303,1383422126,336168967,1810340885,1440660273,1884813281,1209776389,88124929,-1753812016,99827755,11528618,987723249,2013454015,-322135083,158681661,680186083,803721470,-479246579,-2111809192,1702188538,721548659,-1526532781,-1106586377,5480970,1641372781,-2115507177,1835712478,498706441,1534665454,-159916033,-605197121]},{"sector":8,"length":512,"data":[1515243501,65053183,-1361711354,-721061826,-1098876701,-1764422728,679714857,522297611,-1715328001,-1408452198,822117049,-33607178,-190080290,-1443117670,-1194271739,-2035380528,-394004016,-1965815088,-2010170932,-1220279305,-1399257074,-635886117,-1295579429,-1560237640,1640211653,-1980050209,-392627114,-319095306,-737219519,-1855404046,-1048819707,1868832783,-1275089554,1936291941,-127066508,553350623,1667592307,544826985,-1607039130,-1660493728,53690395,-1274692026,678624528,2044244194,1946752878,169244769,-760286917,459895412,1953850048,-2105142649,-1088030834,1327944111,683239325,49611430,1007070118,-2122822815,-323928852,-722020166,567834504,-1006247257,-117996392,1742723777,1995358071,-535207449,-1197071118,-457215139,1291041331,-354071067,-2087046955,8893969,1048838015,-260477455,-386534017,-688531828,371038754,597393534,267464320,668766337,1121004208,647829396,571286914,-150270847,1818423711,105136258,-2113866688,-394200066,484237083,553583097,567940469,-2144089485,-351767354,14976579,1904642662,91679025,434905849,1979132812,-911028917,-1896959010,1290912862,1577947308,-854794232,-805010681,893293472,10598971,-2116099337,-121478201,-1593897225,-16808334,249752324,-122351559,131776474,-1899903615,-1899560430,-276116864,-936115747,-1979510836,-1229468539,-582565535,-291502899,-101638848,926973261,739849977,343377345,-1191257305,1027666942,528416788,1207082659,117376056]},{"sector":9,"length":512,"data":[-1493327366,-1496913964,561067264,-428534544,-95928114,76130547,-967995812,1488493637,-1517927758,-54578910,-648910069,-1371252044,-1544393198,949525398,-1700586276,-889347812,1166620827,471624695,-84679325,-939764228,49918533,-1504746135,-591249071,363026888,1087599402,-895234273,-1144163290,25527034,1766564456,-334996489,916996855,-2591066,1093981379,-1587489600,1158313337,-397067609,-1402990286,-2037777250,1385578064,917554431,1421080766,-1191902382,804044430,-1064145318,-1856140282,990827044,2126533824,200838124,-1233782650,-791127906,-1607166570,1543931410,-865056265,1589653763,-1905737328,-1862635543,-57274503,145750198,1027209223,-188343151,-1096714292,225925483,-1083163156,485214033,1894982099,-1010723321,1078081389,2132480793,-1169792520,1902740503,-19818438,-1675087185,-2124653188,192532191,1987186756,188236265,-1076731071,1409442163,1853167439,718086241,1631653461,246884,-239597276,1162732443,339822916,-1584963241,1642635340,952420698,-1218706757,1572333739,2097130247,107770701,-86108102,-1325717494,1241591430,-1086643993,-870877575,111302820,-557210373,-582978546,1633266872,-1324897089,-1195310369,-384072877,2029935364,-1388854818,-1392475644,-223250941,-1845654574,1870462109,1917351995,-32963410,467155106,-879492550,1474227897,-1601163203,1085604625,-1226726690,-822288056,-540238259,-875917199,2090157016,380579549,25387331,-1738304282,242588187,-1303601080,-1830727047]}]],[[{"sector":1,"length":512,"data":[-296480238,-1600257434,-1046604004,-1301238714,2002200236,1301130500,-257399390,-1592911229,847826074,290728411,-1053110046,-1160820901,-268592684,1975630846,218808262,1107057506,773036913,-1180087965,1413435469,1677717313,1414483488,541410121,1733763108,-1282510995,703567352,-2114775184,665531686,1932066324,-1879098839,538968864,1160643616,540560728,-1224872624,1640919905,-982018197,2013850322,1685091658,-1067928315,2044953436,-2089021073,259330242,227780819,-533935635,-116970643,1460105829,1937213915,541614367,1852882260,744839939,2052953067,-1865515931,-1302037695,77689513,666045499,1370808608,512682474,1634231262,-1009215388,-1048912989,418872678,907747374,50225523,543276406,-813388702,-1334800529,-1210511350,541814584,543895041,1378016776,309434658,-2046267550,706915843,-381026063,661582627,-553617528,-421528674,371316547,-2057060689,779247975,448855843,1219609581,1357140231,70790698,-1461658764,50819022,-362482172,-1656676252,2067204098,1701166468,825155107,1892795331,567495276,238970711,-1306496254,2038826733,-1071725670,-2122312243,-1430229153,1133149116,782689518,491055758,-121357098,1047295555,1816214586,1053019764,1698970829,826287087,23688159,-337045948,57905509,15839786,235957735,-315994544,-1553610697,576067650,-1404248841,1534734037,1718098753,-111405126,1572466500,1877082617,1881973007,1602723263,739950338,681320973,781196781,-1095076883,-1429982604]},{"sector":2,"length":512,"data":[438081385,-1303535056,353883892,308949206,494332422,2005977058,124831628,-953712628,1510376381,220470727,-385562843,-1438472356,652650560,1592644515,319726061,-1123894822,356229548,990502847,364130976,-981734643,962783589,-1056040739,-1434527689,-343276549,641339061,-733347605,1122447003,1675800200,-330410793,-1778265782,1405080047,-315363864,-167866111,1230306280,-1336571899,-1334081712,-1748283371,1622192135,-333593849,-1704530788,2104753058,-754404998,723183591,1453573127,-1527052476,-1609194421,-368888316,1621362852,1213013767,1275428885,161802755,501162148,-251986765,-1336869065,54585347,-1636050564,1818358983,1605170403,1447889086,-182178586,134254760,-118152187,-743219122,-628544592,-636086558,-2142882021,1050609002,-1607058208,-300278570,1342855801,1354162648,78673661,-198002800,1994373089,849998338,34126203,-1275123640,91573820,-352280343,293476626,-604214025,1867652407,1564697478,725016319,118631634,-236998193,-288741489,-276782762,252034830,1546932403,-1197653083,-668778719,602485787,-1310079998,1323918979,1979057383,788282118,196051647,-284246222,838857927,1488248033,-1912642745,1230328071,1498174533,1171067177,-1826572493,296184138,-1313217630,-985075631,-1932337283,-749138188,-1107293040,1963108728,861693982,-332393450,475020482,-1089679625,697627422,137466740,-1059257893,1943869789,2032629214,1188120761,984841742,707668572,750931253,-143925235,1132254332]},{"sector":3,"length":512,"data":[-2142513559,1468823178,746306112,-734513296,2106882977,-1081889474,313421961,163253108,-495713543,-721381600,1129236757,-1054575753,1885430648,1022923550,-145865459,1346454655,1229388368,436225356,281053293,1160570885,1188708832,-1546627906,358943243,-1038468118,1548519164,621021618,1940490416,1352751778,-1710491871,314957386,-967182772,2118153606,-1695556381,451668164,644049139,-1824850718,352444764,695262683,1308313961,1836359945,65250112,1836496383,-135794180,-184044134,1004148671,-81412291,-723985669,-523615233,-1175470848,-1292730253,-244543528,1002504364,-588724218,-1457084036,-945198894,-1948910736,-794040514,1869873179,368169994,1219588881,807207110,-1981106728,1407825472,1087544106,-1547094648,1664217939,-1941883417,1748331102,471466220,1985260185,649880361,699035653,-42162474,1668507599,751005801,-2129549184,-1586624769,-129679257,-1182933544,398005891,1616232040,-1005774958,-1561651586,317456467,-1606684948,250433260,-2131972372,1766950220,-1207403535,591772672,-1292451910,-916644106,-1879660298,-1627991282,-1601740574,-826547640,-1360857450,-1158247309,986794114,784127019,419571959,909514853,491292676,-1326532715,-797451824,-1710892558,-643210791,-638410513,-1724579067,2131325982,-136275476,96080520,402658537,1392875933,-78294019,1233157173,-1181854898,670581069,5132168,1016366619,2102357297,-263752333,2085568269,-211401071,1945390002,490788898,821813843,-780999863]},{"sector":4,"length":512,"data":[-598355005,1736874580,-1594402191,287050342,2018706288,713030785,1933050050,1945902168,-1342420998,-1203242931,1425371729,121612640,-1059359274,776722373,-1807355852,614465429,1650663924,822103737,-83308549,-781807372,1622317788,-134351876,-939627252,-55403941,926068490,1704123791,-1782569476,365881853,1706814030,-13400112,-1750866122,1252196886,-1753853348,-617637134,730702149,-1936902646,-1651945295,23062856,-1274147156,1162090087,725962423,369104329,810057918,-887089050,-419070259,-725410972,1307395289,-16086559,56651466,-783897850,2013105246,270801192,887700531,-57942358,-493180366,2045122147,-807569923,-808781784,-1088371968,426026869,-402951212,1523579693,-55858761,-737319498,-150339443,-125554377,-910044040,-1664541956,-1696621382,939613284,-1367946756,1686432395,1614987465,675400093,1086959115,1892241136,1072514624,-1702508674,-90963798,2000005788,-1062911255,40880050,575881474,-1848545236,-869774060,1634659315,110999733,-371658207,99151837,-1653247578,-620426169,-701935408,1214777370,1184711092,-1960783278,-484694189,-235135504,469150491,-2027065646,-907034550,18479518,1919226716,-484321465,-1105383018,-266829618,1015055918,-67688351,447901358,1699291088,-300159881,-219353419,-1649283571,905165043,709734755,-1496792704,977317281,1815863259,680320788,339460400,1125638141,-1919524109,511663222,663972050,-743411173,-598720345,-2121047352,-666648593,-1592220006]},{"sector":5,"length":512,"data":[-1005253120,-372965071,-148673266,935737846,-1788991468,39720582,-301616936,590716324,-1455035971,-1875218286,-2145545768,-1220852776,1003893994,785799511,1744766050,1163019792,1095783237,2121745731,1230128366,-216971946,-1207025324,-887820724,1452268830,-319860151,1414435271,-833332926,1159069973,-2099185064,1304533486,-581936841,-452747228,960358935,339826241,1637433921,1410730513,434897693,1745790173,-2142813753,-124467514,1192299672,1388072772,1329812123,-335082527,-304158732,-195802792,1291908362,-977287507,21322313,355270955,-401175164,-1467956935,146887481,320013622,-269835658,-1857167253,73833990,157669089,-847052538,-366594313,-1362207654,-413277668,579618523,-92923068,2103611490,215980351,2099313234,-1440917671,-665579948,-859845415,-861421095,1897778688,-864228148,-788271892,-624135220,2026684078,-805108553,-794983492,500229636,298861384,-1932523673,70990800,-804007684,45997456,1546522320,487851216,1161505333,-372318000,745934544,-803273520,-793567114,-802800739,-657425412,-801569831,-655372157,1190007413,1895946734,-1579434562,-1097261870,-826163526,248533508,1589526952,804127667,-791089474,-1044481858,-798423858,1157622205,-911311664,-182023216,-830603899,943115007,1012955130,1550693572,565989091,385286468,94698006,1107550254,-1104445402,1895969213,303723933,-562858550,904648763,-596442404,-349348735,2118131985,-1089672446,1600317301,2122538643,725417479]},{"sector":6,"length":512,"data":[1170286965,-480247100,50876066,-61467788,-336601067,1965898802,1658901294,-435674872,-708544541,-1054096756,885838619,1378565889,-1365969079,121727833,1543617485,-543197736,-814170634,871407730,57795,375940655,371285470,1965177550,-472681602,-1865346562,-1308266435,-969355048,60907910,2105430784,-1912600166,-1710265054,-150880400,-1202400719,-1844909078,-29353183,-907081898,-1576882942,-602144558,-1979244004,1621744640,-2136372463,-164050887,1242738700,1158032004,-1593570535,-1720316170,953224196,-191165219,444064768,-165425664,59969052,-2078618122,1870956291,108956447,654059573,-1065925239,176070742,-2004754450,1755337029,1484905966,1039034784,-692102884,283925851,5919423,543812520,-1083923818,1616915201,2014853052,-1576635703,-1952540153,-1550774622,-1330098310,1882739466,-731282438,35340803,1226009441,431884827,-1466768046,1622688835,-16429136,-1296376680,1102140194,88438510,-320262679,-1695957524,615645417,-855351616,-408183473,1777556406,-785643414,652886339,1314196169,1240112952,149833811,428306679,-213777026,-837413498,1970557304,269025783,-1890683242,589730350,-1895231947,802161913,302111209,49050857,753482473,1742535512,-1593579135,1124330762,393538791,-411002783,-1039774070,-284678709,-2044727549,1177914760,143354096,353654903,-2089705211,906480669,130583756,274205957,-1533806326,282132468,-1208285482,1275428474,105702223,-1343705961,1638986011,1143499836]},{"sector":7,"length":512,"data":[1934760726,47976425,1007162697,764679936,-1253834688,-507756888,1359196413,356462242,196618815,-1517214675,41369344,1853886568,1360524706,-722278315,869457415,-1249781294,35518162,-321731374,-767687700,-79637881,1980682957,1157878422,1503688402,742005970,-657285934,-766835751,-763243989,-767498192,651612782,1049345408,-783126921,272390449,176892557,-46837008,1107904259,1195765305,1196325756,-988094042,1970519155,1083082082,1835709773,-1953663659,1127065088,-1977551056,71581450,1544071356,-955547565,-13733821,-308027521,-1075394184,699868600,-2119404938,-1368233694,-578323637,-1128580380,-572238108,29754999,-1061256960,343230583,1341407,-456395858,-1063094528,-140677625,1481491142,10937482,-1828789146,120334338,1193754657,1579492387,-47436713,1213792553,-801100271,-1042679287,84795664,-300810240,-1978855263,-142258987,66765,-1681960078,-2060146906,-968718764,-1087897481,61795486,42982872,-561527232,-1077672072,-1742879578,-335291119,-1597724220,1943867651,10929152,2131832909,-659814934,11116751,-1873670092,1978325395,63756712,500029876,1357633848,132962709,1538906472,1776200512,449142436,1542391803,96872052,497084544,62777354,1525541058,-101324794,1124609485,-56120934,1460163657,-1716807281,1415008078,1420640900,1240925488,234621546,1057365200,89214229,-603981591,-934578416,-507848111,-554619762,245816468,1342430262,-341166746,-1189234981,492104118]},{"sector":8,"length":512,"data":[-164402242,394278581,280098469,1626014430,921670117,15742248,1827063564,-637827216,-498930944,-491843526,-488212936,1247076900,-2136419852,1586069496,1777910799,1147013208,1226104382,257858414,1768135270,539144307,566472726,1639872128,-1760405094,-2011442391,-380327668,412494100,1142517798,1286680942,292605637,1751333949,-1030739611,1630759357,573354823,-1845230245,73610954,1466638925,278948929,1314108101,3390267,1418241322,75828645,-1901679135,-1832064894,312203207,-223946877,-986647570,-1361581246,1846341544,-24254463,-1930951122,713422246,117715003,1392821819,12703942,184796780,1866735562,2002029509,1419342697,-915447496,-966516709,-1606483876,617096800,-1441559321,48135964,-375773205,-1606305520,2008858381,438770045,975552003,-2128816890,-1593793632,12020200,1422827814,1411027321,-1089249413,406419885,-1206407737,-1315259660,-1458245713,1968137400,-1696034994,-1946479332,500147157,372423274,2130118753,399553800,-818960645,-1281514659,2143473798,-830026177,-54621186,-1747551360,-1254221081,-666184498,1654798309,-1109799356,1133174777,1082173654,-891476708,-1157661056,-1991788309,185468651,193490150,108209153,1812516454,1129324762,337187953,-905820719,-337102905,741457782,-2077725856,338284896,567779141,-1549313051,310601952,577176237,2038356973,721126921,2075177245,-1742101516,1993138878,-141882769,-429779265,54460594,35669577,-1948221894,1044120091,-151317247]},{"sector":9,"length":512,"data":[-1894252010,18348862,419501308,177662977,1134013978,434763528,-499646079,851323121,-373340515,2013303346,-1073873294,-321835027,7466307,-60293635,-608639385,796131810,1541672979,-2002779411,-1447454118,-1362890561,1178835402,-1841674782,-1594946358,-222363181,495126182,-1376450899,-1090010660,236828663,146274934,-2085570564,1001914141,755042408,-2072308809,-788283529,-608730664,457041222,121468449,1107537211,-804822867,1573634662,-1274705305,1996948890,129959834,495169617,840087305,-2061127161,-2048523251,824178529,-2118480963,-1143856697,65604936,1773204185,2143518841,31172911,-941197638,-58817767,133177976,921106431,216368522,1960219704,-1261509872,2046297070,-323103995,-1678713330,463369883,721583153,989586999,-1116404910,2013143464,1006036221,2088091013,813963271,1005399690,2012929625,1963064997,1003812107,-1102875152,855771000,230557375,134349789,6373864,-1351605404,1414837039,374757710,776753728,-450094299,1348810308,1230185313,-1711195576,920444586,-1436713532,-384430367,-1660805638,1960030655,32048592,-1281298989,1854080467,-1244462615,97721607,20673769,-388778029,32048544,-1177337381,-586742317,248709609,97762106,22472937,-262685229,-1087568886,1103255489,32094979,122313733,1291834378,186664783,-1038400933,1498697551,-262291322,1158750645,1279822653,-444405853,347698460,33746565,1909273989,1528285213,1681344976,1413694802,124476775,231153909]}],[{"sector":1,"length":512,"data":[1661601752,2033946783,-1896037614,1297044038,259019129,-1018674194,-270032511,1196295047,-256949233,-1075838863,1297436163,-531479230,-1963936652,-2056776682,469192966,1214019590,-624727315,438565293,-1327672288,-2112400068,-1031635326,1214249472,1707027566,-1945771470,752863890,-397080801,916192550,-69863268,1089117426,1237702765,2002849672,8573669,953861396,405284936,935958751,587679779,-1879683562,-1979222516,1955361288,1965238107,-1704631181,559221589,683461679,617354299,-1864367356,1242470871,198655547,1625893801,1096841671,985596343,1983676895,-2139846788,1356760839,463480147,-366658725,-463052322,218164629,-251175787,538305382,-20552177,-590970433,11471281,-390186059,-2096663906,-367802161,97137680,-841583187,-1931635843,-879014067,-721801188,373094834,-1819255105,-764469583,1007086409,1837078583,-1532421407,-1457807348,-1568859965,295964370,285803281,-1627004256,708978329,-335939095,154382432,1457450944,-926987700,18711212,-274721009,-2146921003,252187707,-1089637309,-1529054408,709102173,616954859,-1660583820,-1694118853,-2116811448,-1022093232,-2085747433,-1301339463,-383163360,495171355,581830946,574447850,486900497,1664025130,-1061393730,1107899434,1204894523,302682174,-703982506,647233110,1340680344,-7944452,-343869465,-923140604,513485308,-855052273,1004539103,-1392108712,1851481654,8487160,-852321367,-567082976,477132290,15208639,-335057292,1212188976]},{"sector":2,"length":512,"data":[-1987667858,-404087526,181432401,2119176613,666116768,1241213929,1004606391,318708055,318874072,-101966430,2097680909,-2147272942,-797679369,297337666,1119437424,-1459222672,-1142472169,-1792608734,125649658,1112097290,436384827,-2096189278,704660070,-965256648,-1400345438,1616650465,1546651141,-1860894435,1174901018,-298057958,437983096,270725216,-546406118,555357722,34521370,-1599233524,140251386,-593226280,123755765,18694771,-1186809598,-1102961273,-421414342,188866765,-1959047897,1023732005,560473620,1219796991,874775925,-1986509055,1897154653,-942292984,1836496383,1168602364,129342061,-1501417108,-1876243708,839531317,101314552,60949261,-1081344795,-1609632310,-265724581,473235442,-219412757,-788616832,1278083681,496688381,646890580,251961940,1997030242,-973980800,-1088156961,1993423710,1119220301,1639951735,-1407360786,-528360749,-1541811424,-1555754064,41790844,-1058240394,249345537,1976643281,1171369120,-1947268878,-1603214384,737783685,-1108998718,-1937202517,-1197284672,-1604237220,2141499127,85307027,754788759,423041332,1358761274,-2074254342,-248009954,2063737754,168752770,145260187,-1446064376,-2077723358,530884631,2078712787,-759846799,-756517145,233257729,-1468277192,701194298,-1935830581,1216093668,1187382218,1277624571,-1625621522,661383171,116187384,-640634082,-1726020527,373613702,-1798700922,-736072141,-1113723132,-503934695,16816683,-372129485,413727457]},{"sector":3,"length":512,"data":[-67972623,89432144,-1808079985,-1384710389,496639722,1836185818,-1700463194,574939993,-994245312,-2127102706,44349636,-1051147081,1925450500,-47221739,-2139407420,-1862602872,-1237453306,-1257584119,169522517,-2030235115,-1576376416,-234086947,1611056781,-1103532790,-1593330794,1297187468,-1002519620,2133526002,805879047,2087253319,-200336480,-1350393190,1635761824,1651000828,1134757366,2079810551,-1642358108,1572373947,476355207,-641503382,2056976902,-1875358464,1048787239,-67329612,59203808,-1583623388,274394916,-655521826,1712887488,-1526143519,-583124824,104521158,-429807091,-206876858,-588571723,-2089493088,218487341,189194672,-1328250924,1843939439,-1700864065,-1602968865,-1895658512,1138101776,-1475063604,514067155,770519916,1549566039,-1090177140,-1326301135,1074656736,1778857760,-1610564376,147653286,-66952914,-1829306216,-1005780839,-108362480,1642791552,2009047485,-515849811,246013645,-588954058,-249398921,250011764,-1547012184,929801730,-1572661854,-2120057823,-127693405,-388765767,305939889,817911124,-385785091,1948782372,14740696,502060317,-706149630,788812664,680022817,-433437946,-2030107523,-397361012,-2134900877,70575425,721077744,-1988783641,-1688541192,-859492884,-1025277866,-14672763,1701990427,1629516659,2036689696,1661134880,58512239,543520110,157251106,1769304559,693426548,-2138995349,-680877321,-1831677780,-1086910345,-294152826,2129641372,1079165952,725993860]},{"sector":4,"length":512,"data":[-226068237,2135275971,-1088949477,-1632390994,-1212355491,-149524325,364240239,-1191337674,1806547266,2024606470,-42893715,1264324843,459036299,-535241983,2001891510,237044562,2139367943,-930408472,392594336,215506691,-1569013461,1506543272,-58637054,23129116,8741014,-2007753445,-2092046247,58200739,39255687,-1020190329,405749697,1650552405,-1438832276,1166501337,779122173,577725550,-486639870,-86069993,-1141894657,289660322,-378339681,150079300,-1891458618,-487068090,-828172458,-900856579,1631984997,1817393513,179417717,1346059776,1174487961,54415435,414925434,1308330308,94117942,1160646342,416303104,378222291,352054804,-1493429508,16584770,-61868358,156171278,-507691272,668074728,-873160066,653198276,905771007,-351638374,939434512,81595092,-1174132627,499064443,414320007,1168756920,-302933214,149621483,75507792,1787285609,1779857651,771989807,-1089982930,102940811,978447906,99768579,1593975491,-1575359614,772270983,-50397185,-268193544,538246975,1830858319,1832657519,1881156692,1632100255,-1322242387,1752490401,-1885163547,1894806194,1679272620,-1319657068,-1256297464,-110790797,1626311534,194705334,-1346468040,1668498748,319915070,716272274,-1249361200,-2117888913,1783841460,1373516173,102236513,1173971191,-115354622,-1602669500,596019353,-134159247,1366910240,-1976800901,1866659620,15702569,-1355752904,-1161991518,1158480418,1629728808,1102482074]},{"sector":5,"length":512,"data":[685244788,-897598,294928446,-563393019,-1691515261,594255087,1374831435,-1348156117,1199067383,1252958207,1201614966,-1121471517,-1354254231,-1077053631,1615695119,-1045560394,1201838501,-1474287687,-1568489429,-2141252835,-710889357,425365713,-1273233093,599720892,654371062,-827694944,-689168931,-668137778,-2024633600,1980629462,1527644683,-1833223302,196015978,-555485253,553327156,-561012031,-1267400132,-2118536144,-330645523,-3071884,1014295310,-1089047293,-272706966,1012591361,-1199589372,-1342044320,49205176,-1257948116,-527773505,-2037770808,-274384163,-150505942,-1515938916,-175717422,234766809,-24969186,-1529556231,581927584,575605626,-872742138,-1084608561,573807338,-458966829,-270733301,-1210961487,688265056,-842212937,89301197,-1237140810,1351415836,-105641537,-79267610,127660752,1558969047,1478158333,-696015140,490119873,-1560614681,-1103824263,78614513,-1700067212,101458233,582276937,-961414878,-107940146,351702012,-1323549558,268199875,-1560942978,1182951350,-533574550,-286645734,-1318160627,-1224775840,-2035084758,159762358,-1260069546,417912416,1478821000,-1782925222,-1280170300,224419766,314663420,-1052123732,1896995622,2085622579,1828502937,1006762607,656089250,616930115,-36898028,1717819491,1298557746,1634804556,42375952,-138183337,762651549,1497841947,714652271,1395605692,860486591,157487112,158917538,-303216113,352497687,-1684800631,1580603698,1735342048]},{"sector":6,"length":512,"data":[1148873070,1939128864,1652066185,291135853,2132560486,-214406271,761553376,142175315,1866683195,2013785700,-479676579,281238121,-2109016215,-1251802578,-1727623717,-2047108101,-975150568,-475796172,-1532541338,-1505296676,-811540257,1022822747,30155789,-1413048343,2106910976,838592010,183107262,133334761,-2051076491,993453687,-589776956,1011812747,1963622331,-352215543,1013181305,1423932934,216729660,-1897003541,1324049643,-1426607448,-979386613,1523105400,-599987405,-866821466,-1395856719,-3365249,-1705259466,455803195,-1160227124,269008588,485356482,1336387123,212261002,-906512145,-1877850970,-206926537,-480833159,-1166947736,-378601131,544069543,1330583821,124933152,1848141665,306146970,-146794430,1873189766,-1107268086,594821038,-1203811365,-306249557,-382453268,790807111,1311412985,25690702,-789870726,-33554419,61929724,67974642,-277605164,1281474373,275472036,27706466,2003245526,-412932959,1122732359,-11533790,-980459440,11145734,1324510566,-487961302,542552119,-1423936198,1320884957,888134369,-9159831,502396916,-39794434,-115014086,477236478,-706185807,-402736994,-1326772831,1257291347,1218505725,672083002,346620007,-1683043896,1237540455,-1016108698,1125164704,-239185605,-1815805871,1502965454,506587559,-195519454,1345902829,-2131924540,-1141813231,-1142219291,1548571327,-51928849,106736619,484817613,-433808289,34044833,-166499483,1879385792,-945797920]},{"sector":7,"length":512,"data":[-72433632,492830222,-653995937,1996479518,1663171848,1494792046,1664344832,1646682743,1117847068,-1275163701,1744180733,-1275229976,-927763126,-2086447282,1470388030,134622159,-1032384512,1440280850,1717990754,192226663,-742522832,1179659683,-86474007,1661004086,-1018109882,-1189869498,277608774,-1821114912,495946073,1451883078,-262960900,-486043594,-1458835973,-968291791,774832846,316420077,1430711343,-114345913,-110909324,73375535,-1900550081,1949282849,-189057737,-84022134,-582679823,-115429215,-349212082,-1085025136,1894382455,308380671,437390854,1997668822,101852368,326137304,133129756,-83160201,247141143,1964235842,321611805,1334689512,-2085565933,-273345596,333895168,-649207906,-1156370712,-332082014,185858656,931758115,594310966,2019927897,-536532678,1533484934,1959425393,50950270,1211035291,-217219664,-1164290804,1259513766,-568489671,-267185168,-215361225,-1083268624,-2023548448,150401153,1257249055,2009010810,3002197,1306803111,-2135549952,469385769,-1164405734,1291900694,-1312619400,-99199806,-384043810,-2115818646,-110641439,1323918365,-1696921853,1631915823,436305005,-522450723,1174531596,1083638957,-847057505,909565144,-2082198621,-1365146652,542926249,-1784631933,1366770155,191663681,666141517,-1042812834,-2086278152,529026,2114224244,-645783382,1400653133,-1190090644,1855704603,-2131962821,1187176940,-660074814,-331654375,551052850,85912679,-258915624]},{"sector":8,"length":512,"data":[1376677293,1379763549,536913664,-984184227,-1363059340,1524374286,1564827073,-995076349,1563027959,-397858295,-1586728735,-94150323,1670606425,1380812627,-647959311,-1641756054,991047169,-934442729,1232271401,35815469,-146251344,520657550,722176220,-1393833728,1348744403,-1329360051,-121271647,19438154,664915753,2053628157,1871307729,1394261778,-1159094122,-1785173854,-683315182,-2137661148,-336454121,1537485460,-860471916,-1221168107,-1753449973,-802087308,1192328712,1826482373,264402922,-268477463,-1831528990,-833951242,168241484,-1034093654,1883385454,-354810771,658229259,661032429,-376513075,-1472043461,69984878,-273256833,1130779724,947243110,-974982991,-336201258,2044727969,774767112,1973028702,1491080075,-1344446214,-1698634564,-2139632593,501951092,367781696,-1679065081,-1001690710,16715805,710673579,2013604398,-25676056,-1395615112,938951433,33832066,810627167,-1828557752,1430525998,1556168920,-245546792,-1937327044,2089207530,-248923192,1005584304,-1696059253,1409269100,1961148032,-1494723252,1967004215,1055851755,-508802625,-1203316498,469807372,1743326153,-988231324,1407437077,130643514,-352276840,-1708145450,-149201862,-366763370,542624027,443095271,-385878466,1230263562,1498696012,-2056376782,-1619131084,108951611,1444986626,461766929,-367830478,430938429,-1267657456,585598464,-1243892691,-140490264,800636163,-998049862,368705428,1947381360,-116475794,1291437570]},{"sector":9,"length":512,"data":[-116673609,1614938629,121073851,-1129489221,249221492,-1156719879,1746057764,-1639852000,-2097881051,-199397226,1227094976,-773314485,-614206220,-281021213,770934485,-1674778336,618160574,141119590,247911879,-276899029,1634100494,-739611531,-2028593066,337150342,-1022363123,-390858960,-1608251478,634049158,329932783,1441334078,-1523247359,-628708928,-989710264,-667557778,953483528,-1580721177,-2009873474,-65926778,755723121,-714640064,-1226208734,990295130,-1303701059,114715249,26989124,-753704591,-1569446294,-972364621,-956937392,-1093898111,2552668,973147878,1738874274,204965498,2013852015,2081679000,-346297531,-1827999399,1884694357,2584834,-83496041,-2070150873,-118969531,-991025154,-705691954,-244025427,2113846761,945267344,-1564854179,-183765693,979030495,873166018,-1034661413,-1011340992,452532489,997523352,-2018932730,-16223039,-1200948682,-2063179552,-963795158,-75097721,284700592,713342800,1083968373,455354624,-1703620878,210894828,1183393746,-27883012,537655947,-1735030654,16543952,1662840295,2091833973,-1451295575,-1457097599,-82780925,245957557,-290914044,-1350431053,-96095,-804862966,-1547531173,378084892,-272556514,888681919,400846186,1024557825,-1237423505,672248235,647025317,168832193,-1792958273,-1425011656,570529275,-722582979,1913051290,818617088,-2053906093,-579965029,882551149,55845812,1932029875,-1912579992,2109319444,225209441,1398024494]}]],[[{"sector":1,"length":512,"data":[1693484859,1728441368,755797818,-1582300123,-1237091013,1295170413,-155963782,-294462767,-1908381609,-1108339597,-546348511,-622627643,74636149,1160646895,2067418456,1038028232,-369466771,103581897,-1801426053,-259157821,2037587998,-1973002759,-1708903658,47394537,1784726843,1129524139,1641492794,-1856082872,1542832002,1656545781,141843083,375582270,-1008359809,-341051424,296445180,-1262242445,-172031573,-1819594896,1711925681,407760973,-1554356033,-811216851,-1595250787,-699454846,-43748068,-1610552538,-541808264,-1715532011,1996106465,-773199288,1049386006,-116296245,2047539547,-111281796,-1090479662,1198991232,-553381720,-552699430,1875099413,-87113210,-1089213682,-1645286445,-303513856,-515348804,-1976819600,-306045517,-982348163,728772456,1525852598,673869522,903402075,1995193345,-376152051,1864245505,2131819938,152268344,-1089702704,1916055395,-1208161932,287900163,-1845155625,1553995653,91493522,-1836932888,33753986,-603287776,-258333536,-356252022,-926626790,-1967921698,-501998196,-928074840,-2143146488,248543549,768130420,1759152874,-314198009,-1596108540,-1246560021,499027200,1947514268,-800037503,-2115500292,793312298,660935937,1271672448,-1984539927,-411006636,-233017287,323624000,94840824,-1904553851,1025890080,2134527411,1869865200,-1506230420,1195707844,-549904015,723523065,-952800346,1641591188,682903396,-1596254115,710149984,2130148108,-523429725,-129837046,1374670034]},{"sector":2,"length":512,"data":[436031488,-1600842596,-1635018138,1575571825,2107211827,86471169,1460954680,-91711328,985331793,2009166331,-335940032,-1069203965,-1095627386,553235192,-405701746,-5781506,-62391627,-1248180232,-1060293881,-115475896,-1564117568,547434464,1347590430,2123986500,1203036666,-432483741,845815239,-744461730,501347296,-1327087425,508723347,-65133345,182984226,-572397598,229060272,2012846805,1796899116,999570049,1135498784,1357399121,36178509,-1654514873,1086571444,-1593285864,-1962538093,-553790816,2112420731,1929250118,2042799244,-1929965552,-624814410,136886051,1092624553,-1325376447,-1139821883,-157253056,1287956388,-1634329265,-714370998,108067447,550494114,221716498,454837020,729847560,313026222,2147421888,859331642,960906037,1378764854,1295468341,-1836750703,1829767788,-1862647784,-1355087315,-1027669468,1941106201,1977402845,1493642949,777248688,-1118632909,-82812524,1629704888,-211392565,-364441756,377998669,291902485,-635660621,-48095715,1501628898,-301386178,-147881086,-1689120043,972549190,-1207596812,-918471948,1970245789,-584851984,-1098980280,1055984017,1043800607,652856594,30236800,-738258380,607957585,-1651396928,251512543,-463815165,28372696,1641914303,369556448,116966159,218482214,-1465294686,10824777,1102701165,2000980762,1994985748,1897115656,-351331065,1949913124,807436682,-1275550568,271116414,1373378298,167054992,17651412,-838325268,219154747]},{"sector":3,"length":512,"data":[974410190,-1097951954,-27342252,906008368,1317050164,-270239057,550768254,731429904,1734876147,1394320867,-13240087,-639041253,-17176320,-798047255,1675529728,-706298083,132642776,-659433450,-610401423,2047570950,1007153374,-2033310452,134648207,-839984393,-2077416778,2009333273,-202975182,33665254,1105148952,1627701012,-2013069082,-391622872,1748324108,739387616,-803982981,-1608663028,-1002741278,530473225,-30152326,158625517,1628260903,1945356067,1544420554,1195376400,1379481688,1480011335,1163134771,1132574547,-1262598322,-2113107920,894962423,-612328702,-743956384,1146663398,1485006987,1534432058,-1987269116,-399663056,80110483,401133771,-1372652324,502797588,-1186281573,-1359949360,182290948,1723245045,-1727109600,1134586845,1844854261,-623005718,1540425391,-409307452,-180117417,-1189453658,-841163561,287318190,-2003204095,-1224694265,-68012971,-1058271611,1001577745,-402976094,-588576522,-135074570,-925998612,-263073300,-182024037,16936832,-819846878,1228196262,-204050554,1174999374,-2043312952,-553788149,-1139136464,-1401985016,1976252570,1708189208,-937400128,1674455176,-1506261597,690149666,811697757,1233634893,-2103931514,-1595273487,-1592905502,-33465252,-195980416,-149550862,42417400,-10975545,79658302,-57935617,1015614906,1199818250,-2087670213,1964306622,181255397,-120524567,-1504672180,1003683575,2131624953,-958336152,-1965632519,-883970493,1241606818,1088368754]},{"sector":4,"length":512,"data":[1149849819,1264920375,-883906557,1255552541,-567678461,1408649914,1919344647,1972903866,1401341598,-1077838989,8509771,-269337261,-1089244131,1758129230,-638533666,1316351361,-1881393935,1319113939,65139096,-389683194,361556020,1980678080,-1442734471,-624025442,12992737,906353161,996085708,-403695425,652867536,1009814017,-108218911,-1709102843,1084736353,-2031374933,-502075431,1565932161,1216209415,-2085832770,-1967018882,-593994445,-1492653070,1911113900,1635650676,-2117050078,-371357696,-1985186049,-56530842,-1148382407,-318639876,495693759,2097340276,1379173154,561491039,460786174,1618441465,265606663,1980290688,1463932535,-335085449,-1716902787,1713403591,807459506,437028165,1272874253,-148701160,-749680542,-1466274288,1670393523,-1017347827,542780236,-1725518631,-1934624999,-502932010,-1962339310,1752416125,-337515532,-756469834,-1493906391,-1407484301,271904172,553864586,554310254,-2046773156,1736953926,1107229466,-173222215,-1174020951,-1476853501,1177912714,-445318852,1962734910,503135252,192216636,-12841806,-67632883,108331626,1307098878,-301733141,1006697580,-301697544,-165216335,-1300931841,159407584,-643393719,1557736475,-2062505232,638973295,2037710321,745547298,-938993600,-213880588,1686376664,1078349026,-442793228,-2013263014,1769472045,101888136,-2108198803,1069026,-602806773,-761473622,669462300,667350529,344852348,46361578,227867907,-231254954,-1069690238]},{"sector":5,"length":512,"data":[-273,34274311,302525989,1680173628,1927387908,1708185089,214988046,-2042062272,888637592,-185544690,-1636286139,1422345295,-1647971747,-904134562,-189139838,1139147710,1271943994,1578171663,-1987560434,-1866875158,62778366,99770897,1847428016,997067779,59258840,-1201957640,-779904527,-1809579628,-968780599,1507565321,-327766976,42086304,9438851,1014209781,1958971853,42641608,562698348,-1180058749,-1636338558,-412412274,-1765558114,813998184,-1602942246,249108574,-159670482,2067139878,1980579951,225212336,765547116,-665687058,-487060555,1672872018,-2056236327,1345123354,-1753038748,221269672,733800961,-452508824,776979786,1223826275,616035845,1009112064,-2086641401,-96551929,-115595264,-1425095928,354403080,-343472425,62062106,542498974,542221931,-1686106048,130036192,-23183546,481560260,-117980532,100292233,200823678,1742273094,-129683330,793086758,-2018632645,-356250251,-633953825,-298476053,944096487,-794640178,1484258524,611205613,1754314932,-1228972312,1856577798,393047987,1984914222,2112669498,1953401036,1002745706,-970052050,30408224,-1082615022,451571211,-973006804,-1202898755,-49944267,-1596244072,588711248,-188515365,-1554069012,-1333664930,-2079017717,286407558,521323612,-138439146,-621510015,674792952,-230176998,-1979981232,111398900,-804927706,586761723,-312480883,779894992,284589750,-72492044,-1628374030,193756647,-29769570,838008719]},{"sector":6,"length":512,"data":[-1949791278,735639514,2040199152,539682450,-177575990,-628890579,-1986311961,2119564549,114220073,-1155464952,-1311744246,58156044,-1039500794,-1057701366,603323071,598347270,-1985343466,-484163837,-293013260,-755511049,-551295709,-754777346,-1669589485,-341520152,-888207538,-1744295697,1587054336,483172419,886515002,-2071196336,1001045954,-20476156,48148899,-462179959,1253754132,116065332,-846880403,267291437,920074311,18083054,-659150790,-1001484350,-984718111,678548244,-1374288282,-371916921,1048772874,481155000,251950692,118583038,-185270798,-358510462,-1292495334,599980753,-234843347,-505144838,-99288065,-397068429,-1899549079,1634496706,1024363444,-1671610875,-502555371,1491864992,-1854816953,-417181086,1947787455,1064822534,172258815,1948044038,-250480617,-1257147149,-2003436073,2060460757,189196342,-161032891,-2075854746,66450165,-1141566475,-195663032,-788925822,2094947891,1919708666,85970431,544535635,-323082523,-2128036070,98840877,-977823975,-973942319,-1447770636,-204479568,-1593859083,-1374102893,16904201,-268646292,-2131818495,60835094,-564045604,-446308868,-287183135,2021086741,1110783204,-1810573344,-160069152,1341755596,503790471,-151816222,-282664197,-64780419,-827129823,-1897782019,786618492,-191560415,1081605128,663582190,6070286,-1019681789,973427734,1522960462,605570738,-1591281902,-1930975359,1754440656,781048966,-953513238,2735276,-1486599750]},{"sector":7,"length":512,"data":[1361551745,-1780701173,-1085161967,-636390923,-151273642,-1404758943,-1381757774,142121801,1362080888,-1306753556,1129229235,-1712940560,-2004214276,-526776278,1518781977,1124352163,-593354256,1928073977,1289493745,-80478679,-386286720,-503966860,-159151609,-763131655,-694667825,2129757155,-1077573560,1947234301,2123286536,-603000544,1075871462,-454311097,-2126204696,-1028490096,-1408823591,881629256,146181175,-2089606032,1139622266,490236160,563669234,-358776727,-1161375482,-1822348959,1644792319,1263749444,1227752833,539227793,-1214102611,476408366,1713921299,112253807,-745785922,-485744195,-864006757,552697617,1685025483,980706165,-203134833,-93075626,250856514,-2104286988,359885124,-244550225,-2091344809,-243260809,-1512705519,779484834,1700946252,-294909384,-1454104523,1884698485,-2029385627,-438152900,-18308384,-1941627531,-277157511,1763040460,-903995346,1962378545,-497387150,-218974970,1933917411,14761571,1151520262,-1070129973,67625646,348710574,1734467135,20958305,98641435,1860117558,-2092375507,-1858439965,2093158615,58723712,1863089207,555680928,93386736,1204886018,-317264457,842138272,-304369343,880930194,268507166,-1997216650,1989340677,-453153144,-610259557,2099104962,-360053421,937080578,-1736901221,447749794,-1867918526,1385169576,1942545666,-2021528664,2000023055,-456843,-40995692,-232590772,-1803535615,1302272885,2090791918,1621011466,-1564415743,587873260]},{"sector":8,"length":512,"data":[-109973531,1002859674,146709334,1960838517,-654122232,353567129,81762741,-1677411737,-520672862,1626082093,1689266741,274436918,27809365,-734303694,-514277515,-1499724352,181313771,1810534537,-468854518,-1360081192,-1708260508,-1007504200,-308482787,-318504722,-2009018678,-248373779,300793073,1569440477,44569279,2007428602,1641358900,-303568367,-1357652874,-639999041,65918147,1108650313,-915443498,-526996005,1089470186,994931203,-2017360,1372319738,1003952517,1968291456,-786578921,-1753293851,2079329333,2027725991,-884962229,887106420,1491153820,-509803935,-1512619353,-556335045,-1827453092,61228551,-1610372631,-1462695625,-72550444,-998023901,-1058482760,-2032628324,1952552913,1086401985,1998328618,-742405373,-1360439109,789008594,-663295341,-1442785056,-669170772,-569321424,117272389,1134771947,499909881,140504448,-2007495424,-493559298,-754404929,449282535,-1755970773,-39527223,1136482503,498784510,-1027933024,716886286,-1222701893,1129455034,542626746,1322480651,1030150498,-1325987846,-954351857,98593166,-583334131,-1059237115,1524433678,49939920,-1123110911,-52035152,-1512701427,-1592382715,1142598024,251580885,1048578442,1597245098,1493259979,-1074799494,-413226080,990966244,1930712788,-558202604,2062176278,-1126030249,-870365824,87016124,284909545,-510140728,-1640332957,-1642680202,-654075623,-1630814818,117253633,127808540,-1665070038,163075318,-739630537,-166985632]},{"sector":9,"length":512,"data":[205233629,-2132341525,-88610549,486419829,1112887236,1162616887,653153030,1459943921,1330576348,1172584270,-747735777,1738815343,-1015387794,1692699248,1488613494,1482977903,-105608621,1057653805,548119381,-2019587290,2142331244,-1346375149,-1084374662,369027469,-1996148033,553002634,406220141,-645993609,-642323220,1104730470,-956180180,-1111513955,1060838873,-656857383,-651165263,-647777342,119593240,151116271,-589379649,1946364736,1918241928,369821713,-910017024,-2110623129,-1014028544,1970598587,1123446386,1875139149,-559451040,-1690831820,554722948,1600648998,427566356,1108773976,-88154825,-335063849,-1149238680,-1863538554,-91868158,85302009,-972543593,-18370803,1965931151,-1305203962,-1622675775,-50421114,941025956,-99448693,-99812844,-99461072,234650378,-1350328281,1176367566,-142237674,-1609402129,-1609238652,-150222970,-1664030448,1310101084,-1934034480,-1037305582,-1057725139,-210270557,914276923,1318623868,-401381442,1287705371,1174880271,93968934,-1874496252,-506033620,827440775,-1322188482,2077122497,-1295599393,-134474578,284955261,-1143534852,-2018388484,48732851,-348090411,-1996891416,-733434181,1005879545,-1570276912,17141474,-1337117463,-996635542,-646204475,1468781232,407255948,-1539818957,-1475891194,1881907705,-28336348,-1701118298,-794621694,-395271908,-1594773816,-235406095,-1967524469,-1374953261,-236273109,-788625310,-1470573917,-1051385316,-914480702,-1089702654]}],[{"sector":1,"length":512,"data":[2111279029,-372460308,337793339,-1877968556,-947464064,-2046293025,184630770,-1352683878,1947798472,-43995366,-2481403,2027986614,-3015426,1121183643,-310332202,763308248,1700208679,-261635289,960523877,1706568131,183189329,-1019642494,-133026719,272266225,1944735520,567243363,544501865,332344940,-82264693,-724410008,-538838288,540700000,-31449085,148776150,386537563,-549313801,280953350,12570625,1956708660,1167074669,603980047,2122449964,1390562931,-1468641086,-153671628,-569333696,43730616,-2095013264,-1213907325,-781694737,-1323074566,469804216,-1145076362,207134699,-641418194,30265293,495888314,-1597123625,-747617264,496861675,1959515595,647499360,57898005,-562867672,-187312261,-1078215599,1344888748,1573059912,-616695545,-2042624912,3236610,-351231777,-2050614489,-132906773,-411756122,65894414,-915591634,-2042162924,340915977,1614199810,653901641,-488045690,1084858399,1166606814,462280872,1238941056,1523533942,1103132124,1920139269,-2140881017,-663479284,-1109917695,-1606055265,893270793,-1965121317,-1099857084,407520571,82188419,-907433367,1402881158,1394378549,-2035773281,429661568,-1698711171,717882749,537312008,-398796230,-1394210462,-673234880,-541144547,-270932361,-1325531516,-939902441,-196972017,82574847,385519358,-1342397682,-1209085484,1083979905,-289479441,1388606952,17145996,-978294626,-1467408022,1749494579,-939061092,115974370,1300987944]},{"sector":2,"length":512,"data":[-465209556,1663961541,580483139,202580486,1493426973,-248773646,1660636674,-266337169,-1157285623,-1021563216,1627490,885247244,1500902606,-720281900,-388157283,1802754841,-319714087,-16777360,-126476804,778480,486983745,898692099,292383303,1291274051,-2045725439,100730304,-1822390596,933055494,-2105688091,1130937006,1306117601,-570380579,-72852556,55111850,-1606155871,-1850826511,1578371311,1003348761,2114796536,2006578699,-620958966,686811937,-192091146,-1600043277,50535901,-2013423194,706093048,-1771134865,1594940063,1604484757,1187470600,650178220,-1403023756,1431350462,-1174637848,1964558288,453835503,292881181,-200575731,1068122227,16438877,1575616143,2131098127,1477018484,-2042761048,1024259907,221515195,-476537776,478310252,-1743092077,-708610333,-1149181156,248439436,-1594453002,-1091135549,-822423825,123784918,-789144826,754359809,1896580634,-324849426,-1465744677,66323797,-1084629666,-642956834,-327088674,-397789067,1982651968,-1868510680,-1464005201,791668669,413720827,-1245156995,1390559400,-140527941,520384525,-1519976186,-610069267,-163581713,284587583,276085951,182899379,11397780,-1351875559,-182651150,2102095189,905873185,1023767565,-1350149627,-133846285,1634135012,-1695156871,1239486795,-1582872972,-1493661593,-732263999,-1853573,727523957,832215519,1208793591,-159743303,519962417,-1695241318,-1613366331,216734323,-1081934276,-1651785528,432740477]},{"sector":3,"length":512,"data":[185051339,672663755,-945719846,412023581,102110779,913641004,-350430146,1366940749,439905591,53635460,-1128579974,1237448216,1809099341,-1191036032,1237168691,-1119646852,666119145,614072766,1914331905,-1607909536,1694137680,56818785,-394983206,-144443504,-1600135607,1957861915,-1208629524,-1568160872,-761094956,-1567825469,2020641739,-276182622,1555027072,270382227,-1555825660,976300617,-2044868474,2079954791,-40466909,-164634671,696251963,-1236107149,-1294183775,610831911,1864223392,332546081,1870092483,-1730382377,-521709453,-1025602005,1978325065,-321963718,1323822836,-1900962617,-1127069562,421202209,1488896294,78614373,-558888844,-1041134207,-1569853162,41741755,-1474672534,-115503242,40496510,-1997613496,731552329,-1407236856,1790707360,2145489080,1223213361,723226462,284128302,-1175518801,723320136,1018592319,-1085901501,-110700138,629209564,1344122774,61782188,281301087,1147257130,-408882093,1391049358,1234726674,245060725,-1310805643,1629892816,1639286400,-85391489,-1471398912,660185322,-1566012157,1382824872,1017670261,-1129824018,-1281189757,1118837185,1541873919,-533857035,-301027853,-352218844,699438644,-1778369825,-895294969,1895957856,-230013888,417896552,544518689,-944501054,1134619704,-326818675,-1832004597,-900661860,558950118,284195928,1098238467,2024852788,2019043010,1611225889,1656476209,1576793962,-1178863789,-290133480,595083277,-890663556,740467458]},{"sector":4,"length":512,"data":[1306336195,996860607,-759377349,-1677343208,-1407987758,-442614515,1791635377,925508982,-515947126,-755064988,-518158154,-184060894,61649207,1142371073,1622749945,-899102640,1701464450,-1054127817,37585656,1254947773,1421411477,1538313774,-1706698056,447407097,998337261,1654851056,60307663,-2116501521,-1967170304,-770853351,1353158373,-1102128986,1755380504,7361869,1555629616,433339855,-779076842,-1098842383,611588883,104467594,-1441929147,-466970381,381702902,-1403846575,1225966339,1679835422,-1698754625,-1147084817,-1628147988,456962046,282288247,-385763889,-938171963,-32900965,-278926925,132906878,403180860,1358203137,2119489746,-372310313,-2131951784,-2138542195,-369142807,1584582026,-785807695,900015049,94306880,-1878314516,5097792,44939448,1958700931,956713836,-2030247932,409518035,1389553584,-539352120,337929913,2004426357,-1257921586,1980348109,-782725121,-2115853802,877456174,1479542628,1974941572,-1475911720,-250000000,-269925470,-1327997377,-1196386046,536767209,-931010405,-727056184,1996487007,-1174369780,-2140281088,-1983905411,1354819725,822300684,804397210,12899236,-1529910460,-1560459244,-1037925941,1692375804,-1591206534,259363451,-1381748430,-1183759279,1251878049,-777856864,441971849,923385600,2032168772,938571119,-345476120,2029560421,1886217580,1919885535,1818849889,1148202943,1687311183,1859742995,1072964298,150935808,1717987652,1819632489,-378938252]},{"sector":5,"length":512,"data":[-1378089769,607027676,1682294502,1634496678,-620637925,1124536319,1347636559,1090601797,1132532068,1920159480,1427604439,-1526370462,-999571409,37692066,15942030,-453155202,1948741349,-328441538,1684106053,-1976794795,1233838342,1223503332,-1069848559,1723365310,-1100124302,-593349844,-667998109,-2065808595,30716846,-280327565,-371132414,-488102187,-1080386961,1947377641,290857774,2042817440,58207961,-994892518,1739083100,-1037251922,1217094446,1768846622,1752647377,-1549309985,-1581570058,-2041303689,1159727551,1834240344,772537952,-819699797,1193562127,1927959321,-468630151,-275680019,1833723783,-314330854,-555345362,1886793667,762981684,1349805061,58599097,1979942063,-1137131671,32236321,1036316625,-2079061994,2079839427,-331566426,-697052847,1946927770,-1928194013,-232672088,-442223179,-616220826,-28769625,473191583,309004293,-330482462,-302121613,-1911242755,-388810439,-843561726,364876728,-957542089,-555107896,998323713,-1325597192,-720737126,-718965189,-1897867985,-197684596,-771643159,-54630676,450691322,-323263776,1300911345,1560977196,-1327099464,1953952035,-674295758,-665532191,-663105275,-1000573356,-1120957557,-1656117721,469972432,1494327698,1589579456,-374219687,-383941729,1961483781,1004471360,-544272792,1824526600,-2144719951,-755208447,1442213728,-628717247,645135473,-371342198,1363808450,-370570000,872894939,160660237,-796946630,-1061459970,857653001,-873206211]},{"sector":6,"length":512,"data":[-960007956,-83154299,828975751,-1325693393,7220752,-626521333,-286221439,-606552887,600705143,266836710,1434457489,-1406776055,1391373184,-1407018074,1246316096,-97059456,1967585276,-1081426162,-2025668905,941812659,-1415277731,-947197770,-588346714,-1277654429,-1162414585,-1086727857,-940828081,-63456383,-380488903,873726035,-32677368,1356219403,1342880542,1155197422,670578254,-1373200306,-1225977028,-183223239,259580562,-18362100,-2065383996,1020448673,2019063291,333379555,2123185013,-593800270,539450326,826685221,-741151414,-749655664,1992045106,-1811342182,-1078132518,-315152147,-1263955247,377088771,1006675689,-667185589,497090719,935436544,1187405057,-780045063,-84289031,-247472828,1065716539,-2065267445,-660129420,-1476850111,-501357048,-1451884551,217681059,-1373093049,1081501218,-1649198409,1612692898,-1529997817,-1329155892,-453305049,44887274,-157575904,206612882,150768387,-1761858912,113416197,679854884,-2127754314,-41221683,80700224,-2125540121,-1161762567,1807804640,-163845936,-161089826,-808180789,-213390512,1127235815,-523108730,78717182,506587091,-801310717,-1999487864,501298548,31585028,-504691611,355750964,79592628,-1502280455,-2144799561,1176504052,1066199794,54466622,-341208088,950899807,-1764194778,-99577070,-1086100184,345240561,2168485,-1875621997,-34204179,553702644,1722466998,-98394001,387450274,1125912483,1589973202,1860326325,-229369291]},{"sector":7,"length":512,"data":[772239983,1495917117,-1864471257,-1023680492,-304276923,1444434092,-342545158,302477245,-982754021,-425180892,2055557523,-1739356557,1742322004,-2137372831,-369414081,245874793,239844177,1057342358,-867658088,1753317784,-1105977609,1850830850,561205471,-469237022,146784201,76921279,279959150,-11106705,-2033250130,475725653,52223807,18669307,215484103,402914303,-115549022,-1642221464,1010289939,363852248,-1709464837,-1415945379,-330057992,98710675,464031697,264997021,-2095762501,-1396299153,-1058051664,-431750984,-1397989290,1118195324,-1979623317,-805245170,-752433679,1078970529,1333140123,1623234816,-725738964,1172439836,1491161504,959582868,-84041033,-96750805,-266012116,-1177253698,-388825084,609344574,-1807748593,-150101447,-1560809491,990005294,1211081392,-1971832206,-268742421,-296095183,-74859978,-924976287,-77333662,-32843104,-2033842177,-11030417,1359604496,-180367104,-2074864105,-197839015,-1402138735,-486769415,-255185242,442955554,824967671,-1961690926,650442880,1812132005,270711560,-1086065389,-1388428003,1183431800,1286033180,478528059,-352065348,-398954893,1823468075,567844642,-1850800639,-838416424,-181588175,118624965,-642261727,-462219551,-641094329,-859660087,-48210296,1042087198,-1603062545,1023495925,-961088463,-1951479643,471308979,1545306815,1249000165,-1474294131,238336087,-1188971504,933680730,305442677,1591714640,439146752,42523701,-1259318037]},{"sector":8,"length":512,"data":[1452953308,1970501826,1308448067,988480146,-285736388,-1454049638,-1399127692,1692819678,1005977005,410590443,-493472577,-495070764,-1890114421,1650466301,152265571,-2029503247,1964117214,309306953,763012409,-774753488,37218885,544663605,1888212140,255594219,1610515553,-48567871,390088169,-1065128963,772580423,-1272917058,275695457,1848861044,1976132464,-179529199,987504835,771829728,-128173555,1095628794,-131185586,1879199906,418846724,-1538944781,564177404,1576998733,394645830,1275069338,-1302189235,2011496707,-253601715,-1420584957,1753667398,-41410177,988233762,-965996960,-2024095807,1558431441,-1052871662,-31262485,-499807641,1747714510,1744901902,-750285567,876873469,-1262439156,-922477500,-2002489871,1313499161,2116742995,-542051545,-1744912408,667566139,-2017138950,-347005571,173730252,-2027933524,2133950330,-2137925320,111321046,-150953286,379427298,1078638604,-799930231,1869472257,2140228361,907560603,-1564867297,1548295394,1683751421,1445443444,-141619006,-1941534533,213890848,324614750,-172131711,488220826,-1568594428,1361577415,887797674,-1542666541,-1925463084,-790489995,-937829522,533228551,-922953880,-925498447,-599898648,-1040127099,-589042932,-1938574732,-334667518,100628032,-1666753062,1482170750,-732054301,1815653446,925154057,-1949624863,-619857403,1576993242,-372609617,124522421,-616796756,-2050614222,562565851,1310077997,-783154130,1693170464,2117086142]},{"sector":9,"length":512,"data":[-1693195723,988699910,-2132246319,29149963,-398788913,-939129190,-860650856,-15729940,-2131345236,1304121789,-2081679755,229760392,146491619,-1375368711,132839954,337793551,1085985637,369456777,1286321680,911862209,-1221697997,1662181824,-936631637,-535241113,1426162203,-479151433,-234822154,-1157490380,1506843751,-368286968,-1508365066,-1498889912,1962393648,-1721739097,1583663370,49135630,2066792425,796220590,51704927,-1340686220,559147096,1812703454,194891594,1357512152,-875830395,-859241297,1013497121,863745207,-458106158,1725867962,861778240,-2135825694,-1113127739,-1134720228,950025980,1349232800,-353266429,24607237,-326570980,-1438598917,-56366853,-1401121810,50343103,612413398,-1754119236,-1206443382,-1695316126,1760232733,1173451267,-375377041,-507070431,968360358,47953744,1886497486,-1209988180,-1303604377,2104935924,-1605065698,1308099201,184606697,9300424,-2043738563,1084180186,-1450830040,-2023272345,-1596882474,2112368360,-811571523,-1403723685,1324667871,-1594696450,626523238,-134794996,-400755265,501656500,-297258295,-2036454646,-1872915109,1342565412,743150736,-1158809218,650089451,-169447537,2062133818,2074131711,-1200641466,1482588340,-453370485,-324821333,-1556669256,1370602128,1221783934,-1332666919,867739930,1080037808,-1588883162,160245238,-371371296,1875112981,-89980736,1963375095,186910898,-1238368530,-1195135813,-1203551330,-1377057016,870413328,-1335903642]}]],[[{"sector":1,"length":512,"data":[1177879484,1089401241,2134372662,-25541065,-2117438182,2115606390,2113946604,68220576,-85722461,-829894368,-184438534,29351560,171779540,3699459,235331060,-1551891996,705127302,163251911,599305284,992646817,1048776760,-2131757333,-1531225687,50653832,1322117707,836350008,-1182097037,278007808,-905506443,272326695,-276794172,1871507712,376758359,-34668306,1182049390,654772316,745865820,-348471194,-1364168137,1434708482,-1123876794,83695357,1066985983,9556055,829162867,-89438057,-1901046979,232520709,-1562702103,-488110312,55976147,-42664774,-35431904,-2028111231,-9017930,-133052774,1576969211,238500020,-335323094,-118748422,1975659719,-674757082,-389134862,-1312686783,1035941351,46115868,1088479880,-1965591292,-972632752,2044838695,-205965377,-2088292236,482138300,2061376240,-1092065854,-1040419368,1019311608,-1056652848,37195264,-58267455,-121739262,2067841664,58539766,66654179,1844071912,1575797756,-101946993,2013443658,1627585102,-23643527,76006504,1480077368,-83510040,942864945,-100069578,-735512013,805348538,10803717,-2142404511,1546044129,-778701741,1226830964,565313484,-1633427245,1046487497,1128188,367049952,-1968921409,1179260549,230820111,-2084677097,-408305901,1241639167,1349517496,-1722245987,123778160,1001697028,-407566488,495362304,-1838510031,781403783,34935837,-84140880,934021273,-752482912,218945746,-691864468,1313820164]},{"sector":2,"length":512,"data":[101121861,1196312915,1225344332,-154323209,-802751482,1633906540,543963043,-212541400,383860922,594440804,694891895,1071195079,784881415,1241376822,2135834380,1195984636,1398362926,1430385422,-12234924,1128618231,1413562926,1128744963,1174404104,1970032672,1699221619,2085481842,1850286242,-1543737533,1292071582,1124286788,-1890124729,-632226595,821251332,1274823957,403661172,35304100,-352749577,-1174295020,-1333023210,1252923555,886956203,2003762020,-82773067,-1030575263,-1191828382,-1517645937,-652843334,437684510,2147347998,451193380,-639106903,-1512652803,-1701740355,-608297049,-608185353,972202226,-590091786,-71295544,-769798418,-2100626485,-621994514,-755534100,-324042501,-1452118277,234583030,244546487,413797883,1727752212,-608758620,2061662614,2072440315,-2114225925,1588482860,2092113924,-1400453335,592571327,850191864,-1224774532,-2017682698,-309592208,184551685,1371160737,-1524536038,475128593,-19692753,-121080566,-134196026,-2121928163,-1063059793,-1603412723,-1022442817,-1975821568,-737499803,-809523523,-487455980,-321779996,-1702952482,646973832,1616210951,111095634,949565954,-219674885,483147269,1445994370,-140509040,1267665858,244227779,-302939663,-121547451,1074323172,1910010112,-507333404,-1587990938,1383381230,920829804,-1185912567,1238852270,559763520,1159586540,-1655432262,349681728,43746179,586266625,1097916,1410027783,-516947420,106935332,992028713]},{"sector":3,"length":512,"data":[-703836952,-422805020,-2011723186,-2114777821,-1270310199,-2116486214,263257006,-183985192,-1700670608,-1529215591,-532365000,-427312703,2015225363,1953359410,-435755402,568387124,1254549075,-432609569,-432437375,-1271084992,-329893376,1605328867,-146864444,-1031004644,308007075,-1380426798,90165696,102691822,-664920576,413537246,1347822976,-1504146880,-443468890,-585378784,1621159467,-2023696378,1004014338,500705408,-668499952,7777574,373655134,1661610656,92138037,-1131334296,1032540333,744499824,-1193710793,-33481538,-1598393076,-1346779505,-324768546,1955041582,2001598800,892850359,-779219525,2105921809,-1042349338,82197478,-435977282,-335092156,-346717696,2063672160,1501051733,1013055975,-406724860,-83761315,87836942,921133543,321913125,1709656122,-1156972057,-412455395,-234866060,-471726641,1430281997,1023022568,-386930677,-503243564,-494912897,-101201801,-1411250372,1035231038,-501556473,-1527739903,-988957751,1129223687,-544090077,89170669,-319139078,1425691628,-2099806982,-1016152145,-1776270286,-317929710,345670195,1163299592,860304521,-844640792,-275196993,-1953905408,854379317,-596238315,1605618783,-1050694581,2080965982,637924455,-1972681592,1544632308,-1730597375,1129317632,-1330341632,-1653350263,646825510,52677026,-637906716,-2141759660,579701693,-714159437,-237907200,497122774,-1329513612,-669523965,810659681,-2117059967,-1309958025,-1211003457,-7960483,348254469]},{"sector":4,"length":512,"data":[269870594,-1394640341,-1276198826,1191811808,1173059280,1996953117,736822223,-117260182,-121305623,-1596755966,1155451946,19530144,-2023736005,1638776767,1657262546,-303287287,1298731316,-438285311,321481452,-1994308038,-1043839200,-1178516756,2018921765,-516533436,-2033456355,1448432773,133628440,2114109761,1967284318,1616327987,-1604968801,684554013,306182920,-1715459680,-338712834,1967471710,564321370,728905742,1923889858,-1397126600,-1376370057,-1391762889,-1160955537,-1593601901,44437622,-1381564956,1875080638,-300939966,215421442,-1203153744,336155802,-468362671,-1136179968,261932554,-350900740,1665192721,1715339428,-453381215,87950859,-903804300,787857204,906294950,1324229347,-635701684,402242989,851971584,-1998939883,990811318,2039760770,-1586104808,279115637,-2061502708,979108293,-2134211701,-625428867,-1596640907,-759557941,45061055,248400880,1151399632,-989663680,-1246873086,-1457912612,-1074984878,-1340029803,-8326638,1349993615,-1315766948,-1373731501,552493445,-219415300,-1005927179,-119499639,-810603169,-2080614775,-1958578486,1210468344,1004730096,2012961046,-1263148492,1841759650,66770168,1388215032,-273599516,-1785999408,-136773238,-1108473922,-602147066,-19827252,7544914,-142934255,-1957327210,1458370367,-150702453,309603526,1587091652,-100169182,-276255990,-49896953,-336670454,511109652,126478987,-202249597,34274306,189712011,-444608630,-1883087522,603850439]},{"sector":5,"length":512,"data":[-94617856,-1325784062,1453159299,1591223263,-96482544,-1955657249,-1243261641,13565054,-969148511,942217846,-1594345896,786572288,211286135,-273501874,-1377178176,-957994240,-267452561,-1796608395,974147328,1635031622,-2014047002,-1269164823,-270163200,-737293602,-1181743162,988509661,-521364528,-351888615,-1676264946,238172677,-1891065924,1200635345,-452402770,282414469,-16666666,125105675,-1080821,301949263,287936118,99432233,923956577,132564748,-50343931,-1070398741,-443851169,-2059136378,-645921536,-944978988,-142010553,-150078415,-296252715,-523040690,-401389678,1141887128,-305410559,-897567097,1197382858,-896613415,288005111,-273208577,1461644050,65977809,669636611,1910361568,-27331842,1076332490,-1909377,-655032754,-1690744376,627168448,-1261997577,460157175,-1210888722,708334026,-172592154,-70006142,29325607,-11480506,-485946762,1354938585,670937576,-3081143,906629625,-3587190,921227454,-1949809784,-275492921,-2082170246,-784915073,118595055,256386291,-360248589,-558431245,-830555202,-947899257,-2126317441,-1937758269,1586098502,1237455127,-426252575,-1338851188,1148616027,1057084421,2123093019,-1133787145,406791645,-281890241,372906078,-410849283,-1600318541,-298937354,-337129056,-1091130818,737192574,-1027784457,-587886452,-1980526527,-284446082,-1027574339,1163887619,-1388796221,54359992,-100878652,-2130497047,-340863362,-1087212208,1723731813,1713676989]},{"sector":6,"length":512,"data":[-357613981,105966408,-1175979037,310808485,513663995,-1744708403,-1099825962,679275281,448517181,1037197001,-586058400,-455547694,1091101910,-939994868,-840473631,2090074828,-735063858,236012246,-1009333828,2139848673,1023894462,-774799919,-1794542236,-352262608,-75635304,-1953636880,-489559210,-634865950,1528643681,-1565987882,-689187085,1162772195,244659499,-504868911,-734404151,-1047773798,216785302,-504153830,1143352858,-654683677,-597632322,-2078297248,-1665146887,-1956614673,-1142400558,627794027,-1743528526,269703570,-1879929837,-572859058,-1415372268,1960670761,1112990682,1796596898,36274175,30861568,-567553010,1828746181,1104647258,26423637,1757124506,129168902,59131102,1117946187,1557290132,1592853037,-335589553,567328804,-2122595625,-754551570,-596251410,275713229,1172942294,-380503772,-1115822123,-2001217641,-1913865229,724168132,-1932664346,381440883,-128836666,500265730,-303440273,-632882952,-1330233951,82772922,-439939854,1767398715,-893975725,-445849743,-375359910,-802296639,-1958328383,1642549999,-403791064,233431238,-436898802,-29161218,1514723883,1492916972,-584726989,-1510158603,-704755705,1911083698,1092743638,-1984900048,-246961655,150754935,-2066211972,517397991,-670455493,-18642994,-479296760,124882405,-58603426,-455335370,1375848178,25993092,-1513639281,1967829192,1158028690,2053246731,-2030703771,-1415936970,-81572646,695069862,-778376101,860646005]},{"sector":7,"length":512,"data":[566376304,-974550279,-1659460074,-1091199981,-407012620,-570227186,-1692235849,910373130,739891182,620506151,-793249484,244381962,-1152452806,972074382,-256638489,62983751,166686959,-134809634,1745645729,342945015,-2088297746,-805887753,-1308202476,-1305469644,-831730754,-742467510,-784161928,1117404115,454128336,-1845847887,775919741,-1741937702,-395904361,-206437047,-448978880,393740287,-472786805,1034420014,-1811131896,-469762296,-2130029816,-1828105206,692267017,2134391089,1646278673,1867391097,1174236487,1936617283,-193500043,-2081848577,-1835887717,-2897782,-974877953,-807482387,-993662582,-557391911,-994928189,-704398387,-132264038,-1853956731,-592869882,1914008978,-1230082198,-1749649882,62864160,-187290569,1308153425,587249175,-153358449,-527497921,-198171661,-200171169,-185581208,-1139063293,121657934,1734463665,1540192689,1492058992,-959647326,-196706785,480346658,-791768937,-133600306,-603807538,-186850787,-1696005195,980475562,-235233049,-221893663,-931755532,-191498123,546257263,-772473246,-7404145,-1093223436,-125348232,1882766968,-263109807,-842938904,977322292,495763895,-1044321806,-194857358,-1197240272,-1027089206,233074305,-155246040,510527987,-654842775,1760683023,1282796044,1283335082,1988821604,-236469020,1983640040,70809310,880716158,887879219,1569645884,-856357764,1562551142,-393341288,-1135205884,920184849,582431168,-864040929,-1645326692,-645920790]},{"sector":8,"length":512,"data":[-289404784,-802591674,1091312628,74305768,1759162352,-588206257,1005640568,-260132921,-218424914,1338392628,805875640,1055733536,-558906135,1371913536,1788194736,-1808757731,1185516288,-290404696,1622203025,1577124259,-1230952957,-11450723,1932056307,1525227552,-287632383,691004642,-329371700,1237286950,1309044763,-1253460502,567845246,172885730,1223944418,-318903631,-335012113,-2032467469,961308140,309848820,-1964081969,860806486,1948250562,-153274333,-20964648,-158820160,-634553962,1592153146,973421275,987494643,520085190,1459846261,-442046890,1345356092,-1096945494,1884316435,-414705540,310246970,1626143880,-505559517,-242221327,1059318006,2131050364,1978011932,-337194314,1190746410,-1814114338,-1126255674,-31886629,2015497855,1508040453,2113713160,530489600,-1244131005,148834044,-943065813,-1013667423,-1447972126,-999443411,420131898,890151726,46243639,79773544,966300608,-1074535783,317446915,1749480411,59242669,84149252,1547435525,-33159428,-55019524,-50460921,-117949682,134765628,-7865090,17039608,-15990248,1639935,52037133,3147534,35324168,167640847,168820764,185664285,1058988081,85066359,101908511,839324918,568393727,571020546,587863552,1333597955,618672907,-274524480,885008064,666827744,700459200,901839855,-1094702368,750791663,-69192000,784346558,-1058066496,981481408,243284144,981481900,998304515,1010483328,1024372864]},{"sector":9,"length":512,"data":[1040428160,1073695616,1920561264,-1122277527,1461744744,288962605,1711559844,-654655559,-1027420733,466717406,-1819113652,76267849,539293368,1268180757,-219709971,938801956,-68486370,619481031,1268296290,-2117517437,-1945831188,-638760866,-54176755,1877029622,404192895,51871428,64184581,-44873349,-214383985,2139618351,1979953487,-1898935212,-1879405120,-1215431844,-1886707712,-1954586200,-199216703,-1752455693,-292210688,619755227,-67815856,-975166226,410450847,82411611,-371226809,18729815,1279117822,-983155719,503619577,-1946025316,453618904,-1346387521,-405669333,-2132035187,433894819,-305591624,1959590892,-63505378,-580426458,81749648,-1974650703,1341474324,-1750006005,-120161060,-211471222,-1281887836,997587585,980877991,-571800860,1021595133,1254077766,-1472339355,880279550,-661993218,-523107407,-952449750,-529326392,1324884996,-2135799413,-3744035,12674041,225762058,1057156739,1976303320,1686783496,2147462558,-741504508,-2131819800,393349373,149782598,251133495,-852832540,-70116214,-485825537,1967827949,-1320069478,710852368,-17713,-1918833965,2141311167,-2147435535,93051179,1004130290,50492102,580824003,-1810886133,-620396574,-1616121025,-788463629,48923557,1509185161,-1369520646,-1407558002,-838970468,-571041519,-544525313,-838927733,263530105,-140528211,1948152568,-833448425,-1190772851,891262811,-2132192511,-1479848447,-788024010,-469706761,-1581567883]}],[{"sector":1,"length":512,"data":[2040510957,-410984466,-888244865,1193145657,-1284153285,94110385,-1627684373,-881540871,1509878657,528708392,688435487,237275872,-1617043524,-106607092,129041868,-595560727,1456063775,1003957238,133134291,-890697993,785935465,-1617370230,-1879372563,718081197,-878755095,62532551,1914621351,1931539733,1429773584,-16795926,1018488906,-1229719297,-621324281,544468522,26788250,-459797643,-351788305,1012767092,-288175648,-930615262,-606532942,-1613784877,1352549342,-953038198,-141850057,-1267535061,1930465598,1829815338,-829710341,-1054090761,-939326349,-2065476104,-92240464,1979836367,-1259745018,2144317649,399018916,-1899983856,-359528488,551001944,-290902366,1409198169,-1204893239,2113624199,1971963702,1524457906,1442600790,1051158456,722470344,-435259697,831332637,-983646646,-1155967394,737084690,-372722448,1725181232,1695844406,-1992454698,-87769545,-1639974951,-1517568255,1711698716,1846958298,-1916505091,766049832,542318594,-278919334,-1551425313,1061383428,1296369899,2052610125,-416219466,-1692302807,678068009,-1133189300,689365513,-1192191046,326663552,908662544,-2115106911,286375179,-469638214,-1857003878,2143289576,-851397429,1409056871,24409405,-228990392,-469044670,1374471051,1290958395,1995623226,-319667847,-743771530,-875384972,-594868353,73370422,618415028,-1001422264,-435881238,135200343,1152648930,-141506398,1473016942,-1058388532,1186254040,-1415711300,62827456]},{"sector":2,"length":512,"data":[1977567199,55110312,1397475819,-354673280,-1125364608,1087233056,-81751988,822625797,-825092110,245029681,-684412925,-2066556195,-1056707208,-1771973869,-2076344214,1299249673,2079410304,1175129315,-938118130,184039220,28107740,1452448617,-60189678,-125188305,481937059,1033309435,-132210041,-5312336,653326372,-1828012252,1461593273,1871447702,-2018244856,12719565,2092725999,-1273924560,-1947801208,2146895060,-338212990,-1242120095,1752729460,235935093,-391923966,989956094,-2134376107,-2094725704,-257879854,-569639745,-1777434864,577025461,2013951994,-1159025417,-434499312,-1756308883,251126001,-83954456,45742902,-419488266,871617030,316362818,1813253573,-1106842481,59817935,-330752600,98309398,61476153,-1478276563,-386269904,-294259650,2124895106,-1564792081,76413535,1257709242,1424882956,-549173877,1158358752,-1609862074,-1033967476,-335578150,887678686,1325311651,-1465658365,977528067,1832774392,-890540003,417461926,-985073540,-42255112,1010237430,607794885,1269122051,-1128574616,-1083118773,28877889,-1973608373,-325220533,-1566536629,-2010744790,-208407738,529412095,186927521,-467382010,940873351,-1780376911,127891316,-1585648793,-169283099,-1695033256,-208750215,1443983361,-50761736,-1690582794,276699519,1938914172,-1319164151,-725001571,1131804632,-1257772576,-2102126967,-184880098,-920914195,405636595,-205202848,1516304034,16294655,410781823,1989795288,-759574766]},{"sector":3,"length":512,"data":[-562812489,1302665731,1384562690,-582656300,133928196,-33851584,-246021917,-324000957,1040673755,210765531,-1990869900,-48454651,1623375957,-1518330154,-2081125374,418785078,-1779399619,1157745641,-1136318018,136704891,-235073150,2146837809,621313031,-128289036,-1916229658,-311511162,-908948229,-506856259,1744627409,-1442093085,-1189732245,-1134501208,-2037838943,-1881343007,2012822488,-637105104,-689026834,-286708463,-1952399383,767266296,828704005,-1512182435,1947062503,-2041784971,-1484769247,1310842513,-104366959,-805539702,-1643716598,185075177,-235605759,1173637889,304325344,1273688821,374599925,-17759324,989911473,1929617926,587256055,2094327566,317816333,-65927037,-405079950,-34432350,-1751513616,189031167,1855453763,-102563391,-1369698665,-420614163,-1236466357,1573294338,1052768867,-402567505,-1997784893,-2109151110,1441153630,242385999,-1053719312,-58439070,-1635498069,-1969010873,861670969,2006058731,-1473202048,1816036770,-1015415066,61996670,-299767853,2078115271,-960890637,-1826353275,-22026241,1893627141,-1965388764,1574478134,-1799990951,339163035,932767543,370949175,266292718,-1543850210,-1840218280,812041468,567099391,-527907706,443679548,376898620,-1560674626,-1608071538,-63176690,1007748592,-1227260680,2031390937,2092894496,1732033888,1110979217,-1437114869,67137583,1402998528,1071701756,-169846589,4194086,-276244728,-1871029796,581089797,-770666289,572559752]},{"sector":4,"length":512,"data":[1612775330,-813694473,479261126,337052153,359997695,570990795,-571771392,354954461,1510175281,-705119360,-33127737,-454297202,52593278,-1260388315,906373247,-34030208,249823521,-276461329,468187143,1029671322,-1104570624,400949312,-241431552,-173869676,244980203,619008376,-438302849,1053708959,115330603,8751788,1673592574,-1493950845,-1292646527,585738819,-1191926296,-50466144,-1605352002,-2013330507,661446201,-604671896,-312461241,-75317019,-81372465,188850443,1523384051,-1112369092,578035624,-421269070,-1610057731,-52034637,104586987,398915752,-804239900,1258413803,1006011102,-1039957260,-1513480865,-96642820,460529916,-1196313423,-53278717,-390119412,180293238,-605519693,99867577,1643876920,1476137317,417378768,49533344,-771648056,-1785745682,-103153686,-1122846435,-322423061,-924638819,-73276130,-167835210,-2095841052,131776784,-1373970249,211516929,-1233715692,1246885114,-1022604618,-204452588,2071955080,-200807657,-386013449,-1609963856,-403555590,-1542819328,-568399622,-135405697,-55836347,916465980,1184504889,-1350655885,-161434648,1492700669,176078870,-966690308,-1248416890,1025107456,726054736,-61804778,118949138,604170141,-1976367850,-1978265511,59150470,-784638441,-1358940970,74972377,-196577772,-1382924998,1619522862,1341845392,-100369093,-67634431,-1344064646,-878962973,1532305798,-50855794,-816122395,-1193571620,1136520473,-1899974389,-554195328]},{"sector":5,"length":512,"data":[1876851669,-703640829,-1547900170,2126658550,46394390,1039546606,-1058346028,-1061422429,-284789012,-399115584,-443769606,-347884890,488483880,364831432,-1054139433,-311034635,-602863462,-654637274,-841468143,1590411161,1584383610,-1088136078,268218727,-1694428774,610705957,-54502255,1815770370,270288312,-1825698187,-169152319,-1708891825,520078519,-1546794108,-1747325491,117948054,-1054481401,-1079780069,-116165375,-1573381460,1586419616,-267677685,-1479280875,-1600935246,1716611349,-749323275,-142474737,989558779,-341803358,1936583228,829793157,1997808272,-910420443,-2008555111,-186133613,-1888040103,771118767,875264766,695408434,-218113961,-1255572100,486600917,-356789830,1070393991,53012797,947655740,514752029,141886460,350814489,77641708,62278517,130428165,-1196986210,-1323320251,104596165,-660256277,-201204616,-1072859897,-1461109874,812977903,-1822148016,1009822796,1988757370,-298419318,265057513,-1596841867,-954924207,-598698016,230697787,-376028762,1073344319,729620705,138150338,-1092130885,522774004,-286637370,1963538519,-596152047,-718410824,1416956651,1255790435,62518745,-1462165646,2016677808,2080275249,-627292291,1594323418,1957811428,-298588956,195591592,12210037,250299066,1103688384,-515374921,115465859,-298196595,229452521,14295925,1525028394,147053384,-469505696,-284370660,1091484462,1589827694,1983110917,680904480,828444535,989974217,-188508223]},{"sector":6,"length":512,"data":[-1259762413,-1687219772,-2018540335,947433837,805426169,-851940806,-1363086867,-1009520368,569786576,501301365,14775668,-1509023654,-864921735,-399189827,1009382270,-1861782254,-132823553,322707179,1621170805,1645084612,-1341033436,946823938,160651057,517170391,572201193,297575421,486079224,-136487811,563785370,-388179959,-152038865,985410860,61019371,-1794774299,-1818062155,-1224801638,-1196032905,2065537657,402949848,43102639,-1191457807,205962390,170795772,-130938778,-321676602,-1169250622,147498722,-75742636,-443416925,-1173292104,-1628068933,-1172928202,-589821603,1355742547,672243965,-1912819829,1344756732,-654851238,1089957936,42854452,1828676013,1794015964,-354455356,204534973,-650656556,1677170,-198993222,-804141044,172919743,-1056549180,869122203,117203616,1381061447,-184592554,-1101724130,-561107801,-16477360,1746831587,-389969148,1772224694,2028520184,1794678266,1283741700,352285700,1648280590,197561348,-7396873,123598383,1516134175,-2132190375,1798228824,-1073742978,892582009,-1064558131,695523339,-1678380759,-67109059,-31492853,1678165990,-99607840,-140175927,-655295565,9763733,-1146798133,649726538,1204443656,166309831,-1732770305,-1328808210,-167206537,-386284573,1945998304,-1007677278,-1470947838,-52055292,1829131705,1892613924,-284299429,-1283708709,-1486035237,-1207834929,-1260559881,-1440955510,-754456803,-150044976,-1189293830,-269022473,-572009540]},{"sector":7,"length":512,"data":[-15606528,-505285173,-990537153,33967754,-1668284914,611257914,1586110071,-1457651192,507149539,-401476754,-153544856,1525174364,683174655,-1566232550,316234824,1694236466,-141103624,495527453,-1822578864,1135207377,844855543,-2067741887,-899781158,-905051923,-899414151,-903355940,-905058802,-1962999,142510839,-549793794,3823223,1853064877,1721682981,-1002779600,983275791,1014213414,1216169760,-2000169822,1136540734,646497534,-389808592,2017066661,-1609487473,121436410,-401973542,-343295026,-343807994,658187164,871919422,-1157370917,1751757144,-1325158906,1239288842,1145506744,227119149,366812553,1056827083,600801279,975424968,-888164224,364381917,-800209931,-1307135369,401567424,112024069,495482851,1373365485,-1060954440,76506386,-1828419517,152526880,889783234,-1752860660,122064116,-806816136,-1085247745,12206191,663430663,-775744173,864716980,-11993999,1295876332,-202437158,-1000925249,519844318,-629871726,739384814,990134732,-1220945351,-1459360555,-323191267,-298840251,-99508822,1672589843,-1254819187,56685678,-1585465550,-1495419264,38618602,1728592964,1022901368,1010563022,648150795,121663262,65883451,-117407931,508018289,-1059512194,-1900214280,1761864196,-2108750194,1130569090,-237987113,-654800383,1520431508,2080800723,192309775,-390123347,-1813381506,-475243096,696457150,936961491,-1517747022,-1946830137,105233211,-100274880,2105767043,2079758750]},{"sector":8,"length":512,"data":[-142999641,-108657801,246605508,-331827159,604356844,605939549,97683398,823561037,1035281007,384290200,870856875,652768733,1994922017,-1783848576,855425249,-54232320,1795908719,599993972,-1008510733,-387973957,1006804381,-2123744191,714056600,2039708512,1838405115,1750308348,883050586,654399456,976777464,1985269128,-523374566,-529155570,282180336,-974063098,-396829477,-1448283442,1301323383,-674114452,-285216199,-1720217782,1451879160,572782060,-169413136,283816680,-419712300,99516923,646289931,-264585259,-223021053,-211803093,-6089492,-759845778,966869931,1572984183,-1451298943,-890770574,-824304813,-1093909870,-1818096892,2010168502,332520616,-48807368,950615300,-2234279,-539037696,292831,1166489106,-166284364,-166295293,392326847,-388041152,-955161708,-1032934029,-1744442593,1461544,-2141320486,-1268582779,-627383273,362962409,1180202512,92937255,-1223793935,-17980611,-417152905,1036748636,952351792,1858669833,2067381943,-948241850,-1316301130,-1042491325,1145422394,-1311062912,308017022,-117582941,-1847846412,1405047452,-306285576,889524556,-985351912,-1943611939,-1920672258,-1566592714,276422146,731068380,1762423355,-399129132,1981677559,-533320589,677539968,-259506784,1172477812,842771130,-525144576,113117322,390068225,411616984,1367635664,-20536431,-1849341191,1542751900,1546095254,238615559,1860750068,-793174805,-54623234,-561909761,2079098506]},{"sector":9,"length":512,"data":[31125249,-1533414206,232041968,-138338072,-449274998,-1996043256,1545231582,-476029979,273238670,1210049541,-1275716116,1479057480,129434413,1837552457,1214995876,-1285575205,-191475813,-54334387,-328092428,-2031373080,-167711762,233905896,-1399459705,-592346015,-325766815,-763560472,-42673885,-861679123,-2113671957,-103811917,-340017485,-483660338,-274006550,-35223902,-218624789,-188946489,1843424174,-1062396854,518831606,-156237678,1004731554,-1423760958,-792837457,836626341,-1531583050,-2139663658,1107358893,1222876621,-271438577,-332840776,1353032477,2055862133,495447835,488459727,2021258450,-270998940,81284544,567818451,987297007,933879392,63631728,-1019094512,-1601859535,-866212091,-1270446355,1302041117,-1454738685,238376060,-705081368,1127835324,2104369954,-170506170,-221632515,-773522540,66945809,-719925520,1946574287,234342383,85293570,302727195,-778020051,769994006,-639300848,1085664325,-286467731,-256152014,-1239876516,2048911604,482918943,-929757706,-1139065050,-16743193,1002519793,-227394440,-386864928,-389277023,-908546447,-284693629,1129570306,1770219194,-2055720902,-1598005731,-2140119422,652141059,26487890,-1315759294,-1650846199,-1577182947,-1839084632,-136231633,-217574800,-285897,785517033,-300684646,1891623181,28617476,121197546,-219888703,-969540212,988413436,-1368151930,-185199548,-1510861688,-497094554,-453002037,-323092760,-233250407,362412697]}]],[[{"sector":1,"length":512,"data":[-572415374,333549252,996706809,-1802641674,-1478670576,-264407517,139975934,-1241025088,488505337,-874489365,317061041,-1901861378,-125195905,235460543,-417361577,74331903,1815379964,70556164,-96131628,-585612397,-1201145754,2080436931,1644416010,-282920944,-1207254855,1258433461,577288210,-941143296,1191147274,1762195468,990672750,-603557341,17627869,6493299,-465706220,612278790,-421560362,-142958008,-1142032628,-150276229,-142805123,612235016,62180479,281935664,953880203,264170990,-902238584,-1594832134,1995496915,-1170212112,2014742986,332792534,-853430195,-269437324,664863139,-268417560,-55020929,611367424,-272917787,-1588335224,-1374674686,1761704007,-234242344,1960932982,-401286973,100667424,-3655724,-1557257135,-1943142166,-333414650,-58670336,-82545662,529406700,527698427,812925179,-517013714,-1974466817,5040322,-407439272,1965916279,1409084400,-1965388973,421805063,820569983,-185908480,126083163,1946286906,95943434,-472115237,-841432046,1139861596,-252118814,-641627171,-1370148990,-122504418,121428813,438302670,1802766396,-494958020,1946827838,-938656739,1778613480,100610560,-1054868217,-1017266529,2144540298,988474366,326288182,28889259,-1379482618,-1908474759,-19141671,2146954182,717916877,146899178,49865088,720822271,-1326632246,803754272,1509753267,-1360269854,-1271238402,-503404426,-1176960791,-1965067977,548976158,-225529079,-236851423]},{"sector":2,"length":512,"data":[-1697440383,478617970,-822213074,1610507911,-1010630988,1329792768,1162892109,-938166205,-1077133140,1709666728,-2113757286,1522526831,-127470243,436633424,1537812738,-1016069984,-663847424,-1826826079,92896375,1173871265,-404971518,1166603895,-153247740,-1610281240,-1579288866,-153116666,-1610124229,-1610025248,-152139806,-152854519,101350992,1967238682,1276882189,-329219317,-283245056,-284169990,-282923247,-283936256,113379170,-1076826326,-1592135913,501460526,815864818,490978038,2012623521,882974696,245441014,603338461,-1577699167,983573819,1988588022,-163864537,-1591160594,489284156,-331439942,1128243243,-1087572273,-70930880,-947784589,-1447279571,881683132,-938950873,363864135,-1012726515,-1550274986,-1345549630,-155016568,-1576681195,709818050,133612130,-1028897374,-1029568266,167122312,1655816866,-1029567754,-812327228,-1042858815,-1989927733,-267390818,-259569726,511373344,-255594477,-266016227,1954148375,-265490236,460342626,-2001942877,-962388490,531699190,569820835,-967433565,-962386954,636914372,291030691,-962451590,677522422,702727842,-961788509,-962450452,754357640,1250608802,218481874,600965581,1980116853,-1576759031,-1760417806,-486309641,-478961432,-703315966,977808027,1839669255,282394390,1947354635,1694474351,37531535,71042684,-754441857,101507182,1995554851,-1710162670,168678252,1950558162,-2031655118,-1554975362,-168298705,-693560499,-669125199,-650074550]},{"sector":3,"length":512,"data":[485557175,514387174,-1797076506,1098744049,-1083602793,2117868381,-647315733,-573830526,1617760484,-134834822,1450758129,-1440645888,-1604069697,-67118474,59307006,-1863715871,1953745320,-553253895,-1200242104,-604127353,1286733980,-204543775,-1139247423,1657335233,-212553741,658245179,-2146732811,170042686,1531841792,-997744656,541856478,-1057353525,1993594723,1581155079,2038920965,-1577040169,-248447785,-314191388,-639770093,99776270,-106004254,-151881044,-61415897,1344963290,-880525276,338809255,101389473,1129178132,-6936870,-591665958,-1447156210,1704825418,2043925651,575040161,66332534,-205703429,-1504051745,659893202,1224404741,-211225374,-393610006,114482062,1307797386,-771895579,644614922,792790315,1121307466,45157032,250314253,-1172408371,1140846768,-213955,284384798,-2102878032,-492900354,306157072,787368186,675192180,-392348366,-1064240198,104522620,1569944372,1934080961,642824386,1974242498,2047652768,-846666240,1086128816,-1429047613,1162355190,-876949012,-1376238374,-203093893,-213419164,1178821056,-297721766,3523360,-1052045716,-57441561,-152002826,1702312517,1023345475,-392758354,-1291950345,-240202743,667363063,-686226563,-753234438,-790760198,2012524247,1624290605,-85940271,-1175915620,469563644,-37812524,1958269803,-738411013,1605884021,-1602905342,68309075,1745569734,20284189,-1735393333,-2054489973,1789009252,-979578851,243158024,1726182968]},{"sector":4,"length":512,"data":[1810050574,-590692579,-504939616,-1865703344,1176764532,1230248,-276951112,-440593370,1057721789,57280840,1558490607,-742461101,-1243811880,-1231693515,-907503487,206705431,-206677905,470340993,-1367467843,1953894317,996076773,1258439066,124659938,1505230915,1082835339,-751237026,-598767856,203011729,277429430,12616200,1849366702,-1687412735,909143172,1408925187,-1645034686,-1920430341,-48343304,-1206846180,376831258,-388362989,-210008551,110356739,1528571468,580606873,-140904542,-560466027,1497390052,-1551331103,99412126,1643092571,193241133,-2048702904,-222507693,-122145151,100268375,-14283754,1282831955,-170155788,385022322,662413940,242459935,99191077,-82865044,259261374,196733162,2110853354,-254725141,1963277242,1254642443,-180067355,-254206604,996011538,-1143805322,-2102085542,-190947857,-200029572,1296482567,-915611090,-1707600049,-308153113,239198711,-2007438784,833291579,1897286312,-1918950358,-1879302742,-438762851,-421550574,1141355022,114885567,73912459,-294849041,1963092924,906257515,-504339734,1534902483,628481745,1955697935,-1938601927,-1205181401,137747180,140657408,-605106103,1315851711,-114639609,-2016348327,-1366362441,-1620838676,818810318,1981358409,1981075973,881204516,-1301104902,175140435,415192803,1963223271,-273721844,1594469926,1244981505,-303611743,-320749940,1360852415,-65725166,-1408409436,-1070299126,-156252019,558639010,840170554]},{"sector":5,"length":512,"data":[1391981374,-1368612623,399013352,-1642323712,169793701,1938024694,-738823392,2145258486,-65341758,1930481907,567803416,1039048736,-1786115178,-2134342704,-2134512813,1570625157,-428182913,-209384981,-1926502854,1874126514,-408988586,1210249231,302310944,-1836792626,-1975856384,1777854106,-890841673,298267472,436346269,1406509802,24413922,735244709,1348397899,1633122294,1867609601,1133160680,735160272,1874429797,1378817557,590305968,276807989,1156184983,47114751,1978345058,1609317953,1611586665,1623016168,-1121457395,1001969592,1032055564,-1024616060,818088162,885220445,-521307236,-474248727,1264947363,1954976236,-1898615863,1319924716,1998072339,2074886132,-1444954098,-119157231,96982889,1845024103,-620827668,309711728,-377290044,768912160,1693023540,-1022647196,703675460,1119598708,-1927797933,-694548506,-1045250727,1135531523,991764553,-703630314,-489191587,1988877853,939632405,1999618283,27060715,1203421235,-329831430,2087859586,-934883536,318364715,-2059727881,-445382515,7638287,-370441451,1879946577,1704576472,2116119816,-418002456,1878389791,695599336,-562690330,92877951,317228257,184021740,701872146,-585411464,1773026304,1991605381,495643808,680165069,881479837,320684276,-1962704714,1987828784,722222057,615536256,6100008,-324849651,1340861112,-1550050048,939685932,-4125566,238815362,-1690563972,108991229,1008921581,1976514314,-1323130594,-1791516636]},{"sector":6,"length":512,"data":[701342997,858519852,1622386226,618194281,521965689,-1966475270,549580358,467692614,-1323174162,1188047876,349185098,370302146,85107400,1956766647,-35359212,1653646305,162621509,1485118195,1665435674,1863323758,963655608,184100565,-1108523262,-1862387629,1211620081,-2033722092,-1359965961,-520616213,-1874458867,418974994,52157076,-1903396884,501947122,803935744,876820992,-48073206,1295759648,-933681277,1108198899,115409131,-206714947,-845009013,-749804135,434263222,465644484,-1821202989,-2064531827,-870515796,801045530,-65602536,-1554610924,939128520,-70321047,842120003,-392516329,654294274,-16743014,-2074872906,-277234173,41506654,-1250859541,197810521,1310599607,-318371286,-175719007,-1173732418,500439324,-2138707529,-1104275384,260398043,-139942470,2131553434,-57012653,718403840,1773973001,-1467747979,-1341972992,377048,84111032,67834752,2016388643,-895242843,-1711785869,2141452857,-1498535870,903086338,1396756501,509752578,588982901,79691182,1916878068,2002730001,-177215731,4205974,-203515892,-1036779120,1518904702,-1275065328,-72010195,-73440037,873026009,802184151,-1588495287,293276834,-1163501335,-654595067,-453126491,1958711560,-1291983557,909341452,-184458041,1983413757,-133967320,-515234632,250942559,1965533409,-1316671298,-1075067495,415721316,-838401593,-868606075,-1563012177,1002545946,-1396069600,1746241610,391914969,1441335053,-948953857]},{"sector":7,"length":512,"data":[1848120002,-111735244,-1719403032,1593774170,270877858,-1627748639,-945716482,2089490015,1130824134,-405347854,-976239803,1779952638,1986426464,493771025,169801668,-397345111,-555221350,-1999571321,-772541488,-1929869042,-1587805758,562361055,1878587866,-75580403,-1191270813,-121627015,509935244,-1323656388,2130605313,1914736400,1954544138,-45601857,-1000939519,1818290549,-162526211,315896979,-564067029,-1683448125,-557055478,-640708493,292908963,152235751,-939921291,221836358,-1391727731,-288071949,1832825587,1398896085,1386516274,586435584,-284798507,1173555153,997192942,-230814485,981434624,938358740,-1712062355,-402000038,2082761693,1395784965,209672158,-1225620976,-777923224,-366764533,-151658853,1648751609,568808443,1086911946,330094743,-269085215,-1964708888,-371127210,361249464,-423237301,1007110865,-2034488086,1475742386,-67048275,1287607669,-230185765,-460769279,-2135560163,225828831,1080619039,1485765511,-373379874,484277504,178536652,262503246,1506820482,-185601086,-1036267771,-154646921,-705656306,1399401409,-317317635,-197039890,-1474420514,940003051,-2113901358,1879970464,1392623460,-1087328693,35420490,664923546,136050337,1083753606,-607036844,-1581376292,845585558,-85474471,-343122460,1514099401,-917830849,-1768027585,-1228574743,1998383820,-377940408,-1547195007,1866266539,649015120,-362549463,-104800718,-369527321,901485567,-134247445,-947259562,2122957454]},{"sector":8,"length":512,"data":[-414806811,-16824873,975627770,1949940997,-722374632,97055885,1037952577,-142153368,-2131960882,726730877,134167471,-124160277,108261364,-34313493,-562590173,-361496049,1416101593,-294454806,-1947585673,1664945477,225436870,-372622049,-1891825184,-260204560,1144852449,-181590263,-530762660,2036067076,1055981047,1232961991,1210060215,1219691491,-2144531997,1023556911,325455421,1781796872,-2104976024,174719740,-2137541074,1306960618,1841519283,92455507,-109511190,712504135,1048050163,-1946484875,-2088043086,-2082489816,-2012922382,2012763634,-596257279,-1960050602,1166166549,-1144200452,2044655309,-125065015,-1467810176,1131691519,-1275493097,1483958446,1639920734,-1058774527,-972132770,-1268188282,-1728330824,279690948,-632100798,446764269,1978448835,-1039740312,-1256211271,-1123602514,1366686523,248742848,599458924,-427757570,2067818732,883486551,217617347,-840224739,-1383860559,42615081,1087492227,742733286,-2044624569,-1289051248,-684620233,-680233192,-28379173,-675685952,984339841,995443613,1746791368,1567313168,753421800,1042710528,306086738,1974860281,504668434,268479531,496789052,384915081,20048033,-388768839,403170742,-1929722648,1620783108,1065620706,836344328,-1692034341,1853961081,-2093206680,331416557,250940115,31591542,-1260592630,241392473,-2007389356,1869226002,1520690250,-664061708,1277550741,-2011164242,938578163,-793879392,359166952,26149060,-668941662]},{"sector":9,"length":512,"data":[788731191,-796173245,609436714,-503018427,-1991999479,-1635579448,-184808536,-23526509,-1007551938,-460935914,493920765,501825609,-237158413,-186611214,2139083579,444335814,376881467,699862668,-2080017696,-780996458,97537377,-775572569,-783214836,1003649580,-394094615,-2083175493,417791166,-1694923816,-331625431,989884087,436956748,-389099644,-130091003,-694337379,892189000,-1181435645,2026823683,272039820,504298526,1358632404,-1476232706,-2110974372,1842935683,-724443404,32045099,-125639948,170229378,185212274,1576100199,1566676220,-2099257124,-329219374,1189765866,457885417,1222751471,-382108287,1737400425,650051605,396082180,-891053488,-63567871,483951732,768670442,1048557821,1140749952,-361458603,31384286,64046657,1893909073,248438080,179819864,1708210952,-1529425456,1642826881,-696332561,-1077946668,1713794856,953289414,-2116716258,1953903928,1755148807,-818888825,-1808780771,-1317862493,-49605709,158649883,1889472571,-1285619888,464025271,-524217368,-1615437664,15740390,1571464633,-467345919,-325552124,924187329,-1694844661,-1659592498,-1629683589,110816325,-1357845966,137266267,-1000997660,1273702895,-1243027263,991690939,1882098530,1475095806,42422373,-281011099,-281508093,-1028242645,8686078,1483566545,-1233016116,927809802,1385957002,1184984414,1214243928,-1710590546,-2058085113,119607247,-1964237057,-1965162224,-1496524244,1614861185,828409959,1233228890]}],[{"sector":1,"length":512,"data":[-1702759592,534603156,-941128762,1509682054,197346275,-1912712755,-1393428465,-1561587520,-36399038,1625103102,-1442576270,2059426209,922851744,210133288,-2044590304,1361368311,-417035717,874030742,-1460516976,1734087236,-2006760536,376577153,-2072839417,-124045553,840597452,-1206225179,-1021433471,-1758261656,-54243065,-922355255,-374748377,-136314332,57550558,-1299076746,-330223863,-24141577,1543890448,1807603680,-637422852,-1184581455,996897983,-726647376,-676268661,1819566140,276494605,531680541,-758677010,-519072726,751396879,956178932,-2003163532,-1224680439,1359651738,-935131944,-972944319,1863118681,-185647934,1345983106,1224841056,1746596069,2015721819,1506753297,-600293136,-1609629191,335344092,-1051600104,-1267679160,1394738849,-409191424,-744948711,-797477430,125254593,-410356498,-864727356,1977063936,1570289327,-928014457,1950057787,-2027884519,112919199,-672404048,-1344297241,-160860418,-1052240523,-586540940,-1138161104,-955973438,387151831,-352139267,975944247,1886112320,-868404204,1519192905,-1437924536,914714706,-1398554837,-1261961790,-1977496295,-99699504,-460325070,920423371,-2147199094,259488506,1633492987,-360709262,-482214624,-702170623,1090789371,1398087388,-214911913,1533018067,52378937,-58708366,1930100735,1204041257,-1369529590,-1369438580,-301495498,1654851655,-1559957767,-112202140,-1883656602,244036075,283893947,-918281,1476134991,1606759946,1928319236]},{"sector":2,"length":512,"data":[-469971708,650989861,871760051,-20828224,-821957693,-15308996,-677175459,-104414326,-352373857,634653449,-25707841,-326412808,-66890102,2100737046,1914712080,-1425670957,-1946683552,-1961952575,-1888486718,-1413248238,249924383,-1038966600,133622720,96862960,113633196,-988507118,-1743940167,189091357,604381630,7662095,42030572,343191246,-2085061179,1948108039,12912389,92516506,1939971,-744881150,956609500,-1288477544,1011495728,-121929678,1197682976,-335966466,-164569877,-2083858438,-669920426,470839909,1731491311,888061923,542311407,1829064108,1268056844,-2141178469,-290963024,1697704793,-99804464,2011955630,975782298,-1468135334,-673834413,592457980,840826016,-263650816,-1329871864,1924676305,-1030830855,-1039216611,1673957099,934186640,1165752976,412116163,-197946965,209103359,-1148386717,-573346760,1602134608,1644675627,-2132210851,296754587,324896055,-883047410,-1326747183,147394848,732196230,285421311,704773050,495360258,-1220212550,-1563387648,-232732314,740913908,-624890116,-680058675,-336207631,-91291677,-646478491,-926739594,-961511016,-610603258,-1578620029,1218480655,1479996932,877761142,-1855860928,-454297117,246357255,97547321,1092422575,1522421771,1557996396,949617079,-1471736192,2047160997,1088999883,1857147915,-1329702136,505696900,1394803461,182481302,-333440010,912132287,-72032625,-1998601668,1559682555,-1604824364,988761911,259114827]},{"sector":3,"length":512,"data":[-1092750430,990830712,-407894122,-1502928777,492871158,1425517312,1269817242,-435961858,148297451,-1058012104,1359905010,124841672,681064309,1993306112,1299447027,1892623341,-355494984,-1208744656,-1516806538,210522601,-2104744752,501262419,-496498685,44252535,789112066,-1742197554,-355169276,922805144,368839283,-670829434,2064479705,1892871202,-387199331,244241324,-995104702,1827200489,-1903069822,-1360284407,112409351,-786395157,-723854634,396532985,732043764,-1709169685,-651212647,-66986927,-159006676,-2019296724,66399392,1945381956,-1905295325,-823447036,15403332,-1430400020,1238445513,945918904,-1824484377,1051257859,-761549953,-780905357,-766329061,-1119198207,766579445,-371766080,-718082019,1309691530,-653643571,1317603348,-1359891908,-2111374804,809671937,-262889997,-788357874,-531346934,402600588,229300620,-131467729,-1308312743,-219476921,1591600047,1994638407,1080787296,-1928010291,1501586115,1829987997,104091832,352375958,-368036747,-631946179,1578118056,1935429994,-1757232589,-2064644576,281822896,-1623355405,796013699,1907210057,-2097508624,2130491920,1781495086,-1903819652,-1718760432,-2051342126,1963034846,-643701033,-2109854858,-42989459,1898356928,-1645869023,-1202673934,-2109690304,-1491457703,-1040021908,35879568,686316381,417853697,-1087117289,1194037613,-1847105304,60597897,69959754,616171499,-1595083514,759497882,-1332798331,904922669,-1463817613,-345256573]},{"sector":4,"length":512,"data":[-922262952,-2112026656,-2095702526,154799744,452538251,1764859090,-275279520,1931575791,1874269704,1511900589,635993738,637572329,1969010556,407393122,1966741999,-981452503,-1122762681,-687681420,-1599489792,247465106,542813374,358770452,1110762906,-1341496057,-2146405136,1545012199,1278477163,178337556,-2056121268,-1711013904,1099841936,1162182799,1241513797,-1886500535,1335005840,1431654297,1067096409,-1650680834,1229037470,1101374963,660683855,1007317671,2050757031,746585938,-2126722272,-2127758478,772480187,-948121129,1134167111,898898499,-2121793538,-2054913150,-1987541114,-1954545782,-2038133364,-1819176574,-1751738988,-410938216,-1583304849,-1532714078,-1309392652,-137252443,-1325092518,125612416,-726569869,-1900965295,922506228,-44347,142591030,-315446612,132368522,-268497236,-492121373,-1170071559,282913674,1926544121,536906972,-690301222,1070094034,866928421,-20368421,-1002778241,74581364,1137478211,-1494021405,-1291193862,-436046078,-1030831221,-1574643122,214757127,643017761,-514068756,-789330810,-505398725,-1203718681,-1563380105,-551282303,316867831,2074937005,-1879307562,-1527260406,150377152,-1474487488,-468810766,519108107,-63753679,846716920,892679218,32519926,-536939897,266368028,826396798,2039557060,805015877,-1442533252,816897931,-204705057,-339346441,715920854,1342084910,585320874,29024394,-807288572,-1976641304,168593287,234873879,-1442220915,-482688258]},{"sector":5,"length":512,"data":[74700322,535159522,-1086388959,-1122085495,-947128475,-269374244,686022514,-256515022,4271615,1996495165,-185364204,1690161715,1897910669,-489500187,-570553350,-1948720426,1171027854,-67450693,473351820,-56941576,870860616,-367347219,-114373927,398994397,-3612463,600541983,198583239,-503024190,-1710298141,-1047805953,2126235902,-402401507,-980691998,534067809,2047803334,-1962127733,-763034026,620683380,726288417,-233081142,1974378491,1359802135,-896838057,1592916967,-327853729,-1020574129,61299947,-1607448352,-323036899,-1101463238,-1212750801,-431983031,-1580922,1978523864,187884340,-1555028011,72171881,-505970825,1968736997,-1985148994,2076705797,-1888384499,-1405222973,41285130,-1063257038,1491315301,-620050946,-1974527600,-151647291,-7013248,-752219158,1890646827,-610787534,1019477676,1022826528,-562417369,443884092,-1276909471,-382024214,-71954829,-386763329,-25395194,132674652,-605427536,934311655,-2116706340,-740052887,109281729,-1271438105,1844884233,-754892827,535557344,-58001014,-25851905,182908608,705656292,46327689,548980780,501657609,-1535914102,4196488,226868237,-1023228475,116473126,-1550733720,-466149860,505288329,444927666,-1428058136,-1360514582,6877696,-471957024,1742658014,-1196529034,663785493,1241532625,14696164,1476838958,788066814,-1761584221,-78011858,590218160,1514045689,2651374,-406984497,-520945789,921745668,-145563098]},{"sector":6,"length":512,"data":[229900912,2093479373,785055996,516671137,-1078321394,-1207935581,567092516,-581737495,60591647,-1067155402,378609649,512668094,149664192,1813783542,1886320302,-685891375,615527860,-1986501646,109896990,-282960411,-1581390843,779543159,-1023347450,1593831799,-1336190630,1364414497,1451174994,-1147370303,335537221,-611450541,-787718518,-18612872,1394483141,1353579640,-1951555037,-37159464,-605487664,-67570945,1579139214,-86355112,1219861707,-62005237,1248432043,-2092543104,-1077478568,-661849209,-861077765,948577443,1280320153,72268785,-515204105,118285303,-438638632,503447489,-2096474427,-1850199870,-532479771,451087647,-306517093,-1847625640,-1801254485,-1285093156,1476843228,1926842222,-1974695971,-1962787872,-430457059,-1559800319,-65201986,1992004285,1824315892,-1190620552,-1159723053,-924654367,209099088,2123233535,-66644304,-498123604,-1852289104,-1527562055,1115859556,-789705702,-1796909427,-541259186,-1552068940,1149575400,1961756554,773774430,-78662625,-1812569116,-1189252465,-1094220911,-1178919162,-63123615,-1965951257,1827437505,-1459794185,-461234262,1189241460,900525764,1321241801,-1414492013,-1250437634,-234625877,-1363173633,32816817,-1879043399,-1141097548,978519758,-518660801,1167000975,-1797482494,39118415,589037395,926345764,993671480,1039141692,-328712386,638826889,1947652466,-814512722,648937726,2924830,-230288915,218762518,276961309,-1436326837,-1141410558]},{"sector":7,"length":512,"data":[2129362492,-121115990,78253488,-1981041011,-477301642,1190551247,2122965708,-96039688,690214838,-221085978,-226608388,-2108230914,-1091412339,-1656000286,-1478866502,2142038828,2140018167,-1407545605,-2115875404,545878426,-972582930,-1905074050,529430047,2006478428,249812800,1961993744,34622840,-1142424968,-851595022,-1505737698,1647526908,-1447188420,-1657548342,-1202845580,1975555583,-1947538437,-1828249858,244639402,-1442036847,-1563837117,2017564143,1097294367,1337511942,350655582,-618034176,899146402,-1195093920,-352597552,1442657396,641455399,1424885188,-774617612,-570010235,-1545015045,-1067196919,-1089952687,679095332,1024141006,-338969805,506393164,-1980176459,32701014,-1343031081,1560549302,1839756470,2003791352,-1128043136,1036382387,-1715330493,-1929253055,-1720053759,1078318203,886503243,-2114506775,-1735385145,2109537457,-1462220769,-461909606,249750587,326500208,-133741077,1777012715,-339803257,-350629573,2001536589,1867336904,-329348351,1938848000,1969826248,-1516606530,-961112300,-1382401144,92438772,515758340,457542240,-18030429,485672814,117501938,-1281746709,100724432,-1695236710,-1067448574,232169,1134594589,1349655976,1135147182,598865949,303776542,-214467918,100199172,-1897167814,-988875875,-351802618,297459255,1990450667,2024604536,-352316294,1887634304,245570056,-302769456,-348256880,-79760208,-1610091378,2012655490,-2086598542,440135926,972522913,547231880]},{"sector":8,"length":512,"data":[-854524384,-2145215490,810996242,1827160580,745674378,-385644358,-1369890824,-1064713052,-2037625577,-1061843720,-1095107785,-17500942,476227146,357767347,-273070669,-317002243,-317283880,1459340962,-800861719,-156829728,-18137657,100181614,256218810,1694285031,-219171922,-230818757,-795199488,-691078130,-65708553,-1190399465,-2024360280,543971495,49306399,905748370,-369283765,-873528510,753864821,1642343858,188997838,283770107,2001785294,-1261615756,-1963453798,-1853679434,-842529843,-2011852835,-836084188,269127913,99437213,1839938360,-1535660190,-168659059,192065421,-962992519,-926623893,499706478,-203334512,65136508,-539278683,387523869,1230577108,2095253459,1501316099,-1596212990,1369077962,-147917820,-1609630251,487395017,-1633679627,1861567623,-653360675,-1089702124,338043119,41747142,1365482614,-847838608,-1131526269,-368872196,1951275606,467278656,-1865381338,501832178,-1485773807,398661660,-725672220,-1296999337,916639523,1569758648,-629151543,-297761012,-1655379189,60854301,1084662642,249604366,-1458699550,-1308370630,205196957,-952050262,1127878390,2111505107,-263597177,-267529158,935983178,-1268036775,1991206519,-177862854,1711906107,147758581,-1286671002,1853999882,1077606636,-1863445897,542516003,1098260206,-91931665,346004201,86214336,1134743798,284508086,-1530361099,979648886,-146606218,-1100629606,2060606702,-442798352,-997816985,2068192646,-1681257486]},{"sector":9,"length":512,"data":[1005969126,-551621164,-636745599,30334817,-261199133,2113667504,1828339810,1662806221,1676888722,1677145164,771225593,980650571,500208888,357249928,-1525319953,-70752061,-648947971,60523726,-1514470718,246614772,50979492,-1736580553,-257692142,20879929,580588512,-1159447698,-1462992691,-1948911771,757339517,744486147,-2032198266,150321251,177347847,17118357,-614176137,1017317084,197893852,-2139840779,1961430446,-307040346,1810988916,1794405492,-813142420,-979760503,-543406831,-657619592,399799528,129777722,392229920,-625351701,-88917488,1422421127,977307389,-650872847,65746494,180354046,1601615008,198301892,-495418952,1976365047,10086865,994509116,155685608,1694740677,-1421904077,332544832,232904803,1105093427,157600184,1689903575,47333474,-1626447827,-201870268,-201853449,-278806378,64438678,-1362979111,-1763047948,82586350,18088162,35865280,-1099817543,-1709817647,-1701898510,1457472440,-1695180073,-795446782,446234753,-1586955262,646971672,163482401,570974564,200608546,-1560938505,-135137473,-2144929805,121613181,-1090371003,544059002,-2050349133,-328862368,-171234253,854707702,-138613721,-274276966,-1729022464,1710754025,167251655,1891449336,-1155198731,-478142309,-505460074,-1919022476,1123814212,-1915487931,1651559390,101404321,-2041690174,-750858882,-310492857,-196808871,-369627709,-1627919369,1959639774,-786696607,74038160,-645461877,-120103836]}]],[[{"sector":1,"length":512,"data":[1568012388,-390530972,1241038692,1242648824,-377473157,-218472250,2029789540,1449664421,1357355764,204630459,-1820784222,-1696045349,903112440,1806264056,-2146277640,-153490666,-1613381520,1329634336,1366619787,718107813,-1307393816,749579085,1659574620,-1799078462,-1899705469,200805917,222030584,-517934816,1981842432,552826568,1060867440,1503266220,1626871104,-73986470,567953398,1340068718,1123593966,-1602991359,826295830,-58707434,1040609084,637886764,-387593704,-230392794,-223349713,-2145587465,922743031,-135660316,1061679045,1528230878,-1935568264,-164249873,82753806,82554616,179963128,-933902088,42518770,-1011620988,-660730840,-67983806,-165663354,-981293178,62262847,334369419,-820493168,718321698,720241898,1523247624,-1946764318,-1544223227,-2090534971,-1161518095,1966334726,36960269,-368184464,-2078607309,-61819597,1584154976,670186816,-1596812784,1370226946,-388840044,-1557912672,-122488619,884118197,-1447929770,677052594,489337585,1217962932,390383617,-2093730043,1794837043,1159092989,74596787,-2145753824,-1950065664,642828488,-46153912,-1056723061,378265928,-1346272620,-1314781776,1208922378,1494073396,927831076,-1537361892,1888192139,-153424748,-2146050457,1683855094,1613316571,18551505,-230686342,-339255100,-536694770,-522333437,-496633868,-1243900151,135802802,109265050,33943751,-357930005,818290333,-1315496330,-163960634,-51295113,-58051003,1146485876]},{"sector":2,"length":512,"data":[-809431394,-939654113,-1263091058,-120956269,-1157101526,-587908222,1609093380,521713188,32621540,637256924,-1816562252,178799392,-275207674,2113665017,2113521488,-151470450,1143732349,472367741,311617938,1977268434,-25989257,-283282321,-237795203,-1296029315,2113407728,356776942,144964581,86054060,-2040528929,1553790078,-194398143,1514553416,-166517641,345959662,-127469586,1119307532,-739164689,317053613,-333836195,319704045,-775467972,2011987220,838071644,1743982637,-248815535,803346224,-1503801610,-314444036,-352134112,973204508,-494452520,-303165167,-117771993,-269495814,1973744548,53884585,72890386,1355747454,1411383344,237040816,1884233792,1074678983,-1064820980,-140644978,-123331058,184950270,-1291839315,15468206,21494075,-218939017,-99748362,220090763,-1948281974,-51629436,99632333,1456138005,-322900754,-739281152,-1211796033,-2129769630,-2116483824,-1287209214,-1259310584,-1544411499,-1364798076,-1707388617,-953736976,-220175073,-1144721155,-164960055,-1167045622,491461225,-605573699,-1307265407,28686392,-1341981217,1075108259,-650507302,271422981,1661038553,-1315112743,-1080689396,2012040940,-226917040,1915595832,-695144890,-703421605,-1947011805,1448928445,-345186042,818083377,-604732497,650514418,65988834,-1427278325,-316658690,1874048373,90004290,-846154970,-225382394,-1877719305,-285741954,1670769911,-1460258857,1375252104,-1460098857,-1460122712,-206152389]},{"sector":3,"length":512,"data":[398995382,719984124,-334936165,286837088,268196319,-1808363063,-388042619,-803764192,1036243223,-914998276,1203720414,-2135376815,-1129327695,-941350810,-1653139352,988328974,-2090139648,699565730,1127908931,-2089244895,-367345363,1545932260,-1769475877,373951107,8913544,872478118,-520046655,1826369092,-67042399,-208458253,-773702378,-232730258,-1596983571,869799590,-1609930290,-948837551,-703146387,-536358371,-1819740021,-738405384,902171449,1544340597,1368584548,-884458501,-155782293,-1544144365,-262244388,-83998221,1808072867,-1600391311,123379673,-318536207,-1404969029,-704259077,-2049189887,-359233673,1973542818,1523949736,1524101646,-334574844,-84194401,14909542,-2123149450,1980611933,-795343096,207729852,-387598277,-236263258,-1264101962,-234735856,-1612902286,-1440934847,-84564646,1167333480,-744016280,1757209136,651622431,1051044883,32540257,392648251,990672136,1476883732,-1830189957,-1141916925,-40659987,1946692000,-922972676,618448954,-730659980,1618203428,910013799,-1462785941,-813121355,-554185737,821546292,-161151242,52904194,-456635752,-1778844725,1392049082,737737687,-38137676,1761128077,734789019,737299494,-397207549,2083359740,-1258587395,1680368084,418116610,251320045,2130929738,226807924,-1789451937,1052025471,1552134351,347115721,-743176205,-1882613688,1757362956,2005866566,-103366742,-1251808273,810693970,363504722,1939788962,-1442234347,1267312601]},{"sector":4,"length":512,"data":[551066351,-347741719,816144670,-35822917,-414403861,1082723121,15521834,-1073496910,1007431881,-411499587,1976684553,-260737976,2083622164,-2047285005,-70776140,497641862,1943937,1186807214,1951337451,1086873651,-1115459215,490406630,-554891249,1341797257,-46719497,-974409498,587995059,-388032465,-1061705728,-1865910430,-1310016256,-1916276567,1751779629,-1264973040,376045984,-1778888597,-1778868009,6954006,-1107499587,-1304631609,-1173485065,-1006405898,1347253634,-410171016,1453363624,998254605,-190806268,-1446760287,280853061,-135397139,-285474587,-426963700,-434810126,-487580245,-436150759,742766322,-64295465,1062229018,1313429502,794251076,1380144119,-11647675,1868767486,1768711790,-1601801117,499645407,531431716,1605414591,-171571265,-1068036582,1528192603,-1762500198,-1696138475,14184845,34396246,-67878750,2121992163,-122783581,1367122772,-1595857131,-67595904,1347159040,1974153556,964607968,-1699417921,314291786,-1080364656,-1946747105,12121374,-2145268412,540787658,-157024074,1073832127,1187451120,4426750,877976581,104869445,-474783720,-1073916173,-169625088,-274519668,505026185,382048924,141296425,1140851061,-1296894336,-350026573,-1962502398,-2025819252,-2028858163,-754019852,-191265456,-1414014046,-2125354175,-849231693,-92485802,-313216750,-1376081387,1048579568,2029522654,1002998832,678735689,-82567007,-1627938057,-1628826286,-1627122188,1979318211,1829833784]},{"sector":5,"length":512,"data":[-147260153,334169351,128944048,-231219219,99289868,-378530325,-439717377,305036107,-545251308,-938421048,-939323679,-938892380,-932770104,332497135,-1674019896,198170312,119501930,-88918062,-780737524,-761012018,548406753,-284259695,547614610,96321781,100014869,-156004143,12584603,-1886207018,325201456,-194529034,-190729838,-2131750913,453702949,-805019851,1278742336,1771416960,17216154,1080605748,2113758967,-1694785617,-930388784,-69477749,-768476161,109040443,-1053094532,166150774,226814445,1074966771,136899548,-1212797748,-1724882953,1981860094,536285189,-106046557,-129070691,2028375795,1048048389,65795571,-73511681,-1948871519,395114878,1890798173,-1928028351,-48205497,-1592650186,1140965566,-130957194,-117973085,-948583691,1132872348,520752801,285218954,-818216197,129509487,1866707805,1860005878,1878552566,-1646655240,-949913257,-62579102,-1795264670,1863426525,-1057203278,1689123576,-1519402481,430026680,-794438570,1808859251,-1106522858,1144823104,1149931075,-1703081707,-1693908988,494403598,156275708,647746558,1277430138,1300367862,1107917056,21615278,-1730938705,-1979057148,259927605,-467234869,-1123059759,985726687,2102687735,1779453184,38631296,59061623,961200877,1759543616,286589970,-1574903586,618507503,1562030709,974810003,436300648,-408018926,-2146506295,1601569017,-1027733756,522390092,-1053802246,-728060686,-1992966881,-41597665,521293265]},{"sector":6,"length":512,"data":[528557810,246898331,269118870,2020000890,-1950040102,-121002746,254019212,90519361,2046212456,636015565,-294017017,-678347039,-1465111692,1733513376,1128007782,1159085060,-1135951384,-528119295,-871924294,-840371459,-730401842,-1018575055,-334823876,-936959788,1393095400,-469894650,-187170253,183236348,-367213584,795802365,-19431298,217938882,463976200,-1092586071,839824688,108204921,1327104438,18546977,-1350328162,1234179914,-1610221449,21362052,-2053062627,1075643124,66356896,-1276837837,885049446,26986691,-1312289621,-841273729,3155217,-34014147,-1162209163,-2007307261,-33506876,955809871,-502958624,-542512649,1585988385,394539881,-1885662974,-1257713233,-1693384773,986912613,518728054,-1103105604,-1334778752,1358725123,-611907212,1947269516,-1461811966,839971356,-12952497,-187799926,62894337,-1172852731,166658996,-1264550386,-485788306,62428149,1065813185,20723947,64549284,2141101985,225575741,14073160,-1270478729,-345771052,1092021051,276623871,209650748,-888775030,2098253072,-400037115,928006435,-1594080784,-58918267,549445132,1452013810,-1839362,1329792647,1363234893,-114337274,1953066597,16798824,-1496611393,828083631,13541316,1200303707,310223867,301954755,-111613949,-1350695226,92273409,-1100710122,-963706882,-602913089,1815914690,-2121941036,800866718,-502008330,-635592009,13807524,29610747,-1736977754,126014092,30910686,-1844908312]},{"sector":7,"length":512,"data":[363344530,-20493876,1796671548,-1636098949,-216129804,-356919201,-1695086484,-645568070,-302538016,-1493701287,1086247033,-1738040320,425763110,1977136670,-351519723,113707121,2006970602,-1872282351,-665829139,-1476401391,-16701908,67437315,-16480793,1406927362,15942045,1879613940,-67102370,-1348732224,645988376,-1616849234,1008589887,2082960639,1067590519,-1868414849,393413181,-130249344,-1896872206,730399198,-1020182824,444691435,1543503701,1964653661,-2133619920,2138508538,-1031132705,772250555,-1071727401,183669731,-2146732810,2004615051,1928477190,-1144616446,-1177558104,-1665272662,61336063,-1543565125,-17925,850727605,-610761792,-2142583559,-79333475,2005156467,-348223396,1968174958,-1054754507,604932646,243827085,-87949751,-2139078851,376707577,400559745,735477493,942864783,-1009536720,2009737284,1077801859,289269533,-91622528,-1937771759,-855526151,11847958,-348151814,-396447500,-398256261,-67334538,-76421107,520380938,-1021063784,-709909088,-838205188,-853888067,-336015576,183553935,703014536,-1344009482,-777459508,-1479803037,1043900288,-1908417384,1270563700,-1977709885,-479167851,844126133,-151470364,204611830,-1794443531,-385481946,-469741839,384751755,-161021853,-336720208,-96286826,-1337279625,-188484593,1052923272,-587025214,-1538558225,-2131975140,2030281749,251438219,-758200570,-117452285,-1946169368,975619009,-102603515,484230339,1049200446,1580844936]},{"sector":8,"length":512,"data":[-62840,-1441348322,622573743,-887152179,-1918939106,-1726050770,-1561223161,1480276966,146460447,-230371654,478146815,1417148034,-1011903706,803868596,-1568725893,1199847236,-738418436,-1530096978,-2066599059,-2074641232,1884626804,-383584497,-1048445698,-1207901329,-1066007748,109641944,246746780,-1740684642,941478462,114163838,869222193,1978947071,-207487251,-1014219321,1960451643,1090160906,-455803769,-369501534,378061775,-2002884172,-1224620234,780730014,-768425013,-893787254,-25872758,-399602994,-555186453,-2066490881,1046597459,-2027938339,112524526,1428094008,-319501173,-1652030109,654063754,-77166361,-1282744184,-450173197,281295467,-997549357,1800679738,711705662,-540808480,717378302,-66877759,-1947169807,-980771554,-476668937,1818488114,-422477927,734759817,-604008482,-1948125231,-1594883081,-1342528895,-1899852070,-623186312,1383327952,-747259904,-625324702,-327180108,-11630053,1927933178,-1711277061,-73008269,-83627550,-17315484,-1947891378,996772595,-570728737,158664872,-148998183,-1413248039,-859404585,1776942553,-1973886603,914502486,788694300,-778109997,-204857737,1976482469,-1038817292,-240389784,-167411725,526247307,130113271,1723796727,-19060002,-138200381,-143059680,-145580652,-1594375976,-1062584676,-1070860299,1577776899,723646251,-1040765957,-148171510,-1173678790,-250339081,868401399,-1908093504,970901637,1908101779,-111399071,-1269467826,242551161,317769809]},{"sector":9,"length":512,"data":[-1508906151,1343117336,340426281,-405669373,-402651506,924764710,2015178258,-271531686,-1047891622,649059722,-1266566793,1853860873,-956382369,1985164858,1828781087,1448563027,1994478086,903868875,905256152,-45356827,123375679,1532583774,1390470339,-385876981,1012464659,1009873933,1496544266,-1375191815,-195947606,1520691451,-835009794,561442763,418118026,-1834873164,-219364672,275050356,166447870,-1057064984,1978204047,-1353054213,-1979726933,735021905,1380705230,995761751,-13449452,1010236214,1434190164,111010937,201068319,494148087,91204653,-402422765,-1398505473,134013611,-1012310241,1369636364,1509650664,394266463,-565250267,242701559,877805684,588184914,1447499090,-399014371,-1142066050,-1356371727,-1995984641,-1273304969,-9902052,319288907,1541934923,-2081470499,-665589738,-1387840500,-391519575,-354156987,-1950090576,2143565532,139283204,702777479,-772134618,1309420123,205280823,1810367799,162146298,-21174154,-1263663289,217718504,-1457173227,-1089437727,1363757316,1375198003,-1349082688,-805039349,1996754148,636812428,-1761024614,1311342554,322728511,-23957900,1011432182,-1538296805,1954495589,326385505,1946594638,1215565625,1786986344,-898490308,-1587617,-2010725260,1140738370,-596189637,-347883074,190419637,-981291567,1567809029,418807562,-1720393609,31489378,-788491576,-94244894,-2025354517,-2080375180,-924105793,-311108853,535300272,-1325531144,-67442656]}],[{"sector":1,"length":512,"data":[1274934774,-363531294,2043700457,-258780950,637396345,218204815,-1663810806,-1186988050,-645198684,638492088,-1325236863,79660503,-1308473887,241219799,-2052014536,1301030420,-2124157162,-132450280,-379642803,-1024647432,1924915064,-367992305,-955115657,-467150928,-1929367409,-318734203,-1404739904,-172487489,1216860278,-13458616,82364924,-1463228166,-169997894,30421410,541190534,-1634876734,75603708,467070462,-439616798,-386732195,-145557163,1286717414,-1036297991,-207156876,-1717425174,-1969191710,-2071704287,-87658329,-32512102,-1696035929,161986809,-350860193,1597417307,2044768168,1477348490,902457954,507385060,-1347621799,772392122,-1899435066,-1041084968,-1077912136,386817388,1948121903,94816308,-397439053,3650831,1959851921,-235416259,-2132633181,2009484828,150605419,-1597304023,-1613272000,1200291787,15771652,254047135,462413762,-83490704,-1209055000,618920174,-1648643833,-438251004,-664935025,-636033747,142069003,457748483,-154405154,-26779596,-822577239,919786498,303788647,360175409,520509422,-1705104382,2012350834,-558903962,2045697980,-573475608,-941065540,-132277001,-736440534,2014154694,-1259195189,-892947258,-2064451304,1056333560,116882253,1073837074,971930724,980400931,2098089807,60554246,314067826,-973242351,-230096932,347603828,841665809,1054138587,-805271554,-2144961811,129629733,-1811528148,-150925833,287396613,-684163144,-1258952728,-685722862]},{"sector":2,"length":512,"data":[-401541857,-561580014,-775870071,-1087966648,-505112066,-552447762,461023576,-1708521346,-1289940615,-1440094659,581247477,-1152814344,-172085122,1579120621,102042199,1338031100,185815560,-921042946,-851784194,-700835209,266421367,974156612,1861913902,-132113766,700448751,-990463512,-1176665971,686343197,-1639268379,-308287242,564094867,-1059976444,-1911761206,1329267911,-394652675,1967847184,-2030553026,1788987208,55538474,-2113345695,-677199371,1578552778,-447350144,-1193474061,-900103102,367103399,1074024768,-2002795532,34140404,2130152710,105338356,-1879804992,787697908,-470409508,976359909,-8717839,-986251500,-919401865,1870900396,73919594,-999036208,521223940,-1107293494,-341908109,1195782914,-1828034290,-2019960864,2003110035,-1651581696,-41284982,680134852,-1265698817,1071831508,217348581,578849706,450938244,-1817443979,1185610712,-1431468081,289526151,311822107,-109662800,2004323780,635636303,-1864332778,-1979586064,-2030327100,-1880434040,1107098282,-1578227391,82671955,58704595,-61086972,-828253300,-592194607,-1021509882,225703739,1392724477,-234946846,-989969922,1015035832,1768030055,771717839,1977289372,-1743401970,-308546352,113185771,244568262,-1247798783,1157928047,-173396503,-403383076,-2034371343,-119476728,-399705879,-200404299,167160732,-324951819,-1946920568,839038188,-1140373941,137458209,628326210,1220713609,1602999294,886880260,-114617670,-142093319]},{"sector":3,"length":512,"data":[-22606349,61366756,-436007778,-1615417247,-1975261564,-1757223229,2036436476,-335797017,-1265203570,-94594043,870773948,1729924084,455569098,1260603317,572555253,904808299,-379203312,977129380,-1068010002,-1008473917,-537843679,-107101476,1337186339,1509277198,700058648,-1599167957,-1257714889,-955335868,-722450487,-325848112,-873959685,653784567,586550557,72533145,-1478444696,-628216665,653022111,868504546,1246719,-1930898682,-1547566126,503200895,52297891,49936390,504144670,504429919,759603494,346230784,-1321996218,-54469186,-57606857,1521789998,-920782182,80184066,-253587969,-1172369890,12058830,-1170782374,-131860267,-120472931,-121178076,-1052229057,1344742160,-1819428610,298214280,1947349756,-323949504,-323813379,-70577629,1476838531,-411086973,-1765310177,1933180032,553303811,1421104924,-1979766595,18239104,1515805528,1562885918,-1194391777,114622672,-927420338,649923328,1231250532,-81521433,547559423,197233438,-1591774013,1846091268,1144131918,235939126,338726834,-1014174314,1395074603,283869982,1602101832,505683644,-1065279804,-1546679705,-1498974528,715356067,312329844,1392928769,-1982315061,1343347556,-756541961,2066084881,365239925,-1577978594,196093836,695513094,267775931,-1593824740,-1157621640,-192809730,-387320802,807710888,-621423302,501102056,-402521111,1286921479,788084673,108201866,955763176,-1007480576,1776706737,-2082229858,1740563875]},{"sector":4,"length":512,"data":[805630454,-1097871536,1354971480,-387789572,1380997331,-387414777,-466618621,977072639,117703282,112513162,33604536,589037567,909456420,976828471,1044200507,-35521,1953396050,543518057,1869771365,536879218,1952571537,-777507077,-2017426545,-2083841530,-1520108738,-106879518,-12601879,921996286,-771603314,-1988165035,-1384380595,-943061701,2080830209,586739976,-663231442,-671037000,735640642,-2129825040,-1846608904,909838194,-411951576,-406172792,-1931679884,899285978,792723451,1873081340,1204827481,-1947189293,1380998650,-470301045,-1950578021,-1383986,56122111,-875494445,199854933,190870763,-1672478757,-772339079,-1048325129,13861633,-242238703,97712080,-2081066740,-1947091758,566041595,-788463617,735302097,1944001486,332268292,503313887,-758001455,-1645578931,549654393,-351931634,872938253,-909419072,-372054275,-511443505,-1809897476,-657331503,-1021558558,-188686092,2106590115,-1936518447,897819962,1538333696,986942414,299808952,-386035479,-705219554,25749686,57817413,-1160988451,-428415258,-1577907770,-2118991050,1303626145,1695579906,-1306549362,-1477604377,312007101,-939961058,-1947073995,-230767401,384243755,-570020887,1426401139,-347455682,-2013059551,1041181478,1032386679,1928202382,1123757316,-1760754193,143778043,930479883,1290329071,-1140779774,805332832,1341401788,1572625810,1608137474,-185592808,-1056108607,-280293151,1918951922,-1429718264,-1284359642]},{"sector":5,"length":512,"data":[-9537106,32282426,-340332745,1979761672,1021271923,-2014777906,-544485738,-1696662846,28678670,-1397415178,1777110055,786709409,-553627967,527075596,1482484697,-639493919,-501608817,-11513772,503313438,1256413329,-1953598135,-328875047,-1332870749,-284300918,-1325237440,-1406761660,-706909292,-326799884,-117908277,381942211,-399294225,1490092334,1916275046,-1342497764,-133558725,1131887380,1913550787,434953714,-934346727,-35480390,1000896323,-216567283,2011955462,1845026103,276705143,1710143527,-1227046051,-2095452485,-1960112009,244903644,-285410752,-638822873,-2098292305,1570443125,10154397,207869932,814382801,-1716483658,104484776,2102392942,1946742659,1997413657,-50401583,-979749373,1993322131,-1996152899,915089891,-51673095,-50420442,-1985512493,813680624,1043009941,1145740054,-901855792,1457730765,-250351834,-1342196621,-519051645,-17837578,2078409724,71187215,2018354251,-117791673,-1956000665,-1307630128,-17467303,-2025158916,-1319517451,-2081362433,-1056239646,-65236285,314655794,154152659,-553276862,1215533617,411079910,984354558,-1979550015,1213258945,160230246,54330762,217042496,147483071,1173435018,-922024246,645792639,-1054083650,-1958734990,2112796712,844679490,-322864687,281061092,-1582233285,-1435270649,-1743926472,-234871124,-971825280,-158859515,14789840,-1151237305,2140675726,-472534018,1017923369,697299286,-1359827731,-347136907,-4227297,-802434677]},{"sector":6,"length":512,"data":[-1623060110,722367654,1858659238,2020952766,-343084954,1660431112,1888889654,-662135012,-135482591,-1725592947,1729350714,-922039172,1923486406,-1002798201,-256748195,-422532552,248490497,-791131149,-338116642,2017534256,1278084690,-1526587282,-1431053814,1358363840,1183522583,-795129850,-1115558146,150466062,-201269249,344121199,340884574,1896526314,-320999697,1864785972,-1953959846,-1408485618,249612419,1990607742,-1509425013,-1012766346,-324485457,-81949181,-1901372245,-273966706,-1441199459,1000460422,73371911,-1878405238,529470451,548484299,-819279062,751128308,75389439,-205879623,-1084841045,-187040287,-13444982,117204657,-511654421,-769458970,17311456,792023427,703913273,704920569,-1023533199,53590229,-1859141424,594873008,2334853,1130033010,-2042590860,-1238338255,379356161,-1598596213,648893951,1079706891,687465131,-236681202,589723610,-790431774,-958134807,-217770272,-1468773721,565154561,1286561885,-142482728,-880428517,-1082653573,-1861882241,-678961529,1020801834,1932065951,1438746215,-461314543,-1960951936,1489449960,-824856420,-87064192,-109016857,-505592,-1964799297,-1963291937,-2131348778,-353695511,179939119,-30680260,1976172276,930651638,977212410,-1948838946,-395092531,865331418,-2147154239,-1237795749,1959707427,770080972,-17455001,-564112129,-522402878,-1115231371,-568625519,-917949669,-558565616,-170330255,-51019569,200964191,1962413051,2029390541]},{"sector":7,"length":512,"data":[-382153033,1872088275,-18222400,1961786843,-2114617095,-404540438,-723353129,-788344698,-2021068782,-187858469,-2133765555,-992270868,-309758753,-167040907,1024926837,-980685002,-152701382,-138081283,534250470,-171260947,-702489,-1870861453,1431393879,1335445843,1183511020,2087122433,-104781550,1306324691,1248261888,334035952,49550330,284428020,-18422815,-134018338,-200025581,-626932762,77836020,1031861466,2078205516,-233580326,954659859,-453715392,-842602369,-1827879805,-237019815,1226508059,-377476223,-993558399,-632130753,1086715457,-12515211,-181223802,-158011952,-1009762965,-4422149,134042383,-785726729,-258027750,-1174228910,1978612606,-560042366,1585112531,-1696257325,-755107482,-1662726089,1946099157,-336007454,2026438379,1376452605,-1293584943,-1948128448,-753946174,1541460742,-915968166,-895171,333767018,603537514,1392469767,-15639921,1525633558,-2134444349,1021052788,343176680,-1295870166,174984565,-683940323,-2063657077,1960446936,451840568,933961801,-1598498567,118257047,-1328314369,-2040984688,1192800498,142143624,333120376,-75564843,-704415667,-1176923197,1914085297,-613186994,-716474593,1752366730,-451808014,867635650,-200247342,1779134985,1860356187,-503929695,1944302072,141868812,1614510228,-2063660528,-1035322207,-473880632,997391609,-277667273,-926206470,1961816971,-39130986,435931986,-1511511381,-124982786,-50391324,11926588,820213224,-133598465]},{"sector":8,"length":512,"data":[-127014911,-1813537654,-209197441,-118910536,594004474,-1923615758,-770180239,-767292035,-1006633597,766548225,221363882,221120945,1364474655,-1074262921,124984463,1627702915,2029991660,-1057083472,773597998,-176954597,-276561106,-470346761,-5643606,727699421,-905919537,993978266,-34217728,1073780886,-779208382,272795296,678821927,1694237490,-1933573202,905768700,-478839003,1031808601,2013257259,91565562,1408976710,-179772599,-985369564,-2145518689,-679462165,-1023989645,-268380049,-1991036555,1347614557,56360186,1539522767,1281086227,368956664,-840808686,-1731037874,-1191529745,1643896734,552299378,-2008575568,-270788616,-797767944,-1274759181,-730721474,184209406,-503287856,29027281,1460941439,2114713987,2140015506,2113272245,-1979714056,1988689486,330955516,384597645,-787167287,-301506816,-69170182,209215551,1190819331,1187383417,-340572171,-2082539730,-1097790210,-2134443780,-969544582,443739202,-270436274,-252183025,-301042119,-286545634,-1875782457,-96059015,397695743,1073100223,57948900,-297235581,-1336137303,-1426291152,-1442816754,2039740489,1282724470,1101672112,-352543041,2018178955,-389091011,-135535037,1590239408,-976682268,1118486329,686348606,1979057151,-1438273287,-1281152080,74091612,-1478821920,-1295863879,805698126,341289776,-1966910945,1183663475,468027700,1970163248,-1939490547,1945952276,-1437532747,743455171,-1265156224,99415629,-1739325435,1493158805]},{"sector":9,"length":512,"data":[24500723,-44735,-388368553,1499398468,74678588,1224853480,575773686,-936737615,-1442263032,-1631663832,-2047046975,-943357715,-2010763124,1376760109,-618849953,1494823930,1953847620,-237896244,-46710713,1493197263,2109988042,294248200,-34060745,-469959174,-1275467935,1023297160,-1179000032,1006948924,41745620,-1534924765,-663755960,-472173814,1736428055,-485395154,523434040,-479861853,719845163,1166145025,1704970189,1407852405,1543342056,-113568910,-1712157732,1037103675,4219519,-1069742723,-349011969,671911985,-812570647,1445486131,-104333398,1359642076,1541987505,937918575,1424499905,-613263090,-212167597,-856150690,-34226932,748501380,70925753,-1639763882,-1732623170,-71243623,-1315960985,788122088,1088949362,-733860359,854559215,-982282253,2094725532,-160695479,-465273050,-8807360,-638188897,-478094966,-788821252,585040619,-1081252869,-1959915346,39714053,1442592332,1258513668,-1602967929,-1640784516,-871278435,-1444311601,-89396743,-2120927986,-1896743605,-1692647173,1052516603,-2086076436,-1234643803,466206468,-1006633202,2028717484,-825372627,-564936165,-13010695,-352239649,-978474965,2076833821,608212942,1446428147,1784013097,1671779776,979302966,-547482231,-695137283,-304018573,1912672703,-585098983,1844370073,416024531,50604119,572537950,51249243,-857682928,-74244098,385321758,142525471,112849389,-1036317465,-43253122,-87409693,2109815754,620544506]}]],[[{"sector":1,"length":512,"data":[531671583,-1982060719,1504375592,520169054,-1737713576,1192990822,1584553443,998383677,-71557292,-1561329038,-28425780,917736345,227092202,-2075757187,1041276224,-1810725710,921021972,588164620,248964466,-64422339,2124938878,-65966912,242012679,381829484,885091430,980894471,1812688092,453077723,624219290,-453243116,-676284245,-1086341380,-1414793813,1579136909,1609338027,-637667053,247066056,-1956152576,1984904364,1188777765,-1600098599,-395751386,1194795731,1955415533,1168263103,-119204084,-1063107149,-56907506,-1171977659,164091825,-1296430869,-1279654917,-1429175971,37307717,1024651837,-1578518392,276069949,691251655,-199528858,616583716,1524674048,-988885315,-401163335,-179688922,1196231419,1763555686,28316189,-1157257806,465500184,1739917488,414453728,-904610992,-1884333827,482020381,-1056962059,-23367680,-1055260890,-888962149,-1698941288,545646768,-599083528,12068411,-15880387,100622582,1042696949,-2143505154,159330429,-852470387,1913143073,-1207596721,668144699,701899719,1154096523,-1192787994,-1933042800,-2134706485,-939710010,648443928,341011253,1384777685,1066667533,-1994895991,-1493820835,-223339281,-1373509975,202275437,1107474907,1556842169,-1053566413,-1565363658,-1563366471,-1923069975,-38147947,138392818,684848046,-667158193,-118705804,1127750283,-745803029,-761081813,326613537,-1572817743,-653266389,1438992407,1439124492,-1492094273,2040118797,-2048196559]},{"sector":2,"length":512,"data":[703329918,-2066683129,-2027504571,-1211570124,2100550313,-1372604413,-556018813,-530053039,501215511,1980038019,-432098298,1172806609,-959360888,1444217554,1439014139,279644221,1362183875,1005289064,-2072443635,-1064581916,-658834424,-793690648,147223276,-1062921552,246542593,244760576,-1066811145,-1135351774,-1073626053,513029298,978780829,22808072,-670755747,-1149012880,-887108288,-683413219,805261800,-401312280,2142306160,1011027364,-386632435,-2062879644,-918306950,52816820,-680995064,218891754,-50362904,-8371267,1565787873,-2087428357,244521597,-1275722592,2115534575,7831276,599517163,822010839,-1603105560,281762017,613610987,-1770159840,1098710490,2118717402,-8546807,-486599139,283678457,-1224469872,371129779,-812131828,1992687151,1966192904,1097525269,251655924,1094912572,990152774,105805779,-1997434763,147638796,-1507202017,869386307,-970612065,116948820,-466440964,-1729378261,-22118031,-12285288,-927101054,-387446813,-100405090,-352079422,-1310289654,951128322,116528428,341864885,870849717,-166099069,90905690,270700922,-1043922185,1366762971,3816676,1751659332,215908098,377388822,506503174,-1948172876,1021674348,-122385016,-1276168981,1724577818,1872426570,-1437584213,-1437850010,-564318888,941494841,520500126,-353305273,293275251,-460185242,-844447540,494285894,221587204,762650777,521874657,-915187018,-392626145,1975887016,-1487529460,434182665]},{"sector":3,"length":512,"data":[-851208064,-1737685385,-1165442275,898724196,-1145390843,-760700346,460664127,180703774,-1100209819,1242570586,-734488746,350664286,-1187007505,-1281237302,600488256,-1494740774,173555658,471760829,-148483810,-1117322139,-1978923401,-1084637213,-769268894,184841706,-1030978365,-1887272949,485164407,393531195,-1122890103,820291075,-1744464358,1846952884,-1538599727,-1433494239,1491596202,1870611447,1400480934,-390652180,-482023386,876489033,1875052066,-370303373,768706786,1348408297,-1488394979,185198034,2119437233,91411422,183758855,-2000439500,202231962,-549071573,-1778280721,-1326297006,987836633,-1410311845,1234309754,-1420706798,-1877339173,1465355584,-1271872879,303377217,779255387,103751248,-1332157287,808207768,-872956234,-1142633206,-900287315,280622341,-730406124,-446118284,-1429327673,-98469777,169526674,-448003880,2097630596,1330554612,-436062211,-647476165,-62289218,-131542188,-1024431063,-393709307,-1117898935,-1203971673,1915915108,640650789,754647394,-520290502,1091042412,1223405298,59176112,-1661910288,-158206975,1297489616,-1845550060,239343114,-1676641656,12045203,-2063417404,1493238836,408289864,-1899691353,-210308195,734519143,1245938886,-1527456139,-823361085,-2134751456,637962784,426176979,-1967063437,80805683,-951654848,1180449284,-1262693050,-1027204281,1859661111,-1560977917,458495736,177186627,503051746,-1355531792,-630296,-545241591,989626410,-1960566667]},{"sector":4,"length":512,"data":[1093459770,635178535,-1036344390,263439992,2122320646,-505642110,1273510657,-829046833,-2116042912,968097824,-974440728,988482333,1391141352,-1706541948,-1249952678,1962442672,-1354304717,810954947,-813649910,1631382736,1169112250,738359162,-2135175648,1398475006,524898883,1565806639,-218107648,858927408,1107167884,1162101570,927399935,1701996868,1919906915,1634607225,-113285779,1633886323,-1603309970,-10258331,1684366609,1702327328,-345672084,-1007573144,1919277665,538979955,9174270,-167653284,922418746,1769496909,1970112287,1718558829,1751607738,-1023671372,1819042080,-1385225792,1717920424,-120973427,1936648824,-1871679639,162507118,1524862415,1814065093,997484502,1679845520,544276304,1549541928,1763715362,-393262427,-1301057680,-1288776094,-100043872,116150303,678650332,809160303,128606713,-401620707,-100241796,906493795,-521349121,-495976451,-28327679,1086423488,62939649,-12516736,-972963073,125830848,83937089,-998128191,83574592,213961729,3804544,-26754801,1087275471,-893318552,-12530815,-922678273,142608832,-670971839,427825344,-638419135,-608101632,-1522476415,-16098,1088389598,-1059258081,1092386845,-1055653668,-2116756225,18170069,-401096489,-687866047,314626561,-750709888,-775876352,-12529535,-268365588,830484672,-1044844223,-2114715697,1496465650,-142477631,936705856,901838081,-197053312,-15952,1090355708,-1057029827,1094615103,-1057357314]},{"sector":5,"length":512,"data":[-2143639553,16466235,-2114338503,-17612552,-389994284,692119937,-16365,1093304363,-1058143766,1093632046,-1054015249,1223557084,-469685184,629155008,-436207807,-406771968,641787521,-490659328,-12524671,-520018945,545268160,-1610489791,1635803328,-1577058495,-1547607296,1648403073,-1497274880,-12540031,-1526634497,1686136256,1811981377,-1384010559,1845493568,1874898689,-1371443584,1791011329,-12489856,1761651711,-1467897407,2013292608,-1182680895,2037022528,2076228353,54622848,-606018,-1086226456,-1111393024,-1287603071,-1274970881,1098219639,-1049165643,-2118673201,-1720303434,-1014910271,24324090,-2140028751,-7716496,-1866379009,1363186049,1405129473,1732334208,-1778281777,1096270016,-96105,-1803446847,-1677634496,1568693440,-1645936831,-1614717184,1581293185,-15926,1083933082,-1063714469,1096319065,-1064828520,-2142700225,8995145,-1971250101,1258291008,-1899934208,1329631105,1304464641,-12497792,1140886783,-2055109439,-2029959872,1182812096,-2030526655,1119912449,8619648,-318783167,1082163585,1229215296,-330497965,1333086719,1413893971,1296909600,1126182183,-547204524,786730560,134106564,-245424127,1886654572,-1905366567,1835363118,-1046780478,982663033,322633839,1207703750,139197446,-66499076,2001691625,-65908224,1099697491,-66423812,1241254772,2013020130,167838223,34145282,41928701,134352135,48169484,34639871,33886722,335677459,-216530415,-48642056,2130838555]},{"sector":6,"length":512,"data":[68223756,1930498490,335283468,-2061954650,570749974,-110989755,1297058823,1033214182,1849847570,1737838697,-1788254554,828014041,118415657,-792401174,-2057104404,1958481505,1929580499,-653470486,-362747121,-519149695,-1473050792,234888295,-1662347933,957088121,808662785,-98976716,3487544,-604109004,-620822821,-992362560,-914235469,-843269176,-1070062150,756662261,391055167,1961000831,634004944,1527202196,-950790872,1357971440,-983231,503670819,-118003690,-1359001334,1096045390,794052940,-1914572464,-2134507648,939318804,1128007659,1483502196,688418878,-1625232168,-1217511112,-1787659865,1663631248,959520809,972796216,809106220,1210069499,1230044189,839189195,530395438,267665974,1330666248,1423775595,-153854671,-164494887,-164429708,-164347875,-154138827,1946285622,486602295,1950414392,-1509296583,1563461480,-1691295242,-1685709578,1891867638,418814966,-1007248626,955685729,-1678337268,-1678319225,848777462,-561010788,927462738,-237472472,-245351630,-248676113,-249035843,-249360650,-249676840,-249958560,51690880,-1508904458,1130072057,1292881743,1145979213,1782926876,1710293511,1710293511,1710293511,1710293511,1710293511,1710293511,1710293511,1710293511,1710350855,1527136959,-447592124,-302353898,-320740310,-571649136,-1662220511,970583306,1424878820,569169352,239267239,356117713,-932000275,-1867911700,-330415159,-987986451,316553964,1145853787,-430745777,1128659711]},{"sector":7,"length":512,"data":[1498566484,995446308,1161973040,-2109258433,954861542,824017126,1994785704,-670160224,981541862,470245606,501645546,1979913640,245370598,125950182,381217050,-440015056,-2132403008,1074723714,1107027456,-1595539449,50396064,-788797872,686161921,-436143128,1962611712,182845440,-436143302,502990080,-2098855808,-436143346,-517272885,1528412652,-1477819327,1330205727,1347665230,-1210301631,1431389671,-883079974,1168633996,-61311264,-1002093564,1504896792,-692366523,-934326770,-700759820,-454229772,-223084300,16052227,250920974,-269221829,-1124852736,-252433917,-1811204067,-196797440,-192472032,-192472032,-192472032,-192472032,-192472032,-192472032,-192472032,-192472032,-192472032,-1496481152,-11599551,-1043195,-11512592,1106313200,368115461,-983212,-12496656,-2029518864,1313774674,-55514114,-52368392,238817228,897854718,1448106757,1563946572,811421178,7680048,1129208254,659232681,793104641,399169277,1801677168,1223689686,-66960104,1241252688,1361623502,1497747973,-1797894706,1507736389,2145273748,34361148,386007557,33757437,-47675878,-389020654,33964031,453117700,151847432,-300805885,51501792,538204428,538476415,2082472985,-396287876,-992075773,-771815710,1413566469,100875592,-66748667,117964831,-84510204,83591906,151521516,-684261254,-83564031,-1710213061,2080833796,27266812,-724237916,1146207928,-740403,-391245352,-67305977,252705960]},{"sector":8,"length":512,"data":[155387916,713072781,-132382517,1515061242,26969520,80745272,1207378342,935833096,-151912414,-30991108,-2143447327,-2143256471,-2132517825,-2146205674,-2013463019,-655296483,394299903,713039488,-34136960,612372352,418784758,696311805,192940790,343940480,553646072,293602812,226494592,109067677,-2131228172,-152121221,-1098481650,-185590048,-334462964,-520224530,-2144630036,-2145221918,-299458482,1998567666,-1629160956,436127610,32501990,-2145288165,-1527998931,-1093894144,196147424,-2064335304,-2011364644,1089747138,-1842727153,-1981623800,443875808,-1647179028,209763252,12840694,1558619362,1492578816,595656442,2049896606,-500253625,-100157446,5175848,-92872064,132316226,-722145200,255011,-318992276,-56215460,1995229796,-1158130108,-499875712,2130102923,8121392,1819836479,-1462059372,1751533137,-915917298,883464419,306192000,-520301972,-804291187,-463699909,-584384066,-17559374,493939756,-1608110416,516482571,1086874172,1324359288,255902970,-767623990,-1405769604,-2136977310,-1267533298,234941493,1879307878,-1741227996,-2039944316,-1767372554,1888410852,2046224396,-490455851,-50979835,-257249080,-1610550650,-1565528340,832489148,584892791,1077672646,-603062062,-1208724784,1016481793,-253655248,-1024945016,93509834,-486737920,-434216788,-1702730534,-1340647720,-341115188,-1023609608,1747727989,1560024925,2019418310,-97786806,-969670952,-2129700743,1564268686,-431202816]},{"sector":9,"length":512,"data":[118865400,-528075050,-1629949347,1340872116,18741856,-1464412508,-288176408,1208047663,-466692396,-155670187,1163151285,-583346486,-264059175,-408686525,-1896060714,854739676,-869662696,14089460,-1191427881,-1111099384,-528459322,-387050112,764442812,-2108129087,-536627038,-1126247746,707199098,1458857214,-588895192,-1633025300,-1473543946,-1790663640,14567554,-58719769,-2099245408,-1383038800,-1599062912,-1966341461,-2144418122,-90376170,-2108609902,-598835196,-1606135048,-587948585,1940948053,-1195187115,-118842704,-1845450080,-137935128,-197551552,-59483108,-570042728,-1226775816,1542251766,-824085388,-1326920596,-259652674,-630191348,1893135992,-1763558207,-424756946,674761468,-1158355204,1571570278,2013555753,1187277491,-98806738,-29560584,-1428119942,-1776271194,-1439279058,-1167712518,-838770958,-117784348,643574661,1047696834,-603225974,-1459684098,808756224,-326815748,195258584,1484716794,-1898531135,1804645850,-929999552,124004,546331368,983752752,-1432290570,1886257314,-1877556063,1823197300,-1133940604,201370336,-1327838078,-19746813,2048701182,-61546398,1646190613,-1201826190,3590872,-264323578,-1889238770,1862017078,-128738616,1022932198,-83987968,-63686658,-1528627652,1386650726,-59060756,-999816456,-1570396014,-2135710753,1308548169,1313997295,-2132919776,1087392375,-2044102314,-669581102,-859900806,-1969831827,-449012530,1357051045,-1867055475,-2107665610,1577564522,1861774464]}],[{"sector":1,"length":512,"data":[-52632224,-1225002864,274346579,-51711797,-623889304,-1538082206,583853394,-1158660039,48912126,-2134057232,2059073617,-91210731,1286078704,385809116,-299630580,-1203245478,-1058866552,-1041743824,170824333,1346394200,1155056165,-2072368088,41036,888597016,-118458178,-1430979550,1689795157,1123729413,-521023244,-1040913774,-560278853,-1167979648,1016132284,2024970820,-995612672,210668280,385930984,1089121510,878528202,108538362,773296874,989485812,-1236545504,-1095237154,-2042756910,-25861922,1573655686,-966610722,30052469,-1302497406,-569720626,13954104,486063744,376110820,-1359865326,486079523,-84222463,-55705566,-1006829878,-814942148,-389104126,-2141106002,1977395208,-301863216,-59765883,-24186628,492989182,987884750,-1562838344,107661325,-601008298,-202356914,477118506,-889658275,-1436373801,-255162535,-17282979,-97961502,-192797598,119451346,1962067552,1915409536,948757876,-1673723280,264656360,1955394202,-1969719876,983765916,-867372968,877411438,-1559554440,-1425141518,-1046458644,-2000670182,-164735438,-197645602,-2079665142,1390417904,-1057611036,-889311615,1342912366,1577158770,-160054760,29479510,-721503618,-1829756704,-102409056,1646148166,1688783969,-60030239,-1422098758,-757850606,-1238040992,1995846080,-665277770,1280787862,758500484,1285750906,773458174,477110988,-892169918,-167770568,-1584908606,1212731478,-91836927,-93317124,-1040813844,1621631115]},{"sector":2,"length":512,"data":[-2066168827,1181800046,967111890,1457955870,-533536724,899340456,1445636144,-2146820530,-667091252,1088706695,-728623592,72920820,1353766732,-89915184,779382786,1958015060,-756776041,707318964,-1498772454,336463530,733785820,1975573042,1659822616,-288340767,-1259287632,-891550397,-861401102,-1331901768,775224840,1254281918,11545326,-1023348502,1852862204,877789754,-2098492186,-2056725310,-469514166,-1431475662,-2056681920,896060642,-1333136654,1621798628,746519574,-1426295572,-2058746202,1077550680,-1064242555,-323189774,235589633,-155913586,346592850,-2077490878,-1404932430,-2024786208,445504116,-631865192,-665566814,489610325,549232669,901932079,273757859,640220874,346743925,-1431645462,1971204134,-1063344607,-467531887,-84654216,-100231174,-224331698,-1028240208,180659200,117474032,-1332155198,-667399533,-1964856491,-1561549611,-17956722,-1401676552,-521533974,-1474487194,584276464,-233987332,-1064945993,-151723860,1611432852,2018005124,-1429391144,-1548857614,988543228,1894317296,-2115750283,-531959165,-30217344,61929724,-523208720,444723727,-297298328,-1743954570,1344601748,-1743778234,378047536,-1998962366,875891434,1055272198,961053524,-1439155565,-685202862,133758049,1882388168,1506809410,-1426316800,-1507365374,-238029622,-2045980662,1471990341,81549421,-527159135,-252622198,-199221180,-722275606,13827173,1283102878,-691304548,1882830980,-899589920,353775822,-702534549]},{"sector":3,"length":512,"data":[1486653616,370686718,1895341726,-1897861452,953328770,-33554034,-118817068,-1666540912,1180796222,2015015946,988255808,-960481128,-1530233626,-2049903090,-1202588972,1895620336,-51970559,-65759166,896512022,-2122940199,-2052231680,-2045312516,821470880,1178110089,1804370957,-1549201838,1298716352,376068186,-1800528722,-1240464650,381842970,-1914110362,1970582042,1942397592,1638834816,-1453469958,1483459256,-1171043168,1753488628,354521148,-1403192210,709703752,-1328475048,-99668400,480501360,227533340,-2125467404,-1912542682,-1259581407,1511557779,-298410428,-17407610,1317977041,1829820630,-1855727378,90891892,123220642,-687278994,714799696,-1164844456,192939120,-50546438,-2134357856,247115355,1614543100,-1463631372,-1431655274,878843454,1420566208,-1363902320,1051481134,-263050394,-630152776,432114308,1418114614,-1403100116,185573604,961130496,-438837142,1548116004,-97454584,550248981,-185939880,-61428045,-98653237,-1168593372,-53655430,1382550706,-118859808,394447016,-1980328706,1294395040,150259435,-1662202150,940457120,-1072419757,-1846651595,1090138130,1352696467,1086460952,-419542528,178930558,1053606981,-550104943,-227366669,-129924892,439219962,2042002574,1905962623,1345097899,604670167,-1957032939,483796485,-2069960087,-500803935,686486145,-197518336,1613775480,-690692356,1466535444,-896731112,204512313,1982132823,1472616112,-2040595320,1643912309,809377450,1783819432]},{"sector":4,"length":512,"data":[1074301962,1217138849,-1405860122,-1973916984,-2045651106,1973844146,-1576669680,-391554708,-1331336310,1176309338,657962742,-165486580,-1226260445,-833222296,-261143180,1388248258,1344816769,852868272,12980547,-194908470,-1896045836,1105917102,1392249949,-1503777100,417127528,672466509,-872371490,1425290691,-433345518,34936936,-562009722,-755996475,1224648021,953959182,1320210824,-459131646,-1165186647,1323888722,-1261005664,1926646474,-871358135,274160132,-66124324,811531468,-2101731220,-512406912,1751516350,2098571846,-429273416,-466265195,577398950,780503738,-221936224,-94705644,-521632338,-152290602,-1196909858,-131032999,-195541774,1619613016,-1604488980,155653204,1977144016,-1178472748,-1370051332,-657180608,1142677505,1487590278,-1373040444,-53951314,1499008230,-1335955942,1086131906,1629411916,1193861200,-1371269929,1084383365,-1734027435,-1528778610,-99164722,1350585519,1276283874,-1744136678,-86555606,-564313078,-1140684587,-1628388306,239120562,779356980,-229066095,1357651312,-254323412,-1394215736,1101842012,-1498596864,552135798,-78901294,319233598,4407342,-28045076,-1536944792,878094507,1427539482,-1791611837,96117402,-251990848,-1163296326,336610776,1965221004,-564321144,1780149998,795793576,-1259190750,1119139674,-1842714137,-1638049562,1171643904,1691781214,-52509745,-1709137668,-871061464,-329642280,-1748905471,45370564,-1016577740,27397736,1484095002,-1708076310]},{"sector":5,"length":512,"data":[-30375770,-637057894,1290983016,1623730357,1163134005,33487499,-763198957,-119211468,-1332288784,-1371509569,-755203398,-1795403387,-122658347,-1460084352,-1702528476,676437642,-696984696,637541990,1051348722,1250722634,-1270599098,-1575599439,408578885,1146399400,682363027,-800610748,544998582,-1909690196,574378638,-153721321,1188123914,-1908825394,-1750943705,1191141964,640961072,-1742304522,-2143105392,907662424,1517005954,-388675590,143986270,1200503394,1875382370,2029308255,-1187583410,105770556,-688768304,-2068677224,7895598,-18737422,34028874,-1737564542,-347418966,-1338573638,-274542230,-1933569956,-737504206,-1387222980,1420562576,-501571238,-267638064,1981891632,-632240372,-422680286,-1943109008,-1897529024,713340466,-2079928200,-1402441544,-1600070580,70940388,401485020,1238689503,-1585420159,-492551278,2122181296,-2032893794,976539987,-1127085416,2031368386,1311774546,1363342408,-787844925,-579509508,1155424504,2091973307,689333905,35265024,-800614218,-2066653246,932571682,-1046828318,-2131864242,785556706,1889193358,681661862,49438928,1482015310,1655749720,1276598594,-1582387118,1158290170,-277814696,-187127646,1751746107,1415695082,682423544,-184774144,611716352,-2127667744,-606187014,1619037096,-1100158366,-1586485967,1978666114,-654798732,143784033,-1970146670,436291234,-55670738,-190840364,250888251,-287781220,1232001732,1619531328,605809396,-922070436,1755222518]},{"sector":6,"length":512,"data":[1324262131,1692712968,386444892,877399155,-1182105888,80644617,-130498937,-185226190,878859788,55690344,-2128908712,169620029,-2147245424,-1429831426,-694826942,912699646,-1134279815,1112298980,1207996741,-1273224462,1986468845,2098731656,1743025846,-1674683365,156477542,1154351304,555550368,-691340550,-1925960172,-28450640,-1972736478,815682090,1795537580,-637137666,280117342,401363562,-1268319684,-1164167840,289772248,1051251134,1278353729,849232926,-700270632,1117783276,540724480,-195020038,-1406264637,1810932640,738901642,-66020744,-1795907520,1918722652,-132282372,1289462004,1008245490,-1565738278,1794146488,1219266218,163704540,1976620278,1536486116,-164467014,-366025616,-1867810406,74454410,351833110,1745322065,-263040788,168181494,877774442,1236115458,1410859276,-728357640,673352372,691370148,-1005934708,-1575657376,-492141656,71909381,-1736901564,-626853768,450234538,1414154293,282393664,2062696837,33974861,1745265322,1809338885,-2032223094,1638828648,25544275,681236178,-190119858,1095040702,-1192347619,285767176,939840242,-260508574,-1629051776,-1138467928,-783945699,758491246,-328579996,617906392,22292710,1654691408,1386958144,-59721066,853642404,786233952,-995558809,2040677002,-1801664438,-1396928848,-1694749664,-1434360595,1817968640,-191073199,-126966967,1974521692,-1915228990,781586563,-88986388,-2128043872,-1842938114,-515610476,-1166883291,649718845]},{"sector":7,"length":512,"data":[-1239368979,-2077543000,-1564316558,339838604,290559138,-120125986,-217577332,-903946074,818997946,1414847595,1308121600,-1530865599,1652456644,-471725516,-1837035187,875582086,1313231170,-964410188,-934247807,719157088,-1724225816,-1361918464,436841038,81066616,-1509210696,-931839000,-431837806,-1265941246,-1024310588,579774140,340874436,-86749720,-25606950,-1971317291,839078328,164801589,-2106188150,-1050107218,934325438,1385081237,1353615891,1219103908,1090898534,-629866084,-201146048,1019802262,1993009344,706087800,1984267980,13871090,1652783168,-961279482,-55023742,-1462055174,-885606311,1688396465,1489649706,559658236,-1440302974,-1054682912,2090268915,-829882624,-713005956,-763354691,1516804324,-900271888,-1807545250,-1962871804,-802783138,43892990,-1750969040,-132244444,-1194539399,-1878153790,584176070,-1407147468,148900520,-1980062808,-1437538278,70999657,1169314391,-1191829289,1157242020,570736848,1162240168,-1771611102,-2114043258,-1389446040,80926766,1115745451,821194626,1449785969,-2009747714,-1302264134,-123177661,-1997882871,-2106746782,102683764,362983166,683595985,915929783,-1167192812,1761346528,-166375990,-328782600,1562043062,-132901102,1909029024,-2097646978,-1976533974,896491548,-1393528720,-2054882709,888562179,1526121195,1526231645,-1553067864,-1027410912,1720123044,1747333765,-355029418,-699219814,-1534922159,1556400864,49473667,1523116692,1145882657,1313918394]},{"sector":8,"length":512,"data":[-1538247570,-2112223727,1381640188,-1101704858,1279427900,1721823828,-1878453086,-97240533,-394865014,-520724160,893396618,1129387180,679751746,-2103803892,-1297280958,-186178598,-617548232,-138263160,1687584780,-1109506038,73839518,-229290744,1350184064,290357370,-1912558538,687143068,2030358106,1170013203,-428404221,6965993,941268141,408420905,-234286918,323499574,43066043,-1897077196,42513520,749081121,742707269,-882201291,-356845053,-425087950,-1537018182,1745312856,-1163230856,1610924198,2079097062,-1633903896,2096661779,-691653568,1536217361,980427160,-1939758504,-289119565,-86492635,-1507161574,-1696586520,-1399818187,416742411,773498964,1441272836,-850039725,134901832,2057968408,-1569021334,-2072111834,-1320397175,347750982,295572544,74890958,409660485,-1899446600,-704504286,581086431,-2129330157,785089856,1697827578,-892944712,1492318741,-697894103,126025856,1308629283,-1961165076,-355444052,-621008876,-2111041962,-463946346,351543826,-1258813530,-729134344,439982198,-1276870182,-1945054672,1391912833,5514138,-829522146,1342181923,-380069247,-759138047,-837546378,-333334858,963653856,-267063144,1089555885,2091113330,-1721503196,-487172896,-1904965063,1882528286,2055956516,-158665516,-249276786,-1073734389,19866776,578322739,-2124985801,519734215,32456908,-1266126116,-1001388715,842299628,687457290,-20393641,1587064946,1317220568,1091723940,-1496953726,-264255752]},{"sector":9,"length":512,"data":[861595,634684242,-1093373937,1483596490,-1236241171,2060490873,1725604490,-2046576496,-439734632,-328349061,1078634590,1654833233,816068324,957698784,1376004524,-1609286108,2040593638,-1202127735,-2143242087,755118800,1070122180,-1171877681,424082944,13388421,-2097748294,-1141345592,-51317184,-490698915,205198058,1132919010,-521734914,-327919057,-22271864,-1259208689,-1131090328,-387685356,1856661510,-1603490795,-2134859110,341032530,17136650,1737890036,1185191144,511794395,1081638097,153587871,-402698752,42280865,2435026,-1826170208,-1985972542,-1543441738,140311654,-460525544,1785211990,-1129789824,-1279097838,1022498546,-622980093,-1510684946,-529765503,1440497691,-1301833148,284194850,-851669394,-2099772176,-492538351,-1542686675,-164490104,-1879044892,-1797066074,-2031133127,-1306726264,-1098862554,-1627112278,-663968360,-1281725886,1343942753,-98516539,-1669311718,-942021470,355043436,1703682560,-265672260,1042913186,-354469120,904823087,-960035230,1378826770,-1279622414,-256765892,854890231,-1014925945,-812859263,19591949,-1805408256,-788528897,1976237805,-393499387,-389869390,-674168847,1929374952,-1325222380,-1841149,-555218574,-791162625,720560870,-1325222146,-389612028,275972045,-957810718,-32672769,-4200250,-956431757,720096906,1929360616,-1241272048,-5511168,-102574384,-351680896,-930435865,-351157885,-402411251,-674168939,-805373470,-1977220431,-85808639,1946125544]}]],[[{"sector":1,"length":512,"pattern":0,"data":[-118774781,-1392542488,-661979209,1927840114,987132671,-388139525,661913449,-749271887,62950639,49053895,-2124431218,-2130702361,1444937927,-661852461,-661731837,266764638,1572465408,482221838,322484480,2025851821,-1899691255,-661934656,-523172117,-670828335,-500235994,857671655,872362989,869413878,-356502565,63218,875772172,875574071,926430259,53]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"data":[538988555,541859872,538976288,538976288,538989600,538976288,538989600,538976288,538989600,538976288,538989600,538976288,538989600,538976288,538989600,538976288,537529682,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,220209184,538976266,538976288,538976288,-842151648,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,168672205,538976288,538976288,538976288,538976442,1193287712,1869832809,1699881070,1918985587,1126197347,1869640303,1769234802,538996335,538976288,537529786,538976288,538976288,-1172299744,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,-1172299744,538970637,538976288,538976288,549068832,538976288,538976288,538976288,757083424,1480674592,757083424,538976288,538976288,538976288,230301728,538976266,538976288,538976288,539015712,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,168671776,538976288,538976288,538976288,538976442,1953264973,1935766633,1735289195,1953841440,1952542063,544108393,1667594309,1986622581,538976357,537529786,538976288,538976288,-1172299744,538976288,1327505440,1634887024,1852795252,1142975585,1734964069,1867391086,544433524,538976288,-1172299744,538970637,538976288,538976288,-842522592,-842150451]},{"sector":4,"length":512,"data":[-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,230477261,218762506,1967333898,1852142194,1750343796,1684104562,757932066,168626701,538976288,1701336096,1919448096,543449445,1952540788,1663071015,1701999221,2037150830,1853190688,1735289198,1849761838,1970151545,1919246957,543584032,1701996660,544433249,538970637,1830821920,1646295393,1914839141,1634627189,577072226,1701650476,1852403297,1752440935,1948284001,544826728,543519329,1701147238,544175136,1667594341,744846453,537529632,538976288,544503138,2037149295,1701736224,1919448096,543449445,1629516897,1835627552,1936269413,1952669984,1819042165,1970413689,1852403310,220212839,571084042,1701996628,1395483745,1769239151,539125614,1701081679,757932146,168626701,538976288,544491808,1629516649,1852383342,1819240822,1701601889,1937339168,544040308,1852404336,1819306339,1752440933,1948284001,1746953576,1701341033,220230771,538976266,1919950880,1769107305,1914730868,1634627189,543517794,1701996660,1763730529,1818304627,1937334647,1701344288,1701736224,1768251936,1914726254,539913845,1936287828,537529632,538976288,1851876717,1752440947,1998615649,1701733736,544367990,1953459809,544367976,1701996660,1746953313,1629516641,1886330990,1953656688,1953066613,1869881465,537529632,538976288,745436530,1937008928,1769107488,1953067631,1936269433,1836016416,1701994864,1869881444]},{"sector":5,"length":512,"data":[1701344288,1920295712,1953391986,1919448096,543449445,543452769,543516788,538970637,1746935840,1701341033,1919950962,1769107305,1948285300,1634038376,1718558820,1701344288,1870099488,544434464,1869376609,543450487,1663070068,1769238127,543520110,538970637,1914708000,1768844917,539912046,1948280393,1663067496,1634757999,543450482,1701996660,1881171041,1919904114,1701409897,1918967923,1684611173,1769238117,745300323,537529632,538976288,1663070062,1735287144,1668227173,1936880995,168632366,538970637,1092624416,745501548,1869439264,1998612334,1769236833,1948280686,1634038376,1864397668,1684611174,1769238117,543973731,1869181552,2037672306,1752440876,168632421,538976288,1919448096,543449445,1952540788,1646293799,544105829,1953063287,543649385,543516788,1196314444,542397253,1931506537,1667591269,543450484,1646292852,168632421,538976288,1853190688,1750343726,1763734377,1835606131,1835363440,1702129253,2036473956,1919906592,1735289204,1819042080,1936288800,1864397684,1752440934,1684104562,1852383347,537529632,538976288,1869181552,2037672306,1701273901,1685221152,539914853,543516756,1936877926,1752440948,1684104562,544106784,1635197025,1852404841,1752440935,1684104562,537529632,538976288,1953720684,1818851104,1700929644,1701344288,1734961184,1953719656,1769107488,1953067631,1752440953,1684104562,1851858988,1835081828,543649391,1701996660,544433249,538970637]},{"sector":6,"length":512,"data":[1864376352,1684611174,1769238117,543973731,1869181552,2037672306,1752440876,1869357157,1936025454,1635197044,1852404841,1752440935,1684104562,1818851104,1700929644,537529632,538976288,1936877926,1411395188,544434536,1797288809,1853321070,544432416,1919448098,543449445,1953656691,577203817,1685221152,773878373,1629498926,1763730542,168632435,538976288,1702065440,1752440932,1735749490,1953853288,1701344288,1937339168,778921332,168626701,538976288,1919439904,1935958373,1701994784,1835364896,1684371055,1869768224,1752440941,1919295589,544501359,1948280431,1814062440,779383657,1919439904,1935958373,1701994784,537529632,538976288,1701078113,1869881444,1701344288,1936288800,2036473972,1633907488,1852403310,1752440935,1768693861,1713402995,544042866,1852797542,1869881460,1667326496,168632427,538976288,1634038560,1768448882,1713399662,1948283503,1713399144,1953722985,1919448096,543449445,1814062703,1919252335,1769107488,1953067631,1752440953,1948282465,220226920,538976266,1852383264,1953654131,543649385,1701996660,539911265,1852139607,1970234912,539780206,543516788,1701996660,1763730529,1684086899,543450468,1713401449,1953394546,537529632,538976288,1948280431,1814062440,1702064997,1919950962,1769107305,1998616948,1769236833,1948280686,1634038376,538979940,538976288,168626701,1852732754,1701601889,1919439904,543449445,1953720652,221064480,537529610,538976288]},{"sector":7,"length":512,"data":[1936287828,544434464,1752440929,1684104562,1919906605,1919885428,1701995876,1768693860,1864397939,1853169766,1668246626,543450475,1920103779,1819569765,168632441,538976288,1853190688,1818386798,1752440933,1684104562,1411395187,1746953576,1701341033,1881175155,1919904114,544830569,1852732786,1701601889,1919448096,543449445,220230505,538976266,1818304544,1937334647,544497952,543516788,1852797542,1718558836,1701344288,1936288800,1461726836,544105832,1752440929,1684104562,1937077024,1684956528,168632435,538976288,1937008928,543583333,544370534,544829025,1935762802,1948282479,1881171304,1919904114,544830569,1948280431,1713399144,1953722985,1853190688,1818386798,168632421,538976288,1919448096,543449445,1663071081,1634757999,543450482,1629515636,1864399214,1919248500,220212851,1393167626,1702130553,1767121005,1092642157,1970234211,1852404846,757932135,168626701,538976288,1937330976,544040308,1701669236,544434464,1853189987,543450484,543452769,1935762797,1684370037,544106784,841889841,1667593007,543452783,1701669236,168632434,538976288,1667855392,539915115,543516756,1701669236,1751326834,1763733609,1701978227,1735357040,1835884914,1948279909,1868767343,544501365,1853321060,1869768224,168632429,538976288,741684768,540226613,1752457586,1948283493,544104808,892089654,539768371,1701733735,1769234802,1629513582,1129663776,1869422664,1629513074,1920295779]},{"sector":8,"length":512,"data":[543519841,538970637,1948262432,543518057,1679844975,1663072609,1953396079,1648435246,1970040691,1914725748,543973733,1701669236,544434464,1919906931,1763730533,543236206,538970637,1679826976,1818391919,1870081381,1713398898,1634562671,1935745140,1701344288,1836412448,544367970,1948280431,1936417641,1852404512,1310745955,1495299941,1936875877,168632364,538976288,1851869728,2037539189,1953706272,959520812,539898425,1936287828,1919903264,544498029,1702259047,1937055859,1965056288,1970366830,2037588069,1835365491,537529632,538976288,1701669236,1634235424,2019893364,1701996912,1852383347,1937074720,1853169780,544367972,1702258035,1851859054,543236196,1718378856,1634040096,539915122,544098600,538970637,1814044704,543519841,1701737802,543584032,960051505,220211502,537529610,538976288,543516756,1953724787,1965059429,544433523,1634493796,1868767353,1937010293,1701868320,1768319331,1629512805,2003050611,1801677140,1411395187,544434536,220230505,538976266,543236128,1647129139,1948284009,543908713,1853189987,1718558836,775434528,1701322802,544896114,1801677172,1461726835,544105832,1684370293,544432416,168632417,538976288,1835627552,1953853285,1818326560,539780469,1701978160,1852994932,1752440947,1969430629,1852142194,1953702004,543519841,1948280431,1864394088,1667590754,168632436,538976288,1953068832,1953853288,1767995168,1735289204,543236140,1970037110]},{"sector":9,"length":512,"data":[1718558821,540093216,1953719668,1868963955,2003771506,1936876910,745564520,537529632,538976288,1970365281,1852404329,1953046631,543582496,1767994977,1818386796,1969365093,1701716084,544367990,1953063287,543649385,1629515369,1663072622,744846177,537529632,538976288,543452769,1998598445,1937008993,1684957472,1852401253,1818588265,168636025,538970637,-920641504,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,220249037,538976266,549068832,538976288,538976288,538976288,538976288,1411391520,1634038376,1632444516,1701273966,1953391981,538976288,538976288,538976288,538976288,538976288,168632506,538976288,-842151904,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-1127363123,218762528,1701987082,1600484449,1701996628,220226657,1393167626,1701868405,1415537774,1634038376,168632420,1699875341,1701672307,1919439967,543449445,168626701,1953069125,1919439967,543449445,168626701,1601463635,1701996628,1348428897,1919904114,544830569,168635693,538970637,1126178848,1735287144,1752440933,2019893349,1953850213,544108393,1869181552,2037672306,543584032,1752440929,1684104562,168632366,538970637,1226842144,1752440934,1752440933,1684104562,544434464,543516788,1920103779]}],[{"sector":1,"length":512,"data":[544501349,1701996660,539780193,778382953,1701344288,1919448096,543449445,220230505,538976266,1751326752,1768386145,1763731310,1864397684,1881173623,1919904114,746157161,1701344288,2003136032,1769107488,1953067631,1936269433,1836016416,1701994864,168632420,538976288,1953068832,1752440936,1919950949,1769107305,1864399220,1752440934,1768300645,544502642,1852732786,1701601889,1919448096,778330469,543574304,1931965545,2003791392,537529632,538976288,1936942444,1752440876,1752440933,1684104562,544434464,1702063721,1684370546,544106784,543516788,1852732786,1701601889,1936288800,1851859060,1752440932,168632421,538976288,1734961184,1953719656,1769107488,1953067631,1752440953,1684104562,1936028192,1936026997,168632366,538970637,1226842144,1752440934,1969430629,1852142194,1752440948,1684104562,544434464,544501614,543516788,543518319,1852400994,1751326823,1701277281,1948265572,220226920,538976266,1752440864,1684104562,544434464,1633906540,543450484,543452769,1932354930,1702130287,1769414756,1852401780,1701344288,1919448096,761553253,1953720684,544500000,538970637,1864376352,1886741347,779314537,543574304,543516788,1701996660,1646290017,1735289189,1634231072,1684367214,544434464,1948282473,1914725736,1634627189,543517794,538970637,1814044704,745829225,1684955424,661940512,1701716083,1919950967,1769107305,1763735924,1768431731,1919248487,1634235424,1752440942]},{"sector":2,"length":512,"pattern":538976288,"data":[1969430629,1852142194,168632436,538976288,1919448096,744776037,1701344288,2003136032,1919448096,543449445,1768383842,1914729326,1768844917,539912046,218762528,1701597962,1415540837,1634038376,2003052644,1801677140,757082483,218762541,538976266,1968381984,1852141683,1752440932,1969430629,1852142194,1752440948,1684104562,1919903264,544695328,1701669236,1767121010,779316067,218762528,538976266,541138976,1701996660,1830839393,1881176417,1763734645,1818588020,1869881446,1701606176,1713401957,1478521455,1835627552,1948283493,1936417641,544175136,220226914,538976266,2002853920,1852140385,1629512805,1752440948,1634476133,544367988,1919971425,1769107567,543519841,1701669236,1716068398,1701344288,1635213600,1768842603,220227438,538976266,1752440864,1684104562,544434464,1629513327,1734961184,544367976,1869181552,2037672306,1634235424,1752440942,1852383333,1920099700,1702129781,1752440932,1684104562,168632364,538976288,544500000,1970496882,544433517,1667594341,1869182069,1835606126,1768187245,1818588257,220212857,218762506,538976266,-842457056,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,168632507,538976288,539015712,538976288,538976288,538976288,1394614304,1751346809,1768845170,1769234810,1327525487,1667590754,538997620]},{"sector":3,"length":512,"data":[-1172299744,537529632,538976288,-842150456,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,549244365,538970637,220209184,1632135178,1701602414,1701987104,1600484449,1702125895,1232545824,1769236846,1866689633,745827957,1632466720,1970104696,1970226029,539587694,168626701,538976288,539831584,1634038371,1629513076,1819634976,1697474932,1701668204,1914729582,1970238309,761619314,1634623853,1701668199,1864397934,1667590754,168632436,1214777869,1818521185,1917001829,1702125925,1953844575,673216613,1768835426,1818323316,1701738319,168634738,538970637,757080096,1919098925,1702125925,1830838560,1635087477,2019893356,1937075299,544108393,1701470831,220230755,218762506,1701987082,1600484449,1634559315,1919903856,757932133,1819033888,1952539503,543236197,1634559347,1919903856,1868767333,1869771886,1818370156,543908719,1111708456,220212777,538976266,1917001760,1702125925,1646289184,1801678700,544175136,1634623853,1629513063,1835365152,1869115489,1629513074,1931502702,1948284005,1931502952,1885433189,1701998440,537529632,538976288,1629515636,1818845558,1701601889,1635021600,779318644,1952797216,1936618101,1701344288,1851877408,543517796,1768910888,1919251566,1869881385,1701344288,537529632,538976288,1869376609,1702125923,1129521252,1411395138,544434536,1684955496,1998611820]},{"sector":4,"length":512,"data":[1684829551,1887007776,1818321769,1646295404,1819287653,1684366177,1953392928,543236207,538970637,1730158624,1633841004,1852514412,544110447,1633906540,1852795252,1816207406,1852990836,1986622561,746155109,1111708448,1663071015,1646292577,1701978213,1818846305,168632441,538976288,1717920800,1684369001,544497952,1702064993,2037146221,1835627565,220212837,218762506,1632135178,1701602414,1701987104,1600484449,1852143173,1646796916,1970168141,1699900513,745825651,1850303008,1634301033,1635013484,220816756,537529610,538976288,1663053101,1952540018,1851859045,1651663136,1634890857,1696627058,1953391990,1784835872,544498533,168626701,1851869288,543517796,1634038339,1130325364,1769236850,1600938339,1952671059,544108393,168634664,538970637,757080096,1919098925,1702125925,1663066400,1769236850,543973731,1952671091,544108393,1701470831,220230755,1141509386,1952803941,2035507045,1919443822,2053729903,1869182049,1649368942,1952671082,1214785568,1818521185,220211557,537529610,538976288,1142959405,1952803941,543236197,1953724787,1931504997,1751346809,1768845170,1769234810,1864396399,1667590754,168636020,1113721357,543977327,1970365249,677737065,1784827752,1215587173,1818521185,1679830117,1667847287,539587435,168626701,757932064,1853444896,1869768803,1702521198,544108320,543516788,1784827752,1215587173,1818521185,1651449957,1952671082,1633099822,544437353,544370534]},{"sector":5,"length":512,"data":[543516788,538970637,1864376352,1667590754,1869881460,1667588640,543518063,1767994977,1818386796,1868963941,2003771506,1936876910,779118952,543574304,543516788,1701470831,1763734627,168632435,538976288,1948279072,1634038376,1948265572,544434536,1969447791,1998615410,544105832,543516788,1701996660,1948279905,1768780389,1702125934,1953046643,1718379891,544825888,538970637,1696604192,1769236856,539912046,168626701,538976288,543574304,543516788,1701470831,1763734627,1869488243,1986076788,1634494817,744844386,1937077024,1684956528,1701344288,1818321696,1735289196,1919448096,543449445,538970637,1713381408,1965060719,1869881456,1417110560,1936417641,1667855392,539915115,1948280393,1713399144,1952673397,544108393,1970562418,544435826,1163219540,1702305836,537529632,538976288,1702257000,1701143072,1919361134,1702129249,2003771492,1936876910,544237928,1948280431,1864394088,1667590754,1226845812,1953046630,1952805408,1936618101,537529632,538976288,1397506374,1998597189,1634213989,1914725750,1920300133,543450478,1702127201,1769218162,1735289197,1953853229,1953068832,1953853288,1853320992,1752396389,539914345,168626701,538976288,1953451552,1092631141,1417110560,1936417641,1818326560,1864394101,540024934,1886218611,1914730860,1920300133,1948283758,1931502952,1970561396,1718558835,1701344288,537529632,538976288,1701470831,1461744739,1330140233,1629508693,1769304419]},{"sector":6,"length":512,"data":[1735289202,779381024,1981825312,1702194273,543584032,1701257265,1948283764,1864394088,1667590754,168632436,538976288,1280200480,1179197529,661940512,1986076787,1634494817,543517794,1752459639,544503151,1953063287,778530409,1684947232,1981833504,1702194273,543584032,220213549,538976266,1635196960,544437353,1701998438,544367990,544370534,543516788,1701470831,539915363,168626701,1970365249,1600483945,1634559315,1919903856,1399335013,1885433189,1701998440,2003050540,1801677140,757082483,1665212461,1919513969,543236197,1970566509,2037148769,537529632,538976288,1818458213,1986622325,1831346277,2019914869,1702043689,1752195437,778400367,543574304,543516788,1634559347,1919903856,1936269413,1919705376,2036621669,537529632,538976288,1701738351,2036473956,1869504800,1919248500,1919448096,744776037,1937077024,1684956528,1768453152,1752440947,1684104562,1953396000,1763732585,1936269428,537529632,538976288,1970365281,1684370025,168632366,538970637,1461723168,544105832,543516788,1701996660,1763730529,1970479219,1852141683,744777060,544500000,1881174889,1701011820,1852383332,1701344288,1936288800,1718558836,537529632,538976288,1701996660,544433249,1953063287,543649385,1629515636,1769304419,1948280178,544434536,1634559347,1919903856,1411395173,1814062440,544502633,220230505,538976266,1869815840,1684370546,544106784,1919448098,761553253,1953656691,1919885346]},{"sector":7,"length":512,"data":[745694564,544825888,1869181552,2037672306,1919510048,1629516915,1864393838,1919247474,537529632,538976288,1763731055,1919251310,1852795252,1667592992,778333807,544166688,543516788,1953720684,544434464,1819045734,1684371311,1953396000,1629514857,1919448096,543449445,538970637,1864376352,1869357158,544367991,1869181552,2037672306,544434464,1853189990,1629498468,1948279918,1663067496,1701999221,1948284014,1634038376,1936269412,537529632,538976288,1667329136,1763730533,1919295598,544501359,1948280431,1814062440,1919252335,1769107488,1953067631,1752440953,1684104562,168632366,538970637,1461723168,544105832,1936287860,1935747104,2037276960,1752440873,1684104562,544434464,1886614899,1701080677,1931488356,1701015145,544500000,1819635575,1634213988,220226934,538976266,1700929568,1948282469,1746953576,1701341033,1881175155,1919904114,544830569,1852732786,1701601889,1919448096,543449445,544370472,543516788,1751607656,220230245,538976266,1919950880,1769107305,1948285300,1634038376,1870078052,543452277,1701997665,544826465,1702257000,1701143072,1970413678,1852403310,1948264807,1713399144,1953722985,537529632,538976288,1734961192,1953719656,1769107488,1953067631,1948264825,1634038376,1852383332,1701344288,1970414112,1650552430,1948280172,1634038376,1814045284,544502633,220230505,538976266,1701978144,1701672307,220212836,218762506,218762506,1866621450,1377856623]},{"sector":8,"length":512,"data":[1634036837,1747477875,1701470799,1632138339,1701602414,168632361,538970637,757080096,1699881005,1935762796,2003771493,1936876910,544237928,1629513327,1853453088,1869768803,1635412334,1852795252,1784835872,544498533,168626701,538976288,543574304,543516788,1920103779,544501349,1701996660,1679844449,544433519,542396238,544110447,543516788,1701470831,539784291,543516788,1668183398,1852795252,537529632,538976288,1970562418,544435826,1397506374,1092628037,1836413811,543649385,1952540788,1701344288,1920295712,1953391986,1919448096,543449445,1936027492,1853320992,537529632,538976288,543516788,1701470831,539784291,1763734633,1701978227,1935762796,1713398885,1965060719,1646290291,1851859065,1635197049,1852404841,1752440935,1684104562,220212851,1376390410,1634036837,1398760819,1885433189,1701998440,539831584,1701602642,543519585,1701738351,1768452978,1718558832,1931501856,1885433189,1701998440,1684955424,537529632,538976288,1752327536,544436321,1970496882,1696621933,1969448312,1852795252,543584032,1751607656,1881174629,1919904114,544830569,1701996660,539911265,168626701,538976288,1701336096,1919510048,1948284019,1634038376,1635197028,1852404841,1852776551,1701344288,1835365152,1869115489,1629513074,1769304419,544433522,538970637,1864376352,1919250039,1885956211,543584032,543516788,1634559347,1919903856,1851859045,1936269412,1684106528,1970413669,1650552430]},{"sector":9,"length":512,"data":[539911532,1668180307,1818304613,168632428,538976288,1767995168,1735289204,1919448096,1935958373,1701994784,1702195488,543450485,1881173609,1919904114,762934377,543516513,1701081711,1948265586,220226920,538976266,1768431648,1936025703,1919950964,1769107305,1948285300,1634038376,1752440932,1931965537,1701143072,1635197038,1852404841,1752440935,1869357157,1936025454,168632436,538976288,1818851104,1700929644,1819042080,1684371311,544175136,778990962,543574304,1936287860,1919448096,543449445,1864397673,543236198,1751607656,220230245,538976266,1919950880,1769107305,1948285300,544104808,543516788,1920103779,544501349,1701996660,539780193,543516788,1701602674,1852404577,1752440935,1684104562,544434464,538970637,1881153568,1701011820,1852383332,1948282740,1914725736,1634627189,543517794,1953720684,1851858988,1752440932,1701978213,1935762796,1948279909,1634038376,1936269412,537529632,538976288,1701077357,1920295712,1953391986,1330520110,540689748,543516756,1701602674,1852404577,1752440935,1684104562,1398099232,1700929620,543584032,168632417,538976288,1734961184,544367976,544370472,1635086693,1881155948,1919904114,544830569,1629515636,1864399214,1919248500,1853190688,1818386798,1752440933,1684104562,1919885427,537529632,538976288,543518319,1948280431,544040296,1819635575,1818304612,1684104562,1700929657,1701344288,1701736224,1853190688,1735289198,168632366]}]],[[{"sector":1,"length":512,"data":[168626701,168626701,1601463635,1852143173,757932148,168626701,538976288,1953060640,1632444520,1818326382,1936020013,540701797,1701602642,1936028513,2037276960,1767995168,1735289204,1919448096,1935958373,1684955424,1635021600,220230521,538976266,1869488160,1818373486,1768645487,1965057902,1818850414,1936020000,1163883621,1953391990,544434464,1819310181,1953063785,1663072620,1701604449,220212836,537529610,538976288,1752459607,1953841440,1699884399,980706675,1818579488,1702060389,1931501856,1818717801,1986338917,779382373,543574304,1701736302,1701994784,537529632,538976288,1953063287,744975977,1635021600,1852383353,1701344288,1852796448,1869373997,1852402531,1953701991,543519841,1769238133,1852776556,1752440933,1684104562,537529632,538976288,1970365281,1936028265,1701344288,1702257952,1864397934,1667590754,1948265588,544105832,1701670249,1952541028,544828517,1953068915,1948280931,168632431,538976288,1869373984,1852402531,220212839,1376390410,1952805733,1702249823,757101678,218762541,538976266,1850679328,1998616940,543716457,1970168141,1378708577,1952805733,1816272954,543908719,543976545,1701996660,544433249,1948282479,544434536,1852143205,220212852,1342835978,1702063221,1702249823,757101678,218762541,538976266,1716068384,1701344288,1702257952,1763734638,1851859059,1953841440,1699897199,544499059,1852143205,1696607348,1952670072,1864399212,1948280174]},{"sector":2,"length":512,"data":[1634038376,1764237412,168632430,538976288,1919448096,543449445,1953656691,1685221152,539587173,1914729321,1634036837,543450483,544370534,1667594341,1869182069,1226845806,1869488230,1629513070,220226930,538976266,1701847072,1852400750,1914711143,1920300133,1869881454,1869373984,1852402531,1953701991,1937077345,1953068832,1953853288,1818587680,1769169253,1629513582,539916654,168626701,538976288,543574304,543516788,1852143205,1936269428,1293967648,1635085921,1699897196,544499059,1852143205,1629498484,1998613612,1769236833,1948280686,1634038376,220230500,538976266,1918967840,1701978213,1935762796,1713398885,1696625263,1969448312,1852795252,1701344288,1752440942,1986338917,544501349,1701670249,1952541028,544828517,538970637,1914708000,1920300133,1948283758,1818370159,1768645487,1931503470,1970561396,220212851,220209162,-842150646,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,168632525,538970637,538976288,538976288,538976288,220209184,538976266,-842457056,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,168632507,538976288,539015712,538976288,538976288,1293959456,1394628673,1702130553,1916870765,1953065059]},{"sector":3,"length":512,"data":[1970561893,543973746,1852138323,1869181537,538976288,538976288,-1172299744,537529632,538976288,-842150456,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,549244365,538970637,220209184,1819033866,1835627552,1830842981,1634956133,544433511,543519329,1953523051,1919906592,543450484,1869574952,1953719662,762278957,1702125932,539587699,1948282473,220226920,538976266,1767120928,1366451565,1702192501,1850679342,1702257952,1663072626,1801678700,1667855392,1948265579,1931502952,1702130553,1769218157,1763730797,168632435,538976288,1685091616,1684370529,1851858988,1868767332,1918988397,1948279909,1752440943,1769218149,1970234733,1769218164,1864394093,1752440934,1768300645,544502642,538970637,1948262432,1919249769,544106784,543516788,1969583473,1461726821,544105832,1769218145,544367981,1701669236,1970217075,1763716212,1936269428,1852142368,1869881460,537529632,538976288,544437353,1735549300,1948284005,1634038376,220212836,1460276490,1701733736,544367990,1229987937,1936269394,1769108512,1919248231,1763730533,1851859054,1717989152,744842089,572547360,542263632,1346982484,574899536,537529632,538976288,1936942445,543516513,1931506537,544501349,1948282740,1344300392,1830834761,1734438497,539914853,543516756,542263632,1634623853,544367975,538970637,1679826976,1919251557]},{"sector":4,"length":512,"data":[1701734765,1752440947,1634607205,1701999988,543584032,543516788,542263632,1734963828,745694567,1684955424,1852142368,1864397668,220230773,538976266,1684086816,1769236836,1818324591,1936026912,1701273971,1935745139,1886413088,1919971186,1702125929,218762542,1936674826,1767137140,1601332589,1701996628,757097569,218762541,538976266,1750343712,1948283753,1634038376,1701978212,1986618723,1830843237,1634956133,544433511,1752459639,1713398048,1920300149,1769218149,1970234733,1635131508,778401132,537529632,538976288,1931506761,1668440421,544433512,1869768820,543713141,543516788,1701669204,1766612850,1814066291,1768648559,1713399662,1629516399,2019893358,1769239401,220227438,538976266,1852383264,1851880563,1864394083,1752440934,1948283753,1919249769,1851858988,1718165604,1970234912,1914725486,1852402789,1763734379,1952522356,1701344288,537529632,538976288,1886351984,1881174629,1701011820,544106784,543516788,1701669236,1751330162,544106849,543452769,1768976227,1948283749,1948280168,1868918121,220230773,538976266,1635131424,543520108,1869901417,779381024,218762528,218762506,1701336842,1869815918,1852794221,1852121189,1936876916,1193304352,1864385362,1667851878,1752440933,1768693861,1937008743,1701994784,1920300064,543450478,539782767,543452769,168632417,538976288,1920300064,1718562158,1769218150,544367981,1931506537,857764965,1768759344,1702131054,1634476147]},{"sector":5,"length":512,"pattern":0,"data":[779249012,218762528,6666]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"data":[538976267,541925408,1277173792,538976288,1411391520,538976288,1411391520,538976288,1411391520,538976288,1411391520,538976288,1411391520,538976288,1411391520,538976288,1411391520,223485984,537529610,538976288,538976288,1634228000,544417652,543516788,1684366702,1919903264,537529658,538976288,538976288,538976288,1699553312,1734439795,1701978213,1885955427,1667309684,2003791467,1734632812,1852140901,220217204,538976266,538976288,538976288,538976288,1953063255,543649385,1830841967,1769237621,543517808,1701470831,1064531043,537529632,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,537529632,538976288,538976288,538976288,538976288,-920641504,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-1144140339,538970637,538976288,538976288,538976288,538976288,549068832,538976288,1651066656,544108403,1702061394,1751347809,1919894304,1634889584,1852795252,538976288,230301728,538976266,538976288,538976288,538976288,538976288,539015712,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,168671776,538976288,538976288,538976288,538976288,538976288,538976442,538976288,538976288,757080096,1293954336,757094465,538979616,538976288,538976288,538976288,537529786,538976288]},{"sector":8,"length":512,"pattern":-993737532,"data":[538976288,538976288,538976288,-1172299744,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,-1172299744,538970637,538976288,538976288,538976288,538976288,549068832,1967988768,1953068140,1768649569,1092642670,1836020853,1869182049,2017796206,1953850213,543520361,230301728,538976266,538976288,538976288,538976288,538976288,539015712,538976288,1701859104,1769234802,1818324591,1936016416,544106345,1702129486,538976371,538976288,168671776,538976288,538976288,538976288,538976288,538976288,-842150456,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,218762684,538976266,538976288,-635428832,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,220250052,538976266,538976288,-1289740256,538976288,538976288,538976288,538976288,1701996628,1293968481,1734438497,1852140901,1984897140,1769370213,538998629,538976288,538976288,538976288,168669984,538976288,538976288,-994041824,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,168632537,538970637,538976288,538976288,1701996628,544433249,538970637,538976288,538976288]},{"sector":9,"length":512,"data":[-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,537529632,538976288,538976288,1919439904,1935958373,1701994784,1702389024,1769239907,1864396399,1667590754,1948283764,544498024,1667594341,543519861,543516788,1953724787,1663069541,543515759,538970637,538976288,538976288,543452769,1886220131,543519845,1752459639,1819042080,1752461088,1948283493,1634038376,1713402724,1881174639,1701015410,1919906675,1702389024,1769239907,220229231,538976266,538976288,1948262432,543518057,543452769,1953724787,1914727781,1970238309,1936024434,1984241710,544830053,1701996660,1746953313,1629516641,1919907616,1769155940,673211770,543896630,538970637,538976288,538976288,1970037110,539583589,1869181552,2037672306,1768453920,1746954339,1936747621,1701344288,1919448096,543449445,1701340019,1701606756,1701060722,1701079395,537529632,538976288,538976288,1768453920,1864394851,1864394094,1634541670,1948285294,1634038376,1763734372,1869422707,572552307,1869639017,1851880562,1948263028,1970413679,220212846,537529610,538976288,538976288,1948270880,1634038376,1634213988,543236211,1651340654,1864397413,1668489318,1969513832,762471788,1634623853,543450471,1635021602,577987956,1634235424,168632436,538976288,538976288,1701978144,1667591270,1953046644,1852383347,1851880563,1701732724,544437615,1952543859,1998615413]}],[{"sector":1,"length":512,"data":[1768453225,1752440942,2037588069,1835365491,1750343726,1684104562,168632435,538976288,538976288,1633886240,1700929646,1853182496,1735289198,1699881004,746153057,1869365792,1684368227,1919885356,1937068832,1684956528,539911269,168626701,538970637,538976288,538976288,1852732754,543649385,1701996628,544433249,538970637,538976288,538976288,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,537529632,538976288,538976288,1701336096,1919448096,543449445,1952540788,544434464,1769235297,2037146998,1853190688,1735289198,1849761838,1970151545,1919246957,543584032,1701344367,168632434,538976288,538976288,1752440864,1684104562,1634541683,1700929657,1836016416,1952803952,544828517,1634038306,539130212,1914728308,539782773,1851876717,543649385,1952540788,1701344288,168632441,538976288,538976288,1870077984,543452277,1746953570,2037411937,544175136,1702257000,1701344288,1869770784,1936942435,1948283503,1914728303,1952999273,2003791392,1684955424,1701994784,537529632,538976288,538976288,1952542752,1953391977,1998616940,1769236833,1948280686,1701257327,1953046644,1969365036,1852776564,1864399212,1948280174,1634038376,1667309668,1818326388,220232044,538976266,538976288,1746935840,1948283745,1881171304,1701015410,1919906675,1684955424,544434464,1852732786]},{"sector":2,"length":512,"data":[543649385,1629516897,1948285294,778399081,537529632,538976288,538976288,537529632,538976288,538976288,537529632,538976288,538976288,1853182496,1735289198,1919448096,543449445,1869181552,2037672306,537529632,538976288,538976288,-993737696,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,168632516,538976288,538976288,1950425120,1702257952,1864399218,1919905904,1768846708,1713404276,1948283503,1634038376,1751326820,1701277281,778641452,539766373,1852139639,2037276960,537529632,538976288,538976288,1919448096,543449445,1668246626,1864397675,1853169778,1668246626,539784043,1886614899,1935961701,544370464,1970496882,745760109,1701344288,1937339168,661480820,168632435,538976288,538976288,1869029408,1763732577,1869881459,1818587936,544498533,543452769,1635216481,1646293881,1970413669,1852403310,1752440935,1768431717,1936025703,1919950964,1769107305,220232052,538976266,538976288,1914708000,2036621669,1970415648,1650552430,539583852,1701996660,1629512801,1818845558,1701601889,1750343726,1869029477,1864395873,1818304614,1937334647,537529632,538976288,538976288,1853190688,1735289198,1701344288,1734961184,1953719656,1769107488,1953067631,1701978233,544826465,1701996660,1763730529,1970479219,1919905904,543450484,220232034,538976266,538976288,1830821920]},{"sector":3,"length":512,"data":[1953392993,1768843617,1092642670,1948273740,1634038376,1970348132,1936029029,1668641568,1935745128,1701344288,1634030112,1415543140,1634038376,1968267108,543520101,538970637,538976288,538976288,543452769,1701344367,1651449970,1952671082,1461744423,1769236833,1415538542,1634038376,1968267108,660960613,1852383347,1701344288,1937339168,661480820,168632435,538976288,538976288,1948393504,1634038376,1869815908,539128946,1701081711,220212850,537529610,538976288,538976288,538976288,538976288,220209184,538976266,538976288,1411391520,1634038376,1867718756,1852404850,1917788263,544367972,538970637,538976288,538976288,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,537529632,538976288,538976288,544491808,1629516649,1853187616,1701667172,1818326126,1937339168,544040308,1852404336,1819306339,1752440933,1948284001,1746953576,1701341033,220230771,538976266,538976288,1881153568,1919904114,544830569,1634038306,539130212,1701996660,1763730529,1818304627,1937334647,1701344288,1701736224,1768251936,1914726254,539913845,1936287828,537529632,538976288,538976288,1634037024,1948283758,544498024,1852139639,1919252069,1869504800,1919248500,1919448096,543449445,544432488,1864396385,1919905904,1768846708,1948285300,168632431,538976288,538976288,1970413600]},{"sector":4,"length":512,"data":[1763716206,1881174900,1919904114,544830569,1663071081,1634757999,543450482,1948282740,1914725736,1768844917,1948280686,1634038376,1851859044,1752440932,168632421,538976288,538976288,1768431648,1919248487,1769107488,1953067631,1752440953,1684104562,543584032,543516788,544175988,1629516649,2003790956,1948279909,1868767343,1852404846,220226933,538976266,538976288,1914708000,1768844917,539912046,1948280393,1663067496,1634757999,543450482,1701996660,1881171041,1919904114,1701409897,1918967923,1684611173,1769238117,745300323,537529632,538976288,538976288,1919448096,543449445,1851877475,1679844711,544433519,544501614,1969447791,220212850,537529610,538976288,538976288,1920288288,1919248500,1701998445,1835081772,543649391,1953063287,543649385,1701996660,544433249,1763731055,1953391972,1818321769,1769107488,1953067631,220212345,538976266,538976288,1948262432,1948280168,1634038376,1752440932,1931965537,1701143072,1635197038,1852404841,1752440935,1330389093,1397049166,1936269396,1818587936,1702126437,1869881444,543515168,538970637,538976288,538976288,778990962,1768444960,1936269427,1886218528,1701668204,1684370542,544825888,1953656691,543649385,543976545,1969583473,1864397669,1752440934,1684104562,1852383347,537529632,538976288,538976288,1769107488,1953067631,1734421881,1919885413,779248996,1701336096,1919510048,1948284019,1634038376,1852383332,2037276960]},{"sector":5,"length":512,"data":[1767995168,1735289204,1919448096,543449445,538970637,538976288,538976288,1969583473,1769414757,1646292076,1752440933,1768431717,1936025703,1919950964,1769107305,1948285300,1634038376,1629498468,1629512814,1735290733,1919448096,1935958373,537529632,538976288,538976288,543584032,1852138601,1633905012,1919950956,1769107305,539785588,543516788,1735290732,544502629,1953063287,543649385,1701996660,1998611553,543976553,220226914,538976266,538976288,1713381408,1953722985,1750343726,1763734377,1852514419,544110447,572552033,1701996660,1931502689,1769239151,539125614,1701081711,774774898,1851858990,1936269412,537529632,538976288,538976288,1702065440,1752440932,1735749490,1953853288,1701344288,1937339168,778921332,218762528,538976266,538976288,1411391520,1634038376,1629516644,1914725746,1987013989,1713398885,544042866,543516788,1852797542,1718558836,1701344288,1702195488,539911541,1701996628,544433249,543519329,538970637,538976288,538976288,1701078113,1869881444,1701344288,1702195488,1646290293,1668489337,1768844897,1948280686,1897948520,1702192501,1869768224,1919295597,544501359,1646292852,543908705,538970637,538976288,538976288,1918985587,1852401763,1868963943,1752440946,1768300645,544502642,1701996660,1864393825,1869357158,544367991,1869181552,2037672306,1634235424,1752440942,168632421,538976288,538976288,1852383264,1953654131,543649385,1701996660]},{"sector":6,"length":512,"data":[539911265,1852139607,1970234912,539780206,543516788,1701996660,1763730529,1684086899,543450468,1713401449,1953394546,537529632,538976288,538976288,543584032,543516788,1936942444,1881174629,1919904114,544830569,1953063287,543649385,1701996660,539911265,1936287828,1751348000,543518053,1667329136,220230501,538976266,538976288,1948262432,1847616872,2037151589,1684300064,1948279909,1634038376,1952522340,1701344288,1684956448,543584032,543516788,1953063287,543649385,1701996660,544433249,220227183,538976266,538976288,1746935840,1701341033,1919885426,1970365728,1881173089,1919904114,779711593,218762528,537529610,538976288,538976288,1634030112,1411414372,1634038376,168632420,538976288,538976288,-993779680,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,220251332,538976266,538976288,1092624416,1919448096,543449445,1952540788,1970239264,1646290028,1970413669,1852403310,1769087079,544499815,544698222,1931503209,543518063,1751607656,1864397413,168632434,538976288,538976288,1902452768,543973749,1869181552,2037672306,1919448096,543449445,1701995895,544483182,1852732786,778530409,1750343712,168632421,538976288,538976288,1699880992,1601791073,1701996628,1365206113,1702192501,1819240480,1629516644,1864395884,1752440934,1752440933,1684104562,1752440947]},{"sector":7,"length":512,"data":[1629516897,1998611826,1769236833,220227438,538976266,538976288,1713381408,1948283503,1919509864,1634231072,543515502,1914728308,539913845,168626701,538970637,538976288,538976288,1684104530,1750359929,1684104562,1702187359,220226933,538976266,538976288,-1004527584,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,549766340,538970637,538976288,538976288,1936287828,544434464,1752440929,1684104562,1919906605,1919885428,1701995876,1970348132,543520101,1965057647,1869374062,1684368227,1920295712,1953391986,220232044,538976266,538976288,1914708000,2036621669,762278957,544109938,1701996660,779314273,1701336096,1734961184,1953719656,1769107488,1953067631,1914839161,2036621669,1752440866,1684104562,544434464,538970637,538976288,538976288,1635216481,1629516665,1752440948,1919295589,544501359,1948280431,1897948520,1702192501,168632366,168626701,538976288,538976288,1816272928,1701536623,1750343780,1684104562,168632435,538976288,538976288,-993779680,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,220251332,538976266,538976288,1411391520,1634038376,1931506532,1952804207,1936026985,1836016416,1702126960,1919903264,1835625504,1684370537,1937339168,544040308]},{"sector":8,"length":512,"data":[1869833586,1701016181,1461726835,544105832,538970637,538976288,538976288,1701978209,1920298867,1763730787,1700929651,543649385,1684370293,544825888,1953459809,544367976,1701996660,1948279905,1914725736,1702195557,1852404851,168632423,538976288,538976288,1752440864,1684104562,1696625447,1969448312,1852795252,544434464,1684627827,544175136,572548450,1668246626,577004907,544108320,1936287860,1784835872,544498533,538970637,538976288,538976288,1769238133,1752440940,1701978213,1920298867,1646290275,1836016485,1629516645,1818845558,1701601889,168632366,538970637,538976288,538976288,1668246594,543450475,1701996660,544433249,543519329,1969583473,1763730533,1752440942,1633099877,1852404841,1750359911,1684104562,1702187359,1864394101,168632422,538976288,538976288,1752637472,1986360417,1864397413,1667590754,1818370164,1701536623,1752440932,544368997,1667594341,1869182069,1461726830,1701733736,544367990,543516788,1701470831,220230755,538976266,538976288,1763713056,1919295603,744777061,1701344288,1919448096,543449445,1948284001,1746953576,543449445,1948280431,544498024,1701470831,1931965539,537529632,538976288,538976288,1767986976,1735289204,1919439967,1600414053,1969583441,1936269413,1986619168,1864396389,1919250039,1885956211,543584032,543516788,1701470831,1629516899,1763730542,168632435,538976288,538976288,1768235040,1919248500,1853190688,544497952]},{"sector":9,"length":512,"data":[1952540788,1835627552,1764237413,1953046630,1919950963,1769107305,1763735924,1768431731,1919248487,1634235424,1752440942,168632421,538976288,538976288,1969430560,1852142194,544828532,1852732786,543649385,1701996660,539583585,1830842991,1684371055,544175136,543516788,1886351984,1881174629,1953067887,544108393,220229225,538976266,538976288,1948262432,1377854824,2036621669,1919439967,1600414053,1969583441,220212837,537529610,538976288,538976288,543574304,1752440929,1684104562,1869373984,544435043,1702065257,1646290540,1635197049,1852404841,1868963943,1702258034,1868963954,1851859058,1651403040,1684960623,537529632,538976288,538976288,1936026912,1701273971,1953046572,544434464,544501614,1634738273,1667855474,1851879529,1852383348,1498300704,1702195488,539911541,1998615625,543976553,544501614,538970637,538976288,538976288,1914725730,1629515381,1852399975,1953396000,1629514857,1852383342,1853189986,1701650532,1734439795,1936269413,1852142368,1869881460,1701344288,1919448096,778330469,537529632,538976288,538976288,537529632,538976288,538976288,543574304,1752440929,1684104562,1869373984,544435043,1702065257,1646290540,1635197049,1852404841,1230446695,1092634708,1296651296,1414876997,1919903264,544104736,538970637,538976288,538976288,1701470831,1864397923,1701650546,1734439795,1763716197,1769414772,1646292076,1853169765,1668246626,543450475,1852139639]}]],[[{"sector":1,"length":512,"data":[1953064224,544367976,543516788,538970637,538976288,538976288,1953063287,543649385,1701470831,1646294115,1836016485,1629516645,1818845558,1701601889,1869883424,695494944,544370464,543516788,1701669236,544503151,538970637,538976288,538976288,1702129257,1818326642,1935763488,1886938400,1684370025,1716068398,1701344288,1937339168,661480820,1668489331,1969513832,1735289196,1835627552,220230245,538976266,538976288,1696604192,1970234222,1919251566,1752440947,1752440933,1684104562,1948283687,1868918121,1697477749,1919512696,1869182049,1701650542,1734439795,1948265573,220226920,538976266,538976288,1948262432,1634038376,1769414756,1646292076,1853169765,1802398060,1713398885,544042866,1667852407,1702258024,1651449970,1952671082,1702195488,1763730805,544417652,538970637,538976288,538976288,1852138850,1767995168,1735289204,544108320,543452769,1702259047,543236206,1162692948,1431265092,1701978196,1852994932,1635021600,779318644,543574304,543516788,538970637,538976288,538976288,1701470831,1646294115,1836016485,1629516645,1818845558,1701601889,544175136,543516788,1701996660,1646290017,1919903333,1752440933,1769218149,1970234733,220212340,538976266,538976288,1948262432,1948280168,1634038376,1769414756,1646292076,1634541669,1914725732,2036621669,544175136,544109938,543452769,543516788,1701996660,1931961441,537529632,538976288,538976288,1835627552,1953853285]},{"sector":2,"length":512,"data":[1886938413,1952543337,544108393,1936942445,543516513,1819044215,543515168,1701602660,543450484,1836020326,1701344288,1835627552,220230245,538976266,538976288,1897930784,1702192501,168632366,168626701,538976288,538976288,1968381984,1852141683,543450468,1701996628,544433249,538970637,538976288,538976288,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,537529632,538976288,538976288,1931493664,1701868405,1684366446,1919448096,543449445,1663071081,1819307375,1818588261,1919885433,1851877488,1646290021,1752440953,2037588069,1835365491,1950949422,537529632,538976288,538976288,1935763488,544173600,1969583473,1919950949,1852142437,1629513059,1752660334,543519333,543452769,1819044215,1953459744,543515168,544109938,1769238133,1953046636,537529632,538976288,538976288,1667592736,1702259045,543236211,1970496882,1830839661,1634956133,1713399143,544042866,1953459809,544367976,1920298867,539911523,544828993,762212206,538970637,538976288,538976288,1970496882,1763730797,1970233966,1830839406,1634956133,544433511,543519329,1969583473,1629512805,1763730542,1919905383,1965057125,1818850414,1701344288,537529632,538976288,538976288,1919448096,543449445,544432488,1852138850,1936028192,1684368757,541138990,1701996660,1830839393,1931508065,1701868405]},{"sector":3,"length":512,"data":[1763730542,1818588020,1864379494,1851859058,168632441,538976288,538976288,1953439776,544367976,1701996660,1830839393,1931508065,1701868405,1763730542,1411395188,1914725736,1885692773,1852795252,543584032,1970479201,1852141683,1852795251,537529632,538976288,538976288,1936026912,1701273971,1668180256,1701668210,544437358,543516788,1701996660,1931961441,1937077024,1936614768,544108393,1853189987,1461726836,544105832,543516788,538970637,538976288,538976288,1853189987,1936269428,1852796448,1919253037,1752440943,1752440933,1684104562,1818851104,1700929644,1937077024,1684956528,221144165,538976266,538976288,220209184,538976266,538976288,1394614304,1768189541,1629513582,1936028192,543518069,1936942445,543516513,1629515636,1919448096,543449445,1919116644,1852140901,1948283764,1948280168,1634038376,544417636,538970637,538976288,538976288,1886614899,1769172581,1663069807,1953396079,1750540334,1948282469,1663067496,1953396079,544434464,1919116644,1852140901,543450484,2048946036,544174693,543516788,538970637,538976288,538976288,1701996660,1763730529,1701978227,1701672307,1377840740,1836413797,543649385,543516788,1701996660,1998611553,543976553,1752459621,1730179685,543520361,220230761,538976266,538976288,1763713056,1684368749,1702125929,1852793632,1819243124,1919885356,1818851104,1869422700,1948280182,1948280168,1634038376,1953046628,1953392928,1752440943]},{"sector":4,"length":512,"pattern":-993737532,"data":[168632421,538976288,538976288,1699880992,1601791073,1701996628,1365206113,1702192501,1699881006,1701672307,1936026912,1701273971,1701978227,1986618723,1646290021,1818304633,1684104562,168632441,538976288,538976288,1699880992,544826465,1377858159,1768844917,1948280686,1634038376,1629516644,1763730802,1919905383,539911269,168626701,538976288,538976288,1750343712,1937055845,1718558821,1411408160,1634038376,1968398180,1852141683,1852795251,1970226015,1696625774,1818386798,1629516645,1836412448,544367970,220227183,538976266,538976288,1864376352,1919248500,1919448096,1935958373,544175136,1869903201,1869442926,2037150581,1919250464,544500077,1763734127,1651075182,1629516905,1752461166,220230245,538976266,538976288,1948262432,1634038376,544417636,1667594341,1869182069,1411395182,1948280168,1701278305,1752440948,1684104562,1818851104,1701978220,1852399981,1937077024,1684956528,220226661,538976266,538976288,1965039648,1936026734,1818304627,1953439852,544367976,1701996660,544433249,1702257000,1936943392,543450485,1970496882,544433517,1920102243,1869640549,1852400750,168632423,538976288,538976288,1869881376,1701344288,1763734121,1635087219,543515502,1931503215,1701868405,779314286,218762528,537529610,538976288,538976288,1937330976,544040308,1701669204,1667449120,1953396079,543649385,538970637,538976288,538976288]},{"sector":5,"length":512,"data":[-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,537529632,538976288,538976288,1701336096,1751348000,1819632741,1830842981,1734438497,1948283749,1931502952,1702130553,1769218157,539780461,543452769,543516788,538970637,538976288,538976288,1701669204,1699569508,1734439795,1968267109,778401125,1701336096,1835619360,1298097253,1634956133,1365206375,1702192501,544434464,1953656691,1763730533,168632430,538976288,538976288,1769218080,1970234733,1919885428,544367972,1752459639,1701344288,2019913248,1769218164,1970234733,1952522356,1701344288,1634035744,1718558820,1701344288,537529632,538976288,538976288,1702195488,221144437,538976266,538976288,220209184,538976266,538976288,1394614304,1702130553,1769218157,1763730797,1868767347,1702129269,1851859044,1701650532,1920299873,1763730533,942743662,1932472878,1852793701,1769218148,544367981,538970637,538976288,538976288,1801677172,1092628083,1819243362,543519861,1953724787,1914727781,543973733,1701669236,544434464,1919906931,1763730533,543236206,1651863396,1999463788,543453807,538970637,538976288,538976288,1836216166,1629516897,1752440947,1970151525,1919246957,543584032,1801677172,1769152627,543515502,543516788,1769108595,1864394091,1768759398,1734962788,220230760,538976266,538976288,1864376352,1699618926,1700339831,745763425,1851869728]},{"sector":6,"length":512,"data":[2037539189,1953706272,959520812,539898425,1953451560,1869575200,1852795936,1734418535,1411393903,544434536,538970637,538976288,538976288,1836216166,1730180193,1936029289,544437536,1853169761,1702195561,1937339168,544040308,1701669236,1634235424,2019893364,1701996912,1852383347,1937074720,168632436,538976288,538976288,1853169696,544367972,1702258035,1851859054,543236196,1718378856,1634040096,539915122,544098600,1702125932,1853180448,1718558821,960049440,539569721,168626701,538976288,538976288,1750343712,2037588069,1835365491,1702065440,1701060723,544825708,1853189987,1931506548,1768121712,1684367718,544432416,1767138404,779316067,1768444960,1936269427,220225824,538976266,538976288,857743392,1768041778,1769218164,1663069027,1953396079,543584032,841889841,1919248416,1948285556,1936417641,168632366,538976288,538976288,168632352,538970637,538976288,538976288,1668183366,1852795252,1835619360,1953853285,168632435,538976288,538976288,-993779680,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,220251332,538976266,538976288,1444945952,1869181537,1931506549,1702130553,1969627245,1769235310,544435823,1869376609,543236215,1869373986,1852402531,2019893351,1634888048,1852795252,1869881378,537529632,538976288,538976288,1701998624,1953391990,1948279072]},{"sector":7,"length":512,"data":[1634038376,1919295588,1998613871,1769236833,1713399662,1986359919,1713402469,1629516399,1853169774,1767994977,1818386796,168632421,538976288,538976288,1701978144,1920298867,539911523,1701336096,1818326560,807429493,1969316640,544433523,543516788,1668183398,1852795252,544175136,1970562418,220229234,538976266,538976288,1763713056,1684368749,1702125929,1998616940,1752458600,1864397413,1869488242,1752440948,1651449957,1952671082,1935767328,1635148064,1650551913,1998611820,543716457,538970637,538976288,538976288,1381122371,1702043737,1718165620,1701344288,1784835872,544498533,544432503,544501614,1767994977,1818386796,1226845797,1936269428,1396791072,537529632,538976288,538976288,1635148064,1650551913,539780460,1381122371,1769414745,1646292076,1818435685,544366949,543452769,543516788,1701470831,1998615651,543976553,220226914,538976266,538976288,572530720,1701738351,1646273124,1752440953,1701978213,1936029041,1735289204,1919448096,778330469,1835619360,1953853285,1818326560,544433525,1836020326,220213536,538976266,538976288,1948262432,1970238056,1293969511,1449089089,825052225,1819042080,1948284783,1948280168,1634038376,1869881444,1767995168,1752440948,1868767333,1936028274,1684959088,543649385,538970637,538976288,538976288,1735288172,1864394868,1769218150,1830839661,1970495845,543450482,1948282473,1919249769,1667855392,539915115,1635196993,1864397929]},{"sector":8,"length":512,"pattern":-993737532,"data":[1095573606,1096179544,168632396,538976288,538976288,1633886240,1936028533,544104736,1701080681,1768843622,673211764,1886545264,1635087461,1998596460,544500065,544370534,543516788,1701470831,221148259,538976266,538976288,220209184,538976266,538976288,1176510496,1696625263,1886216568,539780460,1752440929,1684104562,1634235424,1769152628,2037149805,1767995168,1713402740,1763734127,1970233966,1830839406,1634956133,544433511,538970637,538976288,538976288,1836020326,1752461088,1948283493,1634038376,1830843236,1952999273,1702065440,1881170208,1701868133,1818326388,1767995168,1769152628,543515502,1952540788,220230439,538976266,538976288,1998594080,544498024,1931965545,1769300512,1948284012,1868832879,218762542,538976266,538976288,538976288,538976288,538976288,537529632,538976288,538976288,-993732064,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,168632511,538976288,538976288,548610080,538976288,538976288,538976288,1293951008,1718183023,543450473,1735292232,1634300513,1867391086,1769234804,538996335,538976288,538976288,538976288,539013920,538976288,538976288,538970637,538976288,538976288,-993737536]},{"sector":9,"length":512,"pattern":-842150451,"data":[-641415996,218762528,538976266,538976288,1428168736,1802071150,1767317605,2003788910,1998597235,1701995880,1931501856,1819307369,1633951845,1864393076,1667590754,1634541684,1634214009,1629513078,1887007776,168632421,538976288,538976288,1718558752,1632117280,1701602414,1998597154,1701980005,1768908576,1948280686,1818566767,1852403049,543519841,543518319,1702258028,1718558828,537529632,538976288,538976288,1852383776,1701996900,1869182051,1629495918,1931502702,544698216,543516788,1818322290,1667329312,1701734760,1887007776,1763734373,1919295598,544501359,220227183,538976266,538976288,1948262432,1763730792,778921332,745493280,1701344288,758264608,544500066,1701669236,544503151,1851880817,2037672308,1970239264,1646290028,2019893349,1936028272,543450483,538970637,538976288,538976288,540701537,1835619428,1953853285,1953068832,1679958120,1953701922,1768189537,1713399662,1679848047,543257697,1112887108,539903308,1768778067,1819435372,1998597241,537529632,538976288,538976288,1684955424,1931502112,1684955508,1919903264,1919907616,1851859044,2036473956,1814062452,1952935525,1914729320,1701868389,1986622563,779709541,220217632,538976266,538976288,1646272544,1701605231,1763733089,1701978227,1936028272,1702129253,2036473956,578036256,1919903264,1431458848,1981827156,1702194273,168632366,168626701,538976288,538976288,-842457056]}],[{"sector":1,"length":512,"pattern":-993737532,"data":[-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,168632507,538976288,538976288,549068832,538976288,538976288,538976288,538976288,1411391520,1634038376,1632444516,1701273966,1953391981,538976288,538976288,538976288,538976288,538976288,168632506,538976288,538976288,-842522592,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,168632508,538970637,538976288,538976288,1634038339,1415538036,1634038376,168632420,538976288,538976288,-993779680,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,220251332,538976266,538976288,1142956064,1835101817,1818321769,1931508076,1853317488,543236211,544695662,1701996660,539780193,1818850658,1735289188,1819042080,1902473760,1701996917,1633951844,221077876,538976266,538976288,1931485216,1668641396,1701999988,1851859059,1970479204,1919905904,1735289204,1852793632,1970435187,779318371,218762528,537529610,538976288,538976288,1702187296,1415543154,1634038376,168632420,538976288,538976288,-993779680]},{"sector":2,"length":512,"data":[220251332,538976266,538976288,1377837088,1920300133,1696625518,1735749486,1852383336,1836216166,1869182049,1650532462,544503151,1752440929,1684104562,1919903264,1701344288,1702195488,1852406130,168632423,538976288,538976288,1752440864,1684104562,544175136,543516019,1701670771,1852401780,1718558823,1701344288,1919448096,660889957,1634738291,1629516915,1713398894,1920300149,538979941,538970637,538976288,538976288,776285769,1752440876,2003771493,544367982,1948280431,1897948520,1702192501,1701344288,1919448096,543449445,1969447791,1936025968,1752637484,1701344357,1953046642,537529632,538976288,538976288,1935763488,1881170208,1768189541,1965057902,1886938478,1684370025,1835627552,1953853285,1952784428,220212835,538976266,538976288,538976288,168626701,538976288,538976288,1968381984,1852141683,1750359908,1684104562,537529632,538976288,538976288,-993737696,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,168632516,538976288,538976288,1699749920,1851878770,1819569765,1970479225,1852141683,1629516644,1919448096,744776037,1634036768,1735289206,544500000,1668508004,1701736047,1684370531,1869768224,168632429,538976288,538976288,1818304544,1970348140,1936029029,1684955424,1784835872,1937007461,1750343726,1948283753,1634038376,1769414756,1327524972,542723150]},{"sector":3,"length":512,"data":[1914725730,1836413797,220226661,538976266,538976288,1998594080,544105832,1701670771,1752461088,1948283493,1634038376,1377968228,1836413797,539128677,539915369,168626701,538970637,538976288,538976288,1970496850,1415538029,1634038376,168632420,538976288,538976288,-993779680,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,220251332,538976266,538976288,1293951008,543520367,543516788,1667592307,1701406313,1752440932,1684104562,1953392928,1752440943,1699881061,1601791073,1701996628,1365206113,1702192501,1716068398,537529632,538976288,538976288,661940512,1768431731,1919248487,1769107488,1953067631,1752440953,1948282465,1948280168,1634038376,1752637540,543712105,1970496882,543450477,539784297,1701536109,537529632,538976288,538976288,544500000,543516788,1852732786,543649385,1701996660,539911265,168626701,538970637,538976288,538976288,1953069125,1919439967,543449445,538970637,538976288,538976288,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,537529632,538976288,538976288,1836008224,1952803952,544828517,1836213620,1952542313,1752440933,1768693861,1864394086,1752440934,1886593125,1718182757,543450473,1701996660,539911265,168626701]},{"sector":4,"length":512,"data":[538970637,538976288,538976288,1601463635,1701996628,1348428897,1919904114,544830569,538970637,538976288,538976288,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,537529632,538976288,538976288,1634222880,543516526,543516788,1667594341,1869182069,1919950958,1769107305,1864399220,543236198,1701996660,539911265,168626701,538976288,538976288,1716068384,1701344288,1919448096,543449445,1948283753,1914725736,1768844917,1948280686,1634038376,1763716196,539911470,543516788,1701996660,1763730529,168632435,538976288,538976288,1751326752,1768386145,1763731310,1864397684,1881173623,1919904114,746157161,1701344288,2003136032,1769107488,1953067631,1936269433,1836016416,1701994864,1769414756,220227700,538976266,538976288,1948262432,1881171304,1919904114,544830569,1948280431,1713399144,1953722985,1634030112,1948285284,1634038376,1226845796,1953046630,1847620391,1814067055,745763685,537529632,538976288,538976288,1701344288,1919448096,543449445,1763734377,1919251310,543450484,1948282473,1377854824,2036621669,1702195488,1629513077,1948279918,1746953576,1701341033,220230771,538976266,538976288,1881153568,1919904114,544830569,1701996660,1914725473,1836413797,539915109,168626701,538976288,538976288,1716068384,1701344288,1920295712,1953391986,1919448096]},{"sector":5,"length":512,"data":[543449445,1847620457,1948284015,1864394088,1646290286,1735289189,1634231072,1684367214,1752440876,168632421,538976288,538976288,1752440864,1684104562,544434464,1633906540,543450484,543452769,1932354930,1702130287,1769414756,1852401780,1701344288,1919448096,543449445,1969583473,1953046629,537529632,538976288,538976288,1667460896,1701408885,1226845811,1752440934,1752440933,1684104562,1768251936,1663068014,1735287144,1763730533,1852383347,1701344288,1634038304,1897953636,1702192501,168632364,538976288,538976288,1851858976,1953046628,1847620391,1881175909,1919904114,544830569,1746957161,1701341033,1752440946,1948282465,1914725736,1768844917,1948280686,1634038376,1948265572,220226920,538976266,538976288,1847599136,1948284773,1634038376,1700929636,1936615783,1853190688,1735289198,220209198,218762506,538976266,538976288,1394614304,1885693292,1919439967,677667173,1767143268,695429987,221064480,538976266,538976288,-1004527584,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,549766340,538970637,538976288,538976288,1886614867,543452773,543516788,1920103779,544501349,1701996660,1713398881,1679848047,1769218167,544367981,1801677140,220212851,537529610,538976288,538976288,1948270880,1634038376,1634541668,1970282617,1953046644,1718379891,544175136,1701145715]},{"sector":6,"length":512,"data":[1868963952,542646386,1701669236,1769218162,544435043,1646292852,168632421,538976288,538976288,2002853920,1852140385,1629512805,1752440948,1634476133,544367988,1919971425,1769107567,543519841,1701669236,1716068398,1701344288,1635213600,1768842603,220227438,538976266,538976288,1948262432,1634038376,1936269412,543584032,1768431713,1919248487,1769107488,1953067631,1752440953,1948282465,1763730792,1919251566,1953527154,1948279909,1634038376,220212324,538976266,538976288,1763713056,1701978228,1701672307,2019893363,1953850213,544108393,1701670249,1952541028,779709541,218762528,537529610,538976288,538976288,-842151648,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-1144140339,537529632,538976288,538976288,539015712,538976288,538976288,538976288,1394614304,1751346809,1768845170,1769234810,1327525487,1667590754,538997620,538976288,538976288,538976288,-1172299744,537529632,538976288,538976288,-842151904,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-1127363123,537529632,538976288,538970637,538976288,538976288,1851869288,543517796,1634038339,1197434228,543519841,1850308392,1634301033,1970226028,539784302,2019642743,1836412265,1853189955,220211572,538976266,538976288]},{"sector":7,"length":512,"data":[-1004527584,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,549766340,538970637,538976288,538976288,1663053101,1952540018,543236197,1953265005,1818570089,1852140901,1701978228,1920298867,1831691619,1734438497,1852140901,1651449972,1952671082,218762528,537529610,538976288,538976288,1632135200,1701602414,1701987104,1600484449,1702131021,1646796920,1953066569,1332502889,1919250039,168632361,538976288,538976288,-993779680,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,220251332,538976266,538976288,757080096,1919098925,1702125925,1830838560,1635087477,2019893356,1937075299,544108393,1701470831,220230755,218762506,538976266,538976288,1126178848,1952540018,1699962725,1752195437,543519343,538970637,538976288,538976288,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,537529632,538976288,538976288,1819033888,1952539503,543236197,1634559347,1919903856,1868767333,1869771886,1818370156,543908719,1111708456,1126182441,1952540018,543236197,1668246626,1869881451,537529632,538976288,538976288,1851878688,543516513,1702043745,1752195437,543519343]},{"sector":8,"length":512,"data":[543452769,544499059,543516788,1634559347,1919903856,1869881445,1635148064,1650551913,220226924,538976266,538976288,1931485216,1970561396,1377840755,1920300133,1948283758,1746953576,1818521185,1881677925,1953393007,539587173,1948282740,1629513064,1668246636,1684370529,1111708448,168632366,538976288,538976288,1750343712,1746957161,1818521185,1870078053,543452277,1768978804,1819042147,1700929657,1634496544,543450467,1869901417,1730175264,1633841004,1852514412,544110447,538970637,538976288,538976288,1633906540,1852795252,1816207406,1852990836,1986622561,746155109,1111708448,1663071015,1646292577,1701978213,1818846305,1701060729,1701734758,1952522340,537529632,538976288,538976288,1936941344,1818389861,1769221497,539911533,168626701,538970637,538976288,538976288,1851869288,543517796,1634038339,1163879796,1953391990,1298278432,1635085921,1936020076,539784293,1768835426,1818323316,1952543827,220211557,538976266,538976288,-1004527584,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,549766340,538970637,538976288,538976288,1634038371,1629513076,1918967918,1920231778,544830049,1852143205,1651449972,1952671082,218762528,537529610,538976288,538976288,1632135200,1701602414,1701987104,1600484449,1953067587,1818321769,1667584863,1852795252,539568160,538970637]},{"sector":9,"length":512,"data":[538976288,538976288,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,537529632,538976288,538976288,1701995296,543519841,1919098977,1667855465,1931504737,1769235301,1864396399,1667590754,168632436,168626701,538976288,538976288,1698963488,1702126956,1853444959,1869768803,1635412334,1852795252,1784827743,544498533,1632135208,1701602414,168632361,538976288,538976288,-993779680,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,220251332,538976266,538976288,1142956064,1952803941,543236197,1953724787,1931504997,1751346809,1768845170,1769234810,1864396399,1667590754,220212852,218762506,538976266,538976288,1646272544,1819242306,1902330144,1701996917,1649371176,1952671082,1684955464,539780460,1767143268,695429987,537529632,538976288,538976288,-993737696,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,168632516,538976288,538976288,2035490848,1919443822,2053729903,1852776549,1701344288,1649371168,1952671082,1684955464,1864394092,1667590754,1461726836,1937008993,1919903264,1701344288,537529632,538976288,538976288,1784835872,544498533,1646292852]}]],[[{"sector":1,"length":512,"data":[1836016485,1986076773,1634494817,543517794,544370534,1701738351,1768452978,1226845808,1752440934,1651449957,1952671082,544434464,168632417,538976288,538976288,1752440864,1684104562,1752440876,1864397673,1920295779,1752637555,1948282469,1948280168,1634038376,1702109284,1852403058,1936028769,1937008928,543583333,220232034,538976266,538976288,1696604192,1769236856,539912046,168626701,538976288,538976288,1716068384,1701344288,1784835872,544498533,1847620457,1629516911,1818845558,1701601889,1970479148,1852141683,1752440932,1633886309,1852402796,1752440935,1684104562,537529632,538976288,538976288,1919903264,544240928,1679847284,1667847287,1948283755,1936417641,1716068398,1701344288,1853187616,1869182051,1701978222,1852994932,1381245043,539772245,220226935,538976266,538976288,1746935840,543520353,1852138850,1634887456,1684370542,1853320992,1752396389,1864396905,1752440934,1651449957,1952671082,1716068398,544500000,1970562418,544435826,538970637,538976288,538976288,1397506374,1998597189,1634213989,1914725750,1920300133,543450478,1702127201,1769218162,1735289197,1953853229,1953068832,1953853288,1853320992,1752396389,539914345,168626701,538976288,538976288,1867391008,540697972,2003050561,1801677140,1635131507,543520108,807429743,1835627296,544828528,1970562418,544435826,543516788,1952543859,1864397685,1752440934,168632421,538976288,538976288,1651449888]},{"sector":2,"length":512,"data":[1952671082,1414092576,1414877000,1902338336,1769105781,1763731310,1092628084,1818326560,1864394101,540090470,1937007975,1701344288,1784835872,544498533,538970637,538976288,538976288,1498173007,541477152,1931965545,1635148064,1650551913,1998611820,1869116521,1998615669,1769236833,539912046,543452737,1635131489,543520108,757098095,168632369,538976288,538976288,1635196960,544437353,1701998438,544367990,544370534,543516788,1701470831,539915363,168626701,538970637,538976288,538976288,1970365249,1600483945,1634559315,1919903856,1399335013,1885433189,1701998440,2003050540,1801677140,220211571,538976266,538976288,-1004527584,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,549766340,538970637,538976288,538976288,1970365249,543519337,1970085985,1818326388,1696627052,1970037624,1702259059,1970087968,695756148,1835365152,1869115489,539911538,1948280393,220226920,538976266,538976288,1931485216,1885433189,1701998440,544434464,1701997665,544826465,1701738351,2036473956,1869504800,1919248500,1919448096,744776037,1937077024,1684956528,1768453152,168632435,538976288,538976288,1752440864,1684104562,1953396000,1763732585,1936269428,1902338336,1701996917,220212836,537529610,538976288,538976288,1701336864,1752440942,1752440933,1684104562,544434464,1886614899]},{"sector":3,"length":512,"data":[1701080677,1763716196,1936269428,1634496544,543450467,1948282473,1897948520,1702192501,543584032,538970637,538976288,538976288,1701996660,544433249,1953063287,543649385,1629515636,1769304419,1948280178,544434536,1634559347,1919903856,1411395173,1897948520,1702192501,544434464,538970637,538976288,538976288,1953656691,1763730533,1948393582,1634038376,1869819236,539128946,1701081711,1646275698,1919950969,1769107305,1713404276,1953722985,1684955424,1685221152,220230245,538976266,538976288,1864376352,1852383334,1953654131,544108393,1868785011,539911278,1948282707,1897948520,1702192501,544434464,1819045734,1684371311,1953396000,1629514857,1919448096,543449445,538970637,538976288,538976288,1814062703,1919252335,1769107488,1953067631,1936269433,1970234912,539780206,543452769,543516788,1920103779,544501349,1701996660,1763730529,1819287667,1684366177,537529632,538976288,538976288,544106784,1852797542,1718558836,1701344288,2003790880,1881174629,1919904114,544830569,1701996660,539911265,168626701,538976288,538976288,1750540320,1948282469,544434536,544432424,695823969,1919448096,543449445,1931506537,1701868405,1684366446,1769152556,543515502,1998615657,1684829551,1986095136,168632421,538976288,538976288,1700929568,1948282469,1746953576,1701341033,1881175155,1919904114,544830569,1852732786,1701601889,1919448096,543449445,544370472,543516788,1751607656]},{"sector":4,"length":512,"data":[220230245,538976266,538976288,1881153568,1919904114,544830569,1701996660,1998611553,1684829551,1919705376,2036621669,1986095136,1700929637,1914728037,1768844917,539584366,543516788,1936877926,168632436,538976288,538976288,1747460128,1701341033,1881175155,1919904114,695825513,1919448096,543449445,1948282473,572548456,1852732786,1701601889,1919448096,577003877,1702195488,1763730805,168632435,538976288,538976288,1701978144,1701672307,220212836,218762506,538976266,538976288,1646272544,1819242306,1818579488,1702060389,1649371176,1952671082,1684955464,539583852,538970637,538976288,538976288,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,537529632,538976288,538976288,1818579488,1702060389,1853320992,1752396389,1864396905,543236198,1668184435,1852797544,1952545385,544108393,1701470831,220230755,537529610,538976288,538976288,543574304,543516788,1920103779,544501349,1701996660,1679844449,544433519,542396238,544110447,543516788,1701470831,539784291,543516788,1668183398,1852795252,537529632,538976288,538976288,1952805408,1936618101,1279346208,539903315,1970500417,1735289197,1634235424,1752440948,1969430629,1852142194,1752440948,1684104562,1701798944,2003771507,1752440942,168632421,538976288,538976288,1651449888,1952671082,1953046572]},{"sector":5,"length":512,"data":[544434464,1701602674,1684370273,1919903264,1702065440,544825888,544829025,1953063287,543649385,1701996660,779314273,218762528,538976266,538976288,1377837088,1634036837,1398760819,1885433189,1701998440,539831584,1701602642,543519585,1701738351,1768452978,1718558832,1931501856,1885433189,1701998440,1684955424,537529632,538976288,538976288,1919250464,1936744808,1936028192,543518069,1667594341,1869182069,1718558830,1734961184,544367976,1869181552,2037672306,1919448096,778330469,218762528,538976266,538976288,1411391520,1713399144,1953722985,1919448096,543449445,1953063287,543649385,1948282479,1931502952,1885433189,1701998440,1902338336,1701996917,2003771507,1936876910,544237928,538970637,538976288,538976288,1948280431,1931502952,1885433189,1701998440,1684955424,544434464,1701077357,1853190688,1818386798,1394617957,1701015145,1819042080,1767995168,1735289204,537529632,538976288,538976288,1919448096,1935958373,1701994784,1702195488,543450485,1881173609,1919904114,762934377,543516513,1701081711,1948265586,1746953576,1701341033,220230771,538976266,538976288,1881153568,1919904114,544830569,1701996660,1948279905,661938536,1700929651,1998614117,1769236833,1948280686,1814062440,1701277295,1998615667,543976553,220226914,538976266,538976288,1629495328,2003790956,1948279909,1970413679,1226845806,1752440934,1948283753,1634038376,1936269412,543584032,1768431713]},{"sector":6,"length":512,"data":[1919248487,1769107488,1953067631,1752440953,220229217,538976266,538976288,1948262432,1663067496,1701999221,1948284014,1634038376,1948265572,1914725736,1634036837,1735289203,1919448096,543449445,1881174889,1701011820,1852383332,1948282740,220226920,538976266,538976288,1914708000,1634627189,543517794,1969583473,1629498469,1948279918,1914725736,1634036837,543450483,1701996660,1763730529,1634541683,1663067492,1701999221,539915374,538970637,538976288,538976288,1163153230,1750343738,1701978213,1935762796,543649385,1701996660,1293968481,542397269,1864394082,543236198,1751607656,673215077,1696625263,1818326385,168632361,538976288,538976288,1919950880,1769107305,1948285300,1851859055,1953439865,544367976,1852732786,1701601889,1919448096,1935958373,544370464,543518319,1948280431,544040296,1819635575,168632420,538976288,538976288,1818304544,1684104562,1700929657,1701344288,1701736224,1853190688,1735289198,168632366,168626701,538976288,538976288,1699946528,1984257908,544501349,538970637,538976288,538976288,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,537529632,538976288,538976288,1953060640,1632444520,1818326382,1936020013,540701797,1701602642,1936028513,2037276960,1767995168,1735289204,1919448096,1935958373,1684955424,1635021600,220230521]},{"sector":7,"length":512,"pattern":-993737532,"data":[538976266,538976288,1847599136,1647144559,1801678700,543649385,1769238133,1699881068,1601463667,1852143173,1936269428,1886938400,1768122732,544828532,1819042147,539911269,168626701,538976288,538976288,1767317536,1092642932,762279029,1702061394,1377843828,1634036837,1629513075,1852404512,543517799,1852143205,1226845812,1869488230,1629513070,220226930,538976266,538976288,1998594080,1769236833,539780974,2036429939,544106784,543516788,762212206,1668246626,1735289195,1635021600,1965057396,1818850414,1701736224,1919448096,543449445,538970637,538976288,538976288,1970365281,1936028265,1701344288,1702257952,1864397934,1667590754,1948265588,544105832,1701670249,1952541028,544828517,1953068915,1948280931,168632431,538976288,538976288,1818370080,1768645487,539912046,168626701,538970637,538976288,538976288,1702061394,1984257908,544501349,538970637,538976288,538976288,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,537529632,538976288,538976288,1819168544,1769414777,1293969524,1635085921,1699884396,980706675,1869365792,1629514595,1948281964,1634038376,1864397668,1752440942,1696625513,1953391990,168632366,168626701,538976288,538976288,1968185376,1600484204,1852143173,168632436,538976288,538976288,-993779680]},{"sector":8,"length":512,"pattern":-842150451,"data":[-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,220251332,538976266,538976288,1226842144,1752440934,1986338917,544501349,1629516649,1967202414,1381986164,1952805733,1702257952,539784302,1667332197,544828532,543518319,1701996660,673211489,220229225,538976266,538976288,1948262432,1634038376,1869815908,1864397938,1919247474,1936269353,1818587680,1702060389,1868963940,2019893362,1953850213,778989417,543574304,1701736302,1701994784,537529632,538976288,538976288,1852141600,1735289188,1701978156,1852994932,544175136,1668246626,1735289195,1635021600,544437620,1752459639,544503151,1701602674,1852404577,1851859047,220212857,537529610,538976288,538976288,543574304,543516788,1852143205,1936269428,1293967648,1635085921,1699897196,544499059,1852143205,1629498484,1998613612,1769236833,1948280686,1634038376,220230500,538976266,538976288,1629495328,1914725746,1634036837,543450483,544370534,1667594341,1869182069,1752440942,1948282469,1696621928,1953391990,1835886880,1634296933,2037146996,537529632,538976288,538976288,1952805408,1936618101,544175136,1668246626,1735289195,1635021600,779318644,537529632,-854979296]},{"sector":9,"length":512,"data":[-842150451,550358477,168626701,538976288,538976288,538976288,538976288,537529632,538976288,538976288,-842151648,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-1144140339,537529632,538976288,538976288,539015712,538976288,538976288,1293959456,1394628673,1702130553,1916870765,1953065059,1970561893,543973746,1852138323,1869181537,538976288,538976288,-1172299744,537529632,538976288,538976288,-842151904,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-842150451,-1127363123,537529632,538976288,538970637,538976288,538976288,543976513,1701669236,1701650546,1734439795,1629516645,1797285234,544501861,1953656691,673211493,1852796787,762606437,1814916980,1936028769,1763715444,168632430,538976288,538976288,1752440864,1767120997,1366451565,1702192501,1850679342,1702257952,1663072626,1801678700,1667855392,1948265579,1931502952,1702130553,1769218157,1763730797,168632435,538976288,538976288,1886724128,1702125924,1629498468,1663067246,1634757999,543450482,1948282740,1948280168,1868918121,1948284021,543518057,1948280431,1713399144,1953722985,1835627552,220230245,538976266,538976288,1763713056,1752440942,1970348133,778401125,1701336864,543236206,1701669236,1769218162,544433517,745829743]}],[{"sector":1,"length":512,"data":[544500000,1931506537,544501349,1763733364,220230516,538976266,538976288,1948262432,1701278305,1752440948,1684104562,168632366,538970637,538976288,538976288,1852139607,1919252069,1344299296,1763725897,1920213107,1701275497,543450482,1629515369,1718558830,1701013862,543236140,1380536354,1230132256,1145393232,168632354,538976288,538976288,1701650464,1734439795,1936269413,1852142368,1869881460,1701344288,1380536352,1851878688,1919248225,1750343726,1229987941,1634541650,1701273966,168632434,538976288,538976288,1701060640,1836213620,1936027241,1701344288,1952542240,543519349,1948280431,1344300392,1948275273,1734830450,539783781,543452769,1684956531,1970217075,168632436,538976288,538976288,1684086816,1769236836,1818324591,1936026912,1701273971,1935745139,1886413088,1919971186,1702125929,168632366,538970637,538976288,538976288,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,537529632,538976288,538976288,1936674848,1767137140,1601332589,1701996628,757097569,218762541,538976266,538976288,1411391520,544434536,1701996660,1914725473,1768252261,544433526,1936942445,1936025441,1953068832,543236200,1970566502,1948280178,1868918121,1981838453,1702194273,168632366,538976288,538976288,1950949408,1634038560,1701340018,1752440947,1735749490,1752440936]},{"sector":2,"length":512,"data":[1767120997,1601332589,1969583441,1869357157,1852402543,1868963943,1851859058,1769497888,1852404851,168632423,538976288,538976288,1852383264,1851880563,1864394083,1752440934,1948283753,1919249769,1851858988,1718165604,1970234912,1914725486,1852402789,1763734379,1952522356,1701344288,537529632,538976288,538976288,1869770784,544367984,1667329136,1852383333,1701344288,1835627552,1663922789,1852399976,1684955424,1886348064,544433513,543516788,1701669236,544503151,1970037110,168632421,538976288,538976288,1852383264,1763733364,220212852,218762506,538976266,538976288,-635428832,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,549438660,538970637,538976288,538976288,538976435,538976288,538976288,538976288,538976288,538976288,1717912608,1953066601,1936617321,538976288,538976288,538976288,538976288,538976288,-1289740256,538976288,538976288,168632352,538976288,538976288,-994041824,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,220256708,537529610,538976288,538976288,218762528,537529610,538976288,538976288,1701336864,1869815918,1852794221,1852121189,1936876916,1193304352,1864385362,1667851878,1752440933,1768693861,1937008743,1701994784,1920300064]},{"sector":3,"length":512,"pattern":0,"data":[543450478,539782767,538970637,538976288,538976288,543452769,1970544737,1865248370,1948280422,1919249769,544434464,544499059,1830826035,1953853033,1814066021,1919251553,168632366,1706509]},{"sector":4,"length":512,"data":[31480397,524291,69599236,8430630,16384,0,28,3,24,50,60,69,79,851969,852189,0,218103962,-443984640,1050918961,1345564672,503332543,760407,1048772614,1946157118,1040631583,-1342168064,1052725299,-1705566720,393227,805323680,14195428,132841485,-660946895,-1996485376,-1070506516,218159258,0,0,0,0,1532582494,1397760432,1431720529,-1662219490,234898875,-1898237101,207522523,-472783919,1394483141,-66554171,-1951575891,-930370088,-1378841683,1353574539,-1376220243,-1064391344,-94872033,1460051147,-991130795,-1409544066,-1951677557,-1031033919,-1951704917,-1420252218,1487657100,531323051,445021,0,-1912580422,839290074,-1947389184,1246660,-388823887,-1039936884,-1560278365,100859916,245563396,1614592,637541539,754975393,547557376,38977280,-1191060034,-57671662,901033006,495526349,-2097003124,-253623097,-1172369890,12058830,-1172189915,599261397,-1172189915,616038557,-1172189915,1069023430,522308901,503337656,-1202708912,1343095302,25421838,32499726,503403192,-1202708912,1343095302,24111118,31516686,-997983285,-410822650,-1765310177,972849152,-4258957,1421105151,-326426163,18239104,1515805528,526212958,-793194745,113541888,-927464469,-346334976,16758791,-617363149,-1912580422,748944346,197233408,-1591774013,-1073020912]},{"sector":5,"length":512,"data":[-1064431244,270416678,637957120,-352316255,734235885,-2097139170,243863787,512294958,516161584,-1064566744,326419211,681820211,2794240,-1207945565,1343095058,-1194634490,1344143442,26798094,503403192,-1880617392,38977281,-1191060034,-57671662,632597550,-854211298,-947708127,-1577983484,101384238,695468080,-402526277,748748842,3336192,-402522437,815857694,4253696,1441282736,3055872,-1157614104,132645379,2924800,567102644,168266286,-402230080,-347930568,1689371635,-1325398040,190474,-466483989,805630454,2025552,-1010529704,-389772720,1347944449,-388889423,1476396008,805572388,41040444,-796260604,567084724,453116099,892609571,959985462,1027357498,1383415614,1769238133,1696621933,1919906418,1629487136,771760244,-1962931699,-1003086116,-986314625,872154231,-1330074688,-2135381033,-1070355712,-1918129237,-1934920635,481864640,-930305277,-1178586197,-1410138098,1984904364,-1974489086,-202558776,-1430244700,576031,-1003037557,-1959392641,-1993997241,-1959394235,-1993996729,-1959392187,-1993996217,-1070395835,138774822,172329254,-1174402358,149673905,-338185542,-676087293,-1003037557,-1960442753,-1321401787,1024619735,225761202,1960292413,906413840,-352295424,1460032036,2418702,650130266,637687177,638076297,-1156954743,1256718352,637957120,-1342028345,314071,48955568,-594869840,75482166,41779494,410310577,41779494,141875122,3540679,418054247]},{"sector":6,"length":512,"pattern":0,"data":[1358672,1476400360,208977930,-402645829,-953810935,-676330939,100664522,643237463,-1073014273,916652916,-1022927104,907992203,855932869,-1207072311,2105621760,1960292610,-16601075,41779461,41211827,2105556148,158597168,-852470387,-1991282143,66631685,-645150413,-1325236863,-1960217385,1140897821,1303912909,-1933014268,-2134706485,2105610613,1977070338,2549763,855910584,-942044215,-676199867,-1944828535,1300829773,442337560,1830569415,508398596,-903888845,-768409596,495700275,-851311944,8400161,1929435779,868233988,-1949660206,-1206023216,567099904,8426893,-1962901319,-851463139,855798561,1004221376,-2145356584,436240569,-347929740,735284210,-17968,45620619,857853250,-1273132087,-1021194944,907992203,637829060,638342597,637816203,1068768651,275915213,172329254,-953761741,2117,313887,172345126,-286588928,907992203,637829060,856446405,1300702921,495658504,567099572,-1054144654,1706558324,80355072,517769984,75482166,206947622,-2027501261,-1960441779,-851397603,855798305,80355264,920423168,637829060,-75293301,-1274644988,1914817854,-893373694,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"data":[-2046164374,-403059101,2026790816,-39088413,-2020416456,-1998554770,3714671,6295554,1047005698,261743097,-1981726514,62410327,-2126493680,-1106539771,50529847,470202702,129474032,937166718,1620058632,1458032578,-20827781,-1187873282,-1282674873,279455966,319865460,415330204,-1468830729,873265883,-1866978131,-1022180431,801109360,-1073534361,-1241746686,-584903752,-667623949,549897088,-1007391849,-237966472,16268469,1187489220,-892260180,-1020171234,-1301424327,-2129116144,-1489718908,-1817939637,-1515402114,-1303566689,-516928852,-1284107260,1420080540,-731161329,828201734,1095456931,1817712005,-1230344243,-1523921982,-977179933,213558447,916170926,-1883625398,403040890,-1368600892,725048502,1262278726,1688005179,-638411476,1757131557,1780408753,-1335223802,1858909009,-1112061428,762123966,-237997540,119185130,-2035387766,-1624589602,-947791235,-504712232,-126038283,1943611841,539740963,140644482,436156962,1753915564,-1910295379,606793076,157438098,439917094,388087087,-1641599686,-1521868160,172856958,-2103741736,-1899418998,-223966516,-1569932834,711655598,-1956194260,-793597461,-1230048222,780897080,723167904,587251247,312850252,1345457251,-1326480597,-1428997940,-1396387623,-1059834705,-633991828,-1330519184,-1222969522,765677367,-354632970,-489828854,974021520,-826037521,62598077,-722191217,-121417879,-1267860436,-1882985746,1141440575,-1429257840,205688972,1135749633,287990032]},{"sector":9,"length":512,"data":[-2074012091,1897572202,575148516,1242719377,660910378,-371118420,556944429,916263754,1318291945,-1811613380,-719764400,-917971916,-1873628455,1410655538,358961490,-177120682,-1453303898,1717114411,1519815985,785758572,1708225116,-1317494121,1868502953,1620575739,-1737765500,371820756,995451687,-1838925242,1712940625,-1715049623,1183424615,-1582900326,-1368712538,1822877377,459910580,-420365714,-1044221925,-965663015,1931257633,-1660295730,1465504884,1373156399,-562618965,2032019329,514302438,667020923,-638266145,-58810489,-2136995847,543691629,-399373694,1376945184,444997992,-2011043726,577278498,-911594870,-1305441374,915219245,-1893488414,606667326,-1457371503,-1370582236,1419027725,-1767536294,-1509328292,1503290520,1034247505,-975538322,551679933,499234598,-1267212115,21984323,62642876,278654824,-916699549,-85133391,-1910191138,-1023951056,2072072132,1087774823,-1707566212,-1042134280,-251273533,-1952663316,-1994159985,-532213425,-1987277103,294064877,497260411,671101225,-249257510,-1910667059,-1987197080,614959317,724643190,994991295,-772216990,885015950,1650939431,291604582,-926135109,1418784030,1449162382,1126292005,-1644398984,655818968,39850975,1342799948,-1444523005,-1596788490,-2127027954,650925837,544778582,1575038688,56504826,1994550411,1302192141,-928685396,-1481244413,10055680,1515717869,813713014,537472002,-1726054213,537328494,46039100,133686128,-990016484]}]],[[{"sector":1,"length":512,"data":[1011854848,318786561,39847104,9961776,2490444,-2146861037,45614390,-1615545378,-364413771,1692115507,-1051601576,-469631811,1743380577,-769788247,-1294430374,-614166741,177191884,-571314441,-1067536490,789826414,-308879911,-404821353,1981477647,-879889425,-151822473,-197205638,18234654,389725933,1813173512,1247654453,-984165908,1870691227,1401362404,-1014521511,-1007288596,-2082284057,-135137380,-1740032372,-235221268,-856634960,-1923602722,1051375130,1234464478,-656556008,-574547902,-382690808,-1740276626,-1815678933,1043573124,769215672,-1860841413,-557983522,-446880651,-1682129506,311409502,-701337863,1650116288,-1511830404,-1751096840,1208360872,-1929941656,-1955942895,-357072103,-159736500,-1802156002,-1095934802,1818564809,-2069136477,-712082722,906664901,1034598058,1359640984,-1984841388,-925867424,391522004,708285034,97643647,-1500595535,-1586305817,2037229384,1726462139,-1424092614,435318571,1784518626,-1768987152,1307241159,-2140252817,1884659640,395628411,323907215,-760570793,-1248509578,300909592,812966766,-105516621,-157749504,1916738651,-27083017,1776217840,-720451473,325182529,751794660,535472394,-1430201226,-211949574,1787936517,653523481,252625864,-1541637355,144112751,-472416414,851523078,171716121,-573659683,2003814327,1735826751,2130494911,-1139100148,512548685,2106916691,-1666502054,2133997406,1700108103,-1758582941,-1581790648,506430269,-1509654611,1676700465]},{"sector":2,"length":512,"data":[2039473616,-678305444,1350004638,228298654,675083706,-2049247364,-201711582,-927023397,-220893709,1776057537,-663052075,2108822223,-129264004,-45458442,74996563,-398656326,122244058,-274282273,-2056026600,-1699191842,-1251503800,947451116,-1823502787,-1899474287,339032853,-1782748685,1320235963,-518727657,-772004095,976458142,1668964403,881429662,1192787812,2005667840,781006701,-1996485566,-944770879,-732744366,669032975,-821348894,210774349,-186622170,1088179416,1344244811,-435230935,-657904771,-1604829169,-544472947,835422614,-594108535,-323446528,-1174209122,-1672558959,-440085847,-1727765324,-110522428,-1119190801,-1429878980,73136054,-1425915794,-332031405,1746082999,38874423,1082431132,1783393956,-611936356,-38265890,-615595048,-758039933,-365001423,-297860257,784153589,-1630498349,-981520790,676092947,-187164108,397843324,1573977916,159950359,1177218005,-1547221137,-612195510,133365845,2064016985,1792815759,199975293,1119370739,862875765,-417255501,-834382055,678949356,1456455070,1350970078,-1823727289,285730887,-1769430532,-473510571,-1137071437,459335735,1887409025,-909290013,-943750173,-19981188,1436240582,401610759,1766557312,-1962617694,-59247258,-157501538,79094629,-901741972,-440696047,-1195132166,886433794,-1051656728,-1329974973,-2099855625,665460210,1055507186,1204567455,-1145188037,1035703731,1191374477,-473725705,2061038677,98737877,1591300855,1497609415]},{"sector":3,"length":512,"data":[2009855365,1221495373,-1149712756,147957150,442100664,2062351757,-627809993,1124693749,-1531717776,-815934694,45902482,894003119,1068440022,-145906551,97603148,1035999249,-739134749,-1255570458,-1468648857,-1747321878,-619427875,-1896457873,-1363990243,-776115340,-186717121,119642615,1637716251,495158091,1396128098,1055882518,2125030291,2033957347,-1278615977,1665965491,1787333084,1832159659,340633701,-1616686647,-202557492,-216258760,1114840870,-469274676,-293667412,-130165362,1524363097,1476972127,337831915,-1675059820,-15199199,70155837,540701119,-265196115,1631149132,1315746620,1071276862,-314308704,84115659,1478150684,-287380608,1489370042,-761013215,-858305771,1870584309,-801179640,-1829983461,-1788832722,2012053576,-1798316032,-518204111,-1209167047,1083421368,35364631,511793454,-590508384,-54721615,2025775276,905316286,1383491132,838247602,-746232029,-1152729567,1677944158,-1884031914,1816246477,-1173484233,-730728439,40138282,1373982174,1175637533,902602185,1908428254,27724292,292405324,56906267,864927430,-257613123,523541324,-1200612492,-1581514738,646826912,178484832,-1289366361,1586448628,-917221679,-2062331731,-1212908086,-893839430,-977913992,1649346280,-2116831692,498314734,772707908,-1234304452,-1723015950,1978261364,-885758010,-1407245569,-1736754226,80950959,220941845,-1707968882,-289878675,642747,1332112952,-709486283,680137789,-1111539735,-1754013907]},{"sector":4,"length":512,"data":[1252828374,1411213278,394756145,-321344845,-478576944,1100131245,967927346,-1448021500,830215628,-1273533777,-2080511017,-1737393395,-1875042778,2108868460,-1095029833,1003880298,-500670548,1094252500,247964518,-893124964,-139838508,1796559735,-1514219139,3844069,-1130451487,-1967684808,1390140791,-894200667,-826911928,-542675179,-507502778,-2143214185,-432010449,-864876961,-1940383041,1717804206,183215425,-673647676,-435168307,-1460078035,-607371262,-1543773813,-808170322,-852014560,-219880467,-1058909293,316693089,1098207310,-921076076,-1217299366,-2122813084,-404337296,1176289617,-1269317197,1601583720,-1885705210,-1157523495,2058608035,-1817131528,-1308320607,190258739,1486774548,725156564,2144331559,-144281041,4595579,1817555936,-1182935238,-2077502622,-190993733,-663280657,-23978951,1207085329,608104858,121876047,-1496092808,1097604874,1299453444,1082246088,-1049236067,-1352778239,-436766810,290540874,-804281920,502673775,985515554,-479739847,-574720464,1509548951,1019288531,-458018750,1307536572,-98716293,1827548126,-1747509978,-1089850032,-9233808,-302643545,-2083859203,-991093113,1626286799,1869959979,1319187287,-662277015,1102893423,122388096,-332880869,-178014180,-2139241529,-741311212,1873404955,-2004652969,2068492794,1511595961,-1997820190,991316112,-2119470282,995041636,1650306496,-1131399804,-1408116101,1776462145,-1579390041,31095696,1218574799,505298710,1459106585,1707663080]},{"sector":5,"length":512,"data":[-606005507,-1401281373,-1897269393,1935371179,1062011847,1542951731,-161039388,878881367,61297018,-1025772603,-2061795677,450584098,-2091157966,-1131145442,-1897207568,1762865627,-460756537,-722773465,1406880448,99308290,-1140810801,2051292687,-1910374934,-228086231,-1409533045,-114419092,1856711315,1586525418,-1586785289,64797198,-1653398964,1492137442,935676088,1824867119,58485294,1478768675,894711980,1655047276,1865430981,1579321242,579272963,-1027551340,533685524,-1274184385,696833408,-642560798,-1699093865,901917207,-1468965835,-567194119,817063568,-1688200784,388566223,1846778309,1387279854,71634054,1647407764,1109948744,1809879256,1719202528,152512719,-1579578431,579280226,677699168,-135684310,624300368,879218144,-631373733,932284930,819133036,-1647790777,653787161,955121664,-287833332,1107316957,1528733507,1494789780,31423241,1662093504,1588550449,1058372517,-2074079982,1181796797,-320034640,-1285125172,-816885947,942621986,-426972124,864445089,868565808,-762624720,-1005744272,-1118978586,-888732833,1125122767,504072997,1426227227,696091012,214090250,-704200755,1258826280,-2041021214,-1438710688,-1306359185,36579375,404948187,-1878365823,398788644,-1967758632,289639189,-1922781167,-1706839194,-1120253717,918722809,-532309195,-1685619372,-333218796,1863096781,-198129386,7462353,77483552,1496148448,1289197161,-1457839440,1359110326,-1677872279,1040935868,-1518994754]},{"sector":6,"length":512,"data":[1016457456,784854374,1054816924,2037121714,1726453627,1849166986,726071712,-2041295680,-1045796894,-1014745125,-852876879,1477667115,2138518167,-549641728,-700832249,565325310,1059691835,765961541,1889795254,1632097291,-1263013540,-1824660255,-1558425907,-1652477582,2103072930,-1450496775,-1398184870,-754960521,-567008954,-1577981527,-768530192,1696751835,1164100258,855985775,275598957,1360120274,-186730742,-1335462735,1410268097,287144563,1677991242,-1918552825,-527012778,931209881,-1999878759,-1040340624,322674250,119322092,-986577837,-1595711424,880779,-1746335137,-500630619,677262839,1268768799,1472701799,-1461641909,1902910559,280569930,1179117978,-1787460502,-1785111078,342847057,67717578,69747175,-329781607,39846205,-1072753600,1622600685,-1235400205,-972297064,-83819004,-1308897447,-1185869567,1538885979,1189490781,2014874612,1509637251,2062560976,-155417692,-210362701,570892060,-476156926,1160763441,1107724570,-1046982153,1324445792,87807169,-1929556372,-260101098,1409099552,-740308177,967322898,213475734,-449707011,1274354034,1118257120,872455001,-1666164577,-1123173703,-742221865,66596498,1621506386,-191301569,187119491,-2026418282,1050619403,1231112792,1397663355,-1272564529,474347164,-67442172,-263644549,694080433,1294875232,1237468334,-942264034,-1399904469,-1100921763,156021726,1626811964,476901194,107080366,382240275,2084503568,371975131,-450203581,-2101950769]},{"sector":7,"length":512,"data":[612855578,-1634463664,1662770978,-2106286800,399749921,-333175306,-156598253,-1085658764,757942653,-1290006727,-1006592210,-403792168,1222707470,-254548224,425786996,-652251014,-1094077572,-239231051,-1615298369,2020609219,-1064693520,12522786,1012006401,-1467333187,1430211915,-399477026,-1862210272,-33299482,179164233,-1755722189,729110488,-1047542799,-1209793521,848949076,-1089293887,958684860,148751532,-1828149101,142792665,-1530398445,1677470385,238386594,1054559263,-1721258757,-467997846,681740447,1395096800,-1326328183,-362119633,1904175065,1072215703,-34601847,784198038,803933323,-421411906,1260879415,1444884246,-1999127072,-514945328,-1897739174,-46855139,527764404,-256916027,108800691,774841545,-1310206468,-1819222765,1351064809,-835830405,1514366134,75176292,769913703,504781369,1336149539,-458343035,-191204670,-344054610,-1203005852,590082912,777797750,-692915651,379703817,191064459,-1343281506,-944338498,-845878309,333989226,603676553,2060442293,663942733,-1243232353,1710379171,334938805,321788129,-1275823342,-1720651642,-36838725,-453957204,-1761144079,1843147030,-612110135,-2046407826,424723008,950196121,-1906498207,-1449048240,1227313537,1551346067,-1854846844,-1425444649,-1615379719,1915136971,886772964,-1314590523,-1608470150,1027826082,338145855,1671450700,-121336801,146271070,200433403,1009531343,1631333424,-1857885996,-549207424,1771323131,-1606193958,-1964273656]},{"sector":8,"length":512,"data":[-1582872628,2065163845,-590829477,1004273726,1076475840,1043980172,611256770,509847779,966008181,-1353350701,-1729200070,1138574288,-1599546610,-382546792,-339970506,736691931,952270682,-701456436,531442984,206612385,1289208334,-1068996819,1644350384,675340236,-1467892851,-911965808,-504011813,-544768617,237422770,240907083,1197089220,-1975150004,235454605,728421658,-1708089046,357020090,-163998956,-81600622,316698898,-1014383270,304463736,1287098040,191152414,-1174754201,-339958906,-1473757091,-873616407,1726429303,2109592058,1926927416,1983951445,1628631547,-2109771880,-156810487,2019623907,-1630738726,-38512596,1613793752,-1424605332,-2094138411,-1412699059,1206609351,-1714214530,820204287,354697633,-17127905,-27350709,-722829248,-1669315206,1554400331,-1785785038,-169905370,1691060407,-1020273716,-144325835,-880891419,-160668053,-136791163,-1158164066,-367800588,-1804689162,2045114213,255608255,1534580038,-1089378825,945892453,161373170,-1441275773,-1617890565,315682725,2115913682,1875164729,-1389895783,-302854969,-2061510570,-511845396,455114176,676497830,272853161,910060970,-1817951728,1788622866,-1612224931,-1738533327,75485216,-1984778342,1991048598,-451865640,-1431147362,646233802,466927779,1382743842,-2089103168,406760573,-1339551238,-749674827,-1171134590,910926211,620050013,48645704,-230484910,-895466813,684984238,1276611572,-1841584399,-1481580073,-158215457,-639096280]},{"sector":9,"length":512,"data":[-569617472,-1365535625,646190688,-451969887,670689576,1084918535,1719922482,526292980,2077727117,-235184323,-313296144,-885133435,-1137114805,-999823012,-521864661,-2089770544,959283014,1382317930,-1256354235,444410990,-645498182,261510123,-1005610703,-1634909753,-2092294990,-1856431343,1470695996,1248403031,238980894,579806695,-1746893025,954757396,1911604345,1044157232,1533418622,871469720,1629980442,2052531617,1015394028,-236258663,1313958610,331749058,1695021376,2093614782,1247546937,193570676,-1768069661,-683367038,-1805499992,435891735,-536687055,-1106807062,468790237,-1251895958,418272330,544126993,903336834,199394416,-797859693,755008411,172441355,-1891484336,1290829072,1803554184,-450847528,633278536,354714618,843160034,1743019125,382701709,1677269738,-1700103804,493751647,-644804322,-2095210047,699272409,-384186151,1141356551,-1896704283,1259188082,580277649,2067219627,1035322900,-595913288,-2133361492,-334882171,296851789,738734768,1018715489,343548910,-503885253,-1365061166,-1470450418,688910342,32116170,-1684724689,502206457,1444825690,1865084407,1732734249,794323564,-1408013461,676016019,-1457443698,-578782420,2092238981,-661571253,2143039331,-1729713887,1100050508,1770121837,1365591245,763232492,141052556,-613337148,-952805762,-1409809718,-42467207,-699010638,-874093483,-2046320270,-686522613,-1052722587,-1091509880,-1207582856,1210547681,615985293,-1021743511]}],[{"sector":1,"length":512,"data":[-229870941,-1554978692,-283855135,1972961639,-486985953,-737411193,234516681,-1168276055,1199649799,-1816250833,1369055168,128384462,1442341684,1099734519,188650704,298953754,1259266465,94332008,2022823117,1091908418,1747776787,1114785474,-1583221229,1722424147,-808140745,-285558926,1969906366,-1541703851,-773982641,-1662330942,1110893915,1819775253,1827487410,-1514189968,580056800,2026039252,-254289151,1062217338,356357263,-1161077451,-1300935840,-540303881,936284090,-497289370,992115305,1728272110,-1986332770,-212433941,-187365760,-1371251200,-1568734745,-1583972189,-2119245289,-162159335,-2043101419,-618447315,-1342332311,-886230606,562106580,-2059601331,963131415,-2090719879,1308366871,-1830895377,2131439548,944480725,-76960513,-943746412,-719400215,390163006,-249413573,-1981575414,-1161497488,-704686836,1363434611,-339948164,-911499445,-1972209094,714721303,-1548637268,2013658919,602837981,-83025405,634270332,-1053916936,-2045241530,1080027245,1074155405,-1833770031,1215790174,334504811,-386937669,-1397594440,-1145986427,2127957583,-275214174,1373168783,-1581219961,1860001259,-111189095,-566955943,593002323,916308262,1639247834,-1169494060,-1380275264,1046510367,-505660851,1638632867,1324528121,-751476972,-128593671,82904211,-608842046,-18058754,924546216,-668415841,634108080,-573591564,1711170019,-551714607,-368155314,1630228887,-259983203,-939518449,-1576584347,-562888401,1305462095]},{"sector":2,"length":512,"data":[-1890689083,259008469,154270153,211122910,984446314,-197691394,633357192,2128056831,978294523,-1842266129,-1426658742,-1471523603,1731291117,-337392191,1664330121,486451959,335219986,-158906548,507128061,24631710,-1540073227,1986439417,-753286141,976720852,43457553,38239978,-1073496514,-298721932,-486011337,-1366279251,13809903,-78058856,775848821,-618931991,748329266,78181422,-491938225,-1697003119,-217255120,599050419,-1952089941,1599819125,-2108534664,-1503540593,336424782,-1816863890,-428002695,-390928753,1089551565,-700776682,-1615165715,-1159345219,553553930,-333683652,-1364012427,-619779038,-86897173,1986261651,2120564744,-971751413,-410384402,402497107,529389249,1666878010,-1820887034,2099492923,-517968455,27754921,-1177976809,1851559648,936367880,-298224728,1893678718,-350380169,-1517918675,604055420,1509056272,-146509547,-577981858,843512295,1471182246,-1685509726,-1095462519,-2037965486,-1386194542,-833672313,-793505094,1052042148,1033994640,124891613,-1454960668,-351732824,933075491,1780586044,-644870065,-1519931993,672759285,-1731088308,-121104174,1290944551,1421904980,-949090418,1459820303,1786450762,1451836352,708864281,-801288341,979686361,746458893,-38554286,1056656300,-1578318606,-1630220192,-845308494,-1830046527,-1264844719,44328598,-1975160517,797381765,476369523,-1362081623,509586061,202944071,-83588507,315482511,-579311119,-620873793,-1844974115]},{"sector":3,"length":512,"data":[-1133022458,-2104023965,1790122593,-1686929336,405221637,1860623395,1031159686,-1877455765,779948028,-505245499,1925488500,800761419,-1759511333,-1085885701,1949336261,1112893412,-1237976888,-1022094564,1997061383,-249707418,-1455649477,1974604888,-299389896,1065290056,157368543,-331802416,130682613,-1043039134,-667539953,-285477361,1789446931,-301965057,-469688150,-1789596673,1392236028,-1361604724,-2072943415,-1434162736,2000705249,-1217145504,-1251638790,-1717397828,1277995298,-96956384,2072496088,215917936,67921072,-1873752015,-1243222843,1561439056,2074143581,142336438,1844251046,111872856,102896781,-804713118,1990830914,-80687643,-1540536389,940789841,269869825,162451438,1993029111,2116122947,-1397065225,-564924067,-872665096,-921569329,-137867273,-1012204119,447706122,-35126186,1113802548,957413604,-1660907333,-182562648,-94612025,2119152954,1527360604,-562177581,1929117976,502204091,-1203835997,-962343998,477063168,532201991,929284698,1419417344,1545539106,-856300063,-927522559,2042642049,-2080252592,-422980923,-301253277,1952572208,187948199,1036016923,463688563,1865574329,-1715572876,-1707852034,538784785,1747043944,1842493360,-1943083799,1743472021,648445874,560927184,991951956,-690581099,-58264491,-1865686730,-1931937979,-704005642,-536159799,492660326,844507811,-2060224453,149203208,2079470751,-584534903,190586973,-780144455,-128989406,-1876302440,686945158,-1273430598]},{"sector":4,"length":512,"data":[-1274484851,-3727652,223265538,-302628261,-1959158804,1370589769,1033367648,-1506156389,87117407,-1979032556,-16295573,-1410061697,1508280315,1100585925,757924545,-2075543578,78320402,143247359,-798939933,1000029535,-844239713,249726694,-1770929922,265429003,1766375450,365725613,1001805363,1594038118,779148709,-720788486,834060378,2009411615,1834446415,-653208189,-1339968378,586752121,-1017981078,1762327301,585770371,-1591454852,1252120289,112644779,336492072,1853833070,-516768902,-1765462602,-1712353179,-79492788,-557447448,1011211860,-1082440425,-2111625348,-285997767,771261276,-172177499,-1252309265,1316043063,-273215908,-307583548,-157650420,1638803484,1456764900,-1004246691,-114247370,-1662731233,-925884749,-23639492,1529734573,-314216487,1938656327,-1209367927,813685535,-571156187,1977412189,-390760639,1112707934,-171508372,-1064159383,432484706,-507344552,-2057138472,174281611,1430181187,-928390996,-1784313097,-420814221,-1695681051,1797450523,-1253921522,1265289074,-1177037013,360965607,2092537300,-842462963,1916973999,608115424,376397487,-1381220462,-338169277,-403563528,-294749227,-460888145,1452668384,1770880414,-1722313243,-711624358,-755193002,-1886018822,561033053,-1384948065,-1539645252,2069860245,-1364997421,426947918,2119606315,-891894406,-1264538581,-1733564558,1656684118,-1361065264,1903778544,999665173,-222982311,-1384523797,-1866793892,1568456278,1523291566,-1427805473]},{"sector":5,"length":512,"data":[1045857877,727071463,1795520319,-710079515,1439054170,-1372599593,-390179144,932321642,-921736516,558716903,313250489,-1244399327,1535873563,-1485233883,-57612843,608124280,887012759,-311664860,1494688811,1875446631,-1844106564,1132945163,-1649708174,-1698145136,-1230092207,-2087577274,-461079124,562523120,1742393849,-311423416,1561797693,734595245,-921777235,556182577,249218489,766253001,1974892833,1912377590,776501229,-461031754,1125822027,493553394,-1348734397,-1048688535,119809786,-1843835211,-2050532265,-1351913244,1525988496,1552884785,-1312224105,-1131377833,-1844151593,1122414459,-324306702,-1428136816,-1207023500,-943125406,1916973741,-1843874353,1135062683,1961588082,-847974840,-1185967586,501515326,-1131379796,-921806105,-1112101521,819388146,986578095,1683958743,-684998211,-1184977220,-1780094240,2072751375,-1311053339,1723653719,-1154012194,-808783474,-222527060,-889735812,2023143659,2127960549,-676662596,-868655533,240625002,734647995,1207351511,-983244910,-1424890734,2036109867,2133106669,-229911207,615011750,-1042893289,-1160127355,1903633540,-1729791115,-222458666,-1128091778,-1680372494,-702880392,494493196,1554998998,1468578534,-2116355266,1029631575,-705629507,-1145623589,-1310361150,-564690507,-890229070,1585469107,-2007635911,1566735959,-1249956916,-607455938,-55622165,-890066204,1468650899,-525502690,95295381,-1248628035,-1933682766,1851241973,-222442829,1468444414,-1794285554]},{"sector":6,"length":512,"data":[-346108956,-1400442294,-1833360211,1553086955,1228731867,1144380142,-827237486,-1336941422,1273272262,-920228001,-1766409833,934041572,-1346509678,-826502442,2089998827,616524713,-1930737799,-1420005596,-1367481198,-169569589,479349675,1232279027,1421535646,1974779465,-1011051799,776554837,-920425792,1226005085,1510655806,-2034802798,1446965835,1320981005,-1102498901,-1841154644,760657507,1722551241,-1416333019,-445757082,1469207514,1917491893,614348175,757954655,1868182473,-1387280082,-856087335,1875454506,2089970351,-1841015415,1237670363,1171685106,-692094683,-1451678407,1850309365,-919702165,-1829644409,581788860,-1621176375,895662373,-1366963921,1784095888,-76348355,-1221561419,-435659426,-1045833855,171638108,1521333222,1792031937,1759483957,1201153229,-435598417,80567293,-388579597,224804448,-1352938468,1718509706,1573655853,-217616551,-1054953829,1714156348,-345572159,696041756,482453099,-1742148245,858701727,1790736280,-1344025573,-1712976387,2038657452,-1055664513,1859511772,-1384358096,-1247858621,-1379133254,1019333294,1929691832,-1742308663,-1048400517,364733500,1968616908,1438842049,-1360056224,1568457105,-404355025,2093060013,-435530060,-1054822825,-956987044,-1249444671,1732194387,1335375981,-435302563,-2082296241,1039509177,-1554133096,-346623226,-1024565083,-1410136086,1805135915,1019288927,-1128145556,1792637678,1790802398,1052557109,1555510633,-610618193,-1699467426,-1421758841,-1880268295]},{"sector":7,"length":512,"data":[-924038955,-583851736,-1175596050,-597495844,-1311654746,-1570560645,-609914756,665975653,-906586326,-716697165,1081639428,-2107564709,-208108898,438028877,676862652,1155336190,648998415,-6955362,-1145225751,-1311121481,-1410926088,872011065,1763510512,2031149492,-330067150,-2113959238,2120821481,-74603212,-680548174,-646893268,203569519,1429076875,-33078520,518909705,1486272137,385571870,-1602020070,-109576923,-28176921,-688620439,-2056201306,-709962671,1565238227,-14429247,-2084039132,1190453887,579156384,1333816751,-1410882320,-623186828,-656149078,1450077718,878114407,211042906,-1860582846,-94226544,722410616,1202733074,-544417093,-1669633678,108436304,1535125497,-468510099,-386144637,1048126101,-1528809617,-2036561763,1437595234,687871831,622256151,1730658584,-448620938,-3930874,-1357006061,-229795526,-947773066,81607268,-537325295,742564542,96901085,-905333013,518653761,403034459,-138317867,1462042567,1389153944,379935701,1270340271,-2077601828,1172249064,940583056,-617449723,289962751,-1737880427,-1887683470,536013658,1459162071,-901859076,1434399403,-1580275614,-713733084,2067898689,-1470725274,-388673518,-913364213,-1898933356,-1067470163,-1208418711,-1773449055,707062758,-736945668,-541784872,153665179,-339147913,271274734,-1162409230,-1139757650,-1378440198,1053851707,-1837825220,-1829634350,-1866426392,-1868543178,-1953662204,-127366635,103112400,-182479737,-1860523157]},{"sector":8,"length":512,"data":[-2063638804,142435856,-1398732723,1431187792,1688912839,-1132595348,-798451560,-2012145019,-1678761121,-51247165,1044908162,-1997559290,-1660958948,-1000737420,303036502,1980330378,-913481574,-996844589,1852577451,-1861867633,204879077,-1046611915,-987779966,2035049407,617771139,-257845601,-2042624933,-111449130,-187230085,123581392,-1458393292,1191047160,272461013,-1517644024,866068322,374030982,-1527223450,2093809688,-1362615005,729395070,509593361,-506625499,2109867458,1470689861,-225757776,-1776404476,-1663555358,-1488750772,1374996435,1318707252,2017752114,-2100508794,2110880970,1677956633,-335117800,-1596264706,-1174843178,-1102832050,614946137,-1015573776,589451379,-600859855,-1529076664,37419428,1086444260,912018822,-592152627,74344838,-2092795588,1507083267,1931974551,1008530264,-529943932,-1158041349,2065591520,273270000,-1710675223,-1895290619,1205349597,-1939699740,1819031399,-362034704,-2106464316,-1583973675,1325088880,-962761085,-881676126,-1462270788,-1276849215,-603466863,-1910160573,167168293,-1367045323,-903082942,2036962524,-171391416,1937282424,-1653562831,-1539851694,-1159472930,1848501694,-2077278131,1309670007,-292910450,805402530,2084933706,827891202,1263191995,733469606,1426133832,-571100803,-1412495234,955221717,1994375866,-1895123190,-1079771817,1372990807,906643836,1395427336,-1166546374,295225713,1590788368,-188330208,-1069670736,2108933648,-2133721877,936823965,2133349018]},{"sector":9,"length":512,"data":[-751890188,1612898411,698492989,-1052910677,-2099802230,-748866198,487346166,85072110,-1849218746,1576999212,-1881743018,1877673185,200021805,747545680,-1363013012,-586729878,74440698,1114271827,1076139680,1879229461,-712162021,582246341,1414096639,-2107138680,1968244597,545083480,-1543555190,-1427662864,-432574223,2130613455,-626328917,1716167261,955252524,-314959401,-72423800,-1537390451,974380683,-1857364531,1320243973,-731822232,169784323,-1205265538,-6029888,665181205,-232165036,222228863,-569700579,-719279827,1803988999,-1264679411,-1608180571,1750058833,891177066,1694289192,-244075684,-516640372,-744844162,-772540673,1379082416,-3109005,-452872595,1338187555,-386662922,-562507448,-146674754,-1331456730,379706842,1912085680,2019168863,1169859471,-1954412486,1972569091,-1517378291,2111158978,1655261954,1151226933,-933339153,-571901947,2076566113,-1672238713,1497647800,-1556486167,-1825518941,1807231581,596357404,1384180121,-284372997,1403913416,-2053165716,-59639310,-1023415306,987588923,-1577424792,-1474262704,-426874649,-1069231409,1332229011,-223111782,1451007689,-8013122,1193788199,-1480154860,-1150222223,-1678876749,-232763086,1962209171,1535711429,397754145,-494282262,1461436911,594017169,599978151,1056870413,1414403728,1447635125,-2083253205,-1870138828,1734734888,-532992258,-1151476329,-725933644,745070739,1572550155,1896381380,-880947575,1239019270,350488433,21786579]}]],[[{"sector":1,"length":512,"data":[897479780,-1620244845,-1115982569,1590701698,686796407,-1858806264,2008723879,-207154723,608173702,-1967742460,1459420596,1994858823,95565201,-1150012784,-534491816,-1903419508,574506862,1516526444,1950122239,-469425769,-821493486,-2013237128,-246262608,4094161,1831523956,306947620,97845112,1227412611,1457635475,1199112207,456526652,1645471254,1885033129,1456195919,-606630956,939045583,1943701182,654529023,-1499202556,972727164,1212340233,891423772,-348190837,192172012,-1661310221,1633845178,37092042,799449188,1194344516,1960149088,-1245510415,-1422071807,134787817,401317480,2057188469,-1715759432,-1065288333,-41758468,-466825965,-427292097,1071244359,-1870098399,-1614033258,-546567170,352916797,1508154389,944774844,1972753370,874166564,109168243,-758499412,1954933139,-1627648943,555976293,1132249279,-2133263231,1718765307,1597377163,-2127816524,-427888528,-750415293,-1537216193,-1727005969,2135774433,561445803,-354515842,-151657483,1200753844,-96846202,1142959376,-373992858,-1098673905,-740679604,1652225507,843488324,899714052,1807473617,1116400135,-971365394,1870595103,-1819198681,-777406893,-1324780423,-1585341483,419729129,1010342364,-330049649,1310733038,550570899,2096436988,-1085140395,-2060308123,-574948510,421059997,-943305379,-1700886965,-1094369029,1641135748,-1582321289,1530621079,213639924,1581186493,630784959,-1363144705,2127180167,2108018701,-2143152320,26804306]},{"sector":2,"length":512,"data":[348043210,1903632720,225703100,1650806075,-1031474121,-1328256496,-72357269,42135176,-293437419,1590515574,861158671,1131012750,-712334131,1961009475,-1912078719,-872153036,1663266471,403118843,1283523702,-1472019976,815707899,-2053860434,71368346,-1874625655,2116484350,1926600423,2015656192,-1213758889,1835923257,688480848,1475431756,-1171784645,716308019,-602664409,-1309737145,-717250151,2037901429,1063509518,-1891476677,1333553112,-196017903,237888329,1181075201,-1737856062,-1969100066,1646658255,-1225824102,1639251110,31554942,-1145214700,579902989,576800770,301620293,276090282,-911921648,-1903996211,-797169850,-716673131,-474875226,-160060771,-537490589,-315272314,-615806466,2118300214,1545308224,-2045698966,1692436690,2002458616,-1290314002,-218887859,-409391099,783653247,-978725718,-694245599,2051620487,-750464055,1844013328,938575502,-388807451,1699264156,530365373,-1073480860,1050101693,-2131782304,-532220215,317699596,-1085364961,-1953557783,855153186,-1724482864,648709535,-27017359,-149164079,-277817525,2082325340,1899216327,1910440511,998686391,-2011689224,237437495,-488389394,-1023555631,-1197665433,93694431,2092436048,-1944342105,-36800972,536422293,260088210,673118409,1797592025,-789352861,-299296513,-333395608,2008469129,-635158430,-2004725446,-1257860078,-2020246000,504516506,-1780005680,742968782,-1430928520,-1144997908,137383846,-954418288,-575001153,1144534198]},{"sector":3,"length":512,"data":[-419556355,-670352094,-1604330116,1734324537,871435281,-635386142,497056894,-1373990984,1038484101,-438698480,1685726470,378623809,-1679903124,-1269119527,590923212,-544533898,1839405117,185271375,-834566207,-146296371,1186464993,-1738947415,-52925493,248104469,1421339661,1163667524,1207492648,-1052634111,-482951803,2135219485,1627261173,-1312844895,560748307,-1116947511,-205294627,1323812233,-1326828820,-1110784188,1536064362,1265449766,629770806,-877532821,-1916469390,1861175223,280979035,-558899946,-2121105,-111687898,328419954,-807725254,277144724,2012805566,284802473,1374842553,302625107,1768696072,-961407837,-531951437,1000322180,1860176361,-1411986609,-430310443,517183287,-1906713293,657993400,-521140640,1277634624,1534980214,1898083918,-1240578319,-1029285646,-44464898,1294445296,751444919,-258257952,-225283119,1161589316,1558109273,-2012152159,1690241770,-140258300,790628943,363072218,-1974062647,-1191263250,1551423870,-934390159,-571497428,959650693,1343284750,-1577305778,1195018061,-1502007732,-2008202986,1971227488,-673495381,-1048855803,1165184286,-712869301,1220143070,-815079670,-742160049,2094305295,634442151,1343852839,-253497084,-1652873673,1631668832,1082017248,-354868978,1313931239,-2028823012,-175812857,-1612482525,1376484546,-914483342,-2073799695,-431229967,-1359421732,1788841197,-1676613038,2012516394,-1961640814,-541643125,-541769205,-1724641137,-571080725,-1313164804]},{"sector":4,"length":512,"data":[-183762914,793702085,1447591742,-1328121656,-1518774709,-402433024,766259575,1284791283,337907958,-1164904904,-763412028,1054670912,-1767210992,1000467070,-220831104,-1048353164,845533297,682292276,1134494657,-1254620843,1998293947,1795152028,2048917992,1947897322,1511988812,2040448171,-119276049,-665554434,520677137,1342818149,247002236,-1878889385,-1247848422,1796256874,181483504,1100396542,133797594,-150026520,651615573,-614593425,-1768550750,-1088925473,-1095967255,-1759086296,14101196,-1475275735,-889441081,1306892924,419182416,-1947484678,1348274152,-737021185,598835271,1128202060,2040523883,-2039430344,2020194314,-1151381781,1424784185,123961330,1728008428,2074748599,-1482543145,-1083446585,-1131683451,1444096425,34012448,1959994833,1568979745,894511309,-109589625,712457151,-1694600949,973416672,1786727257,-1342973078,-1545276989,-468689766,-1026371540,-772454716,518555453,1640384561,569928947,-1428051914,1719501638,-2105102095,1458885469,1121646320,1021821564,135931608,1568927019,2028647414,-1180014393,782779881,622001914,66259068,1426095017,480128621,-641131283,536427593,-1650342334,878971891,2131562485,-298799273,-1738001137,846260137,-1372396554,-1973639875,1473716746,1839174599,1226706816,-156080264,1950809028,1016203563,1591685331,-1528860013,1153666033,-1266186270,-928670675,711037886,661557202,-1941920383,1971389073,-1776123385,1252413179,62589265,1632764881,172708996]},{"sector":5,"length":512,"data":[-716017367,-1641741335,546363080,-2010892876,-1408692883,-1610298753,817171825,1188158210,-1267856838,-546016776,-438502494,-559812124,2011221986,-382768672,1075007199,1438270310,323619874,2128241304,-2072795441,-1508884375,595857963,1383493612,967609191,552194760,1584166850,1028599259,2126372619,-1700280344,-1530434434,-615406455,-489746595,1045217786,856148376,2038929441,541219509,-479460961,-753018040,-687283447,98840979,-1644336840,256712867,654719180,1697533539,-1380382664,534167802,1332974494,-154006190,535849016,1789058616,1094482426,-857089273,722425230,-169169770,-718124715,-1903504928,-1660184624,1347613302,1775820400,-232177617,-395906913,-1749682311,1898296171,2147148832,-1513016503,-1849682360,-1664280333,666966638,1489352456,154054734,-1041119252,-1299296094,-1318201857,-250724355,-726699639,-352545952,-1992398175,-2036591198,-1558491745,-1052569783,-765899533,-308674755,-1190827318,-461585491,-925564068,-1673229371,-1481026776,1201631935,1056874213,1980592592,-704969711,-522921425,1032287652,56404557,874729620,156110057,1813265852,-1017238979,223884765,283813498,455051870,886606911,-1532078056,-395697371,-1084240837,1187625913,-882475977,-1238033265,-528798321,1763827273,1815464635,1855081017,-1754070681,1807544442,-1193325317,1107045119,101705431,-1077359910,1053859719,-1045926015,-1286655384,-734032327,-840143508,1937840159,-851189228,825396077,-1321828175,-1473401528,-1105757293]},{"sector":6,"length":512,"data":[-405063933,1064785393,-611414616,2104742065,-255720517,1625012180,467350799,-255408136,-2037893041,-660817221,-840809729,1910801867,-244811062,-2094074447,-2079910864,2091047624,-781411272,1087437024,-1312632828,-937431225,2114299535,-1040957016,-1910239104,-369014531,388824077,-1660114929,1449538972,218376281,521304565,-65808462,-811044469,2078374072,-1211105759,-167779869,-1954832980,106415121,-760514878,346525828,1884852533,1878999687,545140615,545230977,406259742,1241198205,-710620269,-535824953,-1709721050,-1616269241,-243335145,-859571911,1489806655,1781032627,4282017,-1422437379,-1698311255,534743354,1386653736,-2096979789,966736495,393004046,1830307660,-759143588,-1404675678,1779047228,-325130958,122076343,831149180,1276190097,1222164300,394190501,-35005740,-1323087350,1303940349,-1289231787,-469410599,-1987526724,-1523278074,-497355135,-1167398800,-1124736180,341442623,-1436400088,-825042090,2029452217,-160012236,291046579,531656027,-1263455341,-760160158,1712237033,346552876,851442728,-88829570,1001585730,-970418741,2012886580,1254445660,-962309802,-1673872477,909437543,-2110949297,-834960586,-1266638986,162710894,-1940547147,-38056601,-261485332,-1738139857,-25364253,-741257985,-1649920958,-408406417,-1659072287,-17709434,-1205987769,-952394048,582718765,-491671792,-749618234,1498477414,-1551768729,1319855978,431090312,-1000375934,-1940272584,1182704986,1520745564,404930945]},{"sector":7,"length":512,"data":[1134333516,-1157235,1791213418,243685295,24853660,1861542822,2049365735,-220515472,-110893892,872109955,590398241,-1945950563,-144475932,-922730502,1441908546,-2102389018,604888390,-2085360107,1788258821,392625763,-707644204,-1889065319,-761670230,1258565692,-301065011,272904227,1215412255,-1270104577,-1095261154,1496621349,842915843,1966611341,-1053789328,820053234,2117048093,-1657249026,1875379984,1886515601,822816248,-1129023337,446686221,1504793803,1760968181,-165382230,1092436024,-2000054584,541875246,-1120295645,2138297255,-4093141,-82522574,961541281,-384163562,-247336511,822000975,955228332,724131965,-1443401090,521988951,267109268,1409483530,1422553973,-1887264786,28937210,-219942817,2032980329,-1771555173,-756057856,-1024536383,-1512157516,575407980,507242403,-1408906740,1209033576,-940803223,1917236516,594284576,-5562501,-2086471479,1054454049,520996620,1892691592,-938467064,-894461939,1781082988,-582563541,1785927997,853441039,-1585890059,-788728365,-1305271869,537897756,-23526132,2051742024,19078438,631024270,-1533008811,504461939,1740825033,-506913277,-16670692,-43118363,-986828539,1222803278,-1090107386,-419104275,1783732919,-579327110,-1595857558,-1996302176,-1121271289,-729366089,891763312,-41159113,1509997143,-1210359312,1001048116,-111224821,-160564011,959136966,-882593125,-1221760179,231847462,-1750236796,-278328189,176670396,-1802163870,-1543708239]},{"sector":8,"length":512,"data":[-1734570445,1074306194,1401801287,973366395,-1803537803,-901138906,-221369856,-2147010225,1122435854,1144785983,-1201044800,-614406042,1411784937,-1184842386,-1128989508,503433149,1787668239,-451045313,112201565,620414212,-2073352557,1590478353,-1946927896,129323217,-1231736856,1245061317,844481030,679158283,1106513825,-26196010,-1573819616,1879306279,41615392,-2021653312,-327154723,34928434,536219968,18607232,2009686000,-856701440,288817165,-687862984,536951777,1239417482,1357312,223044567,2011928991,-515244032,383507954,1882587356,840471383,-839430666,-1330542666,-215788687,-405484730,-1231885443,-1262945641,-1768324514,-1365500615,1098100828,-242124576,-269512875,937640184,-988704373,1874502338,-792859226,-25164098,503509,318353521,1404043517,-1012924381,-565313507,478150739,16282152,730020924,1613343,1359980183,133267464,36275993,-243547488,1476461562,-485016914,-51859231,-1610103853,17034387,-1451926952,-1750430486,-580948651,507439807,1589106676,1393392135,1725974397,-1484288299,1393537039,-197157461,813281402,564737705,317973667,-1635804721,-1746051846,-1386402130,-67556366,-119594160,212770877,-1978754248,824828100,-1861868272,1647812804,-1206349408,822968713,337152232,-993851872,-1741616032,1386613829,1611070279,-330318346,1994329816,-1300876553,-286983205,1170604059,77463552,19368000,-536765992,-685278468,-933315489,257840885,1042652948,-994117458]},{"sector":9,"length":512,"data":[655692683,-1088475158,225633052,761611723,-1700452016,-1625563917,-289807077,207735941,-655877959,-651367287,394709578,716773129,654453266,1538807324,712194488,-192614111,279253524,896129696,251357836,-1073585728,1736708,79692411,-2030036352,1610874889,114294863,928307712,237497908,991958080,2087169903,1986224378,1591144904,-317737665,-1506060553,-384378523,1169674096,1872665858,1721549087,757224235,-123338487,-35953092,-406099092,-1479421987,239285221,-143021037,-777533871,-1334166083,1016845233,742781166,994548623,1300729809,-1861790330,-1643098745,-1431122697,1981803176,-89472804,-1518981529,1433214660,1418590652,933220555,-2082965439,-944680720,-82591009,1919893241,-455147366,2070038196,-1248108013,1509029584,-112926418,-828625171,877453476,523302785,-132455187,-856672085,1091601670,1474119056,1407106680,-1027638493,-717885997,-806246035,-1915517513,-345553147,-2042760761,-1107376221,1459373489,-2026936391,1805408761,1090212596,1025533050,-189025374,-1845007537,1346402358,312540843,347477862,-1283192095,-1209534220,633457326,961324671,32245212,1070436798,-1523489478,1063251662,504094332,-235431699,-2012559625,1606624888,1426744212,1628005345,-106885242,-1184889363,-1560269459,1510291159,1124469099,-100294269,1201395107,-1440257873,-1985456412,-633412286,-73409189,536594004,-984305872,1063504014,-2123510165,529084704,-1838349186,-18060493,928790799,1031018328,-1961878249]}],[{"sector":1,"length":512,"data":[426801962,212234257,1897740383,1871305274,-1337003337,-2063233946,-548529453,330594246,661169039,1675744133,-1864143681,-513213547,402498292,305383354,-50414598,-1200239626,176178256,-825014395,-613097617,1903131948,1086221042,-1714721493,-1649948595,160417919,2046091641,-1183879218,-1883240563,1454216072,-2120687998,1158350117,-1109494834,2111563777,-2134090280,1293410752,1698696541,1030686245,-1912252630,-2094023930,-1919535343,-808964138,1274399914,1142436934,-151130170,1068941178,-146836174,358081387,524169276,-288639493,-410532166,512557411,-3312164,-482201865,-830864605,-118771987,105376199,842781812,-321663750,-523122009,-571606344,129218462,500015779,-1723552877,704092104,-1204023773,213520205,-544138513,994500511,-2000163975,522820937,1577661610,-600063706,1205985416,-1868042962,-1708959889,-1476677901,-950299362,-2024692852,-872967461,-744456836,-314920952,-436050469,-422335938,1062551984,-1262992974,-1267842054,-1564885101,1157772439,-2085166205,-1641275232,-1906051020,-684141962,1589330032,507313997,1309989673,924331711,1731812848,-472829428,1499001941,1006274454,-201423642,-796334354,-760529038,359202686,1067858766,-986177950,-1056681734,-1177765916,1627283521,-525875928,1927571399,1016621583,-307605344,-686884155,284009531,-501512351,-600172400,647697895,-1133088557,56490398,-471725225,-565368649,251106178,1125355319,403946641,-2110627963,1709845038,241049418,1078596706]},{"sector":2,"length":512,"data":[-984319012,-449931002,348724794,-1439308761,-839625872,-1670184321,1327864111,988936683,-2015257058,2095885193,-257245315,-1076915016,-223684270,1087861313,675433730,-1161394907,994660106,-300943549,-541671169,610988793,-1100839280,1393187390,2146981215,593284093,-1724761112,-101190233,-829428809,1588111954,-2048970583,-715732550,-603054077,1109126025,237022236,84012762,1405156184,1653734698,-6211398,-1318980111,261444947,1152342635,-1544630635,1924685650,-1723605946,269547281,-177501329,1694654454,-634148492,357661095,-630186105,-660117308,1245702855,-1352373847,1461414949,159141898,684466779,1963388448,-839765090,25100792,167255838,1073386464,-2120876123,-1332415691,-287540,-907255948,-545512175,1143980795,-999037285,-1587690570,-2022591391,1751155615,902419163,2020784168,1814880954,236081026,521944017,-1418609018,2080778167,-1399867774,125635808,-754794506,-1687562613,-759547289,1923149613,-997213735,1380313489,-1112560334,2060663982,-1608597635,-1230585371,1076743244,587751020,971317889,1570799276,-1397952988,10386940,-944694802,-1189418010,-196649527,-1013322161,163716768,-1863950074,251168633,1753190043,1699165799,1800004411,-1320232951,-284614910,495095883,1843454975,-2142800342,-1911241408,825092320,70506805,-603720641,1199985411,1619908109,-864065051,2063038711,1887567303,-1845597425,-1578655792,-1878513145,1552935115,-1136663549,-704795698,-738581879,15858805,1047035976]},{"sector":3,"length":512,"data":[-1395886123,-1360903761,-2061376959,460384913,-1777821859,-793729570,-2021800928,891637162,-314415700,517315561,-39622277,2074210951,-1167023994,1063631806,1866340984,9193983,-773067958,1419464244,-1984971027,947682922,1959251213,-1029909525,-1643406634,1072860994,570776541,-1890439424,-786580612,-1799295180,-1264957780,1803144190,986818987,-224763854,-1756862396,-284782624,1178583682,505741789,-1058782042,-1204018917,-820533593,-897684482,1263485508,-1207648109,162923876,-637829931,1522611450,1408801256,-1141099514,144404793,302053679,28608425,-1927446894,1034745078,987725178,1311354343,1635219678,-1900263838,-1721922488,-1124737561,-1566182143,-1240917935,2101642337,167010919,-902253370,-1648033762,1531267958,1695343774,-172151858,-76537044,-1823197959,-534575112,1392653594,604236490,-1712073066,-1145838081,-370292095,-519662432,-685733851,2084168288,-1032648313,-2081112636,-486146302,-1355809593,-1226961617,621766647,1954026566,1965807115,1464005018,808328762,-1728822624,-1199608313,119358206,1455115923,-45376104,2020539603,1318133731,1580986843,-1288674887,-80082997,-1057744770,-606632274,-1057218305,-215753098,673357751,-121518290,1650064926,-103226053,-2183993,1479512811,-1515477468,579627332,1573521722,-1662524040,-1039149137,-46303237,1107068142,811390882,217486781,-1127144560,-1188285960,598007696,1458867287,1088672783,1616450931,-1317728731,-260315035,-1266299283,-612514351,1990898028]},{"sector":4,"length":512,"data":[314000295,-99180834,61363785,-928603023,-577015911,166436360,1778460239,-672115877,-270293756,-607472633,308459570,-1210713538,-1433825305,-1715142951,-454488286,-1725027623,173505583,211150063,657233628,-1237862489,970406173,239694829,364090284,1389153728,-1139291339,-722834635,-515390,-965395887,-1025013295,-2588633,1130329049,-1811953576,-514776819,502056243,268026123,-218339823,-1714910190,-2078268531,836654207,-1738411349,-313871730,-50246135,-1081103345,241963557,-807361980,1895804757,1450443973,1294264642,-154982872,-1618082694,-1569943931,-31491981,2001596222,1145517538,989834185,-1501712740,1940481023,-424018714,488041955,-598605830,-750294633,-37573893,844870075,1862159035,-540291221,-1936765021,696744302,-1210029830,719985788,1653541632,-96138290,269466861,-1109008402,-1897827972,543335279,-1815418437,1176243150,-1460609963,-1366456205,-523925110,48976759,-119363653,-328749728,1598288764,-322796537,-505700028,-1167345727,1556253249,2038399232,-1084860942,-1753904227,296897613,-369877229,902758925,-21200029,2113995106,-1740698731,-2093542945,-1191176933,132688894,-905933816,648675470,1991036528,395583307,174186783,-505119267,-473694512,-1209659133,-666876332,545147134,-34793496,-118129538,620737328,1598148122,377363680,1704906779,-1646836350,2125968571,1411846358,-1115287932,-275743385,1509624912,-1248497907,572563966,-43533636,138690654,434390981,1350844431]},{"sector":5,"length":512,"data":[-304181492,-1043918987,1104699230,852554850,946024526,-1368075071,-1299656824,-141383637,-1292092630,-1496847173,468124553,1838927824,-1641046330,-219396733,945603257,-108475714,-162906737,1527136097,1566396893,-58919202,943358992,-1726547088,-880954738,1151536876,-1323902965,938328708,-1391913260,1998434529,-1223767524,-1325125218,-197792924,-229066337,635565929,36653317,-1429218463,2006122930,-1235182771,-179325802,-1696057117,549965686,-1081366186,1604750843,-507403939,-228927475,157630161,-1630203259,1662922062,1402970785,-124269304,-207172856,60319302,1478294859,608201213,-1901097364,389715938,-2081807135,-1461455306,-1330831339,-173909401,507885212,704532724,-1800173050,-733313976,-1827085031,-1887109839,737115325,374134873,853520164,-291226321,-487766893,-1951022168,-1170979901,-367432231,-38059673,1467285166,-1012448451,-1425840118,1876547181,447360644,-2018093664,-682945048,-2088158388,931771098,2076673996,1223192183,-1066378524,902071368,-1568858244,1994887608,-1221779736,1993595289,1784528630,1926831680,330109025,-724532479,266752580,-743878232,-186467383,569943929,472014499,-67287198,879641840,606829834,270848351,565114969,-1754859670,-1105898370,464853179,660280040,-1484803219,339201873,-1552814203,28186486,2003446516,-746239090,-1069558663,586314671,-611500406,-1899210248,-743877372,1484590478,-673077231,-378137280,451417027,-1854634948,-1148284821,225814790,-442354360]},{"sector":6,"length":512,"data":[1333835935,1048603602,-1398274371,-80477655,16072757,-1784214720,1619802180,-1941611411,-1762626944,718502402,-1138870264,1150025224,-2014071510,371389656,-973340407,-1872718816,-314111204,1543941422,-876916332,-401026388,1715942196,344901504,1994581151,-63642973,-71836552,-1195149446,1086985946,944869602,-1735357971,-731934951,-1715755243,296393488,832826914,78166303,266991012,-34736632,-2021405996,-1981578418,1516596241,-308676893,7266689,-1145953655,372630092,-859183103,-628415078,-1980390405,598804191,-137748491,190008861,-991331675,465036941,306943593,-1542373678,526066609,1759373222,475493611,1300023649,1479878088,1702317642,146380304,687938070,1078932946,-1535373244,-514774118,1948217293,-132416027,-292304597,717135577,1899037048,-742136586,365200215,-782281852,-1879050098,1530921092,-88178688,-1413799482,1103217784,2013331192,546836559,-2107621072,159450304,36459266,-1018435152,363998221,777109197,70529582,-914199469,1883699968,1882583112,-1707605895,-1061109537,-492891970,-671507683,564246592,199419201,-123452884,1750107622,-978927060,-2035644502,1597292685,-1191542228,-1030475220,-552268730,-970301248,-1489637645,-1573514894,-434759256,1127612965,1812226897,-1432632205,-54415467,1481004193,-493740646,-874322887,-1759441904,404421378,-451285809,812635490,215163005,348075111,830053789,1747289179,312475921,-1529290174,4535356,-1735702474,1871354720,652548136]},{"sector":7,"length":512,"data":[602304642,-247258728,-376809333,805724066,867343380,-374916446,31361948,2034660982,173028840,1151130635,823701576,-770895212,-1286747166,1595553753,204211976,-1743132782,-2139069722,56533183,1393635323,-2088050267,-1028634395,-812375418,1049246480,-666814976,488924449,1964093543,-69514308,1844392707,170524138,912437287,-1927329103,-451388113,-2110283369,-903817589,2988518,-889988781,928353103,1692464937,1392471185,1127779347,1617398420,-509274486,-712500450,-297902912,638977555,1147315715,1392674067,1492450836,487049400,1508761857,-225581988,-853940969,-1104891887,1701126630,-672855848,-1955413568,1749561399,471775263,1503134650,-524256224,1449341792,-1815799343,-188664126,-1461773715,-1601674018,-1914883696,-167313492,1486600737,1647343644,1820088516,-218312318,566710665,-2002664116,-1007531512,-186831790,-1397855758,845581809,-487857768,-1432638823,289530814,217124932,-1969393339,-1795420311,-1197972341,392469927,854901015,-169214812,140557489,1873814227,1308256290,664276969,1543616834,-719357821,1587524174,999175427,-706825952,170415260,1127942414,-68392216,-1004173724,334598830,1005598199,591995144,1043245920,1689256365,937642417,3516344,1467022486,1259118794,1730608037,1504922870,-1066782935,1249531453,103585280,-308742368,-935329495,738262333,411631807,-1869884077,1187608511,1158621452,1995522824,932276039,2086202266,-187107191,-463298273,941254299,1418558578]},{"sector":8,"length":512,"data":[-1849594913,1821445190,187893879,-557697110,1727056284,1380125841,-705993674,556758187,-685487419,966400976,1129325409,484055109,-1091787935,11818185,538553596,1079158104,137502892,137640084,1288214784,-1879009280,296747321,530963968,-987221533,264658413,-1073217517,1600519444,8270083,-1460564376,119687986,296101628,-875819786,1679806735,-57229249,-1070292346,-1144667294,-924962177,-1522477067,-2129522171,-1956092112,1185269087,2108842063,-1578108320,355687012,604046139,-1875569080,-1940436436,1415414956,1100267902,638683163,23692368,546083372,-2046074068,-1602412040,249421483,-1006258604,-18744973,-253121906,-151958910,622596,10616851,-69001344,2030094576,-1882475284,-1803936825,-976751171,1683094710,-1133568253,-276488673,460539879,-370267908,1311308974,687128284,-1096887378,-508069741,-564751542,-379834661,-1788706696,-818525322,383834488,1605393252,-1435010491,2006997592,666070454,-1744811008,1610690560,-2147172350,1245193,4980774,19923096,79692384,318769536,1275078144,805345280,-1073586175,622596,2490387,9961548,39846192,159384768,637539072,134237184,991043584,1288194610,2071264183,414971694,581413303,844610322,1460128294,-70001222,-1185858140,-1919004748,270969408,-354810940,351539976,1383046340,-706686754,-72269120,1918910470,-2016744347,-797049481,191695750,-322212685,482859372,1100472768,2021190704,19321252,267246828,1129166591]},{"sector":9,"length":512,"data":[-511429667,-1629722715,1466002785,629570125,1881583298,-825456223,553303320,1780536672,-2110160081,-1868920659,1647010806,-2075279452,1837822553,1998680864,-1101853155,-1666841320,598434051,1753034604,-2123858195,-1724791865,2035021485,1843445796,121890892,-1548731263,935631005,527720313,958104927,-1883144996,165680719,398830742,-726888569,808230228,-1762585538,-950789764,477692287,-522788251,662273920,1248281866,166247956,-1989588748,905759719,272798024,-630668426,531588646,-1748233457,-2040580246,-907484218,-567575527,-1819751045,1310023835,1681770287,-145671356,796980982,2037266459,-1562359941,40653486,159384768,637539072,-1744811008,8728576,297192064,-41069568,-138795007,-1371398210,2136981506,-1494171018,1728057788,-1593827850,-169615164,927263456,-547587938,-1987669245,-2010039291,1354171227,-35884534,-1113721105,-291521137,88084009,1813897154,1043742724,1385578087,-1191662120,-1989972400,345708491,10209943,-1324936432,649618169,1204064166,-1610950454,1392285553,461114822,-142068433,-1810332466,-2095102426,540774081,1847427896,25412576,621513349,-264975604,-1472101184,203526017,372775819,-1070018463,1939390623,-1876527077,-1562120774,-1044987419,-2095297295,-1638821139,-1931673454,1004801232,-294235734,-442264680,-1376155860,1131650772,-1099901064,-318837737,-75712457,407615814,-2095089461,-2073180462,-2126297468,-1734597285,-997363697,394371153,498715672,-371144776,-524323634]}]],[[{"sector":1,"length":512,"data":[-878654787,1180091935,-1937056315,1863861625,330667116,429851483,1817697176,-681510759,-1038583587,-953285805,-2033966643,-2054106361,-698919741,-1575757049,961481152,-1998585802,-397915886,707285344,-1595623007,-919322692,-2054044160,-523126368,2089871229,-1910759281,-1861504524,-22995180,-1960976882,243000377,-1065142520,-379524674,84692880,262490576,-1341118904,-388982436,962842020,-901549341,1484205387,-2009290826,2057920717,608250009,1734203790,-1911365406,-196594360,-429654759,-150818587,1360580150,-645053926,-1470301176,-178223060,2007574554,-566619614,29539445,-1340451872,493986630,1285911073,-195920126,1874634801,2097845808,343191224,-1970726696,-1462583549,1501462067,1892315571,-519732251,124915837,-1288645314,-2040040981,1628426633,-1025238527,-1597985337,875139477,-921661480,-2077239233,1103163521,184759204,-366901462,-617407912,223421541,1113276558,1694469598,838865887,-956301241,111723893,481518281,-94454468,-274973571,-1646263736,1566753775,-195226846,-2067483994,2062833942,-1472339893,1783360784,130874377,978014722,1279242023,-914270683,-2079806110,1867308261,1264600823,1560855141,-517856350,803117318,-352819250,-826084296,-1038074249,1003216441,1109121210,-1163296074,-51363052,356342704,698173301,-385069424,-1002708509,36767783,995236573,-515244016,390461569,-454286843,992390404,1620714943,-439525601,478158720,-50559273,1351142422,1394076795,-532604803,-1023239425]},{"sector":2,"length":512,"data":[710709358,871879932,1235320682,-531708650,-1870248385,871498276,779106746,-839554586,634335205,-1502709397,1436060191,-1494864285,-2111851599,275592503,1498150750,-780905223,-1010328032,1401268582,-1817885880,-1925660987,1693052345,576794545,-146153567,1158257001,-2010043623,1014565172,-1214077764,-976114717,40290386,-532072365,1695824496,1116328725,352401570,-1244595094,406718766,2043236497,-656502513,748358333,-200126989,1102982794,-1714060344,-181603014,-1176375207,1626898739,641044627,910065788,158812489,1887980322,-673026196,-378289901,387441603,1012903927,-165313623,1454048345,-1435151617,1668569821,-1092279561,-519040140,1921415304,-10510060,-547186220,1053332009,-47891914,1569492102,-1143786737,-1574185948,-105166197,-467122775,-543381256,-1998095783,-871516240,1775517781,-82067014,-1974952498,-1047371401,-387328813,-984665860,-616845842,185707087,-910466718,317454001,327557065,-1881608567,-1672970044,-1002931857,1149771458,306165359,-716103067,904349683,-1500288879,-1448922959,1393531452,99743284,1359002361,-686768408,-1758514326,759112624,-758088925,942953683,1079890251,-2033872076,-244034167,747840010,-1962920922,1040991536,1306931184,1472676172,1296706283,-591425447,1160829999,-1870470560,-1370646730,-1922818132,1867256865,274180987,-976460643,-1861183055,416899218,1374025099,650547833,-1744811008,1610690560,-2147172350,167903241,-335511104,1245193,4980774,19923096]},{"sector":3,"length":512,"data":[2013268576,930965762,-1119936470,-350034249,1567621382,1970069390,80865905,318769536,1275078144,805345280,-1073586175,622596,2490387,9961548,39846192,159384768,637539072,-1744811008,1610690560,-2147172350,1245193,4980774,19923096,79692384,318769536,-2146392576,-1912448961,-905687309,-1829630957,-476412946,1087025167,-1434798169,-776288193,-2144274401,2145812449,-872446343,448842701,1090779139,-754982724,598657003,-1207794554,-4342915,-505313106,642062,-2117156028,575659008,-1959806539,1203057938,-907693895,-1751098701,76794289,1994185155,330720423,2067484784,-388962565,1778531188,-1890621237,2127017770,-1595221292,398960502,135114248,615506117,-1444545758,-1416213715,1253335523,-1055998513,-1593619616,-481870951,1729307220,1517480469,-2041883610,359829885,-587892738,1163661248,-369206861,-1947901894,-1830800310,-283659997,1478740434,886836301,332020893,1139254060,-1264690606,-1472346570,-1116536931,1053894707,2032882370,1491818153,835044953,1367851117,1106003093,1480716781,1643248501,-66317404,-1004985871,1177489090,-690740389,1995440711,33103669,-283315768,1160328827,-1170515238,345288287,-786172354,1350953758,1389359800,561487967,635777573,-1036239641,1995599909,-301682491,1437687201,936255554,1098213434,1688332489,-336899971,-1269461179,-713742548,979926274,-1624619672,1244425295,250416932,-1080152382,145557328,1294851600,1412558300,-1197682065,1409255045]},{"sector":4,"length":512,"data":[-912105518,-1273080046,-957189087,-1743699154,-1937743186,101277335,-1999948248,1491935605,-2121555895,-2002684573,3190619,1839555119,-1392774539,-1826644842,-1542344424,-702890435,-1127420021,39200785,-2109993891,-2129042898,352272602,-669927162,-805107505,2132573192,-1503644396,1823824270,1183596291,-1342643296,148570580,1111576984,229164913,478125508,-1803558002,-803698498,581574542,970358415,1058747708,-813461956,1358675213,82931711,-726756354,2116396303,974168248,2120095262,826794793,-1337784197,1225096661,-772684012,-1343527318,-603089328,1981628343,921484819,1352797364,-1271959077,1066466422,-1526333424,-1329396358,321831027,303367168,-475250373,948348108,-961041367,478513455,277189919,-223281253,-195224967,-2028954692,1554151573,-995056503,272412739,1467021334,751764995,-1463073184,2113965569,-390148536,-761734920,1963778992,-1706247237,-612893330,-213919498,984687552,-1022876330,-611952692,1561363058,1793140316,-1897588317,9400074,-1009975724,1562268377,942297324,-604273217,1606156206,-5629844,-758323257,799624712,228780210,-1225920351,-658590977,1536805775,604969759,-1001549851,-1584670131,-944738471,-1134472466,-1732744247,700127158,2071169393,1774507358,-762589985,654910941,-838905414,-1198760678,-1009401569,-377074274,-1437001560,-1170470385,-490597512,369171049,-411751923,-1814628492,-1567079545,-1132309833,-276328667,1076855188,-509205712,1728450895,2129898622,-29664767]},{"sector":5,"length":512,"data":[2129677,-33727734,909991248,-357802733,685770059,-1056749573,-118203118,-584438640,438795013,-12925487,877333792,-27629023,-1906080953,2101925984,970777217,-916780474,-1434290087,-1453196831,1456368097,1171320812,-1273049086,1345888453,-1257999590,1961949847,324204717,1643879898,49764328,-1463144254,423356155,2104688064,993603666,-932841412,1071006635,-30306819,2074620201,1502249277,367410411,-1155563171,-7196953,238156704,2103712851,-1550974046,-976786684,-279271115,682983439,599077498,521629157,-2125380180,-1711433152,3882878,-1591254585,332704338,-921102442,-987477164,-914666567,1929790766,363123490,-1695825354,-1801604078,1090349035,304225084,-62389922,-1270312413,-994504239,1670105655,-31980524,392861059,637253251,-1028071365,846692825,-1378198067,166670238,1764320448,-1451724564,1846932632,-459271179,1566732316,-731635342,-1018189539,1460449127,2073840049,-1695462410,-2004994514,-229010733,-371680044,-1442968952,-2108971151,1983500880,-1341270002,154489698,-2100521881,695160002,1440051020,945811492,-978420342,1477133634,-836593523,696097588,-782209962,-378030933,616855751,-1560485054,-857312955,-1231180483,-2007444526,1541744183,1583812886,-1820432178,-1744611615,-943378637,674391863,-1610602129,39082826,-1790917195,639123654,-1744811008,1610690560,-2147172350,1245193,4980774,19923096,79692384,318769536,1275078144,805345280,-1073586175,622596,2490387]},{"sector":6,"length":512,"data":[9961548,39846192,159384768,637539072,-1744811008,3772416,-117498768,-1081066454,1433803175,1863651902,-1373988127,-1493380040,-1287098600,215488601,-2040017488,2115603348,340814887,-1483407561,-562315789,50376794,249972691,-469106136,-810382442,874173247,216222643,1254085421,1018230045,-1330390345,763049805,-51710785,912109482,67141644,41975832,-1056950260,-617949505,111981485,1000877131,-1012364325,719342246,-71910457,453090469,347990699,109150296,-2113898468,1246503944,721796976,-1716916615,-966522142,-1538470187,2081957573,-1625975568,1136029945,-860984918,865694405,-1686483560,-1473726484,806060736,-977059640,1874538083,-1724738926,-21580123,1471278024,-844899334,-1508234509,1804279232,1246730791,1422173467,229677586,-2084509640,1091059727,-1773858428,1271083772,-1578825190,629875285,-1402451771,-831412881,2010687305,-865134330,-1285762453,20466706,1481905285,464020769,-1100138245,831131305,1532174102,-1504272022,1002070937,379857774,-2046724004,-2120719336,-1200874874,12322561,-1675040265,-217417614,1641216184,-260432377,983959521,-999372558,-256272662,-338264133,142648037,-2011068350,596165160,-1992144752,1919457317,1115462564,60337962,-1545119221,165835489,1653645864,-701118582,-1540739574,-1691317758,182628522,1657844268,-256233973,2127112210,-1679095398,203620542,195085873,1855426034,1520808505,848070882,-1929168692,-2091330508,-790874483,-557665752,-1628300828]},{"sector":7,"length":512,"data":[-1911768506,-1434545096,1155836647,-426530022,990815136,1324048950,-373912414,-789431250,-123859101,1066386408,-1874589440,-1003943871,1848722320,340037898,-1726905255,845441756,211623495,-1725675374,743084676,1277797561,325374258,-634045874,20860706,1179718693,1393861921,-1794819416,-715565996,-1386588622,1586173387,1494623617,379953510,-361353125,-781034474,794695525,-1934543382,401127804,1175073632,562474200,694301385,1670956586,-1296678357,643404900,1905944107,-1603823158,1771718281,447261096,650227307,-508138213,-1100014682,1897670401,480715206,658624115,1104464541,-629793428,2015225713,510104034,-945149830,-906986594,-125984953,2141177833,848824832,-1474165119,1108247328,377823528,-2027837342,573080094,545407625,2053240847,-2063162374,366460918,1177945851,-907050150,-15447784,-992974882,1203828636,1122933090,-1348210822,-1097360137,-219127737,-1673231008,-142124587,1944027520,-2094501769,116264597,1693350867,-1613762913,940892243,1308793861,151037697,1506027008,1595401631,-2019043445,1555802576,150813519,-505992854,-1021644053,-236708382,-1834996270,-651072112,531871169,1914677313,-1376981723,-368178631,-1183211385,913202091,-1356449300,-721972901,-1541151508,302964125,780827641,1343091335,-99689157,-583594146,-449144185,-1937819191,879580547,288592108,-1382513154,1110467023,552405934,-727933653,-1113364221,-1369244169,-400871862,-2143501443,-2007729569,-1121883942,1322746776]},{"sector":8,"length":512,"data":[1990840031,-1143819823,-249586347,-2113946273,-1003419017,295206980,669156272,-144577413,-1015227892,50311611,-1073630248,-1903534146,-235319128,-336599454,517913525,-1341912352,-413038921,746714625,-1620140435,-238853328,780147605,-1776339412,1991452821,-1284620352,-476495494,-1856963258,-1288132290,-52876492,1695875130,249320985,-1885394164,-444917867,-1740451403,293094004,-75357515,-1443302879,232085239,174150908,-439906186,1417629764,-983859894,1653330669,138998531,281507419,-1865995852,-1929551263,411443431,-630540856,-2071212312,-585975745,-264369026,-1043747705,448460511,-1646982660,2061737920,1607254119,-187454984,2007684001,574823555,1087847759,-567346826,2092642799,293284236,1310705089,-1364729637,-1085819252,1335194095,-636814073,-265216822,62221923,1748710509,1705977633,-1325407188,-1292292651,2101463401,-153711189,-632473971,-572624580,-466505960,1079477821,1552471619,-578565921,19816225,767322693,-1358939984,-320053645,-762657763,-662072858,-418271314,-2136176354,-146484766,164570666,-683112470,132259694,533687769,-1342232969,875170293,607844089,739072633,-442783425,-1182864712,-674689683,-1958253589,217628001,490854802,510667551,-1031108075,1873702486,-780992747,-1858556235,345888647,445051497,-1101156008,1881767764,1214961609,-1456525759,1182451063,-1463051985,568766727,-317674629,-2017318247,-2092619947,442018407,-1249222666,1244204129,-782387162,479924418,-300571962]},{"sector":9,"length":512,"data":[-1099589321,-925476455,-743889108,1960554127,-706955107,854884326,-1376957018,-337800343,1596764451,1204330541,-254118715,-1787883542,-1942279373,-18778391,410455582,-358948712,-943705865,64946197,-943282581,738324411,1271617371,1955332063,-568469150,1044737471,800028542,-592088381,-178610080,610123262,-2041088092,400628353,-661181259,1232911223,1622571829,-1512842327,2028211563,-1454171335,1501094006,-600081239,1906310113,59858955,2106358490,1131545136,-917664586,333147147,986530257,885864030,-1072901765,-2087641094,-2047082575,126398270,5229564,-1853628161,-1638066114,1618727468,-133374625,-1327466001,1627194893,-228427812,130760690,770733695,-1016787662,1453944227,1015756462,-912303317,-2051569052,-1349816641,1035314813,-1630516575,-1781678175,-1135157506,1012489013,86480880,-1219489594,-287807564,-1957157723,119733557,1522048352,-376640896,2127753729,735018656,1477704706,449575943,-2122107252,-738108063,2041911729,1139593425,-133787241,1494759367,-1259101434,1163326431,-1828430733,1033537409,2103979154,665578366,-1156486872,1307826965,1091560290,-1414426401,-251152675,1925383474,2104631199,-1212868747,397165746,-592404269,1010952118,-1402459319,1833950882,801988506,1612177218,-2118751429,-1413007896,-540863749,1489468683,1613646124,952310026,-2099557654,1708183590,512397729,-1642397351,376568606,-116872218,-167384994,-1131000709,1083407289,-370667626,1947709486,-1955960709,-433283571]}],[{"sector":1,"length":512,"data":[-1001731615,-407501553,-1484413387,-545037086,-1060180320,457349137,765367993,-244463117,921552497,-1275545879,1023372850,1457733006,-1206474152,923142189,-2004662501,-479791648,626452771,1617747208,-637720939,2143212891,-1120830224,448337016,12972894,153606292,-2049064512,-2093033307,-500891586,-871571747,-144735717,144483787,-812809722,-743231258,38599526,-663847356,-21055328,-1754979785,-2067734030,-675285121,-1471785583,-100941836,-2134886841,-426093202,7869585,688429182,-339905349,-1752430613,-206932172,934741866,-2140737533,-2125984546,-1191324582,-370369627,-1220096558,1161721170,2078442646,-16227489,-273311730,40076075,421747800,2066158229,-1787718501,-664459267,126202459,1444667077,-367081751,78670061,674528701,-1970707282,1857475153,704967152,-785928212,604840578,-436839368,-2032853491,-1270777297,1823121823,-139564705,-1854347522,654999978,-2011101803,1088073581,1709915145,1108279804,1488373277,775770634,-2096479948,-1323510934,-1442151600,1624940445,-1031309958,-1322862455,-1836593750,1586224825,735620542,275462564,-1980237801,1545453799,1881130493,-2011762452,-1708895714,660261026,-1354910282,-1152082521,-1379997656,723055951,1847010178,1105020341,-1971775139,-1468150754,2002964056,1458497871,392874561,-1416226269,1997135096,-1942672591,462013476,-2043253534,-2048451784,-196641987,-1727177085,-1198919119,-766460535,-648441290,1828347035,-1974912373,1726541312,-789993376,23847251]},{"sector":2,"length":512,"data":[-1967737762,117537709,-45479791,-1484381209,-1682881538,-1077509257,1005319323,431853757,503801004,1931221206,-1724491863,-732506603,1231148774,116894226,418508495,-1131911863,748140360,1849926066,-659754233,2133439674,1124560401,1915462003,-1394248436,1349094664,1634304656,894926904,-962327510,1053276260,-197807806,2106210729,-1698833494,-665073245,910555908,849786082,273448826,979457559,881821034,1668776260,-1158743851,-546084403,1775086776,-1666273385,-1639141474,-342900360,1668227862,-289810106,-873471199,-255495075,-1734742991,-1643353139,-1150021755,1202885011,831271051,738495467,-1446566335,1248526093,-471579295,-1895676706,2122306610,-1863013822,2070891453,-29759161,2040101457,-1523343723,1467249618,-433149062,619368334,-956427918,-660953300,802073234,881446592,-1711699524,1612427881,-2120743638,-379569659,1346522740,1923927508,752174317,1672858774,-1598545931,1521014923,-540154325,1219860492,1013789168,-499277524,-1459492384,-147847306,-1343948786,-1857545312,1335755760,-596098658,734233375,-611865741,1085621716,1252654158,-794365228,-440132998,2003115580,1947407001,-1347605833,-157150098,1523794134,-1995527301,-1091197365,1020257015,1449834638,1250474838,-1136545162,-1731151170,1553080555,1668851636,1322915580,-1313821712,1237493238,1454328297,1574056849,-1946492155,1651725223,-263491856,-1653065762,584715924,-1723071820,-1331314992,-383044129,-988880703,374845567,891352749,1402778240]},{"sector":3,"length":512,"data":[282243451,-1022831194,144083135,1678942643,245403235,-738360748,1876808417,-529664471,1247473116,-472703352,-159528159,-2093371663,-240145726,1482061731,-2060341653,1808570416,-822511385,1617422481,-1677373765,-385761003,874149429,-1457912873,-36945463,890519992,1342646944,-1362295457,1018071969,-244286162,403531627,-2103521987,1624274962,1246950342,960596687,1259792592,-2006674001,-1125703581,-1496258540,-1355064575,-702122986,1968095483,1761844594,-759754183,990599363,-1214600796,2132714074,709769805,2077554942,-1192532313,-1159193961,-29377889,2101063641,1678995174,-1878266268,2003179389,945719649,-1044234216,255916969,-1490267002,-1670403091,1086826753,-540433147,1804392755,611936657,1277336573,-321886435,-1838582503,-1117225256,994677161,-961698036,-7669749,-1741143298,1132442221,1104857877,-74725148,857944631,-432363792,-892511700,-322293233,-451955935,1474676674,500664951,-1250425575,-982108476,-697689273,198674043,1543743732,-1101252977,1662836183,1651622440,512922639,-2012465404,1793630650,-443652695,1229326064,1519825064,1851575778,356147304,44142839,963272115,-1904621413,-1337683227,-24699707,187518051,-36678725,-442938878,95232592,597525999,1368847398,1438961436,-1401669841,-630938139,1815261221,1487130481,-591195111,1126266944,794972362,-1414258569,-1276571344,-726504371,-886989727,-1400750959,684242249,-1631198538,1477984935,-1352047880,-1349854987,747319627,1300663899]},{"sector":4,"length":512,"data":[-1529428918,617140107,1568393628,907748940,-1792898716,-471088056,1487825334,-1479996633,432958341,584220443,1046023292,1713426946,-1941238876,1491433848,-1100951620,1830143330,-761711038,235761906,1724302971,1778738758,-2071932566,599627931,82929618,-759108714,-1126117010,1949588222,-791090626,140665604,1005483125,-28691195,-44610195,107653086,-272921076,-1416794533,-1733061828,345776866,-694480489,-1054718214,221034210,1147473776,-261985622,1441241384,-1179447020,1614184233,-205943533,-826068234,-91745943,1408340438,-764365090,-1452953665,-326847819,-1240220725,-1386677704,-1981471553,-125137699,-624340365,447343941,1611477018,1282286433,-258604203,289061122,1390146239,-480690322,-1575985285,1283321442,1694329846,1952522138,1992580429,820928641,1677624539,876831545,-1022380863,-1490930025,1776233106,-1433669210,-164637485,-1077543307,-2002364677,-1090974218,-514128423,1748278126,-219813452,1471062412,-1622327089,1563650758,-2031418327,41009030,1401423369,-1596952790,1868565111,-838292474,-1703211749,-11423051,274655480,369767163,694246813,561181830,768310986,2121551384,-1375157632,-2025154143,593986576,-2140450591,1551904795,911400747,1376531986,221376155,256134973,-496980446,-858995980,1115698129,-1596411210,1755641188,-1506997153,-1111145835,-1072345908,-319996068,-1775857797,48961632,-1707746002,-1259337037,2072546212,198847128,-1594808382,385427492,155999584,1507979114,-1273683039]},{"sector":5,"length":512,"data":[1342351288,966034662,-1969957424,152672666,1976372919,1575668682,-1794626069,-489652098,-546868989,768989092,1258471217,-1437117571,-1179150105,-177742713,890055884,-1164311126,-1365465024,-1862097099,1915983846,1398501735,1350002749,-989066092,-1955716640,-302751708,-2103585875,-1920381719,1481993900,-871993566,1460101590,-1524903086,-761272740,793737029,403496636,-1283598614,-1688556853,1152613597,-1449594700,1129906971,-530340833,-1493589000,-1620769036,-1607237844,824852508,-1614694344,-1494486452,1197647906,-1773109719,2116640546,-1339401272,-1322158796,-245378792,413502147,571946482,1174733745,20848809,-1096665754,270440752,1066982735,1772382424,-2023498330,1560887399,1387953546,108748935,76820960,1088108710,-384185342,-330058131,-1814893601,-1337654448,-2087269632,1531778281,602087741,-1066030981,985328692,-2114411751,841256943,167513479,1315808452,-1880426176,-2143392745,-552877955,1713569992,214274073,-1013112174,1431076619,-2124628908,-31362528,249009912,1634431685,542731943,-893768044,30799315,812088578,648638971,-1236081665,-259270268,1206712073,-1846116014,-1552354716,-990221122,275703112,1152297849,1964294540,-1203707760,-1886619333,-844755587,1175253547,1686928031,1625867451,-989670043,-1995924330,-1416178083,-1454120096,1195689271,-85996142,1691910473,-222931714,-837914510,-1813234046,121338586,603547616,117318409,-786551412,-732788431,1594177894,-574214721,-251277858,1075157789]},{"sector":6,"length":512,"data":[-1789974093,727232749,-263322051,-133972007,-1113990998,-1620349879,-1432902310,1662446744,-379915142,400267178,-204748391,1987821145,1979060582,1265647479,1266712019,1529817669,1961386399,156002925,1366928739,962436486,1572225555,-22031427,-704911452,-1252365574,1795048128,629420364,-29625488,1724980892,1015171631,-1288096870,1578011106,-199259331,353629099,-1341398992,612345811,1408518941,623611528,-1345222300,-198160787,-1820641676,748199307,-741976775,-1820381970,-1482722083,-337725654,-178521769,657021867,2051550696,765334714,-1403644665,-1455794000,-1618931594,768535200,1391028369,-1179339060,-128999856,1753590020,-197411649,-1727369511,-345703968,1302880554,1637918813,-1659609779,-1631399219,-175563596,576468044,844136936,-2026589931,-509424890,14778297,-1573898494,1801405774,712292586,676782887,-1944389839,-797929359,1638825522,305668680,-1178059224,2047421468,2026630290,-1214379173,-492084626,276207863,238832514,223141394,-2109269994,-1999083990,991194479,1897471038,-1623683448,-780335409,-1289200960,2085407552,-1591539952,-1053306940,-238095144,240860608,1149475503,-751657337,-1530255064,-914392936,1371494932,623131850,-860408674,-781039454,395176017,-1030118265,1879754038,245197864,-649696176,-1197352342,2069428105,1848277552,-747011277,543037519,-767074538,-2067119555,454191240,-278460444,-557167151,-1368938516,-1801607368,-1290615825,-237460113,-1691127891,-408184769,189583099]},{"sector":7,"length":512,"data":[-1343120097,895324257,949101844,1020655164,1139972612,1984278181,-900858532,-350099030,-163202891,-649718705,1898428641,-1015510555,-1025822087,-64044371,-1764224772,1739621102,-879106884,-788240438,751126638,-1448686705,755983270,1481872852,857469410,-853253556,-1481188121,-2121545621,906883592,-1543870152,-1865481811,-1085675758,-1990070584,-900476938,1836463955,1396372310,-2114130832,1594028015,-2048276159,631106811,-1302943097,-619542886,-1439061835,-1750745978,-1580428600,-808468565,2121661641,938475630,-419429899,-1087771832,-763875562,27555947,360656896,-1345699483,576878884,-2145810557,1559242677,486883330,632307194,953156559,1802611,335929564,2081207024,2121531453,-2146602728,122207259,-1661302272,-67121240,-1075095170,-84246643,-290273809,1371010698,-1881813832,1955499823,-1499183186,1894312749,-1402055382,-961874827,1891800941,-1396787222,1962110058,922552829,-1169702974,830598827,1803529424,-1548768360,1189464743,-1545613821,1029941923,-676588181,1555511893,-1912116778,-74057855,723547134,-888215041,1498589966,795409427,-248026747,250275000,754876287,1976677887,68344647,2120793449,2104674037,-181234340,-344836515,-1138722943,-1527188372,1851158132,1620604509,-1653230555,1589217094,-685472876,-1601648496,603224028,-258945032,-67327377,701196686,-1375498749,-270536710,1922874063,343507241,-382233442,1408095824,-1626925161,-2116693183,826912326,-604893760,-755162144,-2109808475]},{"sector":8,"length":512,"data":[1483994553,-438013579,51642065,-236415070,1340201360,-1608032136,-2131843753,-424632698,-315682609,2028989039,-1327696252,-1652511260,697524260,-100608438,-1381584136,-166761598,414229349,-295426120,1837132096,2119751007,-879143736,-357311459,2058589862,-89979032,-349302350,-1709566129,-346367972,1105192263,882350947,15605305,-53339503,-349301252,247419611,653231051,688235520,1358391181,-588557011,1588488713,-710457858,1014266577,-789827711,1618334795,-821014723,1330317711,107850388,966827874,1428074966,-2003133535,1772826747,201802823,-1887453989,1221558865,1945816746,-1461979848,1431379299,-2107112511,-1170253481,761430300,-1882191217,-1845424720,-1703628053,-105707839,-148471257,-194652542,-976535448,8099303,-624156680,-16847090,-2023932626,-798031959,-1606750133,1436576613,2051820982,2040860677,-877333368,-1470795073,-30218000,1214438195,195783883,-763396441,294363742,-662537535,-313209915,-1025444669,-986264569,-1378313755,910828818,810105649,485638195,-194200070,-494848511,793802957,-2066864149,-130054138,-2143433560,1076833158,477132227,-1408804285,1791278006,1205712664,-172769889,1732059195,-1524844478,-246941127,445395470,-1391722566,1083780123,154722897,1374717797,1929337213,329260365,-902056252,1385053916,-1919880194,-12814940,415810680,-2107557653,-2062039139,-2104440714,-1115549925,746011491,-145694111,-171559478,-176976772,-942083393,379016741,-387638857,1610269411]},{"sector":9,"length":512,"data":[1139554837,837963993,1155477970,-1818698355,117597473,-1713965477,-1970362086,-1993810064,-1046230057,-1151191392,2065481164,896736254,-2085601035,2034864065,2087500771,1974886153,-1185811953,235710750,1568902755,121043490,58168583,-1363522494,841348751,1873386228,1769037339,1722755335,-654513187,1073844881,826210543,1613916256,-396347736,344031441,107482118,806962188,-2134872844,67207373,513000452,1809204228,65151083,1701863548,-1066442560,1086353392,3194990,1902384720,1990383148,-320018584,-1068497586,-1165961207,-1781639358,-1474997571,363899330,242780042,85258959,495590481,59252760,-1006238799,-2116521759,741958148,1358779083,-308304065,757118119,1168840334,-1671478915,713815599,-1522972027,215296364,-644189387,-736253338,1838076814,-1707877033,2040159056,1068336619,1049624743,-1711281408,-812552894,77987881,491823552,-1044523675,1160841755,-1190808118,1433743406,-243363371,-1270204781,1764087384,-1532311820,234763264,-2045509842,-1612962653,1842082917,-2025423469,626434172,1967158278,-958429677,781499857,-124377661,1517410484,-121333522,-1078656556,-1122413365,1427736822,-1729752451,-1224546075,-235202931,419432939,296155368,1251659004,739709524,-64182197,-778775637,-1901388951,657425578,-691978414,-665242061,-1485991354,1899505523,-723146179,-485365420,-1774390243,-2138028764,-814607394,-794371940,-2044489059,1998980770,-926909400,-699276455,1761181025,-1679430588,-860106928]}]],[[{"sector":1,"length":512,"data":[1965354993,968762143,-1157802721,-1786130642,230772004,-259569248,808652061,64854243,5095328,707454556,1691297225,687306880,2130251751,-1491452122,-637731840,1167869099,-37354375,1781756328,1356917212,1097741586,-998770035,1084470153,138076119,-945158102,-1111769663,-2011400037,-313387743,-578755634,1035421189,1059846414,-507006688,-2143022516,-769572409,238853995,-467904416,-1481361164,-943962181,-434780031,-1580758155,-562036323,1872756844,1692925976,-1275461626,-356145240,166199630,1275286016,302320129,-881763975,-1738254303,611669549,-713928344,-2124442411,1719948821,-1914619475,516399587,149034333,-776831905,-1198545977,-1881630723,-1678167620,410357603,-1315596839,795270168,1893328502,-447193772,1744195176,-1238013478,527098341,1817904610,1531366781,-1508276883,562848475,-1821402871,16785409,10493958,541068803,1612055809,503775648,151134336,44081190,-115855861,172127520,308794648,1767524434,-530143906,-1245597862,-230007461,425714053,-2103351766,-1708693092,-1731112086,-1245555051,-25911081,-1994906119,52478531,-1595918835,4067075,1175520289,319070496,86065230,-1587522027,-2141317371,1712916001,1686544800,437744024,926810244,976261856,1819695016,-2095315576,-1717083691,566259285,-529130233,2115962785,554181120,350595567,1752265345,814359048,-1843132190,638149200,165834906,1653645864,-1331025398,-1305736478,1528656592,-1956298417,-1562260396,12463883,-1001173981]},{"sector":2,"length":512,"data":[832886616,-1933367096,1128845363,1758999949,-533230141,965624712,-1899779864,1137242171,-386384497,4165571,1099973641,-1866192632,104156227,1494500497,474386820,1217528953,-1836803804,79244362,-650883949,1011782532,1351877881,342497604,604848722,-1051357805,-1377738300,1157775392,-2086457045,-1263671006,1288523150,592352511,575065732,134559892,23442036,-614250073,-776926148,1389805374,-1792374743,-1547368586,-331987795,-1538743928,-1521961629,-999406458,-43686744,1707816748,-1755495356,1414552212,-343390867,-1985310534,1542161380,2011211919,1754728712,-2037480880,1763327652,-422169487,-1186802197,-1850128294,-386785776,-1917724976,-683187853,1750375586,1704281966,1220875824,1148090690,573736835,238847885,1365181743,-838175592,1925087374,1810123689,884195766,-1011460553,1815454762,-335878503,1219788643,-1659676021,414016906,-2043199521,986513926,1152431872,-793384538,-617878336,-388603611,765449379,1487841899,1318808429,950330509,108729830,16887047,-2062810699,1537481229,-382377624,823324248,598169997,-1905605443,1564116847,-174504630,-978781495,-1688920218,-882599350,-1067425514,100860288,1613764620,201523392,50380848,12595212,-1070593021,806093568,402849984,805699776,1611399552,-1072168192,-2144336384,6294529,12589059,25178118,50356236,100712472,201424944,402849888,-1072955200,12585984,201375756,-1072955200,12585984,201375756,-1072955200,12585984,201375756]},{"sector":3,"length":512,"data":[-1072955200,12585984,201375756,-1072955200,12585984,201375756,-1072955200,12585984,201375756,-1072955200,12585984,201375756,-1072955200,12585984,201375756,-1072955200,12585984,201375756,-1072955200,12585984,201375756,-1072955200,12585984,201375756,-1072955200,12585984,201375756,-1072955200,12585984,201375756,-1072955200,12585984,201375756,-1072955200,12585984,201375756,-1072955200,12585984,201375756,-1072955200,12585984,201375756,-1072955200,12585984,201375756,-1072955200,12585984,201375756,-1072955200,12585984,201375756,-1072955200,12585984,201375756,-1072955200,12585984,201375756,-1072955200,12585984,201375756,-1072955200,12585984,201375756,-1072955200,12585984,201375756,-1072955200,12585984,201375756,-1072955200,1811942400,141250560,1915030272,3415083,-2146041704,1304877884,-1825766088,-1086402124,-2012806346,456815112,-761264589,-467553908,-800565900,-1436678271,-1345238420,358199101,1368197091,1431489316,-1827776604,-1389733693,495367331,-847668511,371238228,-1003506184,1743465002,590240185,1209661986,-732254507,1385169103,452713515,499009536,571164141,1307328770,1144178523,2105342654,303406246,1850941774,568854794,308554509,-1775136596,1804681882,921125575,-1709347442,-1826211501,-698477054,1575871053,-2115721630,-815782898,947142126,-1135659198,-564220069,-1408208483,-1002916218,-96637266,-386752392,-2060733474,1052604622,1930596974]},{"sector":4,"length":512,"data":[1025366409,-301334290,-2086512499,1644503317,360581193,1094681825,210163336,8390694,-2139088892,-1533196030,906710356,173412757,-2129348594,-2134368981,1078464515,-2046491263,579228564,1142949149,27287876,1746411015,86247444,1163498120,151135589,-1029660634,-173466299,-1205056495,676926048,2131887194,52478236,-447465971,-63418977,38192039,252921246,69271614,1704278545,1763578372,-45316956,1280566541,82133068,626611220,1481920645,-96546943,2111812849,-2050922408,-404668329,-179143099,1528304916,428229001,-743333567,-992187829,-932177018,1951192625,1485268328,128049654,570457631,1552176904,1327603541,1464377889,-1778241183,1112051747,1632839049,-1675190462,680133240,523409572,-491738582,-927972470,-1204974782,789293000,203620542,-2095451855,952906380,-734753533,906848192,-1628213030,1133043767,-1461175922,-769917,510967685,1578704826,398700791,-685996598,-980795807,2062674895,1641266654,-1384239875,-963801144,829931,-1192577830,107654601,-1773306666,-715759659,-952149854,-1147771807,-1977748062,-2106362642,-28246263,579255492,-597401737,-1242079288,1437485844,1976649465,-1422152041,-598219131,1453779691,703322569,2119194306,-178581974,-272913165,-1656535368,-11177038,-1498310999,137866914,1652443646,-1708726627,2130635889,1703553896,-1100224192,-1582699614,1032321419,-337552227,-1118333974,-1041663894,-547800446,-1856151012,-1940875183,769127707,1931724,2058012550]},{"sector":5,"length":512,"data":[-707737762,-662755530,-1347383081,-1076845647,-1913431330,-1462567814,-1541536344,560868619,1796609934,-1704202014,1786391292,-608535262,-547356881,1292189471,-996124272,-169127119,720984332,-128135196,816856468,-1311649812,-570685912,-229015643,1865292523,-1535456588,243700865,483383524,1796291975,1491570861,734719830,390720461,-465185859,-1740276841,-1237656443,2028037048,401738431,502653330,1061138154,1445945298,389791173,-944829719,705201615,1318456778,-878578037,-1489562182,1962826047,-1744311694,-975710493,-357616750,-1414741014,-1519325462,1332860319,2135232413,1185334318,880473176,744344085,-2139861820,-214609045,349905081,-980141845,-172303106,-20840354,245711072,-1988240944,1607487674,-2036943067,1806379191,1671254572,607080658,730200033,-854198091,-1248307006,-1369006423,1357886330,2070258116,-1665825558,-1968671365,-1239217317,1314772340,-1950714505,-85411521,-405068127,-644358884,-352894383,1192722292,983000490,-1187316022,289060831,126180921,1425832519,1186180611,-1981171472,-2032632763,-1565923444,-296711445,193927823,1068468544,-1266756422,-585517937,-1512398546,-153094473,381082671,-171918919,-731033631,-536348917,-30572801,831833268,234389215,-270500074,1385839122,-1932510512,557793367,1978726625,1330583903,1027801081,-675778051,710797939,1071316413,326185214,-1740113932,1054659605,-730058806,-41486586,-1749680833,-346041912,965681095,-449915782,1270695543,-115720230]},{"sector":6,"length":512,"data":[342175476,1883144562,-3674979,-1799591718,-1812191467,-1842981515,-1005964759,1604066090,953631087,-2039575017,340902482,1940807856,-2083014514,1290805335,749454618,941268788,-1267686935,1507552054,1686109467,-24117854,-1769496472,-117203002,-1932483930,-363639870,-240912651,-1818275587,-497896869,1668314596,-1880823150,-39564869,-1885621590,-97053080,-54857811,-1849817100,2130596253,-503438030,-1733246196,-4790260,956538753,-510147768,-1036265489,-94504407,915335231,262196050,1044702441,-1461089943,1009614548,-264354184,229360427,-1203404209,-1665826479,295365200,879690912,-1924989510,1862650460,-63991389,2103537322,-1642939366,697583647,-953938327,-191397383,-717696515,1716255028,-721360193,-1114542266,1349499614,38109800,-6117425,2113463307,-1930137605,1018995706,149753804,1407227770,-765613067,902259101,-127877700,-672387877,-281398320,-1628880543,1042466316,454406120,-1781643634,-1433921885,1409129011,-360713151,-1301372927,1630365080,-767293928,1698368260,1740164290,-2067116505,-169537015,1193986052,1732173790,-762832932,1904112514,-26838281,-503323115,66580844,-1296898151,-2140819710,-1425053479,1634643623,-1349593539,-453608227,-2043716434,1484926669,-1819294456,101576231,921130039,921896707,1039972054,969891440,-448883377,1839754548,1867281168,-517325497,-200439827,1352183496,-788453245,37796720,-46781118,1719902747,-381947341,1499217252,1741079623,677496751,18418603]},{"sector":7,"length":512,"data":[-1955064944,1561649785,1616230923,1521509063,1832950367,814358515,-666420484,982867542,-599021986,306896260,418214883,79324133,416602817,719895497,-1890013152,580897265,1629113558,-1096566483,1622983264,2033422515,-1112314725,324680091,179723363,-1554014023,-351311386,431493562,1867393142,1933537178,-586032526,1324494354,1735830386,445246402,-1632693017,783972084,-518993393,1624469514,1556410604,313346110,1209294633,-643059938,-37048340,-975858123,-1077650344,-1412830829,2132434072,-1524055635,-1688715067,1469614082,448916429,-1074993556,-485350857,115645528,-681676173,929166644,-874190657,-1967613961,-1129669945,885169510,-180539939,320530405,-367633225,169811124,1865689073,333072824,1055873643,1749660202,865191263,1391276900,515599076,-1156668696,511736023,42538680,716387110,-51968852,1603836808,-1798680377,-1198501249,-643131511,-1334191174,-1807910392,1275964819,343429453,-1068493529,480681333,-636916855,758276509,1981316054,-1962005129,-448538695,-732472623,2084504421,1326920021,-149547562,-1619796599,417166980,-521967905,-572444390,-94157932,-1009416712,-358361168,1988938686,-1905980996,-1909732799,-204021305,-971554734,1308076185,-1008517049,-251952633,153642381,480152467,1260604188,-117308838,476673433,392156331,-195370492,-583792963,-1198951162,622285840,-710680062,-429597302,-553157820,-724184183,907044895,-455166933,237200556,1792174765,-1299920520,14375266]},{"sector":8,"length":512,"data":[738580098,221565291,832705841,1887023478,1276785923,2025775902,-1889509976,-1900292294,1565295337,-1297481684,2100861860,-291256980,-1022329502,486962445,1495358731,-1463765052,855066855,-846407645,-2118571775,-2032685262,-1673001863,1746122858,-351825979,-980621275,-1415571807,1810019577,872903235,-1179524857,-225514607,1653714592,1312100481,-1079774782,-214773761,424750552,-454524924,-734298111,-1188160978,177537049,574047006,888692110,-1647003647,-236257003,1722909973,1007893244,-1874031536,1866727545,-1189972463,-202785664,-139472430,-1641206833,330869338,933473040,-82038239,921859888,741746528,-1693155444,-2101511089,-905354415,-125986147,515843965,1653555526,-14275365,414241029,-1047637090,1659913223,11127951,-675697964,-1911192522,1737735537,440300150,543172352,2144438795,-95406830,1719280,429607,-2039878381,1915806927,1737278036,-1974825987,1220738115,370187609,1448517273,-2042950871,1183966957,-1617207106,1136897315,42645161,-447983924,388440101,-760015572,1480022039,1545610216,-855859324,-1106269101,-857552599,260852700,1892231059,1958494446,-259804913,-1715887893,-741221043,-1238048732,1023525391,86969310,-1630414556,456544487,-759093117,1402449353,-738488319,100727443,362886545,98440681,-1167706266,1300462870,-50327424,-1493060078,473550395,583875009,2099701022,1554830288,-674128115,-213965599,-932414817,-390598307,28073383,1803133477,1024717376,-1761607572]},{"sector":9,"length":512,"data":[375488721,152231030,1131578574,1380093197,-940508621,-399276605,-1328151472,-738113165,1913114736,1611857962,1147541538,-217776128,-1194773234,-1697278037,-1636960891,528208609,604100022,-1373259714,-275071071,-275353922,1428426499,-1762485936,1599613927,-1611637357,-1112941287,-379936296,356102635,318560000,-1251324419,-1987398462,-1222513645,491542140,-1375343248,-1644395769,-1389281373,-1894988606,-180680181,-1085398312,2113953971,-1231196825,1252646437,582975018,-134217016,1605437357,-2069397569,-111003412,594729463,25311842,-1433640440,-827971941,-1664683413,-1543503046,1879256624,1298544926,-34070016,322852859,596393600,1171786056,-1757581908,-1064650122,1553857756,-2085930288,138954881,405525194,-12506071,86688820,1660678147,-1840409256,618252965,1049690112,1140863051,-1491238054,848544355,687867164,1074088387,-1022042070,-2133629143,687869129,1208011660,1330713,-835163161,-1431414668,-1439038554,1801861237,840937078,1141375516,230928003,1577152174,828420648,-1661233879,1403006977,1074533544,-617572086,1146318505,-801751982,-1073734587,877416045,247696833,-592523858,2045316941,1731545851,1759768806,-652870063,-2146490897,-1887398502,-1716978788,1664216388,-1121858749,79741780,-1189692824,1538747794,569245750,1940673091,-2101282442,-322451780,640332626,1918240568,398974606,-28545612,1330623901,25305575,-756995872,-451241631,1722872993,-1158834499,-977539142,2036363563,-1917237699]}],[{"sector":1,"length":512,"data":[150947641,916992685,-628873752,-537697137,1320548953,-387997284,-1455210846,1526594140,-33718745,416262503,1810136598,167523047,-1642750849,1711413089,987239319,309515229,-1462887825,1487499981,706519156,-1746503310,-830490537,744121130,576110586,-2063678708,1094138885,1745196472,-1237468295,200386636,616547314,-1584349196,-1944995949,-451800322,-960549001,-2032517759,627422688,-1849751345,1726925705,-353479838,1924587988,1331575134,-1990621073,-1501665909,-2079281744,945409869,-1250642957,-1832105126,1911279837,1654739011,1904354968,1115276257,85677585,-1886855098,-624672765,407362139,370262016,1646344634,41,-2096547772,-539230100,1633335248,-971219709,-850170873,1569164129,1002360197,459183711,-1249174213,922497629,-1918643678,-510813689,-230234482,970627362,597593320,-2147355055,-1931244046,-314732237,1915248778,-1041243215,-333734874,940586651,208026670,-1724859459,-1352411556,997465504,1817294497,-1779679999,170711990,1022715843,-1280410044,187322870,1030341060,2113145131,-1628571664,1163043922,1537858817,-1700434441,94564777,-1922745234,-133683684,-702188410,-2044228272,-1362255715,2007393964,-64710446,1303728066,-687392071,1619657770,43476294,-1003710964,218325197,4754578,1282572758,579482656,2104371319,219349674,140279284,-993975255,-1887775187,-1994017044,-1212391261,767139259,-980844099,684356856,779254095,35714992,480796228,-1340995773,470378269,276169512]},{"sector":2,"length":512,"data":[686153728,253374016,-2146109338,-1398336294,368988969,1495638701,-2117333884,-1686586930,-1123317269,1921936034,-737619561,1589553735,-402714176,900787278,-456475021,403322246,1901405057,2067338230,1073120537,309637620,644172161,-1927789054,-1686082839,-2036314429,-1854421426,731434900,880935962,-152867390,94506949,2076817542,-407474976,-1631391912,-1655444132,1548929924,900565197,208825121,734084920,-1059391556,2095111851,-1420518741,1042178773,-1017043581,449414229,1892251628,-704729518,-218066678,-589623197,-676187815,1943598618,1979019505,-160169439,-1619929786,189073072,-1352659196,516631911,-991916350,854360138,549087784,-1968414126,-1805018415,777299442,-2051812921,-1715637228,-1440029198,915894260,-1516175657,-231065179,1617127345,1073876574,-319887156,-305539226,2019520971,-318672539,1106605399,725547553,-1700669174,561169807,158373428,12997401,528543852,-1759523766,861618515,-1741366545,1538566854,-154446104,-350216230,1095359308,-956025694,1338406373,-1312892956,1832293749,1509425336,-951610688,865394064,-1910034842,147513651,-1300773984,918933984,-1040153407,1349765882,-1391251704,-1777324895,990865407,1318472992,-577874312,1847565575,400264806,1880205576,-435572296,780278371,-1300596896,1121686082,449231049,1036349297,97923327,1390381023,-883245689,-873281489,-1370873089,2118685041,-244947282,-1635513683,992377074,-437157194,1220708503,368970422,1580162075,1043817766]},{"sector":3,"length":512,"data":[-145617109,-1666336862,874297204,-2004703539,-1196455301,-658254447,-670007788,-370555777,1893205135,-1061990654,-207637184,1027818965,1647415918,1656662760,-1272618017,-2017059462,1619791323,-1410376233,-1664124435,-1955285101,-487621686,-222314481,1254411723,1014149939,-1643078893,-1537433789,496118811,-1962105738,2138765293,1380178937,1719980015,-792407347,-1630727670,683274737,1502511679,-728424335,-2125623971,-83838865,-931481632,1574774834,-337330485,1967461509,1489003903,173941503,-847707264,-270966685,800933219,-1986012017,1426349970,1935850682,457094901,-1812713712,-264484633,-256300373,-1493927178,-1123458092,1235060116,1283293620,-1808395517,471721668,1859136776,-1365055597,-1077288675,365908692,-589297426,-705615522,1136321596,-1234089263,431934516,354186017,687963317,-2021615598,-861613810,876493490,-1335711585,279724731,-401731462,1134277893,-1088461457,901306204,1679322503,-1742485098,-1761505936,-233469371,1615754948,-1495613843,-1916501319,918534789,1347328929,-390243030,-1149244359,1285112228,800979235,-1766200878,-1739078065,-1274618377,459311408,-1572710204,-1585482880,1049748523,-2011361144,-69488725,-156171630,750653390,950480371,2097187585,1293842936,1297625201,-958205044,-620417458,390751076,55035339,821628768,1058024387,630950666,-466744727,2142863628,1386517995,-461742679,-360920267,-776998307,1169275293,875433573,843962207,-6935250,-1131787888,-406637836,-191753943]},{"sector":4,"length":512,"data":[-678242525,1222382988,140602545,276248618,858625860,1450531137,1438092336,411662652,1770184866,-2017957894,1473649964,414567778,220423927,1538982990,-329655470,541125125,-226847900,1447925680,-362393600,-439770597,-251164508,-945036762,-1711349340,1629833135,-2087405818,-263590949,221347646,1437825890,1387093846,-770569566,-1101448300,-1624301283,2126740041,-1444087861,-1224601061,1888880588,-1101855612,448229257,1447123891,716294474,-838148409,-555621633,1829606925,-1243259147,-970294715,-1252761021,-98776251,-1726795366,-1873943291,638448716,722593900,-1163041444,-1189781551,-1606021441,-825753114,-440933728,-525288228,-222372885,600862720,986961347,1769692210,1007381465,-1821868593,-917501544,-17222037,-882087220,488635576,-342925393,1743125949,-744053789,1654180324,543049635,1119459421,1480018497,-1697565286,-321293022,-2133718635,969680574,419931734,1766452718,122476378,474435799,236386987,-277308325,98403986,-1182860117,2071359668,-930615390,-1981145246,1704413019,-795331158,-1713141062,322782963,1823477377,-497435536,700888435,1463444875,-1897877743,-1405535965,2033769026,-418586107,1248882768,1545741698,-452867097,1684009862,-1422527093,615120956,878575178,522379291,-1789530145,-148198034,2017740488,96153605,1010065761,1195043987,-546050856,371554129,1576674090,382736305,1459259310,-2066414611,88691077,502779127,201043034,176778941,-414561436,-747370994,722747593]},{"sector":5,"length":512,"data":[1225203589,-612525974,-1167897649,483336567,1042560723,-1352016425,1752634375,1044482270,-309491559,1139656326,224031370,130972402,889848340,-1033201081,-1302676820,1796649375,654427436,667528875,-1271788373,1784449835,-1694867780,-1230336083,-105878725,-1129292674,-1476771085,422459310,45988018,100728864,50372640,18890766,-1185409531,-1157913682,833941720,-1586479986,-1450586421,2028893879,-1626233177,-1828312886,-1959929470,-1559603667,1495726023,-419387805,1032793672,-1079768522,-2118096291,1082662919,-1473771134,806060736,226705608,1686827683,-121710437,-625690139,547434968,-1372468114,733644473,1778835214,1582676208,-174315783,-1247327242,-1333022139,177890750,-362169301,1074758592,293880072,-2067716024,-1675708909,49845154,1402611659,-1872229622,1768492802,2060901532,-1168327390,1670720505,338446694,90263634,-512730602,-1872619515,1780090465,470213040,-1314306958,-1950693182,-628442142,-811294245,-1629172858,-1571225902,-912361287,-758660383,2048788321,537387504,-2006839166,1235902873,1654368036,647980457,-1822012798,-2004241813,37260322,1486103689,-1675196030,680133240,-1438476124,-345356644,841713769,-1464405764,730514088,-1958557520,-1139754963,-1759930200,864955595,-2015033198,199422138,1662042672,818557452,-768340765,-1763169988,761029251,-348743883,1252165804,-633991828,940434288,-409392605,706622125,-1595524850,-298119517,1024402368,1332494878,602470534,-117662363,71340035]},{"sector":6,"length":512,"data":[1116767257,-1861994228,-2074536892,-1425127791,507983080,1225925761,606674214,-1409402294,1377520402,816124651,1301497033,-1815811784,677199951,1564889364,1246898651,1410655537,-1790305966,-1520232619,-2124523755,1717114405,-1926153751,1754638696,96038021,-646685545,375269509,-1088322070,-1744438916,1712496480,1770676760,-1872521016,1704543817,-1715050088,646028997,-1582929638,-1368712538,1830495937,463921590,654425711,566653212,-831316825,1964844865,497508822,139583095,-1847409314,-361095577,2082400177,526897650,-403572098,302153759,176300136,-2078218190,-303463802,1746680421,1621630529,1123869045,808746603,1635959065,-259931664,1924036544,686964496,-1069959022,-541833678,271997453,-822745826,-271998908,1377001914,-1889701190,-238289993,2032661666,-1897072355,-1078985922,2072499526,-658782297,1412648408,-1249472416,574858296,64436826,-1688477461,-2135163698,1468236858,-457128442,421837043,160949825,-273493300,1947416684,378895485,-512029743,-970148773,-1263225641,-1207855576,-244442567,1780998587,-1885729647,293103246,-1387110440,-1788312633,-644998353,-1939958087,1322999349,1579175524,-763502090,509640305,-753492819,-478495941,-2015562174,1306670636,-2057037401,-885413837,-1770537983,-62433818,-928601140,2072820175,1012609578,-1683903359,-61092079,-758960264,1984248284,-830776261,-610289571,-482938462,1363897698,1857955917,2002763187,77717189,910998972,-51978309,-253780747,921159037]},{"sector":7,"length":512,"data":[-1807972957,599499351,75301519,2031685371,476604024,-667181521,1329409072,1179887395,943512679,-71658979,-1514305349,1902456315,909079507,-1393670766,-185940175,-1647610300,-1956748036,2137759149,-164791271,156487280,15623767,-1545933811,299633677,1710255644,-1026198013,-1560032374,1887134858,-1375147059,1835288912,-1992858277,-554882411,-732624629,-2046530869,-911043551,1048635178,-2056795141,-1769264418,-1125222711,-1736266550,1336562964,-1722250803,-542913549,-835385916,-1483563382,-1108150806,921873650,-67046719,-613682441,-717558543,-1706435793,-1102399757,1683264886,1237657548,403818952,-2047131039,-1079472455,2080263188,716567126,-1334389941,1080871796,-161712437,314206301,-436397290,626978385,2105153724,1324879779,-202507348,-51671622,-292935842,-944981834,243096855,-1139790167,-2131551508,-623884357,637348761,-1098186790,2096104124,-324010791,-609436052,-993721961,2145847274,-646064355,1856787758,2087757533,734771262,-299067834,-1497372475,-6014094,-909108363,-1382914879,1183273581,2126298247,-954438572,1621744683,-1017275929,1567094399,-2100359304,-1371172520,-1305621036,-1652561234,954108786,1608129187,-1019467914,446152821,-1989034964,-2028746261,-1999284463,-271417872,-1496372839,1842751972,-1888819406,2142202349,57264726,1527107951,-412757089,-842867532,196703477,-1412467299,-1495674521,-240354334,-877514379,1804603923,1855120012,-1462370894,-164373007,391834784,-1385563382,-253553055]},{"sector":8,"length":512,"data":[-1607185068,1249013565,-624443193,1913630465,2147132557,1493268203,-361694201,1217687804,1093746501,722678061,2081221221,1586777139,2000617454,-1412117174,-1458035068,-705160237,1389254702,615658056,985554939,2046710340,586380519,1901401054,-1171190423,-208748829,804034337,-1886036417,197655895,521524336,1000927535,-28509384,-365359249,1171321009,-395262087,-1884268657,2052039781,-1563365187,-2132697806,-1886431345,489156837,2145843824,2064407866,-224122474,-1783110824,451263281,-378017149,-912204811,-756380331,1989191425,-1106193785,345778976,735244987,1064983005,-1844310569,-1449362747,-743697862,-1776164053,-1858645611,-1971078515,1923200849,1494679945,-374951822,818547611,1672788420,-165272190,-55127278,727610247,818557807,824040663,1067726805,1302316731,-423689050,1467126142,1622116073,-7332382,-991508897,-674808318,806891775,1290896533,-1650897883,-101599685,1342617811,-1207789565,-87545763,274103453,21965168,22663784,-1076893022,-2146393785,40898421,87873051,1620403376,734978584,-1536844200,508015214,-1664634664,-1923307722,1123842874,-685561394,-1718397901,833817832,982752695,110241983,-835292558,-966505365,818962756,172543122,-1667613820,77737489,149745382,-225291913,399536567,1347370980,-242593800,-1940754729,1722986891,2101289183,1040057326,1452738403,-161176770,-1613921619,-1075391265,1308384648,-1081215611,-105983707,1124463631,-26802360,-33623688,1954518240]},{"sector":9,"length":512,"data":[-902039365,1321379462,230403013,1086325735,-411799685,-763687265,-331794268,1570766123,1455217252,1102436421,-428158934,395111856,-1748289064,-909316691,-1738059735,-736698967,191509358,-1979711115,-281461542,1317541134,-48910949,1530464007,-544468885,760476598,-1161040430,-247443526,2055333953,-2025779462,1591976030,-463518228,1049299900,-1652212166,-962229006,-214761461,-1536121191,-451961830,-1888483769,1200490576,-728420345,1159503794,-939289418,-1183298417,645866515,-1913326907,506188056,746046534,-1001403969,1718050440,1307739097,-1297948932,-971906387,1997072538,-393644825,-719656603,1649239947,-595611196,-1041243073,-1325627273,-677022861,1678610780,-904849243,706368030,346983611,868202509,2030758602,1112763450,-1704912807,-1797440196,-932417200,1675171201,1604509894,893783476,-1490397282,1196827641,962476328,120170077,-1707517498,628036732,-557166871,682129866,-446101661,-93153860,1690091191,-2051589052,-1986909998,-114433765,-1444019726,-895290923,-86551504,-1029208326,-501246871,1646236890,-594471895,131582517,-1313803783,87777481,1405305940,1618470029,-1025920453,305819300,-135196933,-1010066390,1768928033,-518500174,-1468313947,-601874867,1627563114,146343214,-1588343814,2080246374,-22117890,-1727108929,2140639541,-2120810735,-167279683,693818326,811077604,-1009187847,-540454569,771860892,90228007,-1037501418,1887829905,-699095333,-1846759868,-724710881,-98715893,-1888359998]}]],[[{"sector":1,"length":512,"data":[63446694,1283676602,-1423544813,-1376710545,1641270268,-1741523100,1848764514,1172595611,698213404,434905828,302184959,-1565988486,-743277985,1685373158,496169650,1148420580,-1327081714,-1585381677,1734495880,-383021963,-2046356557,1081487600,290736142,-1056249234,1407069712,-17117452,1455959329,-1483366989,292377802,-1394181483,1193462282,629823573,-1901517492,1564760887,-788527795,1280543438,1243803425,1936445694,1575218908,-1545700162,1618007690,1693060541,2133145095,1983723212,158045739,1577942897,-210706052,-1946263862,-1332010904,-1094052735,813253311,1892862228,-408785268,534997693,1769042798,1762828298,-1469011984,1125466829,972995859,-81504309,627173195,712668685,824534219,-938728645,-1363612725,1431227812,2099979577,-2134390312,-1973374912,902492933,889206016,889206016,889206016,889206016,889206016,889206016,889206016,889206016,889206016,-738170368,1342285824,1074176003,34308109,67205664,430654449,1447047668,1567410128,-635448591,182841813,-1175550841,1067742901,-152851852,1104554021,1455898533,1955164359,211964383,-902578462,-441683570,-570127421,145324903,2126993277,30880063,-216055743,1562602158,-220430123,-2025771553,-99363185,1734532728,51565553,1444684968,-219844316,-324099707,272117925,-1936381480,-1061345420,1058818827,-1403038041,-936280450,-2082888588,-349973779,-1936000515,1139128443,-192039242,-2130945340,-1008032802,-146587601,-246355824,-659164613]},{"sector":2,"length":512,"data":[-312203396,1201818440,2118096357,-535624593,231710790,788280538,-236955094,-2020017092,504729619,690193054,1560063574,1828918473,-1010719386,-74384042,1145240620,453886417,-1073442924,1799357797,851676124,-515638315,803733585,-394175129,-456847110,-554611213,-1257468226,1005899987,1311042282,-2135257226,-1053516958,-1164971657,1643682267,679212838,1057958155,-666642028,532696345,-1903602211,-232918542,-1126761289,1673152029,1066703559,-1378468194,1851637313,-118720612,-1630830593,-2114368738,743052961,-415807998,830637809,-1741833110,1029414727,398726646,100184364,2025555275,542993814,1726511851,-1620714120,754847983,-1400899229,1906874795,2031240158,2051340881,-138071790,246493881,-150220479,1397297015,1171432865,432440327,1916405523,-1990894239,854863685,-1625947324,850492778,337617552,-1737523764,-1962078127,1014507454,234316074,-660469169,2014437189,2016357724,-306049270,-820097169,2098390852,-1169856841,-115216973,259821784,-1674873161,-369204456,1536597788,729387837,2027725279,60824758,-1720821184,1059813577,181101961,1072020078,-190884079,-1156863212,1927475358,-1576869208,1548813496,1002546970,1777363424,-237163536,1931347929,-1361655808,1236124900,-1780355673,1464880949,2082277398,972979626,-337948998,1973381216,-1474167382,-473182421,2066398995,1419087399,1341137532,1433582312,-440366607,-366575736,2111716042,-524672303,-1585235944,1920887690,1818237709,465531196,1013760431]},{"sector":3,"length":512,"data":[668747199,-1721115691,-1278532280,-505955559,-399343443,1449827939,851244776,1698605923,-28748008,-214296882,-1950802391,-1487471934,-223916817,-343333257,448575395,-1961608934,-1012687105,-272859539,-1979488416,1379152263,-1863559119,290951348,-590423205,-1084445528,665352371,-399101232,684273766,1028282095,-872800181,-1488785742,-107313574,-1271631137,-219209826,2014371403,-317208207,-1084043974,1943237445,1739176223,2064247203,1407230339,-1944827060,834387703,1213597299,-270942797,664867737,683573121,-1816093212,1455583073,-1614734967,85254272,-256581695,-1010955954,428460511,940969714,-424863800,1246492299,1852609518,-938547102,815501929,466054698,-1540234938,724239355,1530269427,2015924777,279905312,-721492425,420336658,1085590666,1334033669,938224950,1813267062,2068702074,660936763,-1091249861,1995843521,40128749,-1542931568,-2128201747,-939234731,-237491722,2068866954,1874636106,-1691352496,1626158012,-159977610,1285675540,1106116628,-1331727889,-822522397,-468567623,707802904,465714085,-1491756817,1716926736,910965547,1345423201,805921,1865700385,-1308552466,-1805576246,-384594599,-1306790314,12365686,1772286308,501448161,-295040556,-496957262,-1894551787,-823866294,-1561090724,1916932115,-607537934,1458267878,1385657128,559579153,-1456520556,1747000220,362786914,125065137,556805419,1964331011,-889871629,-767368887,-1203178592,44730654,1653979861,599658530,1598156164]},{"sector":4,"length":512,"data":[1459950200,-2105011999,1003328403,1933671673,219405063,14090708,372113488,-1458962026,-1620858238,1683654242,-667300957,1372623324,413148760,1788516954,1803133468,1511108763,-762930136,797665897,1880881366,-1670965706,1193971335,-1714318042,1772657145,-1537382570,-399986216,112587169,-843879324,-1652332409,1873147874,-600372664,1074266279,671613312,268665024,92356680,-2118096872,-1064820729,-1236631639,-528424713,2090629509,1736870491,-1995834994,-1099863330,396083782,-1650170134,-590839314,-964276365,-1717201432,1520589446,167930366,48279594,1624257036,-264630781,1108345824,302276880,81866826,1632653844,-1034021371,1148837175,-1495427474,439868907,1746565527,-1715374178,-93020648,386246493,102858846,-1583323623,-172549370,-361077193,1738389917,-1698132468,-364256613,167016262,-912824984,2078197585,-2025731984,-1041729507,142614407,-2011068350,596165160,-1992144752,-1570203611,302625821,-176594056,2011261521,1762223587,41458791,-56350582,-1540776505,-2124720027,573205028,-491738582,-793629686,-1171387550,1747539856,-1474899448,49855647,415510668,-899249021,857864504,220414158,-1553934795,-2132920563,-432468445,1708757920,-1899779589,-1234112453,-655082336,-1723953277,1713415154,474217112,1678836288,822755856,-1136389916,1167148105,1371826456,612441736,-1591326446,776671908,1285252289,-1820010188,83442766,423907476,1280480389,1419052345,-1786422956,91839574,-1855805994,-1772480923]},{"sector":5,"length":512,"data":[1536607657,-1757034128,-974555043,159408023,-2006869946,1670956585,-253343344,-1998625348,-1420350448,1665120,-2027058962,222406770,-1475526444,111162625,443629780,296588606,-2014823339,-671695531,618904030,2031026684,-1932600843,-1880988758,-1978616470,-1247093775,169154597,-1462965941,1838075558,-1899046219,1117580934,-808348684,728730728,-175242416,-541387867,18384089,-806659288,-331455972,1062939448,-2071506124,1354666858,-1680795082,1378425918,980939954,738206491,-982880623,-649262460,1037676506,-1714240666,-1622677216,476339096,950690250,-728914351,-2019836106,639845737,564347712,1775954989,-16901995,1186269462,-1299377044,-1434038087,-639093326,148689766,1302509437,692391787,-1946636803,286429460,-1681093829,919812249,-996504019,-1688000393,640430491,1324165326,1126764245,-1482546434,181251120,-996887983,1838854340,-332790985,692814106,239143428,1243926779,239161495,1736270292,1164963561,-905172236,1284811729,1126799001,-1852576923,1948339561,-955170898,1937209174,-1694318445,-1705480042,304292140,1656122657,1470430644,505574047,-265169580,589534232,1590424597,679251826,601039699,-112277253,-1797579611,-820162789,-163975974,1343893918,-165430165,617998132,691116456,-1048778173,956073153,-988786563,941039817,1661706215,-1536982743,1439256519,1612418302,-774404228,-1761772095,2124489539,-85746206,513765667,-482557923,-338433388,-1625543127,-59262446,1911299359,1574295271]},{"sector":6,"length":512,"data":[684177218,-1023691431,2096832440,679397279,467440095,-495975694,-40964621,-1684709775,1501346051,1161687371,1014244205,1010470692,809943015,-1091464466,1879161976,-848156165,270907773,-111081525,874705896,-521609111,1365317533,942648596,1918436374,-2094629471,1869831075,-862215722,1464046384,-396715933,830871824,-899628150,-1995053109,1171424166,-648630920,1484750316,-1930825772,-1340006132,1832828820,-72274833,67071147,-353672071,789849303,2137157318,-965877726,741525250,1791741604,368230738,-153864463,1390012388,-1753699107,-158326860,-838700483,-1609416492,1146804191,-1682403513,1884286937,-2136888316,41431805,-340246031,-1916638424,-717258767,1957207892,-1051477380,1335103064,-957617956,2102724181,-1863472360,81022154,897485348,1496962414,625662519,410467526,1536982783,807131379,1846334586,-407091286,-1274315223,97901595,-1947830447,1166277389,-1724416677,-955664868,-421930789,104927267,83090137,1794675991,-408953415,535215986,-1334002091,-29156049,-1198279689,539985508,-1241286850,1869475296,-412567615,-2089955854,-1825851371,-103815702,-1106398099,114999704,484861479,-568976109,-1431901831,-1758412017,-235008079,-1875050510,-1170359351,-1727897442,1893584896,-74618002,-1163152134,-282286359,-387611367,183689728,889216637,-1730098788,1689772332,-1176588964,781575639,1665047698,-1415708797,-1056133330,1556920828,566229749,1230017218,957923185,427581493,-1203945607,-2037579939]},{"sector":7,"length":512,"data":[-1889746909,-1092715452,2142948705,-2036020869,1819010359,1977008352,-234501145,1194903151,376174710,-966837704,-238931086,-39643541,627217623,908856693,112564015,2096182369,90763189,-1309601421,-1806229208,1449620251,733918751,1531561513,-1567400698,803466037,-953456692,-1363828345,-1445530505,-1214285980,-12793638,985668222,1651545034,1054106154,609128822,-82661284,-1205599166,-1328324207,1652641860,-808821571,-1927435434,-957147540,-362839333,1169444095,-2066939189,979085422,1874696501,-1078409478,-255648865,-1853904626,-975065448,1537396726,1889909780,-1650007885,1682057058,-2111343184,-299712122,2001730400,-208534419,964423358,1650565824,776744614,-10428970,1548305266,766020737,-2074745822,-1721113139,-613209044,852515322,-2073188958,-1995578306,2092857324,1340076824,1056370465,946553709,6798459,-948936418,1984951796,1417251086,87061630,135515129,-1267143455,246362030,-562805283,-1066110735,-970631925,1548170518,-588390639,-1618646196,-1078829442,-171625194,33303876,1515335690,1927465321,-926306758,-1016288098,1894518381,199666618,1185917869,344255259,-1628755482,-404009293,-891365958,1725481326,-54238645,-1133986702,-1457896818,1821519524,-2036295774,126544458,-1939334497,-1554459992,-1138054503,1041138540,-306073448,-2044626854,-304424423,1516148388,-1899591572,33564520,33579024,14692362,1615860228,1880753665,570950112,167927952,48279594,1495414540,2124854191,633482760]},{"sector":8,"length":512,"data":[-1225733286,-414475592,1239551150,-88436945,1199857928,-1654118218,787205707,1624257217,-264630781,1108345824,302276880,81866826,1632653844,1884952069,1645741537,436625808,115454058,-1449998406,849196839,1503732363,-1285178958,788269741,457064852,443136677,1654615017,-1729791754,-2025731984,-1041729507,2088771463,1251353962,-1821681446,-1604747530,738612116,316576072,-141497333,570974738,149041290,1649447460,1889150473,-1574434334,705323664,1864544426,-936498550,305314146,1318497785,-1875926342,742048283,583168904,-524931829,-1104213086,-1243309392,-1406653873,141980302,-1101677009,-1064702647,831275784,-1933367096,-213331917,-1434009565,137700249,-1742317562,228810966,-1820271049,-1368882708,2141392425,974021522,249802986,1674637884,-252035569,313467779,-1826235870,266867284,1678836288,-770031088,205695146,1150354489,1750358292,1747261602,1781514227,541561284,-1868109811,308580642,-458151350,-234468334,851369961,-2003606319,-1819803023,83442766,174161876,-1085172667,1393861922,354763086,-2057700011,2036094613,-413624827,1503667602,-1765430936,1170829403,-494445161,2057055813,1612178929,-1740082814,-1507752257,1099850520,-1771759322,1729734241,438731166,-1499355543,-1045533926,-1234363610,1864083169,472318398,-1490958735,-168004836,-764142357,1981638481,501707226,1737613944,-1310033378,-226746649,2115987409,-159049661,1725801520,-241500682,-1470941093,1573804776,-1363931443,1299596041]},{"sector":9,"length":512,"data":[1981099661,1493806717,127957519,-401653638,-585089791,1037343232,1137774404,-1724873380,-30542591,-267434083,-611807491,972907638,-662832606,-402153442,-267529215,-951317388,1879824480,-1879227427,511246954,-24107606,-652090159,1777105795,-1544496389,-1304516357,-147377959,437308549,251559925,937924719,1468928929,722546003,802203268,-519946780,1744524259,1816331808,1611999669,-1725197919,544827544,-311731018,-946704228,-1887225915,498006374,507947286,-916132380,-1010809215,264554460,-1513342325,-587829990,1832019272,-811290762,1694197451,1423316130,-262072447,-1762671459,-922271140,-117024893,956649231,69020562,1177165467,221588182,520524727,583097026,1219517021,225184882,-1492967308,311083100,1812805863,1774570206,1278389825,-1569583717,-670049206,-521770550,1434559141,-1654205774,-2031081755,-851021095,1384878337,-1682758868,-1554229923,1350053281,1318959058,2037366843,36889875,-2074194322,1582673965,1745197896,62312118,2126119455,1233364525,-1374249663,1187880996,1806807040,450909158,1991254381,1367036032,443429049,978202337,-585067923,-796213437,1252565365,-635464417,-1342740628,-1480356866,-1114876788,-1152510200,-1037886966,-1571004139,763253865,770735653,-314662071,-178809803,1691413473,-353947089,1232231077,-842580465,1210635824,-860773354,856360846,-266756432,104751559,1812740876,1378715072,1945840347,762103964,831955954,935480281,-441263535,1263357324,447570396]}],[{"sector":1,"length":512,"data":[-41649775,1318656010,1583908909,-845837133,1229370890,-291715325,-1007013936,1607438289,-1469484428,-227009387,796375146,963376016,1579914458,134273056,576996195,2019345741,-261581052,-1722669027,-1745885524,1751579446,1220267795,-441155900,1740290922,-296039501,1941803866,-1797722607,-1463904354,-1082288422,-26284607,-1341691901,-2116813892,-934691557,31181439,247521668,890947545,761504796,1953388759,947330782,-1215703402,388383019,-1995062601,-1789601014,-1200997604,-347660595,1402567150,395267825,1432908406,-487500450,-87338236,-283814866,1589203981,1085043295,-1048271462,2047803431,-2092403044,-474785531,1678932125,-1528450942,235918647,205331999,-862816624,-1346935623,-1507664844,-442124552,-1519747632,-1138938749,903832890,-2021262758,-271568559,2081022877,1559613722,-247574354,-99800645,-745045390,-1078758227,1536058810,763783180,470395136,1727918651,472633111,1102914300,-32510985,-1884160853,2107041372,172456454,1977276664,663494803,-53912300,-547374905,-1507604673,-1532550591,-1571329219,-74577235,-1996543319,-2027218405,-1232822867,-507561738,857820576,569090849,591842041,1454098694,1847347128,923519204,-811571821,1981707872,1738165920,-1814422634,409652829,1295877500,672859390,-1239286270,267390761,451865310,-162767068,220753615,-1068301094,-704156781,1211674174,-1951797194,333451611,-1965270680,1713515292,-1376430450,501431793,286097663,-1929075539,-82065624,1030905276]},{"sector":2,"length":512,"data":[733341094,957107706,434889179,1463411026,-290462511,1770784543,-1401657522,-13815264,1401256368,-281696293,-286577659,-400687534,569055549,10975244,1880788459,357957964,-2142180600,324129217,2126362662,-1354701592,-119068244,2072263002,1924534748,1287288483,-628122768,-256134078,869131531,32183902,31982056,31982056,31982056,911213032,1313224960,1836902962,1005834722,-286593406,-1946761757,1653266668,934368928,1205450017,-781189327,-1883528591,-1318885857,-558414053,-491128598,-2023587130,-1147014232,-77626077,-1637824097,234574151,-972246034,2142816221,1786620015,2107720499,266018389,-273635427,871338763,-82508248,1967208991,1075803935,-752915348,-239443203,-1531445437,-1074098732,110025431,-5739302,916670197,-590676460,-108106360,1859092503,-2028876633,-105567464,-573264625,-1898531784,737013691,1256027408,-272318467,-1271198113,-481235295,411402709,405729137,-1446266342,1967002649,860909463,1657202388,-1396587346,-115564162,-1541520793,-1467565954,-574140909,-670574191,1278932860,544858281,256833688,-1354523302,527785807,-1763693627,-274465527,1256961002,482504861,-168682328,-1293561969,199920317,-861787145,1268926279,-2062589560,-699959526,633169616,692131842,-2144346815,-1313148226,576421935,1879529600,1600258239,498818304,-1072223872,-1978623527,1100255761,297318745,949903867,1182167569,-972270742,-610801525,465579918,1732478396,1285404878,-655491067,62255846]},{"sector":3,"length":512,"data":[1378646378,264173450,2072376655,400607531,-1408264844,-522560953,997242082,1800359504,131278735,1667550147,755915592,-124027918,-1719386358,1541565660,-954242262,1422521360,434551009,-538435895,791407507,-630681459,-988310978,498847412,146709648,-465800821,-1695393610,-1623827101,1823497065,-61006762,58627024,1403862422,2039456468,1291525569,-1944915836,707718377,1206020490,-777757461,723364009,2037436998,-95181847,654358240,-172643007,-146177335,-2013249495,997925914,268242153,636782702,-1291489528,1795409053,1635991405,60453351,98236264,-1554049840,-1616061952,998049123,1532626443,1748263384,-1963407065,472935025,-880240770,-1849596698,745983244,2080359652,271227614,-1157003911,1685943348,1995996717,-1611865806,1326454687,-632811240,-115188193,1298472243,-1077869511,1439321785,1030950530,-1352744018,1066441077,-1357983079,1464691356,2019434662,2131042842,-383188548,2128248581,1589827630,-1178613898,-495503582,-476180844,1963539272,-1689171493,1104917396,373651890,1531729821,-240561061,410755588,948823783,654312427,-107453208,-1343327296,400948590,-1344608895,-118849256,2110514469,-948482413,1834865546,-472596295,-421433288,-723374728,-1147215589,-2036910607,292934853,1219370445,843540294,-1349800563,1999267065,-646821282,1756578271,-1708624074,744265985,-488719449,321681687,-1037664567,-299375808,-1133993240,1031657261,1878307520,203116362,-1366675649,1359012594,2024894588]},{"sector":4,"length":512,"data":[1166336185,1890012596,-1927769578,-801874101,-2037647242,-1522795704,542361490,-411005887,-2029961229,406533444,-1978113060,-1205857558,708759283,501225171,1913581935,-459082201,-27555427,1320423103,2002262665,-482705425,923721238,-899859370,238010055,499596742,1683884037,-694361636,-540742116,1988964217,-472240392,-413921538,1117705061,870594407,-1771574555,-737536784,71475060,912782387,-563471241,-791025230,285433772,1482316591,-577131163,1572609366,-1451675927,868403141,1156998009,-39274616,-2099999443,-724166542,-695522720,-1792455604,856896709,1968018785,-323410704,-1159145443,637130251,445528956,-474256522,-753593064,-2113163572,1326829237,1462861653,-1829563470,524662334,-1271983781,2107734122,985461772,847164987,1008068137,1520649217,-642467691,399077586,1443643823,216693894,-1370172078,1586104141,2082485629,-447765994,-951776284,525235684,1289450846,1218465645,343120576,-1240130834,-1215868675,1967893806,-1146374784,-952956835,932905139,250874966,2055162598,-1716051654,1547365980,-466670290,-1474448667,-152753450,1728230467,-222038802,-776575362,-2095377832,391119154,805962108,2124380626,-474425861,-703164558,-2036506139,75557401,1675892278,-400145008,1242403940,-237395612,-560815943,-2045093819,-567777880,-126768022,-702387167,-376841370,1860622501,653870726,-367148932,-575507229,1450072966,-1760015898,-575100321,1488314269,-1838249060,40346823,1764030086,516375155]},{"sector":5,"length":512,"data":[1611661824,805962240,302252256,100753488,31485978,1620058632,-1339422206,839647968,235102416,494508461,1459241071,566399135,-26140714,-2095520207,-1560672822,658925683,1983748445,-1485612538,1965057701,1486288455,1728967314,-361071972,1074758592,293880072,-2067716024,1095258131,1750603141,1612154305,428229000,-2034128792,298348571,-1915970148,-629416617,-1960479043,-1746435484,-141164690,-663449380,2082375553,545784312,-2004739964,-102638302,629239779,-400351896,1613457745,409530865,-431357568,1351754760,-1708783262,671736432,174231714,-491738582,-793629686,-919729310,-1608927211,-558358034,-1024882080,146812811,-1700798525,-2103977775,-1937565500,54053938,1490302093,-663198093,932037480,-407242326,595689345,-1595524850,-298119517,1024402368,262398198,108068415,755253392,138516518,1133560873,287738128,-1537141179,-2128722159,642322980,1259512993,321175854,-1528744371,20860691,1179718693,-1621842655,-1794819764,-2057743276,-245606763,1649939941,1511417233,384151914,1708225116,-687120873,-247576438,-1056440333,-176534485,-498431990,151076555,537460880,75506689,168034448,-606164872,1539405406,1642081072,-2124436736,1475145118,-1341735140,-451433810,-1711111881,1174930446,-2136017916,89522496,587211004,-469717463,1733713080,1740253896,123277103,2132128735,662796638,2097779958,-988853734,2039322007,1184115395,-1935674354,-634410909,653861543,-796094588,-1422981048,1976234915]},{"sector":6,"length":512,"data":[1983534535,1599623641,1562338254,2143783253,-1327793132,-573503586,-910960481,2032994271,-25904081,231869040,-3872717,324909982,-1885834878,-275223586,-477578246,-251484739,-391886908,198952875,1895799025,526781820,338483143,131812566,-243751806,410831122,-196590137,-695451587,-477381196,-611029321,935957831,-1915112011,-1170677010,562978628,-815022086,-754970123,-454280095,251994261,971966133,598348917,-205804736,1377528192,-1369481944,1143106694,-638609929,1391176691,-163508755,624871073,-1274588187,1823333746,-1897457593,551055580,1095437690,-229977248,1924518143,-7111622,253387799,-1301636954,-717250481,1012818130,-1500780991,-1087486503,-2127613081,-1743435113,-421191114,-1327727865,-51842500,1032532656,-389811337,1433394739,881736513,-2063301628,1073623818,1943715340,-2067304606,-1519241662,1557199992,-1830637370,1426416977,735350322,1282224750,-1233496636,1688728377,-1168638609,-302765025,-214244459,1092297981,-1546801541,14430370,-917697463,1436903353,-207146087,-1373807336,-131877338,483943001,2064716510,-183731345,618268308,39231661,450922190,332195465,-1368890610,1397041715,-1302849639,2089089576,1597941499,1356423267,544416134,-1604643433,1515194414,-1199675549,174027951,-1439120552,-233237915,-748075123,-540675271,697385911,-921584573,-1281884593,-594497901,1991687695,1044023656,-2051925563,-1329624181,-212097427,96350779,-583159972,-488576510,1455917998,-1922530313]},{"sector":7,"length":512,"data":[1125532380,1559736205,-183204378,216913299,-2022313959,-508658794,-332642993,1964311988,-734735829,1510391544,-1800138114,-2008761564,-1695274401,1178016036,391771233,1332140524,-2135415378,1611701225,-379674811,1673181790,-230218512,-1358136365,1855460738,-486953503,1905457641,-213290387,97658170,-1815982081,1609767578,-365854459,-928291463,1926024936,2040456934,1010408874,-41121138,-1016099884,-315036228,-968958500,1579847980,-1181304936,1671879079,-1166661139,1677171301,-659429939,-1615279348,-1178737097,363410089,1108869785,-621333278,1405900184,1563328234,-2031458640,-428972711,1521045105,-263518294,1784351289,-1249562199,-2052704572,1321678794,-1993758186,-1786506065,657505526,-419926725,856369906,1714231654,52685050,-620101066,-1125753506,884827977,-39931432,-626535948,-222825908,-1192182478,1851487972,537049781,537264384,-1341980512,-759895234,834374345,444793518,990681066,-352082629,-1221801374,1776005806,-1944661612,-1223841548,-960894967,-781247338,-2126493680,-1066919931,105777025,1621930061,-1028871082,1874543337,730008000,-834166419,-1248203046,-1603720598,35684944,-1600117239,1278085890,-1147476517,-1318196854,-1484035496,-1452871513,-12274968,1973480777,-1075209538,-2096296342,-2133314548,-130281853,1141933056,310673688,-420672892,-1973743205,1059504690,2059413372,-1620145378,1809423036,2034944147,-761084751,246000347,327469435,-2059319216,2091840789,1996997035,1471704124,-1142621846]},{"sector":8,"length":512,"data":[-2050922408,1099456535,-1469572730,-1781894623,-1762760254,-1324715240,2051828938,1650701810,549874171,478609851,684841076,1780382654,-1295725647,2022700028,528990696,-2008938368,-1037531103,1217405832,2125032002,-1079600138,-247871926,182881189,243905396,-1775947316,654942816,170033310,1789342505,-1907845046,-1465650772,730514088,-1958557520,-901581011,-753620177,1168009449,-1163310522,197322936,-1171111507,-96033052,-1003451390,848069400,-1467361076,1824446112,1087293551,-701166301,-1331221768,-1539509032,58252342,1424242830,1422617225,-812743782,856926788,62450843,-655082353,-63008893,-1234957608,-1878787280,-2078735296,-285557872,239276200,1158751297,-427216618,-1396107108,2031915153,608735748,-1100303207,-762775991,-458151249,-785232878,1050088292,1318292722,-1811613380,1696154704,692625829,1347654853,1428669769,-1786422592,-1395565482,-312453206,525932076,1519814043,-1761232532,1708275804,-243638761,-2107631643,1637370085,413766024,641830499,-231054055,-1704584856,-848554383,438731166,-1499355543,-1045533926,-1234363610,-1914984735,468511164,1729217136,701025884,-797729593,1973241673,497842648,125449847,-1713080162,-327508345,2090796985,864541172,-403572098,302153759,176300136,-2078218190,-1283960302,-932571003,-1977579615,680108616,-1952266070,-205993424,536084098,-394142486,446463946,663857140,629249301,-1756490579,-1852452658,1730883082,-447116478,-1432374181,238610169,1066769202]},{"sector":9,"length":512,"data":[389440953,516284380,815482237,-427353747,-828694716,1549178092,809808434,823736797,-298826685,1516391052,-154546397,2125423730,1445627268,-1743452195,823510390,972939403,1166824544,-1905511494,1316596001,1509813644,-799016444,-1292096,-564675278,-692200705,2139084958,851503974,258021582,903244582,-1938934821,-1285790538,1521597617,696367923,-1224577001,1582907914,-731669172,-1554468039,227241586,275267894,525815413,-942771493,-1276100826,-2050172021,1248974165,354916565,230276261,-1394904935,-1425431511,1321655374,-648869126,-1127461066,-418313286,1567340161,-709805264,1177348543,-247867370,237175350,1840657530,-656985801,1165436814,-1787707785,-430349462,948077090,1524993173,-1615041458,-990181988,-1280910138,-1131799136,1836473748,522838548,466903068,895672035,-1900493522,-2116786393,-1924673679,-1046150293,1502935405,484753634,-2105714992,-662670426,-230998312,-652182760,2023350589,-2084189344,-1760653581,116568371,1690337609,-649123382,1808557865,1892005886,252691419,2046325489,1190671493,-645742688,-1609725643,-610625072,831540676,769250166,-2104664674,1497286617,-2073977520,947623979,-1051563159,550495452,323896121,-693114858,1842092860,903709100,-948799134,760864786,-1110235101,-1621409679,-211947839,-2118704139,526588172,1884609880,695013373,166832131,857606734,-843436115,1854228588,938118333,-427915884,-681051707,-365344677,1660014364,1356124760,1077565487,-891985103]}]],[[{"sector":1,"length":512,"data":[-203574392,-345458353,1653509850,-375858516,1995288529,-1798738595,-1858312981,1908042646,-1788819045,14926571,621730275,-870343721,557873066,335774335,-2138944074,252313410,944636968,-370716654,417123434,-1905584147,161436854,-1557865253,758540755,1555317279,-1048686163,-500312802,1808017873,1714886789,719907238,932730932,426583028,1067409186,-869722323,486094752,528461802,-1922710225,1278847456,804643369,171830486,-1291470164,267280816,-1152628363,1689061853,-1492658437,-1309398015,-1381516587,-806567245,-777132533,-665973764,1374457872,-2102379860,108011641,50753687,1847398114,-139332530,259104605,-1304862271,-1340383195,-2029580531,386884493,-1942215225,488686528,-511214970,335598305,-922386600,1152733773,-1787756825,1672775222,-80532341,25645616,-999460590,-1781259527,-1236929162,-1123812568,-1214428861,1076663176,977993156,1473349989,474286290,-1199119929,1754054940,-52045519,459287259,-2135538922,1839401999,45730272,-2048995858,-2109990410,1977888499,603867275,-1445528392,949074841,-791753363,-1577218345,1381193102,1958733893,-1641146122,859319791,931658763,-1101766119,793981365,-1614248162,1529703653,2031089131,-94357000,-1556235469,1770099310,-1267741061,-677537142,1527760063,1583655942,-204498031,993824545,-862183614,1689944603,532735871,-998284058,-1623982207,-553791777,923909950,701321069,-1507946185,973746644,2038967756,-2101402571,-495544114,712881836,2130955958]},{"sector":2,"length":512,"data":[1067537783,-1661893585,1754378613,893503819,-1006455393,1322075847,-792298681,-448992654,914323249,-179057914,-1912932414,-615149927,1846270005,-1890774673,-1890928074,1011196408,1107187768,1712265237,-1205674274,1415854481,1747794824,-1246626970,1477839540,-1154384827,1081108858,-1407429481,-212963871,-583888609,1068744770,-352290393,-408037340,-1398595184,-1653613012,-320704925,-1238427399,-1881323940,520795382,-1639939853,1127815148,-2047398679,-74418842,1067927714,1830817339,1031151289,-1310200050,1097000071,-1401373932,-2090338082,-660691403,-1379004608,1623621953,-325241741,1286764873,-1035659996,435634155,235870778,-1219414255,-1640716078,-246902979,663236478,-603049269,-1257177817,1273859180,-1209048594,-1206498214,-1370992733,-1284417217,-731079072,-244859022,-1573051164,1354918961,621942335,-1622544420,1029477788,-190087474,-2056268246,960927932,-1042085562,-1158597529,-731618503,555819801,-337660506,-1938634269,-75572826,-941745091,-1228413874,-1695254040,1173697249,-120770524,-1062104455,-1074905291,-1927269089,1204451767,-842647677,1888566942,-70936641,1484213528,1226557190,1876727088,1254744517,-1727445290,1387160620,566660167,-1735521612,-1870182094,-931973916,-60090919,1631250472,-6283900,-2103562002,-1307427385,-1091516120,-601674663,-1238974972,838898783,300659327,-1508735444,-213630577,1166097512,1206825437,1534028965,1541372307,-645719350,-957992858,2018841374,1218653298,852851320,1535784447]},{"sector":3,"length":512,"data":[1856516615,339286834,-2145360974,927841387,403927440,-754199834,1105246657,-1131925704,-911508806,-771297444,-423551423,-1663852680,-230658580,619465990,-749659344,1870591128,-100424853,1064767235,306747309,1847824190,-864795246,1947685266,-1949085559,1665199745,-1008226194,93914952,457085541,-365797360,1572676970,1677821779,-1860974436,-701559151,1963743439,-389459511,761019259,-105820720,-2083369343,1276347824,907091633,-1021960874,684921229,-1271017156,2141523226,1537686755,709042980,1714121737,843478882,-1365791620,1670374594,-1032155555,228796054,1418128423,526441874,154243086,-1121381332,433049861,1225571927,1484661821,-2123057425,-437186704,-1815745006,-459763134,-1313030600,760709712,641087936,1639053577,1944129792,-941998184,1829684430,1134164675,73183935,-346583726,-1836944071,-530797171,538535644,1741063910,-2019865594,400269108,1000227198,825786178,-2000053473,285440704,-2010498212,1354618208,-1819184291,1247995454,358150239,2133098544,-258297314,2079286407,-936859644,-1448330656,272214884,733414042,1490342504,-1211181563,131689184,-989553982,1667666396,1090285004,-32490060,1319432627,-1212209883,396469030,-528342098,1028138536,1198134818,-1889784665,-1715414441,1351807377,-626990266,-435363994,1823028959,-444039212,117919131,1674636624,-480049178,-1259798785,-1711178902,-88576687,-1555482049,-717646673,948263363,1594881315,1370836175,-1041054057,442158465,-1536334283]},{"sector":4,"length":512,"data":[1601187896,1349497613,187144975,-1056342335,-1140323134,-2015629596,-467600496,-523133306,-2112785749,1109908507,281414760,1236810842,924427935,-1928008447,584409141,-31146066,1158688208,1965795699,-2013139399,722660378,33771780,995493570,-818375306,-904995170,623126939,1690901918,1450212585,293852460,-767307408,-948999104,155324042,-1514262854,-41405831,-1684619897,1122639832,-741431873,1989765179,2043994472,-1524907490,-1134428085,243810559,-120138142,385652632,893227629,-1455533979,-112237048,-1154876914,-1479511950,-1588810362,-796711397,-840422478,1332087707,721716010,-1695190489,-701006004,-257494621,-197300469,-620451526,1418423314,-904512880,-1998098837,-2009166356,385385526,582308324,-557017540,596564430,-156963358,2109414728,500442865,-568514318,-936564138,1234458718,-1433291184,316683546,-1240064120,1439457956,-1777857238,-769987337,-438512536,1241014623,-932741002,1689224360,-104124380,1504581456,-1898557396,517591,-1536609211,664551402,-1552924574,995391760,1242728771,-1313450060,774420890,739573792,766631153,1649019181,-1068274252,-1960073667,720233957,-191434684,1132110922,616144477,-1360223882,-303930439,491140872,-1683063199,236536918,-1027055629,1206014498,2128301122,-911200712,887360982,-768003934,1312423085,691762687,-939277935,-107892096,443808042,-1306124018,606263842,-1648368475,-1203277352,-719720709,-655869688,1795618684,-179948783,-1742818943,-29156924]},{"sector":5,"length":512,"data":[812355403,2003830646,-2100074328,-1165831590,-453828274,-578486514,1226692757,-1697932569,573530627,1529161238,1083066894,282651968,-306678388,-1463703739,-1578456429,-116125753,-1572804582,-151924210,-1894965744,1571915723,837904837,1448733003,1980009173,-664516762,69195095,-1741381234,1553924720,1097788091,1146406077,-786253170,1615091447,1889076807,641773876,-24455223,-195892578,1266620398,-1308510356,524294421,1470686262,824226984,-687986594,1659931102,316426825,-1181970714,-774074589,-950936350,1920765669,-1945000953,-1494057610,1845296028,-1181568985,833261601,-129035910,-1663300240,-864491189,1776526429,123269111,443674477,1735555471,966675256,-1502492754,-1802167814,-1856485768,-609013195,550878611,-1689351957,1364649885,-1141044704,2122432489,162179735,598253494,-1005260978,1765872313,131324352,803862634,-924605460,-2022901283,361977301,1710986180,-536807106,1088177032,1631832229,1649233476,1437656397,1883404277,-171195368,1881050688,204509321,314170831,-1718178195,886430334,-1482575281,-1928894129,-1944857422,580479101,-1002112949,-1163170243,1904443723,313040220,2129733597,995459600,1569841600,1905490822,-284596599,-2129353399,129527214,-1467881647,-1530852545,-1997280829,90572562,530427073,-725310389,1612305061,79705032,1591029530,-1840230153,-1127051575,781004570,865885773,-1488177998,-428912047,821284566,-1508901199,682774789,1275532295,1303908233,-2106010984,811040928]},{"sector":6,"length":512,"data":[1793662280,1315459627,-826929788,1068879665,-1628854703,-1680682057,-661392903,1175588453,117853406,-1294751479,-1789300355,1626628564,-303272752,-1570310292,267230536,-1334573169,-93126980,-1177816668,-1326141286,-2022824667,1816808874,-1737677680,-1978631135,-1333550893,1212333166,-2055818680,937002949,1114628421,805216770,606060452,-934144571,2035147026,559444652,1496899932,-1764626260,1581170660,997263920,433230550,-1915378389,-70990999,1910808696,1024883919,379095013,-2010433014,151431375,763013327,1076583287,-406105990,-55165142,1252677890,1873522835,497928220,-42798463,1198223835,-1677136936,555580252,1793683023,131409831,1452051183,1898610228,-1490583543,-1781692941,-663391896,-883713402,491288692,821340676,-29622819,1858391573,-1399014276,-773694983,512266488,1522982150,-1698816290,-1837084373,1774288172,1810707321,1510501136,537112366,1792439296,-251210575,1773534627,447713438,-2129499223,902170459,122451209,1733062594,177924835,-1345748718,254731085,340555041,2147094984,1956428391,1094135992,1128475928,-529162104,-16498999,2120487163,268158472,324631946,2008646154,-2015900345,1430304925,-1424421499,-837178290,-96472700,-1691467818,1199702930,-359974421,-23538643,1754015857,-1861248766,1863877321,1882351485,1713416215,770463932,-634755316,-444054969,721373058,254270050,1460230583,682486116,202575173,-1288730994,-1727462130,1147166806,-541759079,517385128,-1433193131]},{"sector":7,"length":512,"data":[1174939418,1409491009,1789925549,-386274065,-948073907,1977099921,-1961919858,1886935000,1365667088,664618376,-1311056657,664477051,418861463,-918105408,-1961023315,212691374,2023276330,-1691424435,-1740246259,-1448790540,-469523061,-1279938526,-1430237065,569118073,-1605905563,1034827146,1000328800,-1348743301,-1500931023,-1870316479,-1528980511,1084718991,-1736831094,-1214727066,2027710743,-1822497897,-505280749,1051234476,1181944445,1747013355,964775365,-663733252,559652701,-1597011255,-119028198,612995403,336796415,413201743,-723352207,2094410429,-1404534163,659602197,-1261502474,564129018,2009884438,979861429,2102607411,-925860762,1801660358,-1626180525,-392272664,1390976762,993545515,-2021435244,-1736759053,47509645,-1320759222,614299051,1429765769,1116864221,-84615752,-1121262594,-1789442481,-1763975261,-1029994313,-1067132741,1425452809,46057194,616395597,2144715204,920966697,370942857,1115706643,1705403690,-11995240,-1191202021,1008177577,483196954,-1141421439,865134933,129556979,870089026,-1792155656,-584458162,1553882224,979935908,212929792,-1278076986,-1687192036,-545044460,132174115,1214754186,1306656610,1396439074,-447935853,2130927088,1139553151,-504933575,99459652,1392075625,140443861,994239997,-655398204,-450715741,603938740,641057046,1746783185,-1921627886,145849769,-236850914,-1369844869,284137602,419219925,-397395143,-1456487648,1118706753,-206224522,516390005]},{"sector":8,"length":512,"data":[-1940508553,-855246552,-2009610617,-331187103,1817526786,2134381574,-118937790,-8325600,-203407991,1472595733,1365999605,-885882658,1620975283,182840084,-878812583,-1790496951,329368300,817747446,291599971,-456938511,1697988102,123311299,297973127,-963422626,-362673081,1128347980,-401179631,-187754779,202078448,-840242803,436912331,-2025024450,-381424046,768329780,2029057224,-1925245656,-762834286,-1737931801,-1027413693,-373740085,-363793951,-727556657,-1446078359,-1686988592,108585402,-1295578694,-494582968,-1109603549,1837259690,-718220908,-1217869225,-377320952,1137448627,-1175910162,68612866,540034506,696744218,2136980659,-637307547,1393523017,-1981479160,-1365740126,-1170972652,181236556,100336162,-824783212,1081142910,1767586548,509136699,1246187886,-112617423,-1416884396,-2018629717,-1737530105,735694321,-783638714,1463594568,683380898,-215056150,1983913388,-1098071940,846808494,-872839496,-452335396,-1264551743,-240152034,-614677160,-1572431892,949943672,-283357120,970643969,259399305,-2059044459,-1259111195,-1897064809,2075345881,333163700,1818441331,1831228553,-1957911900,-1400234893,-993286848,-451535843,556626594,-1282338498,527081760,54770982,-1748173878,-467047299,645678984,1341988017,1475006402,5282400,1836262579,-725920849,412069760,-1902426007,1895428573,763946595,235734360,-877013871,-1149926333,-2102880006,983241389,193081039,-1080630806,1347291174,1654571915]},{"sector":9,"length":512,"data":[-253164332,54796355,828219918,-1953850281,239305042,394401684,398869313,325791362,1077772304,156576912,-955666863,-986769489,-1402014540,1115394639,-1373194094,-1847631853,-1843675931,1242820512,2437114,804923980,1475987625,-1966952918,-1283700146,284722845,-1640805855,-929627928,-1568388299,1263891731,-229801785,1762191711,1977190651,7487815,-573573982,-1535455066,-1034296587,359586545,-1121214866,-147514045,-1091379557,1810436880,1337089720,1540830503,1170588295,-464065238,435807735,-1610579973,-1130757378,-408208961,1395849067,-1890569155,1094579350,-1612458810,1833097551,1822063490,-945035222,72795371,10425275,-820842661,230569125,-1331016222,-1657509852,-1097518805,1929020832,-217615767,-912096783,-1282435141,-883400842,1681808508,-657150855,-2109533621,1510522214,1642419709,1550438288,650943929,-1810508504,1419107492,-486011191,1998044934,1094361959,2062703938,782059185,-996231908,516070084,1432688404,1054222157,1322401083,1640888748,-1086288206,-110010644,-1899789445,547278972,-605434873,-421662660,533576616,-1678956364,1510994768,-2114731038,-520179562,-1793800057,-2125889712,2063430924,511091331,-197273417,-1591259860,898140046,202604449,-1065695296,380729166,769195627,-2014789736,830986916,-162925400,1832870017,-971099979,-509779401,756686844,625571891,-827111027,-1771884524,-1283361222,868847960,-216885310,183651638,-1906367145,193401961,-938703576,-921127398,1957010239]}],[{"sector":1,"length":512,"data":[-652831471,1694804302,-1832653188,108278526,-434233662,1355835348,-34250429,-925617102,2021528021,1122472078,346099957,1946207099,1066870676,-1227355419,920120350,-1444992658,262535403,-1391507795,56241084,7429450,-185015269,-1104909217,-1150404576,-821384558,-14738241,86530529,117568670,1603173583,1056080836,64418276,-1044108828,-143372173,-1298380788,712626893,-1748693321,1824219503,1386601311,-1621216039,-120880512,-1115864913,28346884,294345147,1404779175,22712566,-628766023,-1405136436,1938824477,-1513351569,-870396194,-1113737051,-1939493053,-1202458198,-1248805196,-141060201,2067450063,644973547,-542441440,431972466,-1790147727,-1012471208,1267200863,-509948739,-587611104,-838183103,1880636104,-1487286291,110579724,366750202,1954109160,158841947,988438344,800738788,-568950499,485930030,-5593774,2039047227,-628632877,1991420169,-1665002085,282306100,-120775230,2082990314,1344007864,1968443237,1344873807,-555394613,129140173,1791892986,876607757,-911074049,-131361799,-595001869,952761289,-296467051,371300870,-594998658,821446739,2084819968,1299022792,-680794803,659562450,408653004,-1784941899,-578503803,-1539187101,1044202123,-268594305,-1709858883,-644391942,1845915105,-270650860,-1529496463,1555112634,-1089458460,1624825205,22898660,-1331563334,-761138003,403198410,-444097088,1144750380,1631672530,1178108797,-1181551789,1101354039,551963065,839020260,951125280]},{"sector":2,"length":512,"data":[1015607060,-1853666555,1295796725,-1318143049,1972884508,-456204338,-709929055,1820715883,-1233659755,-974918487,-54311896,-1265656714,-2129016821,-1768060982,-2118420504,-166445794,242650592,-1501125762,-1586108249,-1047011603,-480026774,159820899,2110568929,-2101543966,-305106559,721211074,-1627832315,-1174328061,1404549532,1030743675,-1925568325,927114194,666652556,1715477895,-762847938,1738870775,910470060,-352012839,-1024584416,362872013,-1580100659,-1407878663,53448014,1199098346,772531839,-566335183,-906179179,-2128999150,-1348881635,-2012405268,-1833007707,1729345459,-492707394,522536123,-1718270652,604237311,-1258667388,-1812844458,1806152029,-581653483,1840853338,-1531526683,634473157,1008785230,-1910527712,-659796375,-1912835981,1862209551,1053112024,-1512569580,-1359691001,1333576987,719488794,-812767957,-2058841103,801595579,552705400,202510240,553146311,-1764822071,1159497847,-624956193,1104017256,1525889406,1226488620,-331835563,467497125,905200380,-430014517,1632043866,55319802,-1861245134,-264677915,1373872358,-338016405,-94939320,1875386044,645356845,-401790975,-2063104089,-1404709312,-52839275,270367691,-1567239772,1576305573,150698297,935457468,1512725977,-2142388698,1807522142,-517041808,791478327,-1281360227,-573709832,1578381963,-2022404407,-593298826,1536884036,257502033,-1890368621,2011346920,1000864556,411164200,1644656560,1128519263,750152403,-612593786,926962075]},{"sector":3,"length":512,"data":[2052538856,28948410,1753098236,117464950,422757894,1321151472,914858210,1404543430,1158054431,1883570976,2143596977,1052833605,-239381644,195566520,-1529096276,-2030517399,1301232457,15383725,-1196458589,1343811281,2122529604,2079135360,-34227945,-884808610,-1112678691,2085150163,-333297940,-1020599189,-263906966,2076553148,-1771312204,1655404462,842513085,-1427960861,-1767920098,-651921528,-79477986,1193771789,3543863,1576998633,1275562022,540932849,-2095900175,208094876,1486733029,-365030343,-1090730468,-297686361,-1649556898,-797711767,1558362032,1014004754,1202392741,-524036694,1403671989,-1920826663,160797227,-1184955014,582249714,901714463,1033793332,749340629,1089476609,1340120081,-647484851,1559271114,-1484321857,-1653414975,-743065937,2036979634,-1421044460,-2134439195,576492877,-715134990,-1805185034,101133867,364310256,-1327721034,-985896830,-772827795,278901629,-1448925428,-420703606,-397423981,92760147,-745278598,1162446415,582230233,1527616977,-1919120231,446349942,1257017940,-485350367,-983362669,-1386197126,-149767858,-1291910834,274881469,-1090391176,1124007001,-1135472817,314150367,-209230476,-1925209900,-1267465924,-413621685,-992033478,-2022020941,1600252477,-24127365,786726282,985774654,491990548,1440814858,2075098653,1500938280,2051194742,-351431315,1640622587,528205285,1361590069,-113591182,-1058886320,1387395911,-1625297774,1195540232,564721595,2090642523]},{"sector":4,"length":512,"data":[1705486292,-1476729467,-977038359,1791144235,1354825729,-640536339,-17386019,1569881935,-1223814947,1060311755,1274990643,151138968,723823294,1599350357,1386434669,1688363881,-308264990,-85984213,-1827809213,77124449,-1807203946,-1303507997,1441135941,-1778437982,1527370460,-756530020,724841939,-2137559602,-734912271,722574893,1784271858,-1725177594,-231749942,2114282439,-1975133807,521074273,1014776576,-1700825860,702292983,959691878,257596424,1317509714,-703765675,-890730911,715609031,-355826703,-1501566245,-1290314967,-1029547700,307955075,220316354,-88993845,-1738720217,-1484067169,-894964341,2086078759,117745587,173384609,-91539177,-1953677461,-738752601,-1066802365,1699355635,-788313760,-2034696299,-378216109,-1587867668,253599794,1662846512,1335611560,-1655709292,-1258535960,-45373563,740071536,-893309680,-1795800391,1895188975,1971991761,1304248163,-2014816591,721289539,1345020412,-60620550,-742101084,1287290433,-1321087635,1895103926,2033674229,-768518403,-743783433,60566078,167882364,-1571191151,-1175836791,-1163687061,40791098,-1918679026,471269994,1998177702,768242268,1872848951,1956448302,-1543964205,-653141117,440763421,-998693767,-1666917554,1799966435,-1439541381,-497320795,1840163066,-2060821894,679014052,-1982727810,-574905752,-999299767,-1499461279,-1510376867,125472886,-1713133794,2105155191,-1704380374,2097772,-1608514047,1074660096,369426720,117547104,35684382]},{"sector":5,"length":512,"data":[-1600117239,-1070724350,906822432,-1966890784,583451154,2010781354,-2051568671,-1098946678,-1674892827,-458746337,-131689838,1913486055,142254569,-1445004806,-547762554,-918160771,1856734815,-1600283240,268689650,73470018,-516929006,1347556356,1511392609,403038576,107057250,-508532198,-797828090,2048788321,-1654451728,-1631082846,1212580238,1783590562,25631960,-1713393158,-387444178,-943329663,142640096,-2011068350,596165160,-1992144752,-2032625627,1907533403,1753211191,1826613854,723015174,1252670579,1889184541,-1574434334,705323664,182628522,1657844268,-256233973,-1037038622,839672592,-362598198,429520013,-2047643874,-768340760,906847056,-352096038,58334579,-1729873778,-331706749,1016005560,652687907,1724183738,-1996866033,544024504,1074783218,274993410,-466548158,1360151568,440799588,1209132145,-1841001886,-995547063,-1255126126,849717018,1301497557,-1815811784,-452378545,423914458,-1353542523,1410655538,358961490,-445556138,-1990160811,1750701637,1536607657,-1757034128,-974555043,159408023,-2006869946,1670956585,-1723446896,-966158235,-1985976423,-1469474234,-630233431,1581029577,1790637028,132584507,-833938625,131025236,-427456569,-447702378,-1143742909,1614184387,975241804,1050616415,-224472293,1896845629,-940895270,1909737247,1486100708,-1680608560,-173086776,-1230273077,-1725841611,-1617717356,1758348530,-1608907968,27269633,1510162458,1530926086,630042754,31389400,1032223553]},{"sector":6,"length":512,"data":[-2039590080,-761825987,-1406867042,-1208312494,-216925808,1029392,566308301,-2084256988,-1856168829,1946873751,-1344908945,-1771323796,-1006251981,-1428481681,-94461012,2006897824,-377755685,692575293,869982855,-222823340,342307114,-57688674,721061225,-1040384,-476085922,-1373557572,-1462877524,1340807838,-930575341,-110058096,-1732168540,-244864104,1341543351,1428703765,450412438,1778730608,737420917,-672423515,592366919,-112307553,-217017893,-573178240,1620726802,-1548503904,-800524782,-621255371,-730082605,-1354915408,964508379,-1588135302,432127302,-1154654731,-1107079433,1003593615,-877649026,525321966,1029634568,-1263860945,-325264654,380960366,-843732893,-1645697463,1636402357,-1749035496,-476293396,689616285,-440222027,-1491622653,706474954,1411280933,-1076781390,1560157091,1066474222,499682465,-1358625815,-1782482022,596556674,2124820453,-87318673,1308540871,846557264,80600850,-797492248,-805323615,-1135421569,5754529,-353660940,1824397845,-48499559,-726292236,-155210387,-1299226483,-1158684787,-156839719,1413308532,-333875513,595287978,-67064895,-1987007482,106118486,-49702188,703877297,-1692778102,-1412112423,-332861468,1510861754,-1853861710,795598169,1151546521,-1000606915,1304286329,-1798153284,-1065756917,-358682954,-487997544,-756657276,1080972252,-1006434170,1866154664,-927904692,1814554928,1197158085,-926360398,-693769946,-1759562991,1512458153,1284700164,286819926]},{"sector":7,"length":512,"data":[-193625935,-1530656065,-1138460765,-1799373761,-1724854447,-805102348,-1289313709,-942781461,433933734,418505215,-1112304004,1466459337,941949811,195669191,-1888993189,-581346741,-330149475,1297775099,2050140365,2014205311,1693317656,2084405083,1029470528,2093246270,-654748180,404238843,544336476,1570099799,728162695,-423133619,1693792218,-669016594,1927506048,-1965065872,-552374753,-473065303,-903229045,2071304575,-1080641068,1575049336,223277125,2006715870,1935599589,1885579439,-1274054561,-491393296,765227777,2046017378,-2001661755,2134526828,-740643705,1406474564,2076145787,259669754,1600067408,-1672477906,-1344012263,-656418684,-511924731,1175133274,-536431613,369731720,-268126817,-365596086,191774384,-2073670500,-309307429,2115913499,-2015153580,462455864,-87356623,2071471192,-1034112677,357153309,258546342,-1069477895,-519065329,-539095663,1434676479,989378821,577801506,-1855896540,-1880847671,-1395059371,2052869825,-1854046424,-1561000054,-252168476,67074081,-800907130,1615363522,1074593844,1778438147,1480413184,-279442942,-2132510451,-503816693,-149017720,1842843106,-1418666441,14661421,25182216,-2134890488,-570987773,-1620256138,302266093,100753488,915262490,276521735,-1876817873,682771040,-642777668,-230642966,-1425346623,-1091892435,806071308,-1150534836,-1355756748,-1403584837,-1808475856,-1195742115,-881599094,755030775,-350027333,-489312270,248509264,-1112823045,-254153670]},{"sector":8,"length":512,"data":[-598515282,-953370769,-267418676,-1024914486,-1336195443,-62960447,1591124775,-556685302,277088906,1818948292,726156464,455517168,1238582401,-932701197,-392372446,1362119324,323141678,919487724,-860626621,699207762,-1406741348,-160361177,598623593,372550103,-1470423320,997410208,-1403251030,51906025,-1456842137,1177138861,1300399302,1986830790,1218228140,-1116900965,-1421108120,-324244454,2087853062,718399307,-857027849,1942082159,-2116345688,-496361849,-1491105845,-994980910,-2012588423,1645773856,1528023594,438470796,-1706505413,679624846,1281135263,1754801545,952748482,-1091957521,-907183285,1384290464,992553138,-1832629683,699096298,-1333615990,-880632278,1689267082,-1238562005,-716469652,1962512570,-218579778,1287695532,1597024490,833741587,-859625272,591449778,-1432406771,816565610,923640675,-1188454625,719118391,1855338766,-398875045,990816884,1892333806,331935914,-625590987,-63008893,1067858360,1344537185,1832977572,-989280752,239276202,1143376353,288180832,72946853,1793345073,1564947780,1217528955,-1430546140,883501129,-1699502283,776676825,1293100225,-1820009845,83442766,-1992142805,1179725337,-1297210079,-1798659766,165626195,-111913835,1488328041,1469433193,-1773827744,1768515673,-1184081241,1448879541,1570194891,397023608,637632095,315463640,-1973282714,1672857137,-1513733309,-2040949660,1704748697,-1603817031,-1290123639,447127974,112877163,-776808741,-1167189146]},{"sector":9,"length":512,"data":[1874163441,-1673066048,-953563023,1122202524,-696967897,1998432097,505905630,-1482561927,-1151698146,-193159417,2124384217,872937980,1208637568,705200544,277061832,-2053027766,-1580701160,1217011847,-1440183902,814457544,-1918678838,598270809,688012943,575050020,1318266025,-1792726718,-1471941442,-1274721779,1947927056,-1495689549,1130424346,-747709976,-1591277615,-676869485,-908581648,1745935717,-383300313,-663280050,488358866,971783566,619980108,-962556028,-726599702,-165803581,-96400851,-2078080016,1277271874,314527422,-2054707262,515248342,-280215610,-849220048,385487013,69393615,247564268,-1712093337,1641635975,874588477,-2025226594,923147513,948897897,-1599013556,248611896,-508805157,345270806,-1559346494,1925254206,-1326383737,-28635242,-41474896,238924008,1815148779,-1327478002,475367401,141183974,-400454902,-1543808906,798687365,182372612,516138401,-1081776609,406991354,-1207688793,283881863,-9760780,1124698416,-1470399928,1743481913,666247047,510003267,962715814,821836714,-400430882,649177198,-1326871495,-181827627,-111320236,2044552018,-859581864,1640868920,-701164118,-1540520004,-1736977533,1634306022,-814914731,-2023357406,-921143701,-1011830002,2027097788,198917528,-725367967,-63900832,1120217616,-1507882912,-1737027854,-825028851,232358420,-1054844861,-1358078885,1851311064,-1109782365,225323074,-2077270527,-2077168195,-66026360,-1881224131,-631116281,-1008022465]}]],[[{"sector":1,"length":512,"data":[1821683532,987886757,-891111176,-813290463,-1615813545,-113869649,-231651972,-907261191,530084813,-1200396770,132521693,-2054745721,1758052512,1027740544,1409460330,1426106881,247474816,2006556702,-1227968870,267385261,-1841295402,1443582125,-1602889617,-713728662,995636034,1835081485,-589715346,-77795970,-2039498216,-257136043,-1092758523,1894166789,-1995976533,-1274517176,251573268,-1117740612,1727781849,1571647860,1542835587,2070328583,946754695,-546852943,-1321620417,-268519636,-1073908883,1856029603,-368758814,-123558674,-599129025,1554892130,-1696802040,-642485142,-1343686953,-1612013945,1765095220,-1559680284,-1186132410,-1431411823,1902693607,-2100004188,682685935,341434733,1674183556,-139830335,377067874,-1277508617,-1017324792,1137562746,-560971190,-1434542884,462825839,-1243499610,416759731,1421562890,2137917699,-545303591,1196995977,-986189546,520461079,-95144157,1375876120,587913241,-942573849,2089225576,841607687,-1530548209,2096651105,-815338948,-2047126090,-2077288364,-71767795,611143860,1794024444,2147000603,-2055322094,-2012179870,-513614440,-597601773,-1407023307,2098902807,1752389885,-400320306,432890763,1505885050,831120678,483740004,815489110,1096298410,-1628050534,1448493011,-1593419915,-2071722640,-1393827855,1416036055,1519873034,-956212736,-1849592573,-354626634,-1366861590,1094326737,967602073,1301974807,1254014171,2025164716,-1244751677,1734168952,967574495,-849814081]},{"sector":2,"length":512,"data":[1977027541,-2101725531,-82864954,-1236544981,-1687113138,-840589273,-131376441,1792131423,-1593160428,-708403081,1213967583,-1553716317,762333459,775909449,1839059612,-1249447079,-2115234075,-709134388,1647810994,-1877920979,-1562022172,-568960012,-402868294,-759811442,-1683255863,-1554223430,1784896475,-109482593,2092525641,514051616,1476255309,-1428410737,-1460740928,-789954104,1824319856,1168087738,1948405855,-1871970079,-280625000,-1646266540,-1787644498,-1017258884,1977423236,-1145532027,1587043845,-372030321,1332464318,910393647,636083520,-850629259,2007268082,-1639493987,-1606066557,1062067327,-1816793187,-518157045,1566319890,-1775642798,1933475446,1990699529,-852529562,-1919463704,-427884818,-1755064982,-1368925988,-508853801,-1414223805,-1430567523,336410845,-2123385786,-432528907,-1386553643,-1688144109,-420664978,-811426540,1842459228,648175103,-683410889,674274046,2034691253,250234080,-1244421196,1965451075,-1492019627,779372041,276493024,1600025842,-1555401260,-1535780509,673668065,1636882200,-417107727,-701579630,-1554230393,1857753045,-1440359845,1559210385,-1175348548,890886751,-990913102,-1080385000,1051709708,1779560038,-313291258,-980078990,308848463,1382851245,197921242,-2105094750,-1787337410,-690624806,-99436365,-712066116,530495824,1835118562,-2123737468,-397198934,-1440760861,1644331329,500840606,-1992572142,-2038443373,-798184842,424061698,134881366,-951492427,-189120181,173422390]},{"sector":3,"length":512,"data":[15657598,-2035313272,-53125926,-1273477135,1847908672,-961764213,542556804,1216899760,576565450,2076831440,-1146710734,1215961666,1923279336,1812044932,670620128,-1465168278,2020257903,-1223774851,-541730192,-1844041445,-287340876,-1582189749,288294990,1238767785,-1245875731,1268489206,-1796689221,-1497910284,-960817570,1901652894,-837992998,910695164,-448248256,1752061583,-442949107,-718495076,1762276862,-2018457640,1765484192,2124594921,-80991507,-2033419449,744940642,1595168323,1507744993,1489488884,2091543562,-969179175,224579577,-1968633776,-1311081520,2057967129,-1332373029,2095839197,302495818,619476108,-102218139,1324091929,735399977,-2063145254,564178735,-285382620,-287556847,1267036995,-300043848,-1214670009,1956103547,-255579192,1745015903,-504735953,1265266795,1215818424,1064824471,900873298,1245384996,-1818354290,673151140,1103834073,1383040104,925865898,600916765,920519836,1169439463,-37596792,-1187608720,-22121897,-1729170847,976580759,2142815921,-841688169,1111761122,1275046491,-222422143,-12350057,-1077142987,-1317437511,-864470728,40726525,-568342176,-358482263,1158012000,1234489702,1984102676,706984135,-154612498,-493050973,1657071444,-187579549,-1615249326,-410519498,-84163074,-1568486563,-670644313,1874051350,1544750913,194249199,497434530,665355238,-459571200,-1056545746,-432529252,236028019,-1332174922,-1253000349,-1588361499,-352488916,-1244701477,84610456]},{"sector":4,"length":512,"data":[-474613862,-683956170,-1938807155,659835118,1057130184,-968432893,885374239,-127611236,-269106913,-1355293256,-1553071037,-415522019,1721205886,-1100702087,-1589406236,1280462639,-1103373023,1143146118,1506041732,876331746,-1432317171,56908263,-1178208806,1474093743,-301089023,1149719614,1005208232,1206795049,-705217993,-987027088,-1488406915,1801593854,-1483771854,-940676613,-1670771809,-1992755273,-1096999910,2008082603,-604503730,-286096901,1815865854,-851751878,129497039,-1757878267,-1597339961,-1736980753,1183327006,-2036955350,-484999306,951516861,-1444247592,-75239094,490700124,-1692850107,-589540552,207937215,-271076230,1826836101,1377467359,-1273244416,-1846420778,376420266,94975825,-1245696489,2003549406,-873540925,-2727457,1499153239,-1460760157,837496563,-427145914,597819767,-113919136,1823608627,903264665,1627815723,-542858593,-32510341,-1855693613,-713631655,1742583529,-1142002975,361460791,956671437,-1825776431,1806742827,110083581,21896455,-1565444123,1411353265,288886639,-67603807,655785281,-1503639925,-1975956308,-1170955452,-1677768868,2095013016,-684463029,-938553347,-694367501,1581137531,297874230,-22705014,1465596676,-2030752609,-1015806385,825971190,169558156,126145180,1963360882,327268813,2029018476,-122719231,1711578500,154241477,-806033816,696299546,1898449688,-1984357842,-2039109132,-1461349435,347036082,1597336339,1583741726,2135423543,1071143436,-1749067523]},{"sector":5,"length":512,"data":[-1651359687,1761735505,-277871200,-127568458,216050744,1235674872,1458939774,-2016591715,385774058,1141885358,906354229,-1544231237,1427480934,-675056963,278740681,-833448306,1602791660,-1933484864,-2043648274,1056159981,-2020857893,-694165256,-157124881,-1600131577,174582006,-1011448809,865892466,-779367853,-634161094,-127916923,-942604164,1465805296,-502825730,1808208373,955638707,-2039478796,137597723,165361967,1367598448,-1520342447,-1100212752,936324864,-1467646717,-2085997343,-649010876,-1823884972,-1523862989,1404505768,-2007796707,1456016276,1618366439,-118558645,913302897,684672826,-1280274677,697581375,2061046459,1230122728,-1728731338,468171615,264812892,-662585110,1316480299,601489464,-1984810151,1357715116,-589835588,-1711828539,-1256797065,-1866469159,-32349433,-1938965429,-298660450,-1639198497,169407677,2081687204,1869278465,-652877806,1444013561,1232341699,2083399156,1882074515,773609713,307171082,-1815779417,-117382909,-79326657,-219832689,24416655,1204148901,1369471755,121203362,1034221925,1197898419,1246301670,-2049816734,-441448156,-1384050042,-417383707,1918935053,1510967305,-1421566969,69357967,1094928212,1499321927,1310995635,-322455929,1327006000,463834945,-463359418,-507947061,637490765,364845286,521207275,-308436999,1628540958,60866697,-1746688859,12249414,-12586980,-1040857354,-1965113925,-1603668243,-1797581160,-1351754957,989969626,-1247945576,-1417056853]},{"sector":6,"length":512,"data":[-497355715,1990062906,-1918958442,1287786228,-584141067,-858500886,-1558776805,-1247839601,-1332596573,1604553850,-1334112814,1965658369,562968361,-62332207,-6070845,-837410780,-991857496,-995984425,-1336313467,-132624585,98067841,-1992686629,419161502,925396216,-661559836,1824300499,618831272,1035926319,-2594115,-222055479,-300039297,-1984725038,778662742,-1120093664,-695642051,306786002,-488984874,-245811267,1839995294,-1849319694,-963294464,1208722250,-1948093335,1815861759,-1224012341,-1384216263,1298619706,401636,60467833,-1253631880,290160577,-1011738497,-1310052362,-1134143681,226461341,-85215332,-810164332,-553621173,-330203090,-1185276765,-1273244511,-1128455488,-368688340,1298953102,-1575288504,338302807,-845862697,1765438814,-1497839419,627917922,-98354020,-1053565219,969282913,1276122885,-1073257635,1258737514,-715623522,-1623805810,1484854162,-2123971711,1868744629,-138295989,1680071378,-1010800284,2050517273,955007011,-1497119753,-1910130761,1432763498,1737733581,-924344693,1011969212,-205330009,76419168,1831482385,1392162696,-302781483,1805659668,-1217640092,-813194624,-192272918,1590078528,-1413798071,-133471684,1739760408,1498556170,1881303089,-519032925,-1463038636,473520880,215791687,1008553530,242612048,1601613937,-356777947,1781705700,1389478661,632018144,-398055134,-2102493114,-1229541932,1105866972,1430446324,-1156427357,-795429771,1936387606,-2083492353,-1072599006]},{"sector":7,"length":512,"data":[10033707,-672995877,-1386447082,1270249801,83102265,330830728,1292596718,408188832,1799200713,-997185629,970292032,2020785527,1336244462,1072815355,505787419,1023447820,-939420209,-949739568,1438890210,-2075752137,1104805631,387343352,1230265467,-227063482,-1881198408,2088762986,-1354932632,300777792,-737480929,-275866893,-620259157,-1425106356,-352958529,1543482466,-1945672942,-5634996,-1353754231,1836402402,-1600363957,-636469236,282364297,925774971,1759077036,-1940860029,-385543570,449159934,376758579,421148538,-1012983973,1467867125,1395039560,971191523,149697783,-1358074990,-1838234834,708270418,-37489105,-1719322211,1959343978,1806935510,-1566399135,1415920547,1439407764,999252623,1740433006,1919307726,1405729569,-1038809491,1452000205,-1566538312,707341899,-1062771718,-827417673,-36899399,1704388208,1893989980,-1396186059,1213536106,-261539111,-304728369,103976530,-883528057,-338451559,2126047246,1903798938,-1458440600,-1864569194,-1210455696,-2065130575,1413531460,1015920035,-1799452711,1827743859,-205916661,-1421331988,32349031,-725684745,940704377,1761942261,-1100525618,7094849,1696250763,1343608998,1047175347,-1383015786,1776854921,614425782,108335767,-1854702886,-391284294,-1197864447,1182831711,1044073800,904216637,-1834748407,86502022,-1917002611,1841919871,-1774771387,-772172256,164017742,-1453109803,1108456998,1967439907,1279764956,1024754634,524663333,-974630018]},{"sector":8,"length":512,"data":[1901911471,1173588521,-973012601,-2029084322,997872431,-1673773899,-1747571172,-985439367,-1246501559,-1563583818,-1669988473,-850060227,-1110237589,269499600,-1539243011,-266571697,-2028820628,-740809772,-309946716,1927838443,231168548,-1792064491,1036029578,-692115393,-1624118327,-1698566612,1489878679,-940544819,704568870,2051200001,-2070134709,-387352167,-381336613,1108043839,-199316856,-1845591581,633154473,-1580360549,748240411,-2010979500,1478640597,654475408,-2064049226,-1079369962,451196363,77126489,-85925073,-670117760,1431597859,-1970831844,837725763,1620133588,-1337250728,1781078278,993318508,-1814745927,-1818479987,-1808170289,-818149515,-1908790822,2010926544,-1841516333,1121939890,1381863248,-1169845915,420442480,-278628413,161098436,9791119,1302562337,1619870761,2052646961,1833514491,-2013531443,-231291106,1327989170,-545909028,57425812,-1000369446,-1356375067,1575452536,-684431398,1335593780,-604003623,-1214514947,2005558591,-219344906,-1242913379,1408217595,-1221303770,189449233,-754725362,1085037474,-1866786750,-1822083763,-225017954,-1862577209,-807600009,1223124361,-245471009,825168989,-496994398,-276948111,779724111,149715601,-124410368,1051308705,-1524590208,-552171250,-240057915,-2103589611,1471187372,308571362,1104075714,-1669877621,1628334916,1924524527,796510201,929068269,-1048309321,836009390,-475409422,1719134828,547051187,114046338,-594345441,698348710,-380435020]},{"sector":9,"length":512,"data":[631857625,491648262,-964753721,1030142546,413086627,-334371107,205484341,-530409045,-712673509,366381433,-97151416,342856728,1664489095,1593397326,-1823003252,496624695,1193833259,771118081,-154847610,-1819120340,1787055134,-1618949261,968395610,-1353594410,-1196665579,1594103431,189222428,-145865846,-921127052,835407425,-1282353125,-1519090844,-222771263,1291139920,1760720755,1329062681,-1367058443,-403300325,342800152,941105694,1065246348,-2096143471,-1270406036,1461284288,982992308,-484663670,-255728470,-1466121851,-1167066634,-1462504345,1907526589,-733642933,-1143808534,110755680,476690884,1349896517,-1273995891,-1843960171,1316591505,-419088550,-541980055,1468850563,1800547288,-658732905,-1361458252,-146032592,-186974788,475585907,394635711,6737931,96885304,-508449508,50172992,-1987522416,10071354,1838075136,60751963,-69974014,581773430,1519641361,1580748221,-1780991814,-1645361108,1843121440,1668836605,2142403609,-680919994,-802483293,1744498041,-1616614650,-768668898,2096700664,1453700973,-1892861649,-656341382,276165520,-1621307895,-1488307759,-1591821023,-818470879,1292168585,-18671456,-806664242,434786109,-650134744,-392487426,1237343353,-2106608955,1598878549,200271996,341929708,-451536983,-203058298,1236845109,-2111822299,-298918745,-762095590,1258912097,1231369089,451406456,610810737,-1510161630,471092341,-1412287306,1095353892,1784576354,527160449,-1759086364]}],[{"sector":1,"length":512,"data":[-19940327,1534558864,-751090757,-1047586605,618573617,1828226101,-647717429,178551524,1241386967,-714573136,935451966,1936185905,-207501853,-439930973,-808294824,-235158107,1572656518,-1381575169,1048704940,-191177039,725293707,-1618116287,-119532634,-224827314,842820329,-746687859,-6268290,-663772988,1926083847,-1488989182,-1059060608,-1331415137,-1593655194,-1427149350,2144517308,-38636070,-488202317,-310728007,-1960305107,-66874883,1602527568,-715793634,-494950605,1873788837,1527460578,-1940496741,-989800723,48916153,888420270,-211178703,-560366292,801058267,-1942001647,1396477297,266528940,-462969574,1346974943,2027907626,-720040076,-1124319131,-1174881567,-779042851,572803618,877252853,1294978538,-1767016759,1640281668,-1226351525,-1628668162,886568259,-75396513,-442445463,-196440774,1390989061,1089276772,1065053434,1083993302,2008555087,-1126466898,-604520858,-1371113224,1451920461,1682982194,-1482512646,1807386997,-1500766,-1709642296,-671247039,229916789,-1357388801,1146700491,2110301734,1863828486,-554951505,-869000085,-173959614,-1858949634,-1062197512,782603927,-131109384,2108560232,1845871967,-921493136,-963415871,1331707289,-373446724,435477513,-155486356,1997555948,1334234909,1399830429,958082122,532385181,-2139190828,-1534848601,-1990465775,-1565472023,692061520,-2141152256,1723529623,-1429432469,-1148675989,-1558219690,843271595,-11215912,-1946962006,1205651587,1987671118]},{"sector":2,"length":512,"data":[-805869193,-50790629,1819260837,1848823040,-1547352129,-607588926,-148398638,1623596338,-1719967234,211482095,517394669,1194646879,349658589,-134210031,1639544502,476038924,-1253845121,-1688647671,1116867415,1354070061,71151341,-2115907825,-695207338,52229618,38210135,-574431098,-1733598952,-471208470,899633624,-1386250626,-650697304,1796696731,939389777,1635686218,2088664669,-1908648552,-989503141,1849801158,1854565930,512401707,-1192647009,-266609503,1536086307,528578559,1306846663,383609458,1607566272,886948715,1860891359,-1421527181,-1483807254,-1119080715,1603382998,-321529152,-1703287349,-1192029170,2063223491,700831710,-136930390,-445723020,-1068856404,-1741965968,708515509,-1206513795,406838007,-1204784002,-991383611,-310040691,-1139307626,1819194467,266458577,1789014882,-970929906,-1775737371,751312986,321826806,-1323416428,-744446951,29398301,2083435188,516415048,-1661458706,-745777287,-1712539325,490644342,-862658139,-1356229902,1395908327,-656575660,2058883696,-1513490231,263780838,1196266064,2061884825,1234945819,1739639747,-283586254,1069051539,-649487365,1526200572,767890811,455520163,-1112907631,-998635813,1142865328,682360811,-1659933832,2110883505,-1151718483,819361234,22071391,1277596923,-123223377,-1443536010,-135389537,59609346,1447923568,652061280,-1491921152,-2147063907,-1518930950,1733549253,1756827738,-420494314,-905806707,-696266062,10860543,1990791612]},{"sector":3,"length":512,"data":[1515679571,718399345,703223679,-2060891711,-1790328173,-328879909,807496499,1084002627,1700511598,489417708,1905915726,1820057999,498625356,-1865047383,559457644,1326745674,390530910,-374107914,-1863939231,-2071981576,1166526557,-332045251,1186481249,-754420712,660793400,1049430222,1546183944,-38901889,-387266537,1608510799,-330901718,-1308768257,644489287,1134714544,1064898914,304060452,-2029547191,-389800636,-670837955,-131643805,-539753229,1484518447,-881000585,1037927955,896152716,-1074523229,-1495290041,1562309531,221545446,-1659364802,959664420,1337925220,1482419264,529523315,570966016,1063910107,-2011212364,1843706747,2129373968,-1639254820,1055243170,-694251130,-1413069872,1063894171,1265220676,1218559042,-1195892819,-1485883462,-218085651,1132001334,-291969819,-489658767,-272632792,-413569230,-525766431,505176068,1703798877,-1643658878,1537612155,-1652252654,-1610852924,-976301828,350164401,-1731613551,1910556798,-1319934091,-527493882,692024889,61928451,-560055892,305332360,2014716765,1942072598,1833413829,-182152690,-1641407210,-260313491,-443083017,-180593732,1554949865,1052536060,443264457,-1630132053,1540171559,-1540023883,1146168697,-2139070999,-1309890168,-1131064247,-672122419,-1209930746,-34968115,-1241807174,-972605423,1852483555,-1392860419,-1179741106,-1335486187,1030646461,424530161,1937523191,1248885267,-313060168,974585742,-808235667,458062036,-2128416872,477120689]},{"sector":4,"length":512,"data":[1544787736,1728807324,685604141,-1014283317,-504090762,-807354770,-928692312,-1259388188,1298306329,404905597,1828209301,-336491292,-488302932,1177459623,-158999802,977971258,1411196072,-2018750171,1233124071,1390260244,-1337427280,-916186870,-933775475,2112526317,-1897058773,-757481828,-1957855238,-681129758,817212168,-1958765047,-1109815485,-3826121,-1047706932,1626132456,-129916988,1161705479,-923604234,1074759466,331435918,1785751870,1521828365,641458324,127902121,-1869370664,-480314145,724900632,-2053602769,-1270238778,1563491461,-472758421,-912250734,1613320675,574877421,-1674298011,624059445,459396085,-637709646,1434164028,571436087,485267378,5114294,-199112680,1981939304,-1190067368,-647688018,1806164954,1164842842,-43165568,1950843306,1134906705,-1963767680,-1001666679,2134695583,-1086791790,917527940,-365288394,1153280244,-1252670201,-1954817637,428016129,469935243,576323874,-486437023,-1737787598,317537956,-348692656,-1071148458,317872993,-824204529,132597133,-502277489,-1167167593,867491217,2065915253,696115779,251025209,1043805659,-197870462,-597736898,2135008125,2020303887,638672688,1737886932,-556681706,-1106638067,-321904291,1709789080,-720276298,1437014254,771392271,-1827245150,1488166111,-1227975961,-1091930371,2042740916,-1143455782,917625825,-616016110,-901105646,-90755934,-805907071,1749680615,-1813114985,-1870271098,394561005,110325449,-120798617,-1451628863]},{"sector":5,"length":512,"data":[492793951,-1630049750,-1748859946,1227276781,2062580600,-1497236442,-182899917,566231379,-750224674,1972061142,1774410466,-150797112,1067589133,1597544467,280887261,-1721916113,-1840405356,-1340752969,1219705588,-826584194,-1678611175,1764630537,1365377015,614353112,-2109532574,-1663149203,-1810786661,612820550,1198067892,1810653214,-1205973593,-321391973,1896930669,-278385375,1212782623,-1821148477,359581664,-58338979,-859631598,602700159,143090810,1596014632,-910219413,1349836253,-2033439255,-901021990,-1866743498,7340063,1893774190,-1026406565,-1821467220,-508451261,1236057426,-1375872768,479208404,590024470,-104703251,-1807223933,-1126067072,735583274,90293719,1524392814,1379283438,-805285472,504765023,-271885732,1911873925,1970706423,1815057499,-1236092796,370074733,-576332699,-1424433394,-56656707,1372377574,-1180215449,-1641950438,-1552736381,1693855984,-427547376,-1519274580,-2027989412,-1455715127,-229669115,-1868384613,-377409768,1221214194,1988063657,1359447230,1975556549,1346354888,2003169886,-530258272,-1358078771,-1519400437,791002978,1288403817,-104686857,2119243027,-624413017,-1121977926,-1226707417,-540322608,1628122764,-1069347108,-780072169,1257441394,-2064215929,739800256,-2054933220,-473818576,1345401223,-1288216851,-1823992627,-672557760,-601223298,-1119945317,1604513078,2134401634,-1730904849,-820387877,-242813529,-2017181038,1024331169,1642321762,-1677536497,-648890926,-1704086352]},{"sector":6,"length":512,"data":[-673508590,-626561881,-470837731,-1906719276,-1546329853,1944591812,-1363540803,1633496293,-1853595716,952685014,-768553137,2126747267,192950699,-1961989968,1114989615,-2059038716,-1221555752,-376672033,-220792930,599833476,-1179657927,2129301842,-1385879021,694024174,-1343068885,-117983673,831946265,1491675884,1840708267,591241067,331262269,-721321931,355713122,-168319367,266195057,-1179652704,1900804828,1350201577,-80024514,1465914959,1253035189,-430109603,1468200474,-818530092,-278293930,864224364,-1680329585,1953391959,1598193071,-35076092,296633945,308018829,-1342516508,1242488202,1137875390,947526706,1050537716,-2141338532,2069178467,1820252455,191972875,1226491578,-470091797,-546517586,1261504052,-85800411,-1845651914,-317606282,1194032039,2530070,377436360,1087698578,233820242,1982608901,1665330646,522765515,491366255,-2116901902,-592437910,759649256,1706721592,-1286721832,-2001028404,2126539036,-1501934412,434206977,171907991,-1780795425,-646569382,-636298367,-172962468,1466672579,-136481737,900488084,604586985,1643193177,-1598733831,1796413868,1842482664,2006018666,-1666861546,-405097868,338820609,-1946565912,-1425180685,-155681463,-1136818628,-775937465,-306844225,-1576599057,192757040,1790570364,-65149188,796476548,1235482416,-462638427,1346710801,-23789659,-1866702149,-501309803,-585256291,-533248202,1018377204,-1488242567,-355144868,1003345784,-78445339,-368170530]},{"sector":7,"length":512,"data":[531944,-1976042034,-2015502239,-1935604994,2057431601,-1610330533,-506157451,-851916477,1098132385,904968696,-1377243260,967850405,1975130474,-1097957608,619062222,-1487532304,1410238010,-2058886680,-1440918473,-1256563822,-1062971225,591046044,1548867348,-151176216,-1662095930,-625077233,-84756758,-1088873672,166529289,233241699,203326774,1939767262,-452141169,-1170813813,1645181934,1160564309,-1540935777,1384039304,-588621289,-2111227041,160512022,1174960989,719308371,-815286748,-765608371,-1464770522,-549882941,-1659867328,-1073036485,-763678937,670087642,-10286419,281196820,-1723856356,-689337784,-2081576489,-1108505881,-2135888296,409759038,1324750449,389393973,-1922384324,1033348653,103770228,-1391263121,246375431,-1148520888,1849996954,-1795092155,744111358,2116674736,1618416062,-1278663069,-1414213655,1014471596,653682157,2021203428,-2112900017,-23268608,-70345627,1326489418,-368194373,-1313649690,-1725727839,331397902,-1140099515,-285498735,-1125212939,814140532,-862298850,-663947640,511293171,1868356938,-564097390,-1064035697,-17377098,2128962552,215310507,-1879419808,-1695011909,-993137663,1791483258,236580950,-1430445290,1168835259,1790603818,-1400920490,225638380,869478746,-565607942,29617612,-1213929034,-596706811,-478236164,-2111431168,-239869493,-362468938,-565100446,-214254770,-524438781,1003660873,1721450529,443507744,1596243954,1727354300,231840123,-972846862,-798384550]},{"sector":8,"length":512,"data":[783296235,-623228033,1737639621,-1017108687,1767600538,2084838167,-1260374607,-408340333,-258771344,765799177,-1158804482,-1144953908,-1059097822,-1693290243,1961600918,-1315042434,-944160410,1077115561,-1721196766,-1556890030,1522234183,-898370430,-1709775292,380038653,283099104,-689926822,1278137607,-178547439,110575200,-482425013,321733550,1715072900,-509309757,139462655,-1576015799,-1009822133,157156066,463192236,1179106165,35291259,1502069933,-512829727,-1830809642,1380203556,-356665565,-569689079,2071281322,1896357338,1307358675,154793455,172901462,-1185714556,790637633,241438403,-358340636,469856670,758936790,1021170747,1310563418,509047008,72375894,-110224402,-513883254,-674279049,753369245,536414194,-1889251839,-1952730241,-1013034321,1142760637,-1843644353,-1614760778,-779701003,-1426295298,-15737668,-382114897,-1613301158,79000048,1588558676,-400167211,-1518128398,885045755,-1485661440,-67183457,99394105,1472743588,-1258463868,1618917024,-209215588,-1235002649,-643575049,-1358497230,1680791773,-161297329,1115478803,-110862608,1642113148,-1328563810,2078980309,1340544917,1230624269,918781164,-520086121,1091010306,-881852287,-239094285,-555974501,827128399,-173997458,-779459921,-171079757,-466720432,-1136773928,-1090201722,-802307672,-1005068547,-542330802,957322967,-728539008,743435967,1692396139,14797692,-1053045432,805623835,1956652736,1611822432,443574515,-517029840]},{"sector":9,"length":512,"data":[-161649651,-1437411801,738400110,-1059180867,-1241412970,-352082604,1085669647,93236099,465884544,-1340203048,-2111854182,-381220093,12676800,-1058454085,-670061478,-2022779185,-258252776,32404998,194680027,1256778766,102610439,122320600,906047670,814905010,116460224,-1980215882,1639271461,1731641393,796264177,695971852,-2142808035,1870052349,1255669767,236814780,13945560,-661820402,552212984,-1403824650,1488938827,-2018772029,-393815615,1576999392,60869720,1750329420,2035010625,312192413,-741240258,-1365341812,-464512892,91227011,2061616045,1849121930,-73317785,435840268,-1448155665,-1975820875,-1934241820,789119290,1221064371,202092798,-968876048,-1687412910,-1707110087,1402720586,-439049362,-537924889,-1081070260,-521041056,923479593,-1195109199,1566419306,901601292,412275061,566683578,414619748,1558784191,1689400171,1650783747,2074064919,39466748,1339892220,-1062746454,1951286395,-1763781461,217980636,433500471,-27758292,-724153844,-310518510,-1890188955,-1373673350,-1005215369,-312121448,-2648007,-915305557,-1441203540,-1724781603,1030260677,-903204,-20764537,-504304771,-1425849279,-1147049369,2147213543,-578735113,-1960459285,-800526610,448672287,307430100,363501665,1824288060,-324901988,1833800761,-862700314,-1663136454,-1538519461,1747405055,-1615187100,2050719421,825266613,684793996,1070855917,-1964303373,-1216580584,-1314058795,-1296812990,1973547715,1145312306]}]],[[{"sector":1,"length":512,"data":[328465709,-15232003,-905982775,1976172361,261799422,630241999,278906252,700157582,-421457654,-1375327609,-232410066,838475676,-582773073,-854361824,459594020,-1075774713,-218239887,116947960,-509114709,-185791427,1749512308,-1367595389,-1481260550,1019161719,1240822721,-405467367,1769443057,211165407,-1531347713,-2119823156,-2022558228,-764605345,-964983341,654116573,-1269831244,10038200,-599376687,1176507369,-42528553,121112580,67256260,1583481789,-339950590,1075884984,1749054644,-862445512,-1480629958,1712362711,-23321004,1492187846,-517314580,-1633754426,1472529326,319416770,-9691618,-1743831948,-751952826,-994018389,-371050566,-2055794872,1006224161,368203324,-747517335,1148577638,1660991134,-1553075294,1792648179,-1011113893,-1687678666,1507112985,990177856,1467465600,-759243093,-283890111,42832951,1828653658,1622549838,-947373026,-428490185,1191945903,1785376841,-1615108881,1175542290,551242951,-1236799408,1437901790,-2080487700,-1555634399,769646979,-616364277,-605814743,-358742181,-2068087059,950997407,-983344652,-69272702,-27271059,-1359513598,-1094787486,-504965768,-639470656,1751154248,655520019,-2015885979,-1400909133,782238089,-1856341167,-1168916293,-1320386362,195059047,-1341412356,831935853,-28746379,-728208988,-188653730,-478753347,808364462,48952724,740871961,867639730,-1290049001,-1092429778,33932750,-198902272,1371856003,948429762,833735909,703994988]},{"sector":2,"length":512,"data":[610065491,-631399960,-283975203,810780202,2113562299,1669937547,14767581,-563436760,1907200650,1554825044,-305008825,947549211,-1739329622,165827256,-390453734,-991035479,-1315847873,1033879415,-1012708989,-157791042,-1557125604,-2101712204,-540785750,-366610587,-1950029031,42861624,-1179415013,1151130501,-1769533641,-808342217,-1786511040,1421587184,-936571347,-521875351,1574025016,268295029,2098206549,809635882,1381642737,1495363249,-1182860422,-1219123955,-319997363,-1595315104,497528496,911226468,-1696235495,-37175076,262720295,-49474375,-573118271,-829665577,-2141003415,-382993927,-1672771019,-581470775,-1378972719,-904993590,-1041507928,-1636783039,-856712464,-616270705,-1316288638,-161888602,-1391786430,1102532262,-739011349,1838299722,1603471056,1238880087,-1616705551,2123297556,-772130669,2085294863,-1136126759,1182925816,1777819451,912947742,-1856249635,-1857294757,-1567001317,1990119164,670617678,486934610,1675470814,-984906413,-755788061,618260782,-1239093129,1781682232,-1618915131,788567813,-115822467,1825319069,-1947083815,643191585,-1296912621,-1579523004,-1900347083,109271287,495679520,232057453,996132681,92080757,-245531431,117945036,-337579003,-767557552,-1464706842,1933168148,-615631816,-251119299,-1493413020,-529436977,-1860249949,1760967017,1956157605,-1541796515,1892685355,-2081154581,-865895511,-445365403,-1569284418,605260088,608010628,1696234240,-853436443,-87491923]},{"sector":3,"length":512,"data":[-1803722682,2077355187,-944067112,-69044436,528468544,68123028,-1189092785,-1691978285,1018272991,-1376465943,1463347309,-775379350,1694347467,907154,966016384,-1988467094,-573288099,1925268194,876976406,308680292,-15292304,1208073421,1761592717,-1170727632,477302875,-1987118925,-859610794,109631568,-1475470053,1169123416,27353760,-1474567271,-960917728,-685385879,871437923,-1921134831,517658592,-1136674037,-890765226,-923432078,-1145675071,375402662,-1837771087,-1645641023,-1477854242,-1279284691,-1796630569,2055254132,642107686,251020521,1200013576,-231523631,-1713775528,1897320985,575110023,-555911743,475212449,1579970572,-1118208174,1326758858,267248658,-140418893,558837531,776874190,35020873,38713416,1580032711,-296997860,694676711,-979371928,-1694839679,-693184837,-732127262,-260491315,-1946791168,-1497670919,920469445,-1511111735,-1226871974,-111284900,153582834,-671247742,611319641,-438264456,-777352729,-1463723518,-751804045,2012941391,-155481348,900801559,2016608614,-596292586,2054818715,-1924987948,-565709627,1513809107,1990994896,452279036,523071667,923252516,-874857418,-875090850,-1928387347,-706559505,-1024474914,1720086815,-762583096,1248088342,-1930310337,-1258471556,1636569705,-217977213,1610555453,2104090093,1323485445,-359688087,-46705171,-1092892325,1621227271,2046209695,2034466232,-1094465151,-454592390,1629362228,-1673068614,-1104630955,-1197416953,-771909743]},{"sector":4,"length":512,"data":[-1007052838,232924115,577569084,-546217012,-1115180235,1936854983,-1779046468,-556401989,-1327017737,-850714246,1799557537,1000816151,-818003464,13148743,-136971002,-218302936,-614525180,-107097546,1844097277,-1992409455,730951798,1630482895,-1092205380,-1226611521,787468694,-1197327289,547819671,1543355642,201752430,1449307136,1045968269,-117211136,-584914816,52606916,1123351552,607091362,-1591641346,755567555,-1973935057,-916455040,1589577995,-1866619832,151767928,1930565525,-238513987,199205442,303530249,1351663093,-2025552405,2050246750,197591329,561519241,-2071597663,-1071370441,1650481703,1582674638,-1610437422,2785290,44564650,1199573664,675807250,-1103396859,-1017118531,1426970711,1342264320,1392645,22282325,356517200,1409307904,348161,-1949302178,-1148947105,1572275065,1510746199,616311512,2077257593,-842147309,1849411956,1037265559,-621258838,314771450,-2088535201,-1112569439,-917454383,-450401441,-1266925569,536867051,-29500866,-79182849,-1551892579,552664480,392946778,2095449615,-1163456565,-1503195726,-1506163860,1405731692,12400702,11496284,-1744752744,1469579575,-1542468590,1687006520,-429621313,1155844543,-217104495,-177450244,1870467707,-1120616696,-1916884945,1683659525,-1141125801,1727391838,1138910682,-1919989020,-1777005998,-1199761577,-1160480388,-1933595172,1560953694,443819064,-1151891735,-469531659,-1539880624,-779678806,-1148751150,-1602290308,1345375040]},{"sector":5,"length":512,"data":[1696603044,-1261909504,1607430723,1180621745,572398326,1237890567,1547503197,-50322507,1156780007,-1271527414,-1254511970,-2011780359,1008114165,-287267668,-832898555,-2046234056,-1144877652,351586905,1406248518,-741192200,-801121856,224969586,-1863588383,-1249792738,-1226969901,1181128523,1580685419,-1328135781,-702875195,113681054,1666354017,-1403106356,-1763771013,236539972,1184914325,-590892949,1931399683,124486265,-56785179,637924128,-1019261840,-1730651712,337670355,-1740971814,-111006371,-1589270393,-1665005811,-594055290,245471692,701757600,-2131394907,-500795843,-314081389,1914613840,1371778746,1907275876,-620758764,797063100,-1203305473,-2082406397,902178364,-1954871238,1396466392,-1944539785,88038757,-1054361818,-1911582343,-505052381,1833443448,-1481024832,39093689,206243363,-2004760952,1315193525,-473140774,1681456146,1241146660,1769670550,-469260800,-80480965,-96461255,732556640,-855369697,-1755358020,-445301772,-1448607416,1227801870,-1891551393,1547210104,789468447,-1355325589,12497635,-1032881887,2143125276,-1088402044,-852556618,-1670783384,1284190088,-1960471726,893579931,-923001958,1010202992,-1004086985,-1011587064,352384769,-1117957739,1969871991,-742883355,-499804186,-1021193394,-1304124631,1260541743,-812403727,1157193050,-1600694368,1149071474,1388994581,1224651546,-1226941407,387683186,1846429026,-225580965,1786703067,-1455029977,-1007197432,277065398,-114006307,-219922495]},{"sector":6,"length":512,"data":[1030421377,461331544,241996314,64738601,774401486,320028625,1981380395,-1255965823,-1341828,1180628451,-680969731,2063093241,-1442780177,-722909613,-402916365,594372085,1745171031,-36096023,855068711,-2118720741,3082517,1763107808,-706136336,-939409082,1666220046,770809856,-290039839,-1384983123,1766283903,-2002948267,-1578042731,601402712,-1404151413,52439815,1631002944,-816987002,-6554782,-65160629,-1241514114,-1672046188,865996270,-516843405,1616694907,-750882042,-1603023966,-1933366360,-202794676,-1371990295,-1062468762,-256214861,-1641220146,-2120945171,127328465,-752996988,665827926,-1315992877,231133075,-1980729721,-14169330,-958023063,-1365742595,360952608,1337835949,922617810,-1092789305,875937330,1189812474,133225737,1713618519,-121414772,-827869731,-1007845568,-442405305,1585005195,119033342,2082196231,-281995666,-1631591899,-500703049,1466603879,481265562,-1887853515,-941649110,-544769907,-78709901,-552400613,1051998889,-1271538140,225937686,-678227,-24967260,-2086830086,-687263,-776945186,125510906,-1205949787,1939373787,930073903,1676396138,-1771759951,1926786841,-868708456,-915512775,264815519,-691510932,-296884077,-1658324957,-949367224,-942241365,298346386,1063460945,-1820439435,-2071602521,-1998978761,-615642999,646407734,1538777600,306461488,587692529,1107549472,-1032708996,-1984144796,1708744006,-36657729,502337824,-1713643549,1457142986,922975899]},{"sector":7,"length":512,"data":[100074024,-1939502639,-1865460597,-1385395699,-1352608523,-1454623265,-180109339,-678149403,-237286686,390821783,-951521535,478730640,-1763797397,1502492307,95878389,-83148519,-2124599888,-1499546449,-591812232,-1060706595,-1109719175,1888053099,-35679376,2097956259,904354237,-1137372298,924688895,-1116984905,-113399105,266640994,965477625,2025375434,-1092669761,-843710862,1060256781,1850805763,2020160376,-1568921675,1982343966,-118936824,-681758971,102904082,811741567,828520559,1985623903,987838367,-1265605967,-1221745299,23996033,-1117823258,2879903,-1878685025,496900959,151796150,-1506356976,-1213530721,879572289,2142465078,-1767604234,267402215,230414254,-437531877,-638466058,-1628978320,916267065,834042712,2141711341,1634381554,1584889389,-606040652,-2055916506,1502691351,633409487,-1772257519,-2072573408,1575762974,431748871,1573905949,447186785,-33735568,-1181255797,-47278877,-1740402541,1341647166,1763058687,409751208,-1412884709,1922275488,-1439421097,-374015130,1934506425,2127702582,1919612139,-442722468,1054386895,178363904,1074207360,91793429,-1135342944,704991234,44564830,1409330965,5737089,734347434,-492808960,1344962581,356518641,-1073383256,1247446002,-378221419,1473584889,-1294805046,788371151,-832441045,-912912974,1719240395,2129449120,1113035324,897057615,-376724484,-256430627,-1742315276,-852413119,-1585324943,1617305384,-405982235,338704402,-63765040]},{"sector":8,"length":512,"data":[-795556395,-1939836519,932354111,979588941,1280976088,570317399,-188381594,521050655,65899373,681788309,-1325313423,2077619204,174048254,-691467612,-1807802554,-1363246449,1558870680,2027856485,-1837491105,-1703718206,-991655380,345985313,951047943,-138322369,2131051037,159189081,2063405021,-121375670,-1185918924,1727094664,-179354689,-1701078449,311783988,-548351343,938153791,1726133078,-838989173,132645382,-2020377058,-1346120769,-220942404,-336652535,-1262521993,1097744190,-1195474241,-809632797,-121620657,-1726020282,-1074726758,355011342,1115166460,331401169,364842254,136688508,436741402,-1700905461,872162424,-1478673188,-751195808,1917099603,-138091818,-1478523374,-334619508,-2042012379,-848473043,1038083392,-1642485569,-179272803,-1075924689,-61620607,-342136394,287161684,-1703939978,1235255172,-985272960,2106718899,-214173021,-288307097,-78442274,-1798695539,-962064523,-171188932,-1609124644,1336156462,667019214,484983271,-1587725632,2133469661,-71002201,1313323738,-1700772556,805742608,1767727623,1971912150,-1338649036,-562718866,1093588313,1411432712,-1280715256,9852078,-1226105519,-174110887,97640536,673326240,404246529,38748200,407233092,-1549206303,1146340959,1091690360,-18793374,968348159,-1607920014,360946539,-1267852324,-1015421569,1457973675,159980408,379814069,-2118130340,450312110,1723660020,-1189656874,-1148908029,1692354608,52699977,133401378,2088694774]},{"sector":9,"length":512,"data":[1407113691,1921089722,-1500014698,-645928261,1349810692,-315106254,-56207836,2077134004,589383289,951273707,-116373897,-1300244732,735620587,-11823723,-443951391,-2132467585,-968279733,991308205,1907038200,1869672341,-508201514,78601877,1370261751,-435755838,-1622763815,-1819386039,242882148,999945366,61826601,1035925627,-2049153540,-1481845342,-2039016636,-1005576510,-6801328,-720501834,281269759,916113788,1110637070,1773707732,1620522140,1685179902,1391653201,161718464,144465907,-717504217,-1535908801,1428943525,-1651948613,-1379507634,2037721525,315323384,1442253182,-894680843,461520617,-2097959431,1272355739,758689784,109128173,1357067235,-1589711321,-2032104069,-1368961774,2061536283,-134898807,-1916177115,122950472,1934970622,-2118596569,-1522534593,1605585070,551107947,-1054901616,619444293,-558286113,-8091980,1355936530,814407391,2112896197,-1365346957,-1425586085,1309588465,244108807,726345544,280999210,1258141949,989989178,-689681549,1852708648,880963137,-1658506187,495128564,25198856,1737432064,878221491,-1491680459,1185137631,517622808,1181234434,-103657392,529504691,452989696,-1190261754,-588575843,145040234,12657027,-1157618404,-1551701864,-2039472128,-1697167485,-698882270,-440763384,-443434735,2121401835,1229751523,-1577805193,2025184399,962883534,728935336,-195353797,1790534073,-2119158025,-517609986,-142858099,1640597446,945491347,-1885649406,-1294802429]}],[{"sector":1,"length":512,"data":[1812568347,538921588,-1413245850,147694859,1722068831,345147868,-186781596,1272572815,95768984,-1187903363,1989030413,654086154,32014379,-1151579678,-1106448046,397402963,1382357689,426970393,1846652685,2083467252,-443441212,1405211344,870085427,2073313701,859496486,1930139305,1044477741,219489609,868441179,901586981,-93873705,1418928708,-1090628521,-1997911165,2017752880,915421989,571888178,-591184983,-940187235,-540590363,-1236251802,-344939156,-664728606,-165331779,1051006740,-1796498450,-655216436,-1770307863,311725858,1508748578,1356897098,-852977528,354968403,1867751554,1646385814,432925771,-723972086,-1001206647,2145917289,-540882401,-299329626,-685368880,473579631,-73063562,1592497889,-1374934605,1360895354,-581596676,1378916616,-1288830179,1844089948,1822418671,725716125,1855684584,-647791752,-2072740170,139185721,1328365536,827238795,1585133488,-1689163534,-1853213873,1893456294,486955354,2116249923,896127421,1991213021,1048906826,-952004910,1612630495,-1993002385,1359867427,-1750841270,-235235736,-361729820,1965316376,-1936226712,869238367,-124250972,-1479232708,641914003,-1937874908,1897810561,2124999776,988390529,1520212502,40739829,-1442911866,-1190297754,-756184334,-50554897,-1271325003,-1761005273,1239721667,1463255534,-1044078755,-943256797,-254416465,1918532452,-1324947831,-1618662638,1293316997,-1434809778,307086590,-769168730,1476177251,-1615070639,1837595382]},{"sector":2,"length":512,"data":[2103548905,-1211271488,412329928,1178165604,-1640542651,-1533369036,1996418556,859638517,1302856854,1979163988,1773974600,1576386189,-805215066,1400894404,-1433211329,1917434051,-1634072496,-1367006340,56413419,-1356052126,1635011192,-2104193028,866049245,1961742079,-1722844020,1933780946,-23899689,963271544,879206027,1297342481,-50598642,2095429220,-896215547,818675163,-1151256720,1362579741,-1707998779,-2046150002,1382028771,1530080467,-932829044,-1252012628,1468375142,849275212,390809222,1564420455,-551328375,-1926892698,2016480737,2088262266,147718586,1014545955,168716447,-390470692,1819501091,-1701210836,-852696438,-452843871,761991074,1998465930,1510794432,-155223482,1916027161,914775475,-1762263322,2126201704,933997350,2012485593,-271531954,-806052879,1887443447,-684309302,-816434746,1676172140,575815530,1364154091,1579437895,456033058,1347141990,1281051294,-419187939,975796474,1350452470,-334247084,-503494321,1016080855,-188053222,-949181895,-75014233,-1912263051,1249698079,-1809147091,-1196687379,-1301146145,-12064113,1175868571,-193798255,-990956780,1053397220,-1291072923,1931169730,836854666,1710185163,-616962416,-1245381838,265375451,-1888036754,557339575,1572316398,-542713015,1123278473,492474983,-1353157806,-2103679727,-483062103,-536911308,1299096450,-1621283151,-757614801,2112315128,-1807726189,136039461,1972757931,-1350974620,-2011443660,1906227908,1201210824,484530157]},{"sector":3,"length":512,"data":[1720657835,740367585,1127662567,-316022977,1347074880,30050675,-1763172756,943630766,481153442,-767497456,-1600732435,1944018205,348073852,-601042085,2125825066,-1312688740,-570969268,1568866,737519559,1125831568,1284881666,1072866398,1211652402,-345715504,-791166544,595335372,-2131850941,1123263820,-581903761,-1262512710,-1145230306,2016143142,-107977043,-2146532850,-1367339278,1011568361,1765356218,-1380928231,1118165919,1995402397,281784489,472813051,-755861760,-1373926954,1192087188,667150654,332808316,-2081450520,940576964,-693828789,692657054,538921910,-1348570394,-1765825808,-1162722242,-1812142624,-1764958097,-808557875,1525936165,-594955078,267630557,1602939210,-627237299,-977403812,-1362589597,-694780319,2125986462,-711131822,1031292887,-1535575742,-1494064386,1919522500,-106354620,1946862572,1449620041,1167326534,1585397942,-1586364264,-2083082488,-692306431,2009833407,2018109094,147503514,-1329075861,2058101127,-51684898,-171944919,71217417,2075033436,801087887,1156455648,1316308848,1009394589,-1652891605,885144644,-1092102719,-432414075,1473049712,293003553,-1471917065,-359754434,-1336842114,-1780507632,856605235,-1180829377,-1404387660,-704004465,1750597127,2143452324,-1432367070,985656229,1408081854,-1754173078,2067869792,-1229394223,-497929779,-1128680063,1033932472,-1198334568,-115624526,-1911033292,2075836668,1072728322,511648647,-1552279567,1706699219,-686497305,1399109353]},{"sector":4,"length":512,"data":[1590350748,945731848,-1719982377,1391928613,277222135,2122225378,2066656546,-1655186691,-1236996155,373362126,1064406477,-610926067,1933320210,605856831,553318945,-1469554544,916259447,-1101370153,-660048010,-1612427576,240107012,-198100674,-641140957,806116971,-1189777103,-959184243,1389187851,-527704848,-1392427991,113756536,-2063863561,10000352,757664699,795106030,1971252091,-1874708915,1261466514,710783134,-1851638729,710372403,69146306,885468906,-753299227,1290413933,-44306867,1968303220,185138487,545008132,1430944129,-588606209,27243977,1722681510,-727440393,1642519797,2117990933,-933725763,726777039,2041647007,1118392759,1081931938,-214352292,-1863968846,-2147166179,155031129,15286534,360930592,800169549,148641350,-1605640115,-1944924113,1211892310,-1238238916,-1866071495,-1951423713,-103960075,593765604,-232575032,1309654824,-1296615589,-1458278814,1050625687,667858886,2107111412,-544500119,-2053835974,-1598080289,-1747992622,-1817881818,-1676359466,-299820444,1566144791,1592728245,-1794583092,1035611124,1126859007,25099387,-1454897640,-1122452664,-226326890,-1866846376,-1118529294,-1211283313,-304872444,891814831,-1692510641,509458991,-704141237,940136712,-1798926738,-1745266267,1151569025,317362528,-1114914944,673668065,1170155288,-1018638690,-2009051496,256203221,-1926222818,-1940193493,695738045,-1234711360,941060165,-638348965,-1886879001,-453827405,980581544,1902939952]},{"sector":5,"length":512,"data":[370547871,-437438187,1989243190,-439358363,-793763698,-886174086,-1258709735,1586369502,1009600669,304850499,-1071218914,-1835793129,1113507726,34388713,-993689828,-278088700,-314506730,2082235476,761020745,283815036,-1564780901,-416524374,1214173537,250595441,1077047284,-1067912077,-1694482838,-1940340391,-437654565,-1616920624,-322520598,1120863780,-1306763869,1857322226,-1585873875,74840295,-629662541,-1954474582,1905754727,658920680,-1006219314,-1549916413,368701688,977475772,-687864318,2058373878,-2070514228,1443705060,2046273071,-833681650,65212170,507148214,1672112586,-406550516,-1430460607,-1442128214,1128757411,-1153218751,501581454,-1314877939,2001739901,-1071229997,514965360,-266552222,1466949151,-919588194,1776932562,-1130320490,-1044931571,-1956530241,-1213128265,-912537663,1088465947,1264182704,1536790919,-511836144,1650863497,-1765751047,-400424322,1158340731,1391367356,1918169004,944913763,-622918232,1753676720,514249632,-1259796212,-1626596139,-295999023,1439780960,30453784,222841885,1620739605,777537662,258993392,1532681600,-1006641917,-585024689,-78658561,-2013283789,-292899169,-267157441,-442670136,-2048672590,-1133747218,-227440997,1208933564,1628143418,-36663582,105993140,-1980316891,1131968306,-453770331,1941147323,-51787382,-208283728,2096337837,-52501806,1479446590,-1646041333,2028605138,-1715157900,-1033274441,1811263935,-1189760126,1357836231,1639907041,250420170]},{"sector":6,"length":512,"data":[-1070297207,-1302924387,-1260500576,-2147236191,-1304171228,-907804520,677381872,-97257216,-1128197644,760376436,-1918852688,-678184894,-1635457401,-402348478,2050508585,-199941428,342716824,1406223422,-1186561592,264447453,-2087073167,1039658546,1837283466,1389630190,1796060412,1101038811,1890135610,-356382757,462893563,1178711544,-836456740,864627325,819699199,-1665607121,-1101185032,1267787106,-1737145277,1733971183,1502704423,-1960430204,1567839567,-226326024,686203546,1236697013,-1842762070,-1489600788,1662119629,-1488275385,-807118624,515767097,2132855350,420550201,1721610191,-112486121,-761377092,-934199542,1115774096,1366149567,1366168808,1502497880,1477501298,1919929930,1738008234,-578888042,1147649890,-1356810004,-577116268,-1772407150,-179567011,-443930849,-698812467,-1747763333,278751643,-1995524921,704033873,-1478825867,1929078012,-1581181457,742121696,1703416913,279324818,-1544088373,-245003383,-449689138,-1031854013,-74989757,849193779,-2109844499,-1117166276,1658055939,942225892,-1467326448,-692758579,1138654522,-192053962,1059862095,1767467496,-353766335,-439622043,-858547100,1394855252,-1351906087,430277774,1976040007,-213656568,-484221462,-961682834,-1431537228,-927423779,-26003933,1724237004,1380743607,-178944861,-1262322837,-548471045,413203273,562581777,2094280401,2069860925,-190925788,-1718390194,1652310488,-2004143580,1953525453,615003120,945881794,-1124893120,-642703600]},{"sector":7,"length":512,"data":[-1612484461,1706458980,1135166353,2035005307,1608082599,-1728653870,235485761,-1297540183,-1597419179,-914609463,259310128,1501713587,1775676898,-718792461,-2042758610,-1339734154,2073178423,1465005819,961173955,-375356741,1833645716,-456522650,-528264857,1769369136,-524919450,615428823,-862104331,-1085957215,-1759886074,1506242149,-193776822,1288786279,-1772816239,-55679286,382536574,-1274079125,-1742025758,1880614298,-1267146177,833077575,2143404174,-1710943340,-863478783,1869271947,1917725540,-1125948784,-751489575,-14954286,703481879,386413648,1383067208,-1584864560,156786042,-1015837301,-1495083460,2024722335,1369398904,-858856494,-1467638992,-1038546888,-313858847,943060845,-1096050251,328685895,1546218918,-1463048314,-1212362404,-834345960,-1286601945,-667758930,-1933314282,-1327987270,-1465270489,480120173,1020475710,180707897,-1753474365,889816156,-638978109,-655287959,-1021963807,685335859,-1460837917,265102341,1040630821,-1454958945,1673882162,560849137,-55978786,77252518,1256849417,-590262376,-1506291486,-927868569,-724580442,718574363,1277504097,-1772934503,1423222357,-1457380186,1460965774,-1845808487,-313984094,192193584,893933481,-4026001,1376808264,-431060523,-1760958710,150565202,-288256222,1406982384,-611637472,-1495837501,-1882342731,-141368629,-1791587214,-420257446,-1758508206,-525879530,-1366968892,2044380551,-203397824,-401448609,1962752423,-92172502,739524347,454530005]},{"sector":8,"length":512,"data":[-969140041,-1130230837,1467008623,1964367460,-528985634,2138160320,-982804381,-1208505750,423543237,263306395,-867981135,1435033135,58500035,-2091547926,-17003294,889161656,-290990482,-604009830,-1478504670,-1763926818,2132569478,-418857465,1453238927,-89386423,1981642419,-1082207453,-1482269278,-1408336072,1191950976,1466602306,-1010225252,100498519,1959650821,-866164636,-841152249,1027300878,-347549779,899037212,-1271495499,-217887605,-150493322,1994247984,2006302559,-446433194,1924627264,635623310,-200000054,-1040396615,-467797913,365396206,-17712982,462787165,-310877864,-54591589,-1453927400,-1358344585,-2145009962,-173663275,-1224043430,-1152501966,1885771407,-1527553282,-1867621875,179504025,-1730611876,-1602286502,1800931229,755449104,1740271833,-611663698,1455258762,206616522,-1276036449,-1008783837,-1066336529,4967475,-522399505,1949744437,227587593,538585627,-1644591871,-1464993612,1513121073,-918448243,564593447,307972723,37780664,470358165,1194494462,-1509346723,280939370,1042065924,2106954269,1461422115,-883182265,2056177933,-1130090657,-1082932703,-1715659659,-440571693,772052670,530342267,-726988361,-838148963,1529294412,-1310603590,328362704,792578265,-1388495372,-1826741338,-57201286,-111090325,980231864,-1446803916,1149886764,663031383,-271122448,-1872800204,-1290499613,-1920322906,-970187014,-219978598,-116903162,461333061,-1480812185,-925825868,386383178,-377358258]},{"sector":9,"length":512,"data":[264320920,1601359136,1013184696,744278561,2032327447,-553124184,-1812213726,763282180,297210548,-1570609926,1875727813,-1946403216,-1002171613,1192621049,-568836906,-1112053206,2082133723,-2007880712,-890899580,-525297695,1358276555,1385258345,928195819,1007793201,-79703385,202716899,1247084243,-1855442132,-698307777,758132357,-170557714,1241809929,1115504426,660953032,305656455,-733081539,-1530280637,701751542,1467752056,1125729412,1603271579,1058152935,571522857,-689447009,1330754606,1061850965,-1803421518,-475783383,1318172317,-1298379570,1355790778,2140300592,1578098635,-555849386,-1450134867,-426743541,295003129,-1470879834,-1691376851,-544186359,-776767304,-1015497956,348975055,-1656756457,802381726,1417301266,-1189882788,-1833345106,1600166980,2046212254,1715874131,-1571488382,861489260,1736339417,1143330620,1789303785,-618215129,-403909117,-270886389,-2051666500,-652085308,-1564442656,-952375579,1276630443,-1354419354,1308531898,-781809295,1080580983,-1089927000,666758159,-241725382,992358054,-226616600,-854262423,1218618046,668577715,566948372,-154357983,-1901908534,298405986,443134842,-1533292523,995722728,609315210,1859546418,-806245450,2082153184,-209704223,-1239492505,508034116,-891438475,-1860574631,-1368536800,2145486428,-104745935,-1133488733,-712992104,868405972,-803743023,905865210,2134653482,-200479208,1963745383,1759265146,1607143545,-2006125384,1579760637,-218115344]}]],[[{"sector":1,"length":512,"data":[-602138750,1835978904,-885166080,1349407118,1420954223,-1222927069,-1746002451,-341627956,-543340238,1838656164,-1713480635,-1039435394,-394370652,1075005643,-1180978336,1201596778,1990041501,1782070352,-45121603,-544107282,-184242415,-1050202929,462277864,1336564778,329343537,142397049,-1690220716,-194912787,2052855496,512851174,-1347203213,-38938399,581998173,-216405147,136409244,-690250451,258114365,761824140,1238577518,-604968336,1291141028,-122336001,706358198,1165384059,1737951213,-1046828761,-350296890,-566200806,-2084570754,-1815669623,-1037559214,1686192106,-816252173,485721356,-848054480,-102299004,-722647463,1928717403,-741105753,235535143,-382027931,865260589,376058570,1053090453,505637369,952984638,-76065552,1880320479,84862780,-1181824387,1202752454,-1633824435,-1099858842,97975384,923336721,438297396,873557850,1485961122,-574214272,1541309171,-82924163,-338584485,-1276306780,709411755,1093101598,-509605981,-1928442621,-91988996,-613356253,-1156840180,-117818868,1723311022,-1198208325,-798184709,-628012606,-2094348713,1317761877,1241142509,-1880240912,-1627218733,-1844700860,-67424496,-338977210,936874310,511918388,-610936227,-1426126906,-563305862,1432451782,-1119962304,-671383460,-2066652111,1407474178,1410414214,1819166617,-108514615,-932566926,269837859,-706974098,1861897590,221670593,948240282,-1988022809,-669501844,1578768233,374422408,1720118525,856658444]},{"sector":2,"length":512,"data":[843505128,2137292841,1528784868,-762081873,222576605,-205707134,1051943011,-1256166084,2102805527,-977294075,841437000,-1584918813,-173920937,-2005239305,883361779,-909844287,211750698,1066143323,-1952494061,-1375848729,981574428,-141091385,-849837465,-1458493688,1305135095,-1345545529,1769136751,6533795,252122172,-701452174,-438266105,-1136758403,-1647630437,1056375950,1789382283,-540917234,-1699807843,-647089749,2035103340,1586584799,-1213858339,-911597265,1223489948,-1751172943,-1707069208,-1114719897,657807304,-2138296864,1008453271,1731520090,-1535469266,1059453956,-1127546768,-67950426,-1132263403,2101059123,-510457425,-1760994794,660844925,728085181,-1041456311,-1310366368,-43487695,1822729002,28762269,74422695,-155632185,566384963,1901148660,2083066173,1196507612,-1176892721,1575945459,436853277,1406701633,97937533,-1111852507,251639381,-1844567286,-1841894777,-1142517981,-1859408414,1783183435,-337905886,-612520738,1948567138,1066505570,1540168759,1671126393,1979467282,-1790142992,1643036561,1817360677,-517061543,688933158,-15244233,-1554234017,-1538297306,-53405966,-1482525595,1831482717,1232165103,1652859314,298205335,-1501093007,2116960831,1405017176,1899284570,1598097787,-1675138151,1650617662,1120385770,-717699122,1534599207,-983806571,1115928805,-1751726234,-1326645858,1617522222,-1418051231,-1885655730,-1913767622,207372556,686848725,8508521,-534417696,-301092290,-1888582434]},{"sector":3,"length":512,"data":[-1181231476,-1649987067,-1902706479,844615956,-1777872247,-1854659117,-1715387188,-304315654,-45627669,1743335738,-1839976175,-677946864,-1468641907,-1472736614,-1472378401,-2070049777,469311020,-210778655,176605281,-1886398891,-846593148,400235681,-202218196,1201055322,1776103628,1255944199,-1368248348,-2049298935,-1543942461,488321996,1691312589,-91967927,-1461603266,354220972,-96211811,-1818170905,-2004287123,894964861,1553186768,1676735364,1092497848,-915161688,709502508,-616716452,1056294591,-988913672,-1043862290,-746913138,1454829316,2061379482,754901163,1069368433,-143501042,784558658,1079033729,1370790442,-1383956293,574883056,-1825687701,1332114143,78822690,-907091023,263691237,-666152835,1266872184,-863719195,912669300,-457996726,1914726960,-1338359375,212514900,-884861677,1863916839,1144990953,840514215,-1057317545,308744591,-1371173031,-1248637597,835707981,-365006042,1770719657,1069745993,-137835399,-1308981901,726396394,-2007516654,1459786089,-702508029,-202685140,408038437,1390121325,2113041261,574622205,270100102,1517396351,-1198701724,-2051450669,2036768980,798443419,2002804671,-2080449610,-1554079170,2118912396,888009530,-1486174484,-292932452,609043162,-228605745,-317903180,109304058,-1748882325,1731907908,1436833771,-1873932846,1381350485,1771104415,-1200821121,1296200237,271981192,785112693,-1152553650,-1450209711,1520087981,-1164425394,-771959979,-1017946195,-422973277]},{"sector":4,"length":512,"data":[-760942727,612577189,1232596955,1501711553,1035627845,-1757092149,-1594856282,-1456861118,-1018163302,-1045844800,741661859,-1551031313,-1565730579,-1970211403,1374873509,2108271886,533577739,-1847337588,1375456144,936104077,-1353841022,2131699158,754401833,-1975385206,-997933840,1148304207,938129736,-1257504936,1936561145,-1252020747,-151242109,1677507900,793265712,-1266339547,795380578,-826269150,1536195142,-4573936,1236252476,2071634148,-50558528,-950988293,-1798030343,578930016,-1796893853,-2134154840,-196221357,-579234100,-710610776,606650261,-770000312,-1773810772,-756963769,1553842275,1258741921,-118438072,822157918,-1370654424,-567630253,1551120168,26001097,1177257761,-2009776953,1466683171,1397996340,1470339144,-418886583,1692280751,-1347165433,1162356027,1591314654,1701506352,-463353354,1969183450,-692515382,-442107104,-2080298402,169419376,2104483804,1401855425,-1124226633,-1773208227,275018138,967083594,1218650138,1855408965,1168403467,-586776946,1080652383,1553209963,-738991787,1217921343,-929818210,-1520977118,-1476291628,1827139664,239734037,458230674,-1836899006,-87447596,289170761,-1375103586,432683509,1206807913,-612056781,1290739647,-273583031,-1677462805,-1478826757,631358678,1934969499,436156872,1806851041,-1935305353,1644940112,-270721671,1243525365,-1023512440,2071439999,1940044188,1557873948,867787879,-107722429,319900225,594877778,-1504249253,965921618,-333892707]},{"sector":5,"length":512,"data":[1927488687,-684981132,-154966707,170925573,-649634679,1693176781,1988219607,9855102,-437136192,38331909,-987073114,310080294,-1744252624,-1238577479,1167533648,1324434699,-2105126282,-1037476205,-260345717,-2014893966,678575504,-615489967,-383741908,566265122,-688228931,-185238886,-2103729642,1641998877,-1221081233,-239538186,1148588686,-1899928641,-1212801557,-2147385149,-2061657875,1475266573,-596907690,-138317390,-1142904088,960563075,-1251443769,-1005166543,1711654514,1003241785,-106931795,-1776314594,-554185843,1841846710,-2076446987,466025447,-1044884115,-542237754,-1327614149,-1250436418,-1424242074,1576413405,-985746335,1471618049,2086391066,-1704860306,645230268,-230853495,1197413859,-266878342,-1848004919,2069741340,1687155191,896559100,-25338348,1382947985,-1652941475,2087384258,344785689,-336669983,-1309027455,-1414379526,1285380349,-299893898,1963487733,1847554490,676536175,1821884404,1650831777,-1506051099,-602877274,646474937,-1123783782,21200842,412053510,-147064310,1665583934,1354412930,1308351681,1724615961,-816443361,-672987874,-1646911664,845671291,-1147392877,-336990702,419096859,-1054061078,188578516,-385839076,-126567528,1135151005,-1469966956,1724631568,44132453,1675042067,905212154,-77685033,-1933353931,-144151918,465090340,2134292357,-196949367,-1967972459,796685938,-715411177,-2132815931,-115933038,-1464682737,2146568125,-893465969,687398835,-598105170,-1342183599]},{"sector":6,"length":512,"data":[-1873447723,684215308,-973802302,-2050744806,-589573323,-1508690400,1849867581,-1685517118,938919326,2041878527,1072265131,1910991871,-1295774545,381107676,1300244443,-615591319,1605941210,1748212335,-137747618,-748097328,-28874595,-98516338,-1894553345,-511220,637429570,-474535474,1766692979,-1259033149,-471935962,-1341327280,66095234,-158419831,-82221072,-243291389,-1769418282,610973576,-1135358549,-1412485643,228236619,1327362634,-1322854723,-210621576,1071598289,1305557420,-497390769,257946788,1802545309,-1520728671,-1695533514,-1222567630,-369777557,197645562,-1353846953,1748735923,-1162303883,-1729380605,1828208591,-1881481357,-1639679690,-1253107181,-969043589,782562121,2040894789,-840354161,891538541,1611561928,618898926,1329430108,1658518425,950665677,1566269497,-1090162353,-131460912,-776977582,-1894368188,-286036682,1672328438,-668390766,-1555073486,147215944,-224819041,948663681,1101018239,579845911,1543936709,1680327620,955656249,367214120,930829895,103209677,637428575,1826336523,-1411284031,-2076626376,-2120793880,886566700,517677963,708267822,963599138,-114828753,1070344059,90854380,-1000146251,938417399,596553013,1371564503,-939152743,149651404,1632878963,-1721420404,156432234,-2036880839,-982295236,-1973926793,7872060,-324756053,-2121134698,1145811247,47851246,-1536535928,-1856385323,-820879901,640594113,519640745,-15330470,-695843389,-134247729,-704993864]},{"sector":7,"length":512,"data":[1349304061,-1306750388,-207211954,-1500287176,-504104628,-459758127,1514529027,813137133,-632714435,-983592930,656542500,-1828724064,1588239889,315221886,1911139278,-506437348,1266263293,1821839651,1609768556,-1090621965,-332819938,-1826690806,709596311,988423403,1972763683,-1303471726,-971343572,657295002,1139360703,-549949154,1529134358,1524186098,1682827727,667969068,-1836859930,1510594178,-26470991,1317163798,1302010778,-2075280779,-170854704,-1936623299,143430344,1789227813,-845980587,-1673821906,-1601738983,1279996138,-2111761616,-1737241599,355943710,-247338549,1238705040,-300550870,1662990571,992944961,1987669615,-554870876,386046159,458279075,-452088107,351385179,-493937814,1844243526,261153651,-843760457,-1695909091,1587201783,347945123,-32581804,-556869641,1937496730,568810643,859012221,-899722532,-1440318351,-1286129462,1064734507,-1189543918,-2022728697,-2042501502,-1431505138,733010830,896192927,640314257,-1441044140,192505622,1033755429,1676459911,74411164,1906318123,47886646,-952957717,-1110496324,-1242436470,-1097287836,649282490,-2044289137,-716747060,-579009636,1431232041,-1781303057,-291536089,-1650553419,454788791,-2137790126,109783181,1436679136,-1785201478,-134763992,-1410007200,1426735620,-798658961,-1245772581,154599454,-472914161,1800388491,-154989940,50060090,1354952754,-750007345,-955395459,-825104382,-2018789023,-1353602514,2107190149,-531160947,-19090308]},{"sector":8,"length":512,"data":[-1242330271,2057285554,229269539,1680705250,-271758151,-2094301058,263147037,-590466469,1394923394,-2126621998,1715451254,-1141473625,-1577618951,-219580983,2002492919,-1264084345,-86247101,1184575882,877322673,-1097443898,1619534767,1065278718,-1800023023,-1695123813,-1922956675,2121639235,-931299910,-747113780,-934073141,-1810976707,-393752503,64287098,1921203164,-2059145849,529463156,-1623146067,-1879439468,-1903184306,297522086,1217262192,526748993,1483673969,2012106606,695651742,-1521393672,-2021352831,-1878097557,1555095701,1078309063,-794864590,-1056576474,-209458428,1626061338,1503129222,1977848268,-1729495900,82662524,-1690598760,1771112991,-1872763188,832053307,-2049249186,683320061,259437807,1705975173,238155162,-704721274,-1883293702,-164790925,-656688985,598914167,227651063,-2089355617,1656973684,-1871776322,-1770732686,922434941,-1877569162,-961968408,-1441028586,185778786,-1958628672,822025339,1126208891,1798628463,-2105049273,-582146271,-11548243,-780835217,-737216948,722488014,478375796,983338130,-1159883828,-568967895,-2015209801,-426976393,1760935726,783513448,1254938549,162788134,342915323,202410615,-1593507617,1994659499,-1425272085,1912409003,1045934674,-1715773695,-662894891,-1571119098,79359289,-527413586,-235506940,643847062,-332676033,-1616327569,-205913450,-881954407,1809950412,317034629,-1668586096,-782741381,1131590565,-163474105,-1752581163,1556458060,-1605055176]},{"sector":9,"length":512,"data":[-1696362603,536572298,-499046496,-62994899,-491317732,-1006112738,-676370939,471530057,381987337,851743088,-229102846,-1644425839,1937638391,581729578,-1114874208,-563939851,-1152904581,1346357252,1745765540,273719362,-1175150398,288095245,-622912407,-1868262068,812868456,-756997796,-473019783,-221929873,525526430,250872850,1679380231,1718584261,1939124928,781010569,2124355833,-136139856,1942273475,683888683,582051883,1679385808,-1476246868,-166343109,-480030341,-442434286,-1430355326,-341923143,1169223632,-1477573473,1315362591,-1763871877,-1918787764,1145583592,1843018570,1864210311,-491571031,999013858,-585640726,-1199430496,469888213,-209084226,-2031638833,1531826011,398633767,561699929,-741592100,1627621099,-964558274,1647440976,1961766020,19078859,1704201701,-218056969,-420095322,919799500,-973286217,-1997065102,630345629,449296823,-1941688434,-860839859,-1726722259,1848165958,-1608551051,-1080422864,301201602,-1538883134,1393485126,298510466,-1900900161,-1643601861,-280028668,-2018555953,1783578669,380230643,-4691113,-330136030,-733845454,-762748558,1292476440,-1413938450,-428975655,1585043942,-247262042,-1176203309,-279229525,1988303612,-619864418,-93196096,2040853012,729890215,555635135,1352478461,-1453826022,-1100050673,-846702723,-1635866558,1352384025,-1712907570,1795799301,-1411573337,1728706352,-1846824150,-929634996,-1005489008,-1311242668,360122570,1260307254,-1512077120]}],[{"sector":1,"length":512,"data":[1418449846,-1380995500,-2047950685,-24506426,958432344,2115028252,1063112112,-1251630080,-1837992539,-94230952,2118455421,618575671,-1916673259,-1902253908,-1516053972,224657569,1988614234,-968017737,-1568041568,2079983784,1550180111,-1491468232,-2123857539,1958026604,-1055332375,600947825,1137912539,1917526199,-868960109,-2024847224,1898061641,-378180458,1013866087,1314766329,1023842066,-2026534252,1928507132,-559580227,24811703,1204865699,-580373010,899259773,412036212,-1618814697,775572069,-2036406378,1379955900,-426160249,-785271922,-613564758,330236854,1862485996,720712640,-1137205667,868713206,-384244255,-1620347365,-396378200,-17911561,203921145,-1180402757,241007565,-1349727255,189222727,-205478010,-1699126060,2045583823,2025841778,-1358160824,1012172209,119631027,-1399870774,1205208175,-1927361735,-1534786454,1237262168,434159855,-281065841,189821597,-705139602,-1332821128,105038374,1667717593,-836383127,-82705424,-2005313583,2082627389,-526777523,45257023,-740767111,-1810502531,-2081336613,1262762273,346235396,-1894791032,1178276148,-1219607670,-730225608,-244204451,1791109300,-13747013,-672953233,-794686596,905505067,-432660761,251479199,-1845942113,524139052,-93341886,-1254958329,1805350572,236750492,149560419,130931369,-193996440,297259118,1880686593,246807454,983680622,1426787581,1560918249,532004094,-27822659,-605264964,-875797774,-2015430557,-1428222722,1848228445]},{"sector":2,"length":512,"data":[304019583,134024735,-70468657,2125829941,-1084175853,-1078270927,-1397476821,-383400237,-1200049439,-2074330996,-1745515641,-1677119812,-157706280,-1063907621,620705583,-589284426,2090069663,2069444972,-2114193134,1952536574,1028093925,1903660113,1821984382,46670730,2139609346,-1369512285,-1965366496,-1233666263,-735522006,-1488340506,-383864423,98527069,1248944637,1902339725,-292817730,571044142,-1945030796,365158654,2074276811,2043352373,-1241313010,957238789,-46402884,1852049652,-652725407,-1777811295,-1212469170,-2055067036,1952053362,-554642482,608150863,123415627,531659948,-1697911083,627674884,187876492,-749805771,-529345203,119907904,-372456334,-1733897883,634802536,434205032,151673922,98647712,230202825,788216419,-860434773,1606372476,1337167151,2070400094,598703005,1731914379,49728671,1545529904,1810997976,-214184579,467424089,1459792754,1872301778,513345181,-1955716369,-463221956,-646565703,514905197,-342016892,-1811275647,730836051,-747643743,-857608245,-672106029,1828238872,364429744,1852267519,-2016015649,-1697944322,332656866,2073332578,-2071323633,-1453329630,-1074509137,1198220626,-2026749027,-58549458,1144750013,959787465,-355889971,1833818526,1042562831,301705675,-1389680235,-488253861,-684503369,1320666719,-57417234,172256484,87066627,359451287,527980221,302833024,1057195997,179187123,-1442829696,-1610438656,2785290,44564650,444598944,-503136241]},{"sector":3,"length":512,"data":[-1946303005,320804663,190851591,110645071,-2122747018,1880612437,-1536659204,197842361,-1555866656,1518168719,1179338740,-155990328,927914049,-1489763307,-718383976,-345033554,-1706864382,-1354265817,2077994873,-244620342,332871399,1642389822,-1654887607,-225361652,552258897,1443387066,133107149,-2109924295,1885597390,1153900148,299976839,2103185113,867922277,-135790496,1027929512,519006130,1021219904,2083371766,507707054,-1614681617,1185487196,-30866437,-313398369,999295890,2011826664,2045373725,543196668,445770650,-970224778,1347269127,-1604277958,781473521,-1126621058,-1309434661,-677838212,776078403,2140583124,-1976711114,-298117477,1966557588,-1256268138,569904522,-898156532,-489759286,-275834080,1812984346,966847754,468447716,590674937,1678166432,-38037843,244069993,2106178017,-850715680,-1225331033,-561832559,1248734972,713597504,-1458211709,-987792835,-941817439,1878192941,-390647554,1030369337,-1388528002,-501758074,-2007569503,-241652558,551746705,1095535585,1808616269,-972480885,-473567135,1745390346,1276840196,-1161193033,-1754357918,823028317,857177507,-691992353,1989714156,-919514471,-1413412670,475787798,2111248458,156190162,-1991539965,-1589707857,-1238830853,1784160485,200074190,-202498901,-274354749,1845963442,788159228,-795263831,-20708491,-484589852,819518828,-356764802,-1040598180,2116587745,1618945376,-238866847,-1497672413,752135921,-562852049,656238770]},{"sector":4,"length":512,"data":[1706369841,184697623,998143709,-306420021,937035003,754332833,374451087,834986381,-930344640,-1092431868,1280271873,-1222316614,1738706618,1597961628,1768364880,2072579526,2039420166,2065202883,1335341269,-274763858,943841985,716528098,-1577960270,-441830665,-1584359991,2062315861,1059715358,1636221728,-1422371940,-1240478899,-937459769,-552164650,532484218,-1332292294,-1184248630,608406213,1062117132,-1049782591,199838322,1557348082,-1782084977,-1170913890,-677550102,1837784756,-232822407,-1209614818,702110605,-1500939464,1668894624,754609747,2087869901,-197299341,-944083822,-1362634983,-1790458451,-1280344121,905099934,415353137,1157138810,-2051421732,-1159908762,1673070492,1883442311,126256951,133032033,-1251266629,395587418,1280268843,623983158,883508517,-1616418732,23131646,-126922505,1526277841,-301018723,-1166148050,1011506089,1731961881,792457972,1934843279,731748788,-1128704913,1917486568,-437999392,1418099538,347424876,-1803154862,1693786559,-1052225453,-1947582035,-723933875,43299654,-1771907917,827510450,-597776794,-130952682,-1934474390,-1688024588,-1467447025,-1065970638,1216158020,-279970339,-2053421341,523682318,383996167,2011418987,767862520,1726133334,-1613891879,1824825095,-1282433483,2105433051,-285435004,-1837535841,-60759266,-2020694098,-1846479505,655268699,-606181809,-1463031951,-1713605072,-642116067,1484187736,960329384,863227741,-1458073337,1536146694,-1695709192]},{"sector":5,"length":512,"data":[1020085817,221634399,2027822964,1805205289,-710704741,-288831592,-1902107784,-938575458,921060756,-640239204,215772753,260732354,1249018411,511108721,1290681156,1261358489,-670955519,97100816,-577037672,-1942456525,359463900,-1078160314,-1202829610,-1094331495,1120172925,389634663,-798330260,371129555,739655465,1648572014,-43452439,-1247897121,-1995849502,-1137102381,1771986535,-1651601313,-1431539080,-1181022115,-1891267518,1755783030,916091810,1918758586,1625417363,-567026961,2134431757,84450342,-1983159277,1851907118,-2042066637,1585248388,-570484316,66945608,-1588752096,-601613174,1128754860,-1069372947,1785069595,1427745386,-426078323,-1976523670,-2016106837,-2132993602,-692182191,2130205686,-1810689118,-868796749,-1695635946,-1193928098,-1360960186,-181445668,-1750136166,1472374156,-1425331470,-1500763217,362309570,-989312889,-1480962324,2019128738,139963744,-871945388,532435283,893393855,472136301,-1905596289,-478049425,2111732861,764587411,-483737846,834120445,-272155456,1743466975,382577725,-954084770,187301202,-1688370771,-1776878161,2123350171,1093681132,-1345319028,495248138,896786208,1878256579,805900431,-1958995037,-1028057055,-2054884121,-23492771,926435859,-158500783,-1054844515,-848222010,1020540789,-958071660,-1707042707,1288408513,247189498,-1756997475,1923402238,-310301923,-420318930,341493053,-1801934914,744336066,1018090197,-1544834598,2060285552,130214650,1764056660]},{"sector":6,"length":512,"data":[-1518280816,-1835866478,-1069940581,1750474358,-152328025,2025400590,817083793,-286635183,-1464192887,1709461706,-217962436,-2144764618,-1077034218,490462640,184265572,857892068,1545716199,382531183,-695255682,-1747546266,-1285812236,1398926855,1427953785,417623742,1494158697,-2131798142,1363180530,497945657,1014492366,590385422,449905203,1883612864,-1433160844,1548075743,455887075,-2099481129,342942387,-989191438,531934348,-1878872187,571168687,551522030,-1813929441,1967851459,1074540895,-1808760715,25255187,-293423856,-57145692,-2028998940,-1124194953,484041904,799752195,-536631713,-1880670143,-536428050,1624020394,1270290671,360950172,-427436558,-1287715052,-585410882,1368820854,-90784757,-2133827074,1122893566,938294422,1095121776,1511250582,-2031324946,1023863903,419015313,-1097361308,-21066869,-654165963,-554587987,506526707,1712234678,-1921219291,-2073317744,1888578186,-974914326,927160048,1291385308,-941234945,1668253385,-176157195,1747307900,103732493,-411685256,1935056953,-1325085945,-1347830074,-856120282,-604404006,301328090,-226938841,987670546,-1495977277,136310399,-1898091285,-860874159,-1207343101,1940912974,1156570951,1052736207,1950723926,1423732649,-1781040374,-482762546,302106363,1540317551,-1418620705,-576179470,-817398591,-1449998280,1686589428,-1033645615,534372111,-1095919297,2074325989,610852509,1277160754,-1055132718,-810943581,-557791752,-89849708,41920106]},{"sector":7,"length":512,"data":[325852600,-94772233,337586727,-135693552,160174483,2119097876,-1856282689,1132970686,-411781641,2093171157,-13562280,1707909989,-1819033843,-1157740388,936489559,-1584136898,-191151303,-1928935729,-1437499679,-587113844,1517073625,622951619,-425455924,522355614,-2076581546,425374358,-1160744025,2082798309,1418477906,-891128214,-302307643,-1855678650,1637728574,-1227967977,-595302948,-592519963,-888921328,2131127962,-2030994341,-2017731162,-581039155,-1108054081,454316153,1404755687,318502108,-1220269291,-995991596,2142044932,-2145618864,1356972330,-1217847875,-210625846,-1205582457,1199888745,2141935161,349436446,1074483695,-1459604628,1452596724,-169294861,554150565,1341435140,925478635,1347952863,168220655,-2036033543,-2045526439,-2026569638,-22190204,-469055793,-1806094194,-959558941,68703797,1975985164,901717094,2028969959,-414200513,337248073,-529790435,1289040318,-758657029,634590709,1339071510,-73144997,904212517,-1098946363,1524596485,-1164773462,-1502553889,1368789758,1179933041,203549365,572891245,152191889,-1612088662,-528613699,1593270113,1179685307,-1623704783,-674614605,118415585,-1167997979,1615299066,-44985018,1894712199,1278768728,1934444457,37991235,630666859,-2005141448,-586276891,1070763180,1944767004,-1663153789,-52127029,284068402,-78503967,1261499191,631906153,-1154083100,1368667378,-274250878,473946864,336025460,55547780,-2016842396,436091306,-2051555494]},{"sector":8,"length":512,"data":[680024952,-1198208480,307921659,-1542813806,-198772779,-536696728,-620754799,-484302691,1566750201,1444048082,1629285502,-975204042,614845462,-493961987,-1904346530,1243562660,-550072787,1675696731,2082953320,1786976752,-164884748,-1030525076,-1016170500,-2146786884,11141162,-513801560,1814011905,-1811593216,1748369436,-1774190074,952107525,1994050399,2144169398,-1479127793,-1425411884,2104001392,-126477435,-2057666114,1893717531,-1608162083,1833848696,595123796,-1721641141,-21104294,-1772131770,-1851921362,-1918333702,2114893942,802589238,463842649,-43795347,1447812877,798591179,494173881,-86938104,408409115,405057659,394840917,-1428894368,-515610755,1874730310,-957644968,1569707813,-284029945,-239833317,-1433592895,-1399129027,1758573876,1675506055,-342520773,817820211,-2016928891,173898468,-1580650700,1638109159,-5433916,-1550995512,604595189,1795988975,-1137320227,-1378439049,1919425225,-708975756,-270522497,75988653,-481040437,481226753,-1193387811,-1139047068,151059475,1973115188,2013095528,-560809655,-772819611,-1011584262,-137251465,-2089196193,-1262547706,-1600361083,-545769348,-1346330496,-2147270209,2038262866,2013309469,349176740,44564650,-395313024,-955981677,2113936384,-446994581,1924192982,-449574804,428581084,754989823,-1113524300,1700479805,-1133002257,1824987225,1809907393,-36036708,-2146242089,5609003,89129300,1426068800,1342264320,1392645,22282325,356517200]},{"sector":9,"length":512,"data":[1409307904,1074089985,5570581,-981729280,970465839,-455622079,-1576167363,-1345887943,1118870729,-2047831920,742076973,-1673815803,141302543,1354578742,-1065237949,-105891822,454956738,1776404794,-1917539351,2103393473,920651318,805551581,89129300,-1895819968,2040135764,867363239,1810425686,1017152469,-567470130,11148458,998245672,11564773,520232316,-1919287161,-209926208,-2096831547,1307940462,1741678040,1557154396,497162,2013376595,1057008,29794692,1968793280,-277329517,592416286,536878680,-474049376,-1305331643,789521748,-1433217024,625776,1669684907,1456996428,-1122227507,1424056320,1251553,472564054,717226595,-775771538,2125856779,20024853,-1029031072,1728063025,2050512286,1565179905,993377242,7395328,-1511140768,-808519723,1395427246,1918574331,-1912766796,2092700638,232425668,201220075,22282325,356517200,1409307904,9928705,195800,-1303204184,1074090133,5570581,-111148716,-2072592383,-2094854278,123994340,537063488,394395707,268556544,247988412,1074126976,788791414,537113088,495976824,-2146713344,1577582828,1074226176,991953648,-1878932992,178323485,-1442829696,-1610438656,2785290,872442142,-1897427733,-221028781,-471926423,-1224775775,-726898112,-517220990,988265969,1961307400,-1925403280,-200880806,1122910655,403622755,-1325622797,-246736532,881363290,-1773640737,1448630660,186723838,-452345909,-2060455275,553224332,-645479387]}]],[[{"sector":1,"length":512,"data":[80661482,1362058192,1763340128,1509407465,1108494507,-538848934,-296554830,697089219,-2003926266,-1669839696,1955897399,-1893176580,-761552307,303010677,-395669209,-1217606078,116615869,-2018551060,754292465,-1958348734,-2117319955,-1671061253,-444071973,-1750714666,-1592354543,382133980,-57485314,1480715897,1592068422,1260565785,1923916585,732574370,-2041473449,-1633473172,-944838478,2057312310,1794425501,-1549128922,1910496673,-803226042,1935148898,-146817732,-1609784492,915151631,817694215,-280240675,-405573602,-2029102017,-893464834,-1579556879,-1202768605,802242165,-67214062,1459426196,-817840450,-1521668864,-1721484011,1771532986,235009410,-270620010,-459795437,-1262885937,-547807403,1922433032,-269219434,2135858044,1797392338,96471181,-1309164481,-78441472,-724112214,-876200943,1874633227,1683452102,-902023842,1479450679,-1338933963,-927815450,-1589583732,887582501,648824934,278912128,318032281,-469631441,914501495,1793655936,1352804255,1392645,22282325,1208021168,-1254789448,1074656646,-1286470818,2118478,-39523444,-1678903957,-1971391648,-34892904,-869003130,2025719856,1042193242,1295384087,464387222,1305994567,-831809461,1181145294,1427790549,-2137339704,-987577482,766452923,-1976590027,-388352371,-649031587,-1625218618,1159445218,1897444348,-498863354,-84544717,-1325637315,-1114106823,666739751,-1371060628,2086626612,1797707337,-2110243885,168418842,-943798501,-1359129122]},{"sector":2,"length":512,"data":[83345718,-892957129,-1138071825,1490961841,-776781331,409349819,-1112538936,1444385568,396590591,-1881814749,-565518318,2076798272,988528507,-88523274,-453329369,1635330874,1836857333,-68131984,-676487300,-101961313,1531577878,1092945760,-87239135,-526618843,-2106251322,991716904,-1536940023,-270430722,1859499953,923150692,146187867,-594532928,-1438183523,383702413,-800283523,-56220410,-1200587802,-82968457,-805248239,2102518640,-1345810637,159921677,960121309,-839965307,-673535790,-262005946,1293730,-601113548,2058683232,5637297,1648827349,1234834677,-479143824,236043736,26211550,20699565,-538901696,1010273750,1705690801,863764132,1853253301,1590648668,466228515,116504359,-1324991993,161750,-687952831,-1312220166,-1232314641,743956439,-2134253407,-96535424,-2105818630,-1345710603,-1090113629,1073903566,-1449527255,-1292205200,1446903644,167433953,-258398449,-1697192733,1690172899,-1056059003,1909044097,-539572800,-1668529304,436267784,1483514268,-625218209,1022590103,-1229769455,264654563,884252235,-1678537135,1991605457,-631872790,-1631309056,2112306669,1652455754,909784204,802973484,-1818607446,1821854826,897759186,1346463847,-1312922368,-2009137946,1536933666,-1940102213,1844091911,373772020,1355993453,755413504,-1279573012,-1273443911,353653042,129466177,993577983,418911257,-609069283,976498537,439749802,876285431,-804891362,-983977984,802173970,1660313083]},{"sector":3,"length":512,"data":[-1580845764,1497334463,892978742,1853584473,1980211358,1236986831,-1589210364,-613645719,855454968,251926907,625484694,1017811016,1273533092,-494038386,-2137324414,1346663912,-23828332,-1301643277,-560721459,1816008705,1030762672,624094934,-2062310436,-1236961282,-2033467650,1490995421,87419958,-1680336961,1887157004,-278249991,-1779885123,1187486019,-2025105611,-121990457,1238583417,893281331,1791194405,-1684631525,491230045,1209002006,-1247149602,-1526995860,-1237957571,-1597517407,1818496719,1131190641,1070646389,1069075326,1334743727,-470462434,1707010980,-308545312,-20683427,-367467092,1486799489,1175623795,-600993349,-2130053014,-1924121634,2043780793,-266094913,1773360080,-1360383145,-622508825,668879205,1837837390,1891825181,782547576,-1960830688,-2082308160,24228924,-2047084064,-2120254515,460490549,235501979,1816156184,794203464,-538612155,-1849458832,-34860927,1172485640,1643961008,-39847889,-1504909397,-119168733,1906976713,1966449919,1604227460,1205491538,1015339066,237018538,307963583,-1924642754,-211028454,-1122543621,-330462304,503800902,-1482559805,-1854807132,-377160734,-112714787,174283741,-2048832207,-1365884288,-283226794,10469689,-331928940,112331065,1235846889,-1169323272,2072629114,829234856,-643759180,606173830,-1564600771,108934946,1397301185,-844410760,159316007,2110623655,1155969106,1326053270,1163635829,-2105784691,480189862,1785758570,420198386,1356746372]},{"sector":4,"length":512,"data":[2049493622,-711605628,-574123079,13466645,-427170058,2114635761,-576634727,90614909,-1568423041,723542360,814372458,-1649846077,2091697786,1368805437,51004939,-1745895058,-845053380,-1610745537,199227564,-1958548895,-952410369,-1304257893,653385336,-802012621,-1430602716,-751401379,1241151759,-1965926544,855211354,2047803421,-1307758458,1677441780,1862097003,-482672699,1809371642,-820940790,-966750339,-72971225,1639247056,1391866733,-1024257042,-805286046,1094735441,789508824,1044692477,-308957626,-465342733,-154159639,-114454626,-1215023080,1635358203,824216144,-1091755008,-1475302593,-2130010046,1006704669,279662543,-1614789904,-1512036054,1665606780,1943524316,-1276267559,2103980275,-1658707994,-389023025,-239471053,-1552683693,-403414077,1048226298,1446574168,546432969,35397023,1104802389,1407136741,-506004999,850689184,-773727757,-1515723923,-448952881,-407640893,1036924390,403507471,-2062600652,1379727658,-1099217948,-1659140210,-6300060,471545422,-1256913918,1179583695,663048058,416283313,1138444679,1961092265,1349942421,178404601,-66834687,3081849,321341178,1627351261,-2121835578,-2031779962,1822219141,2055399581,185175210,-1953305537,1018251871,-1223958025,-484872920,-1080364647,-271724488,-603995671,529960070,-1938993188,1233250699,119011386,967597189,388467501,-853763070,-686880257,-1332085041,-56244655,-1917322577,-626104599,1047607852,-735194471,780871593,-339917224]},{"sector":5,"length":512,"data":[-547054643,1517577194,-550030917,1224252696,-688207988,-217737474,-933224316,-1328021184,1131763367,2001089183,1657741919,-1055828546,-366375890,-1388401035,1225393094,-1820442959,-844937538,1507848888,1529214873,2137331047,-336796313,1675645877,-848617212,838088030,-1794432680,1547118636,-167406071,838176549,-314738517,1437929042,1210212077,420938092,1567000372,-1088195752,776921011,-1129493617,-202845724,1722483333,2046208639,-1451048699,-1497115694,-1410587694,1344679156,84508153,1498927662,1089926532,-729048968,-2043384170,1695098973,-918424436,-1588533052,-1948170814,305485826,-554773871,-377301953,-758643866,-1515177765,823848792,1814175925,657990161,-1819753046,1230593734,1583543681,-1104588202,-1596448040,-1269093596,-1798138616,1915063431,-426324891,53141603,3685291,14030907,71173898,89162577,-180298396,2110944541,-541608456,-1271533445,-1712161710,-330592092,8390721,-2139088892,3673090,-1123727551,574574788,1259399081,292845844,-1791418038,1477706896,470188416,1203896440,315895278,605624391,-1861727998,424313440,168895653,1381263618,-525325702,-802026494,-401734816,244630637,65073638,1963267600,1027084446,1179173957,2035315956,77668836,557862419,-2141842171,1044450867,386244961,349499486,1737253400,-396083692,1716409396,453419424,-2029930014,1697412124,142220807,1215829157,1381896689,-2013136417,1159021600,557785480,925011810,604561969,1404193246,1649532023]},{"sector":6,"length":512,"data":[1889150473,-1574434334,705323664,-1966954021,1120448555,-524913013,-1133098078,806086496,-1653403454,-1020737487,1221604236,1025668883,-1353143542,-2053148502,-927970415,1413111189,-1414584091,-1460957190,-1385632684,1264014449,-775442359,-1591767693,-420624724,-1397631663,1095536157,-1590692188,-553789980,2131151573,1606658919,1866598267,759745377,1620114379,-340723043,742205867,-665731077,1949231637,-1408074814,-827253519,-1531277386,-440543318,503814826,484917870,921106519,350976494,-1829265068,-1385769703,-1301092926,-207045160,-121456105,1972597155,-681342978,-306260116,1157221289,115852242,983487852,-1069012246,1945280250,-1362613771,1933733650,-257972628,-1765019478,661762122,-280517162,-1281600043,1573375191,1957410866,1620498361,-1697121075,-14846503,812210735,-422738290,1802861181,-117940782,-2108674949,1200446829,1591045288,-1216002103,1450796570,-707554581,-1584433067,-880060379,-431580434,-413624205,-1240117987,614854333,-613580968,-1268577163,-1135999929,1770735242,-1744378262,-1459640266,1285908585,-1834371332,-397524313,-652414989,-189048685,638221490,608873008,-1409488795,910230046,1468499004,-1351902874,-1465679525,-1789900618,-1621752091,626697828,1024464871,-1445523492,-992484705,2077216588,-2048760229,1365209488,657154553,-109233524,1276357784,976008385,236092181,-243575246,1089781215,861005793,620517064,-1293704475,-1854772325,-1104516365,-2129726102,-1576917396,1804540851,647245252]},{"sector":7,"length":512,"data":[-1337446664,-741500376,1891246538,-506359727,-1463464571,541301425,-394155229,1824112704,-493795027,-1143870432,1567133034,1586563183,-1414368323,1498275818,-460471998,-623731356,2112973286,1498372454,1098875521,-1774549053,-443041585,-805536250,1985824954,-1700291183,1148407617,-1863253978,1207433523,-1953189434,652578893,-1494167647,-782564996,-1855346451,788413635,-823301318,-357611317,1103451194,1082345862,925590285,1064204022,-641522918,-1830827594,-169559318,-242156538,-362356765,-119111695,-458840,1067841464,-1626880108,-647624585,-1509753686,-112762129,1276365953,1386301750,-253346353,1288510557,1485643442,1023538731,1016738713,1419302756,1542878037,-1237179082,1194674359,-39828042,-1549902621,1897170162,6762862,1852301375,-579802906,1578997309,-1546461372,-1369905840,-1581490788,-921436848,-308976901,-2137101630,1112363468,1963927769,1310975271,-1819840234,-1253330446,-447976208,706559097,-1249267956,-808270384,-1939877196,2023200925,816726512,-1725522155,-775492860,1214069653,-1933648385,145213690,1001736545,-1457375361,982697720,1837615342,165701988,1280945714,-1150382620,1328507418,-948152290,1337762983,-2018605472,-444748194,-531731562,-455888434,235652314,625340635,-1379029081,-1843983056,-1483319817,-1047920200,-555203080,622443888,1813165339,-1536209406,1386426140,-911913413,1773859421,-1647412602,-718771654,746438573,-1856494575,-1172645227,96198506,1986589987,-1781610143,-319067724]},{"sector":8,"length":512,"data":[1775805180,-1927906915,-1500910567,325636105,-131673188,1537092132,515125286,448888156,-960728283,-154550161,-440996381,415135934,-831015885,-1086913375,-2014631609,-350946013,991782570,477293411,-1799026235,-382096521,-429291013,384469621,-605490029,-2003262888,1406762454,-334131094,738882253,-528966004,1634749924,1709041171,724360370,918839483,-2114606376,2075820235,76670067,1528486972,253587431,2106549478,-247082867,-1217926038,-2091032438,-1067481208,1779293147,-1428865696,980981293,1027523738,-1738085511,1452544978,-1052845410,-1557827410,2047334615,1705860882,-1102359732,2071581369,-1697893600,-709664892,-949312490,-1456112217,150710815,-819365913,-9091295,1571007036,2044180151,-1078533379,1305484215,1100806463,512817890,-931071141,-1093047144,-1158624527,883376315,1351233005,1892028060,-1407695432,-1034573938,-2137903394,168666744,-1356157482,-1695106186,849148703,-1155127972,-877023063,-2127660442,1004117337,-1126599547,1933751167,-722623813,-892781858,-1565790954,-2087128182,-2119355192,-331414100,920973093,-379257355,1285948686,1239508211,-204667472,-1661769855,1091366526,-1810402508,896938410,-1681313682,1406580570,303965416,-1197770697,-1409941321,-545695638,1276178771,178159812,467097673,603615857,429529062,829996285,879471995,1426425487,-1171465868,602033603,1519138139,1280194677,1254293213,-800684827,-2118115680,721552420,828474061,1235788828,-1611974657,-1430826476,-1919422694]},{"sector":9,"length":512,"data":[-1280210184,1685173969,604940353,-383725122,-954529565,-1622092070,-1164164440,1642133710,-1303461595,354338385,-1156025714,1305618878,-498442294,842869296,-175307945,985104040,-1462075974,48523064,1756403380,-1641129688,-1655283554,960966195,1160836330,1062058331,-97890985,2138188771,1971167758,-1727939925,40373927,1246751189,-997963090,-190178903,1445306354,-1128135778,-1200841563,-1930228792,-518099108,492233539,-61801677,-1421521278,535911785,-1411405221,935848433,617614674,-667628292,-1407838915,1168839413,-1976863209,-1853241396,612361534,-1764808375,-518047137,-609221761,-35441404,1735516315,1945071730,-602765001,897864572,1263459012,-831047138,210607673,988706707,251456303,895361970,25073522,620557424,667590721,1596264037,-1562972103,247541156,951046828,1800087409,-2039130879,-2039629441,-2032234968,1036222890,-519976518,2111844509,1299532643,1292423955,-1055994267,1767281769,696027743,206580832,1058850575,810009755,1295018247,-1797680425,458437554,1301879200,757368826,1212723855,1153662079,-189630697,1873334290,-569414863,615339862,1419628008,1481786226,-2027035720,1421114831,-1335464505,-1810147268,-2087296237,-1100958250,-1654102683,815572012,-1624513530,1436043782,-1178364862,-1702789096,1491577040,296915484,-136032266,-1290693522,-143072662,1512370485,278120634,-998346287,-1737308119,-1462002063,811289354,383289787,232544778,-1378398058,-805200845,978851367,1879141167]}],[{"sector":1,"length":512,"data":[998995185,1664141657,-1470432757,-904707060,-60165650,928773189,-739553011,922724385,-1003094841,1132134063,1190827142,163971479,1961255718,1276561773,1068914015,-1748331351,-101645471,-11741656,1436364135,1401766402,655229550,572189065,-85326357,-1273407052,2010893730,286910357,-1913888245,-1914301601,1338992377,900324314,943481283,-1640057377,-1656942966,-530484615,-370404656,-361533226,-1762985517,-1540195876,-1128184033,891152643,-1052294675,-844238692,1448009053,-858266326,804730536,-985134361,-726959738,-1145597332,-1418316265,618949436,-2024091587,1794626494,-433588672,-2060618556,774662732,-737675356,-123241205,508050392,-1421358712,390744870,-913922958,437293711,-846005576,-158629401,-683492984,1554345311,-1257017705,35692384,-2106578160,-1442853122,-1500702662,-129699061,-316534584,-286915520,1609037157,1190711022,223100074,27794364,-1321882352,-1290892868,1304192314,1985229921,1022639447,-1951725110,1144891578,920300456,-1296599842,-513821473,1130149303,1573728612,1534284327,440229881,1066052588,200523053,-1592888446,-515565641,14799611,-1828094414,2117100283,-1677477087,-1409302248,554869052,1084954625,-1672346687,-907951726,128118542,19819174,203526240,1712703676,-1041022991,563807246,997684042,190664870,-98277633,-1923143126,564487886,793055873,-1710427743,403325689,2100802049,-145495381,-1292959700,1660631736,-721880598,2146723666,344069159,1301249662,-1343893300]},{"sector":2,"length":512,"data":[-1139608829,732623631,-1750362280,1417176519,365927731,-1080354336,253263251,-1615394358,1547034141,-256379341,436531013,-606962372,-141262232,-378554855,-259254845,-1009791583,1243363715,147675893,-2095367165,1883602666,-17512609,36746567,-458991236,-1695291967,-528622853,498891195,-814827034,-578385951,-1941137739,639468963,-1861670808,1754585104,-1239969327,1123524672,-560348979,1554482837,1979557472,24267181,114828662,-1633657877,-1192590860,-1045466421,832287920,-1301116804,619123922,1856915892,501361563,1435243160,-440383556,-791882999,575343938,-940662076,1991628397,-320980643,-2005223363,-1843128751,-247026350,-325895710,2086851443,578236379,-217702172,800864001,210402178,1008924538,-1852618843,-2137156291,-52435865,-1304129984,-937476968,-520113312,-1702403974,1425665916,-830570569,267261956,-1676455259,1163940272,-1770285960,-1388331201,-682917663,93793297,-609627240,-834762671,510880405,-465604769,-1395280047,1210379363,1106940357,777621783,-1736552308,553267912,1678847326,2118003457,888794236,-2058753838,1848491006,-757478440,760345483,1351378400,1952073734,1269257549,-666360303,484424268,-1916624587,411796350,1140441637,360042589,1207900926,-2033635160,453975467,961510412,78661018,635560325,-592313382,988537523,-1197964317,1573589356,-1713300158,-262035870,1407901014,2039962670,-1501507967,1049636894,51070540,1492900993,-582212824,-1925313858,465041867,293208184]},{"sector":3,"length":512,"data":[456261616,858466260,-1240453422,401262304,-1162957966,-1945630171,-411887884,-1381951694,64138272,469156329,-2065071154,-1630720085,-586313162,1266478260,-1568844475,1062407672,360565473,770991978,-1520571881,1567165061,1741492038,1952539070,937258147,572494400,1633562146,-1555692797,-692468963,-1168164387,1006201562,1595794099,-230681565,1350513193,-842525359,1540248959,-11843170,-1432387807,595279278,1802997913,-1179454672,1318146369,2041773773,-1649055259,-1643785624,1527441815,-326817801,2038904643,-2036266352,-1987805527,1645423414,1858230753,-93068824,-130909249,1766515310,-1635036606,-1111886799,1595481241,-444366535,-379887605,-704767970,-329904482,-1484880207,1039336001,-1485844701,1294009894,-59805396,1255724810,-1065501880,-1257932547,1948897544,572346062,1220494660,-1767246528,1840325781,-1695567281,-593239761,1651235723,-135897605,885885677,-1813628696,769640175,-2031853830,802550804,-299597080,657682595,-836196060,-1361644788,1578474220,1737711507,-38469497,1568246041,1679983741,414064567,276390464,-169885149,-409848423,266840608,-892314224,-105884257,1865411289,-1472555224,-1713739650,-1350440520,887225999,278602196,-543645546,-1798047478,-478414137,-1857990485,419866999,-2136920018,1580319658,488288169,491913961,-1373351153,2084388071,1244573293,-1399971329,144197659,179738493,-1634290698,-1612116407,-553756312,1390350254,2079689193,167086535,1379062942,-1741823071,-1856259720]},{"sector":4,"length":512,"data":[-234282850,-153140153,-1785018649,1891765011,-1877311128,-18901203,1958716469,-259223624,-812056579,-1263060368,-807846121,-700626897,379506835,813835332,-636857816,-1818618858,948981406,-1373880398,114653745,1208761902,1536550808,446783778,-1741887940,1341672332,-1343137468,107516581,-768536018,-98417594,-464569937,-603096543,-655268657,886838186,-1703282571,-814011795,-1464651181,276031994,-1363102416,1094862380,-963976908,1060233204,-1617582785,-1570025778,1439903531,1804587831,270019590,783592467,-1409334034,-28111229,-1264828205,1988081296,-1556064629,891314818,-1098670126,2019622732,-1141622340,-743138596,-162602105,-2082608909,-1658954493,-811450872,-945853701,849518260,-1250296337,1237236344,-807452624,-338522643,422391956,1163573496,516664831,-635544,182761471,-1616672347,432694946,446450766,511565771,701059049,1478482919,-876666065,1649946657,1539546909,1584330054,-1979729220,-560882235,407211087,-1640158290,1956286970,-1759530517,-196109402,737941487,-466939270,2000671828,1409812825,-1622491948,1332469902,-62393557,1100624985,671772296,-1214354204,-791392195,1198836083,-107123699,-1691858632,-1849696355,1847936115,1506376703,306240390,-1195341707,-1999434245,940693549,-1747388707,-1669472763,190468458,-1669920841,232188291,297380798,-534143531,196150617,810001967,1889702298,-480019971,819364048,-1589035981,1737133468,-491583308,284091635,-1247842869,384221711,-901746126]},{"sector":5,"length":512,"data":[-1889773947,1780726077,-161488135,1742516268,1848623461,-1812694348,2090942610,-1924120301,1612360256,-449601724,-1660573690,-655870336,-2034010077,526572968,1771875421,798391046,2142256149,1908699192,-1780845633,94595986,752340033,-158033985,-1265536866,-1918546053,1887991343,452877066,-2089044044,-1654659308,767650882,-1009564493,1147112439,-1105703143,718418479,8623106,-166421228,728052108,-1374100864,-126198451,2022134168,-702124289,1714489407,-1017851139,-96970778,-869254677,-985421615,248552557,1550346828,1112137871,-322722823,-16654976,-682367522,2100294061,-1705357157,1777576319,-67341672,-810525639,1411970234,1124957673,1042833905,1601145740,-1878844487,-329510394,2141177577,-534397408,705671823,172717056,-1912937809,-521097576,-49295612,-1997484794,-1614429506,418879640,436484579,1994378568,147575860,-960818561,828824179,2112946810,-206318918,-1029226528,-749609334,-1901624690,843591836,-833415671,2062748161,1635902985,-1725548150,1669964426,-1179751782,2124330984,-458399385,2045651041,1827122666,1788245661,-823296924,-1464458105,-1796736154,-445031718,-362369098,-1902935829,94920744,-1398188006,1623761510,145611439,-2104920223,-428253641,-1666528719,-1583800659,-1747002234,-1040472217,-1131928230,16785410,10493958,541068803,1612055809,503775648,151134336,44081190,130559499,1646689703,1954882202,-1360717342,-1647648065,-886925705,904960934,-1481545350,-1767061450,1729790555]},{"sector":6,"length":512,"data":[1246878094,-802026464,973996896,268689648,73470018,-516929006,1347556356,1511392609,403038576,107057250,714631706,1242725992,-4873894,-1339246759,-1458946552,1485335711,-636911517,-676864712,1995184198,671662716,-135624793,-1066491359,1981613857,520593888,-464837506,180795259,1846250248,1166401850,-2023917258,746043054,-350562931,276987935,-1977481118,604561968,157438098,-495936986,-1868421111,-1440085406,-1981552440,565722669,-1481498985,1045310252,-1903614039,738912246,191025330,1220852270,1658072863,178367785,806086770,207818946,-483341774,1355953164,-663401117,-1902307179,-259825119,-1821320524,-1998571605,-398881213,999211944,-1891383056,-1008142275,151011215,998186276,1101280274,-1866192632,-86361021,1360151586,440799588,-1286486207,595129630,1687233096,-1322628590,-733211932,-1538053883,1401215284,-991284300,-103836077,1146131460,1385465113,-1794819764,1762219092,1901745685,1622414821,1495532937,379953510,633433691,-512336617,2088474533,1620575737,-1736042108,-432943518,1368548376,-1733043866,1738131049,-1706653280,-961959831,-911184998,-1200776378,1872479977,-1673066048,-148256655,324382902,-1479946948,1390577906,887607527,-434316500,1301494055,-1600738096,77613572,1343389844,1937787394,-269875380,-818319136,-779917007,794384855,1901744395,-582299947,921295128,-2062597800,-509516810,-1377844220,-1470261688,-1668436226,61529993,-948004147,-1317184890,1452479343,-1387435787]},{"sector":7,"length":512,"data":[-1439035121,169846331,421701375,1027467501,-145706218,-650752350,1353714104,-447931469,1011578157,1114605628,1213053256,978527417,1250605273,1423566011,2046344672,-650833522,-819079979,988410920,541996484,-1309767661,1681899752,1111227069,-1478633801,1865910975,1924537717,-391200798,303787138,-1660647604,-1063706298,506201026,-1672175640,-1564892015,139475618,349300253,1440034838,888592470,-925407102,-273775569,-302847858,-1219637527,-613684772,-1956950922,-1370372331,1005054147,-2105585273,565782542,1041182091,-681318035,1445772923,1729567772,844088239,-248885651,1098746095,637764136,-91651661,-1957839452,-211566373,-269278618,1802033390,1829842539,-281330195,-730768816,-260135722,-375458142,-1936866026,798686843,-311101215,1387507609,-1251455728,1241376832,-529119188,1057731489,-1792371019,-268925731,492890771,1774389157,-1261579149,-288899003,1949851893,-1710752170,-281207984,-411392033,469672892,458194195,686708028,-640797706,-196385921,-74947591,-444056807,-390332515,1878636452,-698485666,957277622,514631634,-1891076980,1324776681,-1045689750,-910702929,-446210536,-1825135654,1444498977,1789558667,1093088010,1435038650,-1680852699,-1913332020,-1391266952,1960259949,-737724776,2144267832,-44495405,-785699399,-339617157,456918993,-639675780,-979896789,-855529893,-497639970,-2100681223,-1106601297,-33162130,-195538156,1401260600,632026458,1583386045,-677483709,1941263216,-1150141002]},{"sector":8,"length":512,"data":[859308021,-1534062939,-1319393623,46465215,-744782114,1759313228,436655283,-288231353,1543142996,500101359,-610400023,1424991140,-2021804860,1770582619,-1581952067,715206447,146337532,-2065582854,649311346,864962268,-1447745454,-1872268754,-1382442816,701702366,1666404531,-522484240,1419475009,596798280,-1247401355,-268291143,-568506903,1740360003,-2075849601,2054209658,1390474500,796221997,-1340690467,726287635,-1461475319,1533943729,307736539,827320556,-286634457,-1852592402,-454382058,-940145286,-406216516,1119456097,466032940,-1086445652,-240468220,-1474056687,-1938308991,1009803783,-625721303,-372156514,-1810841706,1682607958,969458132,1316398681,2033642217,-1183880834,-2051639681,-85130583,-333668841,-2062752995,282053727,1957745941,-175948048,55645332,-1626956968,316407391,399500491,1109408434,-583102457,-330532331,-994978317,258516405,-382380191,-1217083777,-67113586,-672580472,-288871740,-1907988306,3827759,-183450201,-1456731506,1028221041,177142936,-288776155,-1475788513,-570571561,2138277132,1046807878,1974956522,-336348523,-1773628737,-1877150341,1222568978,-1428067875,2071476733,-1499993070,-873930571,669115104,-220151758,-927253757,-576550919,-921082823,-1493092260,1462913374,-1893907377,207443880,909522268,-1598902566,671240196,671164417,-671012863,-1091305462,-640198197,499120027,-386363194,575694642,-1105338365,1646431291,-930876119,1945617090,-1951529380,-218321685]},{"sector":9,"length":512,"data":[-445759469,-564140970,-2132251922,197031391,-1065463438,-1511039907,962962694,-891322273,113805817,-1867991036,1622301166,1002347519,1676840405,-1642053680,-1302052341,1579416015,1234271744,2089835569,1975324875,-1607419716,2044500263,1419191896,1243551234,2023065493,1144160145,-2073429770,-479330053,555369071,2116714054,1704945193,1225391853,-865211094,-701613006,-1405308372,903415681,-323233809,-1641555514,-1357862637,-337537854,-644569118,-980372528,404258383,-1854845977,1917307657,133055109,1415410803,-1843917784,-708638036,-2010599560,-818754289,920783998,808999520,-269421831,19946860,-473690626,1323782501,1366614716,536688357,49085021,-67811587,1555748605,242030894,372532385,-1843964395,1758397418,266915775,-1775713082,1178921160,-1664209077,-356663876,-339217743,-1989169222,-1999957706,1119407717,2307136,-519715166,-1979666208,-577993057,387865764,1655574707,-430050627,-1916534260,-134622314,-1930216965,-2124054867,-1524575136,-310349526,1713131436,-2013076676,-55462102,186784184,1266751682,1103856385,-1610268468,-1483865660,-796124854,-1486837440,-1856893518,-2124047820,1094043218,-1196741410,-1293743820,364799600,1634389921,2090246346,-42896991,-2093012088,-1083239188,-1885398073,1241861401,270679821,356508356,1633183042,-1705205578,-313419592,684033247,-883601501,-1461431296,2055647656,1284121211,917347220,-949904708,1428752024,1399042084,1807736064,-250165179,2023935219,235914186]}]],[[{"sector":1,"length":512,"data":[-334722849,943745833,583041235,1682899755,2027388941,147975772,204344926,1006886845,1701603429,-1615385800,-1131348423,-1250930337,-829413996,-1066467302,-998566324,-1187861377,-1510802649,334680776,-1300616878,-788975216,1924160827,-1501418285,-2118374607,1285137030,1751075887,513481243,699519394,1478485542,-994604590,-1688809487,-1915564711,-1979262515,82985228,1176703940,-1031788518,571492836,2030848544,-737516334,394790048,1311148867,1917395090,-2004457212,-1539102322,-453873432,1411682378,824267571,857813537,891368481,924923425,1914779681,36774950,689211554,691053647,-1828149918,-1905181410,1078632764,429181412,-1589073837,93153434,-783692974,-589652732,-1819680546,-1532845922,-1398101850,1697591470,-1265315254,-1532786391,1245483662,-1542903558,1150455972,-1959418348,1275076934,-949024254,1289828413,-646476401,2016274279,-39115301,50977325,100728864,-1128226784,-143881372,193407929,584890610,-525210132,58772294,-2126493680,-1143536708,1526905389,-238376256,-1196565498,-2121579804,-1690619642,-898327310,1002007516,-1091589209,840748060,-86313782,-417802065,570950124,167927952,-1270236399,-1934149958,1257876021,-32855365,-1258960506,874193606,-854922308,-1339028606,1052488395,-961512097,1840051041,-1181313073,-1095261400,873245033,243499224,-1274372485,-1448688470,-2100713613,1607890009,-1523794973,-1422182646,-1667341367,4067124,1175520289,-1448059764,834498310,1500970258,-616580249]},{"sector":2,"length":512,"data":[1255634043,335864112,-2057220014,-1718415700,1394579943,-1516784532,-1549247866,843890294,-1050126155,-2006968443,-1177802543,-983172638,1861949030,180000933,-549925977,480817563,428231523,-2034128792,-636561125,1528010481,1554138892,-1498895930,120421131,-1579125219,-1489644153,1218720042,522796155,1893483188,-317821547,276963335,2006829154,-1456989553,742060648,-500135390,1657742344,-1599608071,-1779609014,157438640,-495936986,279062537,-1716343190,691014146,174874380,-1182225878,-1196642135,-1272149246,-1010072872,-1951785329,-487409510,2025992203,1402365898,-1696044045,-1937565500,54053938,1355977933,-633991837,933745520,-1908176672,1135142969,-1303273291,-1841557789,-1418374198,-1887184652,1565064254,1183356587,-868239958,1083181562,-1490806524,1230158494,822755888,-1153167132,-1489722294,-1853597420,-193389498,-1994337561,675910212,1267909801,-1827873103,1691956300,-46510547,1078957002,1368671497,346636616,1698778707,1380865189,1515591013,1471485297,371557054,-2053484711,-1184081258,1381799685,1578591698,400945530,1712423520,1589731864,-1906108245,1696147009,1812357526,-966041453,-2093717607,-1529603546,1788511897,-1694058068,-2032552852,-239428837,1332747238,1906067211,-1664669240,1196019827,1775793565,-529031737,2040416137,-1631082008,1204416635,-503917665,-57466969,-2136995847,-1601693180,138022018,1511294113,478585224,-2002646918,-1568105948,146418826,-634090333,986932104,-1876694798,610865730]},{"sector":3,"length":512,"data":[1661867666,-1692433798,-1908432117,645668638,528101866,754430872,-892044322,-223568358,-893393542,736859551,704891521,704064165,-1896788930,-69576734,-1978415644,-979530797,1544432737,-1359909524,1791355746,-562925803,749148007,-1554049402,-2076656584,1002804578,-567459958,394771564,1542395751,1511569868,-1378310772,-701410536,1300946018,-658559907,-1263967559,16499964,-867062075,-1961840262,2023106821,1488518897,1654960484,-1975204378,1300639309,-1396334415,-330136019,1660629335,687704907,1851303590,1660550110,743118847,-1400089194,-345849896,640446858,1982336086,-987418304,634149646,640290501,1535047434,-20627279,908871211,1817516198,-986336910,1106006798,-1651846991,827143721,2135667010,1533828384,583352497,-866598517,1744777595,-433127492,369045876,-1511642045,1932613656,-1290403050,-1970235226,1577868617,-1940350581,1654639696,-1411460558,-1733982678,364692947,1818635331,-982055119,-620352121,320150626,344928602,-1542253533,-913659496,-1233159644,543339544,-216538939,-977954629,-1332537636,1147335448,-1940088438,344404313,-936284045,1177332933,397828765,-1053726605,-559681142,1430662567,-1866126287,-867028203,-1950063875,-467259615,684028002,1657693743,-456775440,-970085278,-983590742,1319311320,1904991025,-1417045159,1655478439,1589218124,946010316,206971670,-989737904,-1157222932,320132706,343093586,-1407664525,2039091595,-1971087174,437015369,1662307674,1660275802,680626908]},{"sector":4,"length":512,"data":[-1741594330,-1940463222,1609352666,509791948,-1733119212,-1243560653,1892013336,827475496,2138723282,-1960208217,-442976431,-2043716411,-1734338379,1540983805,1489360076,-1970238381,639148257,826508053,-1555326930,-2121631976,-979039146,-1283053392,1636473880,-1964915157,1617081873,-1975022509,-30320991,-421625068,-1148429187,-1940047675,762340023,543354566,827941653,-821881708,-1940350878,1603373993,1904962572,362879150,-1238283037,1862165271,-997435397,103702626,-1975111335,1545121457,206971275,1344037540,-1060821748,400038062,-865950685,-989361071,1577463360,414884235,-1310517343,1025590370,748970638,-276014010,-970023838,802972378,818238982,414024468,-1813834233,827335778,-800708176,414811234,1430832424,-1731901044,354818214,1991726723,830022423,1568872248,1904946225,-1962963883,-350702607,1662337419,1656762741,-1894209148,-1952783594,-904355615,413643146,-440200159,103345250,-182773599,1489312954,-974812075,1145449176,-1021930447,719728993,1891961222,1659160111,566635164,414726341,331753687,-1940531003,1515767231,147136396,-1474360234,-1434047495,103416930,-1961355084,-770941199,207572066,-979619496,1815182088,830224581,-1809639678,1904877666,-1976690498,-734958287,-984299985,-1282649264,1592245267,-265205748,415068555,1361152995,-1060818548,1658195028,-41132632,828531083,2118528678,-970084303,1451516601,831237132,352786609,1144081699,1477426673,1355140108,-987555665,-1374924608]},{"sector":5,"length":512,"data":[207476933,724329124,-530410874,-1947464615,-865929343,-1971483567,-1785963391,-1940041531,1492224583,-2121543631,-1487946566,-298749672,829743894,-1083077922,818274840,1659118356,-452175844,1654671557,-1601416736,414625989,1442366760,1355106700,354818215,774980483,-981943767,697064672,-1940299381,-1342651023,-1402813416,1653245487,2038836908,206881329,-1696393577,414753163,1578207946,-1584787316,-1975838542,909208049,1660796624,1757817516,1904916017,-979039140,1556490416,-2044178235,1522676091,147149708,772682059,-242523706,366489924,-1335697469,-1975579554,2016496513,346021494,1617078915,828900905,-1109292304,-1022054376,1534117364,-530395636,1656097876,70343736,398034478,303604227,341579940,1099569219,372269821,-933062013,-984730267,-533626896,827736855,2139500428,413544645,1795364408,-1329266639,770453887,1636542854,1533030733,562728460,1396204212,1099633420,-986413528,-2138689600,381410907,-1866106237,338696354,-664604733,-1947464611,741431649,1657733514,-1140446576,-977943785,472993712,374741158,-255487037,1437086024,-255465460,-1084352345,206659517,1113688951,-1021985743,789602962,140702214,-982509383,-434586464,-1975777748,-1335696191,-1968432970,-667854879,-989314281,236499616,-983529939,-1328048528,827769620,1535317788,-940398543,-255522405,1752112973,-1656305537,1049983074,1247163236,933987373,1681628667,-171724253,-1758358057,1698450159,-1456763586,1674032281,1721416547]},{"sector":6,"length":512,"data":[1994331634,-237332539,-1405453261,-948810906,1386589339,1503350615,-110063412,-1214712459,-1270006435,-1709084323,1716804589,132011553,-1534471560,1931463847,1013204261,-985428783,-2010346698,-1423142399,1820849099,-2139705692,-1356711081,247334702,776643128,2027152930,2013781866,-213314842,1985710567,443790148,-868136772,1100652192,1962998541,2118181875,291326209,1229073344,888477262,-740612418,2009782531,-1892410760,-1284407522,-1487318074,733903252,1059647849,-1736356505,-1306732027,2142056569,1186673957,1122100369,1148472080,1921083665,-1994083458,-1957673334,1899678628,-729507932,-1585414875,-1770042203,-1358521038,518092706,2144644821,-756699181,-1941890150,-698916911,-1439625864,723463713,1386210360,-2025779866,1113929894,544934798,451689060,2055630453,598245083,-1634041103,1883432609,-2093188468,1820541050,-2072200834,1182162305,562562818,606703405,408824835,1320619154,991657027,1281511541,-2060331642,706020395,200346770,1310985477,422600237,164135138,-999705840,794844937,-1031592882,-571606798,-1555073495,1536122301,144068688,-1070550688,-154543960,-853440190,-1219333628,-702258796,-1690518426,-1157676303,-2120543414,-1055857227,1471792903,-440066734,1117949346,1254303907,-754270008,1121605735,1596358531,863771133,429402873,-1151220362,582897290,-1730926580,-1205851739,1482338333,1507551225,865410488,-88382434,2064043859,-292178980,892646036,1296756128,-1331539242,1927531860,811142718]},{"sector":7,"length":512,"data":[-1509866465,-117276652,-770956610,582556074,2033428480,221685161,1930415435,1189648830,-874080621,-1254732484,-1398517393,-1611639409,-1333891455,-773779481,16253176,213675931,-1582641196,-1284171926,-143212616,-397248550,-1426327237,-798602004,867391166,-866416562,-1894629876,-2144679030,467061505,1996017174,812746849,2024851213,931732241,-1750831383,281534207,-853607273,-1314867612,2097848760,-801895640,-1869204425,1088336675,-2128995919,49354905,-1025567033,-698076140,2057831771,1855744060,1275429024,-304518841,1717447691,1141047680,565947879,-2051390698,-1590153047,-241095661,1742937362,-977009852,430035070,-1630150059,762254616,-946356337,158459324,-974156621,-135891343,1995199371,1392701601,-1890055775,154965547,1065210017,1870017671,-2145755616,427611451,-1297555071,-1609252856,1586504940,-1565281892,377820851,-1044069547,1825003154,1730545080,-987741988,-1144737073,-60203313,-977675925,-1224555130,362546816,-1251201572,1803723430,-639269249,1335976351,-1833336935,-747866050,-1362193306,-1416894931,1853522581,-314674354,1841824895,-904574503,-1220472064,1191561025,2080826889,-1688295066,-1790858955,-1376011903,-2136370753,-1937103768,-58726607,1980117396,-1569410003,490921689,-967664384,-618406998,-1709155093,-944886931,536402885,654501459,422406703,-550820040,1858652484,-1630968206,-1090394347,-380724078,349131445,1846912526,-1419835954,-1892364196,1536023611,-2076276049,-1818670096,-1744960609]},{"sector":8,"length":512,"data":[217651745,-1462794607,-555350454,-1204342777,593526718,1616929475,184753209,-1570406014,-837969565,-7461063,-540603227,-2045344854,-1017779601,904307648,-360671732,1157741313,-612724389,-362099198,-758676208,1057893964,55995468,1575006840,-1695372257,751652484,-1770019619,267273799,1699153334,403643389,-958640055,1173807551,-613304602,-888134245,569773394,2040448108,64280994,857519159,929766531,113824874,596027616,-274936670,2064633217,-1336007553,1034378960,-1782161872,1460200677,-601992135,-787407703,-195882934,909364624,-2140160497,-71501422,1677971066,152144946,957957658,253488022,-104234292,-1962103935,509110216,1160684263,724808823,1766849373,-1997017396,-923122568,-287258624,1470251059,-1574583221,2041244642,-1756832265,-1903127124,-1894729860,-1962797607,-571360367,2012149933,-552102020,-1829794635,-477136955,-1142708293,1910370726,923327985,2078437643,-2035753532,-846834486,-524245918,1903309573,-689180763,1279784461,-1097335945,1362903748,-937980573,1985738522,-578825149,-45944341,-190242561,713482362,-850006951,1051465729,-487147136,1629322463,-955988160,-776037968,1001971919,1541744390,-1071651666,940043017,-189073569,710490113,1783116438,940867807,2100377225,1959348072,435322032,-541490753,2018928178,-671814461,286386365,1741043740,1053273126,-2124295808,1674157462,-1957848194,1400992014,375240881,-904552721,35845384,-700968507,353864661,-482325176,1805094732]},{"sector":9,"length":512,"data":[-490355180,1128639488,1381125097,1212911148,1138865585,-515278621,913481752,185416521,1946321783,-72145339,-1954496187,-981029775,603205293,-350458895,-1250466224,2143579502,1910106607,-1650736212,-1684306504,-2100211068,-1159891405,-17219144,-665132997,-1686964981,400897828,-1986246425,-495814685,-541066350,1896486783,615588489,476723197,764114911,1569714142,617818001,864202204,-757192322,-1134851709,-1884964773,434705609,1709702932,619312918,215923972,2032839474,741551728,-950653501,-2057899136,50992750,1432009434,317320988,-842667977,1480069448,1075124162,-2057418309,-1418316909,1728050213,-1399066340,-529940427,-2022630700,229849580,1503267797,745640437,-700191609,-825519124,939890468,-1566968800,19126096,-367619874,-1019426470,1751336853,551811974,-513909225,1837333701,1095512043,-1017089845,-1988778863,-530300517,210524868,1317118490,2034930066,848395396,-666386348,1715021988,1291018149,-1438847625,-1302675265,866523792,362389852,-1770339785,329366229,-285834729,682101208,1116383565,-835464986,-852026813,-954295838,1741018574,871986073,-2144767472,-639966495,926220274,-1950436532,-1449656109,-2084651927,435689822,762017196,-1771549854,709241926,202552425,-1585820548,374491816,1477937751,1419024233,754985716,-1564973667,1682053296,99230984,-1003481082,-2085566484,1126036733,-97517562,1686208732,-483302400,-1301739688,-187185815,1142775834,-1555361731,-733837919,-413829914]}],[{"sector":1,"length":512,"data":[1155712404,172556738,-1053442131,2031491649,261631522,-755725147,-1398248516,1963625229,-2141910055,-441110332,219048230,974501304,-1697229311,1714603031,2095929925,1767615249,-1098163724,1495421363,630068930,-777945416,-1310202772,770646140,-1651191124,-2036615170,-1927986829,1779017346,158453928,760699875,507575797,1367832983,-935552491,-1120885656,-1344872156,986884774,750653964,-1542597476,1405022698,90531216,-1719039718,408548047,1784545356,2017775505,-1155630746,-1320072859,-123112258,1477079156,-362877418,83052803,-1857971413,-1230640567,394153944,-237969993,-270523317,1658669585,363572151,1265530308,-550166658,-1673241192,2116744888,1266110287,-71370913,-336208515,-1684014916,363240324,1562532943,-964266750,-1848346627,1523993703,-220554216,-1048399460,1501083177,-2033251921,-226035020,-2031887689,1310804689,2066596024,1253133430,49750445,-368948461,-331518010,1925918836,1257178650,-1903383183,-173824442,-1951373390,1288932501,308255930,-1838414902,345038273,1881851247,1925887285,150862460,822500261,1151228964,-1191452090,1410511557,-311243157,-1676956608,-1372745384,-1392367989,2114168985,1369417906,-1959214852,-1829600137,-1579995937,254488115,-273896036,1669452692,-376568710,1841350968,-1433601139,1857478756,1704277328,-842651564,-1938673137,-1726400554,597071628,406112615,-1023098101,325501361,90210503,-184265083,-432472956,-593348641,685974922,-881436562,-1045724022,868718537]},{"sector":2,"length":512,"data":[-1601545324,1456235068,1527240278,-678086178,1109825486,-1213718937,-868578487,1789049066,-1688101003,-154910955,-924633464,1451641648,-1656248574,1681710438,109826205,131669107,-750809373,-472893377,-1608260920,-1870730631,-1164609981,-1177120169,-1229977886,-423572056,-1720876931,1861443712,-468779328,1010506968,1310551403,-401949421,945471185,570162051,-2009604190,-1594317458,-1587065901,-18781934,-1085975006,-1367154851,-718884864,214116354,-1467503147,-1700733586,-1566901067,-1689588854,919013680,602617091,-1779699876,-1606712966,1147968311,1265454595,1348436475,1960039566,-1706787134,1290563513,-567429694,616488890,550246761,-1459061451,-1482420759,2129871423,1749897079,533284278,-1845117913,-1483335256,-92708321,878955270,-2052171575,-1121525831,-685578200,1321052838,569963078,1211615122,-330269294,-1280882424,2038798818,-468841871,1520048525,1689845886,-238688602,1985381701,-2016720871,14572096,-1383007287,-1842032613,24783280,2050553224,-564956330,1282352195,-1686375206,-1798383261,750190130,-1970118719,-2016670490,-1907336058,1701606592,-1926187247,249279191,1727879935,-684442048,1678013058,2119469014,1116515135,-30337668,-87395471,-119426296,382580351,-1556797575,1760138950,1026874224,533965010,1829984094,398486531,521168850,960592902,880341314,1966801592,1747997834,-119432857,-905193424,526683665,-549650890,-1968458711,-557663663,1642815952,596908008,-769689284,-2058996099,214207301]},{"sector":3,"length":512,"data":[-612560955,-612548534,-1379071558,558929519,1735304638,-989053176,-503025022,542368342,-1192654114,821608861,1305086732,-1942945966,1844276721,-962933889,-349318337,656039299,1711131651,1366655873,-2094554976,-227612234,105321953,-680973802,818209063,110758089,-332861369,-1464303793,201536526,1949113351,-2086172157,255490211,1963975621,1079742643,921450219,-88664410,2030248581,-1547166692,706101770,730446351,134692820,943948489,-951775445,1260815346,290846214,1120874336,-527561552,317947985,-2048018820,-624394334,2031879761,1782346177,-1038098585,386850340,1010693079,471726144,-237724734,-921640703,987505042,-2071125807,34780250,733962672,-1925858728,635856742,165500399,1940359924,-1704324085,-1417733731,-1010613665,-1445548989,1260154555,-1003133268,-1897022893,-271441185,1161537869,547267127,-439545991,-57949369,-188867760,517049850,-376226576,1363326607,1308488502,-43809771,-1080044885,-1178935711,2135677239,1744144094,-209266284,-1062254687,-611078749,-1338541555,629570720,-1635909905,1116211050,913195256,752881365,1015942261,1021316821,-842137098,72859678,1407004924,-1935171869,-1568626431,750775631,-291306847,-1204342777,-423199377,746157830,-1590288496,1853213410,134036194,-299093450,206973964,-1339023060,-490683240,1137582003,-1075018097,-1209235986,-1022552536,-2049302665,1988614017,1139585121,26226875,1241414689,918331624,-1729984796,-1803296122,376993093,-2098649107]},{"sector":4,"length":512,"data":[2111158004,-1091384264,-1276043015,1927581184,1055228314,-2128508157,-305645403,253466203,-464684904,-986401386,-487293034,-1093472129,25450365,133837426,-1701232080,53814657,-1777970485,1265872820,-194837582,-807378541,541810720,415958212,990679936,1206662116,-1338871598,-444532676,-132495271,488087815,240102451,-1769844519,-1475703793,1699723361,-1640604290,866743806,-73199363,-1620993643,-938387843,1113069838,1852145914,1895780195,-890126375,-2120634419,-428842824,-419133572,166140205,-1340479718,-737042538,-1631304532,323018888,-1373519995,1485677129,-1120604683,65803532,-409134612,-892466042,2069856306,1206463970,-1332741041,-232788578,-315194334,-1093790961,-1775028247,-2071465293,1261797699,-302145778,-1855405866,400175227,15459104,-525739632,-1315915560,-1312026503,-1571289424,1535845633,-1936284712,-925896116,-1703542500,130639233,434422316,-1042261362,1671427241,1549272860,38470138,-883921133,1068793339,-19818808,1776781515,-752249338,962953770,53594883,-1962736501,-1490285559,847403032,1617099952,851493849,59081097,-1034695933,289585999,1478011692,-1638393634,-2094532926,1702986134,493621887,815884336,-1054380880,291357430,739039532,-27781101,175726691,-696047758,1630276609,-1874763676,1100856896,1258489835,1639735142,-2053059989,721781121,827288594,76383592,-1273402300,-1564422974,1890978062,-1666169513,1657364581,1527413088,-164821495,-1845023732,-2093663392,738997782]},{"sector":5,"length":512,"data":[1974487231,-880066151,-2058181549,414411831,-1338814796,2069926800,1922466560,1229428230,-1597555280,-1962728203,-556260279,369667657,-1507062699,2057382924,43418411,429099017,-1060696396,-1240912542,-1028384581,275955904,-17058295,370542767,216765958,1801539372,1649070176,-2109392544,-1392095507,1549277309,1295822896,720795906,1735438405,1617109344,404706569,-1338779468,-1383970788,123342025,-863469421,-2120321632,-155115451,739332754,321653922,-1029810152,1451433334,722142010,1697560073,54248144,1813119883,1634218279,-2014134067,743824132,428433546,-1338905000,2062386492,103034118,-1337378410,1799456453,1254818599,101018642,738995757,-161998820,370212069,1864198579,808039344,-815921179,132407379,959364912,937630543,1178959922,-796634488,-140722729,1295072445,-404507357,-1529242218,981357982,161905152,-781534701,-1028676471,45561704,314127969,360542234,-2044697276,-635395245,1377148251,1405992093,-74598503,-1024347899,-167497874,-1099960234,227132656,1200790393,-582489921,-1545757079,714068006,-1688920153,724105414,1072218253,569682865,-926411850,950801673,99868728,1774467340,519708047,1341415390,659037399,1648004798,-565042361,439780829,630237422,-163480445,2109900023,1915652985,-1784538119,-934403049,346639155,1124185224,331334385,-1010805180,1891401208,-852761347,-233455612,-1480606987,-529097199,329269807,-996035413,-517499710,164305685,-2136270351,2080498727]},{"sector":6,"length":512,"data":[-553635866,-2032404185,-1233119443,51078717,-6963999,-814275550,678154585,-1663710630,-320144226,731952622,-1969474099,947126728,-1240395471,-1097652248,1838592494,1781448487,-1188498221,1786490763,-1012916525,-1965154763,1565189598,1462697132,-1904441565,2119037506,593670276,1635151520,104612614,-872069633,-1077542532,-103571338,908603292,-1917727534,1936489997,1893407931,1815318993,-1004761366,-1636787834,1239492819,722020686,1775066695,1568937398,874860579,1804907675,8057253,-1663083475,-1081836665,-742789416,438774752,-888895316,75257896,-524448332,-419006022,-213692996,1092539519,137829327,605307642,875940069,-479796554,-518286942,-306256894,-82113020,85271617,1047565403,-1441320873,1527745094,-1181498816,49599971,-1405557643,1346820916,-182502506,765231170,655066329,795304090,-38562976,-1386647398,-31928143,888440459,1450630421,-502535180,801289038,402588281,538916573,-1928202246,-1201217077,-305124248,1776115391,491568568,440934925,-1387528555,960492000,318984407,2067899407,11657953,112334163,786141222,887315497,-1902046121,1052025765,359896370,-764407686,915463122,-1552655360,905866750,-2052026412,1994276779,99745102,-1225922195,-622859713,1582554495,-1154104922,-879411726,1437592999,-1810401698,-158327412,-684791429,211390690,-1771614639,561712386,1223860537,1229102652,779869428,-138806561,356489192,-181456906,-403195346,1006090731,763049571,-814022958]},{"sector":7,"length":512,"data":[-878337038,1979984396,1366304667,-1220976944,1424687196,1676527782,170881309,-411397554,1438832574,-1108187158,748989206,609941080,1848962290,-937574045,940054502,184912438,283116548,1017278052,1583121365,251259269,-1492713624,1347870508,-363761831,-1799890185,879737492,1122892165,1163624093,1399176541,-1024364690,-901077947,-1902562786,-1846480880,-2116306088,-1771991999,-232698538,1056883425,-153872833,-6585787,-969606289,-1498340477,-388463186,279078562,1859686322,-1346694766,2094278267,1665145453,569358406,1290594535,-1023065020,-1119321165,1062347203,554123059,-1993661665,940261442,2080739364,1482358754,-1525221537,630813867,-612370256,-518287919,-45064464,-1068013689,-1275981818,-808477563,-1353878648,2033986609,-2059241507,-474832230,841508285,-1571072981,1705901371,1746415261,979666055,1533271544,-894909811,1256216042,344741659,1889217036,-1069905698,1591742898,501735752,1310679438,-938629640,1239497021,-365565522,-1782098489,-601474954,-3280022,-447002079,-1660304630,308768168,-1544271128,-1123005792,-801068158,1524994090,-1194715880,-1140247681,1546598409,1593843659,-1023834066,-2077556933,-1939634309,528777772,581087812,-201577671,1908287234,903921758,1950416728,-1175001776,-966894837,-614946214,-1056301698,-586170398,-2091711708,-12688722,-607024235,341776550,-710941520,-410214312,-1994515918,1299286350,-2135143129,-1264586706,-613860679,-1650394191,115829907,-258213632,1400934195]},{"sector":8,"length":512,"data":[1359311445,-519710428,-688431343,1730181626,-48660587,1179643588,-659888843,1212639542,1294733364,-2122145711,1837317089,-658742817,1941722716,-772169733,-577615175,-1154522204,-1660957458,-4693109,315031564,1485643572,-1692471970,-63377912,1442770707,335194012,-1567738155,-1717688729,-1570192072,-252832520,-418352321,30222080,-603742554,1747453747,137012788,1921898655,2137214756,1625885688,-318867540,-903809492,1322856526,-1344233998,1383575682,970924097,-973278214,1427898475,-1108454021,-792923024,362013761,-1791737794,653260720,-1083991335,779080902,-1999798695,-1344539809,-2128483759,-1081786765,324888243,983123679,1052017588,-1969193140,-1586050899,-69308087,389616542,783613661,-1890168922,-2061677478,899158496,-998562290,801344822,-1952399217,-1660313035,1547978904,1472507762,-1452970975,-728095865,720973967,-607215834,-1103031545,1018727312,-165872470,953150462,-1627265305,-1322948017,-237236981,647356277,566640487,-1904297529,-331301938,447383025,1636817565,-263742353,1327853373,1624973557,-2009216917,-1924260574,-755794426,1338004598,-1986977556,-2123023241,-1913723388,-955387999,1172890703,1587836812,-995526115,-1569571351,1466687364,825513664,-1154090936,519412477,629053073,133022814,-2029339183,-169599075,1060854826,653143325,628076878,1777420716,-94468256,44547378,-585998019,-594010518,167698187,-98292478,24892352,287297443,614660806,908589456,1130258745,393131364]},{"sector":9,"length":512,"data":[-1623796710,-2110872655,103845801,1352666889,-362544540,-135739772,-1925233710,545984870,-1673982535,1746289512,-945009073,-1815690742,-853853329,-463922310,1035400098,1750964054,311901921,-1303693581,-475606045,-1361108410,-1543453729,1709846531,-151109223,-1514258747,-825421982,-1074356684,586610604,62379767,-679348526,316153851,-1614344640,574738172,-862656825,303941663,1530442361,-1039716816,574868629,-1267948577,-5938627,-516380047,1455996223,384288206,1489474035,964773369,72384495,717079600,-882858097,-953232684,1341414304,1363116944,-337428871,-1480513022,-739756863,1606538002,1237390312,1777613280,-921774911,1731635511,1065535468,1444187556,-1089492270,108954426,168334653,1271566893,-328149505,1115422529,515871099,-1509157636,1746967705,865717502,1285550249,1952912105,-1760893709,-815369188,-1072250983,1051665972,-912391045,-645115989,-272203994,-2033189465,1779896278,-1524783548,967206702,444295475,1200298363,372112590,-575045678,1744790976,313665040,1427768696,-90778596,-1706953669,1931685713,600139299,456781352,-1790570038,-1234047816,2040917907,288039304,1534093869,785668793,1821715410,1335559146,722883057,-1524864464,-238325161,-1197324714,1662271583,337078158,163593548,275776463,-40451066,-2006795747,566391103,922242751,1828144020,-910951132,-1218441896,258716873,324282370,-61604605,-1325256890,1715410369,1726136333,173997340,-1277181538,12466184,-981819953]}]],[[{"sector":1,"length":512,"data":[-1258701489,-1644076536,-518399514,-410954760,1174401422,-1619987641,1645783425,1201167291,1135651650,782544075,-2116225387,-1275983652,-230869880,-348479255,2021027079,10902038,1694846614,-1366569178,-126367224,1151990940,1214041910,-2111327215,1436882775,1677999587,-213133325,-2141217779,-125816056,1601969613,1578107512,1753558533,721290432,1520437472,1049349951,2120362595,-1911429391,1684768145,-2143876643,-707947754,981674117,1362444669,-469347066,601162239,948228042,-488188841,-1150290885,-160612064,269356609,-526405553,1104168994,-1576979802,1901391374,-1512772477,1766786902,-839607455,1699328015,-1694587468,-23118218,1040451835,-1583723189,-1996128330,-815711692,-326069150,-327461855,-209412502,-2097314048,-423192994,-1685377709,-257544352,-1815834371,343180694,483726736,-1651250928,-1730337317,-399110677,-1952964485,-830260722,1552092544,-807507056,1533044436,27915995,1070758789,2041226464,-198542794,1960911551,1161772245,1579246928,591568898,1823676965,373870754,-1345798937,-1339727576,-812482429,-989372274,-1801027225,-2112931384,731928686,654668324,173658472,-552888134,1866446917,1034414358,2064377064,-238666692,1941306727,-1165033774,-1129359394,-1501719742,-2134519784,-872691865,417494075,2088097736,-1540833686,-22131200,-1264018003,2124639312,-1080267709,-513858676,-394615015,-1059849015,-1584482154,1095148148,327073891,709197518,1422605046,-19751832,1055637211,1400181616,789203845]},{"sector":2,"length":512,"data":[-1909167718,-1692963135,-483630289,855543993,-1089799510,-1944783048,-1774893885,1544564875,-1033468160,1665101311,336811124,1468207577,1005510831,1897909415,307500957,-680247022,947086417,1577253816,858146441,583631311,-209381425,1927030929,-1600140768,-1676400392,1060804651,1282675214,-213417072,965124884,-1983905992,208377256,-2068915604,-1684963571,2104416904,-1599495361,-1235974925,1763534646,1303727667,1541686510,-218592801,-825947333,-1445025891,1233877917,2073941002,118626131,1321746095,-294752315,-650675015,-2098348082,-2112165654,-1164074177,475672885,1757146762,2098030705,-1246855809,-1801807377,-1915354973,1492862832,-2061734345,918158690,-1213274177,-1094867417,-81103473,-361382278,-1540965938,767090308,919029597,943935727,-485689546,-2135132397,1641568069,-566897936,-818398437,-1861774128,-494462236,-1437542647,-991639824,-2122598361,326051771,-981304041,-103962613,-1540425677,-16231913,1303668479,-212025037,-1048061891,710064024,-877666021,-404265344,579151864,-833295596,1535897066,1330685846,-2049258099,982741174,2019991617,-1878736597,1912867473,-1142949818,857477328,-155325856,50013831,29363714,300024091,-2035808541,1484155907,-90758055,1004333753,-282691189,-1388205360,-239498196,2085802171,-560656007,58512665,880509903,-1796897350,-2084782261,-1234038993,-854871870,1405526745,-1970718435,717851327,2086736746,-1081783284,214313895,363269445,-1725208890,348672481,-130333341]},{"sector":3,"length":512,"data":[-2147223402,-1332069493,2008675109,-417980488,863326498,-1950238350,2142376631,-937881329,1611496645,1306800259,-1438610904,1685873756,152466246,1488942358,697406429,-2138607056,-1308406581,1120919585,262354487,969765103,1983147812,-488030431,-130525896,1536760039,-1041319858,-2127916739,615250205,-1209999483,-780267057,-1973486532,-1951113569,-1883030239,-1580929301,-2035190395,-905995061,905285437,275238027,-779208377,2005221923,-222816991,721612289,1984370623,-1070179388,-1075818431,-1573257115,-481618512,-1868546851,329662712,-101066682,1066131737,590538627,1438058626,1693642269,-2128549761,-1899981340,1927856202,152274974,-28367040,-77653534,-2084153860,861801070,1129468252,900648448,-1749105337,-1149293635,998632484,-1914323917,1557729596,-1853544268,1104331216,-933765423,2140238887,288558253,1193717323,6287139,-1817706973,-2032900795,-1224152127,-574617533,-1075968222,-1107537412,-1179304172,-2034863768,-309174864,857325367,1073333493,-1951824502,-706186041,-977069258,-1398762385,-1861639264,-356646268,114517549,-1138711517,295890629,177767458,603748658,1708181079,656916728,1609405862,732777762,1914182051,-1369002627,766955478,631936857,723851545,613724745,-1689910871,-867045107,-1430856781,1165263395,-898023934,-952135171,-1702754934,13456365,509419182,-689079974,-1111807499,1566296342,-164233753,1148418050,-2076435765,-1788220041,840016326,-873631164,-665306990,479260474,-632241102]},{"sector":4,"length":512,"data":[1708213956,-2085439596,-106761323,975974427,246498266,-928433519,583628468,15682769,-44647423,1785967972,-1152136941,-1434392930,1789002393,-908059643,546947763,-2022854098,-1536138917,1445432800,1712921880,-1861729147,1280091151,1870095007,2010497410,1562130849,-1471077796,-1856425965,679128020,-731374568,1625866562,1629346438,50363630,-374762120,-2056117072,1621236640,-1955190294,927450,-1940055666,-800915726,-1111922559,-172713673,-1982557254,720512401,2056431939,-1305554219,1332271225,-25560772,1478646261,-648412936,-1985305815,-1254743983,-667196704,-1654578960,-1092647796,650463367,782666018,45077820,213717106,361492645,-359134688,990799985,802591552,1381101988,-459515226,1541653971,1721546183,-134133148,1795116061,-1658656348,1128692814,838538603,-1441970967,-288455380,-21671630,578615883,-538293014,-57155639,770612734,-1356022623,-1273614356,-685623544,-61221121,1026996819,1553893815,430498278,6332265,4004584,1241571472,-1417541118,1842525901,-596238917,-1212291229,537094361,537264384,1691874752,-679985109,-2130692084,764109015,1612055809,-1143559520,-1321096622,672917164,1081613497,309573675,1908175515,-1146459674,-172205287,211746748,-1229603710,1807214105,-702022718,-392480126,-900261704,-1629697624,30796922,-1171271541,-1359239459,1280777912,447846850,1946792732,-852256334,-1031046357,1268184992,1789966833,717171819,-1276163280,640285475,-343462645,187225706]},{"sector":5,"length":512,"data":[1723230859,-1268401150,793819951,-1393395956,-1690591513,1922542651,-1724875550,-1460895694,1791704772,2133894383,885516665,-1226347460,1923144385,-594347868,-290862989,630977531,237550203,-264179654,-349764174,138464707,-1161087647,-1683629022,718948963,-1655282270,321824745,1242694753,-1158976804,-2067172747,1095258131,1315554373,482830412,-961619309,-1317369030,-1050126315,2056832005,-1681346879,411438094,710541980,-1314888167,-1200874831,-669219071,-1779441198,-2021533024,-854156002,142614407,-2066733678,-1545172348,1216485973,-1429303903,520921518,1411558621,-1025164569,149041835,1649447460,109717001,-1699861235,671736432,-901158750,1654695592,-1434603475,1445694146,747309918,-1954359116,-1391246658,1329803019,247614445,-1578646781,204047114,-1931950543,818590220,-768340765,-726850736,-1920771395,58252342,-1729873778,-331706749,1007610208,-1285743953,1675162684,-386362391,1883213763,-1806687230,275458308,-917960126,1360020368,340045865,1183941721,300184252,1687233096,-1322628590,2026066660,1293100226,-1819467466,888224422,155209645,1213305925,1402258729,-1499118767,-2057743276,2036094613,1649943765,1504249233,-1409592984,-441299366,-109945834,2019399498,1603782121,405352832,1712541844,709583384,-1906102954,1689466433,-1719248492,-160216730,-1985976396,-1469474234,1805305513,-1689859664,-957761427,163606427,-932078521,1939654441,-1656272432,-949364619,-2092009571,-460153305,2057209753,-1626883604]},{"sector":6,"length":512,"data":[-2015759236,905739935,41951213,-2111805422,-1289211382,1212813443,1665959329,512172456,-1994250110,581476902,146492299,-634090333,1015980936,-1868297990,-1320609212,-1914473815,-1452190573,-507366505,889111902,-1253340059,-1679965804,1607803498,-1855255165,961141222,-1360810572,-1173073166,577952731,460287847,-296372104,417855758,-604246082,-71723266,-109093210,435519444,-17971624,-640091462,-1078868390,260484962,-55656468,1266988758,62469019,523038282,-235057218,460428895,1481053023,-1343304940,-228283172,1696005396,-1184501313,1868598191,1689494914,434000122,-1593721107,1472656293,-547593043,1269955807,-19595932,367428786,2143213983,-643324071,-872418355,-427163714,1696773431,-990270574,-969134599,1867168862,-586288929,-417212636,1073678318,-1607549065,-554651698,-325131506,1809432367,-195089766,1263459810,1838942073,-2060292748,998061751,-673304180,78165748,-1294494175,1959190525,-354788357,1046052742,1879011715,-1226627647,-1256655233,1540620255,-731906658,2133411080,1956961509,1380136697,592529767,-1168789005,-482134157,-1490223828,-1671037627,-386187330,-1042902258,-384054466,2112575909,-383986553,-999017659,-365218347,1373387695,2051466879,-383969515,175029657,-1110678349,-194974686,-1661522519,938384920,1844250547,902657497,634411741,-434153674,-932719167,1019583421,-531923759,-67798101,536710637,1071379933,-641011746,413680646,522734707,-1009672261,-209742089,-1060532257]},{"sector":7,"length":512,"data":[-210284449,1771411711,-380234760,1806429048,-8285439,-1988583254,1426005306,-1116827737,-1262858080,-1641921455,-509608607,-1478236546,2092886924,363822668,-1476910053,-894144576,-1776685870,-1200467950,-560025195,-72690582,142643840,-1523847676,-1705853513,-1794282296,-216150961,737536277,1616628946,-135479290,-1769110789,2076691199,-154215867,-1410323242,-178997130,1954288351,-1351663953,-172552898,484482571,1676663223,-896822542,496839210,1973376908,-2126661788,1367023004,-8624961,1334277169,1474685145,-1559859658,2006920067,-838373776,-1351619347,2091872124,-728254707,-1388318961,1577836961,-445335693,-134423141,1073501845,-1359448247,-1101534340,1834137377,268357095,1090083938,1064442862,-1105852242,1552444412,1891167747,-556889698,-673329526,899654919,-1906256665,-88174707,224908832,722634936,-2074285925,-471113520,671619260,1995111217,-1082425761,-918527209,532794082,135812428,403475461,664748051,-1085378498,1115290831,-1165910335,33330974,-1849656027,2134950739,-1041445640,1621079610,-1732299673,-903528855,-1090933145,1068437742,-544085670,1184179900,-743582721,-807929746,-2038826249,64867704,-606970725,86653212,-707049394,2062069520,-683850012,-578954520,-558932067,1470983981,-1978689885,-991674086,219016881,-1959027657,-153126637,-1043145226,-1751161665,-831429668,2027588789,1517085429,-1141406102,-536535481,1978073961,-554500789,-857751818,825206218,1403222127,-42160988,2146412125]},{"sector":8,"length":512,"data":[660138898,1767138719,63379448,1612804897,114285010,-1377866790,1719664123,1213241351,-1125910928,1826550286,1334889605,-824738392,1494037141,-1137984709,-1249674731,1754878051,-697309114,-871802729,-1493399200,28431990,-1317079760,2129947256,2001368977,1517770943,1064877940,1383128077,-543538333,1416427693,-1113983491,-326982167,1700443313,-783729235,-644710650,-499160685,1883657476,687980214,393710323,-399262919,1189316109,689883681,395683279,-1778184228,933057288,-1964814475,1020698374,-1219824754,-1427440934,1111618302,-304936640,2002071650,-276386230,-39518467,-1645420651,-825801473,831320029,-548425422,-1648729352,-376262371,-751432609,-918535042,-883023432,-287088658,443256190,-1426355767,-119555170,521876927,1519365852,-898711969,-589290566,-292934738,58140847,85461891,201912512,-1610416163,-1055320698,-276034166,-1783031158,1378832850,1853539937,902063922,-676744027,-1618546286,-1230711222,388886166,2126144697,-1052038794,-106678400,-1830923856,514798463,-1163145369,-1801998921,-93791079,2147173533,-1718015854,1264426900,404672205,1528873183,-539232296,-450282625,-425351369,72285917,1101233312,1758445531,281312011,-1980579634,-1517686248,1001952569,740142846,-537543137,672682773,-194163616,1084174749,1303422691,-1200494117,1066051128,100928675,-1316734443,2136870744,-576737809,1395991867,863972602,868168671,-432030801,476106442,-884500151,-982094489,-1816484933,1376397204]},{"sector":9,"length":512,"data":[-114972085,2081592042,2059629015,1247306453,-138203994,-1863164061,-1090683971,1980329146,1587376607,-1358040561,-1074950121,1186567550,-1800543777,-101028,1465808753,-1191200867,-966238437,-1558095873,2061490969,-8554033,-2040524589,-2132274180,825334585,-254612720,-176295721,706293803,-1315521098,-351424883,-163670843,1045993077,1962974643,1647635395,2106571673,-919033859,1382901500,754032483,1401136739,-1448030214,-810180529,-1997745374,-138028078,2129856188,1612989060,1878915660,1244511977,35665947,2001418769,490026909,116714224,-315744895,1086239216,-1714034950,-142176194,1880963993,1714927565,-1394904314,-290482269,-1121817223,971370975,1011179665,-36044922,377222325,-1218243328,-2002005548,209520254,-42582273,-1698822433,-831349061,-360733411,-1355780936,92834368,-816092482,224769680,1802156421,-1303094078,224079860,-1592767166,-280444940,-121536213,167642347,-1174386174,-2119574615,-1112803674,-1144540294,-2102286569,1631098298,-746763285,-649150995,-940863889,-835903398,21812020,-1740980187,-397123775,-771618351,1609224892,-7557718,670839719,-328340354,1738681626,-75510081,381660857,-1763888864,-435398514,-591102211,1448525813,801747977,1148897256,-140172264,1143636599,-1811252938,1579291895,175014653,-999666829,-948585694,760270189,-33333655,-892476921,-1355227310,1078110591,-16855671,-248193435,127631994,792131492,-2029134970,-824646952,-1250087114,230618527,1823599313]}],[{"sector":1,"length":512,"data":[1819058392,-710596229,1285730735,1389347262,-1116773278,1051586172,1907663534,-1908916900,1990670591,-1002897688,-537680898,-1081917876,1758033771,1856456913,-661733857,-1546412262,-529570701,-539151204,-1553458453,-1811467549,827537372,-705693426,1927640686,-858820745,331046283,-1677514257,1682569200,1492901710,2076008151,1421891306,-311275592,1566629272,1434922102,1855642193,978009927,2082289600,-1706633492,1240954043,-1372620038,-985798891,1612948371,1674303158,2113914316,-1717461137,1855704211,-581446081,-1850432880,-1962611462,-647838227,-315841446,91599528,1571922837,469716957,-158305093,93171211,-1913881395,-557847630,1840364469,-1691776752,719864958,-1494440701,1050850466,-1170290676,1011771167,-89093105,464631468,1897871394,1819184278,412303627,222371962,1451164195,2099021907,1341517119,1247368543,-1053710388,951090130,253570070,-490660586,754541357,1813974186,-1309653556,-775284306,-733446806,-1149929854,-1401019035,957965231,-852860571,1149004785,-802538641,-1861234856,1901677077,1668376538,-49188393,-749356345,-1145636337,-618965192,-307947892,760870035,129749778,656406453,1041070505,1354384855,-1158453895,-1923443239,1245193311,-990984212,1431692819,-1318595373,-1134044394,81454015,368991734,-1153530262,2105733298,-2043667607,-66832971,907612728,1173091465,-327062899,-1450032088,-1702605295,-909986654,-1152042985,1616268344,260000419,-552064225,1419537157,-1377186024,-151396267]},{"sector":2,"length":512,"data":[-1936456436,-2129587976,-1937807654,2106731949,-4381249,-928056610,-1865236645,-582926035,-1194363139,72229183,-1149641252,1408924333,-1215108598,2143589371,-1103939134,-648045469,-1798120008,1884783871,-426722732,1177106664,1681972325,1202078426,-1422097234,-773576718,-628357905,-356142978,868809709,-2074362055,859631193,-1490369736,-2108047556,-96068120,-1386901562,-1241896933,861235153,-845829521,1000676849,-1719596291,226777584,487505043,-1900705743,-550309307,-1100313908,-940807752,-181230246,-352232359,1573573520,-1455829123,661964871,-1099235288,1724280137,1411292595,1359542161,-378791427,534203117,714614983,2145875032,-647186461,-644152183,-1144875803,-36790819,-1474523681,-1461057594,-893434511,-1379859494,1305462486,-327709271,1500896876,1607688004,737367700,-1820342945,-690023872,-794967052,2061339209,1102003002,-1752186430,-1328022238,455781292,1596467067,2082621418,-879857918,1495795772,-5031670,1903152582,724543457,-843181418,586346239,-194155483,1350142610,-143933461,-388257922,-1606379305,1089365315,401124388,520324180,863397515,-640223360,-1140525705,1724989888,-127643080,-33573038,-119324974,-1280891959,1532196097,-1881428148,667191278,-1366001224,-698893569,1862752292,-575099493,-1837240628,197054001,-123319512,-1426131968,-1346507343,56354542,-958592229,-1077941107,-1658918929,-1360436788,807012854,1567792870,-190877542,635140557,463812050,1146959323,1132285823,498004556]},{"sector":3,"length":512,"data":[-552057481,-1634905537,2123817639,-1091114913,-1496615833,-1056274174,183322683,-191516262,1838753314,-1678735144,-1572361807,-1559302050,790698999,-1546248963,400345005,-12168004,-1325505750,-1627757333,1862184657,-1218367760,1581687551,562969022,1951108823,2079290356,-633878868,416774709,-2111218265,1661012096,-493946932,856441111,1548177576,1037415399,-642197629,1976143789,-1142084629,807692845,-1016164909,-353499218,-2048022749,-994110540,1073216672,-1869682114,-1227024915,5701634,2044495840,-182397507,-1976324316,522678228,-2033954065,1223121804,-869326161,1349681044,923379968,1115098579,-608999937,336595700,2123870546,-644747851,-1112061287,-953440063,1724403291,2014269760,-1202126358,-169398543,-1661309496,452306723,-1416033016,819260302,-243454778,1789977280,-1620010926,133028313,1581316850,-1707457959,1324783236,-919150883,-1674938036,-2025995888,-1540975762,1833401793,937005651,793580651,-1753599456,-605131529,1065295916,-546782473,-1462480186,233223855,449298689,1806753625,1882413260,19062429,1132891470,560395704,-260361625,77438686,428708916,1128096781,-292266533,493577317,266565268,-610136602,-1934406548,-629688031,1222006237,1495357740,570594051,1390663840,345466906,2023933916,-1383923685,-1970554555,641732473,-217215366,-1238481876,-1895386984,177371406,-657231565,-415295053,998310774,579585147,-854813931,445841197,-1745305262,59205862,1665096524,934955933,1784883567]},{"sector":4,"length":512,"data":[-1806674520,1152333453,642141713,-1021204023,-1525364535,-328125219,-1037991336,988602002,1240983246,978116212,-141837451,1049616273,-1984907491,373888410,1408754170,1330933300,1346620915,152022257,1804117927,1389033127,1692727265,-1947306960,-1092556289,1663008439,947586302,-294506476,-269026242,-383263610,-1813004687,-1151928492,-1503178073,913666975,-1941620546,-838838545,-1554944338,1913894099,-2129189318,-1421361918,1827099049,-321720840,1202033277,1351760903,-1252448335,-1862622570,824696624,-1890713225,-1660997379,1845647901,-708826721,1339825111,-1794853558,191463471,891029155,-1340049200,-1174011859,2047046701,-1763071601,-29127682,-858199171,119902144,1866549751,-491845502,1673287571,1644004668,-1558021816,604417546,-955609205,-1743989631,1619601697,2312434,1036385200,-517028463,699246072,-1167570363,-812250493,-1666775622,1886442469,1628263359,1518857980,186868007,-49968650,286652393,-810928769,829207842,-603967506,206964225,-721420882,-53250646,-1013291171,-96353474,1723038408,1217863175,-1455481878,75266719,-297233884,-1452552994,2027395663,-463061092,1780612074,-1720039675,-1186807199,337544903,1013757756,1507949611,1197971297,-1602829752,1101410410,1526537421,-747186986,-1738785863,314507867,2095882431,-446923331,327128966,-31857268,-1400552543,340052300,1971047654,-234928212,936043796,-1379955137,-865270260,904286427,1473074489,165779907,-1318536730,443435931,54469444]},{"sector":5,"length":512,"data":[1541933402,783015945,-584927501,-1082818700,214250928,-929046717,-138740737,1732465136,1648487379,19405109,1876583341,-13374745,-849071575,-1274806409,1820052705,-704806734,778762193,871316531,-543904604,-1637056320,-38350214,-44486911,-708676722,1849607623,-1445986862,-67126099,-50025752,-1167344069,-83313889,-683791567,2127808125,835513153,-1898219295,-176550219,-580944407,-291726605,-386532005,807289495,-1177933225,1837138553,523726741,-1923745805,-937685127,-1577341978,-631220554,844469931,-1413627815,-1608346701,1603975905,1609265285,1286095530,-955425447,1276217158,369574511,1654127526,-940332706,183620507,1702449154,1309601773,-1463082584,651078107,-649116593,768381653,-1483427154,-1460716057,1215049822,-1751625834,1019325337,-1198963363,-397408831,2000371639,1092274731,-1991954876,-2124255020,-668715870,475091424,-131894322,-125029350,233209535,1107852827,-370583387,1871408547,1106235774,234809793,-1681342353,1829268749,-272207336,-654076368,1255906222,-2084806673,-1337026978,-1161909689,-37790907,2049694615,1715600400,-534628821,1830280972,838432879,-384722563,-289480102,-616977415,-507875160,297241540,-1344412773,1875349922,-567292478,-1125193233,-263346191,-832788978,-1698727701,934142454,800555253,-449236720,1698397666,1550929382,-583755122,-308218411,1976281558,-655714113,-1200588362,-822958594,1734943889,-722500413,-206577673,629464762,-1067721465,-88475435,-465152895]},{"sector":6,"length":512,"data":[704275630,-134001701,1541208774,-2015409261,-604978563,774792375,802378527,1735063411,-648502612,250423261,-2038375661,2105671865,1546107906,-1277873333,1138085391,-1319141736,-588887793,526397598,543539392,-858473343,-705195618,1283584099,1193902553,-1864287321,134447381,-359160695,-1216647439,183184079,1444153906,-1066031697,1862657888,1571709806,-1495745571,-1977892660,-1493380498,412058649,-2121751020,-1920860964,114878607,1253673108,612548289,-621083475,-1681625870,570558830,870163732,-851923950,1083940392,513804981,818828893,-1411689712,-1381639828,-104907456,-1694453812,1578834218,1192613106,1372710239,1068358768,-2142314550,783986278,-784599114,-2124141835,386022839,-1681699798,793376733,894012684,-1523556095,2080066131,81192345,1107475464,840538077,-471154948,-249745310,-1861948922,913327158,1318131452,216043219,-2056948264,810385337,1120449135,769934795,1414665100,719606301,304172059,1634408189,1457690932,-604202782,2097304469,443603610,-493959366,-1681030021,1577535218,773940403,-1322776011,1414538386,1143115074,1572040596,1901854758,524156726,950975265,370838345,1837862544,2070260658,103569059,-1035202164,1551671356,-626290324,-2033882461,-408589725,-1153970650,1052798830,1470665210,-1988690543,-1113478121,-1088433902,-652100142,906086966,1758430967,720751149,-736866617,-1854613988,-1412786182,2105917568,1480852748,1807735001,487734644,-1534518603,-272188560,41308954]},{"sector":7,"length":512,"data":[-1626354706,1479757557,756765935,1426135531,-1808742075,-1897807062,-1255459635,-710039106,1490817284,-579968686,691343800,1039548819,744222415,1463739047,1463894826,1879836699,-698937858,1588714251,-515024965,-375416132,-579630834,-275871534,36777479,-879666409,762072968,-1249091546,356445217,-375656636,1560000645,212756343,-1269960768,-935485750,1093844008,1108274959,822922941,-577941722,1441435183,2052375353,-1612069751,-110907753,-118564453,1601484707,-234092969,-667355621,1898722865,997289630,2123599953,-506812681,1956016733,-1767108665,-276300751,2034760071,-110090505,-1764976491,125004346,539767871,-2013235390,-329098635,-1299801496,-592768095,176859902,-571208223,1057488873,3140495,430516860,597881831,196637336,-639023015,-1307227878,-1353374624,-2089471899,2137335610,792286113,982443561,-1434801751,-1653760370,-1500098939,1332840856,1846459731,-1856875045,1869945912,1431461405,3120085,1583504167,974550610,211009913,994930848,-1275020311,-245125840,560181458,930042133,-163556770,1761749675,-2046855821,-182710828,-1206146586,319896087,1578119752,-1073692846,-235912466,263536070,-667108164,1100825381,1185361941,-1197199926,-733588627,492084347,1977412347,4140054,10633112,-1353822141,-994016562,1091297450,-744397896,111779138,-1526719823,-1525862887,1404496442,-1340155026,2003921830,-197572518,23740848,811132114,-911364914,225300693,366609782,-163793944,1810592746]},{"sector":8,"length":512,"data":[1862446785,-1032868483,-1881221502,1214694383,-1408238146,257446426,-946667520,1122955242,-348141179,387964648,2109951875,-740229247,-1401889796,-2123253819,-1083193983,-1890614518,-707164292,371282147,25258373,1740387280,-1633145758,838161501,-1427572053,-89526022,-1621786956,1579592377,-1540286448,-1409417920,1251290371,325767342,-678982491,-355065864,-1225844308,-31662004,1587414708,324105689,1968536175,-135310313,815274380,-1416055369,-917587218,377172851,1256033194,1079002719,631722296,1788646798,238445550,-1515745932,-1421716378,-782755127,-800489111,1089892788,1017188894,1426690200,915377488,501408870,-132768331,-2134837745,1341848296,646977268,-2142702749,1490060014,-977628336,103814697,-1847658424,266295819,-1299857563,707564842,-821361771,-242219448,1810482521,-975242287,377655808,-495067395,-1403601365,-1608327697,730164077,-236010136,-1290270679,-698543159,730164701,230749290,435078417,354626133,716839764,129796632,777586625,1402926062,-1461292700,-1486288068,2425311,201093778,-216694076,-1518391285,810724545,844470944,-1497473106,-1881423828,-544049809,1059861523,-2111544775,1681514366,1404914790,-654058327,1504082932,-1476250682,-975243066,308458518,-1031824542,-1262348396,1422467884,-134013616,-956760739,-1382850071,209243571,199444037,-1238537367,1802387875,-1957003279,-1609036550,-1350332234,-2007482315,332001280,1215846638,37033266,-1668720623,2062945049,716474459]},{"sector":9,"length":512,"data":[33441087,-96026616,225979372,-1533312482,-1384251971,2007712541,1434500396,331743311,-1482381487,-1372065457,1564628984,-10413430,1799136945,597811386,60013535,-774201166,809156949,53570907,393349052,1713336704,-1278660471,2130369449,899724884,-86116984,-1911366139,-622319544,-474687014,-586902832,1841631502,9365985,-385884172,404652096,-1772579835,-1852553355,1215475641,599512892,1686098270,-983953383,1263222239,116154939,-1875174857,-2027525326,-1073983328,734315393,1324345067,-460960660,422925473,-1713504843,417466657,-40186870,478151168,474775794,-2142170308,-1279243705,-1791225238,-360542006,-358057024,-577964866,13047025,1765839653,1516545873,-519934301,1937247872,-4258584,12035649,-130914216,-1057225933,-432124344,805437561,-2046442176,-1811841011,-2131815936,904972932,694081665,1073474851,420552107,1898450272,1397641319,-1707037950,-1876811581,886344360,-1242358767,33619450,1898040200,-828200591,-1526174947,143013904,-1785687163,-2000346505,77278234,-167677992,-193231203,581886383,709604624,-1760464253,1092135496,-2080064503,1505414707,-1400771861,-1874831028,139122681,826067502,-1926695653,-434655225,1346115976,512118886,919295937,1661947031,420502671,-1841049285,-1849655715,-130010964,17123419,-1155528448,1026075734,47454767,494569032,-1325390760,-836295558,309150226,-1287602427,-392853850,-1591557985,-2093052440,1368625298,34846241,759168023,334958459]}]],[[{"sector":1,"length":512,"data":[-1700016368,1777835553,-928216955,1820938906,2068197955,-2018581434,1373263143,-1747329023,374427416,-170635085,-511703037,1623090156,430132239,1965466040,-1404170431,-160742408,472357017,1466377056,-130132458,-879688704,-2050459101,-1387401060,119998800,975207767,268949864,-1520591780,-1837263182,2029190687,-1421044080,-460692811,-457937916,726834260,-912235044,-634831345,290437676,1492175312,211131729,1084738710,1406790308,-1137242615,-1327721708,-1116708894,-1464159584,1896778039,-1007989792,1533725732,722892455,1811933696,-273933477,-931807377,1735336236,1992786153,2017204272,503959684,1028256245,-1951275948,-291980819,-1085409809,-967195285,1729444084,-1264750927,-4577139,129885249,311232657,689921366,1865300851,112797416,-838876020,760096530,-1711308834,-504139085,1627406557,1229898068,1069727300,-967524336,-831523031,-1881322185,2075849692,2118643285,1913513723,-1103032255,-489227982,-93377863,-1418890674,784650214,1839182934,-1971197093,-704568155,-178553981,1420433616,-63909226,979322219,1799954755,-315444313,1455778299,1604732741,-1202586249,-1967773689,284175487,-152077264,1397721128,-2063295281,-297631172,-1568459851,-1942970235,2034251879,-1218915656,-170165842,2111797215,-574001801,2127438201,658102172,507660089,655226479,-1640831303,225276693,-303661928,-1300106103,-607342731,1551056709,-1411997758,1747392578,1924969453,1628336892,552095788,740559428,919782331,593799832]},{"sector":2,"length":512,"data":[685146831,31992976,55073999,-1493486962,1911270870,-136984261,-248168338,-766093209,289134333,1635531661,17214763,1781419211,-1983224060,-2010185443,748044520,1439695058,335357130,-1066335706,-672986495,868402497,1705821543,94437773,1323584005,2113355926,1583645878,245557499,-451011153,676864491,-380359664,-1329131498,957101328,-498923681,-155910334,-154642679,821125360,-1880966737,724244342,-2003107676,36793505,-2022850549,-143867419,184269067,-2080457807,-256001042,-1626862084,-821031333,-1548958834,-528993855,-1820783840,1229567491,-687774683,392759109,63045314,-2112191309,1370985770,-769902480,1270123316,1479592809,136520769,890375006,-2092274865,-1374060062,1493136802,-1710765391,-1115222673,-669508848,-1849792067,726227674,1746878642,1116738414,1122564971,-148160497,20941865,211437626,-373053522,-1572152866,-1467720478,426848517,1135507546,1096130600,1483355519,277702913,-497815978,1652297852,1326310429,-605868041,1434981618,-185311522,-506481822,-1953582856,-1826861177,-217352377,1689326150,1036697660,1431297197,-1064566279,-1194760911,-1442988612,-1320992779,1285930188,2102433570,-265085313,-1745985784,15729856,369680402,1084860590,2071584846,-316142593,1853625922,1773823487,202150028,444245037,-127015394,1199233403,1055055903,308446511,308974729,1678507297,-461220039,2060735631,-1466328483,1009597043,-599208585,787439312,371724432,152686238,-523657745,1937935932]},{"sector":3,"length":512,"data":[1250938600,-1089317984,604845382,-231871242,147469648,701954208,-968825175,-1678791188,1935342296,-1103571755,932521629,1386647934,-794474524,-551800059,520231951,-1223555344,-1878947559,1363334904,-811197741,722534844,-24170652,-831818140,2139367798,996000645,-2039835947,-1705076932,-37793986,1996317730,-1398932948,-1777257509,-1631779787,1846489449,-1993252966,2070520079,-271646732,885400157,683125471,-1239926288,-1389472385,1431321135,324092406,-670161332,-24226757,-512367889,1093543413,-1102907181,1244155442,-235199780,-2100384027,636346411,-1620202150,273348602,-2011130204,1406612560,282582561,-661552403,1754116684,-815218926,423734051,16469337,-982293102,810038184,349332926,-1310661916,720375813,432213237,1354537025,-993077265,-1222744680,-766220437,-1876065614,-1588237309,-1724747756,-1933298144,-2058516693,-871552781,-1793540741,2105705434,-933340103,-590949983,668751313,-1480371284,-1401536585,-503378519,2137740120,-175462863,870308578,999821014,16741891,1484816390,-181769377,946547487,-406907870,145770936,-100178020,-1448054676,428348032,208904265,-556002406,-1805700586,491565444,-1677540280,1307877107,-859234479,-214698708,1317867712,-616134400,-2136421201,1212955426,1149086662,-1729709039,-1158291040,1847264736,-1985975417,1922115325,-2019280907,296744265,-39001001,520056773,1788520323,1884661434,206577800,2132205157,-1993294337,-1813926262,-1787474573,52519206,-734964428]},{"sector":4,"length":512,"data":[1702018205,1348482324,-476610480,816286727,-404979612,-869656410,-134440778,-565745322,68408042,1561128848,1058960273,-1083889295,1876103789,-745331529,162070979,-1234023737,208376152,-1668944875,-1578339836,2003068190,739835739,-2094219741,596053348,-670980164,-1785807858,976016420,-1519510408,1336865820,1912535261,705396288,46624207,272158389,-692711899,-1184550984,-1122799171,-1340489323,1210673594,213405752,-1189545875,-2011080603,1205946332,413103117,1495632510,537493564,-961665307,-986337827,422386470,812338539,-1926064695,-1287575413,401964548,444335237,1802995809,-2039183728,-242053839,-603131725,1571776967,-1542765794,-319286790,2119954467,-1313811784,-1838357382,-608594338,1921727263,-2069963115,1038821973,1724582409,-1353586872,1515972977,1371065203,749780978,-2044546149,-322215803,1924295138,1687635965,1658561203,-520010157,1057421834,-1054284574,-2033881441,-1646219686,-2008879499,-939705720,-267838938,-2099455651,-372334833,2100943027,-1469736949,40022939,-1925842271,1966888987,1407939946,-1006928393,-224049082,1806993979,2129472847,271578732,1428315847,-1862142634,-2099196529,-2132880438,-1928265142,-1462421563,1087438712,1297356289,38470127,1077775701,369972267,-884868351,-1160609793,1612666630,-58066540,-1876434528,-1088966080,-1648424395,-1851291182,972070241,1750161560,-1250541323,1147291992,-1855796771,-716347924,-2007326464,1556439454,-1536441486,1319860445,1170838410,-179563632]},{"sector":5,"length":512,"data":[-1381924762,1969769845,2035896976,-154653253,1511863272,-51696131,1667736885,871280880,-321593172,-851889761,1208090372,108126339,182862272,1013211075,-1844686391,1225233051,306308303,-738063683,-2000632545,1767916117,-871079822,-326718146,-482029779,1836016742,-260521862,684698313,956753894,236631602,-194884528,1800383488,-973707757,-688520500,1082334818,-2113944213,17359428,1480303653,419370107,-175358940,-61804721,-1627510473,52141590,-896188480,-1650584043,1487872003,-17569740,1545028594,1282699960,450950559,403292218,-1546735842,1736815839,-319692792,-2025026115,1281216085,1798866719,-1404785347,371258197,-487714263,2053576981,400641803,-652869444,-2122292748,437910537,1328431896,1595170701,1716769129,-791190747,-1934236734,1540298380,-131474969,-1738406871,562438433,785452101,-2121392369,746988109,1830897163,1408150211,-1776439788,757172019,-1524679420,-942826954,-1013459331,-1758528519,962863213,-39847059,1072519794,-304450817,528704127,-1981749771,1694837063,-1977293412,754000029,-1205996258,1938026067,378424759,-1786779975,-514719610,-1346351403,2108428421,1792770896,-1387665928,261750924,-2073698675,-792718508,-2144782848,1544585647,1117705238,1116762516,5005716,748819882,142998236,-553321929,1481768251,-787668107,-635403380,547914024,1344938401,-759937264,406376183,1694359804,-643003116,-1547877367,781166272,-1859769477,-1638124451,1691462820,1676342376,668067875]},{"sector":6,"length":512,"data":[-1728939056,1497642177,-267098094,-615098175,915841857,-1989033534,-1743968745,1222728316,275589835,-1492161238,1832453325,-1922276054,-1476442311,-416898763,-1420852027,-704477518,-699106134,-394644194,-1756946285,26073445,852176336,-605978449,-1073189710,-1691568576,1485058049,403500438,181087590,-1459730417,-1724595899,-864870580,184245415,-592689117,-1402815490,850547888,-1324762226,-1676186965,1041727372,1446812210,1163943292,1954048984,-1973672887,1052411512,-915492144,-1716939976,572487361,-1639534007,-246498488,-1139919720,-465151092,-1099654504,-1690156857,-1746494090,1295887938,684230547,-2071910122,763387192,1510838688,814430309,-435695862,-576798425,1485639239,1155581819,1680590502,-100283499,200032064,-826932684,-1357827089,-584836885,1094430246,1209147266,1738879486,1946211096,1170727110,213740016,-1281014193,1770877929,1879097263,926849772,1283283007,-542727649,-746584577,-1293424193,709198975,886397432,-1018243859,1026721760,-419920547,1477128039,-1019563507,-2018029899,-178029065,-1506175680,-114818996,206406113,1941291240,-1638595049,-1896279428,227815289,1712482057,10811754,1707841551,215332893,-1646299440,-1695320009,-1192747116,-1799381453,1135983156,-668983654,253720487,1415538807,819417777,-128981707,282266999,-1070340486,1347558830,1539601493,31982972,-694692912,738523214,-1777663755,-110874021,-595065248,-84820889,-1518404825,1817251703,378442543,-660671522,-463722475]},{"sector":7,"length":512,"data":[-1380762063,1719163895,-1312966710,-1050830924,111736716,-40992237,-520212308,851480641,113477282,1422460685,218809218,-1007810937,-97873568,2004775273,-193518348,2028531370,-289707794,1408143848,2117190747,651351032,-301648381,-774098968,-1939280151,325140772,-1635905660,1791468553,946501688,799752752,81316691,-1473309878,-1824567316,-44869040,-942493540,1496627090,-313081977,-802780864,-106439529,1394480654,-893147687,1031476787,1199725950,1550847622,1031394000,-78534472,1709621273,-264333910,138088064,-2110688084,1513368450,-1932762592,243774901,-2050624458,697318975,1910915922,-1642416165,743547650,-1102708071,1946230424,-1157029921,240785259,-362269409,-1804963893,1481915960,1494423845,164680947,303564499,313286808,539505656,-334304526,-2136285438,634899439,-1271815240,1288383503,-367329435,136422461,698627574,1201212748,-768299880,1714197476,32495889,1094978028,-2093940158,2110947707,204412884,-232297830,-794623685,439361309,1995511818,-1934145460,199534388,-1764526728,147568409,1399229524,-1453064130,-1620000644,-65349071,-21046648,-959536590,-1561226855,-366752634,-2139004423,-113294880,-1889635607,-313042984,1444539460,675881463,1547112538,14012185,1663060677,237351158,305094116,588557151,-1600379288,-1703324320,283701720,48695070,10958927,-672841245,-648857616,155049476,312751914,-649681174,-6141114,-142946188,645185113,-327964847,1511158705,-733421783]},{"sector":8,"length":512,"data":[-1036811133,489579341,1458643308,1445594554,805661076,451586304,1949684582,1451214118,356061169,2070945939,890802736,262561089,-1767596823,-607202224,7558179,1871960489,-1310102613,-622054849,-1511759335,63910472,-2088676078,1777393675,688456397,1049557158,1092643823,429789702,824209289,-484367562,-2071151662,-862434420,1769072108,-1251020333,1990608651,1306797086,-449192105,304044561,-1398537686,-1970732511,1793247459,-1888860296,1651708746,-1696569744,1652470301,1075781125,-1529307008,132840317,-136016337,-2129719673,676338778,443913922,-258796154,1787749036,1956094670,-1334121503,989849043,158634913,1025317277,-1177492384,-1356698933,-1541327847,-41972351,-350183882,114367061,-394462191,725174159,449593306,1235790519,-141404586,1935684107,-773633614,-88840398,-1390656397,167125921,-164199307,-56499168,-791665951,1147717896,1730203860,1751660084,1916036988,-82181485,-688666996,1758111301,-809697228,-1767573559,-1812144193,709620042,1195514867,-528048849,1541764291,2130369439,41946413,-1739843978,-816174769,109728239,2132019736,2083842023,1904126678,-64302913,-658516076,-130989947,-1195402455,-21938006,-1946178733,1472529117,804148543,1579684078,401651007,-41286321,-1946317489,202639387,1606527614,1621121052,-25799691,1157762530,-18001943,336073495,2119836536,-2063496836,-198533149,672622127,-705347640,-1605505953,-559415400,-2126658050,-757601918,1861172977,-1076183518]},{"sector":9,"length":512,"data":[1511438006,964331709,-1476965205,-410214277,259078605,-834198794,-1019144260,2045501672,-954240433,1080884746,1587327715,220282782,-126628772,-1556930098,1000008357,-1649425133,-833478872,-1950310515,1873474456,680634168,-74763178,-1736758204,1271819836,-976974112,-2089470116,1557473082,635483037,1373424581,-1435865433,1278010014,190520443,513275322,-671454513,-1605464626,1915030142,1084136777,-1035576990,-1532227298,-265309310,-309820382,1417448636,-314700502,-1391476663,1981437710,166942832,-1422619632,-1304194809,-147411744,-1608267828,-829400015,831095030,-319617827,1899506641,723257639,-116129809,-1331277788,900620335,-1473546070,373806492,1766841690,-615273512,-353504139,1829356214,-1731147270,-887032354,-1659887532,-1706161470,101249541,664249222,-617460004,705056244,1694710172,400719068,864302008,-712621332,-1350613038,49875212,-807202568,-2088377430,429796480,-2135493218,-1956014730,1755122973,1627425446,-2130950823,-950553965,-1512512098,-266112158,990420351,-169658267,902414755,-1625344770,-402497247,267266240,-2146426206,422907010,640877159,1741461941,-1932583528,128294141,135762479,-1285033473,-285963535,1443668168,-730000129,1034592154,1012189452,-1889410118,-1789969393,1534364181,-1119321965,-1062058890,1038976991,1592478904,-802583230,1642899865,-1747601469,934240074,1324939387,-915278983,-1341615417,-1058816364,-128761716,806604238,-1685430041,-958414300,-248449198,266282259]}],[{"sector":1,"length":512,"data":[1204088154,-1220277709,100264174,-1806759081,1103736130,1091835181,1360685328,-555979968,2010628657,-20284770,695379778,-297959619,-373589426,847650996,819584803,-345666783,-917656514,-275580718,1722783692,1787713713,-124026334,-1055881330,72172146,154309617,710119736,1494321442,-1266906094,-366702806,612969741,1477593067,51340245,-969352837,-878469400,-1621773678,-1233467070,-1658377020,-436778993,-1200153029,1150690056,-1163295210,376341703,1753309574,1823726855,-271338105,1677334597,-1597965334,-172994978,165325160,-48913596,1830433191,-1848838430,994865329,-1077646854,-930059093,-397882205,-1807550884,-394063511,2119063386,-984270917,252229709,-701567360,1785730640,2029906709,489597859,-380500885,1147964547,1273567433,-346430723,1220226511,-722523475,-883088949,-1854862930,-1310028073,1783982375,1922936816,605802417,-1168147788,1024761618,1621817843,-632404166,-182178451,-793738965,-414662137,1709458606,-2137573597,754558453,-1588811879,-1935283755,1712073961,1955790223,1587716295,928127433,728362796,2120308897,-1778093035,-1828677895,632768873,-759762974,-779690253,-1369547473,1617308024,146026468,288124742,-1392321722,2055296508,649068450,-206131813,-715580727,448221069,1707303931,1979720305,-1100874333,-129523758,-789961389,1738902250,-86492562,865716565,-415503891,-1538706143,671793779,818123445,1021880813,2116209294,-267189986,-106755575,1101186930,-1441105109,140262676]},{"sector":2,"length":512,"data":[-177351442,1021508894,-1611360823,1216349690,-1072628205,21494496,-1617706432,-434239257,-34624471,-1514348954,-60892027,-2052592924,-1945370448,1954285870,-2130462872,-1149895164,-1965915945,450506325,-1901977066,1814231740,-195789035,24238762,218223498,-1574813255,2103986635,442768218,219966660,-1594952919,-61583368,-290717999,-1612329777,-1008723463,-1805544646,-1250647005,1444752867,-738632325,1800379199,-2141870558,921497332,-1014519358,-999837582,563288946,1507636974,19789948,-241121386,-909776766,1089494248,-1301840200,1718771703,-1443181104,471412058,-191096477,196076434,-1583090584,582464198,-220075550,162617943,-1000401638,360345604,-2010140494,2005904724,1647618014,1443111620,-995275105,1577252787,784617708,500166112,-796614637,-456568824,-1215805791,2037223054,-1985161248,-1433934748,-1017757320,-794809668,-1805439908,178954593,-1937217056,1571604485,-719673178,6461167,-1971052988,-1212285909,-682313415,-726566508,-130262154,1091548027,444705414,-491843884,-1137214275,-1383178425,-2135228465,-1270060953,-1977422901,1827266695,69942263,-696346721,-297361845,2105314065,452281513,114266678,719243510,1888710092,-1022368470,-1007736844,321479314,-1829386998,-1120631745,-680701140,-1805034152,1604863892,602440672,1949024711,1549800184,1499134928,-318874146,852033182,854731314,712942770,-355704882,46890479,-211989744,2079863575,-41819016,278782884,-859176429,1673883122,-1411383766]},{"sector":3,"length":512,"data":[862004440,1391090004,651382478,-58804696,1032682103,-509988334,-838703103,2017732138,1691352563,-1935977911,1699322622,-1489575692,-218987931,2079938327,1939282341,824069909,-1304567013,-1760037535,-946815490,-511918132,-1198004050,-496127446,-2062604104,822655146,515384779,-330380643,-164223815,-1970648594,2139789311,7332497,-427290989,415337541,-1858900240,-855989149,259424876,-633105376,-684023676,-1914763836,814092057,1374271604,-306115776,-1224644402,-963718680,-169868930,1811920171,1688817664,1019083858,884906221,-1809191444,-160434010,-262381088,-1258602328,725860748,516357672,738794584,-672873589,166994841,4143254,-609806423,-704262238,812064376,-468844442,589430907,-883974060,1355370123,1938793869,134886095,-1429324510,1767229031,1789132538,-885533739,-1599410477,1366286981,1158218748,725667282,-1400800061,766727577,-2094957908,-577824377,563149486,-1986926298,-2029545266,-746120712,1482286432,962431753,1107693925,178873628,-874021799,-1915379307,1529859684,-217281414,2043516265,-1258620054,-1740468976,805443559,919546500,-467541773,-1443191624,-1242488818,1066510474,-384786771,-250556911,-1084898418,584473364,1269806894,-589282258,-123358635,1633311956,1899689199,-153531629,-2123960422,-472739373,-529619924,156186536,-635580833,-1656967447,-1810300055,-859276209,994427960,-1749772867,1466727877,1769238722,-974399465,-1917971437,-681867657,-1642303017,212647357,550814131]},{"sector":4,"length":512,"data":[-1538895447,874798464,337070485,-945519030,2021671042,795179141,-51877324,-1272673612,-576635891,-1268214096,1488510184,-763077926,-1008596416,-1012266400,-310431903,-1945807311,-59120423,850349538,851264294,-1073484856,-1883006187,-2139221264,-381808637,-584721370,-690714152,163201610,-1840372953,1085200120,-1574894917,623143123,1230715069,-981694124,617828055,1409635056,363014592,212665947,1016673227,1957841043,719594747,-1810313317,-92709453,-1801087843,1534562296,1549382755,-630511166,608763917,617921543,-387954905,-1249819054,1379694619,-1439581757,-1385359356,-1281549871,308321314,-377716966,1084328473,-1642464142,-1868144165,545583129,-1806299598,537202234,-800988913,-622881085,1462713635,1164113311,-26739967,152894927,-1224458607,148639934,1119374856,-1842872102,1191188095,1599621188,-1440127104,443979315,-1470841807,-1071360857,1381204618,-1596590855,949157155,1403131918,1444761898,576470865,-405127516,1833483525,2130875046,-191637254,2103820511,1762348609,-56729321,1655738359,162174256,1319681962,-82943528,106235312,1243755176,597944883,-1439763934,-1522541725,213471127,-577119499,-271352699,1586505902,-998938882,1675591448,1395911207,-432488364,-1611193907,1420376440,-1229088646,-467486048,1424427020,-1789928789,-518888430,1074256124,130261905,-1871439929,-994709292,1280401459,1363227180,260848077,1511351603,1549868605,1796204284,1131985132,16680505,143953040,1879958931]},{"sector":5,"length":512,"data":[-1844583831,-1212479919,1918520906,-1942437278,-884898225,-213512726,-1824490357,-1040964798,1343029078,-799529109,57268580,102077856,-1780089672,-495073335,288338000,1055678617,-2028152815,1807747580,602780372,321349283,-650558183,-1632596733,884082113,-1571064615,-814419330,-1909245196,-1209469873,-2025492366,577343416,1130476312,-144971538,-2092676839,936120106,-1442086806,-1832608899,836435040,2004384081,-1782039797,1419524602,-1015646907,2089681680,-962387326,348500669,1486300727,1432509621,1248219679,-778249195,822031817,-596505444,734029545,1413314817,959496500,973373718,-831447032,208961307,-396423599,534204318,-830257765,-1808398406,21369921,-2018383603,791940254,-1568092508,144730491,2081935944,2117225496,-66233901,-985791532,-59363354,-978794161,-268600832,591052525,-1640234709,1044905658,-2110091775,1870616547,-672787372,-1717217597,1361058130,1178604255,201496212,1638137889,-2030293491,-1532800058,-40304371,1815688159,-1779942191,-1054226946,-1142952472,1731266544,-1049460990,917668633,-1365760697,-1595345098,-1159509651,1291890441,-1861160175,1548279083,1533305082,-1301954357,776593339,-654280040,1034902528,-832245480,220731298,2015017122,-629329098,-1209101558,1014547662,1548189510,21838112,1742712960,-512068526,-1553020286,-193788993,-1360537142,-2041314861,1553944201,-97097392,1417726971,98266663,1953736001,-1971148358,326628426,2091389446,94622626,1691477653,-728857137]},{"sector":6,"length":512,"data":[-229097469,-1890678551,-1942702041,-768056538,-1691484160,182965154,-456014546,1399643654,188249373,-2050968053,1755470379,1601543516,-709180695,-1030759734,-1625112639,1150247438,-810371103,-1055012632,-599421804,1156262625,-1108244793,1594549263,-1282820152,1008029637,-575475845,-1786757248,492134436,784297648,-1328993108,249703526,360835487,984487368,-1380099983,1131035499,-1836419156,360542815,1825822591,-539687452,2091675705,1958068781,145968542,-295104338,-2083954044,-647743299,1858241200,-1392886162,-1333195533,81945067,-1506795825,211976563,1188004938,-129045079,-1911219664,-1001751886,-1054097434,-1734946988,-1437038818,-1222002367,1804037562,2063491620,303461814,1253522560,-1821052371,-768422434,-1401286646,379885218,70157149,-1461261447,1808908975,1332910750,-1868550853,-1401812560,108815965,550990830,865583220,-716466707,484339537,1931543368,1106437008,843380232,277667656,690679223,-2053317534,-1904913606,2033483793,-2130898032,136805124,1633793858,1136672062,24958252,1948296435,-948727725,-1933052379,-1289698928,-902162826,-936791040,1720905321,902300144,-198287032,-281578936,-1876078795,-1472133332,-936352479,899248865,478005081,1267028829,1307230479,1121229999,-2061640606,11864,-1491012181,1052022576,-1368304113,-506934991,517259934,573732313,572931472,-423678624,105330924,-1589711722,-791063337,1900604851,-1552505125,1435543383,2116745528,240517120,-404407890,721600712]},{"sector":7,"length":512,"data":[-632525891,-685183263,444600137,-1453279447,-1967128561,988925311,1347083847,783898252,931516349,-300349251,-677798823,-1110791852,1196752266,1523058105,-441196600,2039980974,-1349843958,-1205990087,125736321,-444987098,-1502369334,-360142563,795991781,-790803592,24358323,-1281690165,977740793,-1595346441,-2012298422,-611902276,-1312769418,-1409285720,-197641958,-1062194269,638015914,-684446665,-2130589565,688129693,1493179325,504045930,-521990816,-347267956,-1185370101,1426532175,29218006,150107806,-1331631416,-521934480,1924243292,1411186335,1672433641,630096161,-1524629479,1014292711,-1329572184,1460314351,-2059733721,-360136588,60287588,-1197662780,1453154539,1309545294,-1641752224,-493682895,-1073982786,-2047395867,82582186,943377712,-758591063,-1430639078,-535580566,2095755074,-1619915289,-1278477064,-293281050,1034070627,250442931,1153886907,1270525512,-1372662255,855771195,-1476494943,-563279816,68349567,883304222,-1488908173,-44265389,-1661408169,584062755,81323707,-144655423,183770187,-1854901813,1739560901,-922027272,675065871,-1777374599,-1298969332,-781553061,1881766630,1534337921,2034323374,-1457780485,-854911217,1095255861,-235032459,-1754574981,-1878735151,-656347225,-897770585,2146898601,-1780696849,2081436601,-1230272940,-1743580353,832061169,377550507,392285300,2008870608,803305080,-2147053279,-276885790,332242911,-1593905752,-8651018,834198275,833626215,2008577982]},{"sector":8,"length":512,"data":[-140561399,221740695,-625727495,-18074438,1261777464,1910716128,1477609662,351238645,-1381672853,1394365839,-1311089047,1387284154,883702946,-1251989332,-1897217890,-309906263,-1407859368,-663140538,-766324852,-191585071,-100264057,-916794383,1208020136,-1603800948,-2044454200,-2097763458,76182729,1017358030,-1060139156,10113117,-1840704876,1242072297,-449011036,-622291938,-1039728831,-821543547,1025680310,579401204,-43510503,1489787481,101453917,1714394696,550678618,1011353353,554323746,-1610071576,-35515994,2102408134,1284522527,889179731,-1612120241,801921922,-1992600069,716447513,1473079356,-425970992,1650004489,-1517890128,-74820140,-1476363521,1450211924,515853144,-1704092012,-753805336,-1274408316,1007193512,1062898665,52072356,-245502350,-1484000160,2087315508,1393779192,798616912,-1539009445,-355428163,1196546277,-1460721938,1347927404,-148164387,977002160,-64032086,-1804181026,-1953154255,-23983160,68473917,-313618358,1759521350,1942716585,1333442639,-1107531696,417393360,1381448328,-1215688841,1397272447,96544787,77287731,692337516,-1335121880,-179743311,-38918085,1431109821,-669579616,1881467570,1994597915,-1565061865,1086499402,749405398,1295365523,-1264971747,1974491982,391554036,-194736908,-797138286,1965642075,-45025268,664741076,-1475052480,-1001355202,1717536779,543743760,-1507836794,1298082301,-1006483086,-820976313,113124660,557274146,-55364353,797380661]},{"sector":9,"length":512,"data":[1584468069,-1635145256,-1659359390,296267341,-91810028,-1578850662,-2139993643,1002932098,-410841732,-2043739780,1995768038,-255926572,1116512566,314829427,1423940062,-1333099840,-999738475,1087750746,1110711784,38632291,1529926840,-1967288820,2003105807,-1445709894,77698060,24798288,-1906913558,-1191903152,779024996,4738368,1186862005,1837476289,-406026127,389170589,820251809,-1882076693,-1618794570,895086118,-1994967183,-1206008740,772763977,69033330,-580629490,-1505811584,759896891,378090879,-1422097823,1404101822,-503921693,-911010877,-433874558,-1151208981,1340112058,720391424,-1199780450,380112472,1865761068,-505074174,-1471244117,-1253659306,-1758495505,1168366241,-1950760247,-1276088166,-274980055,1225319030,-1893178616,-1654315580,2140427408,-728339535,-1457467579,1296632176,1309388610,-1809866819,1680451789,1199788383,1589546930,-1502437228,2132540764,1692442772,-1442865115,-546209976,-2035562561,672918561,-97990084,-852442979,221356428,-1329497149,1534392333,2092331969,-1503307988,1836165683,-492729739,-1044322241,-29820495,-1234608261,-505657412,1767842713,-61908871,553775665,138821672,-827012830,-1933516536,-973195611,-1357168653,804020640,-97250714,-28560282,209525741,-225709547,484805340,1457378418,1314502284,574786334,400782750,-1927797159,1681450738,-740018761,-583088547,433247173,422053988,-276993013,813212950,510771998,336490012,1881828698,791473544,749924907]}]],[[{"sector":1,"length":512,"data":[-327419888,-1388322349,777888280,803506612,-1826626887,-1728360869,1693617398,-1753192068,389856789,-7632132,-464698146,1911704599,-1218500818,1376791141,-337398620,745038079,943735627,274676237,-1158189445,-299884341,-1255767346,-1607137957,-1377316835,167861346,1763070453,-1653920667,-3238577,-1292248015,-2069490145,-2133575850,1610859638,1506229085,1820330497,-1629253420,1200829215,1342160822,1366159056,-1175266653,2139053953,1287401396,-1350333334,130664373,1148096447,-1039643237,-1230904285,263627342,1558465026,1641947016,-299380327,1521496560,570387098,152693559,2117911075,-1608182582,422500708,263649285,-258074900,-1043251860,1875594163,-1669638167,319718858,374956624,397225374,-1092833851,-813636530,-898309273,-396938173,1550269482,105469031,-1843806823,-1067331779,2084876339,-221977881,-516246140,852940409,865933730,-988209117,2015523651,739520583,-2010512397,-1285044816,977447509,-1071686118,-13824287,967772203,1498679519,-1228192958,-1460821463,-1290233836,1059993358,-61912496,-1610980071,-1266173487,-1280056319,423528201,-657734413,-1614552675,782703095,1901941532,1500646094,-768299970,-769705480,-2139344004,1745081833,-118185150,-1954612969,-999912580,257010862,-866453184,-1711259617,-1817887373,-489181205,293647598,319011716,1746935484,-517206721,-286795229,-287082168,-291165740,653377727,587887515,1313556044,-1652548690,1499172837,-1071398533,-870610957,-114038875,1895025777]},{"sector":2,"length":512,"data":[28858755,2119059528,1895714030,-2037869661,1128850664,1115246082,886761511,-822139265,-796473345,133553689,-757657992,2067066047,-971204198,-1275955740,-214407303,-1113164623,-1502225019,-1843363951,-471383341,192148759,11204836,-27457914,2145695260,-88963302,46125783,64484496,-1617712440,1208252463,-1593689034,-519947223,1133485564,42797109,284009026,-532136810,1218665289,-2076145154,257804112,1052477001,-912301561,-1023658372,878868363,682005386,311925566,1887878746,1575562443,-241659761,1501563898,367370736,-1467236591,-1450722300,-425431295,1097227521,1207298199,-104833145,-1330285468,1898203323,-656821235,543186428,1443637290,-1379465711,-607551748,597225881,-1276459416,-228428711,-87455062,818161667,-1778101051,976185732,1964877359,-1941069992,1042520883,882512191,-419784513,-1913186057,-470743674,-1366655949,1317749767,-1803246060,-1495532130,955946525,-1175413210,536626584,7969600,1240517229,729446507,-1897051962,2060194384,102893462,227427343,1326302879,1831222315,-241806832,1542920991,-1796688448,-1265236766,16809484,1675748392,2029421423,-1601896897,-856665087,1059597689,-1706827329,1649378064,1979574874,-153605027,462704722,2033884538,-279897783,-1410581851,1259420407,-313561043,-1239071389,-1979618864,-563444476,-828037663,735524169,1565316164,50115024,1433842048,-144691995,1296454573,-2122029157,1475551,-667329656,641317994,-1993747674,646751071,1496346880]},{"sector":3,"length":512,"data":[1306084437,-1153619403,506219905,1514926628,-816895957,1809530815,-1357781999,-2081204155,-938980477,-303563195,-1244268520,1109410849,-690559504,23637390,869846335,1713321131,1051442477,-2055746437,-155305582,683507252,-1948791335,1589132250,-336482796,1562042693,176381055,-1013639192,1954967809,841006553,-2145812059,-1691596094,1210080191,878827292,-1098730884,-824054434,-2047407745,2121071325,1598046823,1606698602,-1465013754,1426893020,-1069680280,-331106360,348966527,-263241157,1957593289,-1718720514,1622958879,-1032638380,-1676212707,-1060974800,1217750271,1637543104,-806383546,761953904,-1857523097,-1148121110,-740719815,-727665812,652718930,917062339,-1146928445,1250757389,-439705844,86652010,-1549830515,-773503331,764293949,-528122800,-203837896,718390885,-483772189,-235875768,-2054275394,-1555871999,-1602457197,1440836456,-1138348548,1623311614,-1596312277,1762929220,-1861694270,-1132094722,274705477,-1807185994,-1444953976,805234069,554806518,-683715877,1618813000,-224333141,635977878,136701837,-1459042247,1176007425,282435647,170209241,-1731550380,755721061,355266239,-854500114,77644141,-2030426533,-1813919163,-2018248290,-809251574,-1686545908,727678201,-1384500556,1526098640,-1243949663,1693475975,-1542783729,2028440474,-1139112005,568693864,1185283794,-2104936028,-1004276920,1866483042,675839330,128853058,21235576,568890300,-33466499,-267732006,-2141855867,-1546158817,-1106882920]},{"sector":4,"length":512,"data":[-1854439414,172309516,1154321988,-800307554,1010061442,60007123,693510317,1309465667,1406012547,262502940,-1582156671,1993935640,1690221608,-33570305,-1543438977,13794321,536884352,-84410355,-1060497408,12582783,1837099972,-1444167169,-1024092251,-1571543101,-1083433942,1547516773,-199090617,1719090790,-340189930,-1395267636,1074979360,-11361096,-1064462589,200326325,187909468,2093954826,143772744,1802411296,-1284249297,-2111793167,1329444818,1737930399,-1943411273,-1457195140,237886034,-1421664861,2019050615,1705501968,2082133980,522567936,-1216920566,1140864067,536885297,-786035806,-6686885,-622386453,-1499063154,-598957112,2077597987,-1384791456,6127,1642330267,1599404133,-989843445,2020733150,1072352557,589223932,1807621847,1332460943,-778867771,741591093,-1953959476,-209926215,326952179,-1117725386,867673049,-824626040,-54655257,-1367571279,47094541,1941614133,333472698,743696233,-411976588,-460864061,1570627380,-1336175589,231374149,-1509889462,-1261515167,1393508493,1834715247,-826462726,-741717289,-858016913,462609612,-1526786706,333240755,-184765849,1813807813,597463174,-476383892,1460288837,-1885501186,655521985,209422332,-683542931,439314968,797711972,-154460804,79088993,-1620308797,-1861896616,-1391536002,455347342,-544713079,1913852864,1945465718,-847617023,601895347,-1704672038,-1894313372,1788646464,1183612851,-785528221,887622848,-328151177,652462057]},{"sector":5,"length":512,"data":[-1024026997,-1342424865,-704203200,1412655758,-1867656255,-2088303916,61837260,1717231230,-1610790731,1534297729,-59062026,1991633748,-798980462,1546797534,1529421544,-1875904260,-834560455,1506976038,-1039861820,1807166329,-1264664540,1567079378,1537400247,-1987962620,689872473,-998634501,151249138,-802700384,-2038913276,825486592,1369388142,-538419401,-33012687,-600279686,-198299143,327709087,-1082235530,1899784732,-1485860870,-811741057,-12394131,-719354614,-431745269,-539951595,79984161,886990333,-11608505,-861431541,1391709465,2048506997,734608456,140655688,183035329,948311318,-876090991,-35396395,1426421975,1108848404,-7069298,1623593300,-57730493,1578251268,2014370703,1380352418,19839808,-1711082022,1987429144,2069142853,-64878,492834260,-42417550,2055738513,790032701,920389877,-915772420,-612828778,-157899795,1958044803,-491843540,-1085499147,545482152,-1744737047,1521687493,418495366,2028767250,-1612327363,-1984092733,940879081,886547590,1733237824,463687449,1176651487,-296689396,872603129,-1494765766,-2011408141,-1495836586,2095408294,578224555,1513751512,289284516,-23675339,-673453233,-311822414,746204541,-1193071316,-912053691,398523145,1341903933,364654955,543682854,-1148097688,556134957,-133087522,-1904353707,-1064271902,-1154675469,-691602366,-30245100,-739966944,-317147846,848524971,-1405352843,219494824,-74480608,164833324,-2080904830,163144041]},{"sector":6,"length":512,"data":[2123980882,1111963577,-1696585243,-1073053425,341413741,305909297,-851268205,-970365791,-766068380,-881468812,1108162800,1498301967,1221269504,1373281800,-489128887,-1179212202,-1368062745,1442233857,220321000,977618702,-383746892,1231764797,-1917912309,-78630386,99839300,-1758019360,1111709884,1204503165,-1748941248,2099539199,96523723,1268358017,-50704392,-1358777495,-17426209,760029208,1409832738,-1669995103,-2139619512,775965066,-1823138672,288801952,-1305333760,-823413824,1990424473,30991116,361628410,-527782191,-1301723264,449399989,-449031110,-1338786428,-832286928,-1647337800,-2067334941,-1058975996,-1334177274,-1837908143,-1130784952,-1832143581,-1295434835,-103876932,-567217486,-465787879,539401546,-443477708,1955387854,-1532923754,2004470561,1235862896,105838200,417345383,38802364,-1800963383,-1112652350,-841782338,-2068669020,704835478,1604821282,-597221732,791830578,186807523,2126083901,-1709904659,747883234,492092198,-1414104325,914343980,1185213297,1728847525,547128588,-1465785556,1966266686,1574274477,-1875283872,-389015321,1109680144,-394245717,-1453951867,949149764,1820116531,-590399194,-1646735459,-981327449,-1696617654,398474402,223609649,-1636505984,-1153534311,-103465745,-1276622668,1813850618,1463448476,-2116943890,531803516,-1219587685,-88851448,-583921286,1012957255,2060354957,304845032,-1710861445,-1287976006,38896139,133157323,-789209799,-1375570315,-649157875]},{"sector":7,"length":512,"data":[922099792,1270049716,-1399978684,1856083915,1633586946,2109672423,433716671,-1019377819,1644457226,1623842115,-59161500,1103053582,788754475,859924327,862695389,-1749478594,1967736682,-542936129,-217674822,-425742310,2127352578,274701780,1014412214,-786612682,-1090300658,1614274739,-41346034,-1236137616,-1078913922,2114133533,-533207641,170555410,687607100,-1767612442,-544710388,-1334846247,-83859978,1050871289,-909870978,-943256997,972268293,-1386164274,-1477704951,1952464767,-2037532405,1291165916,2112956653,2127557326,-730784307,1190393404,-1578814864,-70826385,-1016525233,-1880044670,-755060776,-1983255856,-407429790,-1243658373,-1174341263,1447539655,-1384543106,-1290053352,-130992493,1153437271,-1413175368,1533503885,-1284786645,-1246441444,1440677128,-537946490,1792529481,953087972,71833634,-527300406,-674572247,-443732485,-992037575,1832896675,-948641889,-818906924,-853565558,479181786,-421735789,1009556503,-1720104367,163964188,-1853736623,1006149755,949587258,-679625994,-1502961708,583383289,-404431211,1067295308,-1821482040,-1463157171,-1659082559,-2047247170,288878863,-2137336849,174454967,-111429996,443597161,-967651779,-1715743282,-528700568,1165247292,60329910,676043361,-1815489199,362226037,1670429410,-1343140210,864156756,-1930322404,954235470,1536143692,-1868055850,-394811034,931800146,-62461560,1449761659,-1967163393,495890088,1170790088,1319706088,822264480,1204168264]},{"sector":8,"length":512,"data":[895542469,-877280858,1350494807,1195191754,1038749131,1315635547,241644831,105464927,-1394639925,-1083543717,-74627010,-537672024,1376173100,-2071634052,-1633299456,1075686922,1964975850,-609275949,223484433,-719097987,-774851671,-1764236927,-1570256069,-120037809,1638431322,-13119388,1623040060,-983834965,1937164862,21570481,2138589847,-1968637398,-1382199654,1853043151,1693524547,-31063106,1937278902,1717931739,-1259250348,-1928827592,-68346096,-97928863,2073265861,2003987952,-1169312461,-1486018149,1573859174,1626399369,1991127284,2017417950,564067528,-1419953774,1315017691,-968646845,1993819170,-415700321,-1378617133,-584476049,1789246000,1138069538,-584119230,-380842310,-686291971,1974328502,263900890,996953360,2102463532,-548550672,-1272283771,-708988774,-1858217779,1737253239,-530950279,-36049256,-2051229661,2090223531,258556458,-1446723989,-1377227496,1021704815,1008792848,1854484901,1253610959,-1688828275,-1787634688,1217225874,1520092762,326537167,-1586811353,668355282,488308074,-2102154492,-1100265867,-1402286164,-1518515681,995602705,1483326273,-2052293504,-2083794948,2102171120,2058236629,402378668,-274685092,-76861074,1453184620,1734056766,-1786564442,513389895,-17523958,1219080756,-827167360,137106164,1840782328,1223140793,-2019919789,-846442300,-1025051311,853753986,846021131,-831755253,-1862161187,-153904309,-1651973882,-113122474,1665302875,165628290,270930924,772375800]},{"sector":9,"length":512,"data":[1334699900,502491504,1926921858,-799261652,-1168238847,453557327,1092647964,-795217417,-632436448,-185129499,-1122813109,1894384767,-197276068,1877068783,-1155069837,-1195324472,2124577692,-187970753,227305467,1936656928,-155824234,1838310657,-1594104467,1749912362,1588114041,-422341149,26858959,1832402065,1880498714,-323470178,665737085,-991581789,2000674539,697522825,-681660926,-1888158586,1404833113,1357915448,-1626515277,216644987,809394760,-266250247,1672297926,1635179615,-297497067,-1783046139,1707140663,-116383091,1488480270,1524275879,-1109919934,1464972271,16793446,-137517431,-1192588370,-460325902,-1299211853,-2021517694,32671564,1864056342,7700728,-377963273,2060712351,1773396735,2085971906,-1692419923,-1573752802,156483064,-733774163,-136038393,-467729401,1780129678,1658445724,-693015075,-1415499554,-222952593,-263604072,-401728050,2103346236,-1639702821,1547401079,425920770,1300729400,-1213798881,-64531805,-1852495109,-1475575264,-64341765,-718925740,-506209683,-1174317324,632856916,-876716671,547689116,-868647360,-713490105,-1249521677,1916694768,-773428280,-938208843,969641900,1902931163,-1885257952,810843494,1284008726,1114247559,-2088575036,1776473339,-262970160,-183293958,783006242,378866675,-1810164432,1381567479,1050313701,1051410435,-1122910743,-1422413552,-787960840,812656605,-620810518,546089321,-1938757808,-406449800,-1353268542,683842147,383491295,1899044775]}],[{"sector":1,"length":512,"data":[1915367576,359107480,869012901,-21080539,2093612028,-1054422961,-1890172268,1923993439,1946919943,-523281119,2004447706,703232405,1850948285,-435452417,-467568629,-163648732,867469038,86754260,-1127906070,-957993772,-329071173,-752189986,952479102,-2002577716,1821686981,-831575503,999242893,-185492026,1134655355,-1812689829,58623463,1652145479,-573170874,-973847897,-1731286115,-597940755,-473510164,116333982,-1619540668,944093961,-643073848,473508811,-319131922,-1749980746,-1114944136,1643435332,853589744,1863575969,-119645340,1824624799,2102900851,1590497350,560331028,265819236,-2120166587,1991382915,1891463548,-1059136599,715024845,-639007225,525260846,-1428256247,-924151585,-165650958,-1491070660,1288889282,-39058626,1081543973,-1123188071,919449780,-1872996268,380517271,-2003598483,1874852786,485693187,-859278402,1842187400,1995729307,1150701379,1517587085,1137335964,-1197517927,2044377677,-938549720,398650428,1467507854,-1448625932,-1792349173,-132726358,-526696835,-1129463816,-1246419971,-1226264756,-890344628,90831672,-943318241,-2138062891,-1651514748,-1051950355,1317010410,841915117,-323456954,1295178206,7651825,2133547857,-463512742,-1715670384,1424496950,-1023504672,-1896964835,122122542,-1706713227,-742012316,542106863,-1281401102,-1809902305,-968900763,1376041391,1088935841,121577242,-939996974,-98550301,452421898,-1991917724,-1040054101,339864855,-1052676378,2077211540]},{"sector":2,"length":512,"data":[777706435,1008990511,-773664846,1927000271,1053279481,1012887967,-926408584,1742483640,371858531,746977882,-1555825912,-76338521,1490198494,920430442,1263175671,1827524249,1220971647,-649378245,1418421663,-943956023,1492023258,-1217745973,1745815103,-1577550858,269758877,284729005,-1990922906,-58501921,1674856873,-1757934019,1251136221,-399688775,-1114414987,1598856644,490309458,721094995,514615793,-949856599,1163217271,-1364258828,764247768,-706482016,451955136,30529510,586421411,-849517740,-800843994,1260605627,-2053168058,-1669741034,1096911697,381467510,-717027649,1840295848,1210199839,1073374208,-634148709,1031605243,-2032846586,-718057599,329257742,1532912980,-530858677,799667208,-1140439763,-1452176220,-1666149498,720834065,-2094422026,-1797965893,-272923842,2047369230,1441122486,-368804795,-2118300617,750016544,964277461,-735109084,-349227862,-1765173023,-2088430007,-1418037706,17132183,-2018805346,1963856746,-643346362,731065669,-335704465,829151567,1792295161,551506067,2060489673,-283167856,1436457393,-1367028005,115652529,-705618193,-582880319,-594439242,-1469033905,-375621006,889966163,2013084008,-1006694615,-339415622,-565477498,513749168,1989053286,-755253310,1015074914,-406235185,-562903262,479463147,1073730846,38012301,-1649974262,1933892789,1625109997,-659202573,896368481,1611661824,1275724288,-1363233347,-1158836930,-2130692084,-1682778620,1391704301,11529520]},{"sector":3,"length":512,"data":[-1196549289,1859889921,224321481,1181468913,1493544093,-1385542302,851173115,-529524218,1390201473,-154750563,-1712898938,-1512349978,-1955177546,1664335468,-1095307956,136735214,1849724962,197847448,-1100965899,671724426,193118376,1854571278,-886362422,1278264485,-1147458036,-1075025418,-181719360,-1937600864,-667677529,-1012258112,-1133286186,-1435682192,-1722348856,-764567373,1007584138,-809238280,1721413221,1896511948,850046058,1154263067,310673688,1909536844,1258706600,-229068941,1410630921,377848152,1912241244,-332191811,-1032925083,-1331435541,-973960154,797016158,-1404644966,-1963013849,1520200161,428231902,743549032,-892660300,916636395,-271881892,456158318,-2027831186,-902634066,-753486671,816541153,512197083,-2013136772,-315325408,-692863119,-1512886663,570977290,-1278658878,2090371791,948749285,-1809544958,-1798733224,826436360,-637322604,-2137118935,1000926946,682204183,-1971152732,-887313366,-1972396625,1671424185,738913294,1732982441,1657844372,414854667,-2077285078,806087238,-1277439806,1662161052,818557452,2007429187,873261602,-1446817582,-1553934694,-88656115,-533220163,-1794227320,245604582,-364167109,-789431282,-130176813,1066386408,691694213,1678836288,688439760,-2020447868,1133562174,287589070,-1268705723,1917601444,541567332,1234322569,-1832605400,616732491,-616411885,-1230875772,-1565768470,-1811613380,1158890320,590303657,1314067621,1419054373,359326036,-1787733418]},{"sector":4,"length":512,"data":[-2107353173,1687295525,-1818851943,-1764939414,1170829403,-512322921,2120161189,1628972545,413540742,-968782237,1033135282,-1738165109,1738131049,-1706653280,-961959831,-1035572326,-1267948426,1855686361,-1677264452,1729250672,835351068,-764142361,1981638481,-1647501862,1200218231,-1444382306,-260333881,2107590601,-1614288392,1208615039,436765088,243474605,-2069821166,-1584899564,142220422,-1708881758,1166713480,-1943869261,594072114,-386778482,1673891875,-1669920822,-731646440,-90478028,-434039271,-2142363041,1704104072,1850305828,-1667859312,-459744985,633031010,1593611703,941114040,-377147872,-343581307,-1240363254,-257627090,361827516,330339486,-1081756222,-620069110,-1203307483,813805697,703127923,-1897844638,-1115396926,528780165,-128262639,-1031475061,1183354395,370419394,-1032202148,1311515032,-981196959,-1331975123,542837191,996241100,-1301677374,-1943251433,-1330320345,315540101,-1592242250,1885421104,1300538756,199067673,1490574139,12726113,587852482,-2069112737,631080129,389062508,1980863329,-1034086328,1751321290,1046571212,1444146370,-1027352505,377161782,-1818733722,1443949762,1633409115,-793934497,-83252021,-665888698,199672451,263238811,1278096578,-2071514997,-1228133159,-2045470526,2127632420,-434901919,816879689,331899193,-1869069786,867733552,1393756316,319403160,160247999,1108889043,-826063263,567028960,319344225,1963781277,203970948,-1038798689,216896876,-165341693]},{"sector":5,"length":512,"data":[-1250749686,-1070939864,391868970,1034580550,-1645852119,-1037818783,-1909361623,-1004907591,-1903814384,-545661316,-1347986398,-1385062832,-204468148,-655282410,-1485622102,311085288,-685926967,-292643862,-1521588961,-1909501919,-1919073010,1164745947,-2125396950,372861389,1723986578,-1492449992,-50016478,-123277636,859730875,-639725331,421133112,1002660318,453992849,-1838568202,567430453,258076844,787082284,1900900820,1369933188,975166989,1244431669,740068984,-1081893876,116901005,1655133167,-1559066064,-2002262507,1106704139,-666843570,-49214381,362985364,-1966108357,-659632892,-730882207,-497039059,836918641,-1895973799,1598996583,-1434888799,-723412021,-1248099717,-1531353785,1153753492,-237142329,-1640129344,-123572324,369284431,1447578917,86150018,-1179171150,1276080957,-1260439272,771794150,967729568,1004217397,-1978244386,-1958544116,-2102210056,1750016427,690823041,371995764,1830811034,-600601560,2115527903,2139604003,711027140,1384587284,-711166027,300095436,-818985355,1611907086,-372346060,577746342,-1084501402,-1941698423,-1511826734,859650613,-433016070,-348398904,-64008508,1862089938,-1919031071,-2003045551,-176714351,-415515158,1155744500,1678848838,884868287,287161891,-1140991605,2007175557,2012582273,-163367902,-1719093877,1123866379,-1706121620,-1182953053,-39837750,2061044980,1921933919,-544204868,1587353825,-1067588760,-320813254,2087461743,-1905535511,2025543870,1213016676]},{"sector":6,"length":512,"data":[133349294,-163381720,-423895321,-973299489,150311310,1197050737,1066760274,-1747270784,538980997,2099101619,-1807391397,1650860165,-1406978866,-986744689,318608691,66673757,956513252,402008626,713879743,-720069013,1174905147,300630487,-859797299,-560473400,-1825586100,1906172012,-275083583,1317736774,303791307,-1691359568,-839236572,1145310040,-111891412,-1510164514,-1436086797,-793058834,1624754463,-545428536,1058356114,242398537,-394217994,-133899900,-83161370,1916616794,776171237,-1025222932,-513395966,188007490,430877112,1257245499,-1505310848,2024136705,-990255881,97139423,857057758,1435472803,1508759983,-1470250081,362319046,-1925549632,-1946345173,-1676963158,-1119843042,-559409856,-1185467516,258365649,1452335664,482347105,843582994,1198875930,-173827549,-1208772823,1319066323,1589323520,-1697918658,300089647,227659059,-538264123,-277171951,648564140,-202845268,-139247383,-475357531,-676177653,193101730,-1487651686,1606264785,1123800910,1954832044,-1538959803,541764838,2049776108,-318006775,384334174,-1953143841,-1837377978,176445591,746965984,1150528847,-20710146,2007927098,-1444157602,-1239917931,-616818064,1358327416,513788164,257909462,-1070208245,786621681,-703414782,-1130707543,-82920929,2014472890,250873436,-1917706117,-1894807612,-362183410,-359601928,712042738,-283556410,-288474864,62676833,-789092104,775304907,1124824684,1815053244,49311888,1212295793]},{"sector":7,"length":512,"data":[390212889,-1131679521,1310839279,1019932254,-391604170,-620719036,-191250398,942850979,-220840135,1976831953,301034893,629384030,646201101,-748668653,-934258227,-2080837884,-1352617795,-2084954998,679350204,339673338,1527780022,322695349,-2131194857,1215932647,-1387254846,1528813406,60738474,390726677,-2013914298,-1909884983,2139759087,405573040,-437918226,776098814,233868651,-2043331962,-1013067965,-1718785924,-1006844586,140917804,-1446692372,-921757297,58951760,-1453205898,1315328944,1097565904,-400095035,580168565,-1917635113,1996026031,2138925757,-1727179427,1169110767,528577865,1848458664,-2095083952,1677155922,-1990574112,-647088663,-1604642846,1170846079,-787415284,1533303791,1174606250,1696084811,902873802,378971648,-1327978641,-1229094741,1443474374,-1947933984,-106786873,-1719443634,-751393365,-1423722862,-1485116954,-817417829,451335539,366128197,-865300748,-538744384,-2090383564,-1612804920,-654951653,463398903,-387685307,-591080403,-1117865345,-1919032431,39795174,-1876671471,491178677,166314189,873856547,-1681111967,769578565,-664887700,-1837674357,296189404,-1702056877,1470725737,1255924271,1494288237,607006116,2014441327,546867880,1346722575,2086322447,1048748924,-1269706219,1399873589,533494868,-110246638,-1603009206,301348469,478398180,-1572245636,1428228754,-1874534295,-232746591,357044046,729558833,-649146049,186052677,-816216506,-1859097957,-717533484,1849960350]},{"sector":8,"length":512,"data":[1115392271,1257167956,818303158,-1996713495,576296167,877953033,-273063596,-840619379,-1754254928,33443461,250155141,873767232,56859842,-410620433,1517390719,-1134866548,-619530549,-667301225,-551096275,-602951422,-81925230,-261732406,-235586285,1136761159,-540397169,-554362377,1395781045,2106380893,-1472572434,1819680733,936344976,1138186308,1794094695,-1283547518,-1284928487,1342067097,1153830806,1858420285,1050992289,8394353,-1698222268,-875495338,-872293103,-1221475975,1786201788,-737857724,1746074833,-67065202,1075269274,-482163635,1799778253,-550684416,-1127716941,-962574810,-1177026130,-2013099639,311195230,38877824,-1975838160,-888274926,1755529231,-1304892876,-2023718893,-1308703905,610272644,-81896192,-1555275935,-2078841872,1342445528,-635136940,-528375503,1046163353,-1239485575,-772936910,1257439958,1981481546,1313536205,1264940571,2057762387,-865132727,1815575463,-1381566407,-1435560700,1618974919,1399175955,1265580641,1665263368,1052171991,-583108193,-1878080280,-1652716131,827560641,-1943163365,-1141912367,1372416104,1929017457,336425406,1544316861,-2034684489,1367078749,-1016092775,-1539955749,222002316,-949628012,-153554852,-2026316003,-1816652970,-154410845,-571838207,-1127638546,-1137236470,498613677,1863990878,1428419686,2092394440,-813164787,-470329625,2009931342,-725702394,316684225,-806802241,256025935,1629917027,-1821019903,1155057163,1047045401,-1727517722,-2140233675]},{"sector":9,"length":512,"data":[-306051636,928826795,-1807467078,-1409905058,-1910789677,192606016,-438779719,462462418,-275774469,-320342107,1040196072,-263073246,-667996348,-1226870940,2146040689,-564840560,-553640890,-285135036,1287627620,1251331262,118602389,-1056023232,804619328,-1830938713,24549375,1704991472,1610980423,5865494,93847910,1501566560,-1744738816,-2146017275,23461977,375391640,1711298944,1610979329,5865494,93847910,1501566560,-1744738816,-2146017275,23461977,375391640,1711298944,1610979329,5865494,93847910,1501566560,-1744738816,1466373,-138411674,-2138905024,228050638,434913066,-356070915,-121539760,1620065548,-205292077,1102186075,1876910530,-118262221,-1771546515,-681777424,728166806,-869418356,-916636418,1561980390,128969962,-873826766,-1364632885,-1485745185,-461763178,2109644720,-69159655,1716574143,1259497257,-1619062024,-1872124983,1912157305,-1948966071,-582107827,457224727,-1105690197,-683595423,-23289031,1541594526,2114888507,1206510047,1958239879,-1082447670,268322543,1911272254,-2021650010,3799334,-1921058074,402060014,-226458718,-47697568,-1668363698,31260752,146700960,1356917376,-822870011,-1078200902,1205247191,-10483742,1779660731,-1332839397,-1743291178,-2118611781,903956457,469791508,936018678,1570205864,1803826668,-2081868800,667121246,114500446,976240064,-1946127806,-1871249404,-1694989456,-584598514,1426183596,1460098048,-1142838259,753466478,-88727836]}]],[[{"sector":1,"length":512,"data":[-11586384,-505611589,-674202893,-1610418265,-208544845,4146819,-754155747,1750251007,1335851000,-977588360,-796893698,973089560,504355898,-1580737184,-56688137,983702943,-662539493,61990890,2125575087,-79438634,710745204,909538637,1152230847,998751487,181639823,-36700582,-1697177406,-1602852781,1326851751,2145901471,1158467489,703093694,-540378977,-548839109,234685357,-356290845,-272842363,-830028877,-908254522,-129581733,22408033,1810203423,-1066419877,2104037543,1163492019,956025377,1940107104,-350767931,-140760836,2074975600,-2085652640,323599367,-1742299327,1707527813,1307606680,469659777,1897631222,-821062753,1676579243,-84729002,-1379458218,-245418664,468459817,-2077529421,-369217305,-49239100,-2069911605,1113020671,-153386334,-1090714467,1772770750,-48515109,1884678078,-1241944245,81521363,-933873721,-1764210264,-1116866720,-76951222,937389911,-1557221900,-1909433391,-1006738209,-1622143787,-139534690,-1714033807,-245932035,-260562308,1663083840,-747028661,437607871,-489282867,1796974048,1247136158,599688369,-1243858060,-1025290747,1015759335,-389845670,2048762462,531944153,-1910419938,-2034366589,-354306384,-1250122530,-190044819,1350856184,-897310317,-858993365,-486708306,1314923744,-1871021763,-283907732,56077756,2103604251,1885790031,-1480902512,-1254378585,2044232075,-89084610,-853123692,93834713,89180958,261525552,-1271690523,-1286284976,-297483567,1099843722]},{"sector":2,"length":512,"data":[-318945059,-665232014,81807306,-863555290,1051179919,-560613284,-1059723321,1487679569,-2045655771,-1706803568,53897944,2044413849,-820277301,-1321710014,-94697585,1210218329,806371059,-566080827,-358134378,979961722,-1550659467,1192060361,-1343470956,-1945413930,380493743,-1343967310,-1844406858,129668997,-1110443201,-2138197599,-686985012,-167092694,455071270,-1356287016,963712020,-883241425,-1439862890,1222404546,-450865301,-126425627,-1927968815,-207773403,-2010263047,-823091212,-1456160814,321479954,1359587998,1456447078,1931892343,1621820592,-526919298,2041825217,-1806108135,1097076424,1483456766,1253633520,-792146303,-565006613,961395303,1423879539,1857321278,-503592711,579298212,-574797016,-1468584799,-1391314173,824352868,1477057406,-1255437674,1315620207,-2108236118,1245977333,-92449038,-1150656358,-2018637283,1948946866,232522405,-1375732038,-1232277921,-1339194474,-683576848,64576773,757923280,-808121294,711974266,-735009165,393883132,348871659,1729368542,2110090882,-539503781,1149564118,-1027462152,-1484461217,566410035,-1005387350,267027249,-383335719,-356556978,-502669925,1406580971,1009115453,-1921065484,999820306,1839618261,1057493308,-716886450,-322878089,1644790727,-905380743,2132723581,316099593,1279341212,1031206533,-1087307465,571746085,1681948833,742353057,1482194609,1310138302,-70908520,2017758102,-1503941554,-2034128833,226711722,-1578576755,-123483241,-1981705924]},{"sector":3,"length":512,"data":[1376624418,1153500539,-196447340,646347913,-1338040815,410003553,1091291578,224839564,609485843,-503714428,-625042152,546934934,87291756,2024729751,1231110240,-1962346539,883551075,2130438948,151359262,-1434487097,-2122118761,-619362950,-1573952318,-455612227,2106144127,2079196028,-655524124,430892976,-1571447009,1413435891,1779824083,189916208,532990854,411056571,417640775,1518698709,-1174218944,930050386,-2069437788,1446994773,-1379419876,951524977,1983716796,1550768258,2132090475,281480586,1083309506,484293686,-1346495236,-930979023,1106849691,63670025,2025633345,-1954084032,442571207,1210682732,412675736,1755674448,876790420,1640871451,1476802604,1527897848,355064817,1103174362,-971735544,516654501,1626775659,1881130947,1366318986,332094179,-1333380815,1597040258,-530773586,1944881687,867878965,-800596097,1551537597,-1833627687,-1841008184,-267209347,617760913,-1384871521,-1077305436,-2016706758,-1724614138,75526206,-54266273,-1650700548,-379353412,-547055356,-1462187559,210702248,1236176779,649787956,1723854327,2079211349,1976000812,173293129,1468082405,2103123097,2127396137,-1446377227,2065015047,-1246102074,-333062402,1049845979,914738987,855025101,999258962,-646941840,-757501949,-1203873424,-2133756628,1527187474,1106531964,-601514477,-624629330,1853801689,451882338,326207173,-548183477,2098568486,-69477733,368276548,1421295934,1074774963,-2085484617,555738735]},{"sector":4,"length":512,"data":[747845254,-348090349,-26590367,-2016711519,-549199385,-1015865968,-2017250937,-552630417,-189596404,-1577404239,-746799458,1863251631,998007171,-1472481899,976635874,792240095,-1194868066,1951361861,1546261313,-41180810,-1589016809,59492171,1484354569,-2068252616,-1147341037,-1639320898,-807234088,1988896419,602655697,-1302264538,1931555957,-1620859289,-214016717,-1584579818,845640605,-1247128353,-671924221,-1192308583,-775999583,1105597848,-1148753795,715170288,-777703836,-427720920,-1783184750,-646044307,1756430130,-1614729888,1534959437,619457039,-574761899,-327569065,185276383,-1166022874,-838057031,882730245,133646470,-420010490,-2142912720,2092282897,-165736856,466493198,-1183213292,401638307,-1961550243,85874579,378465934,-1813259226,1381959971,221233020,404707133,-1882299238,-513105817,444810686,-2120287765,259901298,-1777249268,1353490903,-257535704,1755393276,1007493655,878783174,354676565,-242925285,364848543,1419191602,1806271874,-1477475581,-668911279,-856005881,1614317545,-186339745,-664451824,444502487,-1876469659,-1104123572,1879918350,2138010776,1378479687,382786503,1014728681,-1784186915,-2130566473,1779532151,1700863646,1524306676,933116958,1049836048,544427343,-1327597604,990866993,-310143151,1438105417,-2115166734,-1059127976,952155392,-1896300482,-1611796522,-1173343330,-1651653460,-1940155516,-616762304,-563608424,1078149725,461728960,-772399461,-725979143,-2049349825]},{"sector":5,"length":512,"data":[392412137,867853814,1870895998,-824026442,2010319887,-1389133556,-315947411,1715991146,904283482,1491842404,-1772073490,576336159,-1178556165,1624957150,-274321138,52069880,-1257698778,2011527203,-1291723815,53272047,1192707332,1239468784,-881898789,-1294579779,-1732922224,-2106119503,815649171,-1362009606,603417382,1339131504,1501730818,359002138,-1354975394,1904141253,-1474296602,-1427009206,-939247507,-1381448804,1270955212,28690369,797819067,6107712,-409356721,1593522774,-1949155832,1616041681,-1951317576,1299822779,-1351555459,532371842,-684703130,-41640839,-422910536,1822347857,-1262245585,1202049302,97935609,-1825229338,-1232753227,-1818066924,1405790528,-1717646306,1968506487,-529615568,1403315715,537329659,1531591519,-201250535,-1543415513,160601576,1017025182,-98519350,1373921585,-1226031889,-1737427009,287064890,-923823102,2075274802,352431933,-1728554714,1524449507,-2117482848,-723385910,-901256561,1047037271,1793990021,821325554,-1797525054,-1407003364,-1283917707,18654815,1836927654,288875309,-1262951310,1299193216,370855061,-1824283296,-2029021785,104068794,-2012747887,1376026657,1595323627,-2051815488,1810014425,-1635225999,-653034835,882701337,749727666,817563486,1686755429,-1540947108,1361641871,50851265,-1135099593,-656943306,-604639144,-936610769,-2033719483,868672604,-1420603693,1588567426,-1060502542,1377310329,-782479832,134891704,-997989220,-883106785,-511647534]},{"sector":6,"length":512,"data":[-1211747367,-1043680073,137695052,-488942415,835367870,-563583052,1426725089,1629749808,-1336758196,1637925831,-2078622858,-620088778,-2098870775,1486100205,-1296842640,1168715879,76965481,-1288304188,751731613,1912192023,-2138149711,-1658514399,511729935,-47048346,1336485307,-836398378,-262341010,735667142,1505393748,-71544970,-1957317089,755832387,14848014,-1324707573,1625710800,-1511561560,1413096129,942545643,1826727972,1472504052,1498020897,1840634801,-1584461922,93518317,1254122177,-1081283633,-979732280,-854400858,-557210136,1585668313,2028481479,640744152,64580995,-754221716,-1732115533,-800044323,-1979033195,-1242496062,1924165438,1513347300,-2122071300,-483485171,-1702349302,1175291286,-1711242474,371480640,743804470,1502740414,1862553702,-1870298104,-1733186463,741905502,-1771798998,939655641,-935149052,-1318887888,1813006540,2011326070,-2069354286,2089083724,-1125945550,1726029008,-1636891214,-182982132,1261457176,645681751,609934143,290438722,151014049,637278204,190486212,-1780431670,-200876761,-193484914,-624382426,-1246990282,-820205395,-1845410942,-1316745860,485503837,-2105192414,631436455,-1225428913,816359349,-917801351,-105987229,-1257957177,-395791392,-1457182964,-1319996944,439780620,920318287,-469137009,-432785363,-1471905581,-660167863,-1276492404,1328506254,1870289170,-906067106,1774125086,114919110,347703839,-1014986856,-1065670763,520360357,-666897942,-1514259280]},{"sector":7,"length":512,"data":[1035628353,-526683492,-1642558653,-2113316398,-1767820989,174397222,1260867497,1628877798,-514574496,-1889710477,-752628699,210785544,1831721168,1461404295,26219843,-1106948944,-1959648662,860885611,1301498876,-1560967418,680158677,362762486,-1579458910,660777551,-985117216,1160778675,-949578040,1502924979,1108934873,-1439864315,-2017439951,580328080,-2074932060,1272259441,-485941243,-1444206562,-955318117,-1202031475,1888339572,928355373,1973605170,339640903,2003196476,276036040,-849091124,1493188286,466792978,243213472,83338623,308753459,-1930983085,1054651079,-609924273,64853252,-1789781614,76874969,-1730132864,-335110903,-2022775071,-1487478145,-1527615044,-307814016,2054464192,33252460,-1467916457,719292778,-1048236835,682495008,424283355,1802506601,1818346974,989206543,1348449577,-139039628,353180355,-1757510422,1817929523,-138602303,569345294,1889726046,2107623473,-1738004506,2106930655,-217752994,-608374910,-2068503173,-1849297882,373331961,1010338858,558948355,1911017614,-798994554,106478897,-568527390,2055100467,1948790721,1047613779,-1177179373,1771113474,548304774,1266367509,-340191958,-411584079,-857060440,11868728,-1148098099,257879248,2131845336,473569206,2082619795,378866438,-63070780,405531777,832334147,217915973,787270150,-1616578654,-286843375,344505293,-1626460308,816418681,247569268,5369083,-284675430,-2003199356,-2092765489,-1778071977,1746245959]},{"sector":8,"length":512,"data":[993284180,1040275849,768715988,171758833,377112469,1169304719,1621938305,1643789905,-761592757,1937398146,-1280796631,-1565571963,-296325156,-884785466,1675994880,-1315381715,442100827,-1566375104,1384971574,-1518011694,1529809311,-730244742,2007260334,-1466487417,-1678664280,1053580124,574196837,113577633,-1051610009,1264643224,72825335,458165737,1350708570,-1850113043,697941217,-650610507,422433568,-439177897,-1084795832,-1228135438,1355391698,-1686198019,-744078493,2107055347,84807282,-1999450973,-1055815648,-1358033406,-354296099,-101423044,-81313613,-792482627,2102096954,431065425,-1701963530,-424197364,795635924,-828294415,-377569085,1152234195,1779710121,-1517142635,-1204224158,201890826,680810936,432556885,1146684922,-991180849,911752513,991985791,-745946432,1768902171,58919083,-1096501907,2129679571,1351363395,45815843,165576090,2082094165,-1545297479,171212372,10778201,-132878744,-519821021,-875230439,1112273700,548306785,-1167633882,151161244,1991052769,817187268,241573095,202484302,356865008,-1607752617,-864575709,-724569459,-1135276801,1411702905,-1151467567,2036118376,549768278,-1471665144,965480148,-1132912289,1871948395,187006725,646145196,886418581,-1773340364,-1211023354,1383613314,751303037,-1370605878,-400104606,2021248906,203962369,205006474,-1542297374,-1918136621,-1412564027,1985445199,-1151731809,1490116990,1987825342,-1136540225,263836002,-1263074033]},{"sector":9,"length":512,"data":[685747651,-276182316,1687256857,1507963515,1767724386,972729529,582001097,-2138918621,-1157494024,-480460697,17717513,863649447,-1952726675,107040008,728145075,997146252,-1647814995,776836790,-1187537947,-1600950140,-1817594664,-1100367425,1864610096,-2100101933,-1365348892,797367007,-1201668454,-1074748836,988803949,-98116661,-514589405,-807890528,-1038607313,1169010465,-1776002008,1256034538,-1171247506,-1866877991,1936958325,-21862603,-842443068,-323591987,-1232282407,-1179009451,-2021435206,-462148595,299218653,-1391960889,-410241646,-923458897,-82375587,-355601773,1213785420,-1708488758,36143859,-2088005773,677143792,-1889442931,-1867384356,578651530,335150879,1938359584,-1889853968,-1490420307,1516566836,1063898548,931129937,421092205,951485165,-1815370944,-800042988,1956231609,-1895494608,660874946,-2128360149,1268795543,627949203,-1975286757,195615500,-432638026,765366962,1624284989,-230184885,-375935481,-421957484,-606582137,533871027,-1192133013,574481096,-329673085,-48013153,-1225301252,1149837078,810729082,-1919031002,-554232435,2062863584,-551177596,1957713733,-553105462,-1267887994,-1919040573,1832937677,-1602363093,-1828124103,1410125106,1949746048,1251703779,1891389781,-992860042,-629395006,-1081417889,-250204769,-1425866625,-215830377,-1605451934,-1591672533,-38776766,-1783189734,857083901,839017006,1823699776,1058090598,-1845055656,-1008614684,1733409329,-943860762,1681499150]}],[{"sector":1,"length":512,"data":[-1724445692,-173656013,-1596327006,-1452618110,-201353639,740028018,887077908,28376449,-371354646,-1589898046,-406118036,-1502107907,-406500164,-101909397,242540424,-1346186305,302048991,-1089125498,-1126643,421516137,-438876332,1935200380,744069036,-202866039,-568995541,-1864723023,-928856598,885722278,1807368611,1304338982,58404377,-888557496,-1606841982,-1762309698,-1412115995,709616978,1942137492,968954540,1709971832,-130567565,612872229,672286320,1644639696,-1708175575,-1439067062,-1751772424,1031442473,359852760,1027433802,1208488954,-901264473,1310060696,-1135236269,-1649986833,1602357651,-1443904216,384931775,1426999217,-1770073618,1093540135,1402691919,-1352409617,1304295136,-1623912834,-1013294465,-1633771731,-288939767,-1150650594,220950582,463220673,-1067990793,-1397074982,-308111541,757507796,-817644996,-1075262215,-820041550,-1938914985,-267847950,1940096562,1666236846,-218726315,-1556243325,-375686938,-1828338851,-1628668900,-2106228059,384477928,1246237033,-385667283,857738918,1916794591,1546038148,-1580631562,-1820274252,-1629928110,929181327,-446134197,286446256,-144629160,-340282132,-1797613746,1413229735,-229810155,1897202005,-886537726,1498736649,1603928738,-1566561610,1469489195,-800741366,269620583,-1803510529,1413801643,-325613884,972455434,642999375,1926583242,1463313883,1017238648,582946345,1434985995,402280417,-390733027,-784767630,-2116985675,-440783128,2096831765]},{"sector":2,"length":512,"data":[1376155220,-1165469657,-45936529,-497012342,-20605280,-668842109,-1343628650,-455971837,790262004,1032299596,118944107,-766538440,-386019456,-949423197,-1209822612,-988632303,660108978,-1099550967,1398275105,1210594607,-1034871723,-1249714677,-69680928,-1915178621,2047505220,335300516,-1808792951,537247331,-1006226892,4440459,-74740744,315899908,-72817424,1906310847,5865494,93847910,501220224,302020250,-832569116,-1874451357,897842312,1107739276,2081172068,320969872,-1347294702,-316702716,515902407,1545036765,189301108,783533267,349201680,-1888458422,843258405,821436442,1394142854,716303896,85980704,320800964,-1201401868,-347570041,-700489470,269511712,-1944493427,-1459551497,193068127,1656364612,-1123808368,48689476,505422817,566509757,543131680,-683408376,37291019,822279682,425568334,269655298,163630167,377860,1547717400,-237174127,271566472,1036551460,-2138472248,202203576,6078758,-406232946,-1366527998,173832130,-1270197112,-772880405,487592419,97449093,-1056668478,372310780,-889376469,1904418709,587879776,-1685845016,1896086532,-2132511178,1562674552,-2111798927,1879240742,1566592948,550186465,-291303863,48727941,-1095666415,-735730624,199189630,-946200696,-458024892,292990509,41544976,-1333750590,-868204405,-1178504377,-2064520141,1103815399,-695614400,-2113551952,-1148054075,507545728,-2076131394,1548095153,191394336,1814060823,1905021026]},{"sector":3,"length":512,"data":[-434397055,1735179847,-1974991528,-1650643443,782510918,1713564944,-1086698576,1086048384,1746938940,-2138044393,-267741256,1588346949,-2012526560,-1764753397,-2123003776,-1618474528,-251589115,1079846771,-1407164604,1597913302,1141148372,-1711767381,-1039747109,780943432,476808720,1623567753,1597521997,269860384,96301887,908337092,-1104125226,-2138129722,-836739328,1639654237,-687230163,-1922687288,-731154479,-597556670,-2137103867,-502934152,-835439172,1524833387,19593155,1845977457,1581783087,-748937696,-1049914777,-100136380,1078723595,-264499236,-1657227860,1238582108,-2122355648,136325176,1527975982,20854795,570809969,-8256993,901157122,134772240,-1727908807,-721762639,-671573478,1535617122,2027947491,12475482,909151004,1586364510,-2145939992,-667346717,-1913069563,1879236610,-1000374036,1230112028,388874804,2194568,1013037283,601139561,167131479,1752057824,900352917,-1193637865,72273695,-427682940,605995527,542993167,1443317530,703733854,543078521,-498971936,-1255734721,2080889958,-956289256,192950861,-1051815488,909640055,49390722,-1994683280,-119536159,1472485044,825187479,-1974963049,392225879,86078273,-166799481,2003804246,1370343553,-465127701,290993660,-1322882965,1429366406,87463528,1599008753,-2123035387,-1760553488,-1055465323,-1184603152,452881158,33697196,703660778,-1719107920,2115746852,-1370915616,99960383,1657900996,97596801,912557186,1515258622]},{"sector":4,"length":512,"data":[-1225655160,1090307858,-1462295260,-4151955,-950262527,-405731475,-595902774,-1576896785,2063511731,1612937921,-1166594186,98338826,-443513310,142745693,-2079594607,-274595235,1079619842,-1673479796,1599803409,314796064,1377852503,196904002,105971460,-1910481527,96911874,1241603618,1476660151,1086074208,-653458132,1090733067,4242643,-1171379833,1216641088,2064127770,96741381,-2076157438,621613102,271512524,1904796044,61218909,1174301955,1581531216,-1672205792,-1594083389,-2137452498,-1019206600,1081147731,-2123219904,-331328392,1565139038,-400531639,399446034,411075208,1200128371,1085844544,-2011159476,70000733,1141607812,198061017,774448708,1581007036,271451272,-278789392,737460741,1992559557,48366082,-1673503903,790135159,1086305824,1980727844,-1775345535,160677540,-1953754909,-310415945,-2049699819,251303206,-930437368,-2032141327,-1247214588,838605187,-730456030,-956289464,97992589,-1554239292,2133200919,-913830922,539628031,-174762104,1704632920,1653307022,-2099019753,67431647,392654815,1149127751,1828858503,1628585045,763900273,1351776828,103689254,1508988807,-276111357,775445484,-1120238515,1755241584,1485270691,837108333,-2070625591,1036862935,1350925389,656974620,-1103027034,-99522164,942139237,1046955313,1389280404,870422804,-1537817450,-1020606205,-1014001773,1645843968,-2119705814,596215729,419553769,537227339,-2076217852,509738544,255354398,590886695]},{"sector":5,"length":512,"data":[1482441501,907376767,1841569308,953960583,974674096,2084781153,1150510314,-663933721,-1223527639,-1920886583,-88016537,1761137561,-1634058474,-1285193255,-187289288,256752148,-1277957757,1765435056,667760308,-1589993638,-1627259730,-1247703665,-86940445,-686253679,-1736905423,-1313807133,-498198109,505092952,1669948129,-1729476381,1255277615,1033521442,1317871464,492752900,-1058483511,-1273547587,529234761,-1932468888,-1495908746,-796719539,-1329008260,1528363844,-1980656176,-621114243,2095257344,-1057207610,427627480,-485115780,879128080,2026404420,785517041,464815084,-965852541,-528277137,2014496862,1012847114,-655232501,-864470782,-347634497,-830975285,1545470386,764250990,1263388493,1851712266,1994757956,308897208,1105407107,-1875798149,-602135122,1108425070,1738623277,-670859159,677418754,-2124675292,-476479154,646167560,92020416,-1041267400,654830648,228331267,-394989568,1644626691,476111840,110901516,-528840913,941711848,1468131439,1541424519,-128455306,1606429420,-1710474094,-1995062572,345093161,98890145,2015119807,-384788166,655248534,-1543029100,520696647,-1206349066,1938180407,682682770,635838433,635898993,-764181507,-248805275,1313517327,-694948474,-1132150303,-520984895,221924096,1132303347,1891886247,282892592,-1008012705,-2085645532,566938067,1626563838,1894736455,-1738485162,-1736744364,1780126324,1845805095,-1640718526,-638704200,2066203899,-312141512,950841737]},{"sector":6,"length":512,"data":[1316694857,1320603628,1225877226,345192013,1984893799,635758387,-430140573,-1289637276,-77209309,844515090,-1830984703,309062887,858199752,860446105,-1292594309,1826539858,-1960684957,2040151185,1773370130,-863814586,-1819173090,847039861,1447857400,1301623594,2106874470,-550337891,-1721028823,-1490235418,-751979787,1402955657,1966392920,-1925207246,-1822502093,1689951789,-879778005,-884999834,267991935,-2133508864,332505926,1255371791,1252163605,1002537511,-1340576363,-486776867,-197252040,1529030245,423294799,-991166371,-30233305,1308754810,-1098900106,-404762832,1094591871,587953355,1783497050,-1677231048,-1792070336,-981680182,-1502566064,221162495,154545119,374424964,-1319262689,-600948853,1165987553,-1162280107,-354237091,-2054508089,1836572977,-1256233700,1220409002,-1882680451,1230710341,-1308700917,642173592,356147668,1222197270,1970561383,-2049398548,186074642,-2115280230,-269604724,-718553985,-665266381,-960889177,-1262663134,801454395,-1658866740,-1675559902,-1995838413,529641715,424328599,530085974,1049916311,2131214828,-2140489431,-45146392,1739175000,646877978,221373122,-1012644836,441662231,-1690100156,878540351,1321406624,1785284159,1770201456,-1383452165,740763265,-707871442,-184695904,855887633,1347056810,-1920065341,948185781,-1576473334,1784206126,1288222703,2123516081,1957261387,1737154561,546660720,-2038984764,1803607073,536552448,174969000,-1985310913,310905515]},{"sector":7,"length":512,"data":[-12010782,1909008520,1266682560,-167783120,1567883014,-919707251,2055210148,-1702391844,-707747894,623312752,1204681750,1425144700,-1371823266,-1132556230,956096564,-344894024,-196755793,610077254,587026484,138142140,1402375480,473438844,-2044963332,1794772522,1832231935,1010207629,613851312,1434598456,-293522191,-1593414076,-298859319,796671884,-1174627328,1141571457,-2112747272,3026143,-2101743292,-2062294181,-519110628,1123690051,1062473713,-578673114,715169477,475369999,404510118,-1126099560,-1639024341,305421397,308116411,-1209706942,2007713222,-76220381,2072509363,-1013263143,-635683929,1620635879,-32313197,-2145388430,3062965,1016258679,1694658501,-1577054669,-519979790,-1287461314,1544712570,478345220,-1166982144,656686648,-1431630066,163826076,-1791968834,14726993,1535584800,1966659462,-293543033,-476270859,-2041453912,1015013160,-243674682,529184890,-421344151,-1983466520,-713129509,-25076221,-2142429149,1834424452,1107347656,759645365,82952916,384979213,-2068876014,-989319574,2075402498,741329041,-1320429516,1451777667,801918044,-2007112696,-1406903106,1578524767,274587152,-938451256,772022463,-2078854392,2007041510,1568397377,-419418345,1561783388,274620944,1277212882,-1057979652,-2047336187,-1323113961,-1314847283,795138571,-1128477678,1299102541,-1466573668,-437222887,41419225,2076680096,-141663775,2137178626,-1973489103,1882762613,1462157247,-147872059,-2027208478]},{"sector":8,"length":512,"data":[1848248223,-52094969,1372563138,-481078020,-990842880,384887713,1877074247,1061432007,-2068288692,949802499,1679287808,-1921871929,-202375137,401606684,2030034663,962339935,1583246292,995133956,-1677640231,2117653820,185455777,-283911035,-1246268983,-543714340,1962734833,780780370,-1112047689,-1301085466,313907211,487637696,-535327746,-117489595,774713971,670307966,1805171503,-1522793857,857068759,1107675713,-997677082,1921250250,1157131794,1616766274,-41246858,741248191,-1558753217,1338978869,792215349,577898337,967381306,82204418,15156359,1651699005,-2114137416,-2123290120,1118307512,1391838196,-814580804,-1690565619,670988419,-1649934464,-295642912,-1682509840,657457847,1319066332,1990399744,1920437831,33058945,-1479110938,-821129252,-228395158,2039021202,1392115643,-1239617531,-1235417638,1154981377,903298048,963384055,-211312626,-151607321,-896544757,1694478027,603126839,792121727,201947254,642167617,-677052121,585793724,1038151631,-1414088777,-1124972357,-476075701,-490779648,-724236471,24535317,396023438,-1073903858,1198859472,340282987,1097987391,-287009452,-533635765,1539572551,910880971,484314103,98561264,1076792560,-1139104190,545135407,2145013708,-1950613464,1640826308,-1692354331,-814588413,1761999906,-2054422579,-1711742497,266519900,-1815011377,2133335089,-769631016,313529503,1677903336,-494691387,1343420298,-1245007420,-166188625,970097098,959547393]},{"sector":9,"length":512,"data":[-1061645911,-214959117,-1128065,241228065,-1476960294,964486318,1038337264,1228037401,-382378364,447441418,-117406715,271123649,599621241,-360942209,71234755,-2135203339,1621082512,-1852825413,-212062150,1786783204,-1505793552,2130338007,1746982148,-306427329,-1170024453,564525852,-56649455,810608321,-1448194557,25863243,-448400448,-222690295,-1494522602,181034935,1931791251,-1228053999,1356703289,273010173,-1317794189,-1140673924,-802952876,1118867140,637026036,451990788,1389320724,-1374428837,190835825,1939047297,-1662637433,-1140654711,798560380,-1664380366,162070385,1559443948,335699539,1442920639,-1607811123,-1459624817,1270856668,687747292,802109741,948976045,-31237739,719514451,980778636,1252688649,2013903230,-1010227714,-1457300057,785384341,1096235132,1928229184,-576325447,-763378006,265866622,1648206010,1544655221,338198511,1058020400,1282125350,2067984732,-467402923,-1249953961,-1066356550,120038410,-1943024536,-9954078,-1181698027,1602851010,-124474792,1217435912,-152700361,2138704675,-134882735,-1847532031,-681923836,573502621,-681249214,1889729259,1931032895,-2103963103,-1849113883,838768447,-1562876714,-1718390641,555774520,1977186817,1651656892,-873365331,-24335528,-839266919,-2070099185,1421825557,73293778,-113476626,2014032585,-991923841,289633648,715438127,-137643022,265996683,-2005856386,-119425207,1189711525,-41251822,682134133,627243425,362892049]}]],[[{"sector":1,"length":512,"data":[-1747576908,-1082204569,786627164,1358015706,-425603824,-2048588102,10581479,1878766781,-20496255,354852375,-182337279,-102661026,243083203,-376268865,1819006894,685154010,-19638530,861836642,-189360089,1840124469,20705256,-1406155268,571603334,1143665445,-1475019377,-66311230,897987166,1801614156,1577249915,-19598605,-2047497525,-1885728265,549100200,-1378616395,-716767556,1709215751,2114164675,1278574901,-1172031007,1659235936,-24445394,-1985695629,-355570782,-1599937590,-1378549520,-1080678087,1314346571,1960378834,1557703957,-1659635017,-586983440,352363775,-1839826433,603849357,892654189,-1212556537,1817471762,-1169883145,-533245828,-121276520,663848626,-335668200,537362003,887903350,-222783361,883542003,-749679251,1365809668,16407,4194304,-538967776,7615,20236289,360450,-192937924,-939048097,-1902115737,1744852993,-2112460495,253021206,1776842497,536902718,60218727,1294729400,1611076525,-1101496231,-941620990,973604746,-231957253,-951804801,1946586880,-408179708,492122116,429324545,-687865821,-1332871168,46467225,50915520,1484525086,-1345794700,610664448,-1969576605,-350191410,-465528338,1669955824,2032646,26313312,1198915650,174088896,-1509433945,-843816640,-1072058159,1744562383,-1694289725,-613606256,-1341029555,694736917,-2146965927,1610973228,1080087607,18219079,20447256,1464896064,-130536699,13392432,18662019,12641371,-1627830912]},{"sector":2,"length":512,"data":[1876408876,-1205327586,-1300234140,1177604492,-1784770344,-2147357706,-847964708,-613124749,-2132090462,-1961884745,-144497984,1195593120,1831010631,-767975381,-1139161066,126782335,-1941868484,1222911876,266838104,-855354703,-934958263,1175595148,-670097470,-1483034589,1208081770,-1429702656,-1822698141,-2086664880,-2138794037,686959819,-770064634,-835304891,56697537,304827270,973148990,1209516936,1391984671,397828,-135218494,-259919316,662298,-1072201716,724369760,641206108,-1304824832,1054664886,-799080681,-2135182846,805312092,781237842,-1068302210,277159925,1502397008,135038547,-1797756621,241602817,-462474872,-2029803064,68425902,1179652404,1041057280,27918338,2015013386,2049671712,1403100663,-1393948078,732616376,417766552,-235832343,-175118376,2111596961,-461787522,-92942945,-1174435556,1284103513,-1931634670,-422959515,1237748645,440577310,-1636128359,2070374118,-1622683999,1230119060,-1644385188,-1231592006,-1943525194,-1653029421,1074266277,671613312,268665024,92356680,-2118096872,1082662919,807930242,-763355161,-1667221055,-522547550,-678567253,-300838813,-345020522,-1973475179,-487985723,-1976922754,-503927650,-794990201,-1541035831,676819580,-420332936,-1339387301,839647968,235102416,65073210,1628455440,810160644,1377043681,369451344,98660442,1458070040,-1633259426,1939315863,-2137311014,-1461114312,-1217895270,-1974754083,1300814584,-1784654134,-2038326761,28863514]},{"sector":3,"length":512,"data":[-663479161,2082375553,-1646206472,-517328446,1465524594,31294235,-1400626734,1914365873,-1662522959,-2112322528,948707976,-1809544958,646546008,-1979549540,-2103925720,-1196676470,-1331078302,740403190,591847076,1657844377,-256233973,-1467135006,-1968510886,639828408,1662042742,818557452,-768340765,906847056,563629579,-479143316,-1864222707,1836690067,-2082731934,-1903978060,62450746,-655082353,-63008893,1083180024,1764381956,-1541339541,957122320,340037892,1175545981,1520726298,612441771,-1591326446,776671908,1293100225,-1820009812,83442766,423907476,1280480389,1411507513,-1790498478,-982951851,-1990174827,-1420192187,1519815341,-1761232532,-2049346468,-109289833,-2074044411,1654162969,-1727645300,-2040949660,2040293017,-1536648698,-1725286759,-1195134510,-1293739923,-486836256,987114234,632073556,-1402102966,1253592639,1947810687,628078828,-965852075,-318126765,-895632447,691763865,-856896636,237849230,-741100482,1550496000,-1617601272,1220067225,-806894909,1066499129,1329912118,-973330201,-514829930,-348546228,1733168058,-1316767113,495579323,909631108,1464762073,-1612346114,-1449204915,-2061966340,-1201126599,440529133,-1575090529,694391986,-1027192192,2144136235,115850339,-1619189538,579004229,-1211037593,1600051485,1914456871,-110299859,1629696823,1398686309,86794858,1343814420,50923634,-1281171099,-925194290,-1345141318,707053654,-294694582,1052286353,1291407019,644569944,-1799852009]},{"sector":4,"length":512,"data":[-1661752607,366712479,1037216073,1042622343,-706347554,-1767622728,781587448,-940186955,-268790981,1445672553,297657652,-624300523,2070297068,-1486779742,53809066,-542808317,-303297299,741283512,11391729,-1132515216,1998252527,-246401111,-449315162,-2120297875,200756720,766125733,-558603028,1920776078,-1131813379,-284967253,1383832583,-930630227,-564390117,1082792631,1856488773,302888006,914355080,1947911364,-1521716137,-1391290136,-1494992195,-915997250,-577493923,-210948435,-433757117,861660473,-1227639445,1794721177,2128290377,1034118583,1720518458,375851733,-810077643,-536802740,-1186264715,-1632022422,-1688677547,-1437332403,-1030569298,2020662490,2004244995,-1748344359,685426546,-2070864278,2012429300,-302777765,1992866978,-1142825655,-532202114,828515071,-378544718,-1241753332,2135442841,167570434,-1344947699,-834519143,-926116205,486373421,-1615913920,-10808992,730000909,-1483036039,-103372357,-769184599,-1588746389,-1353800127,-152497505,-1672577079,1610938548,-1676143598,-347088961,1803072419,-218184342,1531533818,-1578184102,1958131084,1106026729,-1615892058,320546999,-928650693,1211319127,-231259689,1124201338,-558887400,-865359144,-292015136,1479465921,1924637155,105957074,-1088987112,-2087250014,1439293204,-748113010,-144343888,-790126050,645624382,-399874618,1850703513,258870063,1699410025,2009638292,932704827,-1031452309,223697228,609460739,1207483053,-850667072,-1673815294]},{"sector":5,"length":512,"data":[-1456603344,411683098,899105706,792205067,-836592356,164799065,-2076751422,-1407567835,-1632400219,-518571256,-1128082560,-1818893710,-1038817923,-33507467,-1234577035,450537703,-155586382,-1141612480,-1846522074,-1476997533,-1627034411,913879904,612106229,1597905460,-1300661925,2035115046,1275727744,1349949133,-1651946104,1815836553,-1349945499,1386882,-1705715078,866361070,1348850101,2072404114,-528529964,1642309873,1815232412,336269903,520784490,-1083127423,-1849310234,2086022037,-1568047289,-1093439085,134123358,1122860505,1177172988,-2070737513,622786639,-1900192327,-928752449,-1841849151,-2109122524,399086170,506967196,-1107254129,64900972,518562825,-2048960369,-1939738517,-137957498,1130161523,-32062006,29323115,272929329,-402256386,1706435375,969691818,-1998270513,1891304219,1010534199,920454436,-706753463,496054263,1702944307,287607076,2038726657,-1899493455,-292615899,-403938589,-1397841030,465046704,-1695216182,-1933044753,-532463555,-162550525,381682514,-495095143,-1207949144,-264323358,2658064,1119819240,-467745413,297265950,2012777931,-1624972846,36966008,2112001280,293501858,-1350637779,1896980304,-2072229695,1343443025,1595488926,-1397820816,803139515,1922545952,-1143275723,982235279,-308497894,-440917129,1594538377,730841086,1003660867,-930134540,-163143935,-2016300419,-632413813,-1146560321,1468907093,-2018787449,-1838813448,-642297027,-1591771621,-2039766053,-834369853]},{"sector":6,"length":512,"data":[-1748026617,-1864368035,-1750457057,973106472,1241254401,-1754949322,1730139749,649595492,1749421955,-1790160159,1398002918,-2006846127,1678074199,-1519035255,-1438492710,1703990824,-1931269951,-1537815118,-957517939,24342363,1285299223,-1902643414,409434737,2038849660,1032748575,-1602101338,1553192389,-1706652126,1695922768,629366818,1062561029,1469617838,-1655297696,1984313433,27164580,100728864,50372640,18890766,-1604315643,-2145515775,638124576,184721568,52477998,-1595918835,4067075,-1654974799,2106849225,-674900671,-717914799,-775787037,-1873157144,1665410741,-1769563707,102843482,291069207,1242694753,335864112,90263634,-512730602,-1872619515,1780090465,470213040,123850866,-504333794,360587271,1080761078,1750787353,372606375,-1733214614,411312282,-1943893886,612958776,330726548,1733396367,1832676361,-1675196026,680133240,-1971152732,45657130,-659280757,-1137800318,806806264,207818946,-984036814,1221604236,-667579069,915704036,233138396,1670439480,-1326826994,-230945053,1034372048,-1882986248,-1274478529,554058019,239276196,1158751297,-1853560554,75045958,-1725675374,743084676,1284703417,-653993676,-594682480,823643656,1989219311,-916369206,402520563,44526002,1434227338,-895870688,-263472711,2142456537,-331491443,-1277848093,-261184748,-142095649,1207164345,-28304559,-1642201990,-333901959,51643136,531053996,2107889535,1023085267,453771880,-794329854,-2146859294]},{"sector":7,"length":512,"data":[1011594554,-1674979937,-89389499,1389787097,858462503,1315666837,749700592,-1493981355,-1010889786,1428940538,-1069813031,943177719,-713786950,1684881807,-194020352,-1394581694,-219083717,979309513,-568133103,-1030337617,1780836645,1508768473,133225046,2113609464,-662597536,1688612975,771254907,1175298524,697788463,-1791526166,1308641326,1786146926,1516743673,-2047517217,-1628080262,-548244969,1869049798,759051622,-320689555,-1133695345,-299413799,-1577091118,-413939725,2052879964,119539200,685411968,-1890264236,-1908269131,12586741,1470104692,1890938826,-469044323,682057250,1548105950,-1133679465,-1291610152,-1617013869,393225417,29723867,19398892,200802816,116247806,2075096704,-685473691,537447017,1454510226,-403907342,-88443199,1652954161,377668222,926575912,-489890737,1651395430,-402335303,-599842415,527614775,886446860,-1470977824,1279754056,378509531,-2104749891,12733973,-710866040,334579473,-978238889,-2077298547,-1839315546,1751190412,563250193,-284631133,-708702679,33708955,-1020250872,1895490037,56539261,972768481,263069532,-169113641,1476752400,326437378,2044082286,-545796569,-117571714,237205217,402915456,-2099494784,-587751381,-1056950260,-2142539557,1400038583,-2395424,-1019117478,-252679447,-589554470,1460984754,-910053188,-919782550,815824926,2108091851,-1963738384,-1028346176,-617698090,815585316,1839921079,119979330,685356028,-1133389104,1861999421]},{"sector":8,"length":512,"data":[-1942290232,452856494,-1009127811,-796734750,737986288,1531106729,-1160457748,2142155675,-1209024326,52478739,14693901,-762331284,983330908,-1460380964,1984697004,-1945424935,4067126,1253911073,-907469633,769462962,-1324334425,-1969119577,2108516780,-827515614,1147821745,-786216508,714134312,631653569,-856429169,1820966990,826822816,-291125205,-674462388,-1472933542,-399888296,-84199269,1884990505,63210977,405228739,-1436446622,-1699022311,-1670768083,1847277098,487006656,1745547050,-2116390229,-1468260729,-1446038982,-1636660562,134347595,1773358767,180857838,212265346,-1664594969,-1499698391,-1574779871,1083056904,1370335362,629752395,-1987448183,-352019418,-2095472311,-1507259870,-980770144,-413520724,-759124327,-896876826,-1264277854,774759128,1271065336,50028967,-2099198004,-1003441731,-1184400068,208429775,-1558019167,1087255308,-760255389,-1188326576,836985046,997101268,1919235765,1849167331,-1525798482,241406802,-1549639230,-1192450674,-825897213,1018284846,258200385,1676306494,1291638056,1681919978,1091578454,-1869785850,70847554,1383482513,407217716,1200735337,-1398146784,77145160,-1570908175,-229961052,1284703418,325802292,-75154866,-89632987,-2024762364,1377068306,350564682,626086484,1650218414,1549178251,-1734998663,372079206,-2053020071,-1184081241,1952225029,1586988505,631634300,1712423520,1516266008,1133959341,1672267315,1497778576,-1953655146,1922983577,-1630524202]},{"sector":9,"length":512,"data":[1756722817,443381156,-424564118,-776836070,-1167189146,1873143537,-1673066048,-953563023,1238397852,-663380665,2006828905,-1639478816,-945166215,-1041335499,-159572185,-1776310303,-536348164,1746010838,839549472,310649064,-2044630958,568881690,-1466817912,-1440183883,814457544,-1918678838,-1547113928,-1727381361,575050037,1318266025,-1792726718,-1104056718,-854078593,-228071988,-1392834148,-209552347,2110663358,-1996501392,956075892,-1889254190,1219684155,579281845,1159087335,792252278,-1333883875,1035190746,-1346299929,1008017156,-1205413831,78897337,1978534575,650246128,-504923262,532776444,952266626,-1661456833,-1041303101,-2113568062,1043205073,-510501960,-1674134591,636881111,79758840,-521161203,-1411898180,-1048588699,708185974,-1363057960,-1337039347,1482261474,-871015198,318347312,1980694478,-1051611013,1289096134,-54431312,-351818365,551346513,-882853352,415358657,813463049,284886331,1446017356,-833339199,1835403695,-975616082,-1783606023,1527184065,1620044820,229556722,-491762074,2042939273,-2080587277,-257991811,-1872713888,1712242016,1625069631,-677594629,-1408014834,-1056808735,1646659864,1711961648,-2083901364,-1961981695,2038642163,810650649,716375782,-1670048360,684068767,-754633832,419061979,-322881140,-1049303507,-1343878996,-1509287328,351035641,1717606604,174537090,-1624225850,-435185471,1619512343,2121467782,-1741763343,2121300962,1568263007,-1128140752,203261452,736697530]}],[{"sector":1,"length":512,"data":[2038680472,196289797,-2040478650,293233415,179356023,1964009062,-435319615,-1055549389,543559256,-1369407208,1459078669,-209356406,1851983539,587565872,810077215,347701872,-208440436,-3776341,-2112785522,2095380665,1626708016,2131418086,-217723600,248799362,-1100960442,809813519,1992914247,-1509152382,383410343,1616966284,120535490,-1046993453,-435188128,-933510630,313623161,1220652364,1620682251,-1482290820,-1509032352,-483286408,-1255115652,405041924,495125605,-1262389876,101217031,-1499058098,50834332,1446628731,-591329744,406742536,204259641,-552063546,202772866,204521781,-2134794106,128200779,-195770461,1625490952,-2121524356,1124471904,127342625,-194984893,209852470,1982889094,813007620,751176140,202494379,225730691,1489055174,-2087512013,907555569,1175197889,677953987,562170648,-2100982764,-233293983,811854017,-1918696330,1635916896,1945835554,-486025316,-2087178138,-600802383,202764674,-2107613051,1518733569,-1944786751,2019755746,-511556048,96874611,-853314717,1728529930,-1944928294,924943158,-1732164328,-403269155,812511618,935727022,1606264371,1739718192,202596314,517148451,-1093461955,972079503,-1262252520,726010799,-1316874728,307697698,1624833446,1729636540,-539336471,1206727464,813490949,-1325433990,-2112341113,-1930027161,406466947,2072382511,-1944749520,85221521,1644133891,-200533457,810443138,-82863046,788054453,415363096,1620773917,1406239624]},{"sector":2,"length":512,"data":[-1560003024,508608877,-1195253364,-1840572378,1624242959,-1463416660,-1944474528,549216450,523731480,-1048329482,-1051620324,1175198384,810799490,-175763826,-27531071,1175304112,-1393420511,1743734286,2079530562,1624608545,-2037639284,-1945067133,1566671514,-1866391504,-1040511970,534872832,-934834804,1561868323,405700994,895583014,-1559895272,320389623,952194572,811361028,1015333420,-697204118,202691680,152617467,-1372564666,-1886445284,1175370848,92942435,2086729667,1627194117,-351527116,406282626,1153631891,554837040,-658382129,1825380413,117390468,1580221635,1619855593,936477436,1635978008,813141019,-171570410,-1944350527,-1040696965,-1775206936,578757294,1909128312,1621575179,1925149528,498067222,152854758,-121521786,-134932425,-2099556649,-1836311247,2093444057,-972325840,128475271,-620797341,1796744345,1623906979,889983708,405188801,-1874655514,-1115266879,-389979018,2044467257,1124507885,-2093577195,-310828895,-619964512,1189571533,1254583239,-1559911376,349462713,-1241950196,-585615821,-1944393535,67657903,-621447677,-339342423,1661432928,227815521,-1048317562,-206182036,-2100809609,-334752543,405139552,-775748278,1626067137,-687074536,404865798,-1562279270,481539556,-511486452,338964581,1099041548,234756136,-1243261306,1175987843,1622442757,137384312,404751883,-2101148460,202725472,1396900898,2101807152,-1048380179,-1056952214,-1808774976,1855074032,212636670,-511451770]},{"sector":3,"length":512,"data":[77592453,-1649665989,-2106383107,-1811974975,1333986312,812478657,-918593172,1622018502,-1694103512,202483808,-213711683,1793367957,770779106,-85109224,1061965385,-1610946743,1839177380,875592563,-1048179689,2083551600,-140571617,112881075,817975171,96930836,818016579,-1917421961,213659753,-1872693626,-2104030181,487332705,745387003,1623376646,-1233925272,-255777587,-2100809651,1482750369,349877148,1623376644,-837273112,180161558,1635923590,1505060726,-2096752589,1623262689,254292093,974663686,1714859110,812425409,404236476,-2100984311,-1335827487,-2099049441,-1251492127,-217310791,405418177,1300432678,202847280,-2050816041,-119089785,810936416,1929777112,1334026626,813412818,-1901528612,-1484585193,-490526158,1817563137,867033422,1940567457,-60319805,1888901892,-35927680,2014276253,-698222118,569923454,266309383,-1036624159,501576527,777264043,-1850549009,-1914092284,1382055472,-1731111740,-688343028,1756665199,113297483,1063022617,853653967,-1165380029,-1758293883,508690017,215065045,63884209,-1439459159,980922403,-1113240305,2116722653,460723346,-39361368,-1212655160,59567227,1709159599,321274116,1797378538,528397031,822810397,-957380131,-1661090568,-340020303,-1084438297,-2106052494,-1173150879,1856772133,636240740,-974773913,-1643097423,-1558249957,1775973065,376955218,-579111357,753915714,633189153,451877059,1541935573,-1954093079,-870123905,-253953834,-1556242439]},{"sector":4,"length":512,"data":[1658839598,1542602119,377327820,609795074,1522972276,1644940358,-1318062117,1281230048,789654716,496572716,934350010,1198965454,-1248739626,-1242733373,1678950602,638184840,-1609552759,-1694461822,-1806270393,1311521590,1287063420,770117443,-333251358,971738432,1524717654,941436248,-1942681464,-950275934,-662898988,74829923,-85233674,409638829,2030676997,-2125416705,-446455021,-320154520,744331591,958319876,562977462,1887490998,-1840893646,1571572970,-1232523841,-1995956196,-347832746,-789896789,-1145543613,303718581,210461384,-509661064,-664019937,1130790008,86673900,-1830588894,-729016497,-117235980,-1348619407,282868839,120778540,1388461730,1016343717,-399392655,1636886768,1096754938,-2105710964,-210768636,-1096743460,-188535711,-108411590,2026381347,-651340980,1625353623,-1880699445,2142662550,88952140,-1889825426,-1905693766,-997407,129686370,-247675373,1499429927,-935265912,-537407782,-930326309,-1376173840,1982959888,-1999945454,69362681,-467350079,973484265,1381279536,-1320554105,1450406193,-1358937206,-2125004652,-846792204,-1970522369,-310676864,-1443353135,1598401907,-698420819,1475190322,-345971221,-1065896245,-908382261,1065182594,-724273622,-1502422326,1317746266,-2093574227,1193522983,-1918129150,1816632155,759539547,1831821153,2027138382,801844662,608098447,-1767477663,96519735,851969926,-74051617,187333381,258793153,1107492507,1358357026,78184378,1083039659]},{"sector":5,"length":512,"data":[21194140,-12578236,-536794507,1509388090,-1597703114,1195008401,-840540916,-1671326015,1132033853,-1153942968,1766112444,1300351619,1804758399,703707412,-1489040952,2146941749,-932545391,-657241538,336096970,-324152913,117567366,-461735444,-1605223432,1720985324,-2051605415,1241984492,-590375136,1753189269,484943301,-303243286,-2005495538,295400500,131005322,1542993812,-2096867489,-701168531,-987886280,29826763,-36840821,-1286015016,1672744088,-1881554630,-109977740,-25381808,-2024942878,310159439,1083150851,1476296637,1256203967,-619649270,1047905599,-692825695,-1846636179,-1306955629,553453999,905338579,-1982252484,313204399,-1075861761,1202158057,-1162641209,551569223,-776925343,-887960250,-681211362,1974082159,825781382,-1893433397,-1016692000,219103457,-436201809,-2024512346,58925410,1273671941,582702502,761175873,-490314004,-515024192,-453006903,298581367,-874773477,487962304,-1480453282,-783114058,-1831050416,1005568875,1277472367,-135679145,-1743769084,828562982,-710643138,-1343792244,-911375547,1332496310,1193251766,744535690,974698500,719814506,439074246,-1954206631,680018498,-2012209451,-1465459933,2144751235,575939647,873248864,-1580105593,-945172060,-33594404,-2083873597,-1012737817,716275538,122025402,250315737,649552138,167604209,41612897,-729242952,210581576,1353275308,-171793327,1121206605,1292864789,1607754788,-1179954412,-847231515,1156557284,1155710655]},{"sector":6,"length":512,"data":[-1821460897,-1563108769,631929493,1610752487,926710227,-2042471781,215555870,964238776,1183785465,897447977,746223331,-1927135791,-909702494,1950182004,-658513199,1969321023,-530562743,-436076655,451815447,1056775859,1192053267,-62484660,783665159,9445995,-953396348,1863470667,1742774656,2070165365,-2053913943,1514835704,-148883438,-1602036328,1593682913,-498354187,443075198,-834542671,-2111864848,1707328560,143523718,1117393259,-1067366089,1663894768,-747394238,569875272,-299876735,820766523,1003282446,-2029962955,1811120405,2075988250,474222591,222612784,711288363,-1881374599,-294618764,1960089175,381256966,548654120,1880507337,289985274,-966606721,-216659614,2136825881,-1107016599,-2023024230,-1777182683,63446976,1132487516,253366188,-1375570064,1110447868,357630950,442414011,-1274148871,189852022,-1513657401,1408749610,-221576711,1868923813,-1512932873,53850631,1761202329,-877390508,220967945,-1366262583,-755304702,-1205258783,84108822,-2111568105,1537804184,1608159353,-465048518,1356926903,-1223513943,-1216767388,137000940,-575946328,-1308441252,-844261304,-868597661,-855777043,-595108607,-2046833181,-64590703,-2142363873,1711395593,1811021255,-2003372861,-1748969715,1456779704,468196055,-728943666,-1922391759,-1668896670,34838462,814742455,-455769885,742038660,-1779162881,1441203196,-954065729,-37159035,282079022,252176242,-2221038,-2005515749,-1251223468,1730168923]},{"sector":7,"length":512,"data":[31731965,-625178971,1744857773,86531872,1205132132,163707936,916633690,-1869748510,-1437947743,-1815821758,331606320,-1437989850,-478022246,-2127170815,1421901401,1360805712,437736132,-888807807,471721025,-1861876562,1640259946,1004534297,1381576452,418313992,420579204,-717257615,549643535,-1748747972,1010661436,-1394466266,1488288341,-841981716,1613588146,-611228557,963172068,1854822284,-1653398147,1330005346,1250596661,-1650560524,526009549,-364276818,326201392,-2110761081,277570790,767524394,695123951,1316229740,1079951412,-929985405,1226007360,-1536241521,927651540,-1559768549,-618162257,803692758,-412154661,1529296453,153146267,772560933,-10788294,79761640,7152085,-67765,332857444,-872313080,2097371721,-2144009935,-78362311,-507784431,1025646207,-1564910719,1618496500,646251274,2143312010,298801291,1180957900,1232534807,-2127155330,57505027,-2062938464,-1338638849,139115075,1626322796,-2071614560,-2012346966,921501784,404699142,-400296442,-1213827033,1540558436,-307854983,1531782755,-13621875,537853184,-1514329029,1569850303,-402739679,-1903184048,-755040323,-206115929,355807688,-4026582,-803644595,-1178073189,1768867000,1237389440,796524642,451886258,-1494838721,2031243263,931752177,-293515275,1430005810,457962178,-1381578277,2140886665,-7115620,509533190,1288779937,1377580000,976745002,91006453,803848462,-1327060643,-1051968257,-1438682616,772211171]},{"sector":8,"length":512,"data":[-47303568,69380655,902588430,-2093101412,954479774,-815931140,-121427007,-506891163,1066618350,1258620021,1008434465,1764530561,-1111358574,-801397140,754622026,-1370243492,623017770,2066699271,2143123490,205783573,798636315,-1922520373,-416789467,-1138817451,-963999904,253862731,-875006197,1268806587,-2105679152,-1294704147,240781212,-1296117673,1694729580,-1754063832,1256223595,1520225297,222501355,1921325055,-1816853862,-1899826062,-448360999,-1155444385,-2109038712,1476118867,-1038696204,702862764,1528854793,1919943554,1480437690,1188988,-930480393,1682161976,-526729092,-1576090267,-959923878,-2141533198,-875317457,-911395259,-1456003218,766170542,-968419636,1562460786,988632550,-1027265076,-739788556,-1371818779,-2086390979,-1261108370,-506010789,77974647,-706717553,617478104,1862835112,-1096373074,290979782,2059148094,-1695772070,-960644463,1934052678,113346037,2089992398,-930905296,-569048053,1797559679,-898629640,329264056,-1594769116,-477484672,1162610730,-1529840437,-2016247557,-7966484,632555545,-1100772,1565531305,-1319647819,-1952546782,1789031490,1759641454,-428609475,1266612024,1328548708,-7994795,-80878507,-507038656,289513694,1626764758,-1917771845,553921556,290978500,524873868,643446063,-984195225,-1673337086,-917955981,-1477212067,380172432,-1866855662,1533287100,-1676558972,522422008,771550928,1953383120,-2038691054,270425538,-1001054463,-293648294,65077488]},{"sector":9,"length":512,"data":[-509946687,292564059,605040264,-1583205576,-2084040805,717387003,370805500,541245619,1442853870,-2105144127,-1925429978,2006911574,-1518844616,-722900231,-758596100,-1153808455,140145844,-532039649,-1622408227,560228681,1206067348,106500406,-1541908191,1726839027,-1312719801,522884749,1005501962,1034698445,125358222,-157475906,-1416631777,-1302207150,1349010702,-702402200,-351256201,457969983,-1672968491,890365056,-1288474106,568373533,-1683498775,-1063983788,-1532276445,-714310332,-345414576,796846345,872754949,-1539643874,221670031,1462418194,-1029333213,1554592366,1550438324,-767886727,2086955789,1774048484,2029286828,269692207,-1272963203,-1721328830,2010903437,1289743613,-178177371,-458371977,-1868685854,-1672770722,880312162,1783496407,-15966960,316624311,-30283647,-544857975,593497362,108422848,3714732,807001019,-1778141565,959355625,-837831976,-2097578914,-640806768,-2073637976,-2033313276,-1088987347,-37930798,586004317,-391406052,-834728481,-1046004014,340401625,-937686783,-1306928704,-604494229,-2133067754,1446817893,756947484,-1878921970,-178564562,-458891508,477387647,-1364273127,-1872016579,-1367471179,1875690116,673761924,1416733994,-311031550,1231925529,1722668623,-195454100,1984251893,915402180,1190869725,534495131,1629161365,-1555290056,1448372643,1934832916,-1343261739,659484981,-575895209,1617468706,-812676577,1041178159,-1758061513,-1376069037,-1904346429,217141822]}]],[[{"sector":1,"length":512,"data":[-1822717394,150339553,-871356132,-210396479,450571950,-1116738147,1624227807,1388429803,-1815247617,-1328765354,1872814329,-760380161,1885188199,1631583440,-1263876557,-1344948707,-1315476750,-261660112,-261680040,1995460698,-569578237,662867108,-1499005452,-470466633,-512822758,999398798,-2061727184,827764426,2027332443,-1495667095,-579955480,1456970331,1500363263,1987522887,-1489917162,-1839384649,-1931165119,-777826835,97035007,-876537532,738180533,1337918200,-587429087,1934684144,-2091504530,-181194899,1584219262,311189192,-538370662,164231414,-1686071798,-86909010,-481554994,231277043,1483825379,-1175604358,311391086,442898963,165296291,194165109,-1503145153,-1742987436,1063003677,-255053189,-1777698148,-541501388,-637901025,-867893485,-1601569863,-1002174911,912771760,2130347249,-54324928,-908208514,-2015122282,-987615991,792387565,-1810744613,-2146827751,-410063347,-1100229648,-1623906263,-1162263597,352527022,1867079780,-1027704231,242083768,-182686858,1092361082,-471340553,962910471,352671001,105580194,-1588500690,-1444053471,-730091356,2137342540,337428123,388453234,794820075,-1051663191,963995375,-1239231451,319896831,-49086102,-1257745534,1993245051,-915956988,138225674,269316628,46725838,1239923902,336084700,-764384430,-1760836619,97092669,151667297,1480548170,-133482290,-1835696152,239655467,1614911324,1979817793,137081009,-1172244745,-170842900,105906871,778356833]},{"sector":2,"length":512,"data":[-1887179645,-6350097,1979754715,12701427,-1619078529,2015827589,-2026377303,1613942349,865706511,971155442,-1945492748,-1688141207,261051005,1698649210,-606349937,1767375311,-1447567784,-1694559523,-424993394,603671432,-326742781,-1406416742,-272187967,-1865417161,-1813703699,-864115215,162884742,772847653,-1659435723,968876029,-1660993705,-1975206309,-734663546,5903405,812876459,-1818311617,-1092533956,1598947221,-1680673849,940527103,821988753,2132912588,30319847,2005425710,-502664750,-432418768,-470840185,-1326918245,43904588,-27359060,-1475672873,1971311361,-805513727,-1205532449,792581074,-1697579874,881139250,-1149092007,-60735425,-625578416,-2084776388,-1620522226,-804172861,972513645,1672084396,1671477749,-121107682,-1920975841,550097020,-559668904,-643988893,738389070,741934800,1613844690,664853517,-1152467335,-864254773,-255208778,-195516880,-1062281611,344295230,-2139438180,-1855039743,-2092926528,2053650211,80798822,617892025,31480974,-1521961321,1637886720,-903258061,-668967087,-1156927002,-1836226611,905895738,2030800679,168550951,-1845159412,1431883937,1352569618,1798666655,-49806340,947609357,1219246646,2040505497,64371932,-1964238265,610680402,1453715621,779359250,541589487,-265449513,-1634429188,-217935669,1760034136,917426633,-334713492,1793986073,-209017664,-148615047,-540642583,866907495,815594427,-233111697,2066821971,-2105737766,634649195,-828159174]},{"sector":3,"length":512,"data":[-2134792240,-561500099,-1503120061,-810320552,-1113977209,1605422702,-552871467,640084045,-154627567,336849912,872395768,-2076960658,-1450581186,-1647005125,595845149,-1598073191,-75214972,308496720,-427977919,-1820338089,680784876,420750067,-805843752,-1708599922,1446443101,-1215444601,-266663929,800173344,-187952560,875956717,1907144818,251760737,-1248999929,-168458234,-775505405,1725063681,-1782142449,-297541119,-1062287709,1538765830,-773293448,1554004168,1466037223,-1807733597,1773201202,893389660,1391540778,2130199823,-1328281921,-49435888,1731595561,-370682398,1303274395,208925137,1316812646,1945771363,1775683690,-959366544,885353715,1055204299,-1518096775,-2120406924,553682194,421046596,77645464,-1126214475,-1904670606,471408273,1851236598,506590820,-1785759463,-207628641,-1964544824,-1209300540,-455208636,1541953018,1400136913,-838710735,1427655158,1771629462,1277221378,1547491313,358087265,513117523,214400814,-807127659,368374119,702232478,1516792344,-1265491695,948079285,-1643099558,-267161609,1308477673,178386203,317210937,59824013,1236734630,-951751552,230430759,602536033,-2122178276,-528804775,-1634793542,2102017054,-1980643575,-532093999,1908577336,-921359896,1872199849,1543700255,-2052184051,-762993454,-116378524,530993296,1472186352,335913445,-925275767,-221408175,-1858728445,984103793,252064342,-1795180929,1200746375,-535598702,-532900725,289228954,-1974203247]},{"sector":4,"length":512,"data":[927519300,-99266016,-83291210,83169880,338565669,-1941867101,290012488,310510121,943083849,1033718417,1284916369,509241493,-1350069773,615619140,1409491143,-158819946,91240700,640245921,-138983251,1825949848,199885799,1551866664,-1973936995,-113920018,736593053,-657481903,-1272332186,-1341231399,1583961164,-1903971751,-1408669889,1800557913,300548204,-119769233,-1951694620,-1981582789,-800929814,560641183,-1867164708,560823097,-544928847,1757114585,-940524766,-1332133139,-272229498,-67883334,-1529964779,-67684698,-228181919,-515596324,1187386327,-432131869,-170611645,500443627,654411359,1330628962,382456852,-275943788,-73708942,877346188,-2136115676,-1802547403,-1474532900,1027539458,1265225010,-382598482,-746469126,-1543153386,960789856,-22274465,-213351901,2095649243,-780077831,-2048320072,1007754031,-1619269656,-1591419207,-1535480794,269270567,-1336802516,411899148,948954610,-1621906256,-963811336,1635773761,1070792028,-932141118,-1258170342,1908550145,-696333168,-747273200,1201134983,-1030660891,815859048,43205970,1308924615,-391497024,-203210384,-1604300267,-371515894,-389642941,-1081140210,1552617382,924533055,-220172295,-612614497,-2117958952,-1403979154,76546993,-2014593398,1698843029,1920484834,745119807,-646418943,364121624,1258039350,528841989,330952822,1645659258,1765266447,154882128,789212503,-1671634223,922002997,1402501011,-1463853994,-1724319435,169201359]},{"sector":5,"length":512,"data":[1947017535,908046067,1022996467,328228696,-1084099209,-42553859,-352746876,-14004128,-869931795,2126233638,-508702402,760185837,-433211904,1625801171,2132540612,-100814160,-1209826428,719103954,-822335170,-26771756,1084803485,1091094497,-57849654,-2093209709,589278743,-379771142,-1115081773,-1861301373,1664202692,-799895263,-171939319,333895706,507756024,537519232,1664133380,-1698476227,-1376113710,320866315,929393771,1538266063,-336900647,459301002,-876140735,969665725,1783430992,-192067112,898563924,1168755726,-418618209,-1551008774,311311732,1594539170,-1051213915,1366538074,364873686,394539359,94472958,2090172187,-1766786353,-1275927018,985773942,-1436878517,1087134057,54291215,-33349324,-1427635398,765328110,-712973991,-1598429473,132528431,55456676,154261437,2145238088,-1927573344,1665366923,-1900101453,1948728525,-261530028,1202509760,992666712,71201699,755254045,1140068654,188602573,-578002497,1673309305,-1136585157,-687129123,-1202066076,-1131718380,1284092025,-966127274,-156098175,-907215828,-1525408406,-911926599,-1300557829,-2068542414,-1372247993,904227402,1317191275,1264931533,-374468845,-1054919919,-1576373783,1590055183,1079053435,-1004870380,311185548,-1310231195,-1758009301,1215540671,2044581968,-1294596308,1929336468,904962453,-1661113313,1243582396,1155483358,-1350930387,1921757721,611932598,2012610633,1003256606,551299668,923579189,275671825,800357742]},{"sector":6,"length":512,"data":[-908023800,171420174,-710121876,-505842484,872598617,-502869621,1547321297,583297529,808175573,193388779,-637791074,1201890376,-256037387,1461768642,395775264,164769752,-73512473,-151529583,-1342262629,300519707,1661183342,-484139251,-1765232911,-1007583117,431399168,-1659836494,2121589457,-756036865,-991877218,961573598,-1136738037,-2087184104,341155852,1352930610,691481320,742966342,188563183,-1779044290,1241824353,-2100504986,649387285,1367776508,-1704884616,-1987632383,-280433752,376753465,-1727806199,1778391242,1503204244,1380821811,-1195407339,990958452,-1160747249,-1753625584,77086110,451472699,-1036202725,-1764949298,687358431,-154836202,-1871986747,-768160894,1657166880,103743148,-1696570334,-791015417,-317045797,-995286562,-1208758944,-355654148,2108726005,-394969905,1351667912,1061862516,-2073167299,-50653011,-281746599,1069271795,866102711,-1661084525,-1446980740,1336884789,75267709,-1739996170,141809475,-2055844644,-1461725124,-1414040124,447377028,-200625091,132145384,-2080520538,943659397,1558365060,-46869481,-612641921,841476496,-2036398579,-285821513,492548411,-1420313886,129652872,841011985,-1684991291,630449217,-2004722398,-285147899,1194721640,-1236420330,-246694755,-767492209,997380586,921396722,1272352761,-611073637,1285962897,1824440923,-1151662329,-616454648,1839084960,1612412646,-1683660598,1453808461,128824987,-442788146,1800924563,-1228289036,-320028741]},{"sector":7,"length":512,"data":[709712091,1959244659,-1209298034,1336613576,-400914336,1021329496,-227550161,-390600252,-428909372,301102805,1650054764,227194547,-414830704,-1197268668,-1126013695,1642777153,1222021907,-375952800,1099973633,-1782482318,-448600548,-2126891696,2146928846,-1815806745,1063042121,325791917,-427728152,593520114,628154607,597837504,1583532375,-197369218,-203146817,1585244717,-263295351,46425070,1065755107,113268911,268440561,847247470,310667629,58483714,-143291364,-1316559061,-1584271346,2013527612,-1770842880,-635308464,-2079267466,216904601,704640929,1188362898,894780842,-1709703470,-550400426,621268419,1635821044,155621641,-958281321,-62412477,2094974970,887520112,151515954,-2137478412,-1149547402,662255961,319106038,1186252464,95990286,1042783419,-1318959059,-259413180,874484554,1701199559,1787599202,-1212263850,-1377767088,843416602,-1479624952,-110230633,-152881794,-1909332270,-355958732,1794717980,-1741235761,1863866494,124512775,809569763,507693611,1150515980,1771657588,-1616692337,834814899,-2021133145,1077130246,1251864681,-1256251254,491591965,2082491788,1270849570,1126726080,-789299608,136603800,2024523795,1173193640,-93717088,1786527833,-1576791221,-1638434902,1888246415,268149558,1376777432,1146696402,-175604945,-1332187043,-657257986,566326464,-1014841654,815786932,1032926517,-1585684927,-216042911,-994696418,-1700966872,377625806,2022035482,-645724914,-426722729]},{"sector":8,"length":512,"data":[998667883,-747856318,1031795375,1006009529,375519017,1920681136,126785619,1013300788,-902492533,1777087296,1156351728,-1871272437,476548729,116096281,-460055711,342932080,201911620,149808181,170354775,-1138296768,1041194244,-1601310602,549359626,-1348398629,1535171364,-13428002,-2063391984,1827838303,1205137241,-996663728,31477764,2089894232,-1823007248,-2055327011,-1371780835,1382188566,-960710378,1074292706,164584559,415923701,1913822278,88498560,-274004090,-2055490965,7203203,2147001958,-154363518,-1645849090,1273022995,-1332701806,202596448,1805668542,-1590078971,335648032,1772314724,1763317860,-1913332192,692098495,-837121160,734014207,1036905605,-52751032,-838947821,-1740519583,1694530630,289805984,-1995589209,-199192516,-664858545,328667367,-864324668,583807207,1727928073,-2071431569,-887516664,1015954832,-503571727,-1372128114,-1015826209,2040905719,-1603991865,-989203104,1116082636,388331031,-2021349770,-924072303,14262767,1256083850,-504203035,-177797307,1274801297,-63572386,-787499116,961584314,129659284,-1711764213,-1933073055,-1072264474,573880317,-96769785,-1741181683,248094346,-1873602352,-333803008,75382309,-2092713251,-1562474135,-2136565649,-2114979847,-1184237213,2086195282,-1863681872,-599876780,360682318,1341266612,883435145,-2128605368,-2093928308,-1453205331,368161786,-1714617240,-2087144455,-1390470781,-1498386954,492537116,272706884,73802820,2019589168]},{"sector":9,"length":512,"data":[1022745323,-1951644846,-962395531,-1923205518,-965017038,265545472,1043998582,-1861174897,-56976486,221803820,1376782710,104977858,-1336298603,-654767487,1184882833,-1652117008,-1811771227,2054377622,-2003660454,1552574830,-1847002575,-812436837,1783325510,-1956981695,471108867,-1532950207,222253384,-1522370931,-264308368,-861775040,1110169296,237623451,256188776,-1831633740,1811535587,-67800303,528270072,-2005094327,-735254691,863111293,-1279797833,1967267153,318261881,-1487590045,-1987353550,65224177,926411711,202690022,1161921062,1099195359,220987583,-2049671546,-1446502676,-2019531690,1108196129,-2031219186,-1501823098,-516694580,42974452,-316091441,-1995944928,-809903865,362054415,-573749249,-19358954,717600408,602676506,942293288,319687432,942064065,-20451612,-1040453310,2113138889,684407926,1242686388,1109198307,-802667027,-1982992265,1105734692,516673081,714439943,1618587388,245424443,1892806716,-1091195888,-1494722930,1510008643,-1677809245,-1258239247,1841899061,1955857293,247795341,-270402982,1384785983,1039394814,-1640850269,-84235517,-2109769517,27488215,-1160156769,-1097986028,-653512684,2009613446,-278663464,25804282,449118650,-2033446282,498926769,-1312924236,903865915,-98522201,293643722,398481177,1627711482,-172031663,1709309135,1196683575,227848272,-170610330,1091773456,-683802210,1718357037,-936434875,227826230,1711513191,-1781638229,-1610372365,699679050]}],[{"sector":1,"length":512,"data":[-773567430,1190708080,1001701031,1731008288,1832635748,-1940576833,-930108292,202822585,-370613179,-964953711,-503479771,818937047,1779508235,-1162303836,-1906521695,-549724177,-234222317,-1709639181,-1996396948,-1600419970,865861428,-1895293928,2017310337,-1729014504,186485314,66816797,-1346543411,1128378024,389777987,2042900505,-746993805,8978342,1905423271,-1484094912,-1952787926,-1766686322,-1900811968,234654896,-490343644,800678576,-323163641,-1155003884,-1115287618,-1216594095,1430469180,156809749,979926817,-53393260,-330918139,375750084,-355937541,-483806512,-1237132564,-1509820465,-1818807766,1329824360,-1932406451,-1154241121,1362042430,-786531383,-1851555803,111727896,323023192,-1634964027,-966342426,1127820498,-1637036355,623700563,-874521433,-1958853754,-100995406,105285778,-817837884,813962874,859612967,-278774159,1369570002,-519841209,517156572,-1198899973,135559118,-844953962,1159278976,-1376273481,2007335407,2039768503,2007740405,-282560291,240159690,-537627061,355384313,1694790316,-543523970,-799288799,-1117349100,-1639016891,-325031118,-503108054,1986380898,370029680,-283103060,-903513329,-39958826,-540556368,-503221232,-1965016957,-533157373,-702091054,2059805790,-823266405,-1644157134,952336266,939416373,-202043491,-401695261,-1696749129,1315191295,986985683,-907416443,776936256,1827776169,421382182,1094735656,2061492770,782072609,1891487998,1863779225,1378171638]},{"sector":2,"length":512,"data":[-1576510539,1377949857,147701376,534477893,-1178532056,-1078911491,438062843,-23475187,-935712448,1478230465,2136735521,1101967940,-1602884566,335441412,157669943,1055944977,-913759340,329546880,-1432398986,390557926,-712749593,71866452,762979530,-1153959201,169668745,1161555614,-282187802,1178683020,-1997219842,-1503442523,-1037929787,13226501,-1045688072,-2005452960,-1859856803,-1845812668,-1520885279,729740802,1277805054,-1113284936,1612345561,2100178607,-1632792375,-1632790511,314816458,-1236249812,715547797,33755728,-1262969750,-596641911,-372977707,-331150423,-908158607,247209827,-1164406245,1149859832,-30850176,-165394707,-1643626350,386469734,1882048263,-770625952,-540352558,-1074340417,-1703645338,632925759,535068406,1514405500,616905672,-1338886053,-1323027493,795889355,1858168738,-1169794118,-297496806,617446522,-577723983,-499826900,59454912,1803632871,493750038,-2019325927,1424733752,1686664918,1685133045,-2024587731,85418433,-1837493194,2025654510,-89593711,1548939221,65838567,2091145253,-1881891668,-791456875,1371703471,-31845229,2098412856,-2120330667,-1855735580,1204291132,-473925538,1145272377,-1338015280,-1995047378,30558027,1252040067,1274704723,1079296677,-1354520815,-782241842,1425895381,-837860953,1359021255,-725692959,1309153312,676312092,25300328,1066699719,705542594,-496244068,-817941255,-1889948433,1490218633,-1152089568,295240021,-1695400006,-1758983015]},{"sector":3,"length":512,"data":[652327034,-1257871540,873868019,1293291911,673173118,-247395079,-2130971486,-955187820,-704683230,2085253999,1667013884,-1653517522,-475960901,972660018,-340179921,-207793578,-2066690763,1558952038,519681789,1842574352,1646964359,-515256361,-1764055735,-1980688136,-1682968009,-1256489075,-1236022526,-679541240,-2029699475,645478271,-609319586,-982402301,1804426071,13810970,-131344473,-585457255,-741737496,-1225652536,1545941001,-573406920,452728552,-549513670,1051706649,2091199689,-1190243189,873300732,2076386066,1776008675,-776485124,-1922975038,-642401977,-1256953555,874436297,2000357188,-540075313,-1845489829,639300550,102101415,-1615173580,931560545,-1833226485,-1336914449,-1008522236,1523938715,-895354132,1646596416,859506169,2103110615,1800844668,-132086217,779237360,1863137061,-777219207,977302655,-74866922,-750712974,832582555,139171777,-2133885030,-1245982938,864537860,-2019038816,-1759087793,-1785022451,452270993,-777033607,-2130520974,-1251997523,-1245581773,-882962696,-178254291,-835982209,1791732487,1733204232,-1665281248,1605043313,-590865927,-1042281852,-260564738,320152558,-2053669197,2142126196,-158385497,-2096100929,63922916,267624328,-812132085,-404356758,790717272,-1995837021,555791118,1175931702,2103138018,1967179812,1061974296,-1204260279,-1727479278,1553580708,-2110366106,919787264,-303103750,157498558,-1136691231,-901755180,1658982420,1164666877,-2094804474,677020332]},{"sector":4,"length":512,"data":[537477245,-1857403786,-891025756,-1539303200,1321055708,-2094743850,1064711708,-218745876,782585260,1999537271,2058000148,1169141713,1535367519,1019009311,813140457,-1092550302,728572547,1619636896,-627449664,1983493215,1501205754,-1610489076,1370419937,-754791697,696235839,438841921,-220127241,1238565582,1755806776,-331552810,-704210364,1480817804,384535464,1563765400,949919214,2007464405,-1485212003,-2025126929,-1340738053,-1505584888,-292966186,2010836631,-69637932,-1092888234,-386161577,-703134295,-1981957009,1357037638,2016725943,-909630674,-873922799,-1293481563,1066749068,-1681155295,898338982,791412844,-629211781,-1487043324,-1331084839,588636312,941396982,2003770620,-1787295628,1735476240,-467058499,1963218814,1807503076,-595100194,905630077,-167339673,-1368334452,-456458010,-1461403670,-1046324864,-67919916,-607031223,-19748068,-203692614,440932971,1075253064,-1433650368,2084291850,1817363339,-1407341817,131431046,-1000985836,-474242031,-815203730,1101136264,910270910,-1359537453,-2050429132,-9663359,60871212,2093609858,811584675,-1399452446,-1863539948,1008713259,-150628731,-686270049,-52615581,896969508,1437814750,-2004538889,561944673,1590903468,-1796447545,1922617912,1080907383,-416982125,-1711720452,1043392251,-569013646,1604165375,217841521,-406772732,-2063147237,395265729,-1929054341,1120011345,1083457794,471878632,1174151237,270890016,1779442238,36833299,-259974591]},{"sector":5,"length":512,"data":[588285677,1308605261,270938232,-1224207546,37685267,1619069633,-1934081902,1084086336,-1740597848,584716327,-796951536,-1203726765,1253064837,270838816,-553118902,147130384,-2113652476,1160806697,2146347040,2056127635,-521302823,-270935517,818408646,2127544827,876570598,-322871373,-2014525129,1857812078,-1905148929,1553527328,-1393718060,-1399902037,146976406,1831811390,-1387314816,-833644874,638737226,1523314604,-1794032698,-1048557724,1691199677,-1936986673,-304610708,1821375286,-608700666,512553246,1082357743,-535814048,83035145,-1593697790,-2070396800,541540416,121771868,-537264644,281043085,-2122063860,645947641,-2096884712,-1174306231,664629344,293838104,342388461,-267766760,452134170,-2061880315,616729858,443811098,-343348347,792317697,-292734213,95369996,-762618246,-2077081997,-1040636003,-1980197938,67647352,-1644101114,542060608,168829344,139035656,-1039895548,969016437,-2127175422,1983401136,-563472875,1510737416,171194292,465314828,599982596,202316683,1633122321,1716353486,-996378167,-1330345497,-407987469,2043630403,-1728452062,-302193529,-1728968913,-1100231049,1682447122,-1028725724,-16624844,-500922269,-1926624754,-1957498583,1454898939,-2067162367,-1594089199,-1056064650,-2046186478,-506966624,-1172286640,-1814050379,-1215878214,2069217462,1695530998,1272870329,-20967453,629656459,-334763657,521913167,-805371971,-573962846,-302285249,-2145619556,1963737255,-1914934221]},{"sector":6,"length":512,"data":[919313613,-108103143,393547560,503235692,555090118,-485724447,-818811117,2071614594,-773817096,-1728591057,1987944711,-275380267,752444240,-1062750441,1871352443,929565300,-802528424,-1552689535,-45875501,-1721401999,1732300516,-1745641229,1796191028,-719963249,516717213,699264746,-325886530,1839872112,645812789,678755581,1500444123,-231101568,-1107513092,905281213,437230911,-1796784180,2091338153,-1302328691,1976108809,363834331,219962238,-1594777409,411588681,436685356,-1715299443,720207198,1192962973,1171768387,1559333076,1220204428,-1431864477,-2068392938,-141560557,-1353842835,87438190,1136063890,44550892,-648501140,571099485,1400889777,-1496932175,1671218499,-1204059791,566571608,-1251099663,1669579881,-679641231,1710012693,1539323759,-2108136342,-920616118,-1179368395,1439918213,-2103094845,1712815381,-1777975150,1298594418,872775854,1253657624,181286971,-297289113,1222406331,942054126,-1765888230,1981104674,423306380,-1589863628,-245070381,603371260,1333391075,1261366205,-184310606,-1597378503,-1068150222,-1074533611,-1690096371,1822171129,-1847760366,-1538039038,-1603682336,-318559255,-608484664,-1051520112,-1747598265,-843057555,1301364331,1539150005,-971257434,1053676271,-184427485,539506225,-1633038204,931766592,-991776365,1862479419,-1220302160,2005562353,316874990,638233114,-636862241,-1623096900,-1620514469,-2098098427,-1893964409,1222885813,-1911457552,1136733127,-1045368744]},{"sector":7,"length":512,"data":[1008318705,199475534,-260258873,209205352,161511648,-1895445218,343466519,-261157116,1282990944,265305106,-238568162,339482432,-1912567934,-1010731577,1891137597,-2021418948,23314717,-260257906,-118472328,1665633799,2015996144,-1310486732,254688284,-1893984226,337764590,-238695364,-193446920,-515228652,-1010761608,-740171590,1340049283,-1993830919,-1327059006,-1372849077,-630801631,-791903657,891657551,-505190741,-596812504,1264729306,915925487,599205763,-1924703673,-1233675282,-1238541427,1301674591,-30219425,1508759361,-342248015,-1764323799,305093539,-2088442651,-1289819890,1352551926,-1906238855,-2066667452,1811203160,-921033137,1720094055,-201032481,-193196088,1051571438,909426904,-715004450,722774841,-558353945,-484438551,326416557,438097513,-31922387,474289055,-261620894,-1180228224,638177381,2146842233,-988932449,540242692,2131441408,-118883842,701751303,1895897987,-1705432576,-2018548740,1210531618,1124024099,-1060528906,-1499595030,-23744447,2134764885,692587658,86205442,61844424,-2142056632,540158088,172229171,-448401358,-1673967140,-659986656,-1779109355,-568654475,1815178886,1191799816,-1112083772,-1749100989,1146441281,-675882354,-467926325,-1860414405,271890031,155746889,1840892046,11696123,-983584505,-19176728,-886084823,940791840,-153400542,737587758,357024793,1895147261,1552924600,1257880898,1784837748,-1749706873,-1417862968,-144713320,-1261839498,1053840892]},{"sector":8,"length":512,"data":[-1540912319,-42718472,1702096363,-502493459,-974121605,-902964266,-641184478,1838975146,943312861,2019181269,-143695701,-21742931,-1762699327,-1975120034,1630563462,187733366,-429659612,559947903,-378029009,824730748,1966140481,-1631306153,1451955454,660456766,-1828267618,1400039129,84032154,-1180244490,-1001690988,-55041098,-1733806909,1680706155,-1061359830,-1609603180,1084752987,-1780714086,-2078328989,742208106,-2083571907,-1418485882,1760809622,-1087077249,-444964070,1652190812,902591002,-734404747,-894619251,-2118535840,-2092742586,1268306129,-855403312,-659996398,-237688112,1319628739,-1464756446,-595679597,1921119861,-645154560,-755699970,-709236905,-12591291,1775460267,1713636921,-1711311985,1751934368,1395586201,-1465359380,424197955,-772441393,-1863968527,1454029160,-954966393,1788927330,1122364124,-1965676603,-451976137,-1637536023,779108338,851789597,-881425658,-1211105956,-1443295873,-656723671,567213309,-1213730378,-68506463,381229713,-2071841908,-680410285,-1020466987,-1086101938,-796978719,19591064,1366937500,769599960,-1912558308,1378280281,2086329547,-1120967498,1613328460,562823998,-921687973,428737666,-2124362394,-1449025231,1747629314,2076291604,309308738,-599133836,619804254,91878424,1117604412,-1919261800,-968862251,1211605595,-33946191,1687088494,-1065511435,-700962123,-863800829,-1299035833,-294825090,143275113,-995043103,638442436,917384252,-2145999195,-1989420220]},{"sector":9,"length":512,"data":[840763764,-1594557387,306243154,-500443112,-89858285,-556836178,1042959768,-2135971214,-592857406,-429658537,-1634115939,1273880822,1996319288,691190864,-1956280782,-1427681598,527775283,-752099965,443213834,1789154930,-1971174560,-1186442403,29787420,2107154095,127877130,717049280,998251634,-2058138137,2116806109,-1962474278,-42016319,1448700101,2016126339,-417256989,-1288739638,-306260009,926464091,829465909,415951607,1721063808,1386195056,-1298677013,-837283253,38481498,-1797873655,-114814020,-183119643,-1795845695,-625360149,-2022818307,292691420,580455739,1108990582,1534996525,-839590861,195469256,1765602618,-946691759,163208473,-2060339159,50839572,-389131468,-587763927,-888538197,-1798902083,4068344,-155543133,1494476970,129038963,2090486091,951984137,-958348816,-1631636332,1769118027,2039224150,351663563,299893218,-1423175243,702932445,-706558091,-1478098036,570501898,43507208,-1423343934,-874125859,-1568538589,-1521172768,-1029073072,-346584241,-1215312079,2091206739,-799157243,-982207059,2115124352,1490040816,1123816947,763162694,1915567801,332689647,467628234,-1000793273,2010739489,-336921355,1640624562,-1350005882,-1287006385,-498753430,-1877858335,-976529072,1127518483,1917081970,1288907281,341327963,1200755972,-1022560815,259520223,2002199713,-1204147104,-704302444,-368897474,-1778966455,896768993,896760501,448683397,-1263343890,1994745316,1109503712,-1429881439]}]],[[{"sector":1,"length":512,"data":[-860493803,-4221286,1122957342,-151746549,1435238510,-1061866721,-511002023,1452001919,319426360,-1528864868,-1847413403,-2036761771,1894947681,1037398432,1457294052,1264804932,623624706,603675537,1621279287,1512245612,-113181328,-1959261454,1891405517,529784029,1094643907,1064175374,-84053406,304815176,785742079,233902693,-496320991,1073991392,1785446805,1343189657,-752518086,457047797,-691139996,1161883540,-268979173,-94238916,1276749286,-1662514987,314057720,-2108392944,1587622330,1159942179,690003393,856635400,692317084,1436152547,-1257012521,720844077,-875415446,755614708,-565970038,-1197433190,75195655,1963221749,159420237,1117815435,1095425522,-341804617,326009321,1947293908,-740867808,1365318915,973624336,652749173,2074929182,-1306485856,1364791970,947232003,1095074649,-1696063152,-173112683,66352960,698887005,664653899,-1602318616,-2113262557,1549222154,264038441,-1697993868,-669098322,-722722388,1029106726,85332440,-1406630591,131232230,-522748356,955260481,76376657,2014435806,-1036253296,1755848866,354432246,2062576031,826770309,1587841969,2062553407,1481081077,219481108,-268207394,565975606,1948400668,1179583025,-532869664,1090852369,2124907333,-1080840579,1608676853,1423078862,-15994282,-963302663,1276474020,1687334438,-1365659481,-1730488844,-808816967,-901553783,-1681401769,915298234,-1330755451,-635167877,365830477,-998106378,987812650,323885267]},{"sector":2,"length":512,"data":[-260908114,305949056,-2045841794,1013504240,-1896941726,-2025356103,-313449530,1008899310,152974374,667383604,-480336958,2003865745,-432265330,1589787754,-2068338825,-1226984505,543890963,1013591100,-948485182,1004782202,-489142387,1009113326,-1591855810,-1611416652,-240981776,1983653424,451943954,-573370225,-868473871,1224359019,2017495160,-1938239072,289029153,-1894120162,1730023989,-1572046777,2018488561,-801364184,623262825,1009180732,1484313518,620641314,506828860,1443826115,-960706684,-1975770109,890911783,504543006,-887221442,166694682,-1895273585,1510444398,-519150654,943482881,-1250529039,-1316283158,-690470142,-1968415077,-1946022628,848561199,-1394458166,-895892348,934132277,-1899889691,-1964066896,1553218735,1500486720,-1131364980,-1695009055,2039032328,43299909,1860888456,-668379955,-68340331,-1705161640,1604168909,752145935,299954371,1401618548,1440239534,-1430887684,-1363050460,260933304,-1071440605,-1165580742,1120819919,-1937168245,2111985416,10682378,1093855804,-1573946266,1729611881,1752432304,99707341,418312016,-1200077867,-1512615762,-468475490,1662920734,93871892,1106630557,-1583272605,137828874,218650509,-2038325000,1749661904,-1372319156,1715614755,-797129231,305407576,-1081351592,1113785987,-1104854749,1144265048,-1811641079,-800406792,1221626104,1982826800,141695503,-124648307,416315042,-2010879931,-2086463548,591550278,1488856065,587084824,-499379660,-482252533]},{"sector":3,"length":512,"data":[-2128395685,861453859,437368936,1173428745,1264689383,-977157016,-1929071337,-2109307753,1541504073,-559519536,-1306607890,2030357046,1440227365,-1821242997,-1163047724,-161205527,851956000,-997983036,-855362920,-887438205,151487120,617113083,-1768746481,606005281,-685664980,789334077,606050371,-26987840,852943425,-498994780,-110873861,426574401,-517931566,-33782177,548389152,-1776250816,797498769,-1117764330,-1364502613,128628082,-77549173,-762346438,2126261734,1958837738,-1062018811,660434786,-332855586,-1141876564,1826592317,-945289932,1167099011,1105921546,1626336203,1685569784,1169861981,1148191989,627005024,1386343042,-676364144,-1827534172,898193364,-786079905,307623391,-1833980755,-1786950968,1473755972,-1095019447,-170810806,-1406332331,1514705583,1799656829,-733390890,-1572159815,615246426,1243524594,1342986018,1800838939,-1376976307,-1701454664,-283081706,1890100240,1086256072,-1916238541,-833422430,1374435714,364970237,-1977888767,1734839550,-550652289,896722838,740046230,-148732625,-755303693,-1020280169,10584340,1210884515,-205549356,1635002476,284697104,513034056,-1322579619,-2010960856,334536836,551801069,1374211198,1050932025,-1559869045,1790248520,1623873592,-830669350,-2094175801,1776504403,101224634,-2096637948,-260570117,-1797668856,119041958,-667911179,1743191871,1845465692,-694530657,-1408935637,-1213066111,-396779401,1381353156,-708322541,176436105,1312978802]},{"sector":4,"length":512,"data":[623684079,2122245331,1155369082,337124246,293777265,-196703279,160573441,-1157532708,1644444152,-930809821,-1715805611,1860940298,1983498999,-1090851774,1982677749,1734043097,-495690770,770010621,-1243747993,887108668,2047576397,-1131195462,-2118164545,433128141,232683522,1813579321,398096943,1774959109,-904615115,2077994063,2138822955,1776220080,-815272465,-76071510,399761665,-1616168239,28629090,1630833,-272217356,1704782915,-100532273,235337630,-71049154,11833087,1000086572,-1744432745,242325809,-1038057937,-42989198,-1024003266,1572050179,-255618624,-165564409,-1824533358,-435100520,-531384721,2063578605,1299432178,-1224073200,36417529,-433908045,2097137983,-2059469705,-282725844,-1960229629,1714991356,1852310356,54690218,421168397,-682948140,901479533,-824676210,-1176200130,78687038,370094484,463449303,643020398,164575364,-515357358,-1159600729,1103535213,1109954593,1736365139,1323636222,687466140,-1215524885,-47760773,-428602965,1188149983,-1011139224,-1375092236,656622017,-212233926,15989680,457691584,540341236,1322311937,-1378625157,-287394367,-1193484179,726389630,139853984,-1742556480,-2067927330,-31862625,57182767,995298453,300972460,-1149570148,1963503253,-1472559471,-1949552096,1133674136,-305913727,1263386885,1346054328,673216071,1602790509,955562633,1943618595,1847133111,1012041446,-42837166,-1105486106,-1696579262,-1657781259,-1149747125,250880667]},{"sector":5,"length":512,"data":[965158561,1570077800,1614889281,604635228,-1997820,-2046710551,21084159,-1992298557,1095406352,2024689248,1184650534,20938343,-1854280780,2132174096,-1845829532,25357136,-1954927085,-884603289,835465718,-1367046911,1561612320,-1206782775,749218114,812143363,462545015,601179279,1703028151,-803165077,-109019468,-1615100667,-570754432,-534151717,548226784,-1243693088,-78644734,-413624311,944013486,-460259794,-119377878,-1388918723,759964347,-2023815024,174624852,-650382574,1428557685,757255236,-1601705036,1803384450,105651404,-173621438,633500845,-46949480,-1911839472,-1660422999,-913850105,172105574,-1077136703,1741791507,100982943,-919830873,-1062976827,503652689,-357941419,-681172638,1420069821,-1360140987,-1291819352,-27174933,-946536371,1316889924,923780421,-1964892367,-2058910264,1210231437,-452993298,-252898576,1685493767,-737218558,283622267,1431340405,-1629516750,-1441487147,1029700554,-196428448,42707725,369352015,1606346410,-1039134440,-1433755391,-1603070810,1882131737,-776427773,1427024807,1865289973,-1376603153,229647878,1644759148,-1057450262,1350218624,1811931576,1121378802,206751008,423954321,1117829542,-271807080,-2086961005,913351469,-2117109396,1056633101,-322997390,-1930510111,-1009031290,-697244593,2093366848,1826838815,115397081,-637988440,545203378,71763013,1890474809,908319968,1584983836,-1942840939,723501111,1827606919,755209497,1327685958,915845247]},{"sector":6,"length":512,"data":[-704078245,-115456886,-485706136,-1434591296,-642768044,-1809348878,25954302,1145140943,964545912,-1789435043,1293829685,-873510434,-182710683,18445568,855155109,1518658176,-913150875,-1064097962,692190380,-1693824055,1892516819,2111925261,1836136249,283085864,2083803178,-681275899,331602374,591148492,158530474,-1031709177,126941012,-748145905,-1747152612,-1892150633,1351817552,-141293058,-1602777985,-1669602235,1325734566,-788554623,1988577372,2085536893,-390260871,-1729986607,838365088,-1537586216,-653491574,834750766,-1134006207,1514914338,15749826,1388561086,296892492,-1500094201,-1289067270,1208886885,-8977054,1030930819,-559121913,-1298354520,1865135338,935730059,-1479674566,1552238975,-776805780,1916357783,1934949019,-1848804102,-152179026,1837941135,-2050924896,-1469244171,-868424880,104439933,1091720981,1645553193,1648030973,-2095220995,222504082,1087631428,-1324507756,-1875460517,985307200,-456112901,-499025,-1301634004,-225447072,-14610776,-1209799132,1941933694,-1962485225,-691698703,-619489351,1205859397,-39720912,1971603937,1113937865,-2136174439,1360330371,-1507695138,1900911227,370474368,-939555085,-1332294185,-667851743,2142393756,339117728,-1466533857,-2094851133,890866208,-2072276511,-31887288,1613245535,-2013193122,-1965392891,997111707,-546151436,41574201,721407360,-2126312665,-610733947,-2106924324,1394070280,889819413,-2102466926,790855889,1517967536,1299742624]},{"sector":7,"length":512,"data":[-1367871584,-606598384,2120156694,2145476986,1605491579,-12258841,-385897528,811020836,647467666,-1615964825,-921468291,125587218,-869335764,-2116122577,251383485,2017478643,-1189105660,-1920402580,94773336,1795876457,-1371801269,-690702992,2025488545,-820786686,-2132319755,1953416058,-2025059566,974969676,1346212115,-2063683674,545435644,275341525,1467314972,-1163635187,1619353583,1516766144,-169390073,-1535311753,-1041747390,-2060636689,-589883185,1665223475,-1371371161,-63793158,619096383,1749664988,-1289920278,1215883850,-1611111106,35786421,1077830419,1428967414,-1874959850,-1371519566,-1473231649,758613216,-1498754994,-258212308,-1283272842,9735972,1892615640,-2081800956,-290631082,944776606,-1126059096,-1432127757,646261906,576605012,-252968315,1061368839,-272926592,-2127318271,1298702145,1050279169,-26181931,236589550,1731907216,1091958344,-401464316,-305721319,1353589434,-1527855276,-1199913893,1708708023,-1265191966,-567429159,721424354,435653880,-812685568,1776940051,-768581099,-586552672,-352187867,-1874303007,1260514323,1227317219,-325537437,-1984501,36621685,-2015927827,-2124571630,84482598,1186533869,289963942,1063818787,-1674915728,1813522457,118983234,16350865,-58918746,-672737857,-1149381321,-1354282707,-1340035998,-976085283,-1857741105,695289112,1534947653,-751788310,-1437041044,183174266,90068384,1329856846,-740885902,1789467254,1311686374,-1825168671,243465944]},{"sector":8,"length":512,"data":[-1976778976,576354042,-1334188986,1435984209,1981641744,1332482687,88552534,217357661,1685715692,1184458008,1929128053,421165723,1550511487,-262919981,2063473564,-468765115,671876320,1542536112,-1581660634,-1381857339,439090664,-34786462,-1089806829,-1984221402,-1373023478,1109717345,-518955120,-1141379404,800257908,-67316751,1543454391,-42499046,923651738,526122809,-155970840,440413375,-1811895225,848352288,-528349969,-149741062,669548069,448856320,-792151112,-2136290273,842858798,-2108109396,-979819766,1914962509,413288511,-441863729,-1245121334,-457539006,-9483273,2095346681,1204990457,2028630833,-737256487,-57157187,-1849467306,-1945295393,1035929704,1686907992,-1149667834,-875624379,-1736344524,-869006180,-1786433787,716728535,-1644724382,-326736515,571927147,-653486333,-1561533340,1335920058,-1877358885,2130696229,1733060792,1618451469,-1095270366,-851361334,-1513393623,1824291856,-273636737,1614123572,-1744811207,1245574742,674010229,-1305527628,1709472945,-333163545,-767850771,2100225849,1968728542,1639625450,-1605124907,-2098718406,1702481886,1475745057,-1212505263,1437053092,2104749153,-1877879949,-1115641088,-1625761634,629029156,-837401680,1074342581,492645480,-2109078432,1028890891,2061342411,-602803480,-1226669202,-950302361,-1632740477,1740467754,-526607479,54871046,2142144984,1390438025,550438523,-1433468586,-1830890078,-1207266299,88607410,1966956012,44839223,-720237006]},{"sector":9,"length":512,"data":[1152361348,1200087,1599463581,-85349809,1988822133,-2084044204,-982268409,1594506547,582956193,-1754928954,-1707849223,-1531780867,-1128836751,-732773442,-1620479230,1543135001,1191084665,-723256921,-862597832,-1595402113,-1018093920,1698309391,407175971,1116340705,-351781541,544883793,1070866469,268129293,-1926895996,1312290990,469712259,-30550937,-714366823,707717828,-497712551,-721454036,-884755383,1979875195,1911947965,-721196329,-537441522,-517789531,-1711341920,1015052808,1200968734,1671705022,1791171429,-441307973,-1194098808,48293440,-251509863,-1074233049,-1420371585,-744195998,52488468,1597508315,-1911338987,-402918205,2030105631,1295207245,-1173790957,-2042011171,86645913,1751587358,-985556596,1465312087,427027762,2058668085,-2095570792,273965158,1193752680,-675491389,1786662451,2055602168,302439984,1239011481,-1471534690,533566035,450713435,755508627,236659002,-278196904,-448043353,1950427488,-2059062691,-1500400134,-1560279466,173134253,776184049,429401171,-326808123,2079152391,-1123400575,1334708898,1138804685,1643155029,138420573,-955424685,-1428493688,1170443944,-1959053611,-167435606,872582274,1564892862,-768067177,1725805068,-1065989212,-796481037,-1878071444,-583709270,-482222521,-1446485087,-2143717365,-24619218,-526452717,-711043347,376586089,1362599082,2137480629,-1882990600,2072883971,-313278533,-695933105,-245910870,754108904,1767527151,-1688519555,1261890495]}],[{"sector":1,"length":512,"data":[-1097167598,36970064,1707951387,-2094302705,625102285,-343960184,2031534473,-1292777023,-650107433,-313157649,1144598199,539846791,2019107727,-244165629,-659139846,1232607040,-1077242328,-1571911560,-89448679,1873796438,-340695376,-109284421,1571752540,1868299195,-24767110,-2132746523,-83881266,-823886509,-946066857,-949107887,-766837285,1593505400,2123520144,655760617,-628747024,-1025384721,1666915662,1774515439,180030358,-878417608,2068177842,1859522375,1034612433,86193213,963470695,-1666988494,1584229467,-272382306,846404558,-1067537289,1431571377,92527295,-296774579,717049470,-164066011,-265516161,-437833749,245526794,2128021870,824795380,893682487,-1757244181,-489578194,-1282719419,1163004740,972652555,-797485848,-510374758,-1083629568,-443027065,-122892511,862973617,-1006285485,1614860522,-1874765864,-1677369206,174080061,1735641347,798881454,-352314293,64154593,1004780682,-1243934385,7277404,-1072790391,295112033,2079737726,-863778920,1798683238,-1866434512,380290679,1250882279,-120088539,-1203590308,1184015568,-1554590492,1385556167,-582309713,114177364,926546477,2043665493,-2038081755,-1492303299,277024404,-1960074274,2065395593,-941693184,-1936286855,-159990908,-362320942,293101786,-885302020,-564703629,-1013869843,-858272388,-942942235,514336513,2072252880,-874547710,-2110787068,1091778624,2019320009,-430098167,-1572409787,-1173036799,1055564369,1074579772,-71012365]},{"sector":2,"length":512,"data":[1096143841,1414802335,-2063077974,-141207350,-1163402542,716543258,845084542,412606475,1327746638,171650341,1311784409,1025672266,-814287838,-574557867,-1615156627,1813182038,387406997,1064443306,207948741,1937661379,1930192354,1484209142,-985932550,1844449016,-681708545,2086123417,-57184194,-1293860553,1120031862,1917890697,1453875061,949110989,1813921462,-77587791,2096834654,-775455657,-1061917734,133665259,409358245,1391721264,1980318640,-2126907027,1167971681,-983971363,-803351463,-586702922,-1054085827,636304798,-314708128,253866085,-687712373,-1267848587,-103111647,1278453289,2006760168,208446721,1171349748,273672259,-1028485370,-223709721,-1093246864,-2042127609,1860064033,-1744561194,720601194,-1775910952,-713173928,139087979,521332116,394110848,693435801,-1367958570,-1268008079,-8473101,-1292413540,1790339569,667063511,484167147,-1086290318,-1059722645,-1379462127,413253786,-1105944842,-1691344237,-729413009,-276976304,895141452,818368867,928045180,-1646507341,-839675969,1122079558,-1787905363,202978942,1474662587,-845968432,-896920396,-1695170134,-1903715442,-505536297,-348253078,1839139412,-1588161367,-717805038,1008425620,2038530572,-222281067,2002075251,-218149128,-909555978,2010319328,2032008229,-2114869232,66525763,357558321,-1464183017,1820726724,-148610270,885470612,65058593,-1038757316,1282344119,-26649139,1424657314,-251328746,1802142469,357878364,-1470999857]},{"sector":3,"length":512,"data":[676505779,1353014360,-1739412463,1649582570,-654646040,-627023787,1385881738,-1850195799,1514631024,394655331,1686133323,954573717,379720061,1616055006,1597946703,1555058988,520415204,-435475689,-2020046996,-1582416890,-831646845,368132956,739546635,996041583,-1697612755,2113863411,-1452105631,1637297829,1877133879,1990991359,856653256,-48219261,2027673046,398454699,-339914046,-334059334,1637654620,1625305527,35057503,2091626952,1523190703,-375115433,1474310614,739786833,1340653338,-39650504,766602680,-1669607840,1597596203,1857167780,637826051,1045630325,-427866673,-1238516051,275887118,-1198707986,-886131194,-1991912215,-942201462,685229795,1973420170,235383821,-2136802437,1707157297,606155296,-1207415440,-1418150867,1108651204,1350885672,1473790498,554467128,172260956,1471220113,546931748,-1856404444,138752665,-2078064973,277958982,-2138797466,742559287,1299663220,-405527083,-1398299162,103168951,162649460,-970373548,-737714212,-438901917,-326684473,1874849261,47325658,-1003467865,1160934474,-380951902,-1012744829,-687352018,2144340363,123043055,-760825247,-1598451754,1623222919,1374208555,2101037835,-1435116195,-396180105,-39143244,2126441998,-1694702453,1515407743,-1460372904,-603156802,-1313512363,-1314687772,-596671876,-1432220516,1187085813,1324193508,808853734,946148822,559242760,-864743564,-1321934015,-1580140291,-1098655375,-1822367712,-1530947868,1767071645,863697876]},{"sector":4,"length":512,"data":[-554769391,-477765257,1883269010,283973193,625415625,495535446,-750123645,-2003538551,2109204724,504326470,-69515460,-1335731597,696200678,-2126050503,-1384166090,-1455371991,-1312879714,1517463748,-1885771503,-1266065740,-1830769488,593757338,-920071584,200289701,1031837545,1880064912,-1391770564,88293950,-1948245595,940115895,-446373030,-27853139,681609383,-1829308926,1834122194,456748955,-2059418951,243063243,1302639669,-756784660,-401061693,-1998032357,1834926116,246021293,-1637272426,1979033799,-1610454006,1183818727,-64572479,1565547350,960274201,-1964884504,828884869,-1837208088,-66966416,-650138518,-1756464588,-155659139,-425141404,1064883940,-1662461059,1911319470,-1128392398,-168447576,92667121,1407740373,-1266807071,-149997219,1911537600,-318357241,-128841537,-1683872756,1706553679,-1626392334,-156959865,-601953369,-654966274,-642515794,-1646539901,204108850,-770757760,1990154415,-931078293,1812691834,638717786,-1275103274,1221169656,-336508014,-1394201015,1272957567,509029322,-232227026,2007343855,720474317,-1709558369,-370313311,1952338922,560694966,1362400614,1339877553,-2123024009,-395284385,-476698127,1750874147,-169329518,1947897010,319455782,-310454527,971546535,-1751418770,1451997823,605216770,1027967056,1533168934,-801766064,-1474689837,681131395,367549941,662108131,618341445,-821961645,-937127882,-1455818361,-9904056,499385534,-354431812,-1135358212,405841981]},{"sector":5,"length":512,"data":[-1970357609,-1604076369,-1725651566,899156495,539295392,-1411116314,1191782499,-287013732,580037172,1826565085,-1328452832,-390190312,1412113934,-1192657546,-1061251216,550015998,-18668943,790379555,356402506,1970571269,840942768,-91859191,-363923432,-1419792272,-1450798288,-1273438646,-1519439663,639219022,1420465876,-1404228963,1673881024,-819464227,791008333,-479452159,-2034193964,2119388571,1093253568,315216847,-2037652671,875224038,814279673,-89386965,1785613146,1524651396,-1640010520,985588933,-158479160,-533095200,-1324371116,1141857333,283603296,1537790245,-1646569976,-1060917852,70112438,-1793086005,-1180671587,650109182,500534752,-72877782,-236953206,1170475046,-1780132066,-671246172,1571164398,1235547614,-1260174957,-975319929,-513631552,2093959329,492793548,-1225793889,-2086909185,1918620644,865228799,-1421947050,1746142446,-1507146539,-1979140898,-181136376,1333384783,-184819286,-1211304322,506162949,5122777,1378948441,1663509720,-1559565268,-692568136,1341057028,382049898,278741868,-1838686788,1148371664,1790448877,-614840209,1814214543,1622334893,-2083233434,-359863047,109400984,-962095065,550176426,71040947,-929532160,591453580,1874955288,934045726,465369601,-792860367,1424610675,-1876127985,400525071,1643074991,-1757833376,-566100479,1583528932,-314122587,-1861288003,195086814,-356824002,-1495378768,1972532859,-792303160,-1137728887,-172072556,1119954172,2015857345]},{"sector":6,"length":512,"data":[1619945068,-1467436971,-952944468,-1126080222,408993063,-332341170,-281401066,1220124747,1699109505,1989110648,-1137993911,1737184704,2105798988,520504226,2080373143,972575758,238222362,-1069291402,121090155,128062473,2101785333,549180435,-1702695429,1290070751,-475686374,-1092234529,-1669600230,781172817,-403177926,-329654047,1056442360,-1520177625,1119207133,1807488472,1199498647,978941586,-791187709,-27900431,971046444,-744502562,1595318113,-444308982,-1635602160,1773448775,-486943113,236705565,-426414124,-699725867,174053951,1895198722,-2105053416,73278691,1716617842,-880009863,1672217004,-648655247,1820283117,-959694234,-225112179,-815068638,-1432050589,-2121832411,-1944492003,51194885,-1503434513,1433504544,1461343797,-2088771755,-1108355383,-1695709357,-425408482,-101633299,-1468332317,534477711,517826286,1508715736,-816073287,-1991531158,2033072085,-1608196266,-1663190137,1200022886,1452813018,-915884987,2072928236,-779424641,-121228911,51137802,-109867189,-1806843156,868182368,416025851,-1186949748,-1663309816,145023073,109366568,1801811635,-1262934931,-1209384603,-1205192451,-491599711,-665489392,1719699670,1886724646,1134067800,-1399874496,451625327,18216914,2128649456,-1177217650,-395501570,1491688348,201937917,-8689307,-1296691786,-550320050,-282624641,-305851652,-670836438,1995636821,-729262849,1270326750,-132104580,-454370198,-712005787,1301954403,1604925946,-59169994]},{"sector":7,"length":512,"data":[-1962110971,2145942608,-93499443,963458057,52605281,723893828,-1731856396,-1027646098,1344824352,-1080103244,-151105155,838294507,212420568,-1384769277,-717265879,156834045,1478841689,356467254,-2061873068,234147900,-1286893689,-35332139,671791999,-1397545885,-232015531,625408262,892623154,-1904029842,1160073837,-548054335,-179865223,1008812998,-2058910618,303282320,-177176898,-689744338,2081679326,-2118343418,778625923,-1554514405,1822074655,2103338942,719112448,470297795,546335449,-389116996,-368305657,1379008068,1556379996,-257567005,1490190149,1191247266,1341332624,-1068209964,-228976174,-1234846283,-1399999750,1045140703,521754847,-49284495,1712511535,-671259542,-1727817244,1029356549,-2124269908,1603172683,1149248218,325807535,332819108,301695908,974061089,186060592,-1042321496,-1314635648,-879152612,405258234,-1945126839,-1985805786,-499486163,667882506,1097073056,1039959716,-1117650109,-800707191,-7948452,1180756689,-1653195525,-269510523,-1416087892,577781180,-824550446,-1418856798,-286737083,1266057255,-446458033,187916867,327070238,1511035409,1674819145,502170821,-1463685592,242925552,-1627078331,2050951113,1272920122,-1944638816,864288701,1580483040,383672068,2061820993,-191899264,160721809,1888633424,1081180198,-1477194819,-1057970747,1083209217,-2137606030,57151385,-1844901585,1596354907,-1789320683,-1041608570,1746460949,639475035,1012339745,676926292,-43675141]},{"sector":8,"length":512,"data":[-1540070731,533877617,-1077805869,-1361092271,365938431,457751448,293024218,-415294547,1170337451,-526340353,-1194116580,1588838435,1347290076,-1392380976,1769770843,-2063186643,-867228653,-1581058534,-1776627440,-15941451,368890124,449885584,-661320576,-1349672413,2067823138,-170931904,563692025,1671818307,337540177,1622725991,-281812343,-240983709,-1849493769,1572049302,1891865024,1997659385,523452670,-1116291540,566536947,798484546,1303402775,2092396240,906436256,-1084716214,1690723037,789752460,287925748,-10043844,-1133975300,-831658301,546762161,1148327287,1158995926,306970233,694171917,-285387569,-1042351072,757892459,-353270192,-799806576,133434619,-875135866,-383919116,-297785579,407361728,-230981330,-1852910468,1434058304,-1274336798,-114113975,270113616,1351368926,-1004429830,1765846915,-141223656,442838433,1999669203,-589192859,1642386038,1312623743,1494328656,-2100917690,-95936719,-541460933,54376222,-1944220550,-973721577,-97899989,757024721,2140063216,-625564676,-42550347,-640914101,1557403438,1417615430,-470225989,-388125133,-2073143818,-120352373,1774035778,-1922869141,450044591,-1614831427,523179706,-947291368,1805579812,-49234188,1450837211,-287393008,-200546170,952768862,-724694037,-1120586308,1409713824,-332827288,1070234270,2117655729,1757789408,-560199185,1710090688,913330829,-844730307,2056103758,1194813138,1538314015,-387677702,-118894070,1142501183]},{"sector":9,"length":512,"data":[-303204742,1843041039,-844226598,-1080984471,-597826194,2007347575,1320609641,225090471,-859926932,-1249778708,-1340672809,1922449432,507494307,1668174823,1876612832,-1012583559,-1529291234,1262001409,-1937167692,-528195616,1767517544,-1622678524,145551278,143188236,1689674328,-1128253591,941393500,-1204500115,92058709,-2106389078,-1075817030,21737647,1787065584,213547559,-1668929283,-1371597733,1049098746,-1005587001,1542460902,-1268456386,-1954706982,-1398318006,-305823222,-1014902194,2121349189,-1401687393,1396030450,-689766747,649326516,1955173087,128962262,89601221,-1797079013,1311765483,-1834294925,-417860160,-331467750,1465934498,-857962726,-232718808,1443914656,-713550755,-113185160,1668675421,-957758015,1001321313,-512730449,772426427,-794074749,-744169548,1129217264,-827632161,808130737,52587540,-2037488950,-202298494,-941970887,-1747160374,-1091470610,1147073269,1010066809,1571554795,-931751961,760685021,-506360957,-1302137656,402054853,-329299077,934372925,133720136,113640836,221687271,-1470505797,1770647415,842832251,-629687211,-303076685,-304345065,-156564473,-1130908660,1810091375,2002409045,-184899357,-711070375,-2050257378,-420240038,1436725039,42016920,-220088480,-823204606,-570942619,2058372062,954703502,2127805904,464254503,-1113875476,-41720861,-1220623943,-104909119,-1344062116,-1170864903,-59892356,1610477951,-188256730,-1216032300,1952302360,-101767082,-1407026189]}]],[[{"sector":1,"length":512,"data":[63052808,1907809716,-2088490040,-308211808,-540511750,1473128058,-2094959025,-129322184,-1068029202,-1102551751,211323516,-896462076,-2029352253,579185436,1871762457,-1347978338,603446299,1196802760,-1090840399,-290694187,1608144238,-211837769,-171375781,1346122128,-384764387,124334076,-570170807,1524004954,-1210563146,-1373643153,-1425650028,-592286533,831179500,-812568193,-1175787547,-1147424516,1707465106,-2067545445,-1998851400,-2039591889,-957476306,-568415231,-41025224,-658831667,-1351302650,-1009673016,539682996,717000483,1676014432,-2049052312,814831706,-355597679,835380959,-284608071,1748752805,2109648769,1592799747,-2098169930,28915375,1719070807,1242508208,-874636768,139069054,649418146,1821531528,-1903686045,1401699503,-1871548606,-838029503,204484658,1942422431,-1392241074,1687455418,-823123538,1806879405,1537138818,971671997,905758935,1666992371,-970180266,-623251158,1201303127,-1173802925,468162795,117422999,-1489632518,-1227305577,381599596,-881281667,1407374573,1863214373,1817424860,-1146049485,-150763816,1837869921,2109277254,1884827043,-1099698949,-1534243605,-207636039,-2133577808,1370961121,396163363,-2015553291,602254401,-322322042,445820923,-1747324098,-694108572,-109029427,-1231253608,-1780659729,1183764971,-746681149,-1604683037,-379242852,2143254297,565684535,1408695275,-4785257,740151190,-72673539,-230951197,985209412,1656716444,1696594301,-940958219,397966869]},{"sector":2,"length":512,"data":[984598302,-731702255,-1125203653,-1015082064,-1827596423,-275366533,954446296,383127859,397660279,649641633,-774271882,-1135604151,715161504,535308162,-1601616976,1996222477,-1391872040,198699921,959983835,1642039867,1638322175,1989547535,1461062260,-2104354147,-2117402869,1803808627,-1316604073,190028765,-1953468391,-1032035968,1102317874,-45528878,191141652,2133496216,1204164875,-1602266726,635332643,1735389087,804745120,525304783,-174290695,-849638553,-1419712496,-782053725,-51678183,61916028,376724428,344033303,-1457166228,-553796197,393547479,-857027476,-2044933009,-1336188723,1641643529,-1413552148,1976986099,-182994442,804278060,-32904241,1813620685,351814608,279867338,2063086976,1961626678,1942164983,-1861532902,1996238929,1811722038,-1615090387,-1635572378,-1156378686,1916218319,-755812674,267336895,807330799,-292126405,-300859197,1426187268,-608060911,58096671,585096799,1986759612,19632145,-1312222887,1193611841,1813898991,1343224258,-488356479,-379599608,205912076,-2065439896,-2007398044,-527554057,121651811,-962179175,1388296602,1309606840,895637981,-210865793,-1714895899,-1100133201,1778896614,865585827,957880863,800428122,2144238889,817560379,-1748075134,403462524,1596248462,482142158,-2029350513,1782731007,-1943874061,327901024,-2079111438,1485231185,1970660886,554681570,53494478,-802028376,575850385,155647195,-716053916,1583925287,-1524823927,-665828233]},{"sector":3,"length":512,"data":[-1811208468,530517754,-402262524,-435817674,1898971959,1137332672,861970607,-2080491011,118669376,-1604580081,-841587234,870973884,-610044899,333942996,-523762614,-1418125812,-582831593,-1065095983,2009917502,-636357049,-1286061700,2005206905,-1887809264,1200951033,1241658449,-549771223,-239724769,-1465917059,-1500242089,-341394507,-96708783,-2039179400,2059646173,-1802730504,-53665909,-85565343,1049725088,1566361994,1356957232,752125636,-1953647355,1836553902,895142631,-155157253,2084490352,471904213,1752018095,1047359238,1140575916,1558404270,231610993,-1943191532,-1022798001,1920943982,958849240,-1736609518,-914397645,1254222730,943816067,1264320659,-1166165236,-1729750864,-1676478227,-312116806,-1617166679,396710293,-848694386,-1667399693,1879152405,-1609724448,498656016,633447757,-1852851811,-691331221,-704078690,1019633703,-1996057260,1014955454,-1813778011,703769526,613466119,-744300384,1349682645,1028553347,1285089248,-1892692591,-2012562650,-903392126,-1491561472,-50242150,-1620044362,-1302116855,1121704265,1516320979,2067297992,1858645925,779606280,-1046468509,-112615580,24622337,499234741,1880466895,1219142474,1804098660,869751930,1012975340,-1328056082,-677298831,-1026805582,-678501387,-536314574,-2061338631,-1438802828,-1592650509,54446981,-1191256446,-1212527741,-1107605235,-842029677,330332669,-456822033,408482442,-575642125,1666459849,-611589236,1739850127,-1927023996,-2054022083]},{"sector":4,"length":512,"data":[1523779668,-393083280,690036703,-1253811834,-870979624,-1533567010,453660812,-1348521483,2146770180,-105798750,-521965017,-519993742,-1744461984,2083995753,2128344289,-91655030,178121329,-769003883,-7360531,-1123833377,-1543919218,-1769128750,209577638,1023216202,1535208283,1440358327,858383195,-1888791777,-1734734438,-1432814630,1880517183,-1019605106,1773131743,-15549066,-607177960,921895216,-245427361,303507981,-1232473160,-501854408,-876178541,203350209,1004637664,-74330175,-1290635689,-878813613,-807927377,1299335114,-1482978810,677199835,1471349726,1171799209,520038269,-1701170760,-1592172725,-616032192,1068189995,-1308419506,449874519,670216806,1417699979,495973123,-1037644539,1810745521,515128815,-1129398468,626952967,-1068732313,-1333292112,-152872196,1498308730,1000327881,1073051150,1442772401,203924958,619353817,-974261600,550419803,-519622643,-1087064069,-277135981,674824092,-1577108356,-1006904927,526840308,1867619150,1907224041,-1372192825,-1618754265,344609350,-1259113941,2063691355,-1846665862,-1898145361,-1786054852,473172617,-1664595061,1315995177,-618937523,1801434243,2066583343,1033814657,1033097539,-890085129,-378061422,182445185,-386963681,-1291593018,-175121674,1327437874,1065592273,-248828145,-734211764,-782433107,1430315173,-42118474,1382258313,-155463306,-2034519632,-1149563029,1521924541,-882424383,758363385,1406853551,-1241812279,-1527182937,1895615258,-951767117]},{"sector":5,"length":512,"data":[1091272269,-1014168424,117754840,-1445289169,-2026775745,-775767449,-2105057668,-1176467703,-513071071,1588773127,779121382,-1124689225,235899860,2083025014,-513326386,444117543,2117418715,-794932915,506803409,633695096,16563728,1128190554,933396832,-1419338025,-1660044006,-1022449693,-1106224722,274828138,-622982812,1376767351,271114178,-1316275330,-565533808,-846733870,1980099033,2035474537,1430534462,-538357694,-105415056,149261013,1138458390,-1446521762,1768095556,1497467172,-546891749,-621078352,-208335925,-302969023,209449469,207100833,-1710897,1696332154,-970137643,-1021624026,2142740147,1233353066,-444673137,1912052449,1794270054,941904324,508079447,-101836678,-1830048940,-2146446130,-666627233,1952340368,305842579,-1219423736,1344216643,-38936388,-1258341908,1227868167,-1324392436,858349781,-2083811000,-1805073457,-2133908798,1107012275,-1187200986,221311871,-400790368,535402170,463226027,-217178225,-1129295926,-560595521,222496211,-26885939,481243934,-943868488,-64412379,-1618435882,-874542585,-1778432032,-238585760,1123702043,-20362193,-209175879,-1299853601,1850828350,-104750592,517073087,-1056228895,389023825,-164329964,1823249720,-2100297428,851874195,-669425808,1004660098,568545320,-318817984,-1275293477,1326319805,144329470,-923464315,-40565094,-1056887524,-1850883951,673464768,1085764232,-1102890999,1796143274,-408915473,635483487,-173734629,301629485,-151411781]},{"sector":6,"length":512,"data":[-58238954,1887021433,-1499740414,2047511721,-642972533,-1744890778,-1893007245,1402128026,-1356058075,-262931356,-2139940916,-2061756029,-357234779,-958166360,788010696,965459400,204687315,1590596407,-574763510,1976138238,1009828411,-188134753,-1044799279,868026947,-1365088057,1319365870,-1429362456,122615909,-316947961,-738517026,-197899028,-559801312,487787994,1044014566,1488446826,-1072769795,1880559988,-844242932,283652102,-2080540935,-684214948,-1423648986,574385554,-756639199,-1640945147,-1996068665,27480289,583037053,1679638126,1746803262,1887625484,1515505822,-908216331,-1252327172,-1372737854,4487651,1727672171,-1793734859,207345861,-1673556270,1100869472,-559634798,-1590690308,-15361066,-2142394142,-541056706,-868655121,-365858313,-204022445,-380195178,224171813,1594253280,1050537990,-1135672875,-706249269,822497717,-27008788,341392983,1104824407,-384988650,-1881412591,1552504107,-748486522,-1990975571,-1620967144,985009144,-1450920702,1404534800,181963023,240114991,-1207243972,-466809336,1029175727,-1590892003,-1824306631,-161122210,1601301857,-260311376,2091327584,692321338,1293364416,519717415,-1429537884,1213042792,-1934644229,-257655488,1324168343,-1819613003,-386782082,616097687,-984880177,-399003798,1774853078,-945319340,1887129373,1322446638,-132628314,-1550041327,259106531,-1142162207,1067571461,480655383,1694406942,-786129530,2071620498,-1087874240,-872436865,1458886639]},{"sector":7,"length":512,"data":[1556509465,-1482107848,-1706666097,-506069725,1068852539,-1363005205,-1499477025,1778044681,1020544670,403696351,2030836227,1737735987,-603953691,1234261268,-1961204026,1621993063,-1146893367,-1225046838,962474212,-1590402118,1433019696,-129802956,-1263311706,-841339207,-1433530329,-854895992,-59524652,1463681036,-940174802,-967128105,1958393147,1908071958,1525398045,-1692728925,1596348991,449984798,-906835779,-1765020216,-479531616,-619583786,-346986026,-908014171,-1031679859,-597502661,-743464218,-1504011445,-1249204570,1603510874,-609396066,-1629974675,-1095935124,1536388790,794789293,1599769609,-778435058,806598439,1554868952,1710842724,-2141732819,1685285609,-1714101999,110342321,-755632572,-1806086106,1811535587,-777721007,-77581217,583596389,-144916317,1612762513,-825494823,1392733487,751679027,-1339819270,112729684,661391069,128323079,-1488610546,-2142902890,-248364787,1264136768,1536753799,430657900,-307206974,1769887904,2052669859,-218319968,1802710408,1369503145,-985453108,1370334276,1813594234,210645401,-1274783489,77089030,-463761020,-646057452,1320583230,1813822947,-939825415,-1886644257,2135328124,-937501516,-1867934711,-269893139,795752718,459350637,-618927392,34211930,1725186985,-918256654,-1235235096,-704563530,401453677,-2082733865,-151758528,493554622,1663808189,-1713124135,-1827037803,907552359,-1093865421,1001350771,-644028314,-1544763126,-892015948,-1075799003,-1434077432]},{"sector":8,"length":512,"data":[-2068805551,-1379129839,-92691552,-838345656,1529693586,-104094462,1732609045,-1227973833,-1124891577,-1129623163,-2067691065,-157204029,-1829767920,2079978502,-2016340947,928193027,-515779830,-2112628868,811222031,-1720016344,-869826265,381654619,-1907129547,1990447960,122210626,163802551,1191740014,-421448803,-622459616,-1946006521,-1542681968,1762186400,1520895764,1019132042,-861274627,-1826748916,938675924,-2068945965,827515884,-1219832192,-965636921,-1045583551,-1234193139,-1236374204,1087057247,-515676664,-1535981381,2014960480,-750485100,296276666,-311672518,1744307725,2063022651,1781650297,-1545639775,1375398654,1874106733,1200380491,1655963359,1809691378,-137662563,1488433814,-1678091939,-1488162206,-1391776428,1963695894,-875317500,959264325,-1093212407,-1346899978,-943346595,124567242,-1237951737,-1561219770,1452814726,-511650456,482651327,1963278346,-44886174,-1959089060,-1309730942,817825750,-176321176,2111806357,944100790,1031615287,631716517,1476995013,-1050878854,-1214931976,-456823181,-1668279993,-1553615518,72781562,639914374,-313631271,2070304337,1821494287,1264044602,652025637,-228581136,-913614158,-716796166,-908004744,-182673867,1092426933,-616450524,-261239981,831579365,-1193425758,-411854325,-2113231194,-857654846,791795629,-1772470345,43989725,-1977588527,1264650112,-748060584,-1385188435,-2031369938,1269017414,-1737741196,-894100436,1512687569,-1997205515,-915875222,-1536383687]},{"sector":9,"length":512,"data":[314329450,-390271469,995063563,-660896061,-997603689,1044774977,517736239,-1163289845,1539003886,966985229,-1247453183,-959435722,1832082713,-1332106515,-639833232,-1261840298,-667277099,-1986962503,1536304129,-1387731852,-688178549,611518893,1994780998,-258878044,-1223055767,1011316292,-1398488593,-2013994347,-784278736,-1945876598,2045715716,-231572606,1065515084,-835720062,-1030179507,1071745918,-1950282301,-870591409,2062373805,-1009097331,-379277972,-1332258374,2091242352,-1090367019,365764196,-1251105388,814898949,-17301382,-603067397,-986985081,1399123794,1183546258,814975481,625277725,-1221611593,-1643486657,-542138563,-1630655629,1943650031,1585126713,2112336475,1954346649,-1777361207,-1250624265,1943743055,-1109797853,-864750788,-1533432932,-1705396636,325577877,1813191091,-845562026,1007891933,1652316977,1395906230,-438324045,762834065,-356780351,-978387555,30391339,-1207111152,-1187415779,-751565979,1423437222,-342320716,-565418346,-1706562020,-1267997321,1485221715,196421364,635365665,-1566572462,-1737272078,642904460,32655767,-1053030272,1593840891,1355024385,-730790912,912656897,1773282936,-1683142230,-1492533698,-75846724,-1766947027,-1334173209,2066200490,521650669,1267130527,972533100,-2051121255,-1771152770,1708749544,171883438,1175028265,-1281055158,-1952397266,-1373059537,1787721860,910981153,-425124295,-1612793947,570100406,2053528456,-493125782,1756422762,-1398355802,-2143287296]}],[{"sector":1,"length":512,"data":[-1071118335,1209009024,403013952,125943912,-2109700064,-1062721527,-1271919742,748022250,-1318315206,-1389860351,1775399599,-358844121,-1710446615,-1486837506,533409272,978190488,-1968801823,906831735,251896032,69271614,-1591720431,1078858500,1444218145,386244960,102858846,-1583323623,1148066566,-1785172885,-2086131110,599224847,-1977439071,-635722207,1887432135,-1465357452,1570387516,1478403457,515143778,1948033403,512197080,-2013136772,1746020384,-166612000,-1902992998,-1998636722,-479535627,-628700014,-354709972,-2071503400,579371544,-1996343156,-2108124124,2023499401,-1540847102,713720472,-1572685652,-653078376,-836662110,1412177704,-2056697842,-1958557056,-1024935891,146812811,1434362739,-1752414038,-1593167144,1735318152,818557452,-768340765,906847056,764901594,-1197615216,2027733922,-466055677,-1345420392,-1899536150,1137242171,-386384497,4165571,1099973641,1613301000,-466548078,152192016,344812489,1183941721,-1845200612,1149948789,-1706854766,709501908,1276306609,-748367566,-1436731247,1564364563,1112548251,1369830673,346366421,625036883,1633047829,1549182085,-1248459399,-1773594270,-978753447,-915383402,2019399493,1603782121,405144052,-1507752351,1099850520,-1805345466,1721337433,434533077,1720820328,-1314231782,-1301538074,1847289553,468119994,1729217136,835351068,1869880551,-1713918453,1775400783,1934656057,1196326670,1058075538,-2039608859,1493906727,542705040,746677259,1671169424]},{"sector":2,"length":512,"data":[1219548391,-1921861182,1819643607,-514218576,1434839367,-1525916921,1759014832,-837533899,669846824,41353315,-2038210212,1396449093,-1744511881,227206973,-1151154251,-689097084,415696513,1475873890,34879692,-1474559370,-826458712,-1160293965,-1176815906,-683557986,501598239,-438547699,1065738015,-897665307,-606959515,-95138394,-588853659,1938785502,-1084198888,214657473,557305761,871920023,-413206495,1459865098,103831662,1905841935,-1390743017,1900992589,560012640,1621067192,-936357938,617202192,31605996,1019391744,353819951,-540933835,1640503905,291337182,-951110779,2099514508,-1362749246,-1302519392,-612606751,2092020157,1584707301,672468140,1379695820,-502794984,-1204041184,865263716,-1244250221,-1317418521,-1033817414,-668666774,-1073122669,-2014712765,962603106,-194340839,-1447699622,-1355654387,-12537302,-1212936822,-1825369621,261535315,1833246230,-1399346005,2111515083,885315650,1039949785,1067686700,817238003,-961601245,664823053,-914520474,264432080,1699324861,-1545395753,1692190410,2064694008,1589885586,-777227692,-1335765625,196499461,-923544843,-415343310,1249641745,-105028112,2097134164,1842247579,266656631,-421778752,-114524171,-1216180480,-1428680998,745307104,-508945117,1069368399,-1222434350,704448939,-1089556423,-1323118187,724403146,-87271411,2058363505,2094617542,1628599638,-1520896200,-1820593257,296852424,-1925980561,249755429,1561367512,-671023283,1710447645]},{"sector":3,"length":512,"data":[-1833114458,-107638170,958437667,367325113,501369849,-198803213,-218219697,-1144970850,1956054478,1740659454,213525583,-256789947,-622668310,-1465042546,-1171568265,2042358958,2126068957,-1635090336,-1168197222,52280918,632242032,1855838127,-1155086342,-1415287217,-545448815,-1111513116,-1050871542,1824125706,1968096810,-1468645556,1587083045,2065405246,2143032626,1920917116,-1814443484,-1127390161,1735215644,1197170184,-626354464,-1520318808,-38751477,-529388255,1886121718,922151026,-2017457970,209219996,-1930260539,-731893917,-2106329522,2054503336,-1184121775,-1246874246,-1981718496,-850979567,-556304514,1931424601,965639493,-117906091,1965970296,932501518,-673268197,2000342080,1661857355,1567759589,-572132045,-1999973124,960762889,-731726407,-453985589,433494272,-1227683148,-1027504906,860403643,-525464562,-1406431758,-875718784,-203723781,1328389003,-1103790649,-139271469,2083022601,-1460240862,-2086302068,1013867004,-1069905691,-218313018,-2007012338,-766558320,51965782,990693128,-1852197395,-1406743690,-254303308,2100202223,1475271727,1180173491,-476015132,-1413003093,-1235597006,-1076650570,1202255532,-1015981164,-1164211263,676612082,2096286790,-1257141449,1857003062,603937832,1372630211,711702933,-1068530731,920388220,-1970244006,-847025191,-675253344,-1960447209,-155459623,1978598362,-769685749,797013433,504281051,-810806240,1468779393,2101276903,2077614635,1349053059,-1835865411,-2116889910]},{"sector":4,"length":512,"data":[1493537623,373304448,373298752,1858082368,1433346048,-842093970,284032677,-1790707578,135430411,-19862272,-952036319,290459433,-1566589419,207370250,-1633948377,-1754695615,1322482854,2114404630,-1068117113,-1358563651,-986253214,1764270684,1318551055,-2107551537,-192618784,1201246790,159228788,-1500768268,-570080766,378042962,1478778784,1563432588,666800074,-804656038,883884723,779993258,1275037953,1756710549,-1882538351,165019372,1449001207,1110737979,2086466188,-918631309,-1055523270,-1966351780,2079307876,1415930952,-681054457,1911086757,2132206492,-1606228087,-1010615995,-1333045307,-1960762271,-1301843281,-1352467638,-1508928960,2002652522,-1464309534,1341130966,990652850,-2135245344,-619286530,2137608923,1406447607,100586640,-116284602,967020502,1729360042,832373244,1871742374,-672145416,1337949891,1243584328,-1277054398,535906645,-1217521300,1277197444,-2071371132,-916183156,-604027710,-1765221861,-1595158498,1100800735,1248043207,1761362524,-1402732474,545343498,255800321,-616253169,-508889121,-379083430,265273899,-751686768,652064790,-847988099,1207175469,617916392,-824920050,332276165,1988919319,-1946736295,-2078240224,337107985,1281443043,1168651616,-912422335,1234207984,1376200363,1955689404,1921066074,-566135354,878488341,1753916041,-1858815390,-903771569,586714494,519594667,1766637269,1726868890,826226267,462687130,530596990,-2007171189,-661827148,-976034310,-9792192]},{"sector":5,"length":512,"data":[71705730,39497341,1153901152,-1548759219,1344907367,-1555904325,-1800005493,1153519720,120994050,-702677456,2128909380,-820750182,-514919319,-1132359397,646579154,2025832754,1239662626,-1927479289,-1053115094,1140703523,-813500433,917911529,1338750106,-1130365164,357585263,1227367492,-529596358,-21294524,-73516851,-190425974,400121638,-1770437463,309282154,-134273519,-1855990449,-1493404039,-1490539183,-1959300114,-203452321,1060846614,1837715396,-2115647780,385754285,1322909247,-1369720009,43727027,22636698,96,2244608,9305855,-1736429760,503476024,360714014,536903588,-1527759951,1445237641,45683858,957959874,1908200051,193364483,-723902404,-2079898727,-769641832,1636156856,420259523,-1877341673,1248153656,1950688144,-449769344,1126830666,41504912,-1547137598,2035771435,-856198588,-1418325759,-1189225650,-588749510,638997289,773327686,-1435467712,100796110,1646272136,-2070266402,1847515178,320447688,269561478,-1580678544,-873285997,-421635150,-1296682232,239641418,-2024572660,969758989,884333798,973606150,-165453457,1676785849,1529451220,339140982,1711277065,258048,520552469,-2074377822,1815138349,-1604512256,140091541,1587085148,-1061035349,149452428,648253444,67124816,2098796260,186795456,1793064962,1049853952,3145495,-2129906664,244018339,1346705592,151135130,-929038286,46010119,-1966612479,2029726759,-1888247772,-214299833,-207569800,809839054]},{"sector":6,"length":512,"data":[1939899620,990791552,-1012010491,184631360,555128856,-1584692693,1810561213,-1946018672,-1218826876,260167848,463570525,-2133954572,1911908724,1545190820,2010020105,208867231,1562390240,12091284,62002030,1283609606,165829209,550022176,-843912001,149291212,-1961673064,-1007950319,-1719223042,1564734464,-41647203,1317969961,-1144816512,233505465,1694460090,1318345652,-394382511,-2087453250,679577633,-82817962,-1286512477,1690084985,1623670841,-1409130646,1810859811,1480377170,-1474836915,1358080,1609316160,1424229358,149705008,-1613085180,289448891,815328219,101618696,1046379532,2046822156,1384319489,698442345,-1616180894,1597378034,-165782175,838431526,-1854695210,1708979797,-1492652449,-696673152,-1714067164,-1418338234,-1897223963,556287498,971643808,2115860766,2140298328,-1671653598,1667751504,1229338740,1507222237,1401923158,1768249206,503753238,1456583303,-508072549,1133551142,2057685402,473369194,1074266225,671613312,268665024,92356680,-2118096872,1082662919,-1473771134,806060736,-1688491732,-1576600998,-1465794153,712282402,-761406250,-1663072319,1648940541,-376591242,-1304072489,1248860201,2045060642,-1543890456,-2133314548,-130281853,1141933056,310673688,-2063517620,-2124917740,2019300997,1679328769,445022616,-2029930388,1775645468,-377515938,-965239849,1717348125,-1652077452,-2000061029,1103863591,2015206662,528990696,-2008938368,-2011658207,99458906,-614361018,-2132928055]},{"sector":7,"length":512,"data":[513244724,-86870426,948707998,-1809544958,646546008,-1979549540,-2103925720,-1196676470,-1272149246,780894936,469153326,107867232,-1183031590,-1070625849,831275784,-1937348025,54053938,1490302093,137792899,940434290,-1906077470,-1012340594,-923780210,-130183357,1066386408,-1874589440,-1003943871,1225802640,2068156740,1185293410,300184125,1687233096,377047570,776671912,1293100225,329572662,620838479,558256404,1314067621,1419052521,-1786422956,91839574,-1721476970,1817876101,1553401273,-582624908,1386687861,1501723795,1894068170,-215738650,327470233,-1113141,1919240280,814207783,70271748,403751046,-301879550,-404399889,-1512305074,174156039,1264078343,-732280742,-1242861659,1102401550,2059881120,-208315731,-212851825,-19747823,651713490,-1531988601,-1953672009,-1921910279,-751723840,1160975374,298110107,687530210,-954635924,474555354,1174098000,2017387649,402956413,-220970147,1685529706,1618142818,-260426386,573949539,1741202390,-498890690,763977162,753923109,-123394844,-1534597810,-1644215145,1425175291,1306389097,1063685491,-2071988070,2127640101,849764623,1804779880,-1756209520,-1796696628,-1850474754,-21128276,1284006492,-1078311759,606315557,1019562241,-321903328,2147223143,-192152796,1367161294,-1638448508,-973116798,-1482855764,983599038,-1616485970,-1462851653,-2118072321,1444075234,-1243563265,240242566,43101500,-1076163141,-1922767699,-1452317169,1907569528,-1002350487]},{"sector":8,"length":512,"data":[-1849036627,2089748422,-620856613,2054608480,-1157500038,-1229730243,514471478,-764093416,-1265918718,634967272,1121708345,1446384463,1702230133,1634720498,467109874,-589376180,-1555749302,766307603,1733329524,854496070,473157029,-756286456,705113319,-957410303,1539270010,-1224937796,-1135474792,-661120941,123524698,-493211636,482992781,103333380,1984488371,719202568,652849088,-1254109193,954149606,1316881615,-1171701151,-1087706715,-621328965,-61963795,831457802,2060849962,-1697917142,748564009,1225992353,195271996,-1488150802,2098703134,1315522094,-1074343162,-1891477448,-1090302665,-1885370548,1665093103,860307835,-1164875512,-1379781500,-765081724,334126103,-1199658193,765630691,-1271494751,-2078919754,-281383151,-1501035165,-160664945,-235952241,1909877460,-604542880,-2088427918,718174834,2147428056,1319290158,1662234428,1177797061,1622055795,-389206593,-778850149,-102066344,-1119530822,-94248110,2113996364,51096148,1808952,-1365468874,9709822,1727337321,1841308076,-2014727168,105488047,-148666624,2047036222,-860479475,-686851297,-1710723099,-56497825,-2056724815,2119327772,-1383179145,2120530832,64797625,1670898414,390508843,-364767912,551841933,-343471004,1570868253,1999289278,397281877,-1175915741,-151421138,-269945808,167882754,517621327,-1480437090,310029729,564488523,2124815074,-1436971291,-1464440935,646345193,850373351,-1918678606,492449418,-633743197,-703554263]},{"sector":9,"length":512,"data":[1217506057,-1973098590,507034295,451574659,-974151709,930930471,-1456900018,-473318759,-652884581,231436961,544467674,-1478120846,705175132,1611661824,805962240,302252256,100753488,31485978,1620058632,-1339422206,1802935696,2023982970,597142021,-1174238806,-502361056,-1888459497,-1986246898,583479752,677273252,299240352,-1568530328,-2081789298,1632127579,1743895725,167742433,866147431,203246258,56676402,-521127410,272764931,1242694753,335864112,90263634,-512730602,-1872619515,-350615967,-1649772447,-503917026,1994783101,106135463,2038488056,-2073523830,-1622697451,-664376977,-2105365793,1787354823,470213040,123850866,-504333794,276963335,-176453534,-2107397423,1640511072,162173551,-89479961,-1149063512,587768353,153239694,-1570728411,-2137118967,-1507259870,722117280,186826926,-1562331603,-630034933,579607351,1881299662,-1945962308,-2095528912,952906380,-781284093,1940293633,-1924970060,-1016539083,-1998571635,-398881213,999211944,699648240,1217557401,-386384497,4165571,1099973641,-1866192632,1145638979,-575560175,410440038,1838269545,300596861,1687233096,-1447933422,-800380124,1284703417,-1820010188,83442766,289574612,1246893157,1410655537,358961490,-445556138,-1855825899,-1319496091,1536607658,-1757034128,-974555043,159408023,-2006869946,1813562921,421937550,-1503553947,-2120325351,-1503061466,1796908705,-560989065,-163725979,1081730791,-1246355781,568835000,-2131533379]}]],[[{"sector":1,"length":512,"data":[125859847,-1071775504,1191213059,-440686847,-1615302218,-286490851,1551283121,-902753460,-1202580216,-1691110259,-929314115,-1054025233,265834601,522572519,1733548467,-1114428033,-885625500,585324302,58642784,-1766253185,724152924,-545937574,-83127936,1962469148,1423154277,-1902682120,1405755877,-1638451735,578772970,1479174781,-518788385,-1953213792,1166683763,-501067078,1316074961,-1922427252,-1486012655,-96832625,-1962448009,723891644,-861104606,-1209408118,1939507445,1122393980,1282734709,-1237688085,-1227073466,-845980973,889071308,-1326993192,-1400351163,282014239,533874022,-81417517,1167797336,-429916319,-430050607,636636559,-522516562,-955010566,1520836595,1712095634,1331662131,-1582245264,-1473194176,-2055210443,-1679255712,-703993142,-2082864793,-127986737,1693772400,16355379,-225836818,-343601403,1558107142,-1839483690,963030678,-1935946650,1828272796,-254239114,1443064373,-682468975,140912548,697295774,861426999,1277360439,-1280769654,-2143311061,-1363678383,-1663311427,379761388,1505615062,1535451090,1422523066,-1991974719,1236494084,-845981392,1130488034,-693372191,-1963103075,1435195980,1134881784,626435800,-1496056581,65401177,1198120596,-189197464,-469951508,103545053,1756425188,-1875553332,300496667,-1722618938,735987681,-928418381,1689724312,-811707479,-45404835,-614895648,-1875804708,-1795105968,-1464670320,1864140735,-1453281561,1858049980,-546690708,965997409,-1196217320]},{"sector":2,"length":512,"data":[-1343589634,380716448,-293461088,1556367253,2037295022,-1963486204,1681721836,1124116019,-1199107733,-1770643707,-127453218,-823570530,-281225661,2119654677,-43556571,-2040767415,-812910161,2115753468,360434794,691643478,827701699,1247201035,1597953106,-971780584,-1999972246,-1814723399,-619370488,-1536949114,521093787,1640587490,1424591999,-815121524,2143803133,-973916285,-673844015,-1880924011,1586370552,1772174636,95768403,-1235259937,-1055554509,1606151427,-503216580,1099109535,52184828,2027350065,556333964,622145063,-378555780,-142573443,152640696,-2010460966,994169835,1214884681,695286310,-421714844,-1722289978,1304734419,2128139632,1249840552,123598738,503589398,-2049113238,858283821,-1431265435,1598964078,-1804431819,-1326971672,-165662386,-1564264437,-1139509222,-341094368,-572584898,1412387560,-2060364220,-1776921034,339314562,-1901688528,-2093340843,1758032514,-1596148785,1353256419,676549457,619972811,-1604160400,299493224,-279820287,-287747502,361945186,-1722083773,1217532619,-2055053835,1743907296,38110294,-1999334925,898492521,1469497951,-903934467,1200743364,-804585200,-1466522400,-1908767227,1838621472,1072065990,-830764613,-943818432,402510996,-604434582,-2013815158,770211878,748436298,-1763613888,-1707049090,-536666379,284158638,-126816271,-1681959016,-89419761,500349923,1607762148,-1846499,-608173129,-1417436205,1205665801,1947542007,407953999,1306143260,-400944628]},{"sector":3,"length":512,"data":[820954366,1184016535,2105055477,524297992,-1209155347,219068949,-788395203,2030531965,-1138086867,-73399946,-93878921,-604017368,891903091,1063218975,-1551280866,-1263003916,-605126361,1432174376,48187509,-539672561,-1914268565,-1645054079,-1548880016,-1982955461,15732782,-1532621046,-1055491498,344236295,-2124298154,-501710307,-936559991,638485344,713135637,-2104121306,-2147154662,-2145909760,940311168,755269888,-2112768839,1335906604,1429341247,153635218,436601192,134340720,1113624610,1148527488,-1591050222,990577312,1376917517,-2097104585,-2133314548,-1606676861,873435685,1300497533,-698283744,-250067887,570248351,944132465,1439982957,81866826,-1536142828,-262897761,1447433847,370431396,-1786427050,-1270326250,2033993631,1028621825,1288054025,339841344,26820437,-1469559210,1880852161,1279738312,-1781407626,-984745698,-126068459,-128363471,546693633,1214567556,573081686,1083056918,1599362610,629752393,-1983747944,626303015,-1599723254,-148174174,747307705,-1956458224,-1024935811,12483915,-1003446461,848069400,216517836,592499252,1758999967,-248017469,957227905,245604582,385334587,1594808874,1530468812,-445800157,-417515121,224803656,1540937575,-702757852,-681879690,-1793940210,-184730092,-1620083747,-683573547,-1552542225,1047156996,-554373070,-518988005,1143741437,1749883598,1471630713,1421329086,-843962046,1877828779,1104097481,-162839188,-393359601,-892569851,379973343]},{"sector":4,"length":512,"data":[358625068,585080366,-290996943,597605206,2134074241,1872105121,-1624575804,-854275773,218078468,-134773857,1069397063,1388101146,-1064567063,-35290826,1961398213,-2053158135,1833240475,215497938,866306579,1710194356,-148358889,-1260505881,1828189721,-678798427,-458155734,1156448050,-2113967209,-1040356777,411876950,-512584099,-810287714,-1861951071,-1568990795,-204813637,1833793098,-1501630426,-2052574587,-1989914175,1479125954,-1467493064,1373863683,1755541423,738036477,-59703329,1394042067,1471121503,100312553,1571338304,365797040,1312277977,1398692127,1978236108,1723984974,-1003140231,-1808914403,268216587,-672339359,-318851608,1052002621,-1139864165,-45794987,774157190,2135605308,1062390275,1085770129,568848681,-1880177340,1787683000,101861849,-673483240,237813827,-1718486508,-1342343104,1254002022,1040116901,-1847056317,1842896695,-1392760761,-640470312,1573471077,2145755724,-847947085,-1645714304,-1918755613,-437187144,-1660019574,1655581696,-1318773743,1323671701,226151156,-1645531965,-774894544,814671990,-2108014080,-2076542388,-1511197424,-513566607,-1289755870,1390551897,1657585921,-208790188,829929585,-1689926921,368769199,-1095618698,-563380996,-752877051,756632885,-1294470078,1558577087,-689945172,-1547497894,-210278500,-946841530,1317641055,299060140,756744192,-2111671111,-1345162541,-686919791,-1944846192,-654988005,1795311650,-1675849102,244468605,-1704626878,-1804507281,2062774185]},{"sector":5,"length":512,"data":[-723895859,-2124697520,1835195346,-1563078504,-1905426443,-223539715,386578907,1927816102,-950551737,1650580838,-162814668,1351285050,1519739208,477435462,1501453127,1271030961,-577021852,1167795082,1981768131,995280696,6929972,1024990633,-423018506,1938974666,205881060,975613839,-236768781,-1219525995,558891014,733994716,-961697598,-770129953,-1360345380,1639523224,1360721644,1576097417,-1104491564,-1216989103,-1717940760,1135092573,94713055,1009881700,-1088577853,1186933191,1969073897,290195172,-205160166,-1858735866,-1300820213,-1201021372,-660963902,-519967943,182328583,-1028441622,178672714,1576019378,-183254377,-640013367,-1627109706,1584966374,-1787163836,-364012946,-835178587,-2146688658,-1610876796,-197521991,1398718250,-1177575763,227634827,410784519,-157695851,-237846904,-70011491,1270472547,-1454081791,-304445099,304331656,-1304745285,1557287624,2062798866,1518901931,-1431343952,1871292495,1006374521,-1467345838,1337649848,1418202743,755293823,791865580,534667028,1843927317,1672703557,1126782202,163416300,1254048378,782065865,602954902,910937797,-727560103,-1424996819,1345588731,-1874145660,479668223,597893539,-614790265,-1785202960,427833628,1674980809,-1415409607,-1391143947,1965575365,-1338669835,-1732629755,1543299202,-1592411635,-2019652865,-1964561232,-500682171,1863486347,2090524309,1971639650,1075003567,-732838347,1806533454,-764098428,-764710165,-1646953971,-1554802482]},{"sector":6,"length":512,"data":[-1946096265,-1343097371,-1554065048,87657856,-515179005,-1370236972,139327827,168253889,1393656952,718820649,1260212091,-1296786773,-82464006,-225001947,-665801321,1527670023,539313166,587884992,-1552461941,-312113102,-1071341870,643572666,1922526201,1597283982,-1407844369,1718178556,-191738066,377471754,182926882,-2048293736,-1078796862,-1926188633,-967669190,-956466782,-1232709730,527263472,603229688,1551304497,-1686073483,-93777096,339625914,1352704555,-268335775,-1425748265,-747640547,508668129,-1474300483,-847545534,-1922042133,-789777013,-2123772291,-1370574472,839580175,1098827078,-905575726,-108941286,1119335590,491632818,-1055810312,-1210008339,1479837684,185687014,-1733210273,216639706,-1154909109,-1922420049,-1349533044,359999877,858271308,-1473958352,-738599077,1646953015,-103015067,113054127,2117769957,-1616890626,-931629285,2041209952,345520924,-1776076328,-2010432932,-1947694170,1210637149,1800502533,191974204,557574106,253194492,1694621907,2137622766,392658392,645703213,-551016724,-1128109530,1059368096,-1242139651,1984434225,1759437409,1471600100,1316718666,-27270663,1935532125,-1080062887,-561475838,1081135906,1462121185,1562757817,-1729179971,-642693594,385702840,-1730005760,-270060023,-477535538,-1410777340,4951023,-1284723260,1950070160,1321832103,728734834,-1703066661,-152577530,302986132,1268077185,1152956549,-530732307,1382324477,-652122769,-1611378623,579839145]},{"sector":7,"length":512,"data":[-268490756,-516327996,649498991,-587917241,-1152574919,-810405843,-1055037872,334270903,436204723,-1855983410,-2134529826,970210519,-1894103294,1205844704,784336344,-743121377,1945020509,599494559,-821259507,1308609732,-1222170886,-71516316,-597916856,-1499003784,-1052672113,1548880580,-1580101934,116693253,411632213,-433997885,1666839532,910599313,-586455503,1112110538,1881576500,-479854569,760320427,2020146996,-2085880828,1339418099,1188841580,1498276708,1375614489,-557075204,-1847626885,-1828334282,-1967065818,735280081,-1578487404,422132465,1056408635,2062198391,-559548847,644364581,1221567618,-1848380411,1801266455,-173077652,-1380380511,1625679886,662707019,1550322218,789881135,354241797,1339109007,-512043176,-620652361,584107000,912974977,996398,185561849,82627469,1652791494,-1250447514,1850063581,-1161396981,29539578,-1712213426,164428608,-8625858,1069797554,2097163142,879507424,196809455,-1118566106,1388401204,-1022857301,-1064631219,-1248554471,-1060157607,-270229244,-931523043,-1485565257,890593579,1341285943,2145637138,918027250,-1808193309,-1433674694,-1860449294,1990075134,1699504793,-1915281050,-699014120,-1776517584,609488,-1190732729,205521059,1807553861,1278670307,1949400542,1372374417,705193559,-855775008,31892063,-812061534,1812684387,-879820457,854774777,-1993562612,1589489953,100685756,2017804858,-2027809421,1835149793,-638033429,2102049455,105707431]},{"sector":8,"length":512,"data":[-1811965326,-1490575716,-1957074654,1285407309,896779194,-688428724,-900737977,2066277326,-1355812525,992729090,-977425958,-1242490154,635445165,2084599752,-666776361,-1426723995,-2136297679,-1326312423,-1513456240,101374763,-1968660371,649313801,1708963839,-1715609131,1342954643,2028053940,155366403,-1689737384,102316082,1945297449,-1085209653,-1036460261,1220945117,1809942181,-1316417638,-871930181,1924749168,-1753909339,-1933311484,2094867254,1528182784,1113282181,-61094889,-743706594,-1869321548,1748628898,-202952134,-463698410,-752438840,-573010417,-905049648,1734563518,-1875246510,584681257,-1336864682,1114793388,-1397451997,-1881489850,667773325,912509386,-772905574,371883372,846766081,-370509824,704403321,-823139706,-1787718776,1105301905,1547858218,-1252286624,-1090434350,-23970526,-29403583,-346020640,971355238,-1605269280,1759931466,1489233546,-322775908,-1870741861,192591812,-1216146305,628568721,1901161264,948342529,-1452265923,-2039882201,1382328534,1742489436,-641130023,-451991964,-97289436,955288821,-596706009,2145155101,1125062065,537821337,-858171094,2017812022,2094198153,-1628050642,-48222549,2072278621,2064208740,1326903772,-93692085,504902353,-1117252825,680109540,-181424574,-1489255479,343042176,522559875,1556174630,2134172818,-91380110,1730686403,467293609,269583876,-1380986289,-1965337242,-157383802,2015830936,-1602389430,954211175,-1022420404,1320005643,-965989485]},{"sector":9,"length":512,"data":[-1014407907,1957354238,-1589964260,221774610,-249549729,1421378635,1842827799,93757417,1062468921,-1735832084,-1171662879,-1004629767,1071131634,-1583601878,-1840119632,-919359003,-603774090,-1860766463,-1788245343,-900325819,-1555013138,288418012,-1286594765,331827910,1050567486,-747462573,1241929145,1194188868,-165756828,1014667681,1203696027,-1072295812,452831508,617940588,199749876,1216097817,-1372966114,1942935337,1470564447,-605117166,1423517334,422059023,685004923,-1965814141,-1637018141,-1769319646,-2114538008,347935418,547617690,-1526753168,-2007224451,-1215575466,1403854271,-1305899676,-1289785488,928689684,1169872559,1753393866,-1804187484,-1836962257,290281220,1604639744,1540659309,-393796012,-1419321583,-1876893405,-1431532692,875509986,1196313062,-1976115273,1741157775,194155299,-646891574,1891139628,1050528076,-213807296,1769176123,-2088350667,-1436142187,-82290727,-922893929,620079448,-1230523330,1780189636,-413309515,-1419789698,-347947308,2000156898,318695398,1520006343,1561047572,730868640,1265226124,117215421,-59129768,63745394,91129375,1539618546,-760851935,-292847487,-2088693792,-531755973,-1012238256,1256207681,1625419523,-2094004678,-928329431,-1437939384,1270925508,-1743407357,-268888539,-2077585720,1871702327,647394595,242463910,-226415779,311637605,-1596625607,-923777697,589395659,-1731051760,-1793010211,-467529625,-517250588,-1692148979,-1704041269,710191701,1041721845]}],[{"sector":1,"length":512,"data":[695450858,1995917475,-1211434638,-522145552,156479841,1348981571,607443250,-703332864,-1970326007,-393634463,-908788087,2114251260,-1669427696,-99381284,-1547852888,1741360658,1897461934,373021308,-54683179,-1680169385,1533482813,-682522526,1292200840,-772691623,-1680183026,-1417945218,1133964055,-1344544080,-1733945856,-18532184,-1314486298,-211105227,-1285739163,986368893,1985271799,-2055177671,1607221249,-1009450411,-578324495,-718872376,-185498544,-1007485202,1305110243,432132946,-186811178,697884787,1880333807,-1455911972,2116940553,1506329094,1550765356,712185034,1980142821,98877300,-64714891,403208228,1341985803,208717706,-1475053796,2074779044,108486025,1519733648,-2130432705,-1221719223,2126203608,1843234693,68525899,1747399373,-893977665,-853927926,-299164517,1691361339,-269691706,1975220146,-1787992044,2004816875,-479838488,-968326557,-1438320268,1129806207,940970192,1600051798,-2013351960,1221556983,-945565064,-1050811501,-2033082440,-1043510118,-911725449,-101611228,-469336818,1995051780,-772420297,1047317004,1787577785,635004894,941991028,-439104145,-946467144,-872438263,664723022,691602622,-1576727327,-62542946,-1773871101,-1653361911,1467240152,-195419217,1957832559,-1704725977,317018537,-1751992464,-132601276,2120529715,-2103337043,-1624413445,389307728,-1125009158,-1247890092,1142595838,993020401,480836944,-799419690,-1004569637,-1750957454,610859449,-1727925987,1869002569]},{"sector":2,"length":512,"data":[573148104,-1895043188,1503412135,-211776270,1774566966,-60671322,-1465426924,2066615250,-1724331818,1271744679,-504334128,697012285,-1844911872,1953016205,1253605539,527841669,701615219,1050893219,1563349071,-1210603720,-915801497,-1824614696,479572606,509935203,805525388,-1690917538,-301907908,-207508061,-1789895681,1762674405,-599163634,-724449145,269424879,1094502523,47931041,237905577,294953978,-1765426029,-479462536,-1424773162,-896421215,-905549343,1714027108,2075756649,1648556202,1123722953,370925735,-9948948,-952747780,1537466741,111487556,-250582086,1248584809,-93048565,1504438308,-450213055,-58646713,1931982964,-1232256948,693943988,1568901086,744638757,86958350,1924925118,1847205259,784392952,289274069,-2145019936,157498288,-1491672685,-162634626,-836664539,-274536357,1640782510,-208159613,-1150751764,1117411447,974318359,1407618420,804577408,1684714608,-2052523044,-605983423,966379101,-1029376699,1347383365,-2055426638,1985732506,-983271067,119414357,1006949036,809627607,653711004,-1981526617,1467610209,-521232900,-860948504,-1572553408,1227698803,1065252335,-1722303466,-1626902250,878604435,-896417113,-1969127457,-1307720354,-1156011535,-1483264367,534142258,1996273427,1390393298,-873827669,1689955906,-141396139,1966503550,-917063733,-1129885560,-1731289818,-378035373,-394786278,432203592,-1109114266,-1218017361,-1855181595,1047508918,-1246566764,-1607293254,1062030521]},{"sector":3,"length":512,"data":[-462597255,385293633,1908564817,-1510612120,-1919165959,-1706269478,-2073320166,-311577720,-582735979,1908550361,-498547148,2036803916,-1390045703,510773574,-857274818,-1151660259,-1134746623,1693927390,818444806,-1819638517,1712529969,-143473500,904253529,1680499885,913649981,-1271285717,-1412454848,-2061114803,-1488130806,261622793,1882459258,365394874,225372877,-171155189,-1394066090,904528442,-206121866,297509594,-180548452,867132313,-409749457,1924248873,-467892484,1539681815,-934175125,-1830305323,626533491,-834810941,-509632616,70452941,-432698751,-1173766776,-544413575,-1449788640,1905886379,-507880248,959663226,-744949637,-637188570,837498674,988175126,-122360411,1222046486,-286621403,644460675,-51737351,416135583,-480084011,-314589757,720614440,1107419895,-899561538,-168994322,-1223941172,-562015759,-233254875,-413408903,-673231935,1873997295,418940571,953875259,-2091147000,-106386142,1880210086,116356824,1263512625,1279260550,487455052,-1382809815,213029057,1824482113,1068065398,-341387189,331049049,-439911894,1479328418,-258665403,-1154250664,2045492673,-1179832507,1222867708,442378373,-1813490769,-1108070501,1593195004,234424224,-1359004520,-2056787128,611372731,227000721,647667930,-136201870,-2017333602,-1442028456,1852608470,1579274514,-626938566,-1775512474,1772145377,-18545093,-1120754841,1759825981,28122428,334831375,-1895034125,1451378354,445096587,993545373]},{"sector":4,"length":512,"data":[2073445020,-705616276,1028800153,1718032702,-933716724,-47114770,-2111140194,1149816216,-399549048,-226768524,1328519253,2129533785,1605769406,-255635000,1465935354,608219221,731894168,623726454,-1296960166,1389161199,-111241898,843982209,-2033630196,636669722,-1926540810,1778019910,-974391066,1413812135,295280362,152614826,2052282495,-234212144,2141283420,647619136,1850776731,1205460656,-420012350,-21893502,2111963600,-839052449,1932500356,241704746,-2008760058,-1558009549,1748804108,-500815448,183387039,-1725338623,-107544036,1975315734,531233964,-1992412673,1855227560,-548411523,1593509188,-571420464,472117346,-1735257869,-408663122,-1708491180,550407989,1566728363,1186369903,-1182023856,-1509471255,364031591,-756750444,455662917,-700189975,-766707075,58477020,-1622181204,2145967854,2140958397,294472245,-493795294,-1696956198,1549820547,-124008127,551859508,-2060420986,1266979617,2094928206,-1282501941,-155960453,2030116281,44868878,-1448454918,-651018025,278875812,-475373567,-201160735,1226656301,-2145904573,1875436656,2059718927,1732175990,242130380,1058778144,-256461805,-132158106,1874657101,1075762826,-1467872992,1511350197,2111055300,-472469712,1469515971,1570924281,377474153,-1247330782,-192450990,74799355,1453759467,-1372422934,1977662688,-1648436133,1642512240,1180186898,-901379583,2003314377,1763727338,544643590,-1175582334,102795232,1884562489,-1613314738,-2147113355]},{"sector":5,"length":512,"data":[-2145909760,940311168,2119467264,-1662577250,-1486417292,-638488162,-1072522330,1868946005,85481446,27287574,8396295,-1844836199,705299040,-1736253264,-664747417,1086942106,-398979709,-1214692416,1813640709,-1498841503,-376324081,138436761,-2073000895,296106405,-2071367064,-1502454375,1078858500,-1911249407,1667621201,90607195,105142806,1750886248,-1592261143,428229001,-672030333,116943462,-1066525928,1869547297,1653033317,-1731858314,-2047511192,-327410041,2120128485,1687885344,418515072,1180275606,429549064,-1788540798,1581826601,-1998205505,1111584405,-176675689,1831147382,1640588985,161636745,-1722507737,777463833,-1540843738,1779066548,-1755143764,-380589014,-1599050550,-1238562011,765110605,195223977,49920559,281177228,-936272973,864863016,-1924970288,651221045,-455447579,-566813818,1834644352,241406178,380430906,-1058129115,1318326051,1041195986,-1529614086,604071487,419730384,1279430788,1141957682,-781954798,-999745390,-2109061231,642322980,-1840077663,319076652,1959867026,-382186076,1078956996,-1794534135,-1325097734,1281708548,-191886731,111495912,237504583,772441319,-1958474523,-1975658011,-2147104486,733313269,847881132,-1903944825,-1833350237,1019025540,-1570125538,-2041112047,241856934,313648257,-1792590242,106388570,-979232303,-481478302,-1160736720,-1539692750,1263823816,1101220216,-1779888404,-263818439,971540754,1809237469,877381587,432726697,-1508020074,1340178123]},{"sector":6,"length":512,"data":[1598138241,-1988444007,1588254056,116712009,1012787497,312005213,735872105,248232239,-1835388412,-765498586,1267158089,-1524277620,-1014993414,-1922530149,1255452306,-1473280903,1154217425,1720547444,640960276,1998991655,518769392,944693065,-1656852643,-193411053,-780907623,576521930,-1685234100,1431798661,-1879747458,-1967381222,782037143,-1804005525,-1370224935,-1217688798,1659287051,-506886643,-1041189998,-997271053,-1894606143,680407949,-1995568907,832320947,1818699853,-299643668,1387868610,1958691295,925606664,-993090184,-715693571,-1262944569,-639142242,581027283,1789533496,-323607439,417073215,-2028432693,1456792626,-488958332,1939919457,889980774,-1420881354,24579708,586618933,940065979,595862382,32239166,1176418249,375953671,-1918187762,-1323588329,1771319034,1746093704,-1470835461,1839246066,-2125162834,1008211350,850217636,-1434143630,-268935356,-225544624,332251886,-356055267,-1580851943,2066974448,1833631153,-1088135285,-351395932,-1751954442,-2016955406,150163936,-959717079,888976375,820372502,141608852,1192305438,46474321,1258806479,-1195740606,-2083819202,1250554611,1809133001,2032762405,-2077887435,1599376352,1334258209,-279564942,-1917252010,-1172130704,1041151509,-840555807,1576481520,49621798,1756773982,221398509,109131288,-1453876964,-1379870577,2098289441,1976177675,121116431,-1088720018,725248115,1348457201,986637944,-1351903934,1273113371,247281909,-896075409]},{"sector":7,"length":512,"data":[783920663,1147994539,1629899591,1627619927,824676631,-211560745,1276784938,-132916817,-537359101,254564849,-1616457815,1520650338,1427880020,-421961116,-2098249135,1076007739,-115688208,-1333203741,-811313526,-1082017868,1203297012,1175136442,1002956922,1665720668,1769149771,-282122595,124508502,1198506089,7878873,147223140,1239779353,1979347043,-595681412,226140587,-1413703780,-2114026997,1230128730,1111966311,-1645380458,117846471,-1415736925,790908335,-738887575,466338824,-211120322,-259567066,-292356108,24283814,1313565670,1800626048,-104698693,-1614447305,-1345593462,-1663292170,918743990,652709412,520311407,-1151943711,-948652022,768781626,-1366100189,1316166615,-1132409179,914939218,-1479051049,1473750862,-1591223225,-2118072268,216365760,1993460165,1599758722,-1808398959,1036461536,-256075860,1963825120,608335633,864653544,573629827,583350588,197843665,1355786262,819230881,-352240825,-364885055,-975583365,-566074519,-2114762382,-1647727853,1668373276,-1229763596,-446286128,387235335,-447329846,-1116039441,2128961258,-308199310,1431646505,1331496352,-1835998251,1054745642,-1065983564,-1226500200,-97410322,977154690,1523452245,1228560491,-408566156,-1488806466,296660971,1180205938,645212394,-712583975,867446066,432047051,601229502,-2095665672,-53087002,1908110602,452462160,1966315843,-1330215308,-1898826481,465301482,-424631277,-878291824,-973202696,-1188712598,-1702710784]},{"sector":8,"length":512,"data":[1635166553,1436561050,1675212975,1854288789,-1990632501,1538386742,-691311218,1802243179,-389833232,-491843744,-1867201158,-331657722,806735859,613577751,-1509440210,814114510,-660201479,415892740,-1004046435,-1200947545,1624671674,1596378634,-715056689,-271411736,-1659951652,-1663712981,-1539557975,-1625107716,-761897799,-1219330955,1724537627,-1310159055,-966985018,1060998584,-1634626429,-660704581,1818824841,452775479,1552195408,-213159235,-961848407,-1991267841,728554671,-1730286323,-1516245897,491554290,2053273301,1483702009,-2121771061,2040718143,763546914,1349946168,-483931107,-188255246,1025699525,-889367629,-1114188144,-1904358403,-809205366,327448807,-1894185037,465637089,1156526610,1930631604,1020151867,1625281853,-1520971546,1676116929,-83455946,-946560585,1077928426,-160573769,-898361583,-786914510,998647695,984560314,1185980254,1748749424,2107293704,-1219693287,-1137054821,170333279,42960897,1873538048,1107111286,1400355517,-813970946,-841666257,1496843665,1452469595,812373239,-507202672,-842409735,1145371305,1767416854,-1267633669,-87641374,500550454,1046894244,647118239,-496141656,917576844,-994833405,-2119717823,-1958827052,1812035166,-1370581235,-1438911828,867731951,-1965460744,-2098140221,-1488550148,978480104,1651250552,-94692754,1752084821,-1185850436,-358726747,-838579945,-95315357,-113553421,5094387,-1604609414,739125717,1575635611,-581129511,1327469597,-274985962]},{"sector":9,"length":512,"data":[1697105685,1557914427,257867988,-616043736,-1231832980,-911559969,-1003261688,631418263,-2058484945,-1281660738,-866236144,871546580,914236099,535976830,-442853030,-445720189,2067033421,-627215034,-1038649059,1361563024,173112711,-954816441,1121987989,-1060918605,1911920930,2005008317,1296662168,1359043388,1521775734,1697590698,-217909522,-1624043243,662729392,-647723045,-865563115,-670996972,-1041290980,172424083,926847172,798900668,-440713408,-1778571935,-1455380285,-634350934,-1533740290,887111707,-1503447575,1399569252,-2115106770,-1071918717,-191563084,-917823984,-1261279946,-367622454,-1705590093,-1011177271,2139509101,-972982729,-1622908959,431818850,458525610,1737292044,807117545,-2080451909,-524709735,1046987367,-123554092,-1357479914,-1369514156,12411632,1847769176,-254578855,-797839250,460453921,-2100421677,1699416091,-1423761180,265857906,-132830417,1444425016,2095493078,-850463878,968613661,-496830350,202207344,948340024,2099204389,1007959274,-843195651,-512152826,1072339642,1457139161,377252810,842293219,-1295739582,1738201484,371620270,738622139,245311304,771214148,1078796924,1461104030,-689066310,-2011713462,1720358970,-288264378,404329364,-310123120,1800874764,1235570372,111695706,-1380598347,-534694188,-436576905,927127682,-1290377828,-694416040,-1041218208,-1079777534,1685538547,1843773973,1618122156,-1423324365,-1441836958,1393012439,-1662745462,-741074592,792118914]}]],[[{"sector":1,"length":512,"data":[1689178553,567596465,876277943,-2146666361,-259419486,-2139609337,-908777841,519508528,1311068513,-943458486,1467225590,625427075,1198437807,-2132899715,1953765997,1169596567,843482997,-807263071,-990900433,885017313,1847949084,1648470210,902842647,1563571818,-32458864,1347018665,1493612402,-364283272,1521567378,-2053585017,-1618258015,-1181206603,2114014640,810699058,1598435752,728823307,-1608053470,2095607280,-1797662965,440995201,-51852508,-54461947,-219654036,-1243039432,-480987468,1717555771,113124533,184156892,-1597731504,805258798,1428218250,2092818711,-1591245722,-1337721161,646989560,-2132749903,-1023022495,-1135478897,-1049662550,1920476201,-539281560,-1906802056,1216040792,2009569038,-11151278,2036299488,-426149786,1552920520,217680881,-1058630081,-1581029978,-1689611594,-1852564769,-330107230,594315972,-1103242347,1357801543,78582839,-856610897,-167840257,1550949729,865381774,921958675,-1303864669,1630459018,1453401456,1131648460,273116739,-1128604237,1983341132,1436962781,854977304,1844322471,606952431,-89518821,1470816050,-1549879002,-1007684262,1973924731,1484103957,-645592176,-266685971,56404146,-1852492705,1579741795,-115588667,1020979606,-750968673,1603144702,1822639539,-2077983529,-212727633,307709014,-288158253,-1339291151,-322504916,1700323024,-680368238,497002850,1307917700,-177976649,-1199198924,-1957230648,-108366861,-1155895244,-1091441588,1130191538,-1701292586]},{"sector":2,"length":512,"data":[-763732830,-1125213374,-13887946,-105366015,643825781,1182362105,919905575,1776041578,-980761007,-335646722,995566495,-1532201568,-1936412425,1374178022,888426452,452262481,1493005696,-1043213590,-2060380970,1126847561,-244363494,-1981654135,429463418,-1676913161,948031694,817902448,1781866268,-872727852,1010258244,-1160503574,1875477831,-1158342837,-1924906201,-273335195,-1619868865,-2031888790,1858323615,-1289490076,-848098886,1006118902,349332390,1046493575,786957548,1609820007,-614087811,2097471078,-1896202371,-539498730,251290538,-1755999667,-93426015,-1153340605,1431842627,-765754123,1706528934,825412858,-1366198073,-1934710249,-980444235,2090568953,709209638,-31379269,41676254,908930813,-733220736,340877968,317689515,1116330897,376279654,1842541101,-535014638,272257630,-955806321,350012461,1337055058,943608160,242663361,1647847770,-1679246243,260481831,386285467,1600577098,-1421551434,841984590,1914931041,-1089533016,-114198412,38162754,-161479491,-778593664,1354019660,-914744856,429819892,1430243706,827080546,1451351550,-1258954350,983965471,1158100086,1679204987,-701875521,509122194,701790557,-1670959343,-1276384933,1999114453,1396838539,-642498182,-1935910390,760068069,611395050,1074429391,1101417606,1839868708,-1213251021,-410830902,233384803,-633694412,-188811886,870682610,-496380042,1956463049,660679494,-143740972,-1857588858,-1845265786,899390083,-1783087962]},{"sector":3,"length":512,"data":[459497213,-487935356,885902573,-331745059,-1588782967,1808915228,1806022307,1169709402,-1849755795,2040333534,-414245073,1186848440,1789001,252620497,1915591308,-984793086,-805121479,2702587,1112555032,-1811447178,-283355760,-2046797235,1124448583,-2146004831,1124643345,-1779986383,-1098543393,-84477538,-1861312833,717945134,1459210590,-440342227,-1530581262,443540760,-245322713,-1164695321,-219111153,-1561380944,-840072215,-2013712390,-808544782,-795818923,1188850438,1858176234,1065119656,567320954,1529662858,-1345616148,2117165413,793700193,-2074539195,516070471,789501796,1943105003,-1855980586,483888710,2132207051,-60492621,809593098,-1434537928,-19566083,1111946804,-421442633,1549031980,-768716583,-770481341,-2036894999,-1240883517,-1515111601,-688585107,496090287,-1870308575,-469035506,-1361190209,1487145938,-635715008,-2106141993,1827679088,-807425614,-1036400704,-1976624340,-1946951470,1129144533,1104113424,2057862529,-935707859,-432659247,-1364185330,-1854170481,-668766819,-1885964081,-244946952,19875260,1214314495,1184188993,-1581243302,1569765703,-1630490741,-1291453370,1759440304,-1190966007,1999604749,1300189218,1358496913,833816549,-1243313461,-219025322,1789082543,1347529691,812702894,-327086668,-1268456702,-434712465,1889356078,1901736533,1855692932,-700838420,-1981875683,-106816367,-428359890,-1138973062,-1882118348,-15619858,-500093916,922782669,-1295306655,-1890587250,7783670]},{"sector":4,"length":512,"data":[-623439056,1258181905,-926006460,1228251355,1009852122,1566165382,-2030806980,1284317209,-46898209,-881122369,-456389302,776456407,-2032218880,1744091389,171517547,705400739,-899976290,-1460429507,-268893499,-1218754749,-1885886675,2075599593,749156199,927788103,-158533123,-743972422,-902517902,-517875519,-1040463236,-685253763,-1235767780,-1714552600,-43632910,-875765162,518579312,-972496555,-1827682986,-1069813004,1003082740,2144835347,254542001,540044510,536209406,-1304966511,1635711101,-1202618876,951335400,-31813989,-374276700,1133200785,-1888496349,-576359109,1710416328,-1931298242,776971490,-748274176,-1750167987,-149581189,1857787853,2063428708,698261009,1995299096,1785170367,-274757815,-187496130,1999042723,-352680123,-1796884977,267073396,1719172055,-1077853562,-1367141986,716128980,1391726459,-323637004,2085900237,-19618642,-2112191783,1820758234,-1646109782,597669894,-343805697,-1281034953,-47384185,1441889234,-1224513140,736846845,-2077417972,888277147,-20853953,-1539443357,-541192591,1482080165,1991458801,1207814043,-1444307891,-1674871165,-2024746161,-1704538710,-302436806,-1679004677,910490458,-626845654,-844766821,-390337778,-1621411936,1057935455,-1346173612,-2119644766,-8783877,-161347083,-1859830821,-1794426908,355091336,682145016,-834172771,-1668594704,-341883741,454392685,248553913,-1623124039,1140889778,-91266088,-22202080,-1210224199,804188419,245612765,-1968177196]},{"sector":5,"length":512,"data":[403549853,1962653897,-1439214853,393533559,-849276812,785485667,882974669,-215411329,2025494426,541594096,1640265519,-380475359,481720790,-221806978,-696457573,344090529,2026374418,-179944792,-696471462,65170814,586211334,1028245836,935316391,1868835836,1092104542,-1837841322,187116189,1175823635,-925279481,1690227471,846778671,-1672067789,589581981,-1249506161,-2066797670,-742877809,-351805281,1295547237,-1714103353,2072915183,-690203277,-1408084619,-1820311355,-1362551775,696262927,-1578587435,-1833111156,2114145563,-1414290315,-1889529514,656049592,-750392179,-815067740,-961097808,-1418469732,-1460117469,-222272100,621480130,813267573,265232823,-611263097,-1570795468,-1104068401,-1141130700,550115203,-1843687672,-2096924658,728305368,-615979661,-265433731,1868353963,70186311,-1234082545,-305111432,1643064021,883733677,1076932952,-38532799,2005782088,707130846,-1281242480,-1836450958,-158465956,1755704995,1323516840,-484531165,-523757328,505127629,-596830446,-1578243304,1723104273,-2006008470,265809348,-882875228,973430169,-752320719,1009509451,1170438037,394631538,1584357496,-712969135,1475487036,-1507175033,529940177,-767305816,1686067072,1654975162,-1871685015,924734647,1177522142,-1113119096,1803857718,1319941537,256994179,-1667899986,525037674,1196829836,170896254,1943342826,2007572173,-104947619,1164754834,2029522825,-766630617,-1982200353,-1217111402,-37993251,-69021778]},{"sector":6,"length":512,"data":[-1643487336,-1224851907,-1621408195,-1610665714,-1449201263,1318025950,2017945041,-1539362890,959055263,-1470721603,-1011940632,-1529722564,-196649797,1575385959,1278202647,-184509744,1785578200,-1409874288,759264597,1712277498,1586446685,1063116785,904524881,-1364255320,2056235511,1722406164,-1035674618,-1203407988,-582611721,-1459559471,-64526788,923120280,-1071504748,-779424930,1751812833,-1113250111,1846952311,238574730,1308508919,-1879260881,1633790596,-815998355,-1393312991,1305488828,-638452552,-1002582655,1886635037,-1291979005,974987203,789049539,-1468622937,-319743144,-2089858988,-407515237,-640523787,456365538,920950503,238031426,-1095742476,-587271423,-811035763,-1745557000,1302469008,-1924760820,-1071458517,-1755596709,-421459204,647004575,-595075362,-1624982419,580550159,-278179591,-1354340,1735569171,649532951,-194146383,2078903124,-584986003,429109030,-676542010,2104208654,1047558867,1775118431,-2076140139,1742163971,-647055043,879887991,-2045077840,-486612924,-234387080,581953785,-2147436236,-1058107490,125708217,-1317113394,-249783562,-740863998,1015067499,4214317,245856726,1677040621,908857135,-21414144,292061407,-944163795,306122695,-1309021344,-1886693563,483912719,1199903,-1597134966,-1197905116,-401920202,-1060588548,-593853597,1687805526,-1744879188,-1316373478,-619487008,258751790,1098361884,-906412689,-776980305,629923623,1341096974,-1396794676,1461607291,190746035]},{"sector":7,"length":512,"data":[1601882780,-678515175,-601823785,1862022610,784810851,2063697182,-564107515,915533092,-1049927955,587166637,-41637984,-1591235321,-1537802963,903211349,-1875729831,-1060218214,-2065596430,575648594,1027220469,1755918958,1557912353,1735721562,103600145,208191255,1912590391,-793331885,-738862442,-433128963,541934488,-1639154085,-531873932,-907672546,-1593894546,-1464305685,259906546,-373477548,38124097,-1953271291,531542939,-944431061,-1621624521,1907093133,655172855,1618290608,78727824,-1350272915,1292061441,-670360120,79237364,1299902232,-1524872655,2077831481,-1052350409,136777672,-739147929,-1768370279,-471747607,-2024462943,93667172,-143499748,-1321154631,-2052424999,-197154049,-434968019,2054451730,-841149494,-23516680,-358337447,775025546,-788756700,-1514653994,-1609432961,-919310073,-1174787841,-1833587295,1950888511,-845647916,1558236775,-1456931234,1633678561,-1885470622,-339245477,1142052931,824328314,441481078,-114256200,-1621894336,741228743,1975740094,1404617014,-253214998,563637622,-584051003,1835923745,-417054882,1826201352,-985387667,-452560629,-843171658,462959331,-1815085388,-64513349,-234717547,-1558230152,1960387395,-348278478,1371777357,-1687770206,-1263134725,698979678,-680385891,803380029,184584823,1366833646,-903291929,-1914791374,601538827,-1993281551,1492154313,-82918715,1584301124,-1420489613,613381497,-928461765,1272335,429999786,1707726089,-1685908742]},{"sector":8,"length":512,"data":[-657445497,-360600861,-1376053809,-1888430065,-400000287,655572336,989623853,211113552,124832641,-540812073,492766740,-1010622506,2001882611,-1102201886,-1826689021,-1781570180,-532559658,-1324964545,354539492,1439724514,-1359759529,-1894663766,1694872065,-701948759,-453389646,-909516916,-1413328871,2115497499,-625710024,116868751,1460383426,-1317978326,1086255117,188108537,165769031,-1933673833,-107252395,-444475517,1316980871,-810412114,194199657,-1687769652,1618275840,-602317063,-504682324,2073274591,976667239,1582092014,-1881984918,750102011,-1514042419,1327273228,-1362769642,1331072126,-1820034684,-1270835090,-1191372775,-1477966135,1821216351,-1065933752,1482091950,-1653047872,1575719069,1334226897,-1849843341,-1061289440,280416007,-113832171,337802705,-1525863485,1066993734,-915095992,877207784,1142156508,1214481699,-1488720281,1643630731,-1643160471,-2007490858,-2049915225,-1570300931,1192493035,-1198379072,-1245234969,-199169823,-536307183,-218401779,1674797161,1943926607,-773462646,1824891018,614218910,-1379016826,-2097777150,17732157,2059584699,-1404920493,1956543501,-396717299,351678638,-135989406,1135001884,-1572995624,-1385014533,1986372245,306099121,-627579334,-587509153,1265017675,725217314,-1219432090,1217092605,-487883576,2136970476,1268757745,-1089971332,-915765975,377633320,-336329004,1393177950,907418623,-819663074,-1895922505,-560149790,466041781,-1605161380,-756265334,1307618997]},{"sector":9,"length":512,"data":[-1586661910,931921909,-881636615,-1400897996,150830795,177516471,1224259859,673807382,-1019604258,-386647434,-912766114,-158200361,2136482849,-1453891995,-19872798,-644038532,-1034037933,474858045,1125871947,-1482635113,-123731288,-1618333693,-2131673081,559840808,-2147230167,-1916467742,1710174656,-2127628539,1786260692,367050180,75504479,872756,-699149376,-479017645,939622164,1105757900,1206130159,1569494503,1322053929,1081275036,327041455,-1060644271,1825267100,389003045,-1645528671,1947418403,-524990786,-795331318,-1080560086,897156509,1513355652,-108798514,-138599551,2049507342,-11616771,622221019,-596614873,-1023437788,158493687,-1494570401,-724000988,576393049,1517346957,961049864,1154555424,558097457,-306006855,1812587693,-1940929611,-1687983009,687203398,1817803801,472568323,1391573626,-1800856870,-77525541,310355056,-2034865621,1879550969,-1768724951,883681292,1768012491,-1069243012,1427070093,1635915517,875576853,-2119451040,-795868796,-1561392346,1490301723,536941097,-1440568640,-1169763299,-326901667,1567947650,1329028428,1877075534,-1524641575,2482466,1198077370,633441394,-1280668449,-1732592466,353879284,415032519,-1029986114,-500502059,-179472220,-341726292,-1642635438,-400742958,1656776893,-266496508,-1152891929,779498741,-1637890504,1567797891,-594405059,-1715004284,-818762409,2114953027,1064876653,-443076849,-804902699,1332545409,44738953,-1531612307,-1434405878]}],[{"sector":1,"length":512,"data":[-86611596,1860290058,-1104326058,1482195578,-1658879358,-720892522,6231363,527453264,-1626675089,-1166037567,-1685320202,-927755862,957704997,-297278616,-1928772082,-976861579,137341259,-46117522,492959190,-1131116710,-374874297,-2026244579,-1799369402,-1994160927,-564700368,-357836074,257603361,392854412,68752964,-1937155420,-1543083457,131252068,-605615688,2024409242,1443718403,1341381400,-1191810397,1088242707,1359069727,-218503055,1368981901,-1853343780,-1346458926,-1829337372,-1334968951,1816027951,-726842334,-44910301,-263832606,100998662,268697959,-1874733892,651808038,1232484539,914186602,923842676,-1812385596,-1314537986,1284217751,-943871790,89632379,-63350850,1563049039,-1287835994,-820144274,1099598543,430416010,1368031903,1044323414,-276880808,-1950955396,-1489949864,1807033344,-310218012,2143654730,-131517615,558554635,-689753214,-31704745,1311626919,1159650863,-340585579,1619817080,181660325,904737494,1351099720,883498501,1533444739,1881564050,-926777831,-527096906,345832061,-1474931831,-1971008676,1929079054,720475541,229114007,2101948106,1776310051,-600824595,2021457019,1560743813,-1995208511,1567893830,-1244008695,849323987,-385518525,-848522425,1331204068,-96095621,323651781,-1468184748,13324096,-1619036261,-619262944,1619182983,1544930217,1704087358,-849324634,-1887304803,825317887,2111903475,-536491811,-1517818573,2009453392,-1807779491,-1646415105,-309082977]},{"sector":2,"length":512,"data":[1136448480,-2001252174,-755425029,563349694,2034802725,-1554482688,16536192,1380394040,2049584154,-631271962,1505511932,-722845080,760879266,-216500481,-662312329,-391573522,1724203032,591376918,-1225998509,580750986,1036856391,829102843,-586572314,2023946880,-975965287,409700574,1514097317,166955579,-186305131,867841923,1347297401,-1991801189,1394147536,-445500231,-261924948,-957805123,1600256790,1425594596,1569809420,-1191880561,-470363857,29837970,-999235201,805939482,-1204355587,-1114207090,-1185986615,255898341,-1779762214,-1024362945,-584418672,2130920789,-373592681,503239247,-233834821,544711796,-1237748670,-43047426,1893581177,-1161043952,-515904663,-156025423,-1188791802,1604791113,-297823729,747104359,-704158532,1673522270,-2054826843,-722204528,-1538202339,1404195015,1159013328,-1587625814,18754052,1173354576,1288599727,-1982712198,2091865186,1871180707,-1209636935,31051027,-258317037,1776822756,-2061219622,-785201516,-174956274,-1965363959,-763672837,-103440369,-1206634956,-490029767,-189802860,-1783786164,1260264975,-515490466,-1242510531,-560932178,-217237722,1833253349,1545044351,-1721456149,918158282,-754627678,1159951525,1774607092,769653751,-576075027,-1007690857,-352330225,-700037942,-1818354313,1736412400,-2024137236,-530097966,829561842,-1743542229,-1102771232,1064744568,-1577459302,1646726009,1376946888,392064755,1271512193,-1218952169,-1124698343,-1237985199,-743854023]},{"sector":3,"length":512,"data":[1320155039,1922157170,-1927572106,-2047712913,1737528518,-1800146247,82924271,708475644,-1284617181,1846456215,531083332,-618013573,812191328,-1513885521,-856950445,-165824082,1277512156,-1375516465,1924160482,-389137224,1229918192,-1358810344,-781656136,-1956736581,-1593626772,1656971969,1128079171,1022430679,-163369358,-424838353,-824023678,-138731364,-1147488400,2050357602,595267775,-1981827077,-125952683,-857456625,268414231,651540217,232006380,-1299892986,1969963342,-1238038148,134792360,432953260,-1861543001,398382853,-1778641153,-600720769,1070553049,2015068253,-856763783,-1797166750,1168601093,152802986,-612218243,-405926190,606505871,1342073684,-433570835,-767906560,933901733,829228208,-384594572,751026118,150461427,1553936705,-293162149,449917830,-1486267280,-825491699,-237655377,-917558326,1872746829,1786223047,-267952415,-886971248,1256292103,1069641506,-1924083697,1424737219,525131704,794425615,-758550910,-1026798318,-311696961,1303312502,62539769,-80649305,1999836608,1351946898,-1658899209,1716813738,-1991697932,-1497953831,1342623429,623122503,1028714501,-963534800,268538176,-1994783616,-1261152149,-721638151,-1490236071,-1017942847,-1064996575,1098973202,1348183850,-1801156208,1600640464,-158578659,151100799,56596223,-1672890829,-1587006520,-696261455,-1888782207,-1738721328,-1947361153,39840477,-2058195680,-361951618,289310357,-933380991,1938001678,75926952,1679555072]},{"sector":4,"length":512,"data":[1530139883,-1564571804,257323082,-280527434,97091440,-678310913,-680946037,-1998729744,-1897149405,799272670,-810389340,-352805486,1911673857,295866031,-634513222,-868205310,-862257479,115934248,-761610376,708682220,1687675858,311706973,780799217,-1283655029,1100951619,971514366,1135102218,1230262514,1361970754,-1494835465,278547627,1365377862,-908790297,672784025,594199493,-574261831,1930799240,23908863,-1419471978,-1107414123,626585556,-183857030,670854800,349047563,1379276334,-246565858,-28576120,1825886918,-1326193766,185384733,1369887004,-618087583,-1733055901,522601943,18884393,-2068064844,654775468,-2022998575,-1482102053,783314379,2094299471,-397870077,-488721218,-1340157260,-1696296994,1193794728,-1163548178,610645721,1237120847,1438649741,1907053575,1827155672,-844297220,-810905924,1145609566,-1255556046,-1427493245,2123068088,1863642040,-1512422457,1613092078,-991982673,-393247625,-81903737,909577742,-1647731027,-92567207,-1230312923,388364486,648297186,676119353,-1956492462,-833972777,799767083,-1929491156,2074596397,255490914,1333551073,1354133774,-537309501,-1794116253,-1954493024,-1231011364,1042839146,1972023521,-1802365631,-29059567,288877437,1667384387,643958627,1189304173,-674969565,-670701472,-2045564380,197944856,-1999648823,1166537673,-38594320,151939840,-2041042560,-186712113,1870304651,-734896915,318955908,652238,716211094,1055026438,1179507456]},{"sector":5,"length":512,"data":[-1638968085,735493437,-2129722949,14726442,-949261568,1324006557,-1851200703,30771759,1708698296,1336293306,-587161812,1113581771,915142623,276299926,-493753509,328744465,-730146048,33650207,1781033896,-2092928295,-1319992832,640249168,-1688731551,1762207677,925723165,375803757,-1128183862,864172308,60324977,-197947714,-1373536382,648948618,188747432,1353195091,1243258139,225743606,1402758373,1963960909,1564492429,-828326509,-1009769848,-1265984833,565021,1850856845,-1664047347,167118162,2096602450,1638124401,-1926703366,746462767,1939908287,481925428,1002445683,-69104352,1603020539,562926619,433371319,990508745,-752627912,-2004950884,-1910826348,-1908849449,-344206017,1838718052,1956999963,192369666,-760720687,-1780316894,-327545585,-96902601,-1163625198,2142252004,1812052118,1714836120,259161069,-1002130972,663076565,1478734928,192775794,2141344937,-1873304569,-555878373,-887437360,-1237540406,-1332269858,1480734472,-1980874620,-1718808381,-2073753208,-936860790,1119821695,2013019581,-907918336,-101496408,-453778841,-1420374929,-1533049141,2089211339,-1633817833,-346028599,1367226765,1690772286,637623060,-1262280792,1041913893,1845647921,-268346631,1583135994,1289571036,1073083793,-1763917303,-1242455754,-725767986,-375259396,-1247209727,319435393,630498801,-1062486299,1228581416,1362543655,333569663,-1515910665,-2082727260,829244601,1531867391,287880385,1530892924,-110549801]},{"sector":6,"length":512,"data":[1074500412,1151889199,1179699846,318540939,-1470126866,874977104,-1492679410,1534690268,-2057692106,5806891,1280060761,924551488,-2107704107,-2017053353,-2088678256,698885512,-1260654014,-1024588585,864044512,-1343610940,1056451755,-271614278,-1920891008,-238566139,-402485969,-473600615,921472780,-895100310,2054781477,-153397911,1861385941,2050758572,-282724218,789694687,1060544417,2127993954,-281299676,-2081705983,1109252967,-1006150321,351863216,-1917930119,1489916143,1019893266,-110945046,1058261434,-1419825633,-1763837374,1465536336,819727470,-1518530789,168714733,1223143679,1116577471,-921544097,577820624,-1544497697,1644763598,-186380995,-1485256179,60488841,1023118922,819213468,1569024,-586329044,-963944212,1211466610,-824743124,-1495415361,-614686397,-1530995386,441792395,-1052923849,-81691826,-1425837918,-1898480068,-1027737738,1438989128,-933125020,1535361504,1222985076,1466267729,1588368941,478336734,-1799945325,234812211,-1494959358,2109708697,53185092,-1567168751,-872189267,-1005858053,1795136027,-1885158441,-190116155,-582070780,-1810792895,1826878833,1901927809,1657751468,1290029978,-1501750532,2012722758,1387963176,-724222489,1219557318,-1927620178,334217748,1820279487,-1726245861,-272397065,-1356116977,-1439492851,1864311981,-1599536191,920417313,1298395318,-745459482,1976829912,1224583769,2070119308,339264112,-541658305,-862930969,2096765207,-276842243,-41329036,-1319242813]},{"sector":7,"length":512,"data":[-179412743,349927799,298906607,-645855783,1802555663,-1776505572,2054184940,-307514114,870319182,-1724368168,-718371187,315536674,-1110237594,1480814240,-1249417109,1874390011,722609247,1336189810,814956199,67914787,-8761560,400717698,-948511473,1172066418,-460981313,-352564779,-1337977416,-1764684124,-1088336269,907147778,1856096174,-872992781,542536402,-67193484,-1909230522,1386638336,85764161,-36643481,-1569597201,-1277842062,1871597908,1710964067,1878870653,-377214983,-1065233058,-2101205,-1267888703,1705168867,-573176633,500538147,166446611,2020746683,-1887462529,-537446350,-572414164,-154191397,-1403593381,-1093827109,20601775,-2008928018,1627125598,2137156020,-917538504,-1759360267,-59449,1146231728,1733712163,-306756054,2110333493,1682834580,-2010409673,1572089395,-983834324,990051310,-1648866450,-201956965,1479110795,1045869056,-1827466617,-1729206744,227744816,980287224,-461966817,885222365,255894391,1324780773,-1111382297,1647523177,539736151,-239749977,234542454,-381690476,41289487,1456673143,-1295180535,1286536916,-1412235008,790024166,-1681623543,679833380,694661798,-492258213,964236747,-1022782762,1495772881,1140077615,-205125157,1266563611,492619837,1750911038,1785467577,-75678625,1731672188,-742408833,-1059109803,1538679024,-1091634204,-72356577,-1250185705,451684191,-325825969,-633081725,1308849170,-775173879,1490823171,-205655279,1363604821,-42635615]},{"sector":8,"length":512,"data":[-1516423404,-653669821,-873368233,1350298366,-1783426825,815798598,-974298317,-1193096634,-813809924,564549587,-824164430,489831659,-84306505,-118347499,-26469960,1040182195,-156699180,-432542974,536615362,125533017,224296291,-1496699171,-341515366,1196364166,-1866480941,-1057007727,1928264863,1044946881,1542291401,-2050727977,-2134261761,-2037388844,773670540,-1303744702,-1640186815,1371166300,780724710,489309433,619170500,-927675978,-784968911,880966954,728127120,1022842213,-819049033,504203191,-2135213241,-1832664898,286888280,1068740004,-1054573464,-70580498,1013436070,-1502743158,-631044914,-1701516427,-1679828428,-892662346,-1694280324,685874829,1595238166,-1868839112,-859897265,-867670087,-1128511671,-612984951,1072239822,1115014062,-1328123774,1907920072,-1277360948,2063929228,-838449959,-295571977,-767131973,395765650,978485481,-629207746,-2132469743,754809756,1723417450,-999829420,-1983836313,-948400529,828040685,950489168,-736660964,20776603,-1553757793,347449979,398535093,-489949240,-2059448304,1876758447,-991176742,-501937348,550333832,-377827736,2052925075,377406992,-290952359,-1735950757,-617821356,1389649709,401451005,-888906164,-936514808,1073066600,460129586,2092405756,-250228103,-598687858,-191367554,-508024411,1320368635,-2134162892,320013567,-193363898,-1490383782,-2000780774,-597116557,1105240649,43186319,661829515,214690665,46240673,374638990,1716286063]},{"sector":9,"length":512,"data":[1279950644,969466695,-558250678,-1355697201,500056042,190933688,-935023217,-1964865398,-963975819,-1467804665,769154030,36042097,-423820012,-992424336,-614569897,-763742434,-1918504044,-199474445,-955914294,1162795758,-498710931,-499918152,975864187,-1906111286,27896249,-978065409,1872974524,1041710260,437558890,1423305111,-78971815,1469812710,741262228,522737321,-234306073,-1838882157,-1178886769,-302373541,-784624344,1059796406,378892273,-475727095,23806979,-1256096623,-2031456307,-114209415,-303838371,-525154266,-64058458,-1843244042,1624320753,-1978431770,1550497079,-479857658,-2058904521,-2144542528,-1716509593,-1133980443,1035916297,1608702331,387949760,-568327603,1114555463,1629488658,1374711734,625423338,1362444135,1426067264,209631431,-872284039,789358298,2014336510,-2004245853,-856622762,-1872563590,673345988,16779416,293151166,1882200022,-1658569245,-1081169847,952455073,-1566577982,-1877775214,862112923,1269122961,-1179853263,343119385,1205766065,-1753055869,-753934333,-2119079541,-627886440,-1206957312,196676575,95421031,1489587,-924940,-139416090,291418495,1574186667,813812309,-1028900958,-1276614067,1229016265,-1699136488,-147530201,1261679693,-1898728597,839086117,544399253,1540215535,-929821236,-837288126,1277044148,-63913232,-1191034131,1017421915,1502236158,-402643347,-2062669505,-30393692,-1406031280,657046993,970911,-331439238,-110300881,-561822607]}]],[[{"sector":1,"length":512,"data":[-1679382352,1678275723,-893262849,5045679,-1857832156,-2048865485,-659966810,-1027479437,-1434748877,133710556,-242420042,-495216279,1253162321,-663817311,491696797,-739776035,-988876626,-1936670849,-974198275,-1840581002,130148866,-1793495685,80578371,694776594,534438644,-453075164,-217123279,-1321044703,-501503183,-894579413,-805059251,-1036883959,-59681948,-295750024,303122354,-1479260547,-1271725136,1918033711,2050655012,-662071071,2136513631,1352967820,1421347141,-2073039879,1812520494,1401471488,1364706627,-1206394861,686582604,-425677780,-422924093,-106439330,827688264,1707024720,1943555032,-989110822,-1908720328,1593586375,-779362698,-1504210795,-545467251,786507742,1073663146,714860098,146199086,220645615,1894787534,622490843,-2146186705,-891358451,144483875,-1120173013,-1343262882,1725228646,1150457853,-438200452,-1504527027,633387896,1071278045,887337233,-989338935,-1127150591,1319546137,518178462,751875451,1046980848,477884108,-606673017,1850996322,1104723550,-34640466,-932636566,-1840072872,-60530880,2143986975,-1531210897,-44975601,1007754899,-1321970795,1068865803,959348285,-1472647919,-26372594,2002102953,153054984,2135733853,-1262489555,422733523,-1838535915,730650070,1064837090,1660568280,614364028,233063175,86222077,826259967,626120676,-1643782376,1279513046,-899168769,-1746630779,-613907049,1142641219,2081029899,990305059,1142704731,1676833631,-1267154349]},{"sector":2,"length":512,"data":[598159042,1220025884,-1832356058,1670287388,-351153269,1001761316,1871250124,424608370,1338684256,-1615721681,-2028621541,1007551719,-1365162225,-287443476,180064761,-1129188318,170899705,-77642051,-77293719,1274569383,423795830,-132563799,2038954525,42539105,-105331329,391158722,-1964139147,-1769228299,-323605992,1193008917,1323424329,1331733026,-444817902,-964307513,-1512940961,-964960483,1980345139,-1925662397,132820201,-1539473855,-866107578,509495490,-361058185,1077005866,628335018,1214648754,97043515,577022208,1237135309,-1076664756,-1131581587,1172157216,752791944,345188233,-256230281,1662558781,-1393773542,926395787,-1847616911,-937195865,-801128212,-1706874357,-1563212925,-1624911788,-665316896,-684065866,756732429,1137265967,-1913661307,-337753385,-45107682,591131786,833573002,-1744831440,-1344472241,821976918,1853628871,1438459109,-2033504043,2072890613,295476095,-2026905034,608353258,1877928842,-1322747274,1530801816,-540900294,-1958083286,-1677912169,629433488,891989152,-1469003242,-1716345224,-639765520,-248848641,1333566061,1542915095,-2088303492,99715104,-1140363909,638199321,1144937778,-1134816839,-1001647102,1026107860,1314943689,-692452544,1652136777,1900482809,619025667,-916798357,1187221882,956150002,3182949,-442422610,223372072,561670805,1784989058,-2112598606,-188665037,-2047039472,1809504530,2140123669,1043208781,-1436984254,1622331487,3814749,-2108217390]},{"sector":3,"length":512,"data":[197997332,1202281116,-1807358606,82837210,1855487742,1432514464,-1853434307,-1632550601,-344978315,-1871153204,-1666218361,1685182667,-222742145,-219489868,-1916482861,1333420714,-1055236135,1702881562,-1499491120,305043309,1742292573,1444545218,-804017412,281295110,1476344445,-739812912,212743624,-1024275566,572826777,-1753872340,379698601,-1881940605,-5897093,1207781262,-874904586,-1322121766,-881724434,1714163619,-1042431267,1494261442,-352119723,-1490455304,1686803385,-586767860,-1098941466,-1499928600,-1568029086,-318292102,-1811996237,1156490730,-1699335275,1279351743,95449008,423596708,1880783790,-144252171,-128053118,-1429345274,208362263,448235226,391769577,-738740791,72830879,2062629117,572997273,439707407,381498929,-1846650631,1527167973,-257249294,-1968910951,-981473361,-916734210,-176329135,-939822251,-829443061,-578521304,-1198562705,-442991990,2073454483,-2020387520,-447295164,1657308549,-1311397731,-39816068,1925663552,1685039463,-1534190253,-603209505,2078891761,-830393910,-330225339,-658211867,-900023670,-7080879,-200591728,1374059361,-1964489479,1192724543,-2013734950,1361421682,262899809,-2132094062,-1549139914,-648773152,-323683298,-715941356,6231363,-976504752,-1224900144,1510158311,-297607429,-1150651881,1729241913,1385943865,2063500856,-1207962938,-973655118,-2431762,-716488473,1088089140,-539902056,877796926,2083269758,1550808581,1207463867,-1323826438,-715482693]},{"sector":4,"length":512,"data":[-1589083030,1784605470,491914113,281171280,-808679685,-1803414650,-1033434061,-363003861,-1324728290,695619560,-609444225,2000045203,1192922863,-639174581,-1874759275,-225239601,-1213680697,-720170232,1769965089,-503916156,950525178,-1112940064,-712077713,-1173274610,-213802515,-710638220,-1071864706,1590576382,-1662059998,1528204428,430636896,1582061958,610622155,-671826691,1349307896,1049576716,-223281373,1829757654,-2126371669,-1346682059,-1342210585,710750522,1305163669,1786284576,-955157589,-103369237,441634538,1831137975,-280698968,578112199,-403667467,-1137520653,1996083338,1504572837,-1781532490,-958596104,855370630,-67482417,230092549,1487883685,-778813840,1689786267,1881282950,-1149267553,1890452558,-306590627,1254026798,509475117,1670232369,-388840855,-1471198080,-439404238,-1758304951,1402230727,-1630912764,1712153529,-364222912,1277752823,-2125281401,-2119612798,-1709304147,2042427967,-21294673,-321084706,1602683451,-930925974,839103019,1668111211,-731385082,-214215376,-1213667911,-552691300,1881868188,-675178619,509458378,-1678424194,1453940493,304541102,-629781973,1896505896,-682977302,1142482083,-2130555747,1080776132,665355145,-1963271600,-1091272938,-593874321,-1357617071,703079564,133124368,1605713790,687225082,-426659691,-1102871703,-552394294,1837884735,1207486755,793427128,1545504054,1929973465,-635712953,-213768595,-1527987022,-1389380523,2094790592,-993327613,-245441592]},{"sector":5,"length":512,"data":[-1763675669,1899283116,1311992189,-1285020459,1369729828,1232613414,-587751224,-165655665,-1623015672,1820773552,1298379030,-1671896188,1657014616,-578995238,522398330,1335544146,87167398,-1546987770,1318017981,870001749,-1341886205,1310258585,-1588436325,-1834756451,-354692587,1996456797,1996032862,263215573,-745678550,-1842638381,-1314014821,1735512969,1868535176,-1059794798,-630257794,-249879081,-2101420732,868137390,1447024442,233386235,1784480928,-1208299819,-1303486915,-950062876,-1973265782,1683474327,412209927,208127440,-551525437,-2008102009,-28051960,1063646101,1253047401,-898535157,-179938089,-2142822723,-1570573725,-2089039631,1569809599,174777843,521530031,-2088491925,587839931,1660308165,-1079847308,-295183828,-739029443,1038486492,-192208859,-1387328860,732359425,449443181,1547397431,1852130036,485957047,-1307294910,391570471,1465043529,1655838255,2031555408,1326921600,972640927,-1367787599,720945915,-2104382804,-1744734360,1101923991,-1973898038,-1023494829,-267911100,-1812925067,-1985431143,201182116,988709805,-950963559,-1906126530,616113698,-610820593,340622393,-1338720761,36851484,-1255513920,565360808,176091799,883322928,-1099044469,-143965285,-443199555,1810505616,314829823,292340502,2083480529,-1622106353,-1500336833,-1969767759,-1270088376,1002643099,1243807821,1305477166,1724884692,-1901827439,-1588608986,1286316339,2504773,-301621350,-14524915,1556605451,1309909130]},{"sector":6,"length":512,"data":[257618951,168387084,888034430,-826936058,1770403810,1607463608,-1605405143,-1657456642,2088378935,-1532378705,-1639828006,-425302538,1842654993,-528993717,2076422064,-596902308,1193464533,72535808,765492786,-430185177,-909881449,-1263179,1055321557,-1850587262,529813071,453882250,887344007,1357605742,-1704735738,-2104560891,-96410001,1811309184,-41426477,-1651744962,1306665849,876176495,67918529,-284253512,215616310,-567469305,176733682,405121390,2130377013,1931974345,-495120567,-258744345,-75945121,-1085387139,692297421,1617854268,-39279620,-334451644,1521632785,662436378,-1892063213,-840869246,1280767717,-963569310,1941703557,-1624034337,2009357681,1119242523,-1029951996,1930767689,230894403,1685974930,1843558015,508810831,840818600,-12487007,-1274912745,-776208002,-62879944,476277680,-2020050743,2086910991,-37481548,-1205206252,15866109,-194211836,-800963337,-1500792825,912459193,1221967383,-528187368,-1585808533,1158666849,2144906446,-28360611,-313057204,-158536973,1022233470,-724648589,-1545043983,321994209,-994792256,-1413902303,2022851032,-1164981041,662014590,2048244543,867919781,1700960146,-735543371,-284448642,657214971,-1627524805,1555612594,-1935632395,-1907026599,452450938,1004666964,-884535808,499080957,-2073618610,-973107665,-1233132401,-714333558,-676279204,1603690919,299771975,1500009762,-987960457,34953240,634505106,116983622,1449457162,1501539308]},{"sector":7,"length":512,"data":[-1630646983,1509828703,1027544792,-2087338164,818139267,750368511,-1458352972,-450200020,1590283761,-1219082865,993370672,-1086022787,-50347717,-26411494,1031539595,-167785578,1307715530,1881513219,657343671,-2097491368,-305197071,-1881238126,1593231911,-1323941333,-1913145868,-538659329,-84225017,-688826597,-814930364,-2120129902,270930168,-1763520449,-1187042035,-577940419,399517774,-754688577,-2131442404,-65642525,7462052,1705136574,-973884146,368481379,-454395024,-1651660127,1569346520,-1817070123,-503974890,-1332332960,321744233,1118001992,1046387419,1560258484,-1442838390,960978649,1076424304,-1249494366,89270961,-2102322006,-1174226942,-1060448193,-819845989,-1539688779,-537190033,-658883454,1954265375,1667194349,-1970860666,2031821874,-1558724451,-985801547,1081632966,-1824697363,366744424,931392384,1432580151,621549976,1190043903,264456835,399646691,-836544842,-170941871,-921067794,-799229494,1065599450,-1232335309,415328211,-670563982,180752793,-869750278,6348922,-2122315900,-1542486784,-1491863434,1074733399,1541920640,487023655,1289579633,-156306397,-1878967812,1627405461,409195264,-595429311,-204747957,84721810,1793654838,975729060,-1929505953,655994645,1116373576,-1978457056,1425519122,1495544392,-1424654817,900268427,-716639582,1656369167,1397774184,-101457902,-295765710,2116788834,467217462,366083687,379135687,-536714553,2017788292,-659700224,1967567938,833289009]},{"sector":8,"length":512,"data":[299240297,958060137,-803860337,1481354177,2047625382,-826228145,-184245146,23528964,-1835950388,1805460666,-1652331444,1068617340,-1518504105,12127551,262686628,1113783928,-247602217,-780424495,1532332030,-1895050499,-47675553,-330879210,3032773,-1512239479,-1896946489,-1312124370,-1109395704,-1065428261,2018707279,-555171796,-1067471989,-538312657,1061168974,-2084418329,1754881821,1893730193,-302349704,-408587639,-1682489377,1910815241,-2041007005,1894002333,1912318636,61079263,933371910,-1456086404,1210366881,530717942,-617152674,340405895,-442794775,598889151,2133992299,-791884090,1285514290,-1420482611,795655162,259753695,280747828,-1353655547,-89702275,-640268299,1759228964,1695265337,-1869939137,1474260686,-1836488509,630882315,-1242575570,-274185585,-300486405,1759632010,1995497950,-1675212714,-1361760769,1570383507,-1782490873,490751639,-443223730,1425016212,1573898801,289407356,-1857874104,1036244334,-252670214,771984144,-405085816,-2078491894,1610586631,1009709356,-142550513,1969218280,600846798,1586177429,-178405743,-923570328,91180638,1021340237,-1160177859,322615528,853755537,-1914403234,1760275356,240052946,-262944330,564376916,108704132,119751141,219087369,-1222075476,-1974691978,-399630478,-980950720,-925235266,-1329206656,959712064,220135424,1432857522,741245303,967226656,141723328,938560478,-333422966,-132785916,393931301,448592568,-312468662,-1744792596]},{"sector":9,"length":512,"data":[47136850,-1341702008,-61341192,-981467124,-1751121745,2025148357,1812806201,1105849466,-2105881970,1580864600,1525692046,786511864,-41190346,1887286475,-1153914713,-11545185,-1437539859,-248250409,-652329243,-74957066,-301470214,763998360,1819522662,-2031078981,-466691910,-1412057611,57745594,1020978771,747288676,1669263074,-302677727,-1325435120,-915438038,347781433,1372125719,-885023141,-179265173,199156618,314107246,-103847249,-922011956,-920631894,-1461620946,-993846805,1377173158,1667260629,-56773455,-1561091643,95992817,-1903221103,1826197930,-1948088884,-1758101781,-815273692,1157354775,-1404440592,80372731,-1578484120,42963618,-1820598524,1156839587,-411059727,1631023345,897390788,1185661898,1168185998,-216626430,146830375,-655124076,1001386472,-1782768383,-1269222722,702412942,197683235,-725066657,1067250169,465366764,952890902,-473425789,1186643746,1569609545,-2023987818,1500594913,362917866,-978325836,672531231,-154879635,545778099,-683396758,1025579335,2012926851,-727307483,-125117662,-489992197,-1166682677,-678455172,1524339444,-1913758256,-2018500900,-1488110332,1503566638,850571924,-180445366,795947701,-1223941332,1117537660,-1789750255,1826157747,735407335,-1507382394,1201624257,194194549,1223748288,1269745289,981239039,-1388244216,71898130,-260077181,-740974269,-626129212,519365334,649508013,1833089463,-1543015762,1086190059,623195862,197702788,1251975334]}],[{"sector":1,"length":512,"data":[1488876285,-1103272618,1201552690,-1174330598,-793734967,-65130460,272129832,-1703058299,-218295318,252052836,1233396153,-1952108514,409820400,1739087288,523246343,-147846431,-621694469,-298813964,-1667366946,1643612470,-271727962,-988290578,543590177,1735513575,-25020354,-2146046922,-1131417209,-681911849,-136324934,658717538,2004511612,1797987888,1079755136,-2114372644,1340705274,-1187797766,-158824906,-1553299208,917696719,-1322175317,1641512684,-1756255625,979558337,1649670979,80702203,-1733075466,612298704,1756438566,-1272353711,-110034657,461448356,1812133858,-342156166,1197307826,1271388900,1460618998,-734437075,-318386913,869954050,548986063,1329869990,1354914002,1286436766,-2060275406,1022883283,611495366,1552531468,968085278,1399357086,-1917736470,1925555254,1504451445,-1536735360,2129499401,-968307075,1892655555,-141274648,-1344089689,1469876578,-824051377,-111549020,-678246172,1927251074,504975557,-963074733,775994764,-807672214,-1183472011,-1525605631,1672583945,1404152829,445869828,-1478547684,1607875260,-1295746635,2092017906,400397399,1801263075,1619227200,1715235286,-513340359,1611093953,2102438624,-2106053779,-1393768296,-471790804,-938082936,747290629,-618455667,512285031,-1711948037,353639494,-543054891,1868814529,299395963,1181338086,-896113203,-2081239320,-1311371732,-1632720458,862416526,1000053273,-1817289990,-805039819,1244127413,-853063297,2139325208,997629537]},{"sector":2,"length":512,"data":[-121010380,-1862987080,-1406116367,1266674341,-1393990199,677719763,1968857273,-1539850125,431270359,-1165463048,905398773,-1268221753,-1045202891,1450800838,-554996447,-1368009506,-1197651224,384242259,258356379,2040419387,-1886850647,1820587708,1655979210,867986865,-173610322,968710395,959211076,1585535902,-1729432200,-1416450928,1262162315,1434645107,-2017805600,1924345781,-136282158,849613645,-1694470979,1233564167,1722803675,-78593874,-366590450,-333218155,-154837504,-1729587951,1046030726,-1401598609,-2062169744,-1147621393,-1752006953,-7082539,2129513786,-667132329,-548167468,845268494,638834084,-660141796,-1143292509,1027461593,-764215978,1592355870,-1547756677,489781339,-2082878844,-1317084925,-385448083,-429405937,188661930,-141405959,46737349,58888514,1989438156,-900690631,1469140878,-466585697,-1011373738,1414920727,-1836241810,-984986109,-808387041,2060008083,-1898948487,2039832341,699519340,-219072403,187036755,1086565037,-738664565,336087384,167148535,-1386885314,-364267844,1183101995,397853606,285413160,1220876830,-1348109805,1008730092,1519227497,-1980198986,-1389486876,-1043503869,-1387541938,886668943,1133675459,-2119264644,-1249933083,592196327,1287023233,-722157513,-768953945,174639598,-1137594155,-62744202,1488758718,1751457207,1533713832,-574348718,-1392461525,1835376195,328000245,2133182312,-1940736603,-886490345,-1895865217,2144345654,1167541346,1711087341,1832480115]},{"sector":3,"length":512,"data":[-391255370,-1573170412,1876719559,571440934,-326771551,-1927674869,1894372947,-1856504780,-943208505,1910743145,1058561959,217361528,1480715424,1793488439,1232381931,1692841108,-1328617513,722223205,1200802959,1010508923,1840306087,-1528188236,-1637104713,454601934,1177794223,-448623046,-1871372079,-1217027552,-1729951886,712463280,1427783874,-701078594,1287024217,-1405187933,-1000599088,-1970110988,-462439105,1008092016,-1432304647,726144809,282533409,1251586050,362104293,-1097688882,-1652685473,-162807165,-2078860389,-868232370,617754829,-1436925470,-363605616,-11815573,-936073429,-846367857,-2059012791,-849606920,-121548557,-491028427,-1478613314,478436068,-240404691,-1466929007,-790874133,-979264757,1680241763,1993250845,-1191552612,2051446967,-1103803318,1249044167,1389775047,-1600751420,-1645909078,783111322,-1588960053,1403954573,647198307,-1236470585,-325755190,974451354,2075854522,1031510670,-996741387,-2033702136,59132034,1762522133,129956517,1410267482,-2145710848,10141666,-16879728,1300044164,240003218,126905552,-9715648,-497684494,121636643,33585421,-599029904,-714872548,-394905658,-579001537,1693875326,-453179294,-97515519,201216186,-147289742,-664028597,1827929895,-1382344711,-1348139263,546569942,-1300534784,-1396388447,1074546351,-533921280,657106985,-866400008,485963000,2069401163,276971944,-91213821,-1867372284,1302832958,-1777184343,-1437588210,1351406528,1355650962]},{"sector":4,"length":512,"data":[-2036051478,-1072937817,-1060023840,636811476,-1459609594,2008271851,1890557954,1572137062,1473249571,1692953986,-1466099069,-1658847947,1780330689,-572974257,-2139114830,-1747959513,1005953490,-1542819596,308406726,-1287374180,726747261,1759007242,-195717580,2096438253,1873087007,-1502636815,500156137,-1436871172,771301084,-1216004250,149573549,1416042912,198618535,1185533658,-469215256,-153921686,1700553173,-1032278006,-514872784,-89466232,1453449194,-777150551,1049557744,-1148762839,1004677202,93442049,1190864158,-150469651,1293826221,113939725,-483699224,1371720820,1757490212,1048290261,-402983909,-158205089,-536830879,-197999296,-973616171,-1081122080,315243199,-746864564,-2116082613,-1218938586,-1916407752,814615463,1437325126,646968720,-1044569873,1083784945,-551211037,-454065610,32348102,-69443303,2043702906,216548965,-1250789706,1921152230,1062390496,267031721,-210844057,-491101544,-1485548964,-283600363,437079547,-531600428,48520702,330167792,-1656398471,297053140,-1954715382,-1606701951,-1043208991,-1203616918,1086328937,-1494834992,1036856421,626784618,1321527587,1730413839,-690610772,1332579321,-1104353229,65713495,-882605383,-816784085,-1145118890,461332796,766650058,-1686290364,-1970301858,2013281211,-604040108,1173627899,-1021372418,1748734846,1761477550,-47680809,185154121,1258011739,-1501430381,2144544861,-1718216528,849997116,-194349849,-598492133,-46006446,-256377313]},{"sector":5,"length":512,"data":[2018483070,-459353181,-626300669,-2061507100,2077420281,-866158835,-1754052438,1190010790,-673495175,2128249285,1562792161,-238684837,2064052398,-387505593,-1614246732,617536955,1996784948,-135383122,-486415631,-694160149,1884125618,-2022214995,-885484548,-1265089420,-2130281292,-105730089,-1774627716,-323742710,-1936483820,-552598827,-864190462,112162286,2132520665,1823803431,-1117291498,-173211543,-1004842197,-1397967943,55515269,-738412353,1274746416,-913781384,-2033517931,-1509836128,452791268,-357871848,990062435,1480309378,142384466,-1213744283,1031718600,1538530448,1854184869,1104576687,-1271117147,-794713077,-492130508,-2064108898,2003732801,601837310,-587978324,1081612602,-923482979,-459584492,868039243,-387646941,585940999,-1216141692,1670657762,-807441067,1832588319,200959450,1293394461,1903801834,-1845924668,-1527740611,849318971,-1060321306,-1371627033,1029589257,1821047263,-1967888775,-333522395,195587829,116278749,959541452,-1782984336,-1180682269,656500509,-1049123326,-132104727,-1207920354,471091302,-1288201276,-2078756831,-735010377,-1761105488,1266664871,743690747,334534482,583959295,246285809,1222801876,595868672,1403789659,-977157727,983486213,-389719948,1389963589,-838253320,-1973124659,-179099251,1164571431,601679387,-1379950539,-215582500,-1440668717,694350186,1163012785,-1002098919,278367956,-1334580349,1142100125,1253812908,2130820067,1215185505,-1309777272,1109589381]},{"sector":6,"length":512,"data":[-157541018,-1046296619,-1313031795,1890540115,-165974440,1642130955,85111093,105865124,1061783064,338739670,-1476282624,-1223202278,-300653960,-1730432597,868579512,1706839567,446332781,-1423640914,-1498633050,1610317730,-2004352951,939847966,1091787608,-1970188940,847985756,211783472,15963898,584654728,1587949022,-911893728,1941029436,778697969,976473213,-1312038235,1870114527,1355673767,-1062067954,1493568853,991627807,1276950198,-766259903,1021417007,1355421673,450374209,486804987,1178981042,425240447,686744611,1274943204,851883073,-1752029738,1094238937,-1599917116,-1694480470,1498915161,-27965061,-1412969423,686495870,-240652442,-1409498285,1106289403,-1261207904,1635567129,-1244878267,-707938045,802339332,221863329,1892070494,1826949399,1209522565,-47127644,-24183193,1237052445,249590251,-2116316945,1450422425,-654931538,1535576396,131893046,-984991283,-652812615,1042998790,661377513,-1905585479,248816754,1075745573,682043985,328619097,29655680,-934096312,115905666,1789468832,1427182492,1210906208,-67600768,-1892359595,-2089153045,620022651,481819556,-1217889891,-462983746,575651138,-463749584,-843099582,1930575484,-1025751225,-185699490,1291244811,-538651474,-1558316490,-934985992,48524879,2060480528,-1227343546,-1510009699,-1432039451,672278305,1870663022,-859432991,1232596245,-1875020929,228571262,-1634391482,-125676506,1010169146,1123336608,704888071,264172950]},{"sector":7,"length":512,"data":[120821593,-1162922813,-864049415,-1314128953,1803429746,1266930644,-1145455926,1910855244,1505312889,-1078246199,-943518821,-1318266329,-1086802409,-1105206013,-156159246,1758240690,1092823780,872904451,639051894,129641189,1824631125,-1543776172,1009742829,2097895151,-366150600,-1715695446,2020897041,-1086350941,-1121987983,-641315317,1558265140,125725174,1563266107,2958732,-1747352164,352935657,628104166,273215542,-1014537811,2039214319,-225058027,1041003852,2073779939,344146050,-669848575,-372657874,1566488186,-128037432,569993292,-830953621,-1273946432,-647346785,1291352368,-1994602218,-12398314,-983581286,-330050809,-920443965,-318517521,172524196,670907668,-1936868366,-1205217426,1471020137,-85342852,-1866545561,-1393089221,-1451260750,2085571006,1694197336,1887676882,-497041841,1973333704,-1257709647,1443230487,-476601690,1363986293,1256858956,-2065647369,1385024702,1233588865,123028799,1323366700,-47069027,-1420323535,-1142814860,34235823,623601199,-533979787,596669822,167199471,-1608036792,1797338519,-108356959,826273479,-1658220085,-482922202,549799251,-1932275643,755843407,1606875412,643082204,637312126,1718529850,480882611,254589481,-941389125,-316957427,-253701886,-939486898,1701340697,-346073751,-1506932674,1236098407,-1625742120,1629604221,704309760,1997232598,-272053163,-1852101473,-1985470885,-50328774,40966026,-1018934656,-1903331111,1704220955,514057006,2101256389]},{"sector":8,"length":512,"data":[705694720,1047505507,874467592,-1799995289,2032713327,779868628,1110952351,611133563,1453920498,-484883503,-445973767,-21228898,-2027444812,-1885743939,1016936759,-1483744025,2016820907,226517475,1489438687,423612944,1214219514,-454524609,1874858411,1842711812,504791151,-416611713,2110682017,-665528383,-827665837,1852761998,-1989660723,2050421294,1573397441,1914550104,-89139019,1159450303,1474803901,-787391456,1749796675,958808218,1409212387,899791463,-303446065,-2041544078,-156403894,1040151773,-1377618955,-414714973,-335520338,387059599,-2142123390,1838959663,-57660501,2107734418,-158721780,-182059605,1657224903,-1858145289,530225901,667475828,-497221837,989534072,1033951837,858684688,2010794745,-105206042,-1762528115,-1324887578,-1320733768,-1945880760,-1315086241,436260665,1216100770,179399353,-1058237494,-653880162,897055852,619552836,1956126426,-1102666530,343144690,1954875613,290454374,1977666955,1052770163,-281954620,1802561587,-1546723708,990224271,-1565720617,1834876134,-360127181,-458434197,1473245702,295081306,1619538364,1919257023,1568611548,-712315197,1286476444,-1493234753,-215581509,2039327765,-790783605,-1026242880,2054944924,1897647425,-1754110953,1004513597,716444513,425065191,376158845,1082152304,1480464624,774470571,-2053075877,-1072983898,436114093,1301791778,393381867,126160533,-356831579,1702429484,-1707658192,-922757756,-440917000,-734121345,1190127537]},{"sector":9,"length":512,"data":[1365180672,-1707030202,-1745072529,1290438113,1202867032,-44292377,-1370530706,-1909949891,532409561,1378701130,-1176703981,-1945066701,-967070436,-2144590191,-1303241437,-1896394810,-229331598,644875165,-1465655918,488463564,-379325420,-1572801321,-1810253618,323971498,-364410163,-1968397139,715926593,-783988508,-1573662321,-1386035902,-1304246293,-1256626600,-552598584,701909562,-1154175640,1719982677,-987700314,-1797787924,-1043516060,385916941,920558159,1731760565,-1409787274,-383092015,1074545092,-59440836,614395213,-916165203,-394475981,99982763,-813304417,2103915258,-1585617077,-357026087,561142769,2094662481,2104536419,-2033277550,-227585935,694009497,-318923571,1614845651,959758752,-1048574136,1019076116,181105917,597526715,748755434,-1377650475,-1829996352,339790688,1327863848,-1282143656,-514164048,-1593361206,-1970500075,845065994,-1277967692,-257081927,-888939659,1410255562,10223960,-1572802504,179457840,45148180,-511348809,1094776329,-637740235,-324446126,944844967,2082017854,423753667,-85920902,-1810299526,1746207690,-901544630,985202435,-380824376,-1451845386,1161030268,-67515162,-119417324,-878288049,1077155682,-1719359744,-1452894246,-343446966,-1725913040,-2146188288,1428762147,-1239025670,1763288887,-1621145684,613240498,223807720,-1906147312,-365757526,-1584466637,648533037,954259835,-536467794,995060194,-485501906,1748875623,16823862,-1697636758,-1895288310,-1376986636]}]],[[{"sector":1,"length":512,"data":[-332273020,-1971275775,-735421250,-1851927339,-1589998918,919739649,-573278150,1583673903,-2070937404,-1751477429,559490001,-778172336,-1460296713,-152619430,2055759369,-1332624191,-1919691416,-444147918,433742275,861127087,169577327,-1329479410,298077216,676430524,857119380,1795023727,870782492,-704501680,912334853,1075550856,-1123202809,-90082196,972084227,101543352,159440102,902312233,860722018,649431260,1679525731,-314436202,-1892361790,1209526417,-477727675,306483393,1508835228,-580079501,412450408,1022063018,-1146025081,1018669223,-1143075799,-1845350621,1794370157,1985205544,548478019,2091223186,-1538068463,-107886004,556762778,1344738841,515605639,-120133779,730037939,-541229139,-1036918751,998301249,1861949016,-1669144642,-573380183,-1902781730,2053851687,875834732,1816386859,-411609712,-2027095592,513768164,-2068026861,1195549991,895454333,1779318217,-1149964378,-1644188705,569133576,755299067,1829800742,1290730121,-335821641,1851237349,-53367881,-57515369,677624304,673368221,365143932,307902410,1831387142,-652369655,1915995676,-1699726532,-1374707336,-312306652,-228869410,1659955489,1835317127,-54963517,-1843587220,1775823927,1990536749,-434432023,253462583,1649832063,-757610273,-2061973395,1243030587,-1160257053,-1865682929,-585701105,-116818844,460779063,1465278414,910655281,-384995740,-1287240490,1579409389,1420277553,1046921972,1559350503,1921804274,1763049323]},{"sector":2,"length":512,"data":[-2017118827,1326476336,-539474050,982539390,1230393042,-802255068,1627969409,-148204350,-1362904988,1015632639,-1391012942,114295091,12275975,-1725531907,-62569909,-1040451360,393722748,795720,-89444268,1730513302,-475270463,510119306,1078197202,744670581,1728236639,867371375,762338930,-582668788,371078159,1183750715,-151637548,1310262932,-1310155424,-1209103347,-596896439,-72364397,-1783804925,-363877420,1193402784,622700120,-336352893,-1132287153,-2122399420,-637759638,1925597005,-163587092,-37877545,-1556266720,-1357783865,-267541805,1805111875,65068846,-536176188,-883056890,-1496301931,129426886,-261884254,-1071197249,-912571122,132562884,-1121291739,-293472942,-301780735,-120558397,469529798,-573533165,748510662,44664349,417077313,-2011171626,-817348016,-1746064113,-1126670157,1771920418,-1784304932,-1022817189,-1023096897,-1919053069,-184235553,-599853597,-534694131,1913974230,1523098345,1336417240,-454979288,-243424083,-87982207,-879232866,482107772,836066660,250187211,-351882085,1765476338,817921220,663591270,2032529277,56131674,1051633910,-85336150,2012006945,-1056224020,-1630609089,-1399284960,133481292,289495492,217743849,-1380036124,58209119,-1271657386,-404792735,1308408016,-1732961219,-1630654977,-890860515,-203298008,1984933115,-593634700,-778640586,668714158,1600855530,-1116732460,-1439165590,-384697094,-731660530,-1494640514,-1084083682,-2138342386,1183572515]},{"sector":3,"length":512,"data":[734238750,-2017445021,1856716230,1250398495,-196586309,-1753258786,1236259846,2016197625,-980577446,1185120699,596540806,141798692,-663943949,1490304648,1499834450,-464445714,-1846914046,-1973862747,347937616,-770420499,-904054414,447890055,-1349611792,-943829813,1875579493,-427812964,1986272962,-1295520855,-1403752423,-290138133,-72275638,246576462,753449910,1616836797,50933987,1604703360,-646937500,-1260997736,1754001736,-1037677150,-361234621,-1990799435,-927085329,162514626,1989860799,1590932668,-60149129,-976307068,1098249577,-190254294,-788823065,-1529702360,-714156055,-1497053335,-840403511,-1352810408,-766526345,-880371307,-2019840424,-1542736219,631646945,1663385803,2045183586,-125919064,247232796,1682855736,-1362863166,-491805338,1278683389,1380401496,431289380,-599012854,1844608031,-135147837,320827362,-1907888629,557239400,-225422045,969213695,-1579977782,1866048939,-834302197,-932053583,1255127783,-2122935855,-11964195,1925486948,746095013,1405721735,-160469845,235627611,90099839,1352935317,-1326360383,1806504537,-427584594,-578989724,1555981233,-1755893845,-1301334003,-1056610948,1559535006,2035501554,-117927033,501916519,-670245565,-2023708829,-1546357223,2102283184,-1328133547,809463892,-626181895,1733793757,-144374912,1340752463,1578201444,724887294,366552598,-1441882751,1917672814,-696546255,-846767227,-289937431,-384656647,-290796562,-1682760184,1536383188,-478754335]},{"sector":4,"length":512,"data":[540219696,1918535277,1870098420,-235750048,-880049158,-2047195578,-627430561,-1008485335,-688918376,-52121554,-1357461766,-2036442486,556734511,-4024275,1153170580,-790985935,-136012325,1036483643,994338642,-1613101804,1887579931,-175902802,-148373609,-1408162782,-689102597,1996306419,-358390420,-219603467,-2114789281,-1095669001,-254183307,-464478262,-1292471554,-1999378103,633172940,-1880271284,-1081620018,1587164165,-483086110,1234275522,-956064740,-616228550,456044369,302750837,-1929207972,659639224,-1826562151,-2052993968,1806948107,839248180,1955958323,-3712026,-365841969,-855863021,1051286083,-2008930573,1238863639,28468695,1000705491,-1774942566,-1191288731,70076613,1085951093,561986746,1362006343,1653796650,2099866037,-1429722184,1869918818,670968766,298281357,272159572,-1099057458,860574026,-563298355,1102991538,-397680581,-2021010311,-1136660025,-1783681754,129292714,-1067422506,-98166969,-468580713,-96948789,1626823483,107808113,2129603764,1502013610,-282437490,-2117213154,2139575367,174480069,-90324489,-1196775534,-1333460014,911732196,721089190,1039249106,-1317404859,134739097,-1183858525,2071870879,712230953,1381135998,-1476871714,1376873270,-1101835287,-682379842,372218423,-1469109623,1983592446,-1986048038,-1874862761,345703943,-946117317,1603603576,1807197693,1979240884,-2013356634,848734770,-61378069,-98897202,-1035472994,363588012,-924096794,992972084,501925166]},{"sector":5,"length":512,"data":[-1170088544,-1125310952,630263346,-615280319,-820465684,-962797090,-1705012939,243345316,-2098918298,1589703360,-917878007,-557466071,-125965671,-687686258,-401224637,-1402836097,-263902461,-264717339,989082593,663233264,938289013,256266062,-1482775627,2056360236,-1865472223,706651110,1918395818,1923147777,-1665171612,1089909034,1794788157,-568328028,1223876946,-1828326400,-1528725502,-2048638779,1276543600,-975044598,-180805148,1127202699,400687114,-228930316,766071086,1217761319,-1493417983,-1031338427,-764726646,1166550976,59826141,-884084976,-1734641575,-1891714931,-1767488086,797363966,1598031101,-1533215030,1350803459,-1997644752,-511639783,-2076454717,24781679,1029496639,-1511041179,1280927584,-1638042563,200830867,1794092705,2111332315,-985421589,-9424637,-497930429,1440611579,-1520823104,333697277,1874262777,107003649,305848176,-832957081,2104879666,538135895,-81782567,1972737805,-1236332617,303425043,-1097775236,-1826697460,699656100,2078714581,1346859658,-103227272,-728482458,1516665855,1958313575,-3503216,-131777273,627899051,1211020671,-161900048,1861995344,-647281847,-958968880,-879222632,-527165501,-1579279121,-1838977912,1039133786,571088532,764591674,-1390570103,1695850505,-1563880195,1374275727,1448306447,-2143967009,696095790,-456365103,708861954,-1671335942,1073194488,744390626,1032418461,-981547102,-67564396,-1105144966,-745077416,-1753004648,-1967206907,1435481356]},{"sector":6,"length":512,"data":[-2041906325,-2123423067,116044565,-305544276,-439566850,-1794128007,252390825,-1803279377,-827097085,-1298223850,1431201875,24925455,1474924864,-17615358,1060751987,-1436050710,-1895009624,-108725340,2138512872,-1828447616,-701050122,-1163577694,-2032621,1701993025,2009794512,2092982165,385955893,-1643149367,1272940271,-1185639425,1220803795,-726511028,-1735245049,-842137404,1563678670,1223716335,290762602,-1168123905,1956501582,-1712452241,-1695091588,1508066319,-600104037,2020870116,-1108746304,-1916673816,154438344,1205374979,-1150445290,-800192232,1451248002,1963024722,1980742018,262330583,-86507340,-1433483912,596957881,-1832295775,1051126539,678349169,-553977543,258404053,-808209250,567900230,-1313872233,769622587,413480276,949682176,-823837611,-251658124,-427655145,-233530097,-1549862449,1594715165,-1829001828,-1816440553,-463762037,-1480732564,1249005304,1340392210,-1529444364,2107147640,-1308065283,1363548884,-1947712034,2110322025,-2146575243,1069064646,-29474963,33540585,-1342603944,2007785376,-537102178,-2721805,1340119293,200218879,-1743813224,-654331192,2089128908,-1308638592,-1519675205,-2055480723,517333244,2105229145,-743673078,1029216723,2141093877,1883175116,-1996110537,-992965399,-771873530,-1783545450,2127346240,781352663,1491177360,-1861934270,-1742076148,-973861344,-1438194086,1040457632,507783280,1174573701,533457827,1312841848,507562266,-1037827968,234706936,-2126961469]},{"sector":7,"length":512,"data":[305567498,-1592788064,-1373309677,-1610452818,-928723371,1814691746,210029043,1098908738,1144998006,962951606,8931248,1712874192,-2105809510,24619646,823116366,1748218042,1096309146,-512061617,-233106604,1793432664,-1796262753,-1628029611,-376721225,40389409,-375277501,1157561431,-736467236,272916051,1707413705,1106922577,-759216022,-981406066,-906525056,-254335583,-609652585,993781259,-222266532,-546521440,83816128,1497732544,1529751775,825769351,1903695804,1449106765,1812138314,1013820664,127273079,-134067486,-632978586,-334123102,-1906061323,-135092031,-66053920,1881642856,-953702174,-580881946,357043985,408175732,-587749875,1917105777,1939891772,-1583929343,1677745411,-322168961,6611508,50931556,-634480016,-816555229,1663331038,959718943,289087492,-61636200,1711830017,-2117074826,271581561,1237072768,3162511,-1539771065,-430382972,-626290727,1163711425,-645882656,-1869275580,642873254,76418521,-1660765850,112803851,537061405,965887483,6579109,-727636124,676472748,-783121355,155222143,1881310471,-867268852,402777141,-959375976,-833584474,358363911,-393341163,1074295400,-1325173761,-1233075546,126899808,1195794528,877279503,413605025,-2030835508,1056206954,683438335,410044166,1277084056,-332503882,1157427971,530358592,-451504488,595969404,70859002,-2081194080,811332713,402717453,-2019309672,-2131172068,-1031359312,934945669,1067451449,-2111208480]},{"sector":8,"length":512,"data":[-1329807126,333368335,-606960383,-557049176,-1910632773,205280104,127860544,1622634707,1711790174,1115720191,-1624227863,-1617953464,79764490,1191942798,-374549516,1538812291,65810224,1078254835,-1743020895,1558517398,471708037,566814673,525335808,-2100026548,-1743089287,-2061859135,1516268562,358650970,-104398131,-2145980213,1277066750,-377299037,50339120,-931513933,-1912591147,1463071167,-1312597236,1610889760,-1926206271,1172704126,-1912586134,-1578618086,5335399,-508720085,47900344,1344982640,805995619,805554659,-1708491984,-1062519538,2028448979,-1742503649,-512536128,-871548264,-194411766,-1878839285,912285703,915945101,-1498138638,-1022594283,960822897,1782667727,811335006,25726721,1722259480,-293368483,-1551446843,-26008129,-1729560919,1584458790,1610818497,-349047200,-277603222,-1063786800,990294625,2041110911,-1222691190,-1011647900,63560505,-1180964688,-1528910324,-2094681498,946097763,-181606616,-511318118,1181004200,248210303,31752295,-46819304,-1434227689,-1449998682,419977641,1203358222,470347887,-238874509,-104615328,50347156,-1420639565,404842297,-718173522,1064980592,1937118646,505164227,248087310,15877479,-18297844,1386544227,-1374766541,-509721112,473873048,834868750,-2084107004,359075529,-871628558,-1664614925,1221418601,-808536015,-452522563,-562338852,-1021561940,-870813504,138321219,-435814279,2047082225,470640538,193972060,796103708,-2095651866]},{"sector":9,"length":512,"data":[424958177,496174990,63553998,-142921680,2040943903,-354355930,473155773,1586459540,-510490769,1065068560,-1499632488,-1061155038,-1689632788,-1022096553,-708476971,530500720,1807915790,-5633043,-371799677,201388576,1740469196,-2051222586,2000347522,1285611614,1921222394,512006369,1456046862,15881729,-43987956,2026688397,-1050928260,118263958,1012128997,1891855768,1956412168,1275235870,402777093,-406336104,1622988466,-18441937,-1693743358,809857249,892792634,1192180302,-461249023,-2137516031,-697624633,512712892,-1014923424,1782082878,1152596526,-1302269501,-403619755,1138328445,-1433510863,-1911491833,-53091591,-1302281337,-1017585579,971608825,1177189397,-2045394089,-642580317,-1680649407,-228137427,-741602304,605260393,-447490011,1895161460,-2029205044,-311700805,-202509229,1866835792,94332428,-245023320,-1392854939,898504794,-1698461822,1310996590,1963964127,7940538,-2049112618,-1904678104,-835177891,-560718837,-758785674,1010328453,-1382873572,63470850,77541424,724924651,-424967281,1497481404,-812770320,-2022558126,-1741627149,-1779952276,-1291648964,-30689374,1847943252,396121456,-2046694344,-1920125981,471667932,44929798,1611108429,-1638971808,573931310,-1233524536,-1697865503,694667021,-45352677,1759638509,-232375103,-204731392,1979500477,1886653244,1882144669,-2033359280,946028995,-2029623234,-855153471,402777265,1333512088,1458689729,-237564572,1254556403,-1186872377]}],[{"sector":1,"length":512,"data":[204766320,1456046862,15880193,-1109472244,-678183301,-1619320696,-47695849,700272735,-2037412329,-651140671,-228274134,-20182016,1709098705,943268289,1908627244,-567588270,21925182,7937382,-1153833466,818607003,-1394123750,-1379463281,352333139,195010415,1170944091,-871628558,-812794528,-875023092,-1241556939,1424081322,-985659270,-490625061,-804546976,1267990713,3047888,-1059064374,-1712563200,-659030016,1879048463,139185,1879532256,-659029071,-1174397005,2033171851,-2133060096,-1418811449,471866255,100499616,-2034884850,-1281169757,1043882434,-1697195592,1611109245,-1611336096,1033326130,-1632760423,621216483,1331087320,-1914468915,-1844190542,-2067781407,50347142,973040051,934564575,1960165786,674784078,1293180647,-2029157731,-519321080,-645901885,-2122310077,-1109665159,-1644816949,876795112,-1022889188,1892666849,1115453320,811219066,-1072749005,682880192,1791741095,-195750466,946414297,-1369512152,206806141,333516935,113303954,1812001294,-49948268,-1742391161,-453604159,1890349296,289377819,1929809773,-1236526992,127010485,-187277216,-692491146,902915738,-905050649,674785608,-240153065,-1302281341,1015387565,-1565326592,1257353975,-710423193,49515240,-700619513,403421296,-2096959602,-620587069,63491930,732114992,1075745302,365031879,-1730052835,268574573,-389477891,-269590508,-435814303,-771126535,441216445,799270748,568664860,213490432,-155010266,-1061155037]},{"sector":2,"length":512,"data":[-156148164,641527021,-773607923,-662335977,-1613692895,-1777431408,-2092104252,-118220167,471640392,-1312778494,1584018298,751710090,595008153,640207884,-161456122,-555521545,567126006,-2042615012,-1010564253,-1419668751,-1958194752,1711690445,-1628565712,126735888,-1044190569,278693451,-1037831421,-234107257,-2022140936,-706509320,-1061899409,1602747345,-861115241,-435769590,-1164737465,-568002656,2028041345,1990843381,-673055551,-1509541997,2120248048,143571012,-434266246,1472010030,-531770561,1775755768,710083342,1098694875,-872120870,-1086918361,-542384501,-477758870,967270279,-2112271348,-770972153,2120229078,1583192182,385703668,529405701,820419966,1813718320,-566134743,-1617421408,1562998301,1727880948,529405907,1628519806,1007733344,2005950256,2140674421,785108664,1061842810,1058815781,-984515844,921867456,2005950256,530062048,791960402,1996664698,1058806667,-982156548,2015466688,-1658798496,265028783,-1951914583,-701358114,2146089248,-2018904584,1633352065,-1667965136,265028783,389303721,-1109970100,-1007058205,745408431,-92542041,371169342,-1373717058,-1228931597,-1969254898,2006466554,-1589370027,2017558534,357169164,1616905762,1450727550,2110730257,1058807149,-159671019,295474397,-2017416040,1484677235,806642040,432454019,-829775986,-1041287363,-946335332,809038538,2050276763,832962086,263833356,128984843,-142606157,-299533119,-256836415,26354348,-1656994820,2038431099]},{"sector":3,"length":512,"data":[1117636419,-915800051,-12786396,554361185,570226272,1941819038,1270329375,-1545600635,-5501394,-2013469679,19959685,-501225037,-1319703,1967635252,676434479,-435814302,-274813015,407180920,-1832423026,5713481,1039765440,-1061157031,-789358340,-471231966,-59712627,-1778394338,426716915,1588176457,-42153207,-434391375,-596655958,-527703162,1179331182,45090357,1060134555,1557493326,1908173616,1675595291,-589578245,807608617,-1276125015,1835266819,1929756755,-239037669,-2037195685,52077349,2077157018,1835266822,856021163,1892375002,-167061892,1213431009,-701071336,1276074302,-1110453300,1876025035,-1193116560,-119481829,1232629858,-993134091,2124309088,499948526,667354877,228703118,-519688306,-2067789237,1325924491,807404472,-1180703416,966670844,-785063855,-1805178552,-1108372956,1908436026,-443544956,490300895,657520603,-353206299,2050034800,-1408036444,732591614,860814147,-2025934172,784869255,1645937034,1243519602,74079611,1589831608,1002725031,-2030180064,327333362,1155926209,-457018781,-2017496506,2124773515,610023935,986372697,19260161,1360615086,941645977,-464984141,1073212974,683627930,1151071522,-1130008128,-1042996010,-519337384,1158905265,87487662,941616546,-1730991060,-407284987,-454021563,-638666757,544665634,2058066982,410190181,-420207523,-1440080221,1177915197,495619467,2025571984,857834631,1458036979,1895964258,1840765378,-1014585189,-822866888]},{"sector":4,"length":512,"data":[676164038,-73771055,1738685822,-1508281948,2100840404,-1287101854,908486450,-1744403304,1318237966,-154163316,-346513761,893332551,-324119824,1286464478,1410287818,-1039871175,-448935192,265547798,-486797313,1177026354,-1931178214,-1557790800,-908770683,-920666396,-841981947,1077569204,-188853434,-1173718403,1672279043,747182528,18019600,-858885914,-1042905072,1906777688,-527358977,435236900,-1735183616,-9040487,180960155,-765164602,433357039,-1577950206,-1589539637,858164849,1204395077,-496492118,-132368884,-500881824,-598463070,50474290,-495250016,-1128468384,34815065,-161277205,1147611533,91341225,812822177,-769708935,205033501,1218779601,-1913978027,-698296431,1057055185,955946067,540256594,-1743201980,1147375200,976267143,-183582255,440568150,1619316915,-86208826,-1551180855,-1773997147,103634209,1553526882,17828999,-285515022,1627046781,742042966,-723234584,495111595,-1316704281,1045866437,111861799,-715748221,-1092324730,-344622015,-388225980,1124696518,554600747,-335322739,-1243573338,-1787577134,-1987850636,1889162806,1980652973,-478086479,-2064422150,2107081402,459347968,977290421,25559861,1090684032,939606528,-881824763,559936882,-1795128368,75113531,1172775584,-397147761,-983400280,507972483,1170747913,-1643596029,1655981451,-311953404,-349431933,1108407328,1124257445,-1308599072,-1723370479,-30539776,-1609428807,17075601,5944824,-48409172,636253533]},{"sector":5,"length":512,"data":[294634210,-62634832,-1652913395,-129780291,-1052361065,1135281270,286942831,-1291949314,384473868,-10643797,761859582,-1149350921,1473047160,-1077300254,-1918754246,-2037877669,1823483904,-981328999,7704732,1161236756,103427118,830852099,-2138488730,1677758464,302029529,-1510322687,-1877483400,1946168754,-403654584,245192400,581131088,523657153,537671959,-2126036975,146201163,230496440,2052305867,-448203610,1426311809,1343072775,2007063,7995453,-1608515584,1012073218,1759959244,67874523,872447252,2107638158,-1586741748,386551891,119619405,-1408497786,-456578414,-1585131122,1498748929,524633675,1088819244,67152794,749093162,-928738639,1666584597,1166438812,74512856,1166647116,-182844345,-1018101919,-1577451444,-1480470866,1196430590,1639858215,-2124661675,-1268971787,769274495,430483274,-18910145,-1005534775,640357440,-1336803960,1396496808,-1608732066,799977571,-1013852671,-1757157897,1480328801,1472327793,347668775,-332972032,-461476257,-330223480,-632945656,10730301,142922,-798945002,1762395650,1393558752,536954436,555102326,-875593021,1019413383,804658080,-476078966,585110068,38241681,134231408,969650348,951353034,1007231651,-1824988982,1887583165,2078526108,2029185587,1019856668,916654910,1643298825,1159893144,-1567550304,848593923,697356915,-2012313885,-1798282439,1300714273,1080506138,652442036,1916247309,-1818110912,-227261962,1624264888,2033720264]},{"sector":6,"length":512,"data":[-2093374236,-970440458,588316836,538447431,-479079258,-1542975706,-1553243618,-588749257,212280073,708220552,487491091,-2141690570,1146360504,539499021,-88141711,-360386587,-661635636,1276658467,-1992370079,-1724823540,-1634602803,-191729356,2037463462,2037329125,-1203744193,966839081,-1724086240,424591874,279839417,-265414392,135318656,1949715638,-1602965091,1193317578,-820512118,1676859997,598284101,1030347042,1208338519,1373281106,-1990800282,-2146753724,-800403450,-1741880276,-1339956552,1084928692,1790498512,706544134,-1818206721,1701148416,985689733,9025549,763713957,1542261916,-2054247375,1126347470,-1296915824,-737673150,1119913313,-1011996277,-2130189979,25086233,1904428366,-1832874264,1057678610,1690218105,-1878848507,224635651,-1197833705,9190474,-867727732,6094943,614499235,2082828462,1669908568,2064769684,-732479454,1491870952,1125473288,-1775570658,-1940847668,-218625767,900131222,1397489770,-2145975257,440472,-2146761262,262255,-1813237104,583386370,-1342045429,-2079651885,-1269297095,1054511932,587793921,-75470080,-1072087217,-519335460,42041666,-1946036735,1705053081,-49686792,-2070800762,-1072331787,642059165,1464986719,1983660305,1705321510,457916435,950163203,1122150456,855671188,5432704,8509408,-894572804,1891689970,-2138298197,-1684829337,2063045617,490744763,-1157091835,3383300,1811916125,305468123,389089616,-780514270,-808546815,-823963593]},{"sector":7,"length":512,"data":[754342685,544550046,-2024388568,-14566908,-217809450,1974127076,-1579858664,1058248520,1894867112,1608673090,-965465049,897283619,1994015187,-1198402319,11662778,634740467,817876900,-251618264,71783075,175440655,713802656,-528314621,88417744,-197130367,-534915396,-1172680671,-1608712361,-1071437805,-30528461,-1609508679,1193317578,553707658,647219298,1410768461,923517956,1344805410,256116448,-791517936,239489857,-568321912,-2080168814,910201945,-1763388204,294228575,-1776183351,924468232,1636100211,420259523,-694792432,1059812,-2139575170,1200599968,2029468162,-1892441924,-281408697,291680412,504467011,-1204723711,-2096192509,-1071577501,47579175,-799068568,-1392500235,-532493038,-1353494358,1644633668,4431972,-234603939,1560827805,1255146668,942577576,276315906,1966391435,-1799094088,-171412836,-1450183230,-671088418,2034371072,-92549564,1226778465,-783004160,1416180609,-987792493,377361700,2103383037,-2146979349,-2145909760,940311168,776687888,1276417053,-793274902,-1750789557,1343357968,436601184,134340720,308786464,1082724167,688916866,-414507388,1242435745,-791400159,1426935880,-1205073264,873235200,1250984152,-1878745852,-2076632199,-383956285,1041174928,270415160,-1877929918,1676230465,810160644,1377043681,2031243600,-981378752,620319059,1765423438,1612154305,419833732,107291106,-1527692006,-1066525946,991758113,512197081,134346876,1161069139,759570708]},{"sector":8,"length":512,"data":[1092722181,580776481,-2000344761,-1840738269,-527031021,-1708780589,663340920,-1975351136,-1029579479,-1196676451,-1272149246,1993048792,199422138,1124719152,567882124,-835515229,890053440,1770151806,-1915059026,-1346420995,1199091878,1753183862,974737227,-541233404,-885170833,85857874,1295443662,-2053486410,1917503559,-1322348475,-1112927062,-1513275532,1696772581,1241527385,-6369544,457316800,-1255382588,651521754,341471827,-924542178,2046597938,-570739901,760023122,1261584253,-692358590,186500525,1486474435,-1229572662,1212732507,-135479256,1245109509,-1991616316,311175349,-1589343159,581058707,-449560580,1579934658,516996805,779576741,-1272181492,-1761208100,1273474461,745425123,460639079,149720583,-404783555,-559695691,-1862560235,-4580749,1764882117,150580457,-1886956531,112974227,-1082525721,1657600812,2115443064,1862224639,-1602665126,354973678,-1129274395,-205522045,749629951,-830857753,1532099950,-314335842,-1262636305,-885052034,1454780716,1112263469,-397662845,-1034398911,-525429281,-1004560996,-1309679839,1310206728,1163700862,-571806567,1575695055,-994514546,2020813473,57749961,-2140057093,-1888565253,1414712194,-2002923067,-975570969,1496246834,381993804,-1818750423,1008417049,-582106651,1211404665,73225652,-1382854646,-222477666,-1825769000,746000070,1633501130,2020246377,-433731130,-1765057415,-2074452191,1690218290,90103368,1582518717,-2009423314,-1326503822,1257413211]},{"sector":9,"length":512,"data":[1118394513,1089244192,-19504046,-1313119667,-150344895,-882703309,716670595,-1803309368,1845295593,1851130120,1838045808,-1736096358,416145374,1981493572,2147117803,-425860006,-1382971845,-2115310661,1550021709,1903995078,582746089,-25609012,2128022512,623519045,323539299,1146431016,1428342630,-1769256614,-2021743910,-715611216,1469596750,-1505833723,-703021078,-1130542081,-2048602327,-1518564082,-923994777,344137816,1750812277,-712451739,-799993745,-1246141840,-1066604793,-1328633501,-1148184375,-137357267,1594535675,-1090591337,2129189124,-299444376,-1278584344,-266765029,-1443372366,-446447777,-1368279977,-2057040116,-1973432683,-1443588045,-19965133,-249657917,161835271,2105918520,99113845,2085549652,578441345,-1595235380,331077511,-85179858,646784055,-18658434,224911237,1314706065,786183381,-1216993309,1062344401,1529094778,-1928376526,1894680858,1672487935,-1087379063,-1731956699,1031370316,1525563132,-1895046405,-1269552435,-1715251876,1020855519,1986936643,135246607,1110859862,-1543669834,399709297,-1328644401,967559009,1378043989,852210522,-923300312,736267174,1854296999,-448271753,-325346185,1599994633,-868941545,1402667859,-1811870089,1367217654,-524362736,874945395,-1556170564,-971866076,-1502055694,-278670138,41385430,-1759112086,2035590550,839564269,453248121,-1223713320,2076294596,-1416194141,-2064598319,1389751516,-1731959250,900806507,1979771833,-469834578,2118039260,1151583825]}]],[[{"sector":1,"length":512,"data":[-1059321893,-664542094,1456218581,-122447530,-1383119787,-1531226837,1285581303,-2147202191,-1923224413,1632670792,-1089870663,-1341321760,-1171757284,-1110809984,975726156,-1023389843,187444839,1262548348,-874852241,1102080842,-1018528017,-1169858712,2070311166,-273868600,-1781829963,1702329440,-542663543,-1530766178,562223320,-1523859061,-382218942,1072238679,-1725529615,-834171271,-1265350239,-1899179061,373627824,-1644125422,-1532530087,40815884,-779937459,817316526,2031277745,901361691,-1109123696,-1680771447,-690943742,-1493699444,1394035309,-1895257803,-1690982489,-1977363648,1058324774,1261848408,739999225,83766067,841976747,1080656149,1968400399,1738966676,-1186745557,-1337824156,889912226,-1463429429,632437447,-765773078,-559507340,-1121977121,-2122574245,997705869,-688055036,-1066882296,945758558,-1878115787,-1089967820,-67765918,229911421,-1715303118,90157547,-122288200,1574666602,1593706036,625889256,1815297583,1725283508,1591204882,-501254882,-2065754944,1155245204,-1068059443,-57728857,965854614,-1515639474,-1053144770,-893182710,-1513643990,-1711716124,755709919,770850445,-1947493534,-1685294202,2045874010,-442402189,-1085839994,-1529665256,-785932572,-533958311,-1501390221,587481340,-843858181,-245185147,849292918,663428756,-609098472,-148743826,805263078,-819622165,2121453326,461313806,-1612618953,90963930,-1653789299,-516463887,-1565609625,-1315010076,1047714623,-174605842,-1654171595]},{"sector":2,"length":512,"data":[1170596475,-1173796589,668961198,-514000630,-396346125,-1653431335,-1470505255,-1713885529,1092546859,1450099771,-727220134,1178249570,1826497954,-1555605105,1938622509,99066421,-961582092,-846508606,-2030628385,-335006272,-1083374990,-1172479508,800915537,-692894474,536049097,1129210876,-213061932,-382487622,746707987,-609673062,-252631348,-1549359478,-1001346982,-1616278020,-543410686,-1529647081,1923777243,-633484636,-712671130,961263887,-943921601,-23780798,1585080755,1737274924,-225935707,2123362182,-1657037395,1190163786,457489414,853150534,61031267,-1112355697,2067348319,-1930979721,294886009,1642954462,-1133160989,1592270202,-1336544651,2115747584,-108373330,49115785,41291711,545540885,-559095565,1106818373,305177576,-1411928736,-24654367,1423550193,1918862324,166444152,484053215,-65163570,-565783358,-599606773,-23152146,-1018785717,-1946674305,174462076,-1917329528,183251577,460120396,-1965680651,-681912943,-2067650966,1132501654,-629122606,567795586,-498104305,2068771737,748681838,-1714186633,-933091864,967398397,-1165056887,-200690310,2113884255,1189955728,1961094328,140898472,986191965,-289191478,-878185892,-1284157775,1495293400,-51821041,1202059402,165309145,-1265493030,154798179,-890558649,-430344309,-660081547,-1705668825,1845090532,-1618904772,-259071764,1785865889,-814562918,-430254892,-439078745,1837046006,-940228114,1392656815,3203101,-600259391,-2080706778]},{"sector":3,"length":512,"data":[1385344065,-1944437756,1342436769,967268391,1927644653,1166290073,822392955,2050349216,1203701190,-1788654527,87250843,716120957,-1186753698,-982500170,-556753439,373938154,749444976,1612391019,62329414,1699129841,374116455,-1749554504,1766911350,-1683719337,-1603176935,1591904835,365649362,1960517267,1765564240,1634223364,-269607560,-561366044,-140432436,1359418474,1223395981,1180860893,-1071167816,-841049268,1176072265,740104692,-1230148969,-514241587,-1612401474,1976356634,1351208481,-2090787210,-633402294,1318875834,1048753929,1842244467,1798813792,1264118152,240293209,-1433576125,1635982686,473331310,-553424548,-398322284,153317609,1954348874,908347500,618317090,-1212458593,-845388791,-1738072220,1281507730,1248832536,-477807507,434254979,-13793192,-1865334539,1760522430,-1013670626,-510294287,-900212011,-566160937,-840589913,-1883223100,1787768112,285835429,-2079013665,-432821758,-565803366,2126140567,-1183236227,-899126715,-483894287,1646472538,-1704380334,-1616603876,759989812,10783050,-202599620,1530660044,1474325074,468270789,-748475010,1057967321,-1668194873,646172527,147071665,-2102286093,107787600,465261065,81058689,1552772867,1630464048,-378862067,-1231801176,-2908999,-489271812,58474694,312936470,385713354,1981513748,-1241322852,1538658397,-1002344627,1794640693,-354904582,1320777546,1486697148,-663867540,1382171808,1431728268,44453332,-1539621936,-365649639]},{"sector":4,"length":512,"data":[1790801835,-879904761,74817711,233191220,1889424336,-427276129,-2016215287,-1431530208,586247721,530269858,579226769,-1954789280,1256551668,1182628900,-254805550,689285311,-1933561552,377523676,1388022351,-1849528245,1456333897,-1167640486,696875529,551650800,1348294329,1865226181,-280340485,-417322450,1600871331,178585650,-1746367194,2025761471,1096604941,-1351388435,-1728907225,649535292,2123539637,-377909384,-2037044661,-1918727850,1325430404,-578639218,826866318,881640846,1523044313,-2002835490,1128633929,1121251500,939226440,-1642700131,-1357477207,302724535,-762786949,-1335376723,641059104,1636103465,586514078,52782114,-1338548100,779061784,1611684711,-1742487995,953615946,1528590363,-53999448,-107391920,-230879607,-1309190070,-961752455,2068669507,-1499004380,590224523,1413918058,1011723176,1130581279,339136524,-798914651,1839300135,1069942194,2146515531,-1714581397,-1324123498,471946421,1687690956,-1341031526,1187320424,-129731718,-253910179,1630156321,1669213962,246129310,280769654,-1101628467,-1373674148,-469612787,29258199,422283420,-1940981296,-809532971,-1174164032,-299576167,1360529463,1225205247,1968778171,-1626304549,-1417941031,412300406,-1742022253,2124323238,1745987065,-1763453155,446005081,1430803434,2131201122,1923000869,-1196781257,1773548091,837187429,468422343,266943731,2006722809,-591876285,1257350377,1148042316,502839258,1908071171,-1804591481,326591253]},{"sector":5,"length":512,"data":[-39026972,-1423647810,-608931492,-1928372413,1920849157,-1719466746,-1710308752,512044072,344532069,-1944533879,-1104832603,842304381,-826724208,1086543835,653554750,1379074609,-684761465,-266903646,-1427195596,71362852,-747971028,-1244091667,-1188917571,-1737015371,1718501263,797669066,-395018472,1631622597,1898823888,-2016314770,744364539,-1317481310,894438208,-733731686,-645170907,-623111216,1496652594,-391784695,1854772650,1723723543,456651968,-1509132989,960280794,-1420924620,1327325584,892748315,-1515543140,405513806,2063476437,780979677,1007010897,2084829470,448444154,2010023791,425382554,-1516198993,-706153274,-198478109,80989267,1595280432,1903826141,1571421601,1437212773,-83657224,-406698,1459062769,-1612211207,1218377016,1902882959,-982417061,-555372745,878639756,-631944806,-912099245,-781599496,-2051708337,-1873041811,1071602101,-498611373,-1271235066,-1021009483,59054634,-887219409,729505838,885406138,740882194,-1452091493,-1867706225,164800349,-1804559693,1410627391,-1388568173,1324644731,528652115,-1405029204,924058444,1240494504,579762523,-1069744550,1915084762,-1166699731,-1963139998,2082370551,-1269001859,1816724460,-10451629,-762258917,-962577819,1182747111,149133338,50848233,263809990,-1170441272,-324202394,-2102174179,-520055411,-1087575726,-914189766,1625288571,1396906975,275636928,1266263878,-1010754841,-716519943,-133963541,599244987,-506554851,1432433399]},{"sector":6,"length":512,"data":[-576235648,1777856694,290226589,1877609141,982088411,-782848842,-1458408272,331706820,123798116,1873739558,1145683099,-1253277846,1415425544,1271928241,-1342294148,-749950068,1521463241,1734025245,-1614972101,-915687765,-216738,1242788585,2137492293,1061137384,-1709774364,-1367715958,1370592900,1531539952,-244798370,33948139,1299411325,546000342,-1164226504,-1177161679,572048423,-1169625423,-1878840224,-1062844835,126667357,-489694372,891937892,450938077,-188189997,-2027644219,933883743,1894997744,-1120086283,2081887343,-928480645,892745265,-1520127322,-1078579548,-875170969,-186490246,-548235665,992652163,894747772,-2050031082,368218088,-1602389651,1429298715,-2020332847,-147032746,1377792525,1879881528,-2078951389,240022571,967383416,-236569569,-338622988,-1989117000,1953587963,1866760552,1857066503,1937490582,424706796,1005836856,-440418297,1598869345,-29638716,876725786,-1230413119,1527259590,2031102436,-1034277856,1809473393,-1665435264,-1624000858,1190449352,-1891709599,1198881966,1464852495,2120746957,564351502,-1256241480,952630145,-911335368,-10760210,1146452880,-322905917,196885807,1573342135,-734307325,-927078969,-63410466,666776994,-298840943,-1555697216,26087176,-416198544,-1856135939,-155636582,-1020930228,1572175264,-1201573262,-1974246887,-981845698,908212165,-50173513,183099798,-2113273260,-516473401,-142747800,-850164262,-1014965320,-2015545747,-554250837,2098031]},{"sector":7,"length":512,"data":[-1608514047,-1619476288,215709341,61934988,-2126493680,1005852677,1936000687,1658388960,145657987,761305124,-1668631542,1191840429,-474912708,-1045525698,1793110776,-1157947204,-285032784,531071721,-1041264445,849034033,706145240,113184003,-289085235,-1066464274,-291448104,-1126763832,-398936408,-1230034992,-1615655950,667712205,-905953777,1995289390,-156306278,-1070419710,1778180904,-250592612,1252249194,-442175892,-1515627250,77668422,1293377811,655349678,1319137098,-894747536,678050473,178423828,-551965205,-1582962933,-1683563882,1161907003,2082955171,-83898198,1453797468,-830103200,-1327784288,-620313405,-687297423,865797577,-1448214149,102859456,2090792217,1128310503,-1112865174,-772951646,113355601,432987334,1720891566,1574054170,-880344645,120347413,-1126484831,-663437402,-1246467711,-747703838,-2017334666,-42958817,-563098446,-2044655572,-1326943712,149041290,-1156941410,1129234730,-1775957726,-1368564948,-1987475782,309894182,-1689507790,-1507259860,713722984,-1500702548,583052962,-631427829,-1164342398,-882034296,199422764,587911216,-926535381,-2100048759,849955986,216639692,1128950068,-1891355251,-626487927,933942128,-1246085920,-1550261192,-1461139737,-298113469,-1748032576,-1264332086,-1545445315,-86884593,45207555,1108370449,643051786,-1539240251,1360173557,1957794148,1183943774,300184234,1564549704,-1591326414,715731924,-1374493519,-189480226,1154145695,-516516269,1016517540]},{"sector":8,"length":512,"data":[1343483209,342167874,-848999854,1095677396,1448416549,-1021991583,-1520742052,158505559,-1721476970,1817876101,1553401273,-1752835724,-349864866,1568694181,-2074040983,1645768033,-1400491638,641882723,1515742489,-1670997626,1754924665,892770724,-424564118,-776836070,-1167189146,1865665789,-1376321090,-2028354448,861368988,-764142361,-476223663,-1647875624,1200218231,-1444382306,-260333881,2107590601,625469944,671219327,458653984,209887368,-2069821382,-1584899564,142220422,-1708881758,747283080,-1935472454,594368052,-386778482,306352163,1251091561,-1809520334,979982566,611836857,1705417959,136131692,1555455731,-237602070,-173993394,-588910574,-1659112429,-841418661,1014966073,-86187501,1998566087,1730120478,495172730,-334577428,532680384,830693920,-198338739,1153262998,-420664618,-575420246,84321772,1824816313,945064871,781916765,1016778841,-1498708369,-1710702805,764466959,-1486474272,-685886606,-1790111078,-2038706513,1836241035,1860477825,390748180,1541787545,-849348950,-790377501,-1696797220,183090107,480344696,1584782783,1392385608,-47340032,-235625570,-399531498,-1510708432,2000409052,-1622526153,-2008196387,1524277935,1391177301,524870749,1725374189,-839167050,-1802410362,-1934941622,1726518966,1385584459,-1284923311,-591945463,370268613,1929237962,-489852985,-1293276124,-281382431,-1907745666,-641290379,-878843778,-31075363,1223481949,1959606177,-694573214,-1176856330,1294693956]},{"sector":9,"length":512,"data":[-1026248551,-882488769,1539543945,-955517718,1977542093,-1848885943,1705580013,281426999,2015627321,447545991,930547746,1976240550,-1224127690,-1984756884,340115808,-1375530258,-1809476118,-929860702,1172029722,718354668,1115117847,585806373,-434675727,1577110762,-1360662407,-1228923794,-708298690,-260308599,1001105120,-824476534,1599150686,1290478155,815859698,-1887990384,255044749,-962526883,1108007559,1349848849,-1269184352,939869706,1764952986,1404097762,-659064978,1539017357,-1725375659,407999368,442149144,949626217,458601117,1403831508,-858026854,1184153816,-907529995,-595316135,1111037598,396921764,-1343149940,-881872939,1631157061,1756321113,959255471,498112095,548480690,-1005041711,10002404,-895165628,1961551046,1017460317,405854353,2140122916,-396821063,316540843,-198331609,376164389,-1362817865,-1683246558,380479038,2003576058,-1517051178,-1993385314,-1872472827,-1314125924,-816366159,745074943,1752115012,-848128858,-271084780,524010616,2026088593,-99181532,-461179998,984073175,-1399042619,51892407,550613285,1392908236,-1505869986,2105346841,-2079329163,-1805035140,343276914,2142219815,950770444,1383917489,-698517371,-320588381,692284395,-150399433,-945365444,545015723,-352634600,-271347799,-2000036637,700967315,-677901027,962578583,721340253,1014093262,2107424694,-1671590262,-1747400116,-1814120308,2124897871,842872178,739715005,-117613987,-289342105,342058171]}],[{"sector":1,"length":512,"data":[-263572953,-1964981809,-1624294980,2060387132,1311654141,-142758276,964490873,1115260179,-873103988,-29695259,-155622267,-109931987,-1518042805,2103397572,1113082870,788568368,671834528,799431520,-1167686498,1057206050,2100155114,-2117807235,-1268551268,459808277,836923657,-866190804,1999477451,-876143284,-2087178999,993204176,-1502517716,2037173679,-315974423,-1383043520,-317163281,2099771762,925830412,1094488920,-1615983409,-492809893,-1347283452,1722890446,1347362938,217774908,-2040583462,1743461150,-1235616610,-915948044,1288956297,422024557,-696526345,-956532255,-1244562640,1872936495,-1558076999,-1340621091,100519772,1273941368,-904042548,-609586151,1693157618,2061354487,1218205091,1507194727,-642331074,-1077042563,734705253,1092993451,-2093506912,-562799269,-1299257514,362504202,-640822855,-1887723850,-572048962,-1666490072,1203225833,211162328,1530023027,777719214,1970031939,-584042782,-133190155,-353816630,-1097097337,1860495596,-1419321732,1956016683,908334895,-1229358672,-342958469,1981820935,-698100005,-132093887,-1903642103,-398383652,-1764705184,1105747698,1328065416,-1863065685,-1577720480,1377264448,508349857,-1769766998,623094589,-1656509298,1924645432,321510382,713411244,-272059117,602855342,1125665626,1176713174,-723877510,1507671630,1512764264,-557337733,1310081939,-1771267031,320269354,2076027037,749036432,1357835172,1665871525,1871426828,586919380,-969740009,-1799636316]},{"sector":2,"length":512,"data":[1009765581,1674226785,-1583087561,495719852,419633167,-819800528,1265696482,-731387087,-1657082554,148603911,791181698,746887395,-1408262084,1674473376,-433000875,431407065,-185851639,-269821453,99298305,-1262348948,1507272209,-1873439761,-1012220230,-1638702056,1920381487,-1205108465,930553513,1051573328,283576335,-1829466734,-1690033835,1481129083,32073448,1623764592,2022225923,-1199507603,142115542,2052506599,575405042,-230844423,1645732933,-1853249732,-1047758082,-1583842404,2043773066,-902796401,256301840,137221896,-1855261797,1875283803,-1084557134,1666232505,-417383112,1399644333,-265929324,2038444428,-1201377265,349306910,1792665117,1114923144,-643507868,-870119266,-1968382566,2003412213,-1108284769,2107528423,-1720355087,1204233359,-373860078,1205867402,-40414622,-920683448,1224380073,-1373340166,412217326,-1236538128,-12100733,-2105925040,-1313577469,1959898607,2000072220,866060079,1490695386,593619376,1579706076,399841903,-1340613904,-1814024220,2085840459,-1167183663,662628451,-1539561202,198540629,-2076579387,1552886806,-1947252721,1042001374,1060981010,-678242067,846273289,859855855,-1197733459,-258990158,355687298,1067429668,1006868890,-688197092,-2143689977,1600014209,260858106,-1873855962,1489336700,-1313294017,-1563987616,546154032,-1971109767,687421167,663638785,959234266,-1765303016,-318896836,-228910488,-1737267723,1898426324,1473388162,-1237780665,1212612871,-748767408]},{"sector":3,"length":512,"data":[-770070077,-176950745,-1767567411,375302215,-1036193753,-346329721,-1032989160,-471523165,1176535562,1355939137,1347534914,-1003021808,331434057,1122229006,446908049,-1414645505,-185031155,-752206723,908587540,1059147578,-614683519,1201801768,558582433,241283759,-2019121481,69194584,12032651,436162924,-1939055099,1883258278,1977887715,-1493356749,789660089,-1095271974,2011825144,-1162588242,-1827720763,-1221890249,2076496472,212915522,1113436221,-1095585385,1287166589,-677977698,1753386416,-389666030,-1179311613,-1977426356,1707279708,399260402,-618482011,1492879547,1443602222,1433970252,559883696,784415070,-1557543473,-1635892604,-1344449534,1651605082,-2024286413,-424381977,-868734842,1254736418,1457987523,2124445703,1475420045,1903103841,-1318888766,2005940293,-1927208897,-421985653,-328372991,-1994989173,-1396146686,-1800433661,-1514487249,-235956409,1420406307,-1506757963,-1065811800,1062690911,-1408288549,-521438383,1636683542,2095039994,-1355827787,-1493122823,-747249558,-1087213242,-202461263,-770435528,-113577318,-1741814607,1899622196,-979097022,2005392030,1283052736,693306651,-1891878172,-2046955834,820535409,-919259441,-1555097203,1016416144,-614836310,-141860217,1861857671,2093722523,-285961416,-1002249301,-1619545463,-1562196980,1511621885,-915844878,639558801,-678646472,1890842055,1640710499,242092945,-1448669005,96369544,1658290495,-442137957,1817095566,514877766,-1573731348,1440265431]},{"sector":4,"length":512,"data":[432376010,1183413741,2056379701,-294372423,1369991233,-708628062,-395518925,-589647724,1003317053,-1027975359,1333238478,278445258,300888726,-789826439,-1714871865,1325722535,1381361330,-769877071,1725560112,-1549608278,-1020593107,686143921,1062099868,1226124706,2091363149,-180615303,728322549,1190204353,-959291553,168785365,-1530656310,-1771781769,1517824763,663492425,-176305161,-1548169200,175519133,-1231785540,-1632486160,1990477267,-1606231446,646666958,1439754501,-1232423523,1121595760,-2134634741,-1781626857,-789805786,1196541449,913691651,389445453,1316406185,1343394914,-885207230,-1824284896,-330713137,713421806,1159731191,254258069,-1818756552,-1514353413,-623420078,1594446819,-80176019,934339242,282336690,-922225451,-162156716,2029779471,479878961,-117377401,261419415,-1403815360,-1826170116,146218786,1521964050,-956897021,-1977656951,-290648089,794717276,108384666,1140465220,2011690165,1800823309,-1359257623,-2044357663,1594902562,170887941,190303131,1253998431,-414146766,-433600744,67138915,-1428220571,-1171287100,-26753623,456567073,-2098426193,525139973,-261614927,1884449286,-45498015,-1963102683,-1698296341,1188075750,-1075850948,1061290107,318616352,-1082152107,-1163250543,1101637513,-367949760,-2106716852,822434228,571783221,-1120859636,1596196359,1737631014,150329083,1928114317,938586983,-419842010,1288938207,-168696122,-1025975965,141546616,1955689520,1846081933]},{"sector":5,"length":512,"data":[280068323,-1409442995,-496184088,2127996780,1702274133,624532597,-1671853861,-611297054,856672068,-584665255,-1289378942,-1699094323,-882655498,-1810854740,-2123341673,1497824122,53300795,1446081784,934813732,1879064364,-1263456358,-1705805871,-959257505,-1925793525,2059631940,1852940763,80986112,-1093595147,287418611,2070338636,-519221787,593959192,-677624377,-1912437341,8575398,-462359225,496146430,1567119738,1959015716,-934501306,-2059286324,1952334523,-360197888,2060081731,1829672317,57732764,-789179844,-1547066426,-1459959342,-1203734120,354330288,515561267,112373642,1494372968,-693684685,-1609018905,-692968079,870192239,-2064062941,-1719008501,652480948,1793111262,-1881850766,130030597,1612866119,-509449773,405862309,28511294,-393851686,-1291496902,1829965931,139049623,984257701,156870226,-200669079,-1293338738,253891826,-143849792,-2079277536,-1124542032,1169175370,-57382110,1374403180,1366872094,1654659492,1211435722,1122607513,-160892488,801324264,-243334898,-1317046355,-141281587,-1962060299,-1048610624,-1519223294,-456064784,894758416,912000915,121402820,-692165540,193729741,1021142944,825711698,-1995757807,1289122226,1585826943,1392776803,-2071673937,-886919344,-935099683,1350872707,-662027998,-118991364,1520575664,935561502,-1418059883,197186027,556665806,1209710260,1881277022,-472869778,-1132916835,436972742,1540212944,-562854960,-316106603,-326851534,-299081396]},{"sector":6,"length":512,"data":[-872053671,1869371461,1171265041,146500696,-1333045237,-1403507712,-330462091,56074113,-1257768439,2074823564,938622199,1207284861,1599183915,-345850890,1819709827,-663025215,286595706,456830313,729003531,1606122820,494155280,1842774702,-1529491858,1435966699,1785923454,-619527192,-2038611156,-1529651172,845447067,-1232679244,362687970,1798502242,1292942629,-2056451940,1548619438,130897038,-626756885,-1732464515,868134562,2071945338,1475397838,335081327,-581083687,889783870,1587707659,-1193256530,987695954,-1310511264,1730130631,983186668,636651553,1701811444,754580108,-824357615,2074866471,-1703051933,831954879,1542842907,297344717,-2105965668,1890428770,-1259722098,-2124272467,-1649026417,-2056603077,-1834304161,1587803516,472612415,-2045895892,-300933524,1464926152,-1183733779,1551736338,-373167894,-484147848,-580222413,-2106155702,-1428579955,569752728,-2146840003,-1954046229,-743869286,-1245734691,-418507090,1693528880,-791232491,1605359121,1487789984,-1159110568,1212398194,-1081256590,-1014310227,-1051002510,-1748376991,458915417,1340431743,1974170633,933961256,-434728502,2005530565,-232549459,492484093,-1623862164,715639871,766290331,588894,-818583129,1405658060,664667623,416799697,1843958127,1283862923,1574934773,-1503197968,302847130,-1551629891,-431558656,-1173443147,1108523066,1054362321,-628162848,-144623903,-1640795540,-1239196500,-1095310127,1754247104,573147639,691093098]},{"sector":7,"length":512,"data":[-1353594014,1731131775,2091563506,1848591449,-1332907337,123134877,799930564,2128283953,307983778,319988034,1008080925,946570473,1402588707,-979562503,829661852,-333786243,-315999957,1108311636,1887254997,-339793391,382410986,-343688584,-1617607121,-2133494406,2109901457,804710318,-1338225846,643813551,800199309,1228396486,-588920529,2088375038,1974323521,1288162342,-1500669352,-787238278,1346081667,-1319188405,728861123,1651589234,1487425582,-2061108964,1895079987,1255005110,-1941248760,348002478,1247062447,-826928224,-1064554150,-888829640,-492091648,-1386354964,-377314600,-146196952,-1372295742,-1795834017,-809844288,417449976,1829981468,1704047075,-1427647551,1450138988,1881898617,-896776048,-2110932233,1465305674,1109251473,986020141,-856728211,-1245135250,641837910,1718453919,153366366,1435566268,254029668,927733240,296639118,-802647875,-1271916432,-1505085081,1218462634,2086246183,-321793881,-1913072949,-1230079710,-1425467822,-62012746,2085011058,570418138,631304694,1434481360,-2005927990,-718835026,-2020142811,2004957857,1840726073,-1964986286,-647430798,-2057487659,891766389,-1291971701,312904691,138635756,-1959551521,-1858751177,-1037318157,-489959592,-1007273146,2071376949,-956237956,-697886333,-1078404038,-477629520,976037213,-1010853009,1363957464,-1455805978,-1531026337,-1069578140,722060339,-1010435623,376189454,1379462392,1445704513,1819171256,737264824,-1295251678,-162418472]},{"sector":8,"length":512,"data":[-2030140241,-1425296938,333268497,2034497537,-1224796635,1446444483,907993520,529026371,481341726,-1894087906,826067521,1542819829,-147105094,330672073,-1570137661,-799292883,366657862,1670254750,-1832164725,104729691,1673096779,1496398155,1635717486,-355523972,779642260,-229590733,784386771,2037002285,-850895205,-2047731781,-1991491810,-1674599170,1712696138,1281944953,-2086904370,857459821,1068454550,755358682,-344704346,1386865594,-308471242,-161241277,-1489050828,1458098565,1136310919,-1939318617,-1373495982,-99629492,-950371700,-2000649904,-879196395,1027282046,833046391,-573356049,1351505550,-686343753,757924484,705701344,-8843052,-395233936,-815586793,-1326782009,-1584321234,-1555218955,886404042,-1516529734,-1386689049,-1224062040,559635336,352220518,-1870077964,-988608410,-1418260759,-1697266530,1627915505,673049386,1441500075,1426923410,-1455006769,-936810641,1477090552,1947951984,-836325803,-1564102189,-1468043694,-426080741,-714436351,-1376425013,1240270760,-648656058,1346148043,-464006581,1777234390,1263317110,373011542,1746276587,1308167773,-652182138,-445837504,-994121695,-894387648,-1804452865,379468622,-290727320,-2126284573,1468927522,67507661,527345322,-275801944,-1839563167,-355344979,2067014000,349921532,1746319792,1481321439,-367802333,-1559992737,526969037,-39604534,-1328523794,-1900300161,1691472221,335296787,848377422,-1613963889,-704007551,-649531149,-163803836]},{"sector":9,"length":512,"data":[-367045073,384438490,511533903,-1071581660,2087498323,1023874194,-1427516085,1475019579,-1539123064,-166858058,-863431799,1783277103,-563500442,-1553508698,980597299,418053336,-906757658,1711500803,-1946993154,156532747,767864938,-394753062,-871604722,1158702091,-1206887245,551480835,-479390296,2113904282,-782418607,1149902780,-2009832481,-521232565,1920627881,-1183945858,-1007746095,1642322447,1209277911,-1319457484,-1707242553,2048455317,-2094112775,545058432,655585986,732912970,-1351405377,-447628771,-1558133597,1733518917,-1013135796,-583500004,320147628,1704249168,1953167855,233366909,-593956061,-158392109,1414467286,-1506141903,248674258,-936016739,1728534631,-415833920,-1739601867,2143338677,421897324,-1006607652,-2111267833,258999571,746004627,102686056,1060608336,219524620,-394912734,556470147,-1955151818,1423040423,-637276034,530581378,547952689,-846675614,1729941517,-300330946,160986008,1981255974,465915112,-485944065,-485547822,193732626,1086720214,-393408393,-941513075,805974427,-2068552571,-1790894658,-338743022,112846407,-1238735222,739853816,-114520320,252975793,-44946939,1388622891,1124045102,1439635337,-461146860,285699385,-981083161,-1827992961,-1602219339,-2138380672,1875879750,1520573233,-1487092387,1514024067,-1704310721,1671500026,-750042486,868333697,1249262596,190760260,363215448,-141587852,597066993,-1967328798,-214387464,-1323957728,-808075031,-1054811661]}]],[[{"sector":1,"length":512,"data":[-1998315331,-885684634,1919114591,80418813,-782783408,-1794505068,-2015402212,34378359,-796480674,1328033682,526342577,265022731,-1739283499,2024628104,408495433,-1195439106,388773210,-1671876833,-1214309598,-1343051971,1050389984,1335680483,1345236051,-2028109006,-1914347703,-2002820966,2115165363,1600284482,-1018037459,2019915315,-391172451,-111771448,908415452,1564489676,1178071385,809301513,-23216757,-1401532307,-917598783,745041160,1427115869,1716555602,-1634567344,1178013839,-547246921,1508030968,-1838073315,-399313277,-714917338,-2027512048,1154831120,-1955524911,205106206,92264040,1810273286,-1654476139,-1777394513,1490002509,-380814688,-304895458,-1749704471,-1564891000,-318632631,-1848353683,134519057,-1608112948,-1802944332,-17332730,637558179,-1358920052,2087319312,-1170013482,991164141,-2106135122,-305666435,-638548120,1708563298,1666036983,-527697448,1618480187,-1355555652,-1112963346,-553374254,-1920319480,-1488024134,1929504999,1007179440,-1750886800,-795470032,1524406631,-2143383421,63789778,1351677350,228453556,-278599813,-1575096972,1011736697,-1566821592,732854899,167975738,2000847044,-915283648,-1064107256,-1498417337,1112478553,810074907,1950614366,1335075607,1883277409,1258916874,543949773,-211776588,-1571855236,270311478,84414328,67709972,76234844,-1955571679,-1335150048,1980270631,1026142223,1526905522,-281984660,-140567981,-226314645,1356818596,-1160526148,2016121481]},{"sector":2,"length":512,"data":[1116932744,437977790,76523999,1377490119,930566299,898147569,-1872144412,-344636059,-991784693,1386190292,951624919,79835394,-228517759,457964936,1851512961,-960228158,-631244086,462405215,-840006703,886104199,-552018017,1341970739,-340132677,1281843661,1114234254,2096256926,252894836,2106001098,1279848993,675040019,-1608430907,-1958173821,865260531,1844971434,1436053919,1221180099,299859227,-2016187450,-745901944,1084398861,-698864242,323972182,-1195863714,1696690897,-133487277,-1231596737,-216069537,-450329865,-1997459129,-1098720235,1197176391,1976787939,1055910243,-1505147394,-1715834145,-1615963703,1432999669,-120993365,-10900959,-827369816,900736800,-1305841744,843253875,230862616,-807197479,-1646070836,813969727,953507900,-1985054403,-735851843,-604831908,62181374,-348840900,338088905,-683764471,-1423519443,688964836,204809133,1196408134,-270427834,-1046749572,-1135778188,-718121566,1299455209,1098388503,706454178,1615966830,452561789,485030389,-985420468,-502544666,-2034761332,1910316095,1444942034,1709888884,-27997464,-503265278,539240820,-502303864,149982765,-176800930,612203636,1676938432,-388746462,457617465,-332558913,2041968451,-1829356711,-236432879,-490646154,-1553010704,112054187,-949847445,235197238,-1758497321,554035841,1780838682,-1827445390,-1669518148,1860524259,1797837816,-2017934105,360737093,-2119712519,-1144914627,1631108899,252439363,-1323667704]},{"sector":3,"length":512,"data":[-693441591,-703289823,-618418166,-1152762822,-1777569843,1032045470,2092233060,87732526,-490182247,-853364024,-952371129,-37113929,1841934809,1930586308,-1346507983,1735756615,-1213308335,-1663513531,1508697882,-2069098150,-352494396,434028642,-812210745,-1735069339,1640932971,278850059,-1928396763,1419556083,-1688141728,1938782826,1036879789,-942771860,351566564,165297703,-1634598950,-1983145129,1714661597,641151102,1915738860,-146067538,1292319747,1205279025,348547505,-1618157974,1265404744,-141472391,862696768,-1300631386,-1736895351,-2003869328,258701899,-1009105717,-831942573,955748683,16284547,-112098830,-2145858863,404111705,171429426,-927869428,-1065556040,-1210064083,-1310334442,1089525255,1503301889,-49214089,-167976341,327804795,-1483737478,-2125781875,205720673,1895950980,1970536404,2045543285,-818821933,1333226041,-1325958898,-1748633698,1370091217,1133501982,-1518355254,668838860,-248343643,-427096016,1436389317,-2051806430,1298342406,-1962706474,253774159,1425997763,386023293,217088122,-799228954,-597656213,-1052476141,-563298735,-1347556855,-782274336,-958216787,-1243636146,464873251,-154412310,-1808671572,790224037,-389140239,-588342228,-559326827,-558041068,-451875757,-744071730,293320093,-810977606,-1433036359,-773201474,1605291952,-1216533790,-380431318,1403038245,1516729733,762187957,-1994207051,515711449,-147752024,1967191098,568882671,-1579696400,-1552111475,-382071899]},{"sector":4,"length":512,"data":[1354371828,1306480268,147115207,-748291919,1745354495,-226283304,134149794,1314190423,-1638180249,-209078622,1079147310,1603626282,-2019512107,1295729139,1772590804,1159484218,1796411513,568107005,-1595783553,-438336920,-2053353147,1926043621,1601680777,-491641383,-537808529,-149038350,-71009633,555708391,774531293,-362348677,1273360141,-1108421308,-1540298340,-1294464180,1333285298,-921702507,181825214,1025732640,1013626037,639455165,1486577693,-1578942112,1807327480,-270517418,-1226534074,1337169963,992152807,-868557122,-1443574314,-824191267,-2103014577,-1311534089,-1997651524,-1979543667,852537716,1248525633,-511711619,-1674578168,-1078716668,-2026763295,1875675428,-2093897840,161103897,44254338,-257533273,332119470,1985726321,32473822,830871311,-1593845124,1899375340,-874523819,-1382326247,-482020745,-1229480451,-93316918,738594698,-1059698541,-350690113,1123627506,1709830877,505670130,1920107860,-1328182669,-186767642,-1984148416,1236714513,-1050944762,399496674,-678499921,636175858,134090878,581465872,-1475175832,-567649503,-1496829283,-314733517,-837894675,2122106338,-1396386206,-2102826389,2145941634,-1886740556,1610072319,1611653374,753647851,1449897204,-1865352618,-494834167,569020463,432677208,43768291,15044603,81235880,1149965990,-759736847,-1316883712,1688293620,-1325066798,-339777329,-157644225,-603259194,1980017026,905535125,1966297699,-985077998,-1949673052,-1185321306]},{"sector":5,"length":512,"data":[247088778,-515516345,-844203998,710774281,-982552870,478807529,1817938463,-1179565920,446132345,-576663877,-225674475,-3836967,1016312593,194700058,984257082,396664822,515525755,-781684389,-1079519331,1988912489,-1032627304,427023597,-1001402950,1047514885,1411559198,964770221,1644099778,-1571151817,-1380028032,1607747143,-84512317,1982930635,-479257077,-2111054022,1429664096,-1135756055,-1378494643,1959302286,1906601472,-721008731,649290501,-1069700942,902144627,1610315406,-92898092,454720802,-960169763,-1281871383,-94669732,-798564079,1738821970,289466576,-1670614075,2015690644,-297779116,-1219241496,-414925758,-1421053218,-2132572228,-467634791,1335260377,-1546458440,-1911190641,1526811572,-1328259444,703348668,-530500866,-522248355,659958053,399373851,804036933,2102912526,-1620708155,1589963250,1826389266,1532708203,-1967524202,-1223607804,-1631460664,1576079477,-929344300,266164652,-918872785,-710511775,1821245846,-2127531413,1826027098,1909009195,-776820350,1272756413,2069263671,1908798788,-1549779203,-983851204,518294803,373371340,1599825890,-1688188302,1350536426,-2043442692,-1846411057,1348121823,783583840,1318594495,-114270162,1205062560,-147479453,-376866483,-1242115708,-1093309547,-1021436138,-1728523794,471877308,559544725,2145696834,133294679,-157182980,-105706659,2028197287,1116712330,1031556791,137942879,847200738,2101607653,-1845429671,-1700302088,1528792075,125414007]},{"sector":6,"length":512,"data":[1355619671,-1733576239,-620428944,-1239788920,-2025638750,830892654,1255994521,572401749,-1474939051,299702295,1833689257,-57716366,-202604571,1912105002,1592054789,-610593282,-495384321,-209600409,386850352,-1229218704,-1259961829,-1529605359,-1150620,517373232,-1776902254,1411897257,-1992994852,860188281,-1380912772,1958565598,385139018,-1820625522,-88627664,-1719493272,165601576,-1061757849,1837877206,260826862,2010818437,1170351626,-297432658,-2140829978,-1454728445,-2005296953,1337493316,798110137,-1237544561,392038790,-1120176709,1403985326,-300408006,-1489133866,-1982952026,233762700,-1972733649,1582997156,-2083695990,-675028386,1800729284,-1199587084,-181764623,-683410934,-396928575,863358394,-580164138,-345261318,-1493739442,1521398046,1474732909,-1422535613,1387109565,-1770309265,33770736,-1287793048,34773038,1895976482,723411867,1751111127,2125380901,-815346203,-441282805,-2121920442,-714840597,850591950,1617223929,-1433476987,-1428860978,218820480,-452351657,-966495701,1183782491,130906716,1244661709,-1116462906,1407395282,1425245215,188175051,36595596,-892021084,354041583,-420847655,389265809,1945575053,-29157505,531151105,-696431869,-1205759288,-1047907215,-944802426,-58741141,-1089155473,-1984078854,-1102720863,-596877632,563482671,-276329165,1841090161,-547102729,-95021105,-523474808,623069117,160220877,-1814814773,1687760875,-1291742757,-82501967,1631055213,1764386626]},{"sector":7,"length":512,"data":[890915958,737692797,-1414576960,1041030778,168169252,-322936620,-1470053689,1946759020,-692970975,-877635016,-866789127,-480006766,868743893,-290821170,520137592,-1599199905,1821841745,-881709727,229550426,1554728351,-1708060779,-841551093,-1319267061,-215762381,-1703331449,485332232,-1794297159,-1179729923,-372209622,429487139,1671499677,-927283097,423287120,-251244916,2043016893,-109171544,-1681481345,95803474,763262813,1613706062,1449575350,-1070410225,1840099403,1254472171,-189124346,-406694024,-1031164702,856843973,-101523922,-1249642211,1157027698,-1481661721,455259546,1922122393,-1223456191,-1978004208,-1792296718,-1893977798,830426374,1897365514,-123606686,-1456271903,2133816572,2142507997,-537211258,1179421359,-58916221,818957322,1603656012,1974683931,42037053,1518469077,-1081255220,-1344711602,-1784905902,1169980786,-1723164267,586347868,-229757130,-466668492,1851167129,-705887431,-1958501434,-1048212342,1698056165,-662351033,-1416435009,-573189675,-793043375,2081970058,895079532,1660720619,-2006781224,-1412125917,1307782804,-1764180323,782336743,-1756182808,-447403689,735800394,331913183,-292736907,650209264,-16127366,-283464976,-1415327060,-154283635,-50897624,1189851418,-1247281737,-1148509711,-1636321079,-1856586556,1920034275,-1134150217,-1608107996,-1540031287,1382253557,-2136326849,1425313153,-89411647,1700725073,-1447718778,-1192073226,656633549,31390446,-962441483,-1442204187]},{"sector":8,"length":512,"data":[-114505371,-1702404247,1301708225,-1763773034,1380397813,-1228712652,1534392432,359874841,-1764917035,853256805,607941397,-1190477291,-1006586912,2085631175,1925687728,-1889498476,-190030908,206873394,-1367471685,-1524925486,-257969734,-1171102396,1013730789,307677077,-48302796,-1935476507,-790454312,-372688919,563459854,1995464232,-1994840022,-440789921,-1404179835,-911748704,-889748672,-1215235439,385762557,1457403062,-433478008,715953311,152631422,-978521899,1572423157,-1609190524,201514773,488578135,-1404032798,363393618,-1006704188,787375446,236741992,1895219526,-1008426067,1323705693,-492189791,1775510187,359299910,-1023149142,-2143485021,-1067561649,1521547714,-430588315,1360415384,-112457683,-95310209,-6512419,1447843744,695347968,337914414,-1221454338,-1673957289,827927876,-1635803537,-411037905,1197612695,510407799,-601638448,2010415915,-1872591293,1987283322,-2144218402,-286285878,1265257190,-1142357811,-2141027071,94150686,-1967876848,1252747943,-542045345,-431580027,-2071202238,1324072577,178341739,169887043,1163895441,-987929942,259063718,1994695026,711921627,-946436764,1476312183,993948857,-1764254417,1867137991,543224019,-231261056,485768854,-1014771961,-804517225,1097849859,-19873908,-507250200,-32497681,1164851518,-1155655268,-1419592957,-536757817,-1049745916,-55767720,-998782678,-1934759418,1322340103,-295722857,1088782895,646063694,1882702024,-1170280932,-637508807]},{"sector":9,"length":512,"data":[1591767219,277150066,-800645188,-1604066589,-882298400,-577821071,-566818172,1153025950,1097816972,1748978147,-2118572043,-816930421,521270056,148753638,1924393005,1004664180,-568420538,552254010,-2131241859,1614359477,1664970081,-518151231,1661801767,-374936524,1992173561,-1545358300,109368176,1682634070,-1301297921,855211308,-1871684038,1583955004,-830677008,1216254359,-202061623,-815173845,818457122,-672007619,676424191,-1428773567,1523919742,335131047,1454095228,1805478766,-1229165805,-1135140753,1283512977,-535126773,521481495,881628531,2147009164,-662511678,-1147202282,-276133873,-767529610,406772549,103879951,230782854,1977075201,57693420,-1570287359,-2012806571,1913957256,527930473,540993114,-465625851,1637437878,-703893248,639646240,-2144228091,-1792058870,559965770,-178141134,2132091917,-673853418,-149623257,-300431704,-1534827499,-235601950,1581982920,-634669446,1612319279,1109614641,-504464013,1906332792,52146658,-295893378,281688820,1711759285,1482416846,781227222,-185347753,1940075214,2069363377,-41472305,1634809657,84895199,-1029775116,-1185236285,-2101497312,-22033083,-870719495,-33801201,-450643644,1384048958,1585692165,-849940859,-607935204,-726357766,-629097183,3474109,-1363960367,1453448838,1520534022,1220672561,1750624197,1411020120,1550019452,12606192,-773836503,-2058292757,-1539099220,-1370737188,548414919,1125503391,-1280018820,-1529713962,396425884]}],[{"sector":1,"length":512,"data":[-1604876208,362809078,1756963011,-1439506469,531312891,-1251602308,-389865372,-1744333825,-616530219,-2132999866,531824839,-383790384,990005312,2039652636,697046437,-16588001,-2006700223,58418263,-252656270,1439310472,-1945685440,374412823,395056518,837939598,-912775074,893579663,-793635500,1731028802,927656519,-800887272,-2031246538,1734917368,1506937697,-1454838885,-2063418353,464846900,939051270,-1163217541,529625743,2019062408,694864416,672195716,-58660437,889398400,-982827492,-1949543893,-2056507822,-1963966607,-1237292788,1435901467,-502904700,1674951741,1461999722,1715342800,-1051369872,377512543,375660090,-2006399820,-1440424415,-2007301380,1342396816,-1647287928,-928435969,1168251093,1638007626,85034249,1933079461,-959924523,1173744164,-1594343293,2019694849,-962337384,1829174859,1387183159,-2119718069,1864455898,-1667186854,-1442535165,715500153,-364051137,665747013,-700952566,-974984612,1662493278,205688651,-1896856044,-1942866709,-252083235,2080986733,-1610755360,-1116539917,-1078066257,975006211,-1352832866,404568917,1714359787,1559596969,-1104267220,1621728153,1064475324,-461421606,-1196459053,521565624,-788417513,1840606732,1369416453,-212820450,78352778,1332606470,429568037,-1615846054,2025889831,247096662,241687556,512172669,1926518316,-909089093,2051985181,-1371223790,-2079410278,-196393658,-1268209293,189421892,-351105579,231355968,-1629823920,-508472080,-462931113]},{"sector":2,"length":512,"data":[-1670475421,296877982,1049164943,-1525813392,711445649,-362924173,669832633,1872641908,243191444,-1745253417,2019909519,1520961425,1483546475,459074801,-283803528,-1948803269,-486674273,-2033083091,2101303027,-693507992,-2124950828,-708302203,1969002824,117340710,-269676771,-1091593593,-1295935762,-1235131019,331854060,1670209880,-971774763,1997414463,-1008909867,1039360603,-2098723357,-595822360,-2071512769,-958789746,-497112853,-777679941,-1025114288,2010454639,-1091557533,-1874981725,-1702166417,1139192570,-1883086082,1082607001,-1363436689,-998253247,1116439981,2105829375,126514027,-43063383,255255984,1306766828,709089253,1913393485,-2083677257,954061696,1118124254,-36705977,1622142281,-477343503,-933463935,16582077,1342612686,41673539,-904389811,-599991405,305109946,96231140,1499839642,-866556489,644640017,388928252,-1183908413,1247519229,-459019945,1926953279,1202929104,919173567,-742782345,958972263,-279998648,-207385617,511107977,-623732817,-713445310,1047815713,492424307,-1076982342,-956373219,-866852670,1771876776,-83250919,1018263977,-269787965,-1386068045,-1752376082,-1441073093,2128718028,779749241,847274984,708242483,326117504,711400603,1715432496,1347690669,1659001449,395756908,-1215403496,353292535,1616445693,2030844104,-29040772,-1752818193,-1189314516,-852747106,-1847445188,1394444257,-111264848,-1363120675,-2092266258,-378550097,731691723,-1806714118,-1939312910]},{"sector":3,"length":512,"data":[1741290758,-774921037,-2051459400,1302388277,1587668312,-808515126,1887212652,1428391072,-256407693,-762599626,1061910529,-933859499,553618516,-932719992,-1100218208,-200691325,-787839844,336268380,1831310,-156262339,-1582506131,-1175251629,-1353496856,1693660913,-2140274262,-1361880488,-120473503,-755342624,347114831,-1959821239,-26303686,-779196595,-1576404279,-108212261,-1867378521,-710546345,831703990,-584349713,-1802889729,943037630,935873201,1471400414,-1430862915,-904565856,2104217768,2062511849,-408624727,-975622968,2129706784,1830648642,-374384450,-1871524533,-1778133011,-504670929,-760909509,-186453193,-982931547,-1894307080,1478212606,949012031,131938845,1815545411,-914137094,321972586,465948220,586292512,345952878,-190960617,-1428457314,-708946637,-1397239126,-120242319,-314707841,-1814226909,689541170,1677552975,887634426,-220830165,-151056839,-145338709,-2093600255,1338416695,1403953493,-1797865835,-2116380926,1168765006,-1454436864,-1857396276,-1447414651,-1450640821,1674345829,911907696,-1448612365,-77833004,1759921298,325384332,811271700,1918733524,2075192378,1902580783,-215326782,1571421627,720796188,1074750894,-1567782227,497240272,-1215164313,-205234903,-1566809477,-1159442594,-119073818,-1574295314,-839653978,-1426687305,-869839911,246659778,-1391629665,2038493830,-237937687,298388578,-158961189,-1073489561,-1233470051,564055919,-28233756,260002004,272309312,1105946240]},{"sector":4,"length":512,"data":[-1880884312,-1878690075,1808505860,-2144635518,-327216380,381896773,1854770045,32089597,1502601361,2025676042,915831766,34609766,-1090285596,1785713987,1787901293,-2079869742,-2108915906,1019170233,8132309,-1647050505,-1024926601,262190080,842777608,-1093032353,1067413757,797126115,-1615233206,-1792121703,-1143534600,-437957689,1790859004,-1141764949,1419560003,1375152234,-134937911,-182460951,711197663,-645128414,800379347,-2069322388,-1999981423,234773882,1217858682,1038799394,-540114669,1230660700,977297726,-773666886,-1577167745,181164286,1747691610,1590551526,-2135670651,-324423597,1267475036,1877402541,293395448,938722534,1585452726,-291908167,1588418880,1852385677,-188852882,-855845826,-1067475214,1195671711,215981635,1633134425,-2069725987,-1902397023,-970523489,1468363771,-1612417644,-417881092,1434210940,-1084219776,-1079924141,-1732497115,-516426569,-586724123,-1128871561,1129500148,1325440804,1550582603,1762356978,-692003746,-1295868547,-279010961,-210891752,1402342818,399896581,-2073152097,-47614537,-1400662860,-432007943,969890566,-851429678,765381497,-1877613364,-680186475,-1742778484,-1218240705,321485421,-1477534005,-1576963508,-1538897403,80083807,-1869837916,1745857137,-1439703410,-484358202,1222330864,-1717052882,138355606,-60772400,-1245808306,1166030617,-388480850,-456237613,-1691288093,1725026425,2101089047,1844664801,-1687446866,1241143820,500642484,1949798504,-1427388785]},{"sector":5,"length":512,"data":[-1951199854,1969182770,-193321398,-2130784662,-412107896,-804110676,411366756,-395463315,-2008944200,188751864,1469683027,-98919446,-630772632,1362618054,112175232,14281583,-1502421777,1597556451,1685069176,-2087611188,1430828005,-782698368,-210491803,774511811,604196919,1076242690,-1638892516,822590775,-1193333471,1914099988,-1502971949,1726329114,-735897750,-655698478,368728738,-835108372,-766182231,-691672591,902895504,810635477,-1815861284,381588377,-1566930856,330954297,438121721,-1443210617,968765553,1546658674,1800239642,-1272071493,-1838485395,-1398594499,579363306,-1795597965,-1733565205,-73436656,-923040349,181663536,22222839,518141920,613898753,-1396474721,-1875057921,-415120136,669403034,120105882,-87785363,1952430247,-69171543,-1915335020,339118892,-1614563388,1851689877,489236991,2056909956,106585578,-641841608,352273497,1622083906,-1510115458,1761740372,1133968823,493941151,-252223409,1578833722,1174330558,-1449590766,-1310892428,737741403,833252293,-4676328,671878935,-1615446372,-1846010436,-1752127785,-1827084463,-2125055532,1823335552,41739833,69303735,-1858110702,1072534315,-1515477615,-817604331,1468544341,-178539841,-1566882986,-1478890251,-220440119,16422260,-1311858171,-1480115376,103783158,-1823593351,-780256903,1256579079,-508336289,800004733,-754201036,1906395064,-821048668,1737287455,-386570235,-1463110409,242238713,-1947659911,-1757077020,-1811054297]},{"sector":6,"length":512,"data":[-234531595,1183859058,1896039898,456951346,860918412,-101623553,-298498422,1040959483,803238115,-1056487048,1246295271,21045590,1981799132,-1127107037,1789707736,141771392,-233597190,-47253842,-1937351360,992829217,402579263,277205384,-2001824326,-842030630,847778037,-2099798455,-1439692160,-1378185876,1401627207,1968956124,1197845755,-2137242601,-1429828506,-1905550712,-1075090068,601484194,10275069,-1304513616,-1423404813,1730237423,551830177,-87169522,-1768144727,1036286750,127589479,700741462,41321626,1783393848,1253955834,-1319583089,117773076,1470672508,1976406123,-347404678,-479118630,-758687115,284748250,-2024342323,794533207,-1391967502,-1813071821,-1411417437,-1190482374,2012544765,737202123,1652724965,116826969,-1423966689,-1213112376,-1790489771,457063143,-1751276664,-1278732757,565443476,-1978178500,-311108476,-62484852,2061251312,-201487489,-1209182753,-2017705361,545471545,252321877,1809130732,883353429,-1018033572,-2076144788,-1894188025,917030369,-903708639,-1174278548,1037591623,-908535152,-1084343217,-1673336670,1537670574,-2079886239,-1342904462,-1019486268,-1075869233,898492937,-2030550466,268101611,-1786017233,474930909,-1867829668,1590284616,-1054524961,-433318797,-1265763032,802844170,747989304,305835302,-907690135,1026596078,-737734422,832701310,-1178326208,-521778551,-2122907540,-1683491282,408442526,-1380145612,835495738,-2088216946,874569652,1682092550,-1287412850]},{"sector":7,"length":512,"data":[-1384893013,1371892468,-1028300693,954178076,-571778411,12993082,-1438149587,346017634,839455936,-638932733,1615338854,1484104584,689261464,142390781,-1112538129,-352320595,1467143806,-2147136548,-442653294,-1166074448,-782684189,1289844305,28944015,-326310656,91255355,-1730439552,-2049277041,-1100740607,-805173428,217088018,-1480589203,1298580256,654314331,83362039,458281063,-779612975,-1294943585,1937026088,1917772007,-963391331,-442497096,1371538202,-88289247,230915037,-1839418368,828451459,1026772257,-264407477,-1062047380,2121612718,-235627005,-1819088464,2048722206,-1882130983,960187598,-431313519,1431381030,1615546770,1497654379,705138733,56175150,-338948352,127144619,715488,-990960761,518220673,638293632,-849743173,2097156152,929461850,2121453568,847471682,458096764,-2145448829,1294747697,2109101304,-606182152,-442540885,-1669728987,-1238479020,-574172642,896032775,-1446391627,225150433,277643118,-289663912,-377028078,-754637104,700514365,-546412675,810831494,-1586530918,-1689040933,2078277421,-199096654,1732038662,-1023394355,-1811979107,629168127,-83931782,1740600039,-1344684085,-1446553113,-479488494,-1203587860,544219460,-1897463077,-1889292963,-1094422706,-1731764285,-416189276,-1528801089,-152230359,552038214,1386835375,-1599718113,-717499817,218888620,655426478,2097194226,-945487946,-289053347,-1320369589,1730490420,123062642,-378958218,-224489683,1007739741]},{"sector":8,"length":512,"data":[-821478389,-1523292894,-1158208175,-573302229,-637705244,-981992605,-775681385,577494521,1721138510,-592205460,222449186,1361766195,829569304,-2147419224,-300322020,-1375885311,-1874657277,7024223,1422418016,347023,-1557135273,1889381366,501006783,-968219913,1806165,-713045712,856035731,446219954,-1714138952,963150288,-1204039865,-1073342651,835504892,2067274598,134226393,-2085817365,2099744417,418417419,2112401041,1101674320,2098636815,1727953804,-1629104622,-862619839,1138010249,-2112428370,531441540,1048491868,372292221,1896187114,-571136094,-1293353891,-269868919,-771322932,13041857,14048344,-1661517888,-1526224757,712704,-503082187,-1810645568,-1748190800,-1920593498,1643481931,-1361376927,-1543481419,546832643,277404083,1633372092,3193295,-170275133,-797811792,-810402535,-194501087,-152213042,1569869624,1522113525,560631547,2132557108,2089631379,-770863612,1675851465,495936993,1416169947,293326329,2073234263,-1960512453,-2015108407,1295151425,-1318433972,834444564,528401771,1742938429,1416115997,1746602324,-300567383,1538297923,872975386,-1438699517,826302994,880832217,914554991,-361178357,-750472186,1091562582,-2115416270,511951739,-1650200972,2144184429,1998934042,740830626,-2046193075,1771824213,154005199,-1646364014,1721676141,2119998545,-1412945743,-622788704,173695393,-977265981,-1966112700,-740714495,1350392063,-431019755,-1346121275,1852153674,1074949063]},{"sector":9,"length":512,"data":[2074224800,-1777454528,-1492350573,-1655106585,1618998952,-950421191,-1282325627,-478064601,253415916,1891460602,1547318189,-1715632059,-1214029622,-669815280,-880532678,1309396875,712082839,-1157127470,-1767286632,-961696804,-4561244,701526284,1911142466,2130123898,668490328,1882080405,1501629084,-1989791514,-483922290,-289375926,404049462,9784397,1807751768,1769912066,626483645,-863184351,-1271922265,-34662428,-1515117045,861329505,240576270,-744508266,1493566208,1443132819,1018430137,1330743738,-1456270362,-1383346819,1694087075,-1369013389,269866075,-1924763720,-1187409581,-1797153286,1072197192,-1209413405,-1602234120,-501550336,-1037926069,389825402,884285992,1812478244,-734921186,410989890,1217132943,323719734,842893318,-1220022799,932501978,1266695566,657733132,-809464140,-678623486,-940377175,-964140066,-107812250,-1515462595,146484503,-178691909,1547965434,2095169124,-1254090790,-584948861,-1717075472,1402618698,-1679613587,664301279,-579386132,-2004447093,578973227,725280240,951968616,1069136705,-214111665,-114740428,-535059980,205777349,1139407050,1177674500,-834981133,-472865283,-1735929345,1706509285,-1405544218,-40545457,-286595973,-2019168309,-349405546,-100041227,-417072271,726536096,-1088705359,-372567188,1067955911,95960737,-1039597180,-2022427851,1317522106,-1430277458,584370214,392228304,510654996,-605668666,806382402,-216550822,506463225,697401167,898868646]}]],[[{"sector":1,"length":512,"data":[1580658868,-1118080638,-2090715514,-1380526917,149613567,958048039,628677642,109564595,-987115436,-1500898527,570328907,880377879,1228369338,1922859303,1700488095,-1943210967,-1361799608,-711372956,-626817070,719938902,-731491367,-140431893,2053930160,1746248906,-1887021592,-717604657,1377840102,-1811897302,1118747458,-1580055250,394470527,871858920,-1538706464,-180266028,1571740622,-58356995,-353555214,801948355,1734463100,-298744945,1654995170,120559610,127333676,-1253910365,-778447422,-2098611579,-497115880,1606025961,381768569,127313819,-39030688,619381205,162855693,1690501319,2105503813,1933656573,-429000245,1303562823,-1923625886,-142287712,2100511094,-1763166128,-665063167,-646570795,-652484551,-1000574853,-1296596295,458441987,-1196182568,-832169549,-1453240729,1355456740,-1003021011,1737803639,-550625841,743620646,1135728595,-1334899581,1610357443,1339517295,-270861423,1800773945,-1767471031,343449862,-1252609774,336206973,-914377229,888350127,587026264,-1739608655,1269231615,841789230,-480212043,-41062458,285616255,230979540,967665324,1118601323,-892855630,1509906010,935159515,616891205,2056820390,1854642875,-138480264,-899818843,695683447,-1759762956,-374711250,-485031406,987553714,574063051,-1057492869,1643015290,601982886,-310125279,-1545846457,516790033,-167939994,-1983979080,1708198176,-1243843002,1084466377,-104232298,826466674,2093866735,2097147952,-354947980]},{"sector":2,"length":512,"data":[-435526464,-1385129020,920567921,-1029269049,-1846394784,-1504526181,1117201331,305461206,1139386838,531657747,-1556475638,-1641003608,-105816919,-1088266500,794104146,-841327277,1737159283,-1435583429,-185224234,283352814,1516143970,1586959079,-543259821,-667757347,-544001731,-477539436,-1163045668,-2139304171,-1386944719,-435522063,453414757,-1499723890,1955081429,497982701,940163558,612069664,1144741350,-1402583871,-152944537,-2113164216,-935066668,821388236,-749201948,-2033321113,1634381230,-2020151000,2127339307,1672311962,-791039957,-972993278,-201165982,-1011209476,488642989,1859953327,-914945982,1175966199,786884522,-1138368487,-1559947228,1230145397,2084873087,-1765760232,434476324,1923843837,2052420301,1294625412,-996502685,-137225338,1676397671,-655797044,1809175615,-874599573,1275341854,-839307422,940232331,1399300288,-331122348,-2123842363,537120933,474022066,1337430418,581050040,107714077,-686387482,2056221708,199896203,1100262325,-990212008,331866707,-1935660470,1820071251,1275495146,161911588,386764888,-1456322426,781286878,43910439,1229058470,1028885799,-1572300020,1728312808,1761495789,-1044770822,-1361065868,505521414,1810131101,59958290,1142122199,-1036628483,719903780,-1138848900,-192517349,-1075144274,1944135651,-759128951,1431113610,-1235953879,320521112,910938432,-1578992326,-376593947,100025731,1624593717,-1573371894,-1483006006,1014182303,326712663,236474624]},{"sector":3,"length":512,"data":[849920188,-1805954889,220425042,-2146023439,-1070609730,1548081862,-190087061,490457766,2101036242,469362762,104869328,-1933020721,-1479509917,-1139862517,-381187032,91973452,201456143,-2129177930,652609809,-1413946638,-1148326031,1911135106,1812526280,-1973915137,1477572235,1712365629,988594554,-1751321890,1284401516,297368732,-1182664952,660139544,-929468643,234302946,-184590569,1224642943,-847193546,-981224563,-173503056,1065207304,2020081192,1978624658,-1234724832,-1698941451,1994779063,-1928085349,-891581257,-1393258370,1734520857,-1196317063,-1894917179,-969350286,-1225173921,-1112257159,-1305516714,-1912752008,799560001,-2067421782,2125825,-1171926260,-1485606140,1651672046,2098511128,-1064338412,-1656074563,-261353974,-436738485,-895496201,-686956097,518164379,-1000786677,1731289821,521306312,-211987835,-1886021056,-1716220606,1150580779,-1253495226,-177790948,-873430017,-392768120,-1690530990,457507010,151677450,1108626826,-1236551066,767961508,-1339245116,-1583947550,-210140078,826436426,1090428592,437177040,338087272,807279648,470665810,-544763630,273102807,1785406106,-127720444,1825493301,1696512078,-815983795,-1149330533,1295600867,1908907536,905881925,1243501813,1142957160,347037,-113678990,-348518091,1409710712,-1085501474,1755209514,-1496614718,1669887113,337247537,-58313241,1432938723,-960196562,391575831,1105170351,1057824358,650433582,1280113672,-1625866537,1481845580]},{"sector":4,"length":512,"data":[2042811152,276838099,1328536403,896115580,2113729397,877458221,-269093716,1107715031,-948336330,-923648934,1149331520,-620093376,24323070,1802531932,772201345,2080553036,-1338748445,-390919710,-1176925177,1289554734,-955281907,-1498362544,389500510,-1885663025,740925132,-17784291,1337079250,-909139885,-1512873344,1517065617,1858460827,1457169435,-853832351,-1759391109,489092438,1937663993,947516871,-1678438390,-1498642096,1329187002,-1484489517,864198759,1021760213,-1006632419,-1983420566,-373079488,389366360,-191876624,-418484175,394323108,506709585,-187229921,788783033,1325769464,481692564,-131584040,-1913613900,1864327111,763552327,-1820584066,-1091366344,583091959,1899009997,-949912553,2097157915,-720318265,2089560316,937430305,-1715598453,2034956334,-1779802692,-1642536034,-1347882314,-1012455785,433194110,-1048937874,-223495786,1269657832,98775222,-1115926208,99584864,-982334625,-706431442,-478090282,-1837233238,42930187,-1106531616,2051664244,-167721822,12217568,1544434040,1472014769,155940371,-2020474406,453037261,-1242037780,763467406,-158014073,-1785662703,1900621614,1194574803,1277718835,470252498,1989151876,30454130,2027037369,-547544355,1864336100,-462671348,-482062221,-1069533233,-1144158114,1040608110,1076673633,2075693984,601339841,-2082235409,-163600139,517404851,1363654085,58593845,231008251,-944704325,-738830195,126934752,614621345,60616524,-131108419]},{"sector":5,"length":512,"data":[1006645058,1980177516,-1814960371,-67403549,177304290,-276633440,-1062108475,1396357634,1472297452,-2131386348,268301335,-832298936,-1061558147,2081744003,-1928706541,-164742241,52576056,-1175435869,-330987007,-626887858,183180806,-460357580,-1691362765,1334971108,-1641281053,-2096251194,-1396353504,1839078420,-275935298,-2063899004,-1799484474,-910752497,16539959,2107256389,27707280,-343602811,6389829,1945539705,-598785381,195454887,1478507193,-373971451,671893019,855011853,796934036,310940031,937980728,1524914786,1522760391,1851131561,984419337,186977700,808157927,-1373701930,510155980,1537720682,15582649,1726438080,-1007237622,518902256,1634698630,1292656550,947656831,1036385674,1764431832,-267915210,990673809,1343539594,-191811221,-481407164,1234083732,1127442502,-1209112582,-843379273,147666147,-966848326,1898486874,1404456614,-1049999689,-1247561005,-478976283,1770694079,-227849276,-1544915126,1062828976,20716137,565025198,259390461,267062400,-1523375660,220598932,1134906449,-1126554076,629782838,647489899,-1822775669,1916110979,1204672759,225837286,1800653235,-709761338,998419059,1060924017,-1842862698,1093306358,-1739597003,1510590540,-1603509767,-705622817,-1061428877,-844345966,1439531013,407995066,1247569006,-1711903121,-1049167967,1438775063,-2134751938,-2018553036,-1302696615,-2093496790,2146868035,1937847626,-457535301,-1592012019,529044203,-1077040610,-602738657]},{"sector":6,"length":512,"data":[-1321764262,813199214,-558696698,-2098713507,2045197551,1022224801,-415969505,350763321,-234922675,-1939086024,-341238705,-1024859239,1690709396,146344389,-988503688,696921336,-1407530903,-393243829,-1122093930,-645280617,2051907614,94255311,-208817148,484612140,642708784,-1479945866,1679078923,910112256,-809813832,1419777971,-1502057320,-33620097,1562543402,1043767293,-77212337,-1870730687,1471050123,-986181624,-1535915180,1257368563,-604468026,1105509309,798145541,-2091136000,-1231697828,-2023528186,-523376300,621871565,157036481,-1124580293,230761740,1515994,695345182,-117108376,1840603087,794722050,-623453580,-991976292,1579415942,1335872152,204884314,1443561032,-13765260,-1524138652,-436198692,1915865708,1479370371,673751204,188251980,300892166,-919993153,307059372,-1702153650,-1996743838,1221007291,-1112089727,353551518,-1525882017,623342748,-1244847274,550791967,1092436133,1239576969,1204801127,-1835446820,1071846035,850467357,-498479550,-246291516,1259743228,1407361616,-257394274,-807176280,1547510948,-1638906071,1386235585,1171984370,-1587542224,-1042505348,1777696783,-1816879637,-925105943,-775187762,-1368967219,1542456319,-321391753,879690591,-1221659244,1050262005,672104712,1078991144,-204451815,-683304920,-27896210,-1119581191,1590034077,651803100,1381120377,940196718,99403234,1063456661,592242563,-1636778863,-1675972415,1487442791,618662556,1485817639,948703865]},{"sector":7,"length":512,"data":[1654804775,-409726556,890935768,-697703112,463063507,-91283551,2043664274,1614450302,1150453364,1069698673,-282582090,698634534,593568737,-1818332590,396152568,1066099274,2051565378,-2003163438,-1382011292,-136728284,473500262,-383833582,-1540408816,1361681556,605346801,-1322872633,111296047,302786855,1227307190,1095080111,-909176952,1172957433,-1982997211,1151647757,371115837,1896846548,1812816842,1021736452,-1793243257,-998645262,561625038,-1264894812,1326574093,-1482543262,830504164,668599380,-2115880505,-806972476,-192551113,-1485501150,2060851129,740524370,-523254373,1365926373,-945268675,-1122927230,-1331544484,16974845,-148383279,-2112348446,434450240,1937191882,2051593186,-224362233,-95904747,-466251951,-1813708145,-121306342,79961778,1929772490,692700729,-2121963137,-1934777988,-2016975936,378766843,1840262312,68579410,-1578841833,855414814,129836177,1237396570,-1069572550,1111714891,1325248103,-1443652134,1106419614,1825515778,-1709243933,1140031639,-1276478843,1851711608,-59207686,-2041491669,-254863342,-501758060,-2034071303,-1466133453,-618990649,-1807288176,365526032,1396302182,100735390,1023149011,183351613,1096936466,-329371258,-264812991,-1598680732,-807809484,-234796892,-987165457,-1885545502,2122514384,1634198958,1897866382,812188574,1557137340,794732705,1632227321,1781579073,-467034464,1224294684,822617008,569172528,1020213304,93482768,149086860,-1973642086]},{"sector":8,"length":512,"data":[-636487629,687467303,-2114556344,-181918851,-1664140829,21398131,-446268958,1729792204,-470583146,-1718830725,-314750007,1060818901,-109805953,-1302873243,-545469701,1374751712,1071804499,1992048950,-606740747,-1398834557,1054384182,1272482646,-2127650636,-202428611,1906033952,639968673,969506825,350391617,4970880,2074148693,-2073487542,-1629962486,-2012141136,225017321,1606283832,-806930372,-793540645,-196009198,-694633897,-31736512,-339339388,197840124,-956409364,-861836436,267211800,-366663918,398847729,868898489,-166395351,-288857927,858545059,1916576336,-15166193,1871085404,1937885763,-40504320,-1714887165,1961121430,1667466658,1707652736,-2109777519,1020174661,-1029746413,196274156,-770743710,589428232,-388054663,1407609965,-999526966,-258755579,-2021653542,-1916820850,2088861901,701795904,-880741860,-1730558837,-276606149,-255874744,-418563917,358492645,1111153646,-369603901,94813823,-2054322117,1489511124,1377328992,1596376416,-2079929105,1996081235,-118254501,-1044516384,1409829320,-413125245,193209799,1904168198,-1730903385,-1801657220,471679011,1114691443,-450426055,-1863702661,1862980497,972780292,-373518084,-943512178,1409959226,-285313476,1457583732,13717870,-2062091751,1281405024,31434992,-1931481077,519986382,1941484180,-687097384,-1615140089,-2045656128,150240929,-501346706,1761321452,-2131181613,-211115293,1283015150,111756473,-1133890401,431587235,289748044]},{"sector":9,"length":512,"data":[-286024191,1587463441,-886072148,507678215,698920326,1233781442,-1537215873,1330775010,-984585145,1681809728,-1340553842,1075146782,-1345703999,-641325596,-403691537,1613769046,1274829410,-941866471,-2102385933,2067513427,621358086,-2029435636,1330189543,658534510,1241054137,-1767559077,-1580709000,630279576,-1347943461,1108307191,1059957786,-1537924121,-550847993,906426435,859897428,-309853861,-1909076433,-1045016974,510680930,283647488,1647059974,1260939261,472523404,-1033652670,1220314142,252470048,-919830090,-97285774,-855908237,1894950998,116563092,-16645619,-891799355,1291320774,412712716,1633990788,-1336145499,-1832116692,978634661,955088940,1679497167,-862652169,791619124,969811399,610040527,-1522580821,1332396499,-2009908605,-1078640928,823762195,2014399768,885093969,-1373659009,-1742302265,1441718589,147241538,239130877,553628720,1489957196,345630314,2137816239,-1636755065,1666434722,718040108,-1777325251,-410249479,971125164,-1309613005,1009811602,159237444,-543739728,129593675,-1152576941,-2106133628,-108479463,-1948233110,1854456205,-434175924,-514449424,1840000963,-1450244000,1038632991,1006703016,-64682775,1596185607,-400751237,195496059,-819718061,609968472,467467237,-1593801846,-988727276,52945161,-1488378705,1728464193,-123309162,-1023104253,517940706,1920872437,-1991458975,317094490,1046044584,-58488972,-2009568011,-1811874544,-1007444424,531201885,1640659141]}],[{"sector":1,"length":512,"data":[1088778876,407407366,-467246855,-1915208269,1254345728,-1669107086,-602589888,55125083,1021432644,821133219,-195221955,-2008331199,1624509737,917566150,-1904116203,1624857090,-2033155086,-1840714846,1106996576,-1045160005,2141036796,-469850311,2021643488,-1603659756,796071586,-1407937891,-1858394112,-1610479783,5798805,1855056640,1611096071,537354247,-507509928,1941282488,1842635863,963865376,1500681105,893064081,-1885627278,-2107997124,1140465109,777854117,649997436,-18319444,-2130974846,1321120370,1267222658,-729039824,-876729024,-1446607113,707955711,-532546651,-1713429061,2095822695,506203960,695216022,-946078319,884984475,1648502270,-1771791135,-931472946,954832997,-1012418255,-160633147,688788371,1921503384,1829981645,1986094659,-735473884,-2140481973,-2129063467,1991236016,1472974055,-1797730889,-724773809,635986483,-1140405159,2087348936,-641935952,1826519657,46933426,-1764834896,-993582195,21796295,-1127374387,-773439296,-1407441814,-1534326692,-996153928,-110917020,660339785,968900967,52140955,-561520288,141743849,-1080879104,32992954,-868452046,17739486,-1042027008,-461863182,-236476613,141652856,-1073148416,1006677827,-1058012444,-1689133052,299908096,41682816,2279664,-268252785,251667840,1492124376,638517288,-150979121,-2146357007,-1956745721,402946932,1516320609,-1249902160,232753991,-1478636544,-696248209,-991555729,29084716,-957488128,-1217492712,1147638379]},{"sector":2,"length":512,"pattern":-335483904,"data":[-934880918,-2146692275,633041,1911247264,1970299,1860019876,-670906682,-805174973,2046851907,997072444,382681034,-1720951765,3971556,1701996343,143420492,65948672,-1314539312,1297625339,1068466,25992176,1818916656,1285483628,-820836276,320040805,2110179720,-1073210244,-330449955]},{"sector":3,"length":512,"data":[-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,-335483904,67169280,1869217803,-804764206,562200896,1900846159,277456210,-1132060643,233255793,-601869669,-1507628588,1913658508,595181770,924470919,160972903,-1693637069,-1494059980,882778183,1254396529,1549214354,-227532014,108218824,672144653,285254854,479069987,1909761568,1762014947,933780235,165472358,-1441611253,1949964364,78561581,2069385709,-1576813669,632692045,1506591348,-1186297237,1460276701,240234087,168185120,1493358275,-1059184999,-1390003987,1208628548,150995048,983325474,-609189714,925134433,-2001180640,-1866337487,-1203670470,735511093,-427503267,-367283072,-1968006260,1755597510,-1907973359,564814366,597231809,427855468,-1071528128,-356514431,1633970208]},{"sector":4,"length":512,"data":[-11009984,-462890538,1073765251,706764996,579396721,1208529264,-2115877021,1610969121,-26390336,880017433,113388544,1183586408,1074273846,1704653252,1255186433,369372368,-232829862,1067904,-61015474,-2142691085,1981695115,-926846971,-1946112189,1643512215,411479576,647089259,-847082751,-670912495,1344424944,-1452985847,-1856463461,2014981697,26869156,645732764,135339286,-855799851,-402574580,121289351,1079245491,-117400291,1894864262,1947981317,1758068433,-1566758729,2110848102,1124542459,-1403976944,1207312536,-211377471,1925806412,-1077834112,1196950718,261611278,-1334213027,797171938,695337553,-1076336684,-939524004,-660446959,-1265891311,21460639,-83600236,1705034273,163631677,-1937201632,1626095618,92684844,1016518559,804662176,773823626,-1844675770,1593985541,-1897694834,516569092,753385749,-523995945,1136892019,1372404984,1938717737,-207676296,-406348260,-624948928,37879858,-302814198,-1958553483,1792702029,-709444269,-180525224,1074266326,671613312,1438400704,-1208677705,15551322,273682948,-1831424786,-972704486,-1171387630,1791675134,-1963532646,2015102593,-1447296512,-1355482114,1857722071,2070422196,-1701988628,-172331125,-1431332370,885035853,741877433,1528273582,-1566408052,-1123898226,765152078,-525144157,-802026494,-2085688592,-1414403170,-428221386,1237753037,-1472590291,295168939,-886650449,-1482897829,-879812695,-220876251,-1783233568,-758903742,-444944685]},{"sector":5,"length":512,"data":[-641836648,272810793,1242694753,-1683660496,683382404,471794860,712643506,-322180884,-1481631162,1766463091,-2126317652,-2038385615,-39392854,-1091638270,-986930520,1542477004,-1892235663,-1894404950,-1766679694,92950109,1541098133,1786891174,631091825,-1515853325,-2050318642,1099456535,441698438,615508970,-1717241453,-1307824503,-2120541028,916396678,-808646964,-1301083102,-1355150542,1908961307,1014276073,2015211580,-1832402456,1859740454,570457748,1954947336,-1968125812,589957508,153239694,1382061605,-361189261,-1697696772,-1045347728,688509086,-1174887896,-1734038157,-1406498174,-1505033544,1712090706,1120618926,-524901941,1026493346,-963909129,1692149432,729071765,12988684,-869102453,-1507369696,824953038,592499252,1758999977,-533230141,959423368,654547755,-474944966,-789431282,1748873523,1057989602,-1403780866,605239360,440913510,181375108,-1819226851,1361330446,72529042,1628871525,507974052,1225925761,-1836803448,1420479424,-1053930704,911020836,1326687457,-1811338946,-988199856,725635628,1347654853,1428911433,-1784323754,91839664,-1721476970,1784292549,1545004465,613226866,1171932765,-243638748,-2133829659,1637369353,-1419369917,-384463774,1368548376,-1704584858,1739871857,-1706653280,-961959831,-1246842022,-1301531988,1847289553,468119994,1729217136,835351068,-764142361,1981638481,501707226,1737613944,300579358,-260333875,2107590601,531096130,671219327,570851616,243474600]},{"sector":6,"length":512,"data":[-2061424574,564683286,948051591,-1708881740,747283080,-1935472454,-1551312332,955923598,-686420221,1758880615,-954986963,-2037619852,1345952477,1801108331,946753084,-1647712295,2090678055,-909364611,1311151045,-1766555330,-504336152,482838511,-87277586,-473706704,-888211698,239496050,2141993003,-1419654856,-1954030141,947908367,-2014191119,1986403819,-1444807176,1642018334,-428929197,350350064,1310607239,1894527225,530498465,-1345073738,-2101108129,-1736508657,482788302,-61312474,-753931069,1041979952,-1402874100,-662977778,2144125902,453975704,-2014712776,470486829,-1993279834,185554627,-1326961602,1077199768,1992534123,821753374,485540770,-67757018,-175663007,524966001,1331809894,-1326871494,957550097,2103567212,-1776508145,-328812971,428301744,1642449981,1823311702,-1590088894,1102453957,-1013671402,-68405036,-351350175,1211553915,-695868744,-2014209923,1850922569,-1402794030,246180165,1766182419,-1528636580,-964729315,410617622,-1372741131,1265442845,-1774831691,-269730250,-69441612,130533371,307978321,-925381385,-53962986,-857061816,1848500772,-1642174810,1296739048,161144546,-1876224089,-1550440035,462137524,-1920914411,-988176032,1324119281,467805718,2087532749,-60707732,-1965898046,-1739905645,1659985452,-1868940175,647902876,-2031964299,-1710285953,-767081978,2070438192,1444417219,-604303579,755151070,236539990,1617764235,2029046460,-69303309,1982366129,2004581948,-1727264046]},{"sector":7,"length":512,"data":[503079216,1612296286,545985332,-519993966,-1741595094,-286873239,-569565867,-1069566951,1481387320,521504425,113110063,933055141,461327988,1441540895,-811407463,-144465731,1581031122,529948789,-1065391973,-1156849220,-1262625573,-612375632,-1889645749,-562684890,-1196486738,-1565921430,2127648549,1893019211,-1975525443,946576247,1432680086,-480969614,-156654721,-127766038,723888114,-1019457122,-818777771,884866659,1271384528,-1862980643,-156527883,-1274344238,-1035120157,-760962594,109251890,-93719235,1868067021,1622201140,-154023442,-715238230,-1481443763,-1511543271,41721386,1814899290,-816414350,1613646320,166475874,-356962822,-433025033,-119802107,1105422815,-307812665,-506300827,913564952,798223465,-1626540639,2128171441,-505262190,-476497249,2073107811,-526440765,-1632817561,1516171114,734499820,-1631370114,-1623002744,-1732359855,1283345868,2071762620,1291097062,-30126867,217209369,946424821,-1278449118,-811316600,1160929729,575948191,454479760,-949823005,-83517887,-278875171,1965836659,2125027108,978491767,1627603443,-1054153474,-136972293,-896929469,535152143,-1712732940,473255390,717657019,1660740645,-2100767417,312358465,-2021523631,-1070148893,-1716195775,1718327021,-1266561732,1149485574,1922172777,-1142621797,-291574910,61023942,-2026693321,1538197583,-1002424200,731290440,-697897672,-1313953478,1980277019,-1636751581,212156833,-1532086969,1838202841,804388710,1858554097]},{"sector":8,"length":512,"data":[1282257781,994622181,996432936,1189183378,264402336,-1303361222,-84472019,-1688503925,666087570,244163019,68841436,656203100,2014802354,-213877868,-785045918,877803370,1978590709,1284632678,-1457951900,1289147975,1051479861,1218964844,-986587794,1500115942,281917604,-1088914858,-422231287,-465262356,1594394812,-500759228,-908633542,636172388,-1451260868,1834429257,1899222173,-580644498,-23659390,1887419724,-413973267,586479505,-1602995809,1501176311,81450692,1005862894,178161397,-1565863960,2047861106,-100420625,470898959,1515545938,318310351,600066787,1728085097,6938837,-1228309176,1701041581,1243586805,1179095187,1883121880,2078042497,-1526238100,2051658406,1248628131,-670511532,934132090,-825835403,615378029,615846564,-213306978,242291296,1331392194,1356941888,-915266194,-1739625273,-1290571850,-2085448675,-1628064183,511580541,1594092578,-40144086,-520395681,11066473,1965076291,-1176095071,-786912637,1640219851,1724363394,-1753061427,-1226957164,-437614318,-1635967646,-19917936,512396292,1239973371,-1218013118,-1604382519,994664096,349422040,1791205511,1250378014,-108576465,1062143392,-1374426268,-2012260087,1018401892,1688202434,-1579448024,1706170372,1754189701,195960576,239804530,1825794048,1310495697,-877546350,-806320353,-1164672697,191307547,-1581065734,1975821937,-207233060,2002974266,-431669480,-1944706235,599607417,-396350931,826171916,-851655609,-697497655]},{"sector":9,"length":512,"data":[-1096518820,494107264,43093680,-825877108,-625737144,-1684708278,-1490050206,-1901217815,-312028590,791869792,986560355,688109238,507437435,-2132533686,-260563816,-203828231,1829114364,-1276865987,-472840985,1193043783,439142159,1030774078,422651310,-1784778005,1178269813,-898866698,-2089256479,-1991052145,550928895,1162349063,-759253349,161112763,1105793014,-2038600278,-1170405335,1186691138,-2106673512,1797383566,-299582398,-1606758020,-1607508880,-853290346,-171566864,355838206,557866728,458264444,-1626716226,2074937915,62407999,-64614732,-686539583,-2094359871,-1170660356,-2135446795,177069431,-2038183282,-1892201162,-474460342,-388192028,-698271136,-1893503407,1924215792,1155227769,987847550,128212784,98064916,599188180,739832013,1756561132,-2135206486,-1476026814,-1008577228,-1548822573,-1183355248,-1908902215,1079130393,-1591895071,-1240145418,-400743949,2063123072,1894746565,265209303,1463932565,350068186,-986991922,929646366,1991792760,1630919028,-1853133225,-1765911793,-1980581729,-289792217,771304008,1990269861,2022903929,1803792457,-691414949,578710080,-137182291,930057284,-1270032651,-453204661,-1736874304,-43146498,-834542187,-53215741,-1027081401,2042870301,-209628364,2042638040,-1462879144,-623305200,995120003,1672371815,2032929571,1021034560,-1717682688,203981563,1902497090,815296881,-1179973023,159137327,1145589069,-1714105516,-428126301,1140975821,541361304,407405121]}]],[[{"sector":1,"length":512,"data":[-1997185475,-2012007626,1985163942,-695270583,-726043307,527213997,1349763427,-797991594,1286311884,-725399405,711010973,-1664866138,2078599186,1889707728,688686762,1784848178,2094257143,2101382842,-1243967672,-2092456215,-1639943880,1697806392,-1638284056,-1453667528,-8796806,-68917481,1059310166,-2094395814,322508141,-860484942,504383958,-2022239297,210144946,1177153610,-1099532321,-1057873103,510453261,-1315378175,-1538294457,974040270,-1649660882,1413428175,-151329105,1407594969,1015544141,-430441546,-1346815204,-1869540580,162908222,-2003273118,188199044,1814999440,-1236710689,1345864967,-751286244,1045217781,1487598846,1790608733,1710533026,1150912519,-1576600388,-1995979607,242780335,-170373358,1176032658,1148736180,-1950350389,1455794908,-1276416183,-1957337887,1795033553,385987865,-1049727243,776107293,-732126486,1373138987,-667979705,289124525,-2051967256,-1173304870,616204046,1581411673,-196922204,2048951733,-1200040097,1224641804,483122364,-179907492,-1307630781,170240072,1846474163,559028768,-86576469,-731452074,-972519304,851334751,417289643,-1721811153,359610067,-815176911,1519002218,-149213078,230340818,-701343576,1451963567,1317299837,1528347500,1656576243,-1888894764,-210351712,645059033,-529153150,1291199291,-557092946,1029964268,387529447,1305234704,-1833055023,882754994,572403549,1456519221,1413123014,609845176,1086949602,954226183,-1775494403,-2110237115,1200562547]},{"sector":2,"length":512,"data":[-1957572773,1190838282,1536055853,-882464715,1638615467,-1449794887,-467641289,57319647,-81427111,1635051632,-182041631,-859187871,34764122,-790323882,1407604814,-590421385,1288254416,-644634689,-1644700004,-430127974,-411398288,966203399,1765609492,359688808,-132744015,-1857126190,1504599261,1360261860,264904117,212388511,-204830370,2028771552,-532645784,-1800233937,-1419757473,2020229514,1535588968,-1222393081,-2071829741,-1301173317,665409635,1739082890,1429223698,1042183878,981118873,1314171665,-1428964411,1462343462,-1556901451,1156122378,1915487586,91764541,-1281300206,373117442,-1968766081,626999333,1780861893,753202999,1878007888,237328336,-472058860,387917474,2082276751,1707989417,-237699135,-794171872,-1137668016,-1138878912,-265041072,91765104,-702022220,-435824377,320141572,-2062206734,527279198,-1888111943,-1220520567,-968492088,1495766355,-58762063,-1812653654,1576354422,-1142225291,-968568774,534209919,1378663951,-174679820,-2059576596,-71244455,1055685160,-907141552,1779527882,836879313,2073318661,-332510072,-1816274517,1683326535,414214219,1480269145,-1709495028,672582441,-754847978,-710470132,1489827732,-1275306359,1138997113,-1370987787,-1043719019,941875061,566723939,-1747387977,534663202,1739683368,1811966086,169451254,-311020798,-525233767,-742802458,-39810751,-1813690377,-1107809748,-1847770760,-1305930293,-1281173714,1642657474,607414241,1024659132,879392839]},{"sector":3,"length":512,"data":[109603879,181479684,401890052,1295278369,-1745116475,-1030058496,1827974437,-603570211,-1527167559,1709274401,-1235133643,-717923755,1874610294,1566735782,1140711066,-506133528,-1420610290,-1616595801,-1769564552,-107081147,-444580746,-1469543773,600567361,-871116183,2110454658,2063602966,1953690360,1350874639,-1976791815,250383589,-883401186,641177378,1789708099,-1980302505,-740963746,1590601050,241180528,710912776,1950264740,-965325364,-835360096,1352489341,384606093,-603840606,-1935819531,-1749525283,795521653,-921196665,-1392443641,441534067,-425087141,-823073422,-755481853,988961075,-1235892048,312198741,-1592570545,-1606960610,-1656891007,1369281395,-1573214309,-1583702500,-113741067,601286182,-880606457,-1613515024,-46829941,1062098940,-1941922367,2052866206,-867132319,1083688702,1438422388,-535916419,-607835346,1423223745,1722255009,-572871751,-1626566372,1873486920,-1773772115,-212636982,-372540064,-1689276423,1068798637,-1161592362,-314487165,1915339487,778976420,-715425622,330142816,-1331571239,-945509633,-2045392510,781953150,1496792616,-1282406806,-1997739312,1446700494,-320004677,3804399,-167218542,-918636740,1216645149,1501252544,-1798108906,721249299,-841457760,-1576294274,469580405,781415081,-398375941,1561478090,1083586207,-1994566041,2124770383,1657349073,-1656745686,1781204134,22112784,-207720512,386615851,-1136706175,-2049173509,-56035619,-171277797,1136331451,806543611]},{"sector":4,"length":512,"data":[341039750,-1767830807,-1370531685,1479695255,-2008261621,896869160,210457977,1975492495,341170600,67355986,353466160,-1446446740,899356377,-1923188312,-1781912054,-359945157,-1937734269,1837010245,-607409307,1857168938,-1462785429,-153952312,-834321668,-765629316,851402703,-798493698,599270515,-239504811,-2034819481,-759266891,1373823377,-1025749139,-1780644355,-1519737831,1079669611,-776245580,1693870568,-1775421050,1704084209,-1407454917,-462586677,1034940281,-2007271360,-2043476065,-1506537957,1193546714,-1368851086,-1610199611,1557355238,2007920335,-1535863755,-1368821991,-453453975,-1162292518,-323036373,-504677745,806165330,277631967,1481613574,1022007614,979679807,-1292467086,-856628287,-945035795,1824374017,-436549134,-967378406,1753222102,-120245066,-828201300,1599298750,-1014183545,-1139378524,-737406837,-674051040,-1764010979,-446450836,-1164368828,-776652930,1110631292,-1570657388,-1568465370,374012512,-1595053265,-611414214,-1792501142,-1105810601,-1304713169,-1293061395,558058725,1517969217,-1358204389,-581846262,1882679577,1757127842,557710437,595084909,-855545452,-60552377,2098839916,65945014,1125841004,-1422537313,-1112876314,1530193068,1198526080,-529884556,-179491025,1512011355,1820904160,1240212708,1207588817,914227739,-1641192063,-378313252,-569025746,716764522,-637580893,-1162417110,-2023087437,-709425838,-380989038,-1893770719,1195895002,1074491641,757442325,1379418669,-946071281]},{"sector":5,"length":512,"data":[-2062982843,1123700875,-1056000193,-790586086,-491247786,732794202,-1222290000,-1591386342,1429983647,-1393777656,-1918367827,1731336838,1894635459,834970797,880240507,-1823633039,-2102357148,-17875999,-1918668197,-470980585,166519755,-529879021,928391812,-757043165,-1973691731,-1429324194,-721130512,710444109,1967176159,127030323,1798238214,393561257,-132343485,-2030635061,-1318504330,829710164,1985126938,-1435538085,2070201859,-1472628205,1965997885,13848127,-1004454741,-256036682,1812810671,124491783,1238654398,505121232,-502906401,-1307073757,110705466,986910352,-1628234100,-1954258480,1813389332,-1294713303,-1580162147,-1216541690,-449359980,-718906690,1908913712,1685847016,-751338527,-1791782912,1094419144,864147230,1345359803,-236900451,588947691,253197110,-1398644263,987705801,-1340298113,-1755371217,1349518451,-1376165651,1655125070,61708697,1466230543,1547653826,-680949980,492613460,873831360,381597914,-2105549955,-1288773451,-797119654,-770835638,261996591,122953062,868008407,-898231323,1879240591,82632402,792467929,1435455266,-1831894738,-828723703,7466251,336502046,-553567042,1204449088,865454078,-374998375,-810972586,-830810436,-1297502460,-1577512585,1458045384,1793670926,-1499554774,478689474,-1844588980,-831655177,-1798832480,-374076112,910240164,-1206021653,-805265203,28722371,324042587,-22632417,-1039925951,-617266749,1069017398,-1294841088,989404502,-1442588167]},{"sector":6,"length":512,"data":[-709697488,936979749,-869621830,1696828961,-1949661550,1239574673,1695689078,844738249,-1010601889,1884879913,-548223017,1873170449,2107829162,1548412394,931734683,243213257,-242633041,-2084948515,-1375094441,-1558317743,979949033,-1735399226,1761047761,533853178,919774185,-842340723,1661084332,-1427048348,1777415452,1949893206,498268118,-468984489,-1320758206,1675982143,834592463,-1585213098,960147867,-1298750025,1206786691,729553154,-1520439044,1050931157,2118207149,1408581154,1521861458,-96056427,-942002015,-78033750,858680332,-863158581,-295753816,743088875,-1316513172,647679334,-1195984012,-496950839,-1852728942,1750408049,1965320946,1016961699,-1498860722,747758669,-1883783654,432573614,2110907683,-384838153,1998782096,-600074246,-1242091829,-1520289550,1253040322,-343408783,1960971509,742764709,1184377165,-1336439124,320599825,847450974,-299733978,309729239,-535309693,290191122,-1836904258,-716741598,-1838787265,-293080859,-1996064057,-1423631689,-989612377,-1856353453,985671482,1472525938,749269693,1993055057,1437133219,1913242841,534478132,1685448995,-256812491,763792714,1101222348,-1263998846,1752769534,1677542388,-11724262,1030658622,1950166314,-31654628,1404154813,1689397631,-363172020,-752521636,-69109967,1964252380,-725874252,132154564,207369528,500849648,1215903304,-265905520,1907214548,-1480157551,-1205334729,-1280023526,-440046227,-1506767480,1251639825,-1694172413]},{"sector":7,"length":512,"data":[-1106904315,1599102688,-1175518712,-735111129,208645613,-1423778763,-1447791310,1780543263,-462087895,2091579811,-515519774,-1996504684,-1581246704,1824008983,813541639,1985510257,1663290814,1683836431,34062051,-570357882,-2083639165,2016395104,535771946,-2046854646,1142851134,-1574473464,1779032917,-507207253,2111760637,-30829350,-1424630040,-1119641564,1032688623,1035752870,-680097801,1222483143,2031087148,1861273559,1883881700,753174760,-2074514806,-577123942,-1931721363,457005733,-691459146,-1515306361,-206195395,-722131208,-21467184,67778908,-730443731,726754236,-119575560,385573252,131385190,903960517,1501348778,512122094,600997297,306818101,-283257059,2015950700,566774796,1281606419,1115476728,-604850589,-913774041,256294531,-761368478,-795303466,1911515553,-1834018068,-1880283753,1500015271,-2138678502,-1023167016,-1453078500,1657254170,-1098614462,597000829,453577263,-455718033,-748131957,-711637553,1313234607,-1476930281,-611310858,-1500389948,-1219347311,1690387401,612094775,-802725273,-1176958670,-1705649031,379224645,-669520986,-1108975738,-1042579458,1302688379,-1779315740,496020044,585291708,2114625054,-243528352,-1921127151,1540866543,-950641116,-1691567030,555827652,1210865281,-330548756,-990501511,1793738813,-1656453734,-939293464,1098891882,-265849073,-1040652802,234220483,1893847074,260773608,-1972102265,1401156405,-795679759,1706138696,1676076150,1798780527,1449196780]},{"sector":8,"length":512,"data":[585044108,-210201934,-1410160719,-1045133981,1526063723,-140954119,-1894928497,-1727491961,1515630983,1576531627,-34580023,428664992,201274492,-1014010641,1358272993,-641017886,-1268992677,1907049930,-1246876470,2008831403,65139272,341082450,-2134187063,-1464607364,1732456178,519592706,-1999441160,1501462783,1103513669,22599265,2092769113,395271551,-1255675763,12735825,1674618339,-23168031,-832206265,-1497520644,497220150,32433098,1314538663,1304443230,1591020260,-1794170496,670296371,62069240,-1962538400,1412864375,1100992816,286801789,-1924737961,1474370351,-549681781,-1925737614,185055773,1456169626,-428680841,458307563,-1228227187,803069600,-1987602736,1515077890,-1268521022,-221546645,-1368329135,-15810873,-1971046297,163456076,15698155,-2064430424,370094653,-1582064793,1856442909,-1134655963,816037398,66970223,27153065,192622536,6807862,-940382999,-429338649,6827652,-1880858792,804454860,-750790229,961568550,-196656680,-933357584,1457311347,838449046,246498158,-525636379,-599439113,1609479666,179015059,-243645854,2115861723,-2038562480,-775995633,521963037,428587455,230677838,1021836078,-704476264,-1126409825,2101612218,360618627,-1459494595,-495821611,2033351330,-1533547101,-484024367,-194729686,1025884771,315297496,-430964393,1841795986,-1416583502,-230069617,1157104097,1884797984,-327070613,1711574569,-1640627041,2119813636,379457162,2057275935,2008156049]},{"sector":9,"length":512,"data":[1418481472,-323240611,603719477,349898793,-1744684120,1405016724,1869119428,767194106,-1110034657,-297554423,-1653200978,-596831888,-895618711,827309361,-1511729251,-648103038,-1011373451,-822861981,-1262904310,-156284294,1387556481,364919768,2100482884,2060211816,1895937233,646922834,-177124264,-3778852,-588539965,1768944305,952086650,1068136574,217756901,-132637846,1033819580,-1545763874,-1510160828,-784876812,1705980607,-141361510,760796917,-1653454690,-640744600,816477526,2094419901,-2124230784,-232111861,1446852439,-309665799,1509534370,-1417834657,-266052768,-239179397,898035828,-1784277690,2074072895,-785195195,1242216532,-154598680,-722303909,1926110730,-833593060,119240169,-903764209,-35649958,-792683136,-1244123031,463504859,2072057260,1865224940,-1126501333,-388497760,970043212,-2134503427,379635203,-292388771,-1441662657,-1630230836,1212454058,-987620452,1459011715,446617023,786014831,1621413087,-639473026,1330020191,-804947011,-273504564,1873717459,1050017919,-1454326367,989242665,1666033779,-1002147018,1248563715,-1934576355,-1646696923,32660192,-380816142,1931767306,1274889869,-796673038,-1993172461,1561752745,-1689675437,1208455753,-1421259411,403389427,-1492477731,741277725,-479943372,263831555,-1936005232,-1492394179,98002347,38274458,-44388017,-694752688,3708621,-1737209750,-1568065578,895227041,535460227,1683486101,-1060901832,-1701268733,124774679,6348891]}],[{"sector":1,"length":512,"data":[411014194,-1710049387,1103514759,-2081959517,1203151731,-37770553,303827201,-1113550843,1661069083,1095852063,1038403705,1615800382,1042647830,1348761797,1056810041,-125379150,1539926350,1771533195,969801460,-1532904787,-10995792,128230414,-1743315320,807428737,1087113731,2034392834,639708348,463598285,892189123,2079946586,1981115530,-1772401705,-2134576183,1770540502,156770799,-2031118853,-320238834,-1338914411,1138118581,594970158,1603215247,-1697652168,588869041,832029206,-997576627,543370363,-2043488511,-707682217,-67718003,129754542,-599195337,1245614998,-809906743,-1168142485,-55389663,1900436836,-35110480,-381834761,-732902914,646877952,967013732,-1578846985,1107230080,-463623286,-793394144,792649857,-1949248774,-351089771,-494340212,-1721161499,1272334781,-1857431695,1134009578,113218040,-1504974552,1020604852,2029336528,958091121,1272950804,130305226,1643194502,1535556769,1949040852,-832225816,-1496533455,945204040,-988423132,-897131346,-571301513,377345672,1005851698,-1366803153,-498730930,-1894153872,99268538,1607213133,545490744,224592134,-1745516717,-147229418,-1933529458,-1207173012,806712012,1951392864,1573053850,613339624,2131938694,-1864689458,392531908,1985615939,457180517,355092372,1814987624,-238447601,1045700242,174797390,-693782970,-884672771,1569661715,-27474801,58182170,-860571701,837306292,916392104,1832781032,1917934769,-624561401,-769246940]},{"sector":2,"length":512,"data":[-90638568,1896730297,-1070163945,1109005359,-1535556481,-703796105,-204771599,-1144022930,1165467300,1898638056,1054982393,2074377671,791092590,-758186227,-683236447,-174475010,-1973639289,-1749615634,1667033324,-1594388726,-268275408,-1755690826,-1801446356,-1543592633,2010624466,-489615169,1156191257,501467783,-66995442,232730941,-1098472869,-1458618801,-595185073,-810220269,957224696,2124539352,-1037058340,1945696316,666252973,-2045574156,-2138526199,868374161,-577730021,-540808509,-948010105,300808221,1141073048,562235790,-1821260287,-1690689560,-2109813460,-1056071973,566312313,-1500316563,-259022963,1831761959,2118712114,1111394301,-676185687,-1845526044,-659625923,-1767793712,1095632515,-1267103154,-75711018,150612377,109502302,1745071859,1333554436,2135423231,-353322422,-1023117136,1568588770,56181896,494799349,-1434812459,2102649115,108701571,-1510645827,-509452900,1012407152,-442230632,-865012219,1815149168,-1252422152,-1781316705,776868340,1779012851,1364857220,-133020407,546509860,-996225808,825316119,974358770,664239094,-792730892,287553791,272840327,-2102238417,703507282,-684283139,-208429718,-799821046,-877402966,-1745102249,151879860,25207000,-1094182896,1910159021,197035738,504914234,34601473,1406177978,-616042930,1193560641,796519092,836778977,1232554599,-441038561,-1406023030,460323699,-1915738410,1681685225,-2007053171,-1275572556,473166013,-395886479,-236946393]},{"sector":3,"length":512,"data":[-56511893,1314456886,-748365013,1139018459,1698046589,-2087349648,-871446598,-2087780054,1124141610,509054713,1229644444,-901098239,1247216003,1477627291,-717860058,-1743220171,484065281,1294728343,-1982121826,-1220271881,501294217,1421616850,1242310445,575153968,86081390,-327174435,139087849,-343453875,-1108504202,-1247291343,-663407177,-412070225,-951015597,-531912478,-546011895,2023894885,916865071,-1160639066,481137003,-1629322287,761551974,-1942865128,2074428361,-642247375,-1573872696,363240613,1059302098,267903374,-372633182,-27282024,1890180269,2069005914,60929155,1518637400,2039869193,1561846783,1079629501,678588031,-1069965138,698308822,1764962567,2130135386,2134190363,-454040115,-1281155524,906131803,-175309245,-1467924776,-1940421274,-1117540053,-1303433838,-1531979022,1017029050,-1425741075,1476378492,-1067731477,104693463,343479867,-10989800,-855818615,-947322714,809158635,743420554,-1307101090,2143038369,1218907993,1518322987,-1661396712,764965436,-2130847494,2136921241,2079368637,710496813,2141698710,2058397775,1089599329,-1407041813,2143134169,-969875384,-799664464,-1030412363,1959965547,2086991705,-965805806,-1008419150,-416837854,-674317943,-786991403,-1177806824,29609432,-1681700385,1169571061,12885315,1357154145,824731746,611038258,1325710727,-2081625301,-231635766,534754984,-1584397594,288742494,-574231793,443382712,890423791,-1122201234,15859972,-82369928]},{"sector":4,"length":512,"data":[-389471518,2032630381,686209026,99744881,-434769994,-360853768,-1406213915,-334923922,-1568343132,-670108525,346817690,-557091630,538068262,1895759887,-1221009347,-2068420732,1821477188,-73225999,-1703627639,1752092900,1171297378,762688266,1592765071,1887414757,581242252,-1529829053,1325456088,-464256056,705990671,1589383680,-1727879306,1728391705,1353309493,-631960666,712474245,22083986,1668189113,-1855043431,-854598278,-1234881083,-1567045627,-1373896091,998010948,2137500482,-638389811,174182452,-1081835985,-642691970,934522855,-1742571440,678812589,-561547924,1013433191,1474191636,1249187058,1860818756,-394427872,-627726408,-1686753008,-1390556634,-19535991,598152589,1335004981,748197187,-446348694,-1127777183,-692079773,1366598064,121316491,1295897398,-1632132594,-354301750,-1273303135,-704294991,-1808115589,1654344247,239498019,-1775969146,-1226309357,629562206,1282994099,-1848707663,1956803702,500447842,1715641814,-1615019976,561491125,-1034586468,-1694536037,1092071233,-457920434,1304353394,1892731800,507012194,-2011448268,78614469,-959306722,60248878,-1709794211,328800403,7576079,-259983667,-988100717,2021361568,818559088,-1749950069,1712594488,-1945072305,-1041508948,-1990068010,-423575483,-458893306,1582934565,1534357134,-2023150761,1047542993,-580251706,-68021271,-150593841,167139316,-1176719461,-1311691379,1781015925,306134384,-10202416,1218859252,-491978637,1788409006]},{"sector":5,"length":512,"data":[-1107330595,1623905989,868058503,-485540296,1397591613,-1094223326,1625793123,-1526264161,1910409076,523730058,2069054358,526553692,1734055450,868926077,-811879775,1165411503,-546016939,1570699131,1312577646,-621504003,1933918414,-1947024926,-1193057337,25948498,-165804247,-393621023,-891059371,100904365,449666707,74171735,785235872,1824789562,-22273752,-1561899873,-1658421771,850507439,1563940844,688325362,-106947471,1954238612,-815990296,-816462681,631701135,-1657203085,173839202,-221176256,-1822260223,480543383,-803332575,839815948,250856028,257857691,-1022434414,-1226531169,-1919632460,1974856657,569102464,-38742478,176275977,-482148312,1661442929,-252255771,-788398664,-1984143490,-939244596,1321190358,1120929156,-386858773,614141940,-133963244,1207788501,1200197607,-1893728085,790972886,-646062156,-1388376510,-1725136013,278499337,1385204121,-819073356,-1209080864,349256135,1270734235,-304732050,2022382365,675030622,-1627728932,-390811715,-428218994,-286901378,731506327,-1859284658,940920852,289124404,1015127670,-532226516,-1221214978,-1880005301,-2050318112,-1221904059,1614769392,2125035026,1812408725,1172435901,-1174323638,1835348961,1840844833,-2073912036,-1482085525,906211396,-1916326405,364559478,-1962039921,-1891892857,104624581,232824616,906229224,-393577460,-205210123,-2004817822,-1480098693,-1877492074,-1391915055,144496129,1907767800,19469939,71347203,-298401668]},{"sector":6,"length":512,"data":[206808720,-1596315183,-1018633832,-2123647706,287206213,-167556106,1123380285,12829069,1008912267,242319759,-836841516,-1339919592,-404694810,403410476,-1339947936,712521218,685248112,-1409973156,1169488709,144497334,1099143105,1611302459,708543742,-2113699448,229379977,-1138569621,-1786325689,1406738511,2065414378,-889631613,274208535,1317577373,2142537145,1849657325,-1845594374,-1443429382,1694609606,2021311032,585465536,-327840389,-1106257897,-1893663555,-515758862,-1426251961,332971628,-378676576,-654387382,-193085659,-1426108530,-1382746459,1943253859,188324509,-150564974,774327092,-1984543314,-548656437,-1678554550,1659527886,782621589,827872814,1940907492,-2094026448,1790836126,2131315822,-424186363,1971595440,-992346485,-712114294,1880174535,543673972,1700310704,2129712082,-1094632872,-950220009,-88695844,-669452173,-1574618609,-1520407781,-41761203,-2041093688,696017456,-1160147665,-1254530383,-1271378635,-996213865,-2063495173,-2031101224,-842347546,934395480,655743748,-1032173437,-1611193924,-1877616964,-220817965,-1142072841,1708784620,-1782612558,-639694396,-5117245,1211657753,-1938299083,901832174,-237151850,-1439708000,-1853235737,-560644020,944154893,-538193745,-395991997,-259265748,2050810170,-543759425,1777554277,1851186954,-185224971,1185044628,-1538633880,795076412,-439452761,-1543847493,1180309667,-1963264938,2145943335,-1152585384,1673564546,-1033875343,1288468734,900708804]},{"sector":7,"length":512,"data":[1605031806,1162777830,532025606,-1089185847,-2009111884,833748243,209994802,-1861009135,-1449142414,-2036651529,1520850390,-289200242,576260586,453744889,368538871,506699148,307806959,-1217402977,-1525563764,-191358789,-50445671,1158264369,1876768558,2134585964,588739725,497398931,1133942818,-485913379,781672869,-1256214734,1906697161,1092867685,961318457,1157652425,-1753846342,-279578218,-997603527,674241744,-1756956781,-1205777635,-1067323652,601443519,-833007132,-1771041950,-870811290,1748553004,-537694727,-1105371354,-1312952066,-395374604,-470677351,1949741576,1067395332,1730211867,884969921,-1511063100,-1618849231,771383447,-435634628,538678966,-881589127,30217678,-1049719889,1971822888,255513993,-1456173731,-1482677747,-205181735,-1525280487,-1785000980,1602886888,1690500377,-1608383360,-1567588928,633934844,-798079098,484706546,-214927844,-23561859,-712974009,920954281,-244278812,1812281672,249041182,2029246191,-202902463,1086193984,568133530,1642341602,46735538,-1390028921,1141588352,671187232,-312115920,929892049,1973910263,1476603842,32133909,-1387412026,978649148,-1705515038,-949360256,-1564132499,-719353025,-1023349986,-1707631985,-280690414,-185457544,2140784891,-1669358692,765231094,-597009281,-620201111,1315767989,291975684,-1006619750,1914151098,-298149046,-1119988353,636604120,100993202,129378688,432441688,-938387532,-706198101,-151650304,-1852410722,1631392807]},{"sector":8,"length":512,"data":[1333529064,331675628,-1530828418,1852361067,1342221042,2053242447,-148704583,486472351,-1820350951,-1678319650,-654346545,467630579,794708437,1881433600,-538615808,-807931340,-578879458,-633031883,-973687401,-846883975,-36161894,-805298991,2102216113,-536746298,-552028006,805561194,-157191870,44269575,61090273,1715971456,2014524339,-1570767872,1283970649,944517804,-1924861560,-252048782,-865377573,-1538096523,1943559,834966364,-1500561779,1903493084,1524629619,1968789669,1452309979,-2107662485,1381330750,-409869190,-611480004,-984566287,-1106009124,-2030344735,-2039514195,-177886934,685026224,627371947,-941193662,1056509735,1915046626,-295684096,945753734,2010246656,147831808,1865150339,-155713477,515514020,4175223,-1336850039,-1245708058,-12887298,503331890,126240610,-1289486016,-1068699924,1329788127,-660959033,-1534689492,1528554800,2051734008,1937770331,1590509414,-857281814,-2021919339,504773841,1286986799,-1500812157,1074227668,-85348099,-1076169736,-1630499719,327096078,-247033517,9328920,-966831849,-2146509658,333577465,-1047206164,-1571112933,-754360412,-388613827,-1331194155,2049830086,-655993406,1207133243,849016421,-1503899551,-1033024481,-445940056,1738595550,256329690,201642319,-39732614,-2023889218,-1634776162,-1269522089,-72453662,107304667,-134608964,937219441,-534441761,1116818681,-176297359,1037297081,-1344749091,465968775,147799270,-316211984,1784861707]},{"sector":9,"length":512,"data":[-259131563,1390213934,-21377671,1507457371,1924369119,-1311277131,789431668,916819515,861423542,-933458034,3855387,-664068866,592445677,327156609,478727396,-1601823744,16153654,784338740,-1923809427,-555336713,-670354984,15136498,-1130814752,1712298781,889382918,-1084821144,-710673369,2102206874,-1072722683,50135516,964052838,-536746284,-1260767509,-1739167949,1558058901,-2114486133,-117286537,-579165444,1861088709,2136915577,1221322619,943972545,1332528320,-267026928,-975576029,-1373370927,1836135191,-413327531,-1366860816,-1353630523,545122803,5768761,239384960,7769088,-524362612,1992705,-481082573,803609339,-1621091871,-82974969,1486447339,-321369120,216151591,1979727799,-208497019,-1522446462,65231432,-1398442784,-683106951,857903518,-1132036499,-786878297,-348353237,-2024571690,-1012089706,2082574659,-1542939241,598717147,1794977662,-597076367,486903343,-650825370,-111469220,-1377178952,-626388170,552834679,1524391434,318430892,57197954,-1914145347,288785821,1453762095,-458663748,-1474233600,671021954,-32717026,-44133095,-89370508,1982144628,323246272,-983742524,59911930,-895450179,433848915,-1227195490,-170398450,1101259465,-741722774,-1563770717,-819253030,-1761791176,-352212411,-365617693,-1419115131,91800914,-762047175,-1259504489,950812285,-294648659,176277002,-770187761,517968935,-284641421,1257149775,437907011,-925115547,1331724406,-735357681]}]],[[{"sector":1,"length":512,"data":[-1945752545,-298502218,1751708577,-1588694637,-619162133,-805012688,-300729849,908708527,-1214199946,1854178028,-591560508,-1067279199,-1347316346,1047799566,995778126,-108413904,-1449735638,-630827932,1806004887,-1352650273,426077077,-1032802179,2085516203,-202821413,523543960,2137008819,-585318849,-1530851647,-1783056401,501311834,-1204054288,545806187,1401953159,1611538112,-567852325,1794326389,1157569384,-646192245,2144030215,518978892,687004531,-1500881864,1852045616,-424957003,-1963530702,920278457,-1412020622,-1702080533,-1136705453,1576616908,579506131,-940841310,-592261131,-1380524281,571456764,1771342502,771891451,1840884050,654769913,867268894,317816272,-333752559,1079215132,-713930377,-291519450,-1051288515,804964932,-1499122348,-680343808,-789872949,1804773616,-219766946,468060404,2037177007,1704692545,-1667518204,-607562810,-1421294546,445214018,-1214894885,1296515422,40529815,1982467717,1239117589,-123867885,359839228,986449599,1679882454,-675162998,-1046966328,-981282601,1241541600,-554472879,1940268237,1276353063,619876636,-1548641964,-1829733580,1105560012,-637497232,988822290,1593507467,-1705788039,197894698,-1547496088,-744264272,-1588879021,-818928740,-638995418,-1224844759,682402042,930535259,-1063746046,-1753132557,1573334067,-375598454,1787371618,-1680327881,-58697600,-41169418,1973482352,1315556818,369097921,-1692508747,-710480198,-1328009175,1754270519,-1439976701]},{"sector":2,"length":512,"data":[33760741,217113594,-2116893319,610150806,390826912,-1131124731,742983551,-1334292010,-2048823870,1755227443,1569526728,-1123271630,1547500323,-1836640043,-1892122126,355049428,-2097880171,-1067687791,-726857306,-715280402,-707419238,-1510102614,1788716445,-319092065,747436532,1665817025,946181065,1554786603,660794033,1047646939,-926036981,1040538167,63485054,201891627,-1238115156,-900819856,1985620602,-13544831,-308545760,1157057234,-1567002900,1206532438,1937354707,445225008,-933472136,986274353,-690588955,-45019940,493635134,-981634611,-1681994931,-818179810,-31936705,362549916,711799056,2024047180,-309791463,1832145715,1723811314,-883437427,-251411581,916832386,1489507690,-2139400597,-938494304,1523049558,423047635,1910674446,1624161663,-1227274928,-1310202695,-1228266424,-202549103,-441699944,-1927318200,1471013566,1297025138,1148944147,-487367051,2000008794,58849440,836311581,296387535,-1630369506,145071946,-1440087987,1499077796,1886781224,-1276565788,187414756,1126947613,-495334649,512443082,-63356134,1332315105,419374335,15742646,-1718314691,-619872378,-349946153,-1410668421,970059893,-1623294612,-1874415969,238010226,-1257893961,-36968681,324696261,-980524452,788840844,-1709493639,-1330638886,-202121551,1465939457,2014453280,58066183,1837077095,-927646733,-1453990698,-901902280,2085068861,-1640199932,140538851,949474542,1719810506,1466846203,804327198,-1833303770]},{"sector":3,"length":512,"data":[-242340112,-548473112,2128036210,1489668072,-1212721498,-1839916557,1668553625,-1800925898,1560834969,-341665448,1242057627,-856994637,240027634,-1322644049,-1328874422,1809765166,859439790,-1633150245,574365179,-2052173886,2060795068,-103023687,-2134211730,-1577253164,766121016,947068722,-913692552,338720284,-365148383,941984123,-1296376638,264697622,-1419063120,304929739,-1982878572,1297542297,-2131447507,1723600215,-283130399,2023579168,18735671,-698258769,166563010,-231411785,1360090597,1073203465,-256642393,1655176399,-201863873,-314671207,1848524007,1722762263,1764653338,-1838905052,1322010938,-870018670,1228063009,-897498163,-1612617436,-1626394478,1057899669,-144594237,-215802890,915940651,329968617,1472866236,1586077879,-1163191826,-1798693967,-1474860557,2141129274,-773745067,-732032068,-2135200800,-967910456,-407149989,735402477,-999989128,-2064314906,-640553525,-1800033704,1050726382,1227689395,1266560119,-1519174894,-1323375904,220512349,-1880413979,-1981141134,-774551982,-1489973005,-1870891327,-1862446490,-1764138387,1990619197,-1995571056,-504516062,1851009329,234918007,-1870703095,-636355530,203249781,1806449734,-1156842619,-1586712579,-311396812,1769382953,-38253105,876460810,1258625054,-55806149,1151560294,937708966,-1607645143,-197177731,-497140129,1636945844,-866997227,-1446329245,-557499305,-317130426,64552679,1532283947,1747514076,-877961427,-1190659220,2082453721,632600637]},{"sector":4,"length":512,"data":[-1102002657,-1523786714,-1365749595,-212329319,1223257392,-53610698,1746410675,1534551919,-239147462,14963954,-940205214,-60085151,-840845695,622184267,21289586,-1300860379,1709362139,-1151653604,1650382334,-1642238025,337518589,-2016953780,-2084706825,1099953097,-820815904,-469961661,488799013,507264170,1384236620,265445501,-1215304954,-1023020368,1171304156,-1370432056,-134779833,-1515692683,1574006632,-94903940,1058880043,1791463220,-1535623465,1200614844,1398124709,-50738214,-976360843,716961812,-941635316,1336409172,-1931148632,939304968,288697994,1029253457,-2137924763,1837168688,1578331523,481545981,854309586,126125466,1242653284,1085554404,-571210685,-2038714338,572362695,-494519200,1229597775,2123332696,67352260,-673882346,-830437069,-1524606082,-1592628713,2003928291,1649611203,-462345538,1723459488,920434372,1225566456,857906308,-1560282638,-595017611,294393765,409009733,-128811250,-255004421,974184912,473549828,1921977414,1103707144,-1754108095,-40186835,1165154905,-1093758496,629523503,1451421867,233963878,1535709760,930868489,-236065101,-278521278,150280543,1257782154,-113480798,379813848,-2100649420,-1845400122,1075743181,-1785648677,-1771839998,-1620758039,-1060866354,-402119548,-1681250360,-203531238,932984898,1870987347,1919577896,-159375600,-1300103161,-1870653888,673106166,1485441039,-1028607536,-1689911263,674820937,-1582830380,833333674,1826050473,-1867469612]},{"sector":5,"length":512,"data":[-721562348,2104105928,-1264524883,425886402,-879931408,855999868,2041011590,208043068,669854969,1859294697,-1111405662,697342133,-799387893,-2050178701,196183520,1742468277,1276977001,-146968436,-1307791629,-331414818,188038478,-613453410,-34390054,-850603699,-217178174,1584554544,-1162353946,494647758,395120630,568813300,-1183858647,661225293,549451343,-1442979596,1302571821,-2002910178,182673693,-1793163403,1527873798,695742723,-705916062,1105152749,-1642840340,230669751,81436418,-1190129549,1971109075,-1991974697,422248942,-700872505,1266520677,-21879542,222982052,-1501282068,718789148,-1395262793,-1276665028,1494557852,1662182702,1844192894,-595441766,-910598956,-1335757514,-623877633,-22785242,-2135926392,1832000594,1886304617,-153137892,-1522111137,994506573,-1462908683,2115970852,-1522137952,1470533621,2040563301,-245114694,-640414063,1378785854,-1535162486,1727111191,1598888806,-45878159,-477900989,1975150843,-957094902,2013657269,-1789195950,-1985018049,275448348,1674407291,692855051,1428510682,-24354738,1373973368,-375133847,1209584624,-1504360096,1685091922,-342889190,2115254401,-609841872,1433097647,-1058970504,603602553,2043825318,695318206,1936688578,1993881888,948547641,611079104,-1748750154,1140259347,-812890120,1848299282,-1301796285,-332952405,497677567,1149217569,-343622211,1514530592,1305670322,1643857583,722046981,1682308806,66988817,-497270154,-812570554]},{"sector":6,"length":512,"data":[2132168395,993176480,-1863205222,1618972495,1032317469,-1580581542,-384550584,92885403,286795014,636231052,-1656943580,1441025943,1197459591,-358359597,1961792903,1496636559,-1231769735,1366887580,1293646076,-155127409,-87219203,-633115202,879928815,1755377149,-103612869,16702027,-769392713,431347625,162835013,1144946922,-81856996,-487315428,-1419649345,529997466,-1225661689,-1150946209,-624365177,-1698110971,-2121734770,-473867095,1061854320,-1762798996,-1550689007,168780265,-1755401482,-91946107,-971908318,990185331,1864362191,884279422,740491348,-678020308,1196028435,1369698248,1019772780,1145148504,479468544,-1220239527,908604182,1567629861,-57669743,845474101,783997425,1618334628,1681336576,-110658398,235817016,-690722700,1457899017,-1420041990,-1603874890,-1097858054,372247873,-1130775343,-1272917497,1586063599,656079982,1899011150,312009250,-768032921,-1909035805,-1220874807,-1055953657,1769124533,-1387608939,1230713813,1868753591,-2077818323,-273907232,1349048594,1260183082,-1541425841,1614319865,739935050,-742446726,-1574862116,1251824758,-136374835,-1768893964,-1896830862,1933918122,828990343,-1800623750,-1998234121,1285586102,-1602432585,-328078547,-1707373140,-1939705187,1954374274,370936841,-2053519481,111756212,-495282984,-1445879344,285271543,1600943759,-1539066366,2027732287,-221359130,417986273,-1560221569,49084065,947025888,167912448,1803249466,-1150633563,-624046741]},{"sector":7,"length":512,"data":[-104254596,-1850864818,904732385,-1676755762,-415977421,-38999416,-1582695918,-2146772261,-2145909760,940311168,816988416,-1288946933,797536859,1007072448,42969777,-1610306598,-1436132818,1747767051,-890614590,-1094136858,369437161,117547104,35684382,1352672777,1259258544,-1500190117,-999879670,-1516687670,1226760714,1931581297,1036726634,-970441710,-1407421771,12070050,-667677565,504267648,-1247560617,-443851068,2065330858,655990129,1321969865,-1125668294,-1457906120,436107204,2127467556,1074758603,293880072,-2067716024,1095258131,-898391035,900492955,-1821266818,652850915,-1990814524,-16867482,499348264,-1842451789,-1524992413,-1050126315,-2006968443,1722592497,-1884677122,-1333045508,1001556151,-1439396630,1687971819,445022616,-2029930388,-2116520932,1996955271,916335147,-1892754666,1863053047,-917319522,-1234912345,2115969916,554181120,144842886,1808829987,-1222602713,-1818303400,-1183667294,794406506,1649447460,1889150473,-1574434334,-1498455408,-261460334,312107441,-957641752,1737862120,707729830,182628522,717393196,-1960079733,-1204974775,797688552,-1941763904,-390019023,-1231580187,-896014246,873259824,-224834789,1128940201,1758999949,-533230141,965624712,-297130406,-1956450416,-1192478066,-225063165,1025685968,262398198,604044863,-2130397936,-415100823,1133560874,-1857795824,-999745467,-1994373231,747409988,1251116186,-1828406996,979033164,-1992929998,-1533893988,1326687458,337969470]},{"sector":8,"length":512,"data":[-1967569327,961303188,676602597,1427450130,363159894,629235287,-1721449514,677025413,1536608411,-683292304,2053469833,1635409458,-2141218870,1637369353,-1731843704,641830538,-1114217191,-1670997622,1754924665,445028772,-424564029,-776836070,644750182,1864083607,472318398,-1490958735,1104048924,-696967897,1998432097,505905630,1201792633,-1175684446,-193159417,2124384217,-1610089988,1746085248,839549472,310649064,-2044630958,568881690,-2048921720,579034652,-578190232,1344483396,-981990768,-1073588221,-178051209,-605751772,-1080846189,-1300948676,777112063,2011492525,2064516487,-663323107,-1012178457,-549442919,990809027,1640889887,-125996803,471303959,953032406,-417826100,805791920,-253020034,1060048527,-866008580,1371788129,-1136967801,96131189,-807895872,-702602399,1640913021,951945090,-1582241108,907927943,-2021478160,1655766413,907983239,-2026348054,-1625787779,-154944162,1484553607,-2016517641,514914045,696772999,-1325749188,-503640465,859861601,-1691600280,34211434,-335504457,591398317,-1859414752,1200708699,-38732354,-1414045988,1138317154,-1799626761,1722429431,463389818,-535751334,149039806,720168510,1560119447,2071223592,-72712769,-10310673,-936678193,-1271797391,111154524,-142336133,530512802,-138531713,205801381,357894109,-1746995653,1938945995,-34734107,-1660954658,-134297747,1745778619,941844987,-2091213,902684356,-416212215,-151527453,1241491455,-142494846]},{"sector":9,"length":512,"data":[-487234492,1121492997,414829054,666491968,-1110075326,-257130479,185827883,-1027213336,-664958469,1827231589,-1899551549,-834148456,-1013208583,-146941026,801253921,-980617919,1267375330,-646054809,1977714629,-293609041,1222213573,-1931960431,-1350549575,-134291286,-227287250,1627066709,-19646141,1272486303,-138802173,1045762389,519774068,-893688461,943928880,1953526325,764321651,2139524701,-807813137,1559782684,166919532,-1222229999,-560120228,-1865630877,-618851379,-1098367569,184227592,1818108882,-640805185,-554589158,-161718800,2066671166,1476337303,2028106153,-4334016,1609354447,-44808196,-1997451489,1660244851,-500276817,-493250747,-2365661,-2049210861,-1927125628,-3278576,-303174192,845010509,-1201240036,282365546,-106317832,-2146620346,1680627266,-1561346038,1668081699,-572982769,-704626045,-577816913,-1462856687,-1974476053,1403710205,883426288,136877882,-1197613389,5589292,-780529236,-481661501,2125640218,281403512,2052908272,-2020362123,669645446,2037934120,914296840,-130231829,-1410953351,675128113,514108346,-1594429772,655458515,310700582,-964197964,-1940962840,1919003198,-38009588,465367107,810135541,-805225587,1859350363,-1901804128,-885800547,790229583,-146383174,1367004986,-1006709328,-796130703,2088570243,725552759,1744925168,818402389,-817832512,270752197,-244886991,-464528862,1100875714,158049233,1629502402,-271982634,849340455,191768842,560518744]}],[{"sector":1,"length":512,"data":[1317870693,1025131174,1314013466,-390405495,1144562848,1491113391,-1072638256,189040973,-1549359486,-1457896495,-1681744101,-987553166,1696472487,1560265830,876428814,-448917949,-135562186,2124174151,-673682674,-1927191035,1347431724,-1208830438,-1526835576,-637812440,-1859337201,-163155178,824226572,1983026166,1139823245,1184778819,541257513,1077001029,477656643,16830888,-1117813065,72816559,-2015367843,1636329619,1851999724,-1670212017,-1284246124,-1022326529,-212090505,172220669,1609050673,-195039120,994264963,1585829734,1601458228,-198267599,-942587666,-793032310,780797919,-363986041,-444363769,-1398005853,674452849,1462714750,855274015,1886705003,368163663,-1304421719,151507634,1106832354,-771981022,416561729,-1516901396,467211877,-1768023373,-1068672940,1155008714,-537565834,2114894490,357202085,-1592055689,1901335608,1398216013,-775830231,1143739538,-317879532,-784487575,236915634,493177564,41850818,-1298567969,1197782723,-985752833,-1505243247,-204816731,-410087268,-1152354041,-855091501,-281725165,358005962,1875206498,-643929015,-2062791997,-638925852,169314602,897959957,-1517169242,2003595081,-1769927966,-1170021760,425815318,1490546660,1821260143,231773899,-996761237,-377169806,1724692745,1314886197,2135793575,1120179414,-836974169,-566990493,977328981,-1836794320,-1569833642,558119239,1407258273,1546554441,-301012522,-1313152470,-2069605734,-176730423,138053849,-1127038946]},{"sector":2,"length":512,"data":[1120222022,-1241898146,1502982198,850192085,-424842518,-50374531,-1378027857,-1999219169,-1675412342,-1474544494,1877406633,-1678206694,-1493218330,-1358316754,-1809370680,-1797751227,-858188548,652175871,545014995,-429288307,-758158259,-958798648,303965859,-1834432838,977348617,986771181,-1884485058,-1363061308,-1817478082,1427855754,1402105911,495709442,-1471855450,1890165338,273399837,1036243816,1334856181,1828312312,-1967785276,1379551281,1229813538,-886471426,-1854130023,-101082491,-1235597377,-1744045922,132885062,-703667012,-1871381275,-636193626,-1311350716,-1699228685,-2055059502,-71704376,1861634033,1324477424,1034018215,-1021875950,-1564361826,800111589,1049669129,-1235737888,-2022138576,-396611546,-206237560,-1765000914,1712740193,-1477727140,-1290087585,-12529498,1704927478,-2140520844,1794957443,-2103051689,-818934553,1265939250,-638796471,1029017564,1057926705,-505606745,-510744973,-2043458281,-1616874401,448138701,-372044162,164712366,-668115806,-463300932,64808917,216547765,452120537,1617348367,1738254011,1702746618,1329405550,-312605313,762933810,-1360116117,-301791997,2028891328,591155829,-1250996745,-607961606,1581281628,-1767891272,-1141026370,1221356268,-1394214837,-879696138,-277533339,-1179425302,937405150,1462838990,-80060481,-33901858,1883314963,1561187851,762761969,-1596953672,-1232475299,-160328981,-122780830,772463610,1455584005,-978217376,1471888333,2069853041,1068839756]},{"sector":3,"length":512,"data":[1341564724,258821068,-811751821,-1667551300,-631020561,449734915,891263036,1093357852,-1317458589,1445384797,-1344429947,1495384227,-1924742910,1060308608,1034890666,2012907429,-1983355221,1308235258,-418104409,1124799,-1601524515,926106013,407320889,-845229797,-1821920179,-1828304586,1991224959,-1568802067,41808989,1816267751,-1670972505,1569356958,1781776685,282547467,-1965507902,113260685,-890868472,1273198211,-1553349207,2102858252,1638502042,-1126483129,1522714545,876257103,-1318391653,-847784962,-503659455,90827259,-1349680235,858401098,-856924047,1835672742,81220288,-197082196,1198503854,1624321523,-1087147208,1794345810,1222067664,1618408927,-11866923,266701425,-1858172090,928406450,-145161974,-259082327,149538851,965233650,2096512674,-1162035040,1655646912,-176690168,681453326,1574976190,-982330257,-1725660409,-352982749,363326217,17740884,-558639614,-1924858966,1308948145,1972623830,-1152862470,1360487425,-349186809,-1918832826,1516324091,1755435360,-1337098848,-1980616776,-646984588,945460702,-910842561,-959185719,-671452123,-647534031,-1609514188,-1094960478,-901922900,1103595599,-1656092311,-769596690,1161211001,1834501166,1653463830,2131584467,-1295846068,-1201830642,472394870,-1488121643,-2010281855,-1088351566,1889083578,-554480618,180261512,18481612,-304824516,57056595,-1243941765,258962213,-1508025653,1088326158,-374851340,283353614,-1764684595,1642358480,-561398760]},{"sector":4,"length":512,"data":[1062691039,1707419128,1834508160,-892903029,1408604787,1715456925,574530284,-889218819,2045901561,1139359916,675013506,-566745587,-385324734,137220855,-1800367135,2086760946,1595253533,768791065,-2060333174,698953978,1805906086,135852330,546088050,-235576415,1387027084,-404568463,990762297,-2069292406,49274607,688466683,-2060297934,-30836093,1190885906,-1341479611,227268761,-79230242,-650257787,-552000671,784478784,-1630465868,1979939455,116680410,-1898583832,2020386761,-959652028,1240883639,-2103485412,29649536,360823190,-2106899452,824721384,-181356336,-1891094139,-399424033,1534242701,-225769409,1042350759,1682983182,1917021747,1366691370,933412863,-1023600614,-1677849190,1174568308,1084577905,-1039486661,46619809,-1967183105,1760314376,1406881401,-1486813487,119623659,-27729323,-1101426462,2001020217,-930426919,252414430,-1414952639,1567963203,1325942825,89511843,2008007049,847898338,1296896959,-1818334799,532609027,-701475314,-92385313,968672497,1854438310,1440237473,-1044775362,972754803,-1713696901,-2059963493,509616105,749666235,534973521,1724714996,-1025509891,1585151070,170229648,-1099211840,1618837077,1579418020,-1175201143,696928443,-2097200847,1206178695,2089929957,-854171902,-226481665,-49732863,2090460909,1520695967,1114691286,384694923,-827540146,2125339352,1698844409,-2110735023,-731578507,-487425778,1826426384,1018260857,373806010,1881345608,-1249546600]},{"sector":5,"length":512,"data":[-1457562584,159766373,164022067,1488764092,234353446,-850473730,1702630191,1633592926,-1106119185,1945827867,-635715856,-742444222,638738312,2141537001,238853920,-1353468793,1167506449,1483784905,1981147516,763831384,1661699729,-1162018987,-495265329,1323581615,1710546892,-2109019914,-1394091943,1084638101,1238427364,998042367,1895238065,973007486,221715270,-1615677797,-85581451,1263598698,-2021945524,-187917734,1469791562,-1749397659,-1912036251,2018200777,2075972406,-1548002696,-1344201924,-1715443330,282067688,-1717929146,458799677,-158780582,-362457381,492094558,-1327154720,616480818,282679666,1401242048,1288459220,321078731,-1467113630,-1857821093,-1351954471,-1586310327,418383685,-1510835082,1813052202,1187282848,1875478944,1237290219,196222415,-986707977,132469722,163611891,1690525787,837625767,-708673932,511984717,1418717786,-52985995,968262877,122588928,1396474826,-2033586030,-1364439612,-1730897032,881814124,-750038104,1012804518,-1466795331,27957104,1131078992,-442626555,-202704691,1227895328,1721194436,-460163043,-1884939336,-438294152,-2106815996,-1797383392,1362162694,119624253,-737185814,1923117535,-1604223872,-1419312998,1283840378,1456150246,1585685464,-108566328,1802715387,1022817721,-462185986,-440600840,-302913396,933546414,1198242412,666247790,-486820051,-1228262413,426625877,-239010180,-1422071689,1765113421,1502740946,-1298386701,-523753642,-677194623,936898336]},{"sector":6,"length":512,"data":[1879674545,-835778770,25638439,148376637,146479222,662105934,488034918,-1762344182,-1670289529,-1047916896,-722030730,-392362161,1093875256,-1887302292,-2000773388,151542329,-553450486,213369770,-598577269,849307726,702891640,-133323310,-956250277,-527750751,-1397852072,-2025992074,-2085013145,-768022070,587453209,1703033684,-1823643655,-1014132358,2097924659,-1040743858,794471972,391735592,-525321580,-1599055712,-1598181792,572076282,-218279846,-2087861984,-429783662,918348156,-650467553,1613004552,-1864712051,-1127433920,-1009640389,-1200554911,1998298700,-1682310965,-874001837,1942278489,-89609031,1537949276,1676003463,-1003277138,867526088,-156453789,-1229747045,1813840367,812515905,168829884,-97489166,57344895,440849890,-804872923,1745818475,-1718818446,-562532128,17300488,-198391294,1867910639,813592864,1444077550,255667179,-1446074896,-973948045,183846421,-1415424054,1616594481,-1771647693,872646176,1515703123,1451001095,999999387,1477488203,-820767721,-1679349133,653956461,-931836712,-695557064,735070846,601139663,-961757359,-774629100,-373286645,1384569578,1179911856,-1687651029,-1821926929,1524917910,-707714306,-1733284034,1367229966,246469534,-1719536068,1522600221,-400214350,1124412446,498598823,-2023686744,1556953572,-820530436,-1644711121,-1381407549,-710958874,933663532,1218461041,1565181152,-1105665071,470816619,-999278913,-1087635401,842892321,-1071192985,-997780536]},{"sector":7,"length":512,"data":[1407851929,1396059930,867557723,1756547086,1263984082,767122943,-1187364714,-1938753424,2019095542,-1151164905,403596345,941936942,-308680282,329312570,-499478308,13868064,-1522959832,1543140725,-403346105,1667204282,-274909536,785659811,-963583971,-119017905,-1410286867,-28771270,65604664,1011698302,-219113191,2095284806,-701581422,879516063,-1408464766,1318598967,-1426871944,1534829236,-2018618245,865658469,400011253,-1488522475,1641744185,49228425,-549108918,-1207243172,-1649615454,-381942838,-1759637245,-1311130324,205911627,77541385,-805003750,-1002390976,-946345367,2084005163,-1465525711,-1147337934,1150107080,-763549579,-954769452,116526771,-733296995,936845440,125007887,-567569462,2048172536,165741261,-1002748964,-109463893,-600670682,837027044,682571632,-649473579,-734411005,2140948880,-1544101826,-1862488410,1453659563,651155810,529392223,-1556732978,1434143750,-994070354,-1383507695,2117876799,-1016865152,-2014835203,-1040600545,-827003263,-1510994121,824475110,-749177448,-820047940,1844341881,2098660133,-829521431,-941140031,-142071711,896050021,1910920597,-1702788042,-858855601,-323334397,2134732874,946621870,1902494868,-1980753326,1034075278,2039975657,-1981418023,1380251944,-31969305,-660613723,-366674726,-1350563877,-2045795296,-1617578987,-1064945955,26862958,1125040923,-1617356881,914517587,1777138626,585220393,-1276868412,-1019083473,2005092034,-2044498670,-1976656360]},{"sector":8,"length":512,"data":[-375708590,1246551770,-735552520,-1276782044,660301750,-1671585230,-1345124280,1408362709,1726828095,-1451980408,-1171632675,-1274738788,-1066923482,260400595,-617002878,1015505014,191365503,-1610812117,-43591533,-68205191,-994029212,-1417262995,1136474599,2004472726,974083515,585484580,1093535871,-300630451,-697341437,-1862653391,-1502387238,-1264256669,-1413483075,825235039,3261758,590122476,770531801,-1361283203,2060227614,1121662190,910026541,953785526,-618531183,-990835323,-597388714,705503821,-1817062470,-485452477,-2100342656,-2034017521,-1433204467,-1417480522,-944363705,-649145343,-1771314293,236663346,-313740669,218411870,436415437,1327966214,694548410,-252398409,-848222520,1385058933,-38411014,1026851376,1854156196,-223539096,1212341213,1889854784,1413942427,470024098,1155185447,1802351482,950537773,-109049098,724053878,1997240415,401236347,-1305799208,-212956812,-49210561,-1388105222,2122412215,1161290294,-464347316,-1080713467,1929679983,1067435402,1511006431,-1319271912,-1747898930,-1948697214,-1422939023,-371367268,1618046800,1684020100,2008399436,1374948665,-1973639799,1402326833,-1131319181,-111018529,55050363,1703706688,-1274412532,-1385662246,-1417870711,-1137526343,1178712619,-1096488662,-1334862938,-1447358782,-1176840002,-1297766158,2108355052,-1209058122,1796916001,949953728,-294146396,-54776837,-1477850258,768254625,1818406315,-896873816,-1899533510,-1985410078,-2143287296]},{"sector":9,"length":512,"data":[-1071118335,1209009024,403013952,125943912,-2109700064,1798759177,1514906925,-339202196,-1922873138,1819861559,-328844374,575976737,613458954,-1561958054,-238362584,144844168,1255252848,-457871829,-1414416190,1802111694,-1062579569,-936375422,940409664,260292840,-2076112832,-1054324719,1213207428,823493953,-1355916870,1676255776,676796298,517454631,781787897,-1826383062,-1408681369,-1950952512,1884952097,1645741537,436625808,115454058,-647990756,646956321,1338107049,-1661904714,787169886,1006535709,-2042313616,345092248,498101114,-2017335176,1107853343,680010120,-1876719422,629752392,-1983747944,-645477593,-1776305683,-2053885975,-1771025814,573121093,703786909,-2002730653,-1473672638,-1559575896,825781935,-1989514814,-1165779351,395536034,-1742664858,186827349,-1562331603,12463883,-969864157,-2040153764,-1353089848,54053938,1490302093,1183262387,-1733727885,-449112516,454717595,1893348901,-499642909,974021520,249802986,1674637884,-1906457969,278799033,1042393167,266596602,-1404386240,168735522,138514500,1133560873,-520861424,-2074536802,1495025297,514158456,1225925761,312779046,166276683,-700480365,881021737,1318290649,-421774020,620838594,558256404,1314067621,1427449153,-1393204906,91839574,-1963679786,1750701637,1528211909,388350318,1760198237,91905559,2122602442,1628972545,-523886202,-432960859,1234214936,-1738172090,1730332265,438731166,-425613719,-1179882832,-1267950842]}]],[[{"sector":1,"length":512,"data":[1855686361,-1677264452,-2028354448,969699996,-730555129,-1017280679,501707226,1737613944,-1310033378,-226746649,2115987409,535294458,1746010752,-951221728,-1201013045,1053853642,-1913273629,2110106450,894545582,108274199,-1773347309,-717926936,1337931951,-667758146,-2064969371,1819940868,-1270912041,1194219994,2002572687,1728622535,-1187587217,-2146959231,33558528,524352,268451841,16778240,1048640,2691076,1809828590,-888089033,-1605063908,-363373035,-871164117,-609281497,307983158,2027904640,-1224148764,-709707826,1924126131,-536529388,2088488116,-126292616,808229746,-252985755,1245643546,-1851441090,-760851613,-1076268481,-542313096,-2016847122,-279320259,1632689076,-959516642,-1645328450,-1760757245,-1403387922,63488050,-1757760546,1468492281,-1753038454,-1160328828,1528644514,1487779364,-558740482,772050064,-899068361,-277445505,1288137119,-308333164,-1397633929,1412476617,1632406885,1540187578,-698637947,1217942132,-1751018663,-1642280423,175638296,660746058,-1700896406,639409514,-1350045999,-428280600,-1208360003,-474159699,796499635,1580573340,1303450045,2091628994,-673827460,-216974213,313704142,400253920,-380663857,-1157241491,-752582351,-1496873589,-1984174532,-1097686402,1486492863,-1827757412,1214615935,268074222,-293165541,1140231047,1888549954,-1522522351,1642735598,1740593042,505404061,-641750034,-40482787,-1766194138,234175472,698421632,804417770,1641107270,670608623]},{"sector":2,"length":512,"data":[1323331563,-1905379310,-585826341,1473301615,-594526062,-1954280988,2044536854,1833926947,1609912094,1206910995,-1424446382,-313630408,837947448,-307683358,916328737,-1917593767,1485862833,-1347249256,1885286890,-986888049,483789999,1828225797,-1879323409,-773884096,-297301603,-995272987,1402854605,295564276,-208789276,2004625894,-608821473,-1359797161,576142811,1194128349,-982815295,2013373052,-2095831537,1055852495,-832107414,-354786509,-1304354408,-41989237,589007657,295964779,1680175045,79064339,-875117601,-1320173384,1286994490,511184581,847351470,349430632,3027282,542280816,360553750,1818234029,-469005655,1785023216,253683458,-1428760657,211572150,1466129098,-2047045340,-500111469,1370794965,-495595151,-270965563,571722378,1833151840,-746814001,1710723260,1507817741,2145098310,-1500866908,-302046156,1595727722,-1885345,-973946629,-1330303189,-605620724,2059152915,-494240377,84001689,-1084563623,-1909846591,-231094840,-168761811,659416984,-47878192,2011473495,-381959218,-687620368,-819331795,-441524474,-942050146,-764561091,-649333752,-309343804,1643132990,-143858061,349683180,1428563181,16621333,1113523354,2042330560,-2068379623,-629765242,-1505466162,-146388411,-1172522522,459393611,1546991199,-783901200,-391708576,574454816,1175430147,-1303374058,-1069133859,-1080103481,1079366647,147722673,-581786807,-125385885,-1329216671,1178612289,-2052225312,-1937535713,-277752486]},{"sector":3,"length":512,"data":[-499816996,-188570979,-1480086586,1560432522,-862892607,1680319663,1186147351,1732653972,-95226037,-902373573,265301333,-165565991,1166863260,-677618186,1163776495,-254487361,-1648549801,1485337207,581914090,-1789994532,768408831,-1968460289,1583278251,1095645124,-1806563161,1704842234,-1109829514,624058092,1158194725,-796156207,-1894269370,-665295480,728209254,768249993,-1318986241,879098428,-1090688957,1070083372,-1131330509,-1199193094,1839071772,-518548492,-1297619185,-392724390,1967448737,953613716,-1256536893,1150556278,-570889159,-2146212648,-782129682,-1922043710,1975553293,-1572619743,1884351387,622689229,1344012481,537062082,1180018210,-480398683,-1552599990,-1782655258,847952739,-681006970,140067594,-2001443605,-567468701,-1893020233,-1771319667,-1051068097,1340204419,1627545603,-841723496,-908518465,-2078077227,-794699076,-538059473,85102843,-1601007615,1624397312,-872337886,1623997488,-432411898,-1460233675,1045647974,221638014,1075163853,1130257027,212750877,-1593662083,-1403189097,1250328293,-1976505828,1562000438,389966206,1853750730,-1549081258,-1198608024,-1399246841,-834947983,678933958,-487597161,-1863655584,-510010976,-1835667041,803964697,1806331801,-787535173,-1462866502,452284497,1382214410,1420804967,-2047770055,1130408255,1431707554,1976342352,483082810,650248312,890964735,1570146559,160116892,-3923266,1842204296,1816375859,-1615622795,-351489973,136133810,-1571082877]},{"sector":4,"length":512,"data":[1844700811,864636434,-1424340411,1923744549,1743633499,-963576064,-870908485,-1717194542,860077189,-1441099553,1885553823,447329655,1195972923,151987879,-287338530,362751682,-87402829,387647165,1188602474,1584842100,-1732915093,-1255730026,2117058216,283777741,-1467121957,-296255526,-552183258,-1457497537,120299021,822531415,-1659759991,1465293805,110160771,1751328571,1362489730,1476764552,-2078703510,-1259575857,-182314387,1664373526,-541994938,-2047115450,1635602540,1323936803,-869704519,165185512,1426994429,933841014,-1286700248,-504633416,995436688,1701030726,1988337161,281422687,-413881477,110720693,1792678680,1436615941,226747813,143469775,1660103587,-783711280,622551270,1632464127,540434833,370952670,1461860997,-877761199,1122589199,1135164041,-1515939910,1304353442,-1140887535,-911114838,670446571,1788573255,-1119309564,-775323607,-311442489,-723923648,350538291,-1529704459,-631727891,535657262,401789461,-1498045861,802701285,-841785487,1969014994,-119931332,-968802379,-22700565,-1546543867,-235496956,1581182657,-1997681585,-1505823305,123470973,-1738116823,-651255737,-569374348,2132155613,-753551624,-2141185838,1666169933,-1023028784,2011018791,-1944580927,602699578,-405940476,-626018799,642018873,-942764476,-1403476801,-1747082836,1027220675,1734996847,-1640477525,-914095192,-1670531563,1062052028,1085717373,-1378675073,1966464471,841663965,-1739215979,-1169220237,2028513167]},{"sector":5,"length":512,"data":[-1331789614,825980738,778733702,1611185777,-1267805728,217034277,334153977,479740045,821848253,-275072779,-496028093,1625174493,-1242688343,-1072263643,1662083012,753030330,-1010374405,-1239450957,-1040087561,-246745973,1283520353,-1722909080,607155042,-15163043,676510887,739518770,-903403010,-938051881,-152464190,992148289,-934885725,-143380420,-1827358695,1141175884,800955496,-331708926,-1785192451,1982212183,-1508771999,755047399,-1154313376,1480913918,-397652879,1933988232,-1764116717,-860768889,-687610275,1926466023,2108124863,2111895710,-1643756468,1471661305,2062424995,342004978,743087005,389348016,1075908656,1756919251,-1168897674,-203837293,2144083264,481441895,814792771,60678714,923974624,967367624,-1536602589,1309113324,1279047227,-1792465724,-1812704328,159109043,1459647860,-1840853024,277956770,-486292265,-1484776954,386131752,853568984,1155646761,902324108,1543038759,-1375265282,780412819,-1504208445,114926395,-547872494,326984728,-74425376,202823920,2113752714,91283561,1121323233,-1103554047,-1048598269,-741572626,-1009706198,1016361524,-1684289977,165713710,-1503299502,706604801,-611556573,-266002859,-574380435,2111208415,-68138956,2130735119,1775140609,696313124,-1977095182,101048126,176102750,-63892981,1618189532,1662218211,1625755909,662320992,-813177487,1804322352,-1152663205,524040198,962135750,-1092873134,-1530610436,1230923316,-456806781,-14002073]},{"sector":6,"length":512,"data":[-1317632027,-966838016,1680019167,-1299065987,-1048752113,980067752,667067198,217186806,1427612042,14731904,-830848845,-183407447,453227282,112718315,973065361,2034652431,2132732968,1417153935,1459838368,-1002077856,2129583794,1891512051,-1902430195,-1396468037,-275552941,545751137,932255177,1112953701,1761547027,-21858160,-1365059061,1986174987,690259618,1472899748,89967267,1622241524,1574871671,-325795599,-1102789871,-1248767738,876846603,681473264,501902876,-182099206,1662240731,902115413,558655752,1948689821,-327818504,991967646,528062073,-1794394594,-363177580,12282033,-2078544049,-116135769,-78422241,-1783252750,-1681946201,1661859851,-2047281706,-1981243542,668655089,-1326347266,-1941493798,1050635023,-1912014455,706873857,780886695,1948871034,599391796,1245330831,2124189990,1231611510,1780795030,675969450,-102077036,1309830374,-1147854504,-1768171175,-1439075707,1460781936,1779271580,-946051318,-2035770887,1586067073,1242181754,-1969526947,-680942058,1995020133,-1501115984,-1206274195,268566567,167903328,67166256,23089170,-529524218,-1876817919,705299040,-1904025424,1555681927,-944910972,1317576478,-261711465,1973020273,644313562,668102307,31686949,-1970297337,1943615290,-584689038,2052447633,437752800,2020517178,203159934,56676402,-521127410,272764931,1242694753,335864112,90263634,-512730602,-1872619515,-174170591,1915132169,1561746892,2046946677,-1671002329]},{"sector":7,"length":512,"data":[1988026455,-2044979638,526877151,-1992694407,-1200874874,1948026625,512197080,509737084,1190827113,38184153,-242460238,-2032575927,140644482,-500135390,1351754760,-1708783262,671736432,174231714,-491738582,-2052248566,-227727145,1809389433,-1958557296,-1024935891,1153445771,-969864151,856466208,220414158,-1017063883,-235235622,-566817369,1864426368,-1583875581,-2087132104,-1192478066,-197357821,1049592792,1607727356,131963008,1157906576,-1870931718,1116767258,523516172,1683034692,1897547281,541564932,1225926201,-1836578522,79244362,-650883949,1011782532,1804862713,342167874,-901952942,1230001044,1482003781,1469433193,-1773827744,-978753447,-915383402,2019399493,1603782121,-1740240512,-1238792095,-526577897,-699004878,1586218706,-707435928,-1078035401,-1685952314,1202287793,1794442853,-818292974,1124782147,2143202137,-962413718,222566836,817171763,218399487,1995879164,-986908142,755958229,-1605760552,-12634729,-960719977,-845942889,663554731,1363084334,1354890160,-554344452,2129323689,-1534728898,-277885377,152453215,1808124762,-1246838270,-751324746,1449629504,1992220455,-1925587485,1976554037,1680788031,-468468239,-1704141580,-706219111,1489927245,1626596197,1172709811,831093774,-284086938,-805065137,1499857591,1669440092,-406814412,-1455388990,1323979557,657437437,1256661822,-556080542,-615699536,2046713672,1702064485,793591889,-727530,1520805842,-858468438,-1015460868,42892335]},{"sector":8,"length":512,"data":[-365146005,1763050864,-1722799323,-2059227354,1127274893,1258626355,-1322944967,-2069254160,-2019638875,462280109,-624174310,1632806443,-2139625511,231031769,-38004301,-2082457190,-1219956304,-1281775708,-616629197,-1995943345,1289584217,1289394825,1454743419,-1135148420,-1498123427,-537547013,-1443059585,2042367287,232585338,1006909707,252273083,367453798,-1684074167,-1911740007,395064527,-91280460,169505760,224093360,-267511297,-604864597,-1015495815,-550547352,1962991611,-682525843,-1074396886,-1881049649,195715735,-457413442,-2016615440,1332107645,419313118,1848368858,224171253,-1125796475,2095175293,673061397,648511406,-305944119,-294204660,1740608827,-1833692180,-1312623612,-1696116832,1378395427,739992541,-944073632,918344003,-723515595,-1744081704,-1553212411,1801949712,-2346071,-1814507947,-49418937,402650385,-2942046,-1314674814,-332036096,289366783,-732300435,1840525039,2114955406,1050867297,1143671705,629537725,771877413,1458901772,1290094091,752857299,-1653243776,-1481428826,-935119547,-1333283899,-550162771,477707041,943438989,-2114176171,992162546,435079359,254330090,1562777124,-1153066735,-1473336939,1032911196,-145088086,-577771535,-1169618261,546500724,-1786563206,1144660751,1532318045,-1982166445,1561473228,1260987717,-1748785806,615951203,-193875213,702408274,-1229429726,-1304136321,231094164,-874465008,2103678407,1907680659,-1551460416,-1164830293,955971746,182851024]},{"sector":9,"length":512,"data":[1888316157,-774478655,1641097425,-220682568,782575153,1754753153,657850735,-672721126,1088395413,-2023388729,-941333827,480451537,-427273093,-569820910,1313376882,-390067310,474653667,-1233683719,660882776,-1564219052,-1062206757,83502407,793083854,632334941,1681352138,-651980913,1117327336,1697702452,1378457490,-127605675,1548847124,1518463339,320368439,1680931997,-2076557161,270718810,1158400738,425051177,628996836,1931545319,-2015056177,958779827,1163986897,-1882566404,-196535746,-499987108,-1558212078,-1369239572,-461148629,-884535224,2061750884,1429812095,-1226779253,693489265,1919307507,-1370390326,829826535,-1599237035,535278065,-954164563,433423940,-613594521,2012725258,519436199,602462439,-1893838502,-430886373,1459369938,-1780324277,-842463319,236023740,843992774,1887892806,1295890581,-975484006,704853467,285652693,-198757340,-1976200060,23863176,1771465738,-910647461,-359866808,1575180641,522698104,1981150303,-504012264,1050109336,-2112055746,-1459025396,1717990533,496863204,-1567071047,-1977132743,-1700354648,-1992184694,-1171428313,1148004120,1549506270,1464363538,689314909,1984913574,730457719,-1785128618,-646556268,-1214880655,-1851755618,-1416865194,2116413649,-2143287296,-1071118335,1209009024,403013952,125943912,-2109700064,-1062721527,-936375422,1835631424,1922758421,571012602,959543945,-1987219545,-1734698745,1986410877,1649854054,-1752310675,771123107,973996903]}],[{"sector":1,"length":512,"data":[268689648,73470018,-516929006,1347556356,1511392609,403038576,107057250,-508532198,-797828090,811310017,1557996994,-660142656,1178190708,2121304476,-1167268490,-1668847891,-1656293971,-1985901712,-394757347,-2145417279,562577928,583149704,-1740783769,835744727,-1876715742,629752392,-1983747944,1116250151,-1465374326,-1339323710,1527464648,-1494857105,-2099630243,-121885045,-1003451390,1540129560,-1935060531,-911353175,1221604236,-667579069,2009973608,233270682,1938874936,-1595509409,-298119517,1024402368,1336140022,-470687624,151011229,138514500,1133560873,287588817,-1537141179,-2128722159,608741076,1251116185,317075756,1691431500,-247837165,1112544228,1377068305,350564682,1699828308,1901745685,1649939941,1511417233,-100329673,1925559537,240756811,1384119050,-862031171,-1476783902,469739450,2134158935,-102860277,-980519489,568765310,-1816512381,1579421933,2110280185,1952388623,-1346578460,240755165,-28575953,-1932508790,1455717094,-1396566937,-823424283,-1091184196,-1967451033,-1130508050,499420588,-445566074,-1900439253,1608721300,650091178,1193305663,16517396,-412957935,1590686369,2073760174,-1777213821,2119817350,602247211,-340094619,1181479626,-1875842733,-814146428,276764672,405798400,1180556725,-1464508137,1442949193,-1034680812,1211508588,254363183,-44128154,-402811514,461993970,2131065781,2020327238,387687167,264066640,2132007371,1061642317,882596651,-73038612,273379546]},{"sector":2,"length":512,"data":[-11240432,716036572,-1733944122,-286379609,-1847840190,-1297903435,1787959693,-690283752,-1352207384,1392579991,-1393297048,214262281,-525526437,205418307,-1402420899,-1786205666,1328256231,1192058495,-1008980568,-1599879880,-2087403057,-670646218,56630016,-1341292436,453012481,28313280,68158046,1639045978,1292087052,-1664267059,689646006,1383874189,1915351475,-524180188,556231665,-664826081,-601550215,-1840969526,-359025283,490028975,-1702143777,-773523089,-971496768,1776817977,733501997,378507577,1093887800,1725753461,340146660,-1778349874,-798452178,-2127566668,1474466080,2094993365,1253752589,-524773709,1468136452,845663643,512597209,968343325,1268619101,-2052968306,-461114935,-189868710,1300466154,1040432445,-1560717345,1071206218,2069215657,-1948999843,-1066828374,-270882324,1790580748,-1892671905,30109015,14330403,-1036052108,-448682724,-485881987,22623823,-1897987654,792213194,-1261970497,539333250,-1999024032,-2094147362,-1157782820,-1278947963,690761804,-1667648036,260775112,-182641735,1959887777,929265705,109746380,2000395978,958360038,-1248781663,-1479409010,-702944989,-1405956208,-1305994245,723496213,-116417694,1775843314,-1502423173,957622551,-1439673426,-537926297,47831694,654711031,83682403,-1875064822,-881684705,813429437,215127352,1978467321,696900101,1340914911,1340624343,528403675,1729622898,-1091631116,1518091117,-1931380519,-1967228306,-1152397379,384249187]},{"sector":3,"length":512,"data":[14248090,96,2244608,9043711,-1887424704,503473673,360714014,536903588,-1527759951,1445237641,45683858,957959874,1908200051,193364483,-723902404,-2079898727,-769641832,1636156856,420259523,-1877341673,1248153656,1950688144,615583872,539366153,-1170437924,1200977538,483358244,-357605104,-1416503884,-1647409581,1650550066,48332980,-425261052,-2141183896,-433978904,-1441631748,565738332,407660179,-1069529926,1317479177,-1020278566,597391710,717805772,809050765,907890148,1491545444,134764179,511542458,-1265058738,1569900643,38071736,1671169,85983476,1753727424,190912224,-2145784780,627578693,-687729048,-1429232065,-1557122952,8305181,-1811306268,-1191116785,1881097797,8571025,1751040,-976247584,100666367,685785869,771990235,1985220934,104800324,-520547328,2119617,1425103100,76488549,1760685684,-1893832895,970880023,-1668937627,-267488240,1084711368,135820734,50421800,1164190419,393490800,-1845659298,-1332641725,353823557,-878579653,-24939472,781195725,-1265746771,548111127,-204541491,-603877791,-225729531,1774196495,-2142210494,1261015114,-2080293813,-2015094507,429438493,-754901824,-1070505369,534281588,-2146225961,1940629630,88059792,-1878404652,1463122031,390184288,1988927469,1781125771,-1210249274,70283903,-1966796751,343892489,-818517460,120362900,-317974296,-462061493,1779269104,-1045756008,1100776184,-805305042,-73925875,1276459264]},{"sector":4,"length":512,"data":[-2130560236,-287050095,-154906584,34350649,50430885,-1022388321,29622273,-339285238,-225533152,-1316689144,-1691543290,-1420223790,1786137526,1718711773,-596185929,2015496053,705330657,932848814,-1373210006,-1182146857,-1607829562,-1415007656,-1194959978,-1509982433,-1415485958,-1180665070,1602812426,457308851,371764128,-810344296,-1839138647,586780115,712670070,-1498107798,-275028311,-1599887011,-2146896395,-2145909760,940311168,335839488,109150296,-2113898468,-2137512952,-1205073278,873235200,243499224,-533087701,-1490678355,1305248876,378366137,-1302230466,-381191533,1233788332,502312358,1755982409,2047068134,1744425584,-653378651,1119725340,-712235624,-1755109291,65564212,1628455440,810160644,1377043681,369451344,98660442,1636852248,-1335223802,1914439393,503800272,556373114,-1738136158,1118666024,1620401431,-1306338938,-1502053810,721024893,-170220884,-2145417271,562577928,-2000541560,1112051747,-1130879607,561604489,-1998583042,-1521815029,1483250329,2023530404,-1540847102,713720472,-1962755924,-2099727316,-121885045,-1003451390,848069400,1565002372,420623268,1258173221,529391991,866912394,-1924970288,-381626315,571774108,-946640137,932037482,-1908176672,-1012340679,-923780210,-193862813,1034602608,-1882986248,1999513919,285360168,172101732,1141957681,291787026,-1424418234,-1916367266,541561287,-1327266679,308580988,-458151350,-1993305134,846797911,1309893841,333771066,1695629904]},{"sector":5,"length":512,"data":[826954260,1350341861,1427940681,363159894,629235287,-1587128042,1851463333,1561798081,396747126,637632095,562454808,-1906108250,1689015873,-1719248492,108633190,-1851625190,-1435887002,1813702321,459723186,-420365714,1000566811,1850093369,-1164063875,1055390638,816457237,2004671943,-1869396597,-366505703,-685520453,65027591,-133709762,658513664,1372716672,273153571,2087267777,188137742,-1914205866,1921461551,-485236280,-1759179140,-651571094,-1763142407,1109344792,757687205,-2004639944,-1079732802,-1795344237,1070652356,-1008267163,921770878,159924257,-1491707754,1782101316,-573201232,2084349747,-1053737008,-956442289,45736659,-863133234,-1564373849,-788950435,-268968066,-1729622566,1850671581,1773352111,-1879195614,-937852771,-1126335000,-1659264583,-268705481,448132847,-1298043063,-1567584927,-1032762287,619379093,-339959407,265674400,-894452747,139452590,127315710,-895698722,-1229719874,1877544441,-1892085697,-571711784,-1575648397,-985346078,795946763,1902623372,-1150328074,544634185,-1193013915,-1560766209,839202287,-1904837140,542496265,-171469882,234947668,39354849,-1406255492,1185698298,466907991,192496433,2006856997,-1085359890,250114894,669113106,1799345374,-453007723,2017673297,-380505136,1356246535,-238059694,1590033005,867971094,-1208289342,-1024061035,-673321939,1870252241,-790724813,-1468655980,-1388799034,1219243247,1896883951,-218475677,-2091361216,1382720268,1200103855]},{"sector":6,"length":512,"data":[559130645,6441096,-1910578221,-93368497,-1542028214,-1541225322,1750829279,-2028696213,575351313,1375639229,1661057407,-651985673,1248271024,-666590188,1054748108,466806399,-1865774881,-237530352,2129034251,1740668945,-510701010,-1212572035,-843290380,1054830968,1756391745,-651532147,413856278,-1514705099,1262340400,1534839040,49713907,-1916940550,-680874519,-1416408796,558257647,-90612835,-487843867,1529356288,203103759,610123070,806252023,845300401,-376231215,1793981763,-570361234,-966765394,-2127143492,1667087529,1765284823,-1561594178,300888659,-1708489227,-105463753,1611711450,1642284417,-186099527,1642120130,-1833898675,1860185293,869733281,-702157815,-1551903619,-1992717672,-1193373533,585196673,1829307442,151274587,-806462021,-743738373,2049605176,-777276148,98233318,1353686762,-730802227,223120183,-1590785287,-1256860355,-2045608263,-755026253,-1661096828,-22262067,1580808416,1669797574,-1720285694,678820587,843234689,763577183,809675672,786469508,731822115,1888041920,-177519488,-1008223234,-1751153713,-1441204446,2099601030,-1084975920,-1971447123,-180283275,1192319147,-1811254254,193883231,-1144997525,161746141,-2050431459,46200621,-1342603167,1381376836,-517312269,671571737,1665529809,2126373886,-1509962765,1627039311,2000629605,-1396639888,-899614958,283269010,-1779950294,1212470286,1677491266,254672728,-1609308272,-551199891,-2117637819,-642544679,-499026532,-105668532]},{"sector":7,"length":512,"data":[-1359667037,186814537,-479285262,-1088657718,-518279549,-791933848,-1352769142,204926067,-2033944059,-591201169,-1829895251,1103211804,691896148,-59709459,254599998,1774859117,1602874391,-1556726730,-735371863,-945170191,-316088314,2050947685,921766149,81725617,-1608726859,922426183,-721821053,-627286338,-462830229,-1652763894,1326738174,-2096334001,-1499494560,-2020497411,56931207,-1743689212,-1917201733,1973164026,269095466,1489087804,-1477629868,1740592118,-146351281,950075347,1320107462,-119723591,1324550549,-1603436132,399186780,1103297390,-99572400,-928318302,1512831936,1833756264,1876791318,1345955943,-1197578535,-1890216583,-1177308851,-672014006,898751131,-1226987692,-547052009,-1744736876,197541147,-1106135568,683659711,-2140789892,-666349668,-352184385,-2097570857,-1275015124,1569784846,-1076566867,2089598873,438739010,396333407,1739183154,966470582,47942656,-215568833,-1151404470,263915621,-1845486336,130025430,-769652864,-335447877,41287780,-804650610,2128427381,709321363,718700685,-1232889240,-1600378807,-2108021115,442930801,-1439061398,-1032479516,-1754471178,-1495561490,1774644718,-1211764625,1640207783,2105386393,-1759717406,1719283162,-967958409,1570147044,1818650246,-1558161390,-562549341,441858189,-440957791,-224371802,1889487189,-374876732,389937522,1719179165,67141639,41975832,-2130692084,-2141711356,2015102593,604537344,176324760,-2097104852,-1483873780,101609375]},{"sector":8,"length":512,"data":[1922358359,-1839367686,670624351,-2014179931,-1440841820,796401144,-1579263414,-1602842210,-1996887148,-1701732895,906828969,251896032,69271614,-1591720431,1078858500,1444218145,386244960,102858846,-1583323623,-1066525946,1981613857,-1847625184,1726456319,1449774242,1040422173,-309993832,-1638193591,432434754,-504333794,276963335,-1064548254,2136545133,-1469610530,-155325278,1915757086,964714055,596165162,-1992144752,-1033332699,-2002770039,-1473672638,730514088,-1958557520,-1024935891,1854943115,3155177,-2035848414,-1581882906,-2095528912,-846187892,42355911,881656634,-1920771884,1483791414,-225626215,-499637146,974021520,-623295254,62450787,-655082353,-63008893,1083180024,-1870391036,-466506686,1360151568,440799588,1696286393,-1845200612,-2070338488,-1188279662,877433604,1318290649,-1811613380,-2061941680,826975188,1381242085,1444242769,367358298,1704026712,-1450288618,1885050565,1570194889,-1748637320,1175027807,696803736,-315785306,-12941485,1921662580,-381740901,852295303,1825111603,716533034,-1738345678,432118835,1882423708,-1891578362,-1594195328,-1516222400,2050277284,-1659289846,-416630017,-167953297,1082370127,-1731494065,-2114457296,1195777278,1339470893,878935832,-358425990,-345814627,1022098719,947888241,-1443631846,673633230,-822146845,1097851462,1095347584,-346836995,1720997433,148174050,1775115773,1295262591,1423594837,-472349690,-1389966109,-1424046876,-1266789686,1190276283]},{"sector":9,"length":512,"data":[1637544106,1162581875,909890815,1789372537,1416445098,-1547212174,-760671439,357272230,714268683,402145071,-425866590,-1641262830,1303464747,1562561148,-748538131,-293838162,1604422019,335884251,1572191814,-1179752976,-1390840875,622365038,471255148,-1280242955,-1817164472,-38902960,-14635383,1528941148,616622774,294969683,-235208689,640045008,-192577092,-594648669,1265655104,663762488,1785603512,-58690046,1123157921,34317083,2081443641,244123459,373080938,-496910441,49702278,1103458562,-926489952,-1778368036,-1913093884,68413929,-1004128356,93126916,1857242882,1136339220,740942564,820095535,1374531466,408974325,-1428633858,233430125,-264875177,-1314026250,-179406407,-1589757374,1010278711,505478039,431407502,2025578208,1373045104,-535678771,-1931728270,-161639440,2027104549,2104775185,1801050593,-446847509,409164244,1323893271,-1285718921,-1996137611,-493019008,338491859,1113441071,-1089949908,-1952482049,-1664140117,-1344405046,-1073124460,-979442085,-137703567,-454636151,2000476340,315293782,1647703327,-721471223,-196317818,917935964,-98862254,-768190278,611099889,-230309653,-1886438370,341211543,-2067454101,1863310635,2000782535,-348322648,147578531,-218034713,1866597528,1699608615,-1094852638,1450844236,428838864,-1229541427,527769243,1485383967,-1412748124,895381191,1756465399,-245501058,295100239,-1607079866,1985085079,585102178,-1841343479,722598016,-949129693]}]],[[{"sector":1,"length":512,"data":[1224627037,217119620,-16488793,-1094756210,-800244882,-418729364,813417725,-1199148620,-958377745,1093855299,-581042670,221726917,640596505,-350372620,1070507374,-1811030152,-1197691471,1072318401,1563307663,-1585072745,623151704,-735157573,-307430040,-1182554652,2051444418,-279736027,1732140611,-1160324335,-1083343123,-299063927,-171057615,1333605920,663377980,3750069,1770771029,916511206,623347274,1284241343,324426796,884689306,1581749788,-665383714,-813030978,-459599440,354922060,2023187317,1306872243,-1268239491,-1412295915,-1322175401,727318933,1918632779,1095426215,2107014110,-2146211834,864053049,1935674048,-1744799145,79298646,-435551844,-2069247343,1632087671,703470244,-1968857111,-2090145768,1817905526,-1689858359,-1763592339,-2035635621,-26238246,-1570576635,-1667657166,-669922407,-1366582820,-747332327,-2107812015,-1648818510,689037200,233087838,-444473829,-1926781027,1745413774,-1768014231,1111915561,361028330,-1582942098,475640351,1476305834,1107467687,1517708679,8390518,-2139088892,3673090,1477706881,470188416,142737528,-2105501660,12069898,-667677565,1007584128,-1943942732,-1709755896,-2037227096,-1576165603,-1886003561,-1826691146,-472433167,1745742456,-1577876830,-177560218,-1658796343,-435539463,-1490958425,4092841,1175520289,319070496,86065230,-1587522027,-2141317371,1712916001,453419424,119652462,-1579125219,1954422535,-2055198360,-1734047894,-1698081131,138819709]},{"sector":2,"length":512,"data":[373256200,1349003640,1784859266,1605932535,1645249151,814359048,-1843132190,1869171296,522342895,1987967613,1508674148,-1675196030,680133240,-1971152732,45657130,-659280757,-1137800318,814482168,-1937565500,-1231417550,483170912,-828953238,890053440,702767318,594159777,-1440250852,-533230136,965624712,-1899779864,156345147,110855055,-901968088,-1747208587,262398198,604044863,554058000,239276196,1158751297,434563350,-462349754,-1860024303,644389828,1259512993,321175854,-1528744371,20860691,1151816741,1385465113,-1794819764,-2057743276,2036094613,1683527173,1519814041,-1761232532,-2049346468,-243636457,-2107631643,1645766161,417739146,1716621924,-1356700135,635755165,-1344423953,-852728410,665926526,1574729595,-796788357,-144060853,-1206404044,12061568,1543692311,-318738816,177480842,-225367404,866889141,1811489250,125792622,1968458741,-542397898,-197922864,-1191230485,-44307442,-552647690,-1118352607,-1012451928,2141720235,-94598963,466799415,1024563987,-319402687,-1616888245,633261744,629024550,804590446,2128519397,1490089265,-1593782881,966148288,1113589787,-45522347,-86562973,750119498,594510539,1095548992,731059420,-1517429777,-819225459,1178702201,-934384698,-1236614883,-739655622,369546642,857126529,-376066125,-690345388,326682995,-1677151668,374326667,587571105,2037498266,1418312745,1730913374,96427564,-960547123,591864360,144917720,-358445793,-653928126]},{"sector":3,"length":512,"data":[79443604,-276456627,-24979938,-1387643982,1890465614,1467056545,-188632492,1341091145,750580105,-280083074,-246019445,-16527043,1138726338,1171872854,134563080,-1367068703,1036141372,-960520879,-662985100,-973483191,-661421373,835067568,-1325974627,-2014795554,-1009689367,-890811302,1162311198,-941096641,691054719,2062455496,1263222936,777704055,-1731075419,205406678,-568789307,-1111781512,127584992,-1442760994,-829081930,-1197441361,-1407144958,2121111072,-2009616443,482415287,292912658,-1091903090,1833371723,-39273826,697146084,1443891082,-1155797461,-1054197173,-1145752306,7913430,-952259639,-2017238386,1207182386,-1175037710,-454721150,-585079880,-204229271,2069315964,1186682334,-1604328712,-849409882,1020727929,-185255863,282827662,384114,220287430,156099270,803691449,-1928635977,1196572117,219814430,1600579870,-9268676,1134719569,-158994620,496292697,-1688977421,-798030497,-625610384,-2086459153,-1065095925,486588322,669896349,-655781316,1531084643,-402560215,1823407592,1662662711,-70129967,588655127,-1729433399,393430169,-1307745252,894949981,-857403691,-270437466,-317202972,610309467,-498635634,-1532871898,-1735581816,-1995265253,-6332520,-1889498347,2088527121,937600976,34575557,139086367,-414868360,-471886786,328460109,-2124163048,-452645125,-1262104727,-1401441344,1872576587,706444977,144441875,1875694078,-1652408925,1063683349,1025607262,804681913,440076227]},{"sector":4,"length":512,"data":[-2054331495,2052501246,-416075675,2001935563,2073156548,208204783,-301177374,1946539533,-1466700859,-1535981689,-1608566975,1824464478,1645875034,332544229,-546701399,882381310,1926772805,-1729749549,1929283099,1642771681,-29198193,2035431940,810839543,-859951931,118272220,-1654771560,918869234,749082626,-577146611,577441826,50015477,-1098902784,753687,1807343616,-1351876451,-1576964864,-1299969535,480338343,-1507911554,-392552866,-1165335400,-758158230,-1351754906,1864805058,-422117780,1209153677,-976772132,-1482400615,-2103641838,-1657123375,-2009184367,1373206052,1352625034,-1302452346,-377878955,-1730810484,-39348189,-1905612872,2107300146,1639474712,-420890232,35815131,-2036030886,1939658542,-1432873312,-2023893348,-975197280,-411475752,8391293,-2139088892,3673090,1477706881,470188416,142737528,-2105501660,12069898,-667677565,1567966080,-1625663622,-1631974941,2052452219,972324070,245735289,-1662465626,1135256018,944369786,-101086047,1550558264,-1998588222,-1524059509,161089950,1843098913,1074758602,293880072,-2067716024,1095258131,1750603141,1612154305,428229000,-2034128792,1103654939,-394781305,-2145417279,-1491204384,-596993445,649987712,-157474661,729833847,-1708894162,140644950,-500135390,1351754760,-182056606,2125047565,1610770940,-406179927,-2137118935,-1507259870,722117280,186826926,-1562331603,12463883,-969864157,856466208,220414158,675704702,-1370643610,-594834106]},{"sector":5,"length":512,"data":[906848342,-1914474278,170566761,1511287587,-466055672,982418328,-1895581460,1219864892,-2046323046,-193717110,-1722842152,262604195,604044863,554058000,239276196,1158751297,-1677434602,75045958,-1725675374,-1035300220,1268417713,-1824208592,-991348659,155209619,1213305925,1393863309,354763086,-1520347563,-2124523755,1717114405,1528210849,388350318,-1511950755,-1988206825,-2074044410,1654162969,-1727645300,-2040949660,2040293017,-1041668922,-1082396807,-715818259,1615770034,-1011140309,-131384594,-80782416,-760383849,-533854740,96480770,-1609105224,1281048595,-2040329135,425685270,-1491945211,-1660723399,1596103663,-1573084650,-2003963382,-1889557829,2100676554,1050563196,-1555170700,-359939051,-381422608,296719806,-1359393903,1650281169,673686051,1929214203,-1463293786,1930509884,1326890674,924306009,817798725,1554754866,1906393007,532904575,-2008743489,837784781,1289215143,-85219543,-1945905469,223926329,-959137439,1357572831,530081136,-1235827095,-504626012,-192705793,1874827923,1783539364,-723436870,-137377046,-1699263148,-1987410179,-1205186942,-1817922142,1107287994,1060550965,-930007163,-882527089,-1982073534,-1026597259,-242637292,816139359,-682324914,-891918531,636138660,1294718306,-1616181414,-2078432959,1352378818,1105055611,-26208970,-983178066,585199877,-1261630673,2031262676,-1016364645,1458780419,166249926,-1792846203,-1672948792,-1676076423,-597148556,1255730816,530236356,106875367]},{"sector":6,"length":512,"data":[1932104727,1339740975,1889278854,-1010753948,-1896640974,955681853,-820479425,-1010147727,1950466090,1024487535,1100063230,-483292138,-380390267,1984778591,-450061677,-1255788232,950109209,-366230754,1548466033,465630553,1733109764,-557051864,788969272,-1732432067,-855213319,-2018560658,1746450982,1314220902,1510588900,2017850005,-421583024,-1506614760,-1221239169,2100113767,-1430259438,15275298,785078507,-434926833,93651601,2027513876,-2067571097,1642877815,2115431580,-35590511,786295515,1657190866,-710511875,-373110184,1664774236,521824866,-622843489,102237179,-2054806346,-1747629720,-776303589,1027087995,-98641070,-767780804,-1535590675,1883341512,1854186307,1431238242,1729604899,-389084881,-593866385,1189103961,751248194,-2136804037,-426436102,-272063914,1474072935,-1122371892,-841947073,-1663767378,111264536,2073533345,-910529492,-1474792734,-138416214,21940533,658807199,-426413424,2107343285,1541629779,1862864794,958435559,1971652743,1894585442,-169753653,-215216404,572466241,-1620650282,1191731278,339716568,955659539,339657355,2040852960,-1856482881,164023132,2044352870,-822547346,1342101051,-1362792547,-132961510,-1593417415,-1790742573,165080574,357826908,1356588075,438276134,-1585148850,-830259757,157331542,-2045579097,-778035772,-1720017179,1431358744,-1238663789,-180248969,-2146699471,928941431,-1154658296,257453240,-1196965862,463879746,-255728791,-2020804453,1984795519]},{"sector":7,"length":512,"data":[-809581815,-1121486272,2041650911,-1587801360,-1338040920,-885341671,-2014986519,-978578657,-660637139,-1784479622,-1590808155,1271297666,1600401048,2013679104,96472030,-1176500256,1812012459,35455007,1393164684,-1784330386,731511383,-430538336,2053137893,-1634113496,-1504049539,-1706652114,698198121,-1175487581,1802267046,2099914454,1763294778,449737628,311652508,-913171337,-1512261035,1691827662,-907148642,638023080,1534126040,1952242138,580527505,2002113637,-2047828195,916037814,2120284126,-611918230,1512730783,29402654,100728864,50372640,18890766,-1604315643,-2145515775,638124576,184721568,52477998,-1595918835,-438300925,1199351254,-1910733058,600304082,422186087,-706840731,-746716183,-1692559519,504886780,-966097562,1110287329,-1836882647,-1725577126,-2076112832,-1054324719,1213207428,1477805377,394641768,-2042525600,-1045927911,-932177018,2015201089,-1948347928,1554585020,-1747582085,434340185,-1331569047,2044385857,-1679408600,1720314742,-126050840,-2078242815,579371544,505959564,2007601057,1687064611,-545838968,2128975761,-1995818498,-2108124124,2023499401,-1540847102,713720472,-1962755924,-2099727316,-121885045,1954532354,-1827084282,-1402578408,-2095528912,952906380,-798187757,-2048809396,224612562,-479143370,14825485,-426701240,-1563516000,250166508,1674637884,-252035569,37752803,1108370449,-1699466998,652807786,1101816665,373625124,1192338529,304382238,-1532942775,-1053930734]},{"sector":8,"length":512,"data":[911020836,1326687457,337969470,-1976220079,961303188,1414829317,1452639577,-1778026148,-2053544872,-1316201834,1918637797,1578591697,400945530,1712423520,944333336,-58745351,1942204027,-312095651,-1083625666,-1083248869,-1675073570,-1042481326,1901,0,-805306368,619290626,-984922783,560437458,1178908194,723951445,1593682404,-995667990,1468340707,2050796065,279349748,-1404127183,-1505422209,1200743003,852431482,688711813,134519951,-1924009224,1295028202,1956729894,1478746722,-1865256671,618021662,-97863650,-677361239,-1084447371,-20935424,-272661890,-1199126566,1939756407,2098322783,-1126172782,942033379,1574297978,860448721,-855306544,-883775146,-939131085,236042032,-674760860,-933916805,-1401014065,-1122232897,1028532437,-1441770221,-630730858,-1139414684,-1277086148,-1972904062,846236027,490263943,-1318207572,1698574019,1584434362,-1042891859,1251827759,-1416623149,-1521674090,835472881,-312050363,866181002,1888809577,-1911453283,-1963079102,389748459,-575335779,1682591141,461939533,-872624791,-423659607,-473866472,1675416318,739446160,2093211091,-325550903,-1736713571,-214198976,275996205,-1889172921,-1330031734,-76794232,863302387,-1662997497,1480083245,-1177799088,913624143,1544269681,-742351405,-1588422389,-1211246262,633870856,-978115125,736518026,606889761,-1348870085,1408526927,445861362,-728446251,1832848631,1598400708,1096855154,305180886,-958040712,1773479994]},{"sector":9,"length":512,"data":[1792854107,-1085131137,1512274707,-782448417,358640942,-1266737139,-912650652,796914747,-975272481,156930730,-1528119318,-396369386,1280061433,1082406863,-1077807444,439926840,-1450289824,1300016654,-1260401299,577858672,2141270453,1226995107,86146382,-1041687698,1259065835,116107325,1554984890,-1773273117,-1212074264,-1140574522,-1298225475,312207826,1531510602,1374807570,-361980308,1903335349,-362008728,-518162508,-1135756028,371881264,462082231,-1794489646,1508947439,1288879565,124713546,2060599085,1795920091,1639103608,2004815431,1198947556,-518149696,-1397719376,-2047303229,-1042327698,151140838,-241573623,671880237,1580875051,-1489462936,-618108929,1028193220,1584183560,-2024931491,88723405,1961367129,985170284,885895631,1998505558,-981877726,2050718159,-1093609227,1547344092,-1972911302,-617442505,-1160045458,-774973729,-61755848,2123948863,-642657501,-1740542727,636838825,801066860,245859411,1268803716,-1388300708,-395906340,73246758,2081220634,1843634099,-738100125,784248616,1166946419,-1965629514,1838865165,-1113590238,-832765160,-1593405977,-1857295136,-1715166003,960721264,58417770,-1926453528,-1813148303,-553135809,-1610584914,30670951,473956352,-76058016,2013190,27263254,-1453687030,-1769755679,-2054640794,-1578776922,-363233753,1187623345,-559452837,-1133601914,-1553295627,-1394983377,-1743927936,912821468,1786897335,1969822126,1680301526,125739139,1373809502,2040880714]}],[{"sector":1,"length":512,"data":[2057812570,1587042990,-645534579,444900515,-1653939031,-2015258530,-543606114,-955619448,1170966943,1889265833,-1541379406,-524686883,-409344648,268566567,167903328,67166256,23089170,-529524218,-1876817919,705299040,201515184,56676402,-1057998322,-1915452512,-510452282,-2073753951,1527167469,429289868,-762085089,-2138956601,-1570084382,697932267,1500115588,106862303,-41393655,1956448405,69271614,-1591720431,1078858500,1444218145,386244960,102858846,-1583323623,-1066525946,1981613857,520593888,-431882114,938124157,-1164281955,711826135,-1561741314,538535419,-1749162091,171740192,-2011068350,596165160,-1992144752,-2016500699,234385513,-1737808711,-1688213544,557340175,-495936900,-1868421111,-1440085406,738910896,191025330,-487540178,281161739,-902689693,-1491320016,584626906,-1433761687,975804442,-734753533,1775076184,-1708955131,58252427,-1729873778,-331706749,-2061737032,629603858,1674637884,2120452815,-93827190,1074783216,274993410,-466548158,1360151568,440799588,1193011001,304382238,1688282697,-1312798054,843846372,1309893841,333771066,1695629904,826954260,1381242085,1444242769,-1782224223,1166630999,-1452779114,1885050565,1570194889,436595064,637632095,562454808,-1906108250,1696147009,430334358,361704551,238667707,-1228457320,1171852299,867716492,1404619995,630490480,-1030123281,495170484,-1340243496,247494147,1681916008,1289964921,-1273041325,-1845409521,-187688305]},{"sector":2,"length":512,"data":[-2128101335,654845222,-781708734,-2092888033,-504193008,544088504,305103098,2137560722,-219092103,-1996185533,1216414218,156393896,-1899486510,-1620443125,310242824,1237598327,981445088,-1991923053,939656788,211819754,-68181100,1513535822,370878563,980741139,-1455412909,-1120982926,-154196547,-665526697,1873028291,1948558021,-545456673,-494080138,-10942638,-705509786,-1395117481,-322312749,659648055,-439814453,1181696639,-1546705379,1744721895,2107567592,2053583260,-332747995,139170925,-459846414,1582544561,-1941052841,-621501544,-1079536661,557275069,1829213038,2065441995,-1035178499,97381335,-2013926301,-84624635,919684858,-1208560149,-33915507,-894375721,1284998609,-1444061629,-1382961760,-1714724720,1943602225,1756083134,-1597987540,-1155421499,-1642014897,-1256918683,-625153551,502071128,-605931253,993530461,-1859712192,-1414209129,-1983596405,-746742809,-325380696,1152298654,-788013581,486052011,-1088021433,326271152,-573050553,1092462535,-514570465,-116775196,-1725802306,-2013398100,-123960106,-1454479891,-705865791,-1069550778,-1316626976,1776037720,397498127,-1473056528,-407232829,-507196084,979427776,-338600642,269639819,-396258111,1511133909,201318958,791361801,1444002338,-456165684,-1445433029,1067555573,581562078,-511464869,1997173475,-1750716615,-819481817,-1148912545,1235097439,1495739379,-1906994277,-1750056629,-826127015,-1677019832,1769846276,-436522111,-1812796793,-1709664050]},{"sector":3,"length":512,"data":[-923688302,-1241408298,1815751213,-1829055792,952889235,1524609937,795691103,1504116200,-1228722360,1844689552,-53413505,-1334208031,-1934762570,-439665007,-769462038,2092129958,483456882,-1915498253,-1984048648,-674382840,429646832,-1259128610,-395888368,-1519717437,458721499,-1642278852,-1739041575,480496927,959286947,-1555563865,959144376,345233222,-1619206080,1805449084,-2039162584,-2006211592,390290503,-1697258033,-1046794154,2126869744,-1020238909,1090673933,-1442893129,981097859,-1654734304,-876321013,2019288330,1469692936,-933357172,175505394,-1303056334,1260174099,-1945676161,1701927129,1948739388,-870456865,1431547553,260127929,1207533741,-1478252456,1878742644,-4993701,603953514,-1719732506,228353755,-1077328019,725852506,-1290294168,756415962,-535997690,-207428550,-1896378368,-1009823407,-3594846,-934062072,-1125269936,1402817648,-608971351,805015046,1941582335,526747740,-1370656490,-727525051,1881134529,644299348,-2093398120,28684586,-493465260,-2049263688,1795305469,-1609632171,-642285498,-838800383,1572571904,13942799,-170782000,1210376219,-1538252141,1644304700,2033720264,-2093374236,336072326,-2004856221,201794449,-1192602864,67605361,-663997294,-1583817090,424560147,-1801188091,1302729585,-400541287,-503109216,1227297609,1915298988,958137349,-421345681,-877956700,-1676779005,-1731042510,-326741175,-1264776271,-1193513122,1226935692,11044968,-1655822862,-1078349900,541443009]},{"sector":4,"length":512,"data":[865178860,135818535,-566415846,650183112,1673288972,272209434,-1164325308,1842404407,407815906,583559478,1315262570,1952789400,-258703232,193249772,-1702852449,484231540,294939982,1438753561,1094922142,67434578,-1463968120,1713051974,1035344846,-1961738532,-1471486969,-42540995,1282262970,-147253423,81924408,1082241800,-148657780,1915642981,-693271875,-716695632,-2071946836,-77315203,-142401441,-869825752,1865779928,-1897002118,-1427389744,-919950426,-2065592796,693727869,-1775191350,364850631,8989764,257380599,-1505728713,-1790327759,-854506970,1395328982,-1432288088,-1287955517,-938673224,-697011315,633672914,-1861564777,475387988,711142673,-1453173099,-418999835,1127081536,-1202266514,1949932111,570982492,1060065334,-1466769038,-693492730,-1739000288,1446094039,851349289,1853959627,1523986021,1506078067,-1725774928,-732767056,-1718146279,1485973690,-1835422610,1207965225,-1298506991,-1406972268,219619528,-1333041732,149291213,-1961673064,-318502770,-2033254717,1140064409,-1450992291,-1902106115,-1015250866,45643946,1757023723,1538548991,860966548,-37820290,-2011065453,1280714881,1621359376,1291022641,-2139960967,-1092107890,238508036,1561303007,-491751034,1311736800,2716163,-1076343168,-939524004,-660446959,-1265891311,21460963,285844,-1597890004,-770175995,-1507849792,1073908872,1110204652,-1751186042,-2144213617,683661454,414744178,-1954518859,219813444,54720,-30507737]},{"sector":5,"length":512,"data":[-1550766983,941728236,1124288418,-1857785757,-519801737,1224943240,53119201,780723081,-1998337789,1925188914,-1571601584,-982339256,-2107899517,425921629,-166623081,-874990898,-1538723279,-190332603,748063685,-491682213,9363969,-574439395,125895587,2013673740,-1640778524,299905256,2088816258,-1281353493,31289333,82653206,1639842123,-1744764738,51465361,373351203,879900903,599579272,4503679,-1901402224,1643595139,-1316944043,547234818,916369706,135099587,-1287574720,-61413360,-1064319997,-524680036,559471378,-1757336106,1957953515,-1309237611,-1355483690,1413026983,1720069653,-2054082154,1522454581,-782208774,649604532,54950822,-643110850,-759560786,-1309266932,-1597066441,-88063296,-1310094521,164757505,-909316064,-1437653357,1644308812,2033720264,-2093374236,336072326,-2004856221,201794449,-1192602864,67605361,-663997294,-1583817090,-1668536461,135924274,-865668255,-1038075494,1716722060,466521710,-1798278128,1306972417,2001123741,1906643666,-529720405,613779748,-2139050427,701973243,775363533,373843301,-1540479458,381880781,1381567526,-932628072,-951881324,1646299141,1928710366,-880425357,-1630859983,604022853,-764069748,-716635698,1982682666,463849674,386728966,33177720,-586406207,-84313397,815279109,-1474034023,1169907104,1915984846,419542210,705170475,353281107,-1809263070,-1327795143,2000044841,-1705791340,1973075286,1638910955,849922827,848940071,-2139069126]},{"sector":6,"length":512,"data":[443617412,-891015408,-1508615496,283150007,1943077786,966023496,975580103,618546186,2042156576,499386227,20642484,526109826,-550087515,1000995082,974500720,-2027680263,640450625,-700539732,1371875193,-2071254604,886553756,1668735560,993566996,-734417884,-1817345291,807083556,1792193179,-921063893,-1738968819,-1011150707,1888705242,-1290122069,-510275399,-1788079506,153977613,-1262712465,171976137,-2120748757,-368365440,150879630,-77410068,283711057,1230128533,-1817121501,-1673345098,-696844022,878538586,1579987112,895414786,-480588637,-219902629,1822649039,-1917926126,1494622984,1511973812,-728254394,93335699,-2012215065,-1798543822,-1499374823,1803350906,-393527154,-1420242766,1591946555,1696018822,-1270084301,563189360,546642843,-1421437357,-1879042683,388024352,-1955349491,-436154960,322869256,-1006072181,-352402450,-201287290,-2086838973,-1607860767,2088783502,-1200051517,-1173492990,-1268449432,1364104283,-1092059597,563319805,1445495176,-1543827380,-427871904,-443354471,126033152,-580906246,1046445112,-1041884812,-1106279542,-1513615874,1631191040,94975,-1987819744,807421794,1000541906,585408522,286351360,-1067438842,5113488,342115633,1661428224,-131321327,-1863549764,-20679679,-1007447739,67414213,-1330502564,112066688,1944664064,-1755066383,-1362139876,540362391,1535319448,598161530,286570248,884410959,-1222881519,508498260,8484023,844268438,-1924764800,-317316762]},{"sector":7,"length":512,"data":[388969563,469499908,781738100,627572994,1287263372,602996991,780240688,1427546319,769547528,-1273167740,81967743,-735013976,-1879719279,358851689,2103264,1781109299,983327856,-906481832,476534131,14619296,1733464309,16887451,1481790749,452331240,299278294,-2065012352,856687328,1761607890,1970037614,1144874340,758132788,808464453,1835076109,826110834,1930038577,1701147235,1209604206,387784720,20482,-2144489472,1608521462,201424000,-1071620088,-1879048100,-403130324,-184531616,103678491,-1582741255,193187635,68034119,290710528,278725600,1787059280,247840785,-805163261,-1744621391,1124473995,-2113917718,964690414,414744577,434471453,924258134,312033282,50825797,1963299379,731920625,-2074345402,-271421440,-2142969375,1689526019,946176729,119449353,-783688536,957677571,211711268,42901537,-906050700,1142024233,381364608,1309050884,1204172288,939031830,1946390397,195821570,-1496613648,610059008,-1859917498,-1916585275,-1252438698,1436636519,-670120381,-778963149,335961285,-1405617046,1218467367,-2006633823,-566030316,656656832,1949571533,-1827102656,478954498,-1736417223,-1685207214,-1534058436,-579419295,-294374629,1179881860,1948877633,-2113693259,-507964409,-954001076,1712328589,57261284,1849126402,1936827624,874316806,1439449189,924404904,285339424,815301638,-2053319069,540155320,-1838074722,580012740,-136435881,-1193374750,1068493169,-1768578780]},{"sector":8,"length":512,"data":[-1270846630,473379753,2041650865,-649296365,-214786664,1771659158,732371382,285491246,432403851,1410953401,-1635016253,-764683594,763761678,-876391745,1404345551,-663356325,-160144541,-1898597268,-106664554,-1389931639,1015554141,-2042494311,-920273909,203866369,-143510883,-1084163306,27924225,-546821623,-1755178850,979126978,-882977590,-1591745039,1837585273,-865919275,-1452516236,-705910450,-212021415,1034107341,-411604614,-1214081107,190941482,-137375761,-928136698,335333203,1714428936,-1837518624,-953313061,2033824412,1725115033,-1441965522,-1502410292,1082085004,-155696576,-2137238959,-1613291144,1945312683,-2081747650,2048933808,1026335854,-1226864121,-508168210,270220232,-1178805141,1510924803,118334680,-513460327,1921900058,-703282600,2051032487,479215256,1948513286,-1001007422,946412920,-187393487,1617896802,1801513795,850860014,2102732710,1394645548,660016790,-409967530,1628841764,1612939831,975981818,525021218,-1737925642,-734052343,-1507313195,-774634177,716226709,2059447838,1071263363,-1525224167,529323091,-929894470,339788816,-41408981,1335406673,-914797325,1099858034,-1341555389,800988270,-217269729,130139488,-469209761,-1660944302,364478384,-1987819744,807421794,1001058002,585408522,286351360,-1067438842,1644813968,2672778,583405252,2045794404,53070073,-1946318616,359130914,-1962202901,282443817,1341682318,-1299316601,-1559971477,-1831599050,1416899265,1434718679]},{"sector":9,"length":512,"data":[-2060519176,788072533,-115845746,713823982,501940241,1438652806,280184480,-1708263797,265111,809143550,17094476,203559604,192915037,-592254592,-1259861624,1291179005,-1274700544,-2020859296,83713280,1904757196,-939859580,409723156,-1072690192,1886005298,1480236132,1942616111,-1608751275,-184492270,459756176,185043630,736348305,-1917202429,-692566266,478156987,1853715457,999458115,-1242170917,-2059022203,1860292000,-1744741263,772296358,236007680,167864320,-618175056,1754641553,2051709346,1281172137,1578596910,-668596632,-408058784,-1108240290,832264376,1684228054,539383188,1498547841,-367892699,-762340808,1789339753,-467225996,-1718737008,-1234135390,1888199381,2015746241,-562693663,103138199,93163551,1618811145,-1831229850,-1595504223,-933123963,1246862305,33563193,33579024,14692362,1615860228,1880753665,570950112,167927952,48279594,-1763167732,-1650107754,1905401318,1570899753,-1514746447,1459981464,-575238564,-831121722,1868285897,-660088267,-1222785388,2108388697,879583767,243499224,-2080311236,-2129116144,944509572,1410630913,377848152,-2046724004,-2120719336,-1200874874,-803436799,1541572325,-664357342,-237912223,-1581552102,-814737577,-1961260655,128049270,570457631,-1199169272,-1452302151,1926687153,491141580,-500135390,1351754760,-1708783262,671736432,174231714,-491738582,-793629686,-1171387550,-1696160352,199422322,-1290747344,-1974439338,-936271174,864863016]}]],[[{"sector":1,"length":512,"data":[-1924970288,-2040931019,-1646561907,-780808791,932038605,-1908176672,-1012340679,-923780210,-130183357,1997521896,270795006,-736503231,822755868,306450660,1175544913,-1849398679,1149837383,-1456977518,778179268,1293100225,329572662,620838479,558256404,1314067621,1427449153,363159894,629235287,1739544854,-1340099580,-168202650,1272821171,1876326562,-2143072194,483782983,-251806166,-1398897631,1876959020,-1635423549,-890598530,1132019312,1213617459,-322238855,-332865996,1605261495,1900366893,-1456639235,-510253925,1088990886,-205209977,1759048321,-1008309835,1477861590,-416897046,-315646852,2120551163,-1436219697,1177639195,-600486827,-1027767236,-1702015339,707201062,-1835360880,831797334,878209786,-759730246,371451395,2017363969,-587376928,-1246882476,1546454918,227161030,823683983,558113646,-428165906,1822899902,-1694113029,-1993997485,1793591740,462709425,-1549805677,1357079646,1452891361,118292847,-994217078,1697043320,1436030636,-1245701821,1234740681,729214173,-815928445,1762092238,964899215,1289199263,-306360487,1934937915,-2042444377,358012617,1530582315,-371599720,-421121456,737499517,-1164146910,1237678634,1427038076,444396038,1456450788,-985804691,1325179309,-1996823241,467185001,986743575,457742694,-2140404896,906080269,14157504,1611497526,-2147428349,-1641646591,-1150781852,-971702033,-812726762,-2097478577,-1964448300,-1412264356,-379124997,161087117,927456919,-1341599105]},{"sector":2,"length":512,"data":[-163270962,-351619147,533098615,-348029989,-1627301169,1709045964,-298380808,490623749,1827212197,948846105,1491533692,-1169629094,-562048375,-768069938,-1872801790,-564643164,763167090,-1662289561,-1871945869,-796888797,-1309138621,99475857,438142439,484440815,-859234999,360503050,-1264420963,1757666332,-1035484883,1231801676,1929361044,-1645974156,1723479689,-1045633159,-499398180,501596934,-1795062953,-1944415625,1797582628,-103505538,-1876454971,1123110910,-1675118327,-199771360,-35551377,-126293353,607095730,-1139784449,1839192574,1571388988,-494973381,-1800225808,-381171889,-1821436466,-1116475973,944511103,-830492896,231196434,-1678913819,1590684521,1019786780,-239784257,828523114,2072913892,1848506404,-889214481,-1451137399,104083269,1489834445,599140764,942687762,467322902,1155705052,-1011328817,-1159457193,1161690529,1811820803,1575212053,1044203019,349505719,2146461704,754411300,-86510142,1333485531,-1168177725,-624609083,1418315921,-76822601,-1380445715,1358935547,27537454,-138774774,-1104377122,2141875146,-1897698806,-468123076,1993769836,-364417509,-1097653082,-2141448451,-1522972083,-1965439050,-559766936,1670946042,-1540646254,692735633,-1217762698,-1296337123,1855675897,-1679935606,570056220,1775933853,-694782046,361356871,1797905098,1716995758,1207584159,1035706267,7825050,25182216,-2134890488,1078464515,1746404737,537362880,159531144,-2101303256,1086861323,-398979709]},{"sector":3,"length":512,"data":[1074758592,-1591039532,1647747495,2005262454,-1783600152,-8770808,-1717647351,1552358060,-684561493,1918139612,1567933482,-1483040726,-563614113,-689570695,906209243,1752998698,287893314,77668422,557862419,1616254213,1578567073,419832192,111255654,566259227,1484135687,-912908393,-1625630731,585550317,-2016256994,-366116054,447228535,520595566,136446078,-1574926815,1083056904,-1423636190,-1994004642,-1377292821,1234317349,445412701,-1015259384,639391825,165834906,1653645864,-1331025398,-1305736478,772498128,199422138,-1205812688,-523991206,-964567465,856466208,-1491609394,407282546,1103268827,-701166301,923640672,237207774,1991829049,-1709603802,-331706746,2053075896,254001578,-1545537987,16662287,104927268,1125164065,-1861722866,1683072324,1897547281,511926580,1218520193,-1840769582,-995547063,1630555026,911020840,1319146721,-1815438826,1158234191,692605332,1347654853,1435845961,-1782224552,1166630999,-1587128036,1818826405,1553401273,710269300,-437159330,293756951,-1973282714,1679353393,426135954,-428762522,-482187239,-130930866,-1315208250,219265749,410726734,639764932,762581672,-132136450,532709123,33294320,-1328938122,-1070983664,1678220389,-1014899656,-1888100671,-1000705747,-1341638092,-1593888723,1821087949,-2126542884,101171496,599902912,-564373818,-992796993,2001234334,-1031905671,437161136,-1253305069,-1093995345,1906154323,-69838066,-1915000252,-1303154713,990734442]},{"sector":4,"length":512,"data":[1276631152,-1031539522,697285936,-1458597748,-370825075,-1293275609,-1788100405,266282846,911199958,-282929265,-1962416839,1169470413,-407732394,-2123660700,1866220606,-1918270831,-2000129640,-248281843,-1948319681,2078694364,81457233,558497037,1872238094,1625929490,-1503459840,1180955376,-1807903764,638042448,-1912688052,-1469935451,-449230092,-790538908,-1519686153,387697132,373298840,-776771583,1529340276,-321180285,2107358463,-83449199,-831633999,-156921004,-1087079082,-109456579,1684791194,-1060835724,2132961059,-1245060439,-1410818734,2031498391,1250473174,-549596794,-311207212,-1269623241,-272729239,1784322662,-1760695927,1068909781,-1317221992,-1455136312,1763304450,-577625783,641676109,1721443928,1389604758,-708857429,1310507866,1524575145,-1079288283,1039460125,1572649556,1445493732,2141798242,1068756839,-848240261,-400628326,-1275169323,255753891,-874559148,-280821469,-1207682662,-143386699,-1275732615,-1360527938,-636636414,1544437884,187457326,1884846560,199739030,1245037496,1425980369,570161013,-763225990,1525636894,1969158662,-199156064,-254715265,1506839510,-1414675454,-1676761874,485724499,213047919,-1871240513,2040303864,-42323950,2078076583,1468087932,672959679,2080310259,1850040322,-2129494065,-1817225243,1928575773,1342538177,-106668870,1107858755,-809660318,-1451095235,-1974330501,977664896,-8634912,-1116745959,1440659972,845130316,2044252086,-1104851019,-938946365,-1920381521]},{"sector":5,"length":512,"data":[1996446638,1740401473,-318744094,1788274702,1785558354,-364326147,-1700462703,-293417014,376050780,-222226483,-1451788633,-187974230,-157001115,1618442072,271462468,-1889393521,-250235952,-1701164386,1618656221,124286136,166522054,-850561095,1547324955,2121094859,-1877701155,409008402,531560202,1094406230,1500920631,343042160,1229470662,577785815,386411686,302058147,-482674952,733809234,-1113632737,839369569,-2090045683,-1387557208,-1957015207,2127525877,383304336,-2047992697,1220264161,-770265353,-1378622658,1456459854,232928861,1926202133,715050877,-1111022046,-1062135735,-1620401629,-1947510953,1044856610,1807596152,779700024,-146662075,135891677,-982245922,-1138327773,-1117793040,-142123320,561683718,699798298,47416421,-987533064,-98944875,-1113651137,1306140416,-1224153493,-424656064,2095117142,-330177304,866452412,-187796251,438881312,-1541759710,-1189445925,818648163,1866998676,89913089,-1130130221,863597593,-2049683191,-1926272282,-5072063,-1646216276,-240599300,-481286156,2028846429,280922903,-1843786893,-1031482065,607446472,1469450987,-1933870161,233472604,156629476,-179898589,1911158941,-551311137,1625018968,-5910563,1836903610,800030314,-2105473569,-1915442212,-1130024159,-1684463178,1662402796,-804684242,-677599945,-1840041840,25909253,-1292107317,675897407,-1698641492,-2138944596,2143735393,-1403682413,-702495600,-987453293,-883857246,163153764,-1624149961,153556937]},{"sector":6,"length":512,"data":[1590187588,-1991523494,-1030327614,1526283890,-845020005,1474241202,-539845634,1370771436,341545443,1754506524,343176003,825552628,612818053,1513521656,-1121292430,-2064027743,458057889,1229226332,564178511,21437545,940180024,-1393115793,-1259523218,-1923918892,1464576628,-843795284,16785410,1824530438,-1146438219,-752237714,-1162679925,-1175159934,-1392744722,726589137,1591719208,235077803,83959872,781937352,1809260215,-891041939,-272928646,-1356039306,1827351241,-2141518664,2015102593,1439851824,-1594819434,690761538,1511458312,-887114194,581480779,167927952,48279594,-356503028,319011243,1654878669,-990716770,-1521676591,1624437704,-264630781,-2133021872,-1703929442,1752876814,-634192692,-1891516369,1074767450,293880072,1153509448,1773304502,1115536818,-490002087,-1322161786,-397659401,-1700605802,1078895279,1444218145,-1452168892,1881747023,2063788194,1884952103,1645741537,-1824104048,-1509137791,2055126980,-1559185103,-1868175471,461816234,1764870256,-1679140911,-551246165,1389032234,-1037276542,-2025215364,-1041729507,720475783,1842179161,-957277162,-1480951207,-355260213,276963335,1992984674,-1707919066,144843412,574656035,779429129,180514234,-1614189309,161636976,-914579929,-1099655319,-325327414,688530050,178430118,177253931,507613451,-1272141463,-1494947560,-1427557816,-1024935891,-926929013,-1026807559,831277432,-859625272,54174159,-1932249971,798060537,915243867,231321222]},{"sector":7,"length":512,"data":[-379914082,-1864222707,-29749661,990817034,-1347174162,1251799725,-386384497,-1858105405,1076292046,1681707838,1678836390,-1727380976,272863433,-1426975671,291787430,342539078,-518215833,575148522,-1139645295,642033960,-1799279029,579751075,944608074,1328768233,-737871043,1158300303,574443924,1286624421,1411626297,-1790269102,-1520287659,-379693291,2119734792,1511417234,384151914,1708225116,-243638761,-2141215771,1637369353,-1735593384,-894333854,1234199459,593832662,-937851301,434532762,1989255784,-1448580685,-1335125306,1838892745,-1681462856,753778799,449016092,-864904057,1956448057,-1652074028,-387851146,-1847429091,-361095577,2082400177,-1622684870,-940967811,167804831,142712904,-2086614998,-1589097968,-1737877371,-2111928525,646521384,-1960662878,589873710,-1852635507,1037914587,1875361725,2108548156,1299611030,2081897077,-70113018,-1091253286,1601493302,-268888808,-1480699629,-1347180053,-1157760104,-1212175387,-837109430,1701963117,813077983,293453393,-917114133,896680645,-1293107777,-822779697,793747341,-332771983,1681284502,1958866359,-1420836891,-392872203,1726969031,1681626932,-361697410,1434780246,-1399319861,650669075,1487435708,1031442046,1405656854,-1111664725,1691109308,-560817927,-848864809,-229220718,-295116914,-701801870,-43434960,-1356702311,-2038711647,-873623086,-366678145,1027515771,995458171,996107178,-1283619656,-140708954,199832089,-1695393271,-245436699,2086132849]},{"sector":8,"length":512,"data":[99353268,1111214175,1829544414,-564445017,-1130858278,-741759077,-1019622608,-1966642520,-109048152,-1333486194,-775095435,-662982093,800177950,-998398248,-1755237689,-237439283,2112220443,-1626113480,-1685767335,-812593017,646265052,-1712276448,4740009,-643879230,-1236526262,-589661530,48313185,-1576742319,1528887798,1829792566,540349534,680141106,-787740536,-1192141179,-1351083792,1395271333,-1417319915,-1313782682,-1192086693,-1130317524,1426447856,-1758483848,-1154849495,1867394643,1756674410,299933118,15871272,933329379,517392831,1873899967,1704830681,-957835105,1820834181,1074465442,-920858645,509133980,988645583,-1124026896,-700735458,-788662394,-2064899132,800449506,863522212,1049990679,-32154675,1699336283,1718526903,587407127,399121813,1318809455,-1452123337,1090376773,1327209837,-550177536,-1404639446,-1191660973,1583821795,165513100,1012409199,2071592868,1442057846,1403770177,-922510616,-438197790,1692731447,1422526878,-188133645,1142400272,1995661022,-1484456835,-1477119367,-1628168071,1957645732,46721361,1961205449,1667611492,450731343,-1852973828,-686901828,-1163505392,860531937,1330506973,863659726,-1994749445,1439797272,-220195435,-1266770302,-839847435,-624691969,668854180,-1267335694,560928020,584504218,-1282172352,-220339741,1493277979,-1934972357,265879977,619074901,-598159806,-1599586116,1867403449,-842852584,-1630126677,885982134,-1862575843,1133180399,-1349512194]},{"sector":9,"length":512,"data":[-1951914676,-753047789,195730501,249122524,-75611262,1059974640,-1431838975,1122673079,1960918901,1696989546,58472633,1588562023,186885244,-688481527,-1759222722,216591129,143389504,-606441903,-1096008613,644754943,1885976578,-1793077074,423916343,-1590521297,68941721,170501855,-856676153,2089230406,1645979018,-69467153,-272443241,498747565,-1995887374,506583667,1401230738,1299340973,-776215928,607444112,-231865529,-545220315,969647323,1898528374,-201016760,-797721882,-1629553414,60792003,-1497045233,800224771,813577708,1065469639,2116751135,-1611684669,844124453,637166088,2089303624,-2133343789,930258415,-426627294,-1186969324,1457700381,-2144002062,-2032200730,-96218527,-1624005577,871444870,-603469044,2026135551,-143016453,391610639,-179060569,-1269255392,70508627,-778304250,761889071,-763903778,-1663717924,-716008672,1665036360,1091969650,1641111798,-154285307,678664777,-1395671450,-1264230228,590070375,1995030555,-476483076,815362514,1553099740,-1758808386,-1524990632,-1799796891,708479145,-2097959441,-1837849700,542435888,-280333763,-1310827372,-2054076054,581002131,-1033969715,1477044041,950113905,1719040172,324048510,-1538260658,-674663843,374750522,1594069484,-465960844,413939999,-2036670136,-1815429148,-844606465,-1550176610,646797957,1629857875,2096478853,1647448771,-1496877331,380899119,-2139215040,-801898346,-939447503,-213579805,-1119441082,2093522935,-1308206643]}],[{"sector":1,"length":512,"data":[1274614753,1310736086,-767195108,-725827190,-1108191902,1974720970,43145238,-1887452943,635024626,2014262991,48744694,2076906963,-1756613330,1658126055,-1015796122,-1629600563,345501499,1154032059,-1650487852,622128161,1514251161,-931801454,399191108,1140599377,-2018073508,1132200135,-1792803176,1306214139,-1478197612,1459126012,45570985,634582513,519517463,-640309062,-341918235,-167201783,-148877406,328060754,-1752059224,-555088644,82820040,1391981554,-949528679,1011797775,-1837034948,1030896759,-804188384,186122676,877620983,-1014919170,438188398,-1378763045,2007824078,-378492585,612646328,-1911896843,-707687512,-690048402,671476771,589145109,1977821063,1664153603,-1642832701,-1310539652,1581504931,1644087016,-603453038,-1795265648,-1655113557,-387074531,-2054645242,441064059,-1377590037,941147450,-52284551,355103037,-466097492,846689351,-1510792753,1173798788,1523506875,-40306962,-879314256,-1649414966,-1906675860,-690660707,1277973357,-750712924,-1951876510,1192747531,-1305664490,1087248574,-380410467,-704213146,-186380406,-1202126457,2054231761,-601153298,-1910427699,-275431301,434697080,1168449602,-791752816,-302054117,-108300041,1630667289,827820148,-2020642041,-626703796,976297745,-1315140538,-1364644231,428128454,-324223637,89840234,1335018815,1789999875,-701278340,-776447144,2033113947,436222704,-1678286636,-1583265690,705489592,-36651776,2023848150,-1603272118,-215346175]},{"sector":2,"length":512,"data":[1791315499,-695708809,-1117006745,2065544124,-882815109,111034762,-1602103939,515338581,-2014164107,-1870300230,1884027415,-730970333,1656441043,288241403,-1418257919,23071103,-1745045600,-1312822228,487614679,804639465,278623986,-731757964,-1802919939,887795188,-617681755,-736439466,-941270366,-1646888017,1839182331,197818383,-12645697,1677145964,-1594400224,-1444057171,1564422307,183728726,1359387212,1094527807,-1407552799,719721518,2063985594,-1627570933,-1078617162,204504127,-1162648355,-1490264958,795758038,113803003,-817903209,334152069,-1317452026,1932788479,-1510963017,2063910894,-803948069,792126716,-289211946,-9017716,987154242,1634950715,1366549104,-11202417,800280868,1729098812,-1698412111,-354934229,-1976551203,281918100,-1880354612,423315478,-699796096,1131359354,-1487744064,-953979692,-824126301,491905957,-1444157772,-709067483,-973379889,-1713239037,-1069617224,-221949416,-133183082,1613878105,-848789768,-320766675,-810497577,-213280049,906823557,-925047235,561738914,398702109,2105929546,-32609445,381315362,510152004,379990384,1663982948,-2066788219,600049241,464703012,314321897,-1183591204,-1653827320,1254858254,71067930,2069230691,1158292599,-1833397376,1810248920,644148983,-1231245378,-361811482,-1540174647,41804591,678598604,-1945227491,-522967335,51813854,-615935002,1229780254,-1928606946,1784255960,-320409570,-174158351,729319100,-932864631,1085963340]},{"sector":3,"length":512,"data":[-1754724333,-631597209,-1207634383,1057784759,-1954332250,109268563,-781046505,1173025977,1137896670,-1762932048,-1142213221,1310915794,2011487003,1991604943,-359478603,1563524511,1781102436,1783805242,-401879289,-522919209,1878917254,-1402803386,557625098,1370865334,-644001916,726349221,1843797834,-807324695,1384883610,-1651660187,1853008242,-231382173,-873773590,1135487353,-373464326,-118002929,-1733601161,625372914,939431311,1595732663,-1216305767,-23770446,-1243464489,41738134,-1643440332,-146746432,789416638,1322679690,1611831031,-1118293938,627212436,-810332226,2132965178,-581684481,1428928510,-67514799,529624080,303922560,1397723688,-1618548335,2138494626,-290119559,1713264437,-792245107,1683173629,-1316961478,1606538016,1563563468,-1999060963,807229260,-378222186,-1959217292,-2025196992,-954433349,754583652,-1079545621,1991515386,-2098407667,-1153506862,-1613709484,1021185280,554480464,46222611,1060292461,1165447948,294220362,2035625534,-1217399204,-1956110280,-1669982994,584603792,1323283576,-434091651,-487606465,-169990702,1171804979,-2027981748,1466629787,1363660301,716489412,-2116499345,76065749,-848275179,-1111250330,-1897802232,1830875516,938204232,-1174785338,-1237175059,-724891403,140309856,2063930065,-1159757993,-1791311123,-1328437401,655717810,784550826,2025014008,-338022954,1865539114,-179873290,-14157388,-625263919,738762330,-730940482,1076726128,446135295,-689149684]},{"sector":4,"length":512,"data":[-1305325783,-1990283187,-622514482,-1714949015,756188919,1865544271,-1393135553,-846886726,596752267,-682686149,758882347,-217191380,-104038043,378973625,-62368695,-1359497218,1614610153,-333150839,-1246871265,2011447683,-4791806,1323437549,15123620,96193227,-859010599,-906122340,1228362823,106496623,-148545061,-916914567,-597826293,-614345791,1535761043,-1686181512,1306132333,557476903,-1167015765,-1609329107,716346084,1396536581,1657070285,961634929,1486661809,-1202151496,119769859,1214695549,1723996885,-786577396,-453231986,1710081235,-1629728561,-1965293415,1128171141,4111778,847797042,1824169243,-9621193,721067398,1409029860,-1144328648,-115236712,78930656,1136563623,2146700038,1124099731,857662609,-189200277,-1750597531,-628677666,-1685177361,1368829649,-610154706,-536130048,-1684436812,1882939021,11202970,321992520,1141065858,24746133,278857864,1416416397,-192048983,1631101650,-2060250619,2070679527,805658156,698591811,1457754368,287816057,1220543686,703346973,-987029906,1148834189,-2116330690,1326751525,-1623221755,-197933,322843879,-120447985,228313612,-1266073049,1011203091,368088492,614072626,23575957,-409605081,-637466463,1986059859,1682237282,-1556053402,1060862351,66968522,26589593,-543266410,-777171157,-825417205,1104997596,-1127895042,160375329,-831384527,-13169904,984024829,-534041515,-2142649230,-989962822,56796354,1841956861,1783181676]},{"sector":5,"length":512,"data":[712195291,-1608078885,-1995790313,-1963758967,-977279841,-483761000,1148271536,1859531600,1426205824,385162069,-277084591,-1251897623,-126738214,2026577150,-2140153088,-1774785027,-507445127,-1735827781,1404957022,-1814266451,-680217616,-490841603,-1827613309,-944828459,207036275,1903637380,-952906299,862527970,-91716848,-738612832,601309617,-300013049,986021882,-1242076939,514988213,524341732,542275022,1563839491,-490136773,-1689789154,-1076925585,-1834045110,-1796412058,1426732005,1788843219,-220965017,1602945408,-805428180,-2130371552,-698747213,-631231386,1510372756,341615920,906756613,1158396194,-1414461603,669676688,196041580,-950542831,1860018260,856699912,-1990686939,-794842759,-738192584,-1887930948,-1766012211,894002987,-1854061949,-726109389,-220082482,-719909302,-977423265,-1579804119,-1183128064,884486426,990582344,-447644468,345455020,1717528976,2056573252,369905835,-1234083387,1969228790,-1988723406,457533397,2027603374,-371064240,-1795808079,-1753850692,-1983162526,679831167,688935500,759189771,-276911345,1648193378,1205365080,1574794731,178041861,-1900422328,-2145162390,-1850183006,596041834,509262894,-625998822,-982588326,217127027,1675223496,1044131037,2040137895,2136418079,311029398,637226505,-886473017,-1342974342,1681681303,-1249236424,1143810759,1366843041,480702604,-1216021699,859405404,-171104900,1607336135,-1468898806,-1887460023,1993164565,-183687397,1465129207]},{"sector":6,"length":512,"data":[540573940,1516344112,-1784277473,1484896038,1816367526,-105832770,295098497,-735694799,-226205178,-641137281,1830258545,-1970056473,1775398498,-1833805552,817464911,2093632566,-1171462598,-1554201816,826165914,1240929280,-2026769895,1614570,-406363958,1270042641,-1821307725,1073008817,-744744960,-367632848,-100836318,-1296101875,-448308504,1962629146,1253638654,-920366093,-949311302,1159576406,197822924,-1126040629,1176482019,-1310118129,339510018,-575137008,1146758725,1504708252,-152634664,1328005141,336168889,2018581288,2105623094,907274938,-1736435604,-1882946699,-1430768612,-394635864,235021743,-1987244896,203922648,-1597607836,133194303,37664265,1203859691,1466097795,1813488631,853078286,87421334,820019400,1912719603,-2136932337,914821316,1551651268,-2052093247,-1873924444,253685455,1624314761,1753278628,-1567095978,-790994280,1450922915,-1277931795,-1448399390,-2037644418,22049120,-712328568,-715815134,-1823076222,-2007307034,-1483165447,-1067998503,-72345567,-78121880,1387079248,-1136784187,-645724054,-1855684065,1382515790,-1885187882,1770847758,-39440001,-512478762,-1311391130,-126267813,-1267642205,-1325683427,-1669072773,-1532648333,1940486626,1242932461,-2117732485,-457002044,-823074352,2033760072,-25003440,46510380,20662281,2134347049,-318277886,-10929465,-245763838,1247411276,3749162,333201721,1777371171,540984516,979647448,-1877033797,744823568,-1770614577,-189725474]},{"sector":7,"length":512,"data":[-1113497034,1242232573,485108270,1988313628,663097576,-273191827,-1167730413,1263598580,732478204,1552254398,-1593644476,-761015016,1417712623,-1676116220,-333035132,662264438,13979013,1812224300,-2051840056,-570316072,568534534,-2003057359,-1740906873,1959197813,506297044,1944130678,-118036575,908550925,453229505,862986851,-1151615733,-1417393657,-1421819321,-1676842997,2326846,-156500539,747788427,-934902878,414044104,1993098899,-1478915939,-829090853,-612076751,125957304,1077552345,1638992910,1966535099,-2133019029,1492647629,-660084122,1117690176,1871988139,2051895877,-469831847,-1118164937,-238149547,271809051,-1398068776,1924000190,468828771,-516077111,-1560360373,102828132,694088860,-1968264159,1109984454,935389000,-396820277,-1070275356,-1080846424,1054877480,-1999142606,232440967,511980222,-360077261,-1796454204,-1752638162,-837192998,-578475335,341302933,-772341128,-1635823273,1063638351,-207646203,-1875193853,-1757540960,-1479145575,-1059342218,-1362444219,731820266,328014154,850466312,1901737291,-930139986,-1213267505,-452104082,-990730632,-1488092394,-993039483,-1010549391,-589289299,-1840096703,-472288919,534472601,-1988707921,207997927,-1275861127,-1176021037,-824941757,-183016483,-634868838,-284933496,1660455511,-892171993,976227420,-575201647,133601731,-1309374913,-2092710572,-1170667835,1373998574,415963688,1066538895,-1808954822,-632048001,-855711513,1891434244,-387618865]},{"sector":8,"length":512,"data":[221986721,1467862050,-1370952966,105456600,-795608402,-1833447223,697679492,-44626157,873211452,1133643008,208029511,-1511432716,-1414316554,1298934521,-612698421,1345300099,-1096013433,-2002226190,-50472055,707682073,-996920050,1501888619,1126240646,-498838529,491879977,1148179646,353331711,-1727848356,209724789,-22708902,-1707001216,-887848416,1522501683,1503352558,1472115664,1821297426,182943766,859716962,-578057912,1568530346,1440405736,-397050561,-990434471,1863575694,-233705350,1213912577,271186032,-1500694068,1531310247,644871280,2057359847,211618791,1875374970,999626980,499034363,696511371,1993482057,1743354345,-2011499539,859690052,-479070667,-1853521744,-449278804,1086467153,-2117197497,-964711431,842216323,-1010893140,-1055848126,151026248,-521276248,731894798,-1014044268,-1600198277,1492032931,-1905642163,-1911699453,1584195762,-1680868232,1520755735,36072486,-554291563,958120563,-1661066204,1773179107,-128031359,352947854,796399910,181226063,782849088,1538660171,-2071835840,1205748466,22093255,-883598542,-60639989,1405408596,-1576812250,1681030739,-1196955105,-361751957,-1033101631,-755772192,1044725924,-24424408,-1676985494,1730822671,143280324,40358520,1653777337,-1287493669,1166358222,-823759508,1655314910,604409666,1072235871,-1968072447,2118505043,1639339447,98362323,-822245333,1578248545,-288110004,-1996212979,-1734811428,632899955,609331092,1385466035]},{"sector":9,"length":512,"data":[-1134225019,105697225,1702003724,-1243675874,1151948309,-2032813548,468606014,-784090619,958361870,-31113956,1475125310,473816830,-939591723,2015066841,-548402750,-493464811,641992649,1166102975,-2006048041,-1612226653,1564880940,232609450,1744581890,2079388099,-514106183,-332838281,334197081,-114272780,1929118396,-476499999,-18139621,999228708,-1110303577,-1253886550,1793646703,1431320300,65844342,-1436216498,-2071057793,991679995,1816379354,-1314102857,-1359437740,-1692697736,372002790,1309757878,-506158992,360808541,22716399,-1465125110,-1959778356,1420622384,1894953096,-1560284983,-781344529,1224527264,1105028767,641778458,721304632,676279112,405243438,-159522598,950730102,-639431010,-1906020696,751683519,100864096,1750064939,1742872027,-931178437,221001544,1684077146,1006912624,104146698,1399999854,-89678645,-2142124791,-1733454077,1762390119,-1670332244,1631379511,-436015075,855610305,-914877465,-1212262262,-324201974,585836804,-1380558520,1145230242,1732301415,-1755161109,-1904050071,-122844362,-1822020460,785737580,1697008042,133141901,-2112112404,7743489,-994087355,883106971,2004843284,1647655702,125892335,-82169829,-329676326,2028940317,-670435002,402070080,-34843589,-141226273,830167406,369396696,-1608107301,1713676049,2113413490,-2050493658,-565687307,-499229777,332400660,-822460790,-168531113,-342389523,203327334,1051796221,49090455,-1747725192,512732803]}]],[[{"sector":1,"length":512,"data":[1429515856,-1097373881,-397901745,-1465943205,-2019381881,-223019454,734979514,726051520,-1785352128,-299339014,-322330386,-795069362,-788507310,1399674194,-51148292,1180353786,-682005998,-1996961919,-2080142897,1135231373,-1084317666,-424192396,455679767,966367692,651425687,1763526967,866311465,1058054271,89696263,-670979575,1058758,477703750,1366202849,-542252170,-1606552315,1145200488,-622366497,368821416,969921956,150136640,-1960962197,1239086565,-1744606601,-321584972,-677778165,-900949523,247107225,1976649209,410684856,-259551831,504276954,1279249068,-841152670,-114926406,-945216493,512705498,-1764339257,-358327816,-983920855,310774140,-1031738001,-172933004,36178952,-365220055,1663662932,1262778653,2037016174,-2012106726,458848366,1011180776,-1828457166,-1894657787,1026206921,1776546064,-899129272,-17409117,-1315461729,-784593670,-1309767541,1373965230,-285118003,-704574277,990249444,-1910845159,2138903075,1160839565,1802454199,466060828,1991548102,-1984080436,-348241007,258868451,-2118709707,1814419853,358003566,-1249822720,-1733616518,979791517,-2010383004,1645574233,-2128560086,-177361804,910640029,751823973,181979715,39732305,-1013082831,290457738,-1719609087,1921420729,916501184,-2137874882,1916490467,1960315321,-1641024961,-366889155,-57044543,-1356551253,-600270878,1764800637,-765756673,1125366538,1470123255,271730265,-1640864121,744872887,57117630,800516205]},{"sector":2,"length":512,"data":[1858403498,-305385217,1499502769,1459167,-630863621,1116724432,917362423,1178832022,-943560016,595911699,509484202,799904077,-398005078,1775828252,1120634968,-863076422,565513636,-742490102,-197206577,-2141700692,1103638361,607299836,-1883914569,-1507892362,-125010457,-583327588,-2134044897,-277957527,29352935,-378509690,745130919,-597357161,-274493501,2056501043,-278016817,-2131985762,1866879494,-1829542625,-2066216673,-757324586,118694376,-2042214375,267764723,425601820,2077109288,1109986692,-263806448,1073308286,-1012951284,1252384555,-1538383334,1711089482,-1116004945,-1737955205,1967456496,1197371543,-153636572,-1919626603,1340063024,1081647327,-1607353922,660105638,1070460648,-1486098486,-407372677,-1554053822,-56452236,-55174226,217694941,-390344734,-555982814,1606533171,1756751466,-1793135026,2136410178,1702820027,-2109706770,-987234645,-854642465,-57126938,-2034398725,-1824786312,-584100235,-527952683,-1700257681,710813506,-537541707,-1850975147,2014931692,2047311857,-269725675,-77966660,-512080437,2000744362,-188859778,-972989829,-1386078182,-354089221,1330904649,597471090,122210872,62732679,1131860623,858978060,-1795626637,-143648080,175935547,134009065,736423918,-272308433,-73103895,1851561555,1546031676,254449431,1981249361,1371000511,-1900896922,1733768099,-369149197,1475584188,1523496423,1966785309,-1412286348,457865546,2141191824,2063738707,2095688309,-1154244363]},{"sector":3,"length":512,"data":[-475999186,-851679444,642117971,-1451779119,432536530,-1958588109,1497898385,1311424041,-107917312,-1993801922,-545043033,-724956777,-854734778,903998523,-564453002,524724625,762179013,267211426,2018456194,2015756543,1543472447,15209852,1570291721,26336162,845462027,-1645244198,-8054914,932102395,926186416,1593777223,-1435052263,-1279877154,-553644931,-241142027,1360845876,-225372381,-742664237,1786623998,-139889859,-76518822,-1546046893,220050856,390454971,-312062827,1284633541,-258824570,-2447908,-1390463320,728405821,-437446806,1937158756,-1029907027,-1368324919,1233437467,265513228,-1287566103,819915952,842747875,7884459,-1865986090,850578336,-1663838853,1961799546,-558572012,2060939405,1494975771,1307707439,-1651739568,-845722491,1159137546,1751693817,694362755,-270760055,-1926763532,104328228,1746186486,1993312436,1292835660,-538766335,1775564944,275643971,-1149450828,-1630488276,-1283552373,-1066418101,289650628,245868710,917668435,-1604995341,-47710118,1332045797,-218838537,847367537,1197775776,-1641122181,-453921735,-781930255,815677967,1341727070,124905042,-1425460934,976788017,-375760787,311208583,-1806896779,-742630324,-394584533,-14843129,-148326026,386277422,-110164447,1875629049,-1367942669,1543774165,-1145119368,-114370843,181727924,182950245,-1633549788,381783713,97869577,-1138718475,-819265762,-2033923750,-1304014812,-1511079582,-907038531,6879216]},{"sector":4,"length":512,"data":[-703500494,-913884800,-71112821,1015274177,2022841162,-803266636,-1995291088,-300465756,1102412475,2061950786,-1142274010,-534152230,122497186,1519265356,1653482283,1703282176,-693809288,635697985,492043097,-1977944103,1251884788,-759841093,151450586,-913737516,-1101985841,-1525022269,-1350376196,-2034434761,-1723992158,354274509,-918082830,-940459644,509800260,2004676673,1040142310,-1575792279,-1398027830,637201628,-1203082371,1461382086,-311981154,1437454509,-1008251092,1441879805,-50143932,1945129796,1582036418,-450174101,-464653770,-682276010,-1250247377,-1104482972,-1228952899,1402986839,1978411606,-55855690,1902165724,636188764,35237667,1984243291,-869148757,933711457,-944513827,-650823370,-1837702955,2128089237,-1364569568,785182544,-2064248907,528253419,821606344,1679297548,-779007668,-1704730435,363760794,1455051103,638391046,-734226486,-1305576903,331112170,-70046506,-1350602906,663022812,1547578015,-774601226,849170302,636507677,2146006444,-577472919,-976672138,-1513392650,1871121756,-2143494981,-585534103,-402694287,42637042,996870410,-1079760872,-1073046829,-227225857,-1280610123,-601743277,-218220870,1793501620,642873429,-1150276613,1929296542,472548516,-680749611,1228219701,1962477001,-1360183942,-1177773260,1979582110,-1353741291,58674795,444377611,-1410102856,-1166844618,63223339,-6357104,-2147328658,-1948700753,-697910092,-1913927495,-14313386,1787831333,337771217]},{"sector":5,"length":512,"data":[-1490920146,236808292,-1092524569,-2124982490,-1431897354,-1818936328,919842091,764798563,-372767788,709877559,-482390117,1047194303,-222240868,-1551924866,130930599,-185041900,2777451,-1065211268,1719953425,-2026507198,388689277,-908046792,1936763378,2019040634,-107590511,-19592450,-15228670,-1481762838,2114846466,-2005915935,961783414,-7596729,1101452622,-1668271613,945114631,-1076802222,-1473405782,-1608089173,175091223,1906348223,1878694592,-1523033292,100450354,-2057901295,1198624294,-1187615211,860015050,239605832,-661107200,221775680,566559856,1634912766,-85051606,1247589115,1546238568,323150963,-1419976613,1683150375,1565110049,1077600813,1752365923,459041038,191009311,359419310,-1147777552,537537374,-191106907,1006298331,-1291904999,1614365957,-674165242,286196609,544290491,-1416992051,-413687141,-1356030784,237547785,-225576540,114041611,288705932,-47615418,1076696707,2042635019,-55533752,-1120225691,1921530918,-2132430803,655579819,1787942362,-132852510,41810223,-1982971905,400812674,-114005276,-32485180,398333,1602633780,-67097688,1377910267,-926169376,5939495,-1173258573,1610662601,1293677280,-30039976,620703003,-538966028,60952909,-935831860,1151292133,12728556,-2129084416,-2074065424,1878000172,-344702422,-93504905,1276586413,-899197494,178790857,1941962755,1773467103,354211791,-268437686,-60748316,-1165232297,-2055903197,2142958293,1305601189]},{"sector":6,"length":512,"data":[95125827,-131799580,202164247,-193608959,-1067798528,1436647052,-1945240064,-250050482,669134411,1965871933,-2029989282,-2033411626,1554659625,1241979744,2109774647,1772693305,1496960378,151778460,-786236030,1279279,-335666918,1906828720,52372991,1380360415,849703532,-839709325,940005910,1592459260,307519167,120045054,6845231,-64089721,-335943937,-2117337415,549012081,2121924133,-1879020271,-1529158726,-1276623078,-393964793,-539770923,-1808808856,-1039646262,-1391925816,1915811435,-830320498,875028352,2069799313,2061426433,-645923040,-975151944,2072649358,314219851,-6277703,1430092957,-527695537,-66551778,1296965035,-279095554,338747396,941901626,-1522950109,-530394056,633525296,514202851,1604145624,93837143,1378934137,-938323082,2101960552,179063462,153173167,-1104667550,708971016,1148364597,-1335970610,406199373,-1417213205,-617313576,-250992886,1501346095,546616455,-2017718923,-2031367365,-1964972366,-1228820657,206807744,-1440530905,-835282,-1999498217,-682171914,-1817779006,1760882786,1337727801,-1057863665,2107102662,154663682,1047600322,-344750827,982872538,1592853989,1909005583,239993975,-384908850,549114899,654332207,-683593532,-804083418,726881252,-915372874,2063216649,1133278522,269713471,1707096066,-621577600,-535705855,-2118088537,-2065397860,188269319,1028557266,407386480,-439215551,163372262,1307967996,544593351,2014218498,1939321096,1935587373]},{"sector":7,"length":512,"data":[-1819540886,1851074495,-509447427,1588314905,1393877014,268448384,834142398,64098304,1438540864,16102912,604015564,-1503133538,41889794,1610939328,-218092959,-139444224,3108866,-105119649,-173276145,8051419,-1381185592,200680300,62934912,6272786,1536098508,25125880,-1204027376,100391393,1484261120,3135579,-1310459090,2065579942,-884502552,-639569411,-86733025,1067475427,-470139874,1200613777,362480,-148080500,534545351,-235057265,1200613784,-666613824,-852688638,1564842605,63881219,263830275,-1366024418,-289440864,1977015597,-696534299,-1303664587,1232463598,1806347729,-541398611,-692487238,628346227,-1513317657,22239602,1418430824,-378354596,-1918673320,359497482,929753230,557075997,674477771,1794395738,-1803513391,508875604,1599037101,35700358,-20521494,-1216214257,722373820,-610432793,1097680838,692978388,-636942535,-1006240910,-1138963965,50580393,477487563,803831972,1111504251,-1103018718,380529270,-721903870,1132742475,608898200,1229650988,-177282739,-2006314784,-115547508,-544337527,-1549413400,-169564753,-1426241384,-1771899457,1161111442,1429433803,-955680227,21986950,-1410059206,1615999789,1513982408,-2144006550,982053128,-543807294,-1796780695,-848710839,-109089485,-1219107419,556218940,1541066673,288773040,2089930257,1093845769,1292401381,-1416701494,1076600840,296999825,1092795133,1046777162,-826881236,1455016993,-1793006364,1720829510]},{"sector":8,"length":512,"data":[-306532669,1564622857,-930814074,-1378115366,-1223647018,1092298121,-406411125,1237357,533808781,-389873920,-2147475434,-575584864,1611136054,-1073462656,-1946156696,1864044290,-1770127370,-728372356,190290221,-480848290,1542846272,1226348699,563500,-1481558346,-1103758811,73680896,-7848000,328478722,12522147,128732904,-270360288,615038959,-74886618,320045695,867837759,99574754,-301965600,6217733,1591739886,-536482304,99483742,1342418592,1754923234,6292185,1073741824,-16842718,792723609,2070194688,253632002,2141459840,1403330560,491282640,-1194692039,1308754849,-764135144,28892854,-666082751,2000133016,53053504,907693410,1905314412,-853392887,968331292,-1447765399,-829974813,1764924763,-34759460,976100877,-1819695888,345134628,1321337529,-764200679,-509574974,-1488449790,540780729,46328237,540349195,-1798659983,-393591008,1247944960,-1840567791,570581296,574200139,2073148480,-958205640,297573519,-463191543,1793990729,763865345,1197674510,1117338774,-1833854002,-1700443503,-1776742539,777206663,466170893,754941370,-305967819,-532890931,-1837415274,2625903,1863319798,260276237,-1037188911,-2026346474,627578693,-687729048,-1427659201,-1557122952,17218077,-1811333916,956366863,1049386057,93397728,2089418753,271311088,2024570368,-1884053376,-147193273,866169976,973850511,1655741679,-1639480832,408684602,-2093989837,-1636300939,-1159782352,158352648]},{"sector":9,"length":512,"data":[-1622556670,1572747,-1853865072,384517558,-1578091755,-1636552501,-1341010434,-955805522,24338751,4859848,364916968,1939596977,43868222,-960950180,1930405721,539942924,-620784035,-1342166296,-1116441636,-713738240,-1608921081,-421747893,-1653603422,156239760,-1729534670,581992549,-591971197,-1744620678,1291477027,270678572,737873843,-805149157,242578703,-2136476026,-234800582,182939405,-1561839700,1859228669,-851101103,-151281160,545656399,827892230,-2104497087,-1712927419,15045362,2110161693,479113225,222670782,458580211,-469577633,2097152082,-1878017736,-1320894125,1585254435,1157795567,-1033640596,406474784,-109449168,-1442833360,-1835333119,-2019465640,-1696032810,-345345428,175766654,-969707926,1940773881,-2128845046,-414654971,433471631,782930345,1320086425,-1792730814,502758067,931813782,112500574,-1483202934,-1683871126,-1619535249,-909510237,-1174426462,125887224,1864083650,-1484323392,1783800204,373467427,-696949591,-1511728643,636056195,-1484398431,-1511546136,-1936038265,2083100602,-2143287296,-1071118335,1209009024,403013952,125943912,-2109700064,-1062721527,-936375422,2038727488,-1453402190,-1585924623,-369990548,-971346529,1285775498,1939655286,-583579104,143532405,1985640161,822976071,1801504614,-558324112,1473098619,1169727643,362340312,243501094,-2080311236,-2129116144,944509572,1410630913,377848152,-2046724004,-2120719336,-1200874874,1948026625,512197080,-2013136772]}],[{"sector":1,"length":512,"data":[-949350774,-291083299,-1469194327,1928001542,-446168958,-1970378076,411336227,-1943893886,612958776,-1987946348,41458726,-1365956470,2003542856,1915414214,-1637407272,-2103925592,-1196676470,-1272149246,780894936,-1945962308,-2095528912,952906380,-734753533,-1408400552,-355243498,58252418,-1729873778,330899667,-2015258230,-1690066480,-474944860,-789431282,-96596125,1812980720,-1874589440,-961669055,-1508012710,172108490,1141957681,291787026,-462349754,-1860024303,1833541876,1259512994,321175854,-455002547,-113488223,1146131460,1377069169,350564682,1699828308,1901745685,1649939941,-1428797655,379953510,633433691,-512336617,2086574757,1620575737,-1736042108,104434786,1502897305,-1670997626,1754924665,-1349084764,1305399675,-419993161,1424705531,1326906207,1838895927,-1626413635,-263256848,331390468,-2142305672,-925274102,170825549,-355171193,-571594587,-303431246,1205622247,842840398,1585677082,-2110874518,-622845731,-983879874,1447264077,811315617,-1547430771,-1108268763,1963553778,-1155568172,541205024,-530674914,-1689804981,1829444132,-1565259238,-2083428823,-301405848,-1557099209,1644816784,1078716812,-650092583,698656505,1231161706,-1379163181,598717210,987475795,-1681273154,1673112905,1098287577,-856141861,-864974769,-1871680390,802683776,841099266,86277633,-1823031212,-1057838886,1598421786,2001293634,1808601517,493074010,1240841358,-1232071446,-1114150486,1773092345,1928220190,-2034828730]},{"sector":2,"length":512,"data":[1484880778,1480247534,-1658996668,-1821858357,-67823829,481262298,-1036142606,-950855547,1320663637,436959608,1754447142,952189318,1975396286,326274627,-367630934,1885572258,-1767342441,109756476,1221847543,-1108105715,-1145475370,-1155774116,-1849659661,2077602208,533958730,-722316028,1030190532,585068881,-2140555430,997921723,431836294,369391905,-1003258558,431071607,-1673721526,-646200460,1409322672,653798853,1842037079,-2071567845,1482871918,1457426153,513244025,1852106059,212639741,-673776242,-1006423670,2121239940,460405609,-1144593233,-1924800290,-1596566510,2107457944,-1513080881,-1450291987,-1839101852,-653896266,-566507218,-654355056,-1476871703,478709038,1302612601,-1290079338,-977319044,-3451745,2061846358,-999429391,-36469868,1677743301,-17999543,-824236377,-1745046529,146440845,-894947166,-104818881,209478073,934148458,-27920211,734991318,347938050,2081087313,1791994486,-493270853,-405836286,495527645,663027711,-1232949694,1256368735,-410714592,-771976470,1166635228,1846648829,-2033595050,-319005172,-1084788115,715457596,1642463189,1210803329,-1973643370,1384987964,1042401157,1996529153,83276032,-1174397976,-893663322,1560505650,-1081616399,1769794304,1951276908,915386116,-280231491,-1643349765,-1386350905,-1604631720,-1043797262,2108621035,964459712,1655714847,2013775773,285674545,1398927877,409356559,440932280,2121016369,-1008415496,310119441,-483377795,63688070]},{"sector":3,"length":512,"data":[946525639,-1842526151,747652245,-1833768652,1228582601,1489780125,-749919940,-2032800666,1404578009,-1595398757,-1904547733,-2140694111,-131665166,1273842747,2139731732,-178002216,-263396231,-879003526,2090364502,-2021712144,-1511329901,-163164571,-1392670640,-1457663199,-1459357437,-1548180175,1904888887,6331276,787038538,1066854883,-596073198,-1214774855,-944822430,966516310,53559491,2027096843,602446697,-1098935513,-263550502,805312998,1198943607,1046986924,-860545282,-1379519903,1825462926,-747506126,1711604990,-1724021702,-1380028941,-1204809634,-1302075130,357239374,645207584,-357607619,1754931032,6291929,1073741824,-16842718,792723601,1767178240,253624355,2141458816,1403330560,491282640,-1194692039,1308754849,-764135144,28892854,1481566001,1815386261,-1539278499,-842923111,1210071963,316830012,-779564908,237242019,618817852,1160025481,1404076206,-1264791994,-1201135568,1302463424,1646836125,901313226,1300677387,1322037785,956606037,134693970,1351242513,136671897,-900132844,-503246388,2092784781,-468319491,273190372,35326242,453449585,114847120,1685467393,-467037239,-665118276,850894087,1413857385,-1119154553,1986203536,1561191419,-1599600839,1186151245,-398877736,-971826962,-1078734803,-1572410678,1654787,1879156683,-1206246928,218290245,-782235797,-1710663163,-1879719803,506116457,-2023175156,664568734,536998529,-1953945824,610011089,1073750194,2082344849,-1883241979]},{"sector":4,"length":512,"data":[1947209493,1078522358,378478311,2029119092,329115457,-264237994,-2130226232,134636299,15642726,-469363761,144775003,939540782,-953367,141688834,1756811824,123904733,-2045152194,968872910,-233449982,1814534368,744035374,-1723525367,-2131118487,-536055025,-1709367250,719902719,1927049216,-536818316,-1831890942,-1608921088,-455514709,-1657797734,156244112,-1792449230,581992534,-642351997,-1744620690,1291477027,-1339934164,368775089,-805149157,242578703,-2136476070,-234800582,182935309,-1561839700,1859228669,-851101103,-151281160,545656399,827892230,-2104497087,-1712927419,15045362,2109440797,479113225,222474174,452288755,-469585825,-587202478,263815088,1153520528,1997546417,42921742,1674669125,978329794,2045784088,1847545,839516702,-894739289,-1380261090,-1412744770,-1437740829,-1297321205,-1176216946,722144962,-619531352,1321635564,-911281428,-1569985554,2097900,-1608514047,1074660096,-726030368,-1271903738,644573884,2078697638,856006188,683143132,-1268249601,-424916210,-69827174,1253692964,-1112627911,-1775621686,-1382308093,-2141711356,2015102593,604537344,176324760,-352721876,-1705046123,-631399831,-55482886,-999491082,1727776365,-340371773,117618222,1620943913,-1842488786,48886395,1624257036,1320619523,-188407013,-1293014742,-428133810,1272856009,309568043,144451690,-1931187525,1768709703,-1415406667,-130281812,1141933056,310673688,-2063517620,-2124917740,2019300997]},{"sector":5,"length":512,"data":[270042625,-1104188529,803816066,1224889792,-969553530,-257710919,-1343428210,-2038326676,-1313313766,-1775195867,933930522,-1580790910,739948312,-102088809,-899303641,2015201089,528990696,-2008938368,-1305966559,581354146,-1700436709,-978981882,-465928533,748047497,1592762605,-1935183173,612958776,-1987946348,-1454183642,1793140514,-1852955575,680133242,-1971152732,45657130,-659280757,-1137800318,-966593800,640444972,1662042672,-1232260596,362636696,-1565867221,-1932759498,1128845363,819475853,-628151862,940434288,770478642,731007402,-1835759026,-365293981,1007608752,258199794,-1399949506,16662287,104927268,-1481520235,-1866192632,1145638979,-1770764911,411559656,1193514089,304382238,-1532942775,-1053930734,848014692,1309893841,688429370,-452903345,289589347,1246893157,1395685777,1780255267,625036936,1498712597,1520735621,1477830001,1449496930,-1516096318,-1049732330,1985812261,-1445485087,401231228,1175127648,696803736,612931782,-2011625926,426135954,-428762522,-1851627495,-1435887002,1813702321,1533465010,-957761366,163606427,544316487,1931257635,-1311292978,1733434996,1910142493,-495444505,2048812945,518500842,1741812348,-350257633,8363975,-2120202230,-1597494776,1212813443,1779991969,-1935527432,-441866034,1361106996,1473362585,732392885,838017666,-1343697141,213529553,630998598,-1484107001,286173898,-1262140643,240214667,-1518109168,-2144732777,1889905626,-1799566225,1489676424]},{"sector":6,"length":512,"data":[-1718218075,1184080442,17798270,447114840,1299484073,-1903862101,-1942571951,-21032964,2135973763,-327366315,289474570,773052553,-500035923,418297195,292533745,1669892586,1562104175,-634187382,-1480202742,1746544839,-1716941700,2119891029,-1850789115,1271895022,-1633103181,81261917,-430563673,-804882312,-1907366043,605771192,-2136795000,-1555940901,-1812339544,-724252199,-985730312,721428331,-1028985222,-1909506348,-449020966,-828355174,-1426824224,1690474920,949707454,531290278,1200367916,41464692,-1412510539,-1218717030,-1544918387,-47091044,605776799,303475397,2037584635,762535647,-47965394,643403317,-584168247,-518397174,-612948367,-1740238582,1838622280,814700421,1154950706,-371440066,-1401496182,-1806829388,237397832,-1179687834,-588168076,554809157,-1999026724,1059223214,316060151,1209242612,1211526824,-743470466,-680328667,-407295626,-1263656200,-428699802,1918373712,789991391,-367071407,457104594,-1958502627,1084162227,2092459795,-641230329,1883146256,134473884,-282173575,161014963,-363564285,49901918,1299353086,-1312966300,-1189793941,-801251597,-2097394155,-70312530,-1283765692,455609193,-2019974182,-45887249,2027349750,170840369,-354077956,1740138461,-1625186798,-1627861134,-160219279,1260268791,-1293704268,956769742,-165832488,500929236,-1961994772,110552247,-1564240101,-1335698284,1591090273,-777800151,1361574940,-1331451113,-751361379,1916258094,-2005448874,701064749]},{"sector":7,"length":512,"data":[2106869903,279575111,912094192,436407723,819572083,-174282908,-650528602,-89630330,1925945854,170533653,1167700984,-266679835,1345381815,-850064808,-527371273,1464941958,-392466789,-486998083,458406875,-519654967,466207009,2049285186,1141511343,-1781954488,75642434,-238168258,-352690286,-1745868307,1004865892,714468846,1744441199,-1333688942,-2095146921,1616361961,-78727255,1836974636,-813592565,-1885776928,-710596689,-1468468421,1193137874,-1887361984,1504436125,-1903465913,2045444217,581052770,-330015501,1412682084,-71741822,1277578463,-2081256838,-614871373,-1256591405,1792058504,277012608,-1077426918,-1323356515,-765330195,-586072444,-1837647617,2077474554,1653593261,1786634491,-2138716484,-2030981385,2105597941,-181399937,-289589993,-401726337,-1010538465,1062916413,-36573764,-394318801,-153839032,-556558586,1369884926,-1394876438,-1434293981,-286213130,-1492017485,-89839835,261640811,-1939217841,775951252,-402022264,-31856078,517348650,1222339485,1881063391,2134641760,-1798718982,-829097984,-789421302,942288044,-1094881076,1466332954,-1554557831,706118735,-1789192808,-87681140,785602384,834962502,-218893981,1408886749,-490781396,-763930655,1176794856,2055006429,461077024,-1817299213,-1120278111,264219515,-1214698523,-1236798521,-380193925,1720666699,729668104,-835734686,593165236,-2128816909,1866104282,978353274,889489458,1634155339,-408013714,-402063142,525848233,1736762895]},{"sector":8,"length":512,"data":[523267514,-409819175,899393099,1188224517,331964342,-1861103868,-1233419182,-974988266,439113944,-867023933,467321460,1028094474,566303794,-379881421,2084316361,-1391523022,-1661276453,913882064,1107742047,-1490914577,-1984685086,-131459576,905305152,501922003,252849199,-1544628811,909242816,525914778,2091729823,447645790,1656917564,-1167542127,424959522,-1425472196,703039920,1351396760,-676664557,989603963,1850326242,-1160965919,-2000143886,-1508271664,278294864,31158227,-933128815,-429434466,1112646769,-697392251,824082945,533277631,-601899628,-2089498332,-203190504,1153777995,161571906,665260464,-1799286557,-46095626,899946796,-2120197452,-978772893,1233070817,1292537128,2094515578,1006637462,-1836131023,1758340510,1891336346,-1139087114,-1570035325,837695930,1455316541,1878064947,-1753001937,-870145384,-396035271,564885259,1802093642,2007999412,543951740,-40499718,1515693175,531424444,-1206912278,-1797292446,975169842,-572699723,2053572490,1962525543,1272511084,-1733422479,-25667366,-1925474772,-586343125,-707800800,1781004686,1970524304,-876508304,196351255,1916504205,-2125488256,1136717516,800658556,1810941785,-1284950909,712643912,-840117408,994953455,-1501538646,1604707293,-1513986261,296928040,517849855,906424712,-1224263309,816248887,-493089310,102791678,-1189325793,643108368,-1441824050,-27523039,31512357,1525302053,-1999725241,-2082512854,2082910682,599297000]},{"sector":9,"length":512,"data":[1862402203,1131390647,-1358543639,-1965549952,397443896,635693209,-1428232597,-379069753,-1686778649,69422192,2028998073,248257317,-935960775,-798103891,-2026660875,358722483,1129372255,-1845915156,-1681860100,1723567041,-218072991,-2008131613,-1026876156,-663879780,-570034370,-957862444,-581863437,-66425818,133295979,-285726410,929523886,-1756301570,-1010998691,2132459027,74963296,53208508,-1373929633,1391857928,660978760,-247160484,-20958571,1332698253,861929003,-417552891,-1782398465,-1092713058,-2147046892,-632416179,1756827896,1438711844,-454900729,-1446392516,362120639,-1602492367,-439301438,823715288,1944462081,616825248,65939206,-529966027,1603773171,-99047367,794399495,-758308403,-1926442980,-1765586712,-665831708,-1189684130,813562668,1324329887,1787077232,20513076,-98065321,1211528403,1036739979,906227760,751606671,1877749214,-1525698574,-201351652,903354935,-998722455,1838197259,-712581456,1795075180,-1879374684,-1195615158,-487221851,-774161120,-2066721517,1318103111,-265797580,1298991222,-2020123925,-2096879914,310165440,-98907936,1943066259,1173986557,-1709419575,-1664273791,269721924,-1824607018,1071807825,1242430293,1741289683,2075741821,-1193918878,-33753971,1463492781,-1343024319,1978448281,140155169,-1953571778,-1767061509,253110371,-1173914247,-199005064,-659106243,-620636668,2130169700,-1231903088,1634549552,-1845217438,116124751,1213914666,1280414454,1108815064]}]],[[{"sector":1,"length":512,"data":[1812260098,1442197136,-1652483105,-1282476036,2009205055,-1612712856,-1103410597,-203174572,-910957203,374127580,-890276273,-1801684239,-1543865553,-1117785723,-328768957,-947257925,1684185540,-1644579479,1534053666,1878324702,1429005742,-415716970,-1191992998,-698702298,1985567029,-1300857051,-854518940,-1195948747,-1532637512,134179857,-58355514,1529561829,-190889550,1824619685,-879202224,1267403142,1560767909,1804968154,-1319409513,-417223653,-1165226304,-362819431,1345765422,653911974,-1548877566,-1403122646,-1375119086,1886905454,-1070368560,1153252711,-1329293528,2078601803,1941927497,-1875289553,-709168345,1792491365,1662006987,-961611070,-152018815,790406881,1804715504,42211690,355396051,1820417138,514389059,-1296974781,1402800497,-649974218,979669688,-171731229,-881135947,1172361369,768317741,-1586577445,845136781,1906342836,208954258,-792698194,1923754374,1193017326,-576177582,830074400,-1337682213,-1318308137,1567723217,1142390288,-1222147314,-1662483729,-356315018,642706152,645079954,1111875642,-1607509258,-394833446,358947167,-1319676865,1019031333,-591659592,1878086153,78473153,1915649524,1563513990,-1062934450,299925482,2146326063,-2083590304,-887688222,577079143,-1024409733,1990646428,-689018939,385181568,753584914,-701090005,-197053420,1235335907,-377509810,-262991747,296544332,740309024,-127730546,399947834,-1927831186,-346437434,-2083166726,769476420,1702912468,180432243]},{"sector":2,"length":512,"data":[2133856639,-1290190441,281565351,164967191,220354315,1478240432,1005290654,1760535216,1715166255,1547550481,207134922,-1457860086,-1920332229,462590326,1092691305,485621608,1870570511,-203934706,-40568686,321907970,-678373485,-1921384717,773741817,1425823391,1429595436,1426631392,421705377,1215812117,-2022002961,448845123,-437851388,-1620535309,734461394,-1382475528,185474148,-1823292505,256577264,5876265,-844772768,-222423252,318155848,1708903061,-842654639,475400480,-1212838196,1218033923,-1520478706,1554612981,1533976248,-1259921698,1104670358,-1552876894,904493554,1513313152,1955772541,1752270014,1286221954,-1572185553,1924688596,1425732240,721940438,299835368,-1693180283,512036674,1104596943,1898533604,-34462248,-924305568,-1563524283,1898615388,675801064,-2084428520,-1999980348,-505351413,-517809881,-1044999872,-129402333,1057880382,1048327077,366824442,221042424,883521272,1708617006,597571115,-1342683804,-1960131389,875825801,1362728477,156917223,-1531154371,-1918392254,1235110960,1089980919,510039133,-411258150,1039655280,-1584392510,684234755,111430233,-210622798,1814288895,-875010113,730455909,-44470771,-110534889,120431647,425824445,-499722973,-1124294083,1211062524,1963455579,-882748383,-338517468,1518143427,-1715846964,-2088318962,-167282127,1037026703,66006072,978417519,-318089327,1627413264,-1737137185,-685234002,-628956844,-1722200570,1177613882,955171879]},{"sector":3,"length":512,"data":[72145908,-241553769,507306937,-186530053,-233405334,-1855861077,-1971061634,296475597,-677347361,1734703797,121790001,1753910149,-1505747488,-1290453775,-2008446282,-1043672152,942629856,596333575,114451530,-980760706,-1298871961,-348811005,1886900672,534322044,1710171672,-1426734477,1030519454,-1667393393,-1702474596,162965674,1345266595,-2140480145,1806322626,-503343741,1341368547,567145600,295824048,-2121290666,-536321627,1450277306,1731048915,1918646920,-434852425,-6736716,1763139268,551867125,865464727,1777624305,1245862452,931251115,-210881175,-532008505,-1608657932,1076724853,-1580778067,1198434008,1580648294,-1347971660,-313109144,-1218766544,-1010719173,-150996646,1451522234,-2000547374,-2004852438,-16667008,-643694679,-1850526136,1080249344,-1794560220,528436890,-2009538671,1739766053,44204504,304100768,1587454523,-1482765624,293570880,-905049691,390204839,-482110067,-17175307,-288585806,442091980,-403000322,-1086309479,-766238115,-114859383,2141069923,696539365,1867611432,1827991689,-1889327317,-1409949723,-1661723201,-418365641,-946666510,961836637,1938055099,-1803170719,-1798819987,-1061950724,-2085986071,-1154869313,-793691888,393444052,493675750,239873649,-2014364006,-1370012504,-1479778803,-752226640,-1210614672,-1712126574,-129185041,743364446,1619279774,526222398,-413187399,-676470622,-1113962030,-1029920089,-863233702,-2073263415,64391974,-398212731,-890428732,-1969327524]},{"sector":4,"length":512,"data":[158805070,1876718446,-1082774750,1809183720,-940375625,961939681,1107680545,-204879657,470638965,1212270187,103071924,1851588367,2130505138,2033555811,-359922080,425222978,-409219684,-260694945,-71387771,351488876,1405468318,531815423,-1425215588,383999734,1061802298,1128785169,661905932,-952365702,1316492248,1420086690,2137699246,-35502703,20936707,-491361329,-1501814605,-1643937633,-813030485,-1609198597,806269217,1826653699,-338088029,38911274,-1522954955,-161303818,970848681,-1055068262,-225701714,-597764747,1274262420,82427743,1424375146,-70502473,-2019935106,-32572865,-1459740824,-1429079011,1017835033,-1064983826,1496172125,1557628929,-395004092,-422517053,1407308483,78745623,144783107,-309742833,911748196,-1156147592,920508200,1572974234,151115417,-1087968125,-1775476847,-1411441642,1516157858,-572963360,-986948068,-1144962894,2014831873,1079095073,-1905547832,6179695,-2129756754,-1325384938,3870723,3146673,-2095968284,-1544227487,1855685548,2005352848,-636662191,937738624,-392261881,1124246232,132462041,428713363,-1078870236,1822480564,-914063006,781348703,-1211323777,-608914671,-1989291155,-620004617,-1414434809,785740662,989622712,1053953048,-636849944,561541570,1816671263,1640097142,-1044003950,302915370,-612435564,-1993659401,2009732703,-1435024165,1076985283,-1864939741,-337365011,-932660090,655246176,-598859358,-1984358131,450064,-560106155,-4227406]},{"sector":5,"length":512,"data":[-1431897581,-1165314256,-306183356,1476432982,32192558,1431306337,-1763746486,-989634531,1704722461,2017050624,1135183924,229265856,-1821007360,1589911557,-623190165,461373822,1542056508,1065091263,1180825269,33578983,1933315847,-2147287710,1835593855,1074632380,276318972,-465075033,1466464330,626557890,-258605508,1009088072,-1057974856,1145537710,716848165,155324897,1009072143,7176638,1615302488,257127840,-355309310,48534948,-2030039648,-522743785,-1804564442,-123995285,-1753745865,1672432070,1918770393,-533099344,914555205,1725975511,-382012905,-1379475982,1806195257,1278703475,2002456787,-1293731682,-454720019,-394465109,1064204856,-794831297,-583007425,-1880514946,-2145915416,738260383,267278367,-434125300,-1912596505,-234858209,-437918241,669513726,-1392018949,1771739642,1990139575,-2024390996,1136021423,1821385436,22636698,96,2244608,9305855,-1384108224,503476812,360714014,536903588,-1527759951,1445237641,45683858,957959874,1908200051,193364483,-924966888,1313239297,1467232409,-1714103776,-1736177853,-1194188750,-2034038251,775035213,1897935892,546622112,15239751,-1781898719,949112864,1682366721,-1414261292,-1882643898,990413030,-244471978,1000149357,-993867163,96665960,-447868920,-1555496494,2123925511,-1969140061,840665334,1962067561,407765506,1792177209,-864626306,-966712869,1426675306,1864466890,-81678102,1000130681,-1602166687,-428672789,576794317]},{"sector":6,"length":512,"data":[-2079919199,1296900244,-1073725295,4423687,-261095070,1169693217,-619904296,97607686,-2053502630,-376441408,203303606,780626124,1782120512,1073997058,-778834368,-1306239993,-1375731680,-382205946,50327923,281231744,-390673864,72452992,270678445,-1979710687,736161916,-1401028592,-1884106120,-147193273,866169976,973850511,73571567,973622851,-1327204345,987701331,-1340865524,292127104,414720690,-1078998038,-1071527670,1973606472,-132281717,-1172806192,216465217,534157128,-1046226361,2129138021,-953091585,-771559936,193460549,992032736,-937082808,-1641699948,210420224,457101298,-1906307891,-1321997952,1052795288,-1737756692,-734052343,-662160939,-387317089,1010288644,-558879844,1341557664,-381306042,-2015152876,960486382,-2011659752,-1325087390,890636863,1271555995,208929686,-1071253834,-1091014086,-2083769034,-2122553643,21729290,-20745216,1312833253,-1899687163,2107924544,336214970,160357809,1625899139,-437796672,-234852157,319818241,1553985628,-1242519178,-392553853,-81621854,785949736,1824304764,-1020687778,-1445380530,204896157,520208362,1673159385,-1356322010,-1454747906,-917324147,-2033401631,-443584950,-1180432130,-314838407,537059241,537264384,235077792,83959872,27287574,1487150599,-163935520,-1196138054,-1393792362,-1413886278,-123853146,774637609,2056482553,-2019513362,708422370,-350340940,-1978365400,671711808,193118376,-2092906448,-1058523123,138416003,1209107521]},{"sector":7,"length":512,"data":[-1339055832,629679624,-130413181,-691957152,-879777911,-2036057694,541143747,1211035829,-960120277,-1179786456,-1532790570,600344123,557862572,1616254213,1578567073,-1771288124,1826302516,-917056108,436448100,-595009416,-1695573358,1664664087,562200711,-1603921658,1847264929,487006656,128049270,570457631,178987272,-694935623,-1746494546,-1515534823,1788534152,814359048,-1843132190,638149200,-1560716702,-351649391,-1440768097,781361739,648100790,-1979549540,-2103925720,-1196676470,-47412478,-1154516895,-463924498,1213856414,574207691,-562025175,780894938,538630332,49984190,415510668,-869102461,881656632,-1920771884,1400429622,1457558754,1619289578,948832622,-1617429276,-1012340679,-923780210,-516059325,1042352478,-1882590982,1141440575,688406928,272863428,-1113578423,1600847461,-2074536801,-2061744495,513583817,1210042333,1382322466,-995546948,-919581806,944608068,-1433156375,644453082,620838526,312646100,1246893157,1395612373,354763086,1753306237,1777686037,1616352709,1503020425,-1765430936,1170829403,1232625047,2120161192,1628972545,413540742,641830499,-772637479,-1738172085,1738131049,-1706653280,-961959831,-911184998,-1200776378,1865365225,-1677264084,-2028354448,969699996,-730555129,1990035289,-1643677220,-2019957640,-1175684450,1789105815,467560893,901340051,-1157986689,2116499603,543924142,985980870,264310134,626053097,-953084691,-377765148,-952012550,1716614026,-798571529]},{"sector":8,"length":512,"data":[-2014754574,2139576972,-233986181,-322293436,-2036475848,-1992504068,-1364312433,813074770,-823416066,-1443498774,-111576701,1453311953,97119143,-770700803,1839553131,-1688992153,1809032735,285116902,1245166697,2029309937,-1041150705,-246916023,-1512290035,-2044440328,1214378318,-1502042932,1891326566,-532648296,834845662,-1231316762,-594650464,-196124423,-200352772,-98936854,551581131,-1778475534,-455660170,-434959686,-1635455498,1432345593,578560729,689864566,1830000508,2010119586,491825105,-1914324761,-976220368,2140912683,243329142,-481898322,-1656733802,-435035811,1726709345,773787440,872367670,1974624346,-868415648,-556893019,1514792880,804364922,-1944807631,-2030703866,-1151668419,-368890599,956276090,-548701716,-2042954306,785563450,542409182,-1608022663,-1981326241,755142225,-1352217162,-112714768,-819535878,1784975552,-555824066,1457564349,-1143013675,1259414934,620613478,2033180732,1253372903,1635539901,-2105417720,-211209728,-1116916644,431883473,-1487531562,-1776379987,-1740137751,1205164679,-892498241,-603266889,1801227211,475556572,94415801,-872226169,1702273925,-2029912925,1927175718,-1928939501,-1694754162,383605819,52800670,1309259503,863994825,733546042,1664105448,-2092782830,-99515797,-558357296,-1770131446,1754572882,-1511101822,2026581767,645204592,283079992,-302684937,2098100628,2020316325,-771056369,-2010457737,1534081483,1642649842,889378415,-1954024703,-719875259]},{"sector":9,"length":512,"data":[-1178837427,-1702043853,-97132588,178695636,-175461974,769541901,-1651986371,-1433610661,1738521026,214529941,-1843610039,1471256472,-835549459,1006590175,1641847590,-2011683390,-2003810114,324331146,749827961,1417302143,-532958086,-710352102,-1842565179,-894646264,-109255334,-1919442041,-572703978,-244553094,-1991356035,-1112014078,-1789751812,927929682,1122623634,-487969436,-873166593,-655385724,265336326,752817308,774260925,-1789352412,-646856082,32732041,-471949741,-1196412926,-965622993,-680351693,-887438180,265491396,1401124727,746294035,1803852955,763556405,-85419851,69782799,-365705941,906365707,-889935940,1997100677,-1616585618,401365796,-2038146762,2083058873,-182010883,-581976697,1678966172,2054022635,348874103,225943911,-1531106454,-288946121,-1616469658,-1390453744,-1449157416,19670357,268501008,1048832,16781313,268501008,2097408,268468228,4194816,536936456,8389632,1073872912,16779264,-2147221472,33558528,524352,67117057,1048704,134234114,2097408,536903684,33556480,2097280,-2147352568,134225920,8389120,524320,536903682,33556480,2097280,-2147352568,134225920,8389120,524320,536903682,33556480,2097280,-2147352568,134225920,8389120,524320,536903682,33556480,2097280,-2147352568,134225920,8389120,524320,536903682,33556480,2097280,-2147352568,134225920,8389120,524320,536903682]}],[{"sector":1,"length":512,"data":[33556480,2097280,-2147352568,134225920,8389120,134217760,-1481358464,-370364588,1601876061,1173949244,-862367512,1658058585,1809212875,266108824,-320953543,1641970916,969920391,2105264022,812106870,140884430,655034820,829355347,-539173385,179624951,-1453855109,1988639556,2039004720,1026617592,663477817,265997511,1886383631,1497239449,1974352254,1598936871,-171340112,1141632454,-837043541,-795417212,1403875,1895615971,183822854,1183284279,-574840871,1729043384,-452197890,973610383,123304825,-860051236,-644106748,-810130369,433607158,-1051340376,-911738856,-222463002,2000047295,-1943393830,1710749900,-939590123,2094785038,-461541642,-1163203009,1726585170,452388944,-493195771,1047849119,1410991960,-744087653,-24517013,935094544,-187698870,-246608008,-2054813247,1620107028,1358472664,350765828,-933198305,-1364821852,-178442122,-2140205650,1040980320,-1078331153,1231400695,-723938620,-1092194014,1954433742,1151335418,518976800,943690651,-588355663,-819164692,-227396095,1337127620,-1774175944,-62590352,634251154,571672931,604240327,634261257,-260865073,510714010,-42747632,2016199432,986061945,-1129236577,739822355,-107929555,-1871459879,-943080299,-1694380494,-1853573739,-377420749,414473287,-1037297361,-1163183065,-1290817025,-860035206,253262414,1942605462,326968014,-770742517,-209171021,-1287810315,-1989204073,-1466007908,-68138692,325472018,2015499794,501888586]},{"sector":2,"length":512,"data":[-2075930743,553247552,407449383,-2116446063,-1928778603,-1846515760,-2143083305,-1961901040,15519388,-57082055,-1741888484,405021263,1266420321,-25193754,1829604779,1662996754,1674145525,1779302076,1053679179,1447070057,1984824446,-381938190,129809305,697970603,-2072532358,1313327602,-50985710,94161277,-1802815034,-2112854912,-766238560,-814551285,-1304003568,-1886792813,-213091848,1944796009,-1685190642,529770366,-1841278817,1944110604,-1244497103,1865941428,286803177,-160234470,-982538094,656280308,-2042376404,1687977476,1393564830,-1303934855,-1654431914,-1475077965,-1027866541,-1842270794,972151106,-2094098724,1836294131,1482054421,-1599715791,-90220300,105522335,1026998934,-2104361505,-1499830136,-1946215978,284790815,-2139029884,26555087,-1344687833,1275601027,-354223428,876572551,458657023,-2094242722,979184719,-1852155077,-510717022,-1514951453,49378384,1065407582,-1341161539,-545554185,4422613,59621036,-1418361195,204242063,-1161560447,1369908506,524303437,1551479659,2064506375,-109241409,-1746019367,934331777,318573599,1031192314,-942570957,1325193649,-1506345033,196650632,308341595,2094630184,1913864622,-922113064,785866046,-1244213472,-1095261170,-351068114,-472590037,-734209647,-1849266536,-1356408964,-1888161346,-390595733,-831133008,60039468,-1285864941,1604347001,-2012277820,732393423,-1445414124,472120829,-1387907104,-1630135626,-1698813781,1208131801,1992997979,1851755139]},{"sector":3,"length":512,"data":[359653361,1174096934,-972187233,-1577692779,2133581643,685768540,1643883768,1252424925,-371350633,31100885,-1405912258,127844675,1926969163,-890379340,-1631569187,-1768741499,71398503,-960509151,-187544441,-103569681,758702924,367209287,608330320,297219298,-1453233302,310161589,1113826991,-1503003740,331919395,-868383083,-1747850429,794946405,-488973456,1549473809,1639531718,1964811631,266656906,6053453,492958669,-496076207,-317304302,-1792010042,-1740755473,1414068043,948702007,1872632748,1766207370,-1012343343,-1960502046,784240319,339691038,700467189,-492062986,-1048987951,-350841121,-1610242195,-1081380938,-1089151345,2116665051,743979086,1623557170,-1610523036,-280833565,1793046124,1154542,1073807364,4063232,-1599496769,1916505904,-442317833,-260539043,698394333,1249048089,-550241524,1269311968,-470905836,-596476175,-1596201878,1717682498,2135096520,-1269254026,-903108800,1907624780,705963653,-1527347959,1352186954,-464188160,920628937,1827117107,901055174,-1700746285,-798258053,-243881752,1849610308,-798798437,-852598428,-1318710640,1783770191,-1008466253,-513786307,835969355,1710268681,-1293011297,828863001,-1094627878,1842733673,279932417,131490768,-670786852,-1920974149,1457541265,872437883,-1799078554,-1442115090,-1032965879,1963368906,-2044284422,-2025968469,-1719621978,-1911820373,-1267680375,-127347624,362319792,653137285,-2079001184,-1510772125,1806611239,-1553473629]},{"sector":4,"length":512,"data":[108723290,-1861669772,-171521355,624725644,1632433598,-606015327,1366646448,1291938176,-1784400277,1242880538,376749800,-1344035346,1010165921,-1884891142,942474590,-1153068507,670761949,1486581488,-1273713747,-509247359,-1028450736,136741976,-1344835935,-1860830776,-1667271938,380098967,1599705510,1334803509,-1312818775,1104986210,-17380093,96360367,391569495,775269899,-213725472,1800735110,886513078,-1414601184,-1384316575,1686837977,413128300,-922064554,776410632,50269050,-1923369742,1958804212,-871112933,-2142394782,-1140225742,35066683,491606476,1692839762,-295150781,-1877056346,-280964765,-88381231,1553924278,-619958623,820183760,-1318643044,-2132467189,-2066024823,1633500031,-1193411312,1162673203,-892629433,424121774,-520207634,-494812632,-1912351380,-249317789,431959012,1195096337,-1155824241,-1152971895,-369732345,1022193841,716466736,456175851,1571354963,905298549,-1743353888,-353442837,-578386111,158051901,730695329,2138527069,-1753444356,294872023,1536943298,-738299368,-1884642361,-1010461369,-1906708222,1634192135,909996856,-1646700335,-864542771,-411943860,-110028858,-2073402877,1074939227,1520405279,-1115499396,-1710825525,-1730903977,782746858,2133938825,-369476725,1985717238,152449921,48694850,1500027413,16391,4194304,-538967856,536872895,-975173631,-2147233213,-199218233,-1041800673,5913088,-1811369756,956317807,1049386022,-1318827848,109440,-61015474]},{"sector":5,"length":512,"data":[873988303,1822654604,280366731,-1998016512,202432,821566960,1531123468,1638063452,-1812104984,-1151533005,882422911,-2135881461,1261015114,1915298988,420840453,-1753111836,107840603,-188725456,-938328935,-1635819017,-50321823,552032080,-737853535,1871710673,1460606296,390184288,1988927469,1781125771,2010976198,411179053,80044680,369770417,-899179723,1946392139,318416396,2084117856,427048543,-2088058394,12631567,42440,1929339322,-1051488225,270774596,1989110040,-1239252665,137402585,201723540,43998844,167915520,895260489,729760716,1122882283,33566922,-810284412,1824328446,1789579203,313831661,100741213,-801071072,1848400538,-882705227,1996751662,566734044,61681067,1789937680,993184440,117166062,1254485899,-1632797930,-264542521,-101768001,181707435,447818171,-1217463157,-2122295276,-595583994,1863034020,1403874907,-1161696358,631870125,466030789,-229325455,570961580,-1627234160,-224642338,723143865,512542692,11809724,-1033201117,-463738176,-1994197597,-1205073278,1707328256,-1439548834,-1400092040,1810288322,510111536,-190813991,218310974,60874806,-2130690545,1447800235,1236430569,280156578,-2071914428,20466706,1519064197,482477386,-1377280789,-466000259,1784840107,1884952069,1486220561,-1548496518,-2046070151,-2120719336,1282153094,1941352092,464530662,-467959107,566416292,-529130233,1570009761,-1083684454,128573222,570457631,545661192,-1600622814]},{"sector":6,"length":512,"data":[-1905909206,-1424869236,158514848,-25842935,-1775957720,654942816,170033310,-611148503,-2102484762,-1801673719,-1066222430,712646387,-1566529905,-495936886,-1339323700,764101320,-1466325264,-373384045,-390551961,1673366442,791013742,203620542,-484391375,818584355,748398259,-1448842933,220414158,1762711093,1893348901,-527479325,965624712,-474383128,-1012205657,-1164008370,-197357821,-1915780136,-1439436550,1557987391,179358179,138514500,1133560873,-1857795824,-1933929147,2031896209,608735748,-1394374191,1745132166,-1999705914,-1188279662,814655252,1301497033,-1416051400,83442766,-649834348,1218286700,1395270953,354763086,-1520347563,2036125013,458790405,1503864211,-1765430936,1170383963,-781014685,2052986725,1596156225,-1316617858,-2045148064,-779328872,-1838933780,1712940625,434532762,1183527784,-1448580710,-1335125306,1832056521,-1685393994,117029998,432304284,-864904057,1956448057,495409620,-411968884,-1847429091,-361095577,2082400177,-1289235982,-940967811,167804831,142712904,-2086614998,857229840,-1469966715,-2111928543,646521384,-1960662878,-1435599094,-373807027,-1094812006,-1627595465,-469374929,1426018590,1775150241,1774780205,-186201683,1962625610,1698083929,1308869477,-289559561,183346586,1163026079,-1114271116,1299680709,-840747377,721616029,1397201103,-1460451185,1458304981,90731154,-298004548,27178383,1053453223,-1690184263,1706389568,-1483374803,-1506351862,-2059989071,-956420621]},{"sector":7,"length":512,"data":[-540323848,1522110314,337264235,520885791,625519501,-1579687305,-2109126893,1071806544,2074579720,1130820306,-268576217,-1460588855,-471535825,-2080806030,-1487249757,1832506371,-1550832724,-403853653,-1490632725,226571750,223779515,-1845342919,-749053054,900519691,-711046033,1113956058,1043767646,1977906607,1790273533,1518332179,1961972203,-514066279,-1491257486,20962763,917100323,1466470315,-234579347,313842709,383756830,930401774,1054862638,-472686753,-672425345,-1622447917,1043133215,-270160033,1774249560,696560268,1778034753,-754363508,-1478844147,-1441617615,-740794105,-257132648,1941504359,1922401757,-29801445,-2059443603,1095122732,-500460908,1466864704,-559660764,-1883449069,-1919242375,937476718,-843384321,-780895078,1169519929,-1105438569,1874615764,1649620913,-1716498429,-1388918695,1860491186,1292269038,1746743976,-2056746552,-401365135,-1817101029,-1625465161,2043342122,1823376773,668831847,-242402860,1489525497,1207013355,1349700020,1230705945,1719822472,-2026477746,1515499104,-657548066,-39705020,1798992332,-1905809133,590977700,-2030889567,-2069482969,-1871084583,435831190,-1780368220,815746820,-363707392,1983486489,70164611,-816609543,-628296296,-2030565928,-856371885,-2064455370,-126850939,2074578087,-837619101,-2005324898,-1674311214,-1746525827,-1771591237,-1268340293,-614385949,-1440030911,348874634,-765104905,-222070303,908913888,-1824233032,685964768,1453328038,469561522]},{"sector":8,"length":512,"data":[-532780672,-804972493,-1290374187,-1064312698,-1811720061,1441173276,-1912346961,2318913,438602606,-1573609886,1503821229,-1345308385,-1215380941,187304504,2137852220,1463846882,1931005703,995099244,46367552,-274038168,-1093469861,-1951781227,2134536732,1590672029,1286873693,-1524315318,-729694223,1336758850,-1387619543,1245707924,1318885842,-291612995,285362912,-1381370689,-1525532236,1577559133,-1387099658,-743816358,1230872019,-268959425,469658469,-1832914727,-1491326003,1836602907,545579979,-1183042172,488945908,19228580,-1867580032,-490782232,1635421088,1671468974,-1227010128,-460755996,-329706821,1481364341,-1374553506,878780240,-748601993,1775092292,1762813004,1281995372,-631855516,-474967457,1665617293,-1620356267,206727453,-997106791,-1100466855,-1755093956,-158196004,-1907796674,-786711539,1742528314,-1811903089,-1400864714,1937176343,-1352995877,-1714136466,-762014422,-47732439,518937165,1340975723,938410708,-39881126,138089554,-217090391,63422509,3353978,991576808,1059708954,-1193765464,-287930206,-137052223,-1119104993,-1905851426,-187826043,1342520112,-1452736405,1879704577,1477596715,668558777,-492430295,-1506419238,-2058233695,1521413393,-1706365520,-514557858,1123338923,-888905745,1518725597,-1884282780,-1660670132,-1078448626,-25459223,1262797556,-133917230,-319538841,-1172855293,1493156058,-1841020660,-1270369300,-1977723117,-687278518,61513754,-675114328,-1306744916,-1135433763]},{"sector":9,"length":512,"data":[-1864235838,-855750978,642350313,-1556449357,-2063846724,1770468630,-2065341670,-1703292216,-1578259130,402574551,1335977405,1599410344,-313577296,-258049383,977721903,-1161610637,-1229187897,1158908624,1519053973,639349046,1382104675,-1517419535,-20020977,1741729756,534706691,1763437371,-535101929,619764203,121864064,-348116975,-675577799,2042877881,-1527391657,1527663889,1452337754,-486195989,-70066347,456787915,-1947148231,1246556721,1286094446,-1809895974,292571402,-924155028,69744056,-887921175,137756331,1609523439,-153617829,-1136619590,2130700654,2143412084,1169364591,-1409812883,811731062,665235742,-1555834548,-22951043,1830691608,2136751289,-933440663,-29180945,-1481791995,891945724,-501720795,-2145126143,-667305040,1755975724,-356992856,831004443,1431746031,-862642558,812793065,469758211,-786109386,1103511140,-1470093108,235767077,607433830,2141337252,-1986982154,1070561163,-663324264,-647397653,908295696,-1881168853,-1177421501,-1858061316,2139844376,-675298323,1814548729,373282769,1639698511,-1993793371,1990839189,-203090184,-1503408038,-632041971,-1466323549,-86659451,-1288302698,-2126816501,254670634,1621208709,429023711,1475568515,1388304785,266607457,-1546398098,538846981,-167851778,-84598538,-1569944290,1857838660,-359293029,-1006675881,1164603578,-1311450426,1773632221,307017693,1107539642,1780200159,993067861,2116058471,-408887168,802734093,767463616,-234382136]}]],[[{"sector":1,"length":512,"data":[555338376,847180666,-527928034,1924094293,137884662,-1949118568,1046167200,870556763,31833041,-1467062486,-297901308,612766700,1310929557,-735041520,1896400783,-1243515727,-1377265658,1285898300,-269973821,-446743067,-758722484,-1294011014,1506824829,494196433,751422260,53637693,-822844188,2038724348,-235690197,2027965108,-656506038,2060042958,226347280,576891670,1252254466,386524750,1659435593,6496440,403952361,644146322,-1935892159,1950644989,2052456143,-657410176,-2107544436,-801710678,-1798237624,-1860352671,-2049022537,440403676,-1868602367,-1359189609,-430792394,218277586,592623176,-141403063,421067714,-112062452,357009544,-616436831,1830060145,-245246412,-716080076,-1349943347,-1364757641,-1908649128,470087513,-348677892,-1801465814,-1042197581,-949915090,535531522,-1783300584,-1691882163,-974570224,1013888339,920115605,-541116465,-1273178036,-1334940343,-1807334433,258079785,230337663,-980543890,-1478728610,1919481230,1426814170,1865125280,1287607220,-1365415538,-2090809081,-1132274132,-1387086884,-257030559,392776990,-1372736297,786226733,355881518,-1144585937,-1016933200,-696710790,1393497477,-1221447946,-736600239,358410309,-1932176003,-840208889,1510333816,-3591423,1456610502,1014247302,-831413590,-1556738682,1573762626,1593777074,-417419623,-1189169363,-1889607410,384707051,-1218694714,570549296,-302891804,1954063723,1931050006,-606918234,505601808,-534544673,2118881957]},{"sector":2,"length":512,"data":[1925943303,-367275329,1912616394,-1550086907,-2006100872,1468427762,83128712,-50007707,-31714506,507041558,-1796934731,-2107683669,-1336247482,-1650316661,-1323167327,53026939,-549205431,-222178095,1674606309,2139254927,647806902,-1391516318,1080320580,-1725940078,1912630035,-1117720303,-1327538435,-21566623,-2088985183,-1018626436,-1821124474,-1260436574,1134779305,2093782005,-761384451,1985529952,-1472280035,-681459791,-1346150669,-1739214046,-1788781356,-1115589112,-1427138963,-2006269984,437232872,2129720523,-1008388043,919514482,2135020560,186517273,-437084618,-1443241980,-2030444196,1947392007,-1217856008,-74005900,-968718493,1719193726,1558459714,2080209774,1652141898,1111994227,-1080819016,-1076735554,1722274870,786122632,1822996563,228208371,-547701186,1475129560,414607311,2075221795,1186591051,275521716,632860633,-119702605,1571485905,-704637149,-1303574884,-30491361,61318534,-1815980549,1292888644,1102726938,-94762260,403858490,10277541,-1634429587,447891111,1651341547,1485950126,-1183244026,-982719435,1230834547,1730197796,1273707167,-1780991548,719912181,1760985775,-1287505366,-728624226,-1519162083,121356796,-1161123997,1945496688,1119481461,-1643363681,1215939709,-1579907456,-797216752,-2098759891,-634207125,18868407,-594403650,-2084747365,-1945155205,1726582706,1687007522,-1188784416,612399962,-1060927739,1816703296,-173649116,-858925634,-1545062223,1028992531,629636319,2120286448]},{"sector":3,"length":512,"data":[-930463001,-1871934206,-1473371453,585533751,-677948195,132469379,-1151955483,1096859582,1515502173,-1042611418,909594602,195227172,1825150524,1999192098,-1349103103,-874154196,-273639041,-1182842590,2091440484,366482153,543551089,48449887,-1302973123,639457875,-433970307,-1656337673,-892428906,-1299040908,1106398091,-945315053,-1182163785,79328480,1886562367,2039284906,2010773635,-1093485388,-1210311279,134442384,790741252,1929314492,-1282973079,-837753949,1642692005,-1507063007,-59836232,-808579654,-2112121349,58389871,-1622348143,1932840879,399469005,1840248877,701263260,1370109869,1229588083,1464421994,544601072,1238195186,1935330965,1810582238,1921322760,133959729,1243110158,1012886706,1946866871,459597746,-1503606339,-1407259353,930463926,858702890,620215606,913145826,867963911,1217714109,934496818,1593307767,991053014,880736173,-2114068301,1315774844,-1717275458,1292012537,-1246994474,-1431109930,716243295,-1789113471,1919504748,-992501818,-875502531,1953812795,-288522730,-605369345,-1612161195,1529959533,-484220045,1328592776,889914058,1414460361,770159156,-1901830734,-575388546,-310455229,1731306953,-1705352361,-408177337,-53763636,-952272135,1747905279,-328261839,68793320,-1506007928,1727962523,-1167667207,1724904247,320944791,-1981287715,-305858664,-948566797,1596649530,1475500651,685489973,570207124,-1789935720,1661090308,-658829726,-845107416,-1607946753,7335504]},{"sector":4,"length":512,"data":[808375206,1360618929,-1054787260,-1687934907,-1320085569,1067325214,3683276,-164547864,-2122776405,-1438327381,1969967221,486690267,-865501481,-839781255,-778766335,1295266127,822892230,-1958908723,-579130123,-1669260154,-945280149,728939307,1813716097,-3118668,1765398808,1818486032,517727322,397203260,-772915290,442748882,2079614457,1511674438,-1154034095,-1365940609,-2063631959,-672357708,-882481678,-56549025,821202768,1691871093,-1397528899,-1103855887,861395954,2119660165,-700003405,-629703088,-583716385,1498270512,-678017623,-480807732,950651771,383759794,-1496177755,-946164957,-108114155,-61380904,-1658700030,1861819703,1838874494,805417530,-462104804,-1088323569,-108885783,-1166922769,2096145051,1694365904,-1347580868,-1220936227,-894747340,1711043477,-797672557,442341848,-1177562537,534229707,-772474647,1112887243,165016434,1307827613,794275267,107275754,1026524824,-61808218,313602763,34360510,1065693958,-1771250443,1399137751,1153749578,-537083245,805619239,2044822646,-1504208474,-1375983577,-277577051,110888823,369651691,-1476742946,18993649,1860815081,1395503444,1241167374,-1092984866,-1191499480,-950633395,1797219782,-237691724,482518702,-1089815935,978438163,1277842829,-939168967,-1764936995,-80286145,615836535,-1803555106,-304046688,-1995052658,1093070656,450048757,1717947987,-104862780,988984915,-449793145,-1745177828,-955984919,-1133881079,-1610996489,-548521001]},{"sector":5,"length":512,"data":[-79999066,-206761118,436148114,334480855,-1653441355,-1267233874,1798811815,-1092186948,-93626673,-1628771885,1876761114,-953107529,1477553753,-545428620,1280093364,907884732,-831973619,549415979,-714973758,375711322,-853789495,1699573701,427204919,2093861097,1544456936,1819490121,221996626,904294080,1342204475,1020217968,-1510643496,1167957206,304090012,-129149846,-264257482,1868421796,-957609602,1184042040,-28252317,1103674338,471534852,1352600367,-1516075889,1358099424,-49574823,1089458602,-1945112304,293642270,-1511500680,-1083982825,-627577087,-2114139555,-977812762,-826229379,-565011364,-563660625,1538450865,1932101382,1792802639,-1950575101,1727495929,-2105585922,-1812551820,-2038225789,-1228126648,-915182303,-1311982645,-1554562221,1835438238,-524919860,881126810,-454504444,544322925,603067864,-755490829,-1035259712,-908967944,-1153482711,222182034,-655832328,-1197177576,1885981140,-522854525,26727835,1984477700,-1458809496,1006202917,-1506173236,1172103651,-1333253072,-666696310,1243779350,2124945335,1572486846,-896104284,-1591640040,1434468702,-596653515,-101672032,-152779782,775596336,-444883870,12642419,-81953899,-1605684324,943539793,-339212320,-334504259,-1124433667,-715129550,-73925312,-2126375777,-1116455748,-508288201,1329333238,29805116,-207164462,-333279040,641732963,-1609218674,-1182376573,1115321687,897302585,-555554468,-160418860,1055353082,-820468316,-1986557765]},{"sector":6,"length":512,"data":[-1468950121,1200043313,-81690819,1432840873,-1733816166,-837693186,-316566525,-2053901637,-519537327,1592942394,37550084,-1133220538,51465720,-770235345,1264788182,-1178588009,-1152887791,655974168,961697556,410657012,-128615364,-1934602233,-1672151026,-641940256,-906240725,-887668100,1993839155,-561435285,-1150157123,740042043,1997686255,-1280861226,1507618567,-1834791127,1487417632,-1802405657,257381789,-1593028324,-1949882891,-1377327387,1248596295,1282125174,-1425541803,1031488886,-1205597628,537489247,-28147666,-1113888400,-1075516004,1957890802,-180354692,1072410693,1767626307,-629306184,-22621671,-1423130137,-797852766,-844735708,-455164542,-1112955860,-1747096188,2080539794,-1923107050,-1629875113,-1569501133,1405840676,328373161,-1540842799,1741469670,472619807,1363445825,1556885073,-1742945815,1109285227,1619824517,818267211,1858713485,-1618984025,-54669884,316245984,-4477066,-1916109316,799837750,-1072952430,-682323235,620555913,1138594910,1053790209,-555670936,-2127672868,-939969721,-432222868,-202800995,296572021,-86758043,-1709771333,-641180291,55530547,-1381121859,1831647172,700982567,-2029529414,1777063679,141793497,-4013832,-1709372458,1409303751,1043555126,2113286228,958419979,-685001150,589821584,-562705820,190913576,-654389231,-1304295533,312258138,-506504920,-1873308552,340673011,1133718942,-129314217,19533557,-1649709314,-1531395749,461174759,1162593283,453527385]},{"sector":7,"length":512,"data":[328267360,-1721991018,-2137194266,1801913471,949015901,817685313,-628994957,482128682,-2055650950,-1869194080,1304721702,-1011197918,1922028027,629178461,1704105768,2057179525,-483192940,-1576221232,164549316,2033743721,1727365869,-1083791664,-98605746,1275363464,-1873960135,389380825,956645960,1959868685,-210475229,-1210613270,1580721345,1200292174,1569668768,397737546,1385426317,-1873920002,-725167709,1503718946,1292555888,-795053343,1207772474,-1510145056,132219762,838830439,1135993588,-1561463722,2144617974,-1880206001,1243771534,-1052818401,-904592579,-1858262660,447731860,-1984178579,2048221550,-1579485823,907769654,1028312444,663531611,-1178718261,340283072,-1993872660,1009699304,-1937708420,480714441,-1350553846,1928696038,-443321440,-1341607006,-1032227234,-262143285,-1029148239,1262173650,-1442609791,-912146305,-60281934,-820318322,1750535947,1831672600,-1402073057,947127383,291310777,643924622,-2048538601,1851795147,1081199620,1769306323,-2045845257,477674849,-1952074335,-1770684701,-2003510989,1760927206,646929962,584896563,-351010359,-30894647,687235328,1106955517,-1276131271,-1489754389,-1859883867,1071605484,-377555262,709132326,-157836567,-525175885,-258104769,-1441338331,-1863208096,1110901933,67980416,-72292691,460679070,-75632663,1290250429,2022116606,-1394462896,736588702,-579975177,-1057058848,1705759204,-1059295403,-1757764251,-17202283,1607198314,41949726,261632186]},{"sector":8,"length":512,"data":[-36889324,-1316073935,810177186,-257384245,-1479082933,-247657770,-1074045024,761115639,-1114460238,-1085595575,-1544806391,1995092484,740035076,1205734983,-1693281356,-1076251271,-199309056,-469158379,-1673918780,875744117,1227457193,-118992123,567098196,-1428824978,998901251,-954550025,-1379444877,-648631641,188356817,1395814408,1231395534,-201086733,1095887490,1013888449,1536632230,-1763247217,686503114,-902670933,-1678327639,1424574151,2038956713,-1861371782,948386916,947926676,-519954428,-121599573,-813042484,-1677198387,316489256,1090518929,-809631009,1213136330,942581282,-1025650990,1409725891,1350774956,1391747295,-838556418,1556563802,-1609167687,531933474,-1939497688,1359545723,1054316971,684488225,-454894161,-1325007982,180450428,-689842367,-1585471683,-987930874,-603881643,-838358255,1593092444,-542542878,2145617595,-694173990,-373570548,1507319464,-489837917,2071157082,-129818990,-1542002049,151774801,723144335,1875392411,1211891928,-609147911,525863958,2043303058,-563944541,855431196,-326225388,-914867987,1724263055,-2111042211,-1105872336,291376410,1232313206,1004612116,-1484730160,1986492397,-517730217,332435724,-479837330,470661409,196660856,-1344343733,1567456173,768456264,135137999,738474951,-1563521539,760584280,786863586,1937335205,-1627877308,1139285299,-656467152,-1305665330,536230575,-1146529642,1600514093,-1128788368,-509967971,-2122828754,986336856,1649720056]},{"sector":9,"length":512,"data":[1290869795,18951318,911887749,1434206980,-781948233,-85226633,-1317114648,557798919,1946550727,1957606387,1344206242,-1022736736,1667127013,1322390587,1410445878,235156487,1240213499,-1019598283,-1379798654,1701755148,1067807328,-1584393520,-1763944447,-1954598556,-2063580076,1457696367,630316393,-761643012,725992690,-268942841,1202020094,576437509,-1002144754,-440019181,-488988864,-440026334,1610328303,733034569,343819580,447965454,-1820583887,326680726,-1270109207,2105757902,-1005852741,-413654737,134189826,2068855762,-1805103323,143169014,1215108421,-877123721,1754392984,652846131,-1401281413,2055696341,-725258212,1289050878,-970551923,-2142985589,1605878021,-1716315974,1828038919,1762942865,-1195797801,1969206955,-873308819,797256266,450118256,-227510710,-173710403,-678185957,-7350634,709366790,371083308,-1350041108,1315500505,-558498473,-1898711081,584749660,-1056383402,-1409900875,1473119117,651841891,-112526621,-1543699547,1107373338,158304740,1700536165,1275573651,961542798,881689775,1634345990,1644008970,-608360144,1672433915,-1329214270,-1696953875,-1807314203,-1281529178,402892382,223878965,-1828557838,1851805003,2046886795,-1236766023,73482284,-370856428,-537971892,393836013,-950704239,-375017588,-1216892616,1012988793,2109014490,1244350985,1381462615,962171229,-1781111434,-2117222152,-1117516771,-823115838,746705472,-1338204666,1101424694,1677332202,2053551467,2091669512]}],[{"sector":1,"length":512,"data":[-1956166484,997823219,791683275,-1326069665,-1196362136,1484411485,1124844236,-452686545,-1988462368,1958817546,-551457331,1513760521,-1876802018,-1740849304,-2138612580,534238156,-900824788,-733239983,166329409,1856493607,104293564,-321778317,1269508,-709635770,1877169440,219141841,1352495686,-1437866671,-2139969918,1319345556,360787310,-670175986,-1149517899,212114553,-967400892,1529535879,-1549780222,-778232613,-239655662,-1593413727,65300260,-2011860974,1642087659,2022747235,-264441696,1819854160,373134048,1722936451,1919894698,-1949164053,-1099401297,2143750008,1816164640,-2027021555,1279184270,-1035178806,-1688535682,-844587372,200540638,245444832,-1040100988,967842720,-1933375842,-1444983018,-1237307816,1007974060,1982210406,1243145728,-188568250,1485134706,-1636457910,-785258420,774353512,1533165450,1378297210,-98327542,-1982019110,-2005336577,2027635575,-1122189708,-737173154,-414612465,341643010,-1017685075,1162347618,472752884,-493158637,-675084444,1691944706,1361825432,492540222,-2098771952,-1006855514,-306526092,-2037467283,764641521,-1986082861,-1505482753,203189145,-340078327,-2039385615,-1673663801,382730226,185556908,-640786102,-3551979,-1351701681,1215067942,-651230112,1815364225,134314099,-1921225798,513109476,-1564301424,-377810993,507944972,-1746477487,2103645573,1487044802,470179709,-699988095,25166431,-370424661,-1919709046,962355160,-1702848195,300152429,-833873082]},{"sector":2,"length":512,"data":[-1922886988,-313252138,346409464,-818248580,-285937489,-1547617008,275945254,729217200,-1931855858,-491308189,95566988,86476671,665292349,-1309289654,1909376752,-692667047,-616383914,-27811262,898395923,2106450369,1178586959,-493312987,1127674883,1912049669,-724118472,1104293869,718117713,-618683963,-1063749250,-1710232106,-1789146774,878246970,141995061,-669343231,-593267720,-139832683,286561806,-1239201205,-1428493899,-660232531,-2758670,1448078400,335646530,1551833735,-1467105639,-1785465160,1973206992,-1413692828,5608454,-1398550206,-163257536,-1175667868,812854856,1339345971,-1151345093,1732567890,-988685648,487060047,-1336492693,1737677320,-2040236398,181892792,-275379859,446715882,121085729,274510215,1642446279,1270426479,475565575,-1531620639,225220432,-1601355197,158811242,664934106,1932172694,-1954344226,629946035,-492342426,-1402238482,881180085,1853449918,-1609758625,1864665036,-525295794,-25504632,-1997039220,-1723711689,2096531039,930524444,967083310,895144478,1174543307,383824436,466707489,-18661216,2126896739,2107683521,1541301246,-1533823434,-82392933,935524910,-832567506,-1635181505,542581799,-1954351301,31766242,272625166,1015531106,-444281436,-1359580896,743180598,-1888374390,35305313,-347654962,695606877,-1779664595,-300260088,1943612852,-882592880,-1457838662,805395131,-1975911144,1492887745,1924015940,544246321,2074987938,1533839274,-1922890176]},{"sector":3,"length":512,"data":[1194418489,1792273181,-1371721976,-1503877633,2076764973,975394206,-1709320800,1009385874,649813163,-730544674,-598000742,-1006304026,1807847173,-1690595968,-1179832966,794121026,2059850606,1074205707,627795505,-1953116164,1471044737,-1344721214,1590326598,-10900498,-718771187,-1266945523,-824683553,-1550714680,471130525,-1745565829,-1506301941,834760909,-662309258,1007157444,1343530176,1481695081,-29248431,2104562533,2089017353,-798628983,-1234519038,1824752415,1408227599,-1289554309,7665971,-1276969057,-876410738,1735521443,1858633243,-565439323,-801223426,299602424,-1759468010,1147904986,-1016846449,227611671,1336675030,976636446,1485218739,-1400031091,273360156,-1375115606,283041293,-172851518,1727228805,278539724,-821964808,45991269,77444928,-1846747234,-1480114052,-1122201021,-2029725159,-1024115141,-948012042,525695143,1069797659,70297434,676644737,222217356,-277498811,-1612813770,-1026367701,-92439888,-1724691,2147318109,1858007861,7757539,1324537380,481994389,-851583641,-1610119852,-780719766,-1580747095,-408467359,-288485012,1233312228,80765263,-133284414,-867248671,357196375,600609378,1644546906,1653000378,-1727959766,-1877860348,-1896949592,-1898067085,-437051569,-568901716,-1952389034,1119275079,1201167864,1871605078,-646667049,-1224882900,2146497386,-405499352,-100725087,1824223361,-844443090,2045719583,271498896,-317729489,-798015293,908939075,118469242,-314393144]},{"sector":4,"length":512,"data":[-2101828886,417773170,1655107366,-1471392553,494212333,-271099715,1823784821,-166719736,1503402517,1522270896,-392287220,-268181508,2020941449,2023581566,1316445255,-1733770250,474119013,1219868788,-1456170086,708738664,280035256,84966823,1012522573,274820185,-103701747,-375704728,-1535319056,-1843372173,-1906717043,-1035700754,-30813648,-813029448,2125674047,-693108573,-2088452,23052298,2130717688,-738476027,-2108825285,1211318242,-69957771,1195897762,161624605,606749824,-897071678,-1321107996,-38242171,822012157,-126301144,308323972,1912311342,339010272,-1729036324,906041445,93960160,-1563361238,192456194,738467852,1597240365,-616185243,693089484,-1947605814,-1654960603,-477588166,-741946207,1686432668,96990712,2131292613,1334924987,-30933342,23020905,-1385584696,-491571612,1349593961,215284651,-2146777683,-51142085,-1910431645,-96664564,-1980861168,1066134979,1753884248,524043040,175382617,456278468,-1231427093,1405358214,1774729383,-379154200,-1961621310,1231840281,-2092105327,1648326789,1041820489,830023560,65157201,1907920608,-821001423,642427467,-940486543,-1877343519,-1169222477,1135164439,71209921,-1643570609,-190969788,1753729021,576130592,264128248,261541072,-1806952560,748036405,-2088226770,236852166,38120931,-917840684,-964428370,10010350,1204555722,-2146356964,-1801656825,892405527,1305219248,-1987032918,1636910708,-1392456648,-1500902568,-229073246]},{"sector":5,"length":512,"data":[882402428,1191402124,-2045640384,340403595,1443924095,267623689,-666681950,-1924636466,-9343967,-38255869,140655929,-1033257661,-1845096256,202776551,1296911653,2085323850,-1571815052,-1677323196,-1807089571,1093205816,140914612,1253064831,-41986980,137484216,178055403,746046091,-266403796,2046902445,-1093106441,493914493,-299555555,1959363701,1098459284,-1957791849,-823643078,773600032,1753479470,467281448,60411206,529260002,-763944985,1469913193,521300340,-1336370721,-46018800,-1584429801,401725851,1233174730,-301974532,-1373587832,1067309128,50937178,-1598416941,-384849882,1215926796,365038702,-59440276,-524758620,1617192056,1201226800,-1044371722,8150114,2030367084,-181529019,-453517145,-1696169642,671443218,134779689,209047541,-1118826846,119040359,-1241503037,1142936192,177684849,-989487944,1560497281,-288870374,1657019151,1090275462,-816271258,-1073482612,1216757589,1118357850,-1031419502,44151749,-1813345437,133288525,1770141899,-1269886403,-1903324957,1448615649,1037712496,-1458634564,-2063399416,25199127,-1910122431,-1448192117,1936271785,-1531985716,741319847,892800102,47890805,269272528,798386277,1142507592,2074744659,796667293,-92453448,345178595,-857108288,-121767671,153900620,-107014267,567248776,-1307601386,1781934887,-2036516773,625173187,1887872528,-1989363434,453304692,142312132,396252611,1068111165,1330114072,-833169157,1391953108,1508961350]},{"sector":6,"length":512,"data":[1540287383,-1159981657,-1036514597,1627339552,-1375151080,-2092388846,264553947,-839529969,-858022548,-1190519036,1059025999,193610376,-201505782,-35814254,-1977298744,1570244346,-1173339775,-87189058,-25290369,-1327367050,-333968522,1477134091,949678365,-1226797999,-1894895568,-400635510,1513016560,-190118227,935420663,-509964006,-1058822265,-1598946651,716744536,1896448946,164486838,-502646533,-728790145,-1225929154,-1842862354,1106122773,17859602,-87304508,-1256391615,1729744901,-1133463149,-2030651854,-1060097534,544971381,-1027530490,-997144534,-399496133,1729132168,462077893,1742480896,1893823807,-233527092,-1326686980,150201752,-2141072136,357930201,276562724,1339843676,530575682,-1508915134,-2123045003,-2097415893,-138153086,-2049499896,1891008670,-59273026,-37030592,2132852849,304234891,-1616190230,-630296101,-1415583303,-1188385182,-1692474211,595011259,-1226479175,-1965821397,-7084420,-70892508,-430670474,-451702452,2100611160,-1363988561,-548171427,-732521801,-1098083358,95343127,1913667263,203354726,642143966,-1421604923,-2069936778,423397376,-789568408,-2012982929,838860860,-1254218661,-1585983088,376542640,310139065,1345010690,-1227621126,1046997304,-1330650955,-732743856,1090503458,-208090135,-894152517,-502026256,144244767,-41044737,194355203,-1219493860,-125562555,-977842176,844127174,-793330131,-2147359489,-1813754690,426978124,-579936386,118453927,561431412,-1796271593]},{"sector":7,"length":512,"data":[-1572489383,184280648,-977838033,-816677951,-1929634844,-339769954,1050999061,2056950743,-900771246,2081058820,16252802,1189989792,541107313,-1492386000,968962765,60447604,1395450304,979210240,262587,1851352784,65834551,12079116,-2147436940,-1618509618,17772539,201747488,-687853884,-1432223713,-434924544,113696772,1610989856,444596926,352911404,5750528,1074464260,-49283070,737673567,805341440,-2145698593,-809728231,197053150,1081611136,-1072972074,246538279,3062223,482590742,3067871,519106564,-2145989181,599870708,-1535628811,-586218190,-1691846615,-1507866750,351482336,-2103946692,32232711,-216128960,1670967379,1311972874,87671745,-262975601,-1959925584,2101354551,-1451820165,41680963,1677721648,-1861438429,-1543571343,-1775363932,826751020,-1651276731,349984831,20101887,-313984193,-373345947,97549575,700296453,-1933356247,1244327468,1597086618,-68578073,-51185159,-536808657,-723261466,195507004,2260160,56986290,2122310016,-1072972190,1785062,-1397969741,1060839532,1889520943,2134848470,289332840,-560812257,-756615969,1792967675,-216093123,-1495166352,627148001,-868410429,-662876645,130220539,-821291641,1636120701,-515579570,1480540832,-2062827008,-837425644,752004065,527039130,1227485806,-1699865473,-743634971,250896801,-1378023901,-1563803640,1278764152,-260141156,-1860928623,-409825465,335435848,367484796,-1020103748,-1021901497,252042823]},{"sector":8,"length":512,"data":[379323263,-2090692730,129972101,768217028,973909436,-1526525248,1682768865,258527092,-1442805104,1721557985,-304537895,-1902722079,567838475,-496349046,1271236029,208694370,-1547332833,-1871212557,-491550172,-74573029,-1573343293,-669492999,-572841832,1634518451,1816013976,1221859824,-937678812,-2145150904,-1737120626,-1001766626,960236154,-1170223055,-2008809048,-1982050873,1278142818,-379440322,-2089972634,1370239730,-1190568770,464506901,1998074781,1890269276,-1793151498,468848857,193033240,826278240,-442237192,1892204925,-833846929,-63772646,1002756407,-1730115898,1586914945,117841496,-949024913,-42926370,-1920922937,-647456246,-2147459066,574619648,-1174470912,1076838400,264252476,7680,268959796,2144468992,-964099041,-1672665215,-1533890268,1980765640,-1818638134,270241254,31480884,-2012330255,-2067107277,-1576858719,1949932877,53053504,-1545892574,-1797755856,1094902561,-1442377213,-1536030388,571477640,1112081582,664046085,297287747,755332457,1976079084,-1038075482,-1419127382,-414929972,900897102,-511658910,-1492646910,-2139031687,-2012765695,1655539096,-1986594143,-966184421,33725702,1949898830,1235651282,609996119,2123023969,-2117405351,-2132119764,768009436,-1032384470,1986069134,-1766193145,-74328890,940715459,697097842,732849971,536891922,1074606082,1041104959,146211652,694263899,1085942786,280183083,1160904376,-2122070697,-1915687655,1296506889,134249632,1244833224]},{"sector":9,"length":512,"data":[-1994981367,-2147405780,1308623275,-201564934,1637928952,1533352968,684048500,487981095,336685073,2017346816,529904,-2126752193,19122137,1513913245,-473458224,1316461829,656507471,1006869764,-1876305806,33955183,-1061136374,291047604,1443957852,-460562024,1814323216,-985285935,854096910,2141248780,1269040755,672436427,-1119943496,402670448,1705165669,121287303,569382768,-1904241827,-186942540,67046618,-1261400507,-781488381,941218868,-2093238782,1232139801,387972164,622361728,2080509568,-1445598197,1151165824,805890768,-881748606,-157045760,-603877791,-410278883,1115058591,1249947770,1430989200,360972644,-440802279,-1072063530,1382535965,2110751011,819523544,-1468104685,1069218735,164746245,1001942928,1102930007,-1935676137,701664118,-586168726,812810167,-988794620,2137131402,912927764,748131535,-602347513,-352282673,-889462328,-1407295083,337101674,1358081,1609316160,-1446507282,299410016,-2018210808,1157795560,-2067508372,812949569,-218898336,738211937,-1966732798,1252650123,-818901837,-1275380913,-319897138,856274858,-908956262,-1293296786,2097991,-1608514047,1997716992,-894309044,-1167009042,-335788394,1812361661,1189070902,-709561957,-815391838,-2130692084,-2141711356,1947993729,-1315426181,-1608103178,757833284,1814741952,1997584040,-171539991,-1729009146,1881989748,-1713211503,-558841625,570960844,167927952,1816856618,-1164294213,1530311462,750006713,-1200878652]}]],[[{"sector":1,"length":512,"data":[-255206685,1278104734,-1235632401,782838569,218308800,60874806,-1400619505,1318559595,1136978921,-1762862662,1873542748,-2130514999,316452389,1975759706,-1528181798,-1383521722,-2129116144,944509572,-423541503,-1721411014,-1529787707,-1704538175,788840234,1444226713,386244960,102858846,-109550055,-1762018255,1066378202,-1247065394,-225336721,-364978014,1260300839,-2001114806,447024042,-2029930388,1281571100,-764764941,-1379457039,497727906,-2017335176,1107853343,680010120,-1987157118,-1148663254,-394707162,574656201,1620452617,975636898,-1692132358,-1979548913,-2103925720,-1196676470,1320045314,-1676990054,-880617292,734723488,-256203214,-1037038622,839672592,-480711478,590521241,1087278886,-701166301,-920280224,-1482003902,-1395764568,-2132920563,-432468445,-1521572960,-345357737,-474795625,-1292682226,-197351333,1049592792,-805046020,1252694984,17055918,172101737,1141957681,685301010,-1431113915,1763198386,541561284,1219701921,-1533765340,436934034,2099923497,781472458,1293100225,327807286,-991285875,20892691,911283237,1377069254,-1798670006,1162432595,1767396757,861377989,1487623554,-695887516,-909546837,-1116709994,1955796780,-1952254503,397051256,147422815,428105880,-1973276346,-1474763215,-1317486192,-2040949660,-1382259047,-1570235924,1780115089,451326378,1725018732,-1178964453,-1066427444,1898673929,480715206,658624115,1641444637,-562618969,-1960958079,-1635280412,129625210,-638288737]},{"sector":2,"length":512,"data":[-58810489,-2136995847,1619532292,-399373621,1376945184,444997992,-2011043726,577278498,1313703562,-2047826308,1708850275,1734480737,1268597598,504196310,-101926205,-102297224,-1669605300,1742424745,1669009176,-1076441415,921479084,-1338307504,-1469633432,1855039963,-820491713,1877428953,-1597330944,466085057,2060327157,108728211,1965000164,1227858711,-431948707,-54401043,-472260321,-921210101,1029176931,1584053933,512407584,1966457022,1867663705,-508903763,-2111533371,-20799345,-1132547563,-1882395626,-1175679097,-35273271,-309223464,-807068494,848005779,-8795677,-951729858,1212752919,1887042975,-843726861,-1648532528,-2062233703,961166970,-1665075396,-1839829249,1609805013,-974987105,-325653993,-611992930,-417409182,-1438334279,798771502,-1948731542,1866133646,-95744731,-1517995936,-1948997714,614108193,-159942344,2009159928,-886122328,69117273,1903675264,37413623,-1132678419,-2026603681,1116935943,-182577790,1352976096,518242993,51007132,-1041419221,-1822313227,822522460,-1418564225,-50517450,1701287892,582769758,-1133992318,-1538046686,1157638319,724919210,-44443244,1599359087,-1960605866,-971352244,-1943296393,332572735,-1865368921,800938342,1331264861,-1213934211,525366768,-819498219,194106399,-1506103493,-606557843,-174239387,-1630199562,-721837466,-1716297416,-234685526,1014992742,603696310,-809617895,1212784384,-1317994001,1588127927,-1541112737,-298088835,977678172,-673715882]},{"sector":3,"length":512,"data":[1484838151,-706898099,565062201,-730117969,1466552668,-1969883654,1944763184,620053544,-1306642563,229156800,-910668697,1223021137,-2035755854,690133665,1175017969,763185576,-356835323,91751330,169695722,497288503,-47731860,879436072,-1527477631,-579821892,-1184907892,-525822371,1739547755,1923675851,-638920335,213426648,1099406181,-2017706315,1788801231,-1368946787,-1432407121,2042620351,-1429751942,-22254375,-354335783,-1782001052,855568195,-1359728334,-134491923,1933490337,-69487178,-860688939,1018276495,1786799451,-1333135380,1157431002,516656237,532598525,-1271449338,-1915683855,-1711031029,2059775832,846518973,-995783259,-1028844605,-589840395,-210980565,-1097854902,217220743,1173246444,500062704,1139331340,250919041,2033724566,-833303379,2080233460,-1623030222,-1890433340,-1054775845,-64501824,-1151797615,1723898253,1398020981,-1305266595,-54666249,-730456043,1481003715,1974107070,-1439025903,1088505670,-195352056,1385957888,177278359,-2070612538,911726580,-2023298807,-1372827448,-1086446761,2015747757,1032253926,-705517876,1706645128,-788218283,-1548495062,542138022,1751651823,824030732,133469300,-461413689,1667370365,-1193244879,-1924080041,2083778520,-1834255079,-735897614,925654149,1552237899,-2030515222,-2051412094,976071427,104176429,22627064,298935554,1255759781,2066544880,574024740,-193512060,663195029,-58411847,544376197,-938809303,-783188293,1635227313,-574134356]},{"sector":4,"length":512,"data":[162464210,-1387877642,-1737736543,-820830095,75132228,2018074622,-913571967,956297280,805242817,2146460967,-342093510,1497531330,-877636566,-1712824440,-98164546,-964829138,-481908470,-212157411,-12039258,-674006279,1924734675,701564651,665681589,-705118549,-808369420,-158369292,122453721,526171994,-2024397910,1589634085,945810105,1775325002,-1174914884,-1953116533,1059909459,-48039585,1500082166,-1210328854,-1709346431,187909037,-2012039881,730377213,1625859544,506310661,-765997074,-484283127,-1974798533,-1177415421,-42424901,1725503838,-11153963,1657003633,-1644378167,-2000853516,1997770912,-35470610,1608541162,1915629451,1460903313,-1810234782,1348637718,-946249217,1609491695,2031579725,-1973622928,-780868296,-614441007,191138689,-564364282,1027703913,1874590800,-1109674175,588061107,-483664204,1880905650,-56817712,-538007048,2025702531,-724197726,1327978163,583332203,-1136574754,-1158093463,-1399656455,1848491868,-599550711,-64255167,992684087,1667068457,-1770454354,-1815962114,332984409,711836801,535863186,1717026760,1376782118,-107477475,854085122,-720443857,1034277495,-882386801,22624800,-981641987,217623932,1241408165,-355183984,-1442724213,-2088675116,-1586155825,-760335899,2076983699,25840553,1624236867,1605203114,1325363946,-1826585952,1834619729,-811969273,-759877979,2010263205,-1880260295,1191692680,860516546,-317476380,-1579108599,-708429742,-65244555,1124487129]},{"sector":5,"length":512,"data":[786795450,-472525169,612228126,1808121167,848960258,-595644557,-922613433,-2049477827,-1303536808,334358264,-1384040889,-1574051293,-1344570071,1515466234,-1087849879,-1238625154,-293436170,355897311,-20877221,-1838591416,1635581320,-977221164,-323947479,1607896695,-1255118357,-1107444331,-815991948,1958736415,1709229587,1033455421,-157841963,-1290253646,-897874857,-1644803557,-1872185347,518866255,-2007037558,-2113349652,2136286453,-1747615821,1074455693,1119042198,-648392835,1191923647,-899797308,-646429400,1325170593,1303354017,2136748619,-464016530,1444744662,-345606166,-1118781176,-939950272,1129609389,-52130298,563785008,-1779607520,509258305,1441507813,-568210701,448060351,35261239,428226053,1449914879,-17294146,705760573,1602254248,1437641875,-2123671472,140184958,-1334774360,-1000895515,-1693628675,-1948967215,-1526942642,1056760801,-2062614607,-671380062,-365731369,1571965323,1973403663,-1403421554,-1176925699,-1170281135,-933169700,-395086709,1030963025,137331992,-181510397,-1064305605,-1152653264,1240952047,157685726,-983005603,-1821060731,735151601,-2017637920,-1203647506,151540548,920538203,140298374,-513779190,1189228162,1212555325,1292437586,-1254048306,2060020923,-125073227,-1968340030,1017867128,-684844267,375129987,1259003965,-1825712485,2060515748,-1402585499,-40869588,1528452558,405708968,526671702,-632707412,-1077517759,-884559465,1284878199,-179742539,-1862549537,2141563325]},{"sector":6,"length":512,"data":[-1866401411,260208940,-2115558164,-386586656,602672959,644143814,-1625583198,1215725862,-1970683191,1144922057,1862997621,1512885543,-1152994183,826267505,31484788,-149917705,15152990,-83622874,1193749385,-1639646071,150081447,1115018174,805343808,626860393,-718155907,456650804,1581456415,2052225735,1372673992,1264898622,1305746928,-725003098,-1970474733,-1252069066,1965685037,-1772037966,-241918469,-1812686057,1479045210,-95824461,-2084303665,895544603,-606345972,370328128,-873681902,1823428743,-1513371674,3735468,-1054909116,-2123845259,-2122676210,-244499858,-1375594731,95065520,801867470,457541762,286253538,-1961816305,977473615,821594210,-1267328787,-2115820055,1274589912,-1076407809,1484736870,-1486372394,1140460512,1555373043,1565512574,1040414080,-257900805,-1559598978,-46664298,-1367178501,2045575193,1555005183,209183036,1975539512,1832893560,-727869923,1114036177,1573780123,264333439,-464510567,-1632334032,1671888397,182078377,1328477538,-385795515,1321117782,-283228796,1600517097,411822547,799620834,1581026030,740156780,-748032753,-215672545,180118045,1717894315,934370935,-1432041896,269966646,-825053746,321788147,1952232571,72508168,1364951684,1817042460,1982567934,-613681020,1418038558,1855232310,1555947195,-644981423,-644156837,567019905,58871609,-776315023,-214403476,-1688915769,1017362609,-1934730794,-497272383,427952816,562642387,2038269840,-1271636217]},{"sector":7,"length":512,"data":[1058258348,-1186196726,103386415,795722184,-264735372,-2009482512,1052454700,2129697440,1123474176,403047549,-604742499,-169981490,1309775244,-572200746,-104200085,-1446566797,-2022031823,1367936626,900939899,-416882645,1064643087,-1035720983,918572712,1486924406,-1095998981,-1545647865,-1856209203,1017402990,-66505079,-290092997,-1056329422,-190506840,81852029,-787856380,1106246518,1108727432,78564940,2042210818,-767196085,1224658012,-113692343,1871944538,1300133868,-1816265346,-1882498482,-717876593,-801441904,-518065286,-771774228,-1183783643,1416006451,593818154,-562866309,328907396,1732189312,108220753,659593327,-1866340612,55840909,1687357451,-665148640,1672514960,953289328,-721143025,-1610115936,-1269560378,2090632465,1931653921,-1053075071,-257880317,214816518,-1771615055,-1951938305,1473352917,-308404298,2054116695,800673659,-233763251,-1006730517,-23384573,-1379194221,-487707073,-786606980,1635270312,549472393,-2126555204,-1568030153,1979533299,-1288211752,889377951,-104681146,-915800376,-665358152,-661944860,1258317047,-547166651,1610043635,869498509,-1477061586,1365753253,1544967605,1752227703,1514636695,1665666269,-141790559,-1956230627,1800073881,422651919,299117999,-1950934498,417288767,190234353,218877504,-493038266,-247260164,882019544,-737993553,882984171,702549109,-887951918,-1247824019,-1026252589,373534107,554490658,1230309026,186261897,1158011589,-1858397701]},{"sector":8,"length":512,"data":[-704051858,-791102567,-1362683352,-241033079,425190224,2069840873,209008192,1567459855,-957406091,-968341741,851296907,115868468,591735366,455439754,-1819696935,-768458938,635200585,284006675,-2013632861,-901705930,533267677,-613451671,375504189,-123262568,-1904185940,-1067536810,34743055,-1984854684,-1233191828,-1915138130,-625190580,-2033663208,-1782841887,1682098180,311360718,491974312,1515315121,-1343747362,1607467525,-1982068367,914873562,1979216605,-499894325,-942612514,-1625225787,1916015582,251423713,1416705553,-60542251,418591572,-686032949,904542995,-2070298966,726209576,-1667854347,-760379933,-1920815100,-1552089384,1599969258,182266396,1465972897,-1424632216,947638713,473589744,-1343749904,1970478472,-1037700126,-1178864025,1122469381,1742184309,1181209830,-494509005,-682018277,986081391,1667024238,-1773250505,1792056651,122045518,738075101,-1695387123,321223701,1780878418,-248712864,-1884805379,1883866868,1917408070,1501571138,2045035560,896632072,676192918,1280569612,1800341374,-975024642,-1669464442,-103740672,523700499,1382209593,210943486,1480746951,833664546,-89995640,672995464,633302909,1991893506,-1008681993,-1323046188,-855119780,200228048,-1702313718,435568124,-501712467,-702361225,-487595952,-95259552,1039323774,-56200232,1083699861,2099724633,628106285,744918043,-1339312074,-1449529143,-547954665,-1933051239,1774736230,1941853645,1692737525,828950516]},{"sector":9,"length":512,"data":[667551080,692407654,-830594570,2116150651,-1836538198,-1455013930,1365595432,-518913431,-1395665943,1567429310,1516333787,-1237973237,1824152263,2140060642,1446208003,857968852,1080428179,-1247251063,1706895449,-1086831058,2100839492,1776347463,368331660,-999204436,2006026791,-283830417,937601616,2057136679,1418100529,736139257,-1587939471,2070681132,-1166700436,1642019478,64700099,-1008923311,-1949952298,-437623932,1897434976,-1292551651,-1265659445,-1963225436,963948459,-595433491,-254904,-224568830,-1104583605,-217713262,-124743600,1553313619,1046099811,-1216946717,1138892310,-1209848702,638598320,660229103,280401618,-1141843828,2065583604,-1806790049,-719087971,45291827,1917372827,1756848668,1728681068,-708239627,1876086942,-1472604633,845105399,1630263040,400338453,1525830087,2100873748,838272715,2097514537,1321821385,-328904006,-173160704,-2146984640,-1821298340,-29485694,1160279891,-1810840984,1050414864,-1446373451,-1866336258,727221169,327828035,281469518,1038302442,1934553078,421047722,-358693857,1325749951,-1570986899,-955383114,2035395434,-1151397184,1175880352,-1492908239,1424384375,317758675,-1662187299,-313256271,1120294902,-728298574,-769179896,-506622534,1409181034,938352171,515010342,20956636,1956636036,-1849884904,-1662646433,85153478,-261540339,1538833498,677137293,1035525638,292775728,895693249,510287358,1997376182,571969073,695581599,-378386313,-678180575]}],[{"sector":1,"length":512,"data":[-982400765,1492788606,-130145472,-18769012,-520816006,1874582637,2113859260,-316379355,-36226848,-164279835,327643505,543111328,-77914314,1304717413,1115107085,-507216286,789692176,1486294566,-1515530843,-124619355,380422988,725710253,-1444292984,1402328273,210957207,1651081490,1175827528,-1013458126,-1923949759,302571637,-752942153,-1765760322,-1115317482,-1420325916,976102609,1409880583,-279164321,379996915,1156058502,1974526473,137922375,-621940931,767859087,-946877396,1289262344,-1188088661,-1358015188,25552549,-1608590364,-305486490,169152327,-1706090500,383886039,153542249,-550299376,317700697,-1364091022,1079155885,1205182794,-1199123738,2088553914,596829907,1920583386,258102560,-2057070729,357049510,1745831340,748347310,-467966857,-514587941,10268529,1611133907,992216005,1011450791,49719895,247926431,200030319,-1205166709,-1539684297,1180831078,1341458780,-2065043445,1280929454,-1902274064,356359621,186920371,-1233388090,583395616,938801627,1133648679,1129748309,-329700116,-1970119592,-155440548,-531842910,-1289565956,-596774541,1550588449,1364740754,688676437,329056124,-1746092071,-762316866,888789479,1916766315,-179897924,-1545625690,-832912036,1629070759,2141797163,-2111837746,-11799560,-1884634060,1945795831,-719520204,951033015,1048469981,-563823183,2043991698,1076510154,605452663,1826407389,-473277759,1606549043,-1460915375,-1504338594,1240374504,665773846]},{"sector":2,"length":512,"data":[1035148646,1650832865,-729499952,-1552093070,1566279486,476747967,29395523,1679354044,-140218256,360886034,-1561429548,1870181473,1671608286,-2049400462,1555178550,1744803231,-78353911,827654899,-298276525,138352607,-1744325037,1043224742,1329571776,847379653,2063941818,-1102956879,-297000116,1502919364,833192378,-944679605,-1956869409,-1311943026,2112736834,-1741195431,1169961173,-956690489,1077329449,242322799,-8709068,827481455,1555206218,8442525,-1777565365,-89178293,207005733,943264852,350433042,-503038170,-1134506419,1051134870,534660391,-161728979,-1017375825,-1773883684,-1790270296,-216592169,8034172,-1453802442,-1542220279,902202140,708400416,1794582788,-2034469997,-1802091791,-1758515785,-1790126407,1770949448,1937707597,-656335752,267559162,-578632753,101093800,630262627,505294354,1075060841,1980738216,-685381602,-1370773797,-16372057,2064394149,1777490981,1023318321,-891656053,-408764571,464633301,229959175,-2135408833,-1944669983,-849918713,1008390101,385907906,-1507954403,-870843247,-355268872,-1305805038,-158005877,-558694138,835702348,-1443988834,1829984023,-1812078930,-1626988021,-1449726950,1315032664,903986561,-167348521,-580155130,1811455973,-743287323,57753080,-2017697714,-2041060242,-240387583,755188923,-1190386061,-877550204,1274180559,373675005,1720752589,634617000,-297004294,-435854449,319770493,2020826060,1271698300,-1711465788,672877728,-130324867]},{"sector":3,"length":512,"data":[380819644,-128641031,-2080506115,-2070630462,-1748314037,-1762952019,-729606401,1962385204,521104310,-38374198,1572085586,-2146442094,1174147672,635909537,-1962929923,206600677,-2031686595,-1022410746,-1086362984,-1540981450,-1675752227,857459999,-548645681,-1012521262,2129562060,461208381,972227488,37719654,857371672,-1530351921,-1506685619,1961659111,-1083729896,-679192930,1375496600,2113940631,-398656482,793772119,-134120192,-71256607,763091697,465838836,790137793,1590701855,-225919776,-570560950,1222366843,-404830737,-612795971,-1619364999,-476058552,-78472511,-1219539162,-826543193,1639949516,-1978824882,-2038275975,-1411528430,1880972731,-553671753,-93458643,-893449600,-491289268,335974038,1751639027,1448145349,-787669844,2040045706,2053979512,-543006110,-956051618,-37958589,-184726525,-2034211211,1244019589,1894336351,1719898510,-1595314682,1290856941,222776960,-494865455,744235382,-38121006,921903221,2099127514,1282716444,-91468065,-2112378166,69623449,-1226808198,-297370533,2142960872,1342014547,55014597,-1977517247,1785202553,-273401666,2136878719,-1608672822,192920172,528476824,1712126735,-1912095818,-192577417,-281206430,-1066089816,-1850245259,-991478279,483507827,470068919,1770144299,1153496645,1934127104,1295859184,-1831065424,1931248680,751629381,1016021249,1544001555,1554738859,346982729,-1277696145,1019492865,-1252754680,-415032776,-1592775024,521089360,-1885250960]},{"sector":4,"length":512,"data":[527461546,760366530,-1916132677,987867134,1908414195,-1576436539,885312712,-1920766460,-1960159574,34866029,1828941117,874434138,-1489918160,320272457,649134796,960588386,-1145995324,913703077,144420516,935961818,-266859516,-2054459871,-536823539,1815742733,944777839,1956712434,1428108058,1416941909,1131046198,-1974560407,-209317546,-1200447253,-1148687016,1934967854,1745891927,-77171508,885333813,437162231,-672785504,-2036852639,73428624,19201686,-1374377302,1876090123,1984953993,-369758772,565035243,-1464657286,1534299689,609445280,978800974,102383322,1090507698,-1884836240,196594279,-2097875505,1254767173,-1930804068,-85557973,-1497270538,1567007792,-1504945687,1732263324,839287338,-1626317279,895671317,1333275847,434441720,561132652,-811264247,-588881867,-784769586,-213242432,-975997507,115918406,-762794751,366775086,1011661088,-1983189375,-740346653,1132253806,-507704443,-817411694,-1335879072,-1866064364,-660236173,-1638108606,-506264625,1960003098,1438787790,-1320097328,-1928220046,-74694938,-906043645,-1609111876,544850525,-895794464,-880041068,-393078212,136477444,-494212219,1665471946,118866472,606836052,1220656498,435162626,-587004291,-1033674414,-611027475,-1502126268,-873304365,2082284988,186393044,-876167423,-1208372030,730138932,-378445564,57475083,-2147218656,352331846,268565741,1859125519,19152898,1074008456,314573979,-2110619630,3106816,132980]},{"sector":5,"length":512,"data":[28311584,142781728,-165323020,-1559625661,1445232110,-545256006,2023067414,-177208905,-1754517022,-956294385,1004408598,1744885910,1902934203,738211564,461866111,-234819441,-2047795695,-1053032258,-1895237501,821071627,-300019201,-122621809,-1883824623,-518059792,1008982097,-947618946,955289557,-1958567562,-1183039349,21854584,-1786283520,1567097214,1653147148,607639100,1105418888,-2139564811,-1073651880,37706872,380023968,1610974231,-494183088,-1241377608,-1610533808,-369092690,872391621,107374381,722582107,48377156,279082528,918989587,5212160,1515578664,-1000466338,893481,2220668,-757947475,1216934610,-1526494764,14828618,2081676834,4154,16662529,11548752,1470745353,1528567439,1135662774,-61992066,-455183714,-963339826,33587213,1613238278,-1033568032,-36641166,-1561305610,-150442259,-1052733375,-536017406,-839985292,2126617665,7979762,-1088421343,167698140,1550958012,1223981500,-2103361384,311724933,562321969,-630317117,-1328418009,-1043905663,-176931698,131029250,1260290448,73539850,338039433,-392245751,-574158332,-1051154350,1225478706,-2135090898,1288061713,-786460348,1189306792,1949899830,-1547576790,1746898823,839976064,588335236,-987459513,-1828100954,1084116518,174400137,-346674539,1017637625,-716398257,-165369937,1942781619,2045137561,1595899124,643212687,-1749412270,-1099714710,1063055509,-2043478633,1528244214,1660307973,-195384869,-1467099855]},{"sector":6,"length":512,"data":[1726502390,-1798528934,-1253222559,-1148633704,-1680019060,1276864688,1778198246,-898262575,705800051,704091850,1390933753,1739377495,-869369744,2069395304,-420857158,-1687997789,1394205991,506299727,-1301022011,-500000963,1369533020,-773414914,1939318145,-1617805633,-666445677,-1578523309,-2094427694,136677921,1853463451,1158130037,213634919,-683916168,-1999493773,116044708,-320919028,301117625,-322156246,-641829024,-629067493,-1217748875,-937017640,1851668192,1319368502,863867314,-1573822253,-1510622644,-412598397,-1902975930,-1245581409,703277257,2002499945,410037945,-927485260,-588247142,195173358,1776576687,992099177,57858949,-444261150,-19417284,-1658561306,-1499836360,1318132309,-1055397535,100412921,-1667118751,1303950224,434979265,1223245798,1924014949,-522111833,-1175602601,-770342367,-1502993759,-212111790,-289247619,1024729104,-2116402036,-557124180,77712564,-1420427445,1022780900,-1976410937,2062459752,660152382,398451290,-1171171802,-1346233797,-1703394735,528473331,-1075684297,-208729066,1955147624,1434386074,458546742,1605555611,565497951,-1660476685,1069075614,-993818158,-945495647,1729255788,-290779773,-39503196,-456908920,-475592799,712300727,-250072925,-77837845,-638980297,-1678638065,754067121,507968626,-738174757,886235749,-301927711,-126312042,-610899691,1577810738,-1891840309,-145987923,-1145413246,-850716079,-678170441,-1092611748,-616053254,-387279041,-2139362375]},{"sector":7,"length":512,"data":[760535531,-968879267,-51546359,141798043,421500279,-413475346,1650938195,1135171024,1206173668,-1082283222,-621433756,370738935,-1219924987,637251655,-439391229,-414483187,-1228560491,-2016557755,-1278210257,-1778748538,1792058811,-1086849754,1094900696,686041863,2134351197,1681141486,-396019378,-2075707034,415956859,-133535951,-1065913907,1901653703,-1327064645,1376316681,1630991420,1431136488,-1357880559,-693221973,-912521568,-1372855818,1116338590,-1113413470,-633426840,355042407,354392660,-886915176,1936751751,-484480362,-154111732,-1126625771,-251080288,-519522104,1555696632,776168184,815760392,375311646,971314328,-1816243941,-1172233908,-3670757,-1104789954,1246498616,1648117723,1207617383,1954071039,-1733896626,1187116005,1822889831,450143345,536807398,-907538261,-394960115,-1987037067,-1253099417,1632114297,-1569805601,-734623906,-1542134293,187977783,-785980855,-1077819237,-1931149641,675389603,-779426,390155760,-1846626748,1213881481,310001718,-685057261,-751182019,1327560508,542000464,825904431,790638640,1143939155,1094928698,1396785696,1127105353,790646095,221264451,1347361290,790646341,808532557,1395597360,977547040,541147977,1230192962,1127104835,790646095,221264451,1084103178,-1006312919,1647978123,-1504083756,-1841683946,61999372,924584967,-2077934476,-466446076,-1617489079,-1001775066,-852702932,-718483156,-584263380,-450043604,591437928,692100608,-1950087966]},{"sector":8,"length":512,"data":[-463324634,380000656,-1199300566,145064488,1081087624,798591124,879126053,909325619,942880563,672807219,1325402320,542000464,825904431,1277177910,1128410436,776025650,541415493,1129597250,1160662351,168641880,1162891034,1294934094,808464698,978333472,1345265716,1143939138,1380143930,1330071098,1145195323,1228620858,1478508867,1263288660,1163412782,-1642460659,81930560,975604676,1501610082,975705768,188889704,210909730,184680969,-1773395819,-1518196552,436536136,1162891009,1294934094,892482106,542322464,1396327471,1178227267,1142968135,1163084098,1297040174,1327106573,542000464,842681647,790639922,1143939155,1380143930,1330071098,1094861856,1160660307,168641880,1162891034,1294934094,540424506,1142969135,1163084098,1297040174,1327106573,542000464,825904431,790639161,1143939155,1380143930,1330071098,844579872,1127106384,168643919,1162891034,1294934094,842608954,542322464,790647855,1129527876,1195784786,1464082511,776425523,541937475,1163089196,1347759698,436866386,1313165391,978136864,540162353,790647599,1129527876,1195784786,1195715663,842080321,1329802803,436866381,1313165391,978136864,540162353,790647599,1129527876,1195784786,1195715663,842080321,1480928819,436866373,1313165391,978136864,540030770,1277186863,1464610116,776024881,541415493,1160660300,168641880,692100634,-1950087966,-1067042266,380000640,-1066386910,-951881280,-1798725037]},{"sector":9,"length":512,"data":[1619668513,1151468073,-808677428,1338838988,-808611891,1338904525,873072270,1162891010,1294934094,808596026,542322464,1396327471,1178227267,1160531783,1262174535,1144669250,1094928699,1380931360,1329802820,824516685,540157216,168637221,1162891034,1294934094,909455930,542322464,1311589452,808604757,1163412782,1414876704,1279608915,1480928844,824516677,-1541797363,60975380,1311151044,846794898,546342341,673716820,-741800910,953256130,156254236,483174067,-1797492976,-1914253055,957895516,699722343,682526435,540154764,-792548666,-72580851,-208551712,-1360189354,1765218889,28383976,1749559721,1227186312,1310731153,20532266,858467842,-1878292173,1397581853,999396552,-586938782,-673783949,-1212687912,-1953921147,1219271888,-1599676307,-888241317,-1360631881,642976668,-80079539,570725394,1309674054,-614627233,378717190,351466082,407836481,-1931580362,1824653885,-1087978422,1989348808,71836972,-379205976,333255090,1056892533,1582049141,-868181103,1281774465,-899075302,1229549968,-1935628826,1002869483,735406373,1226947375,-1725365134,727820448,995875734,340779376,998777966,-1028351207,-1145536091,-1164194556,31775939,1913595033,-996620564,785415641,1630724713,1394971846,-1646035881,-1129438201,-1054660142,-1492080094,1863670350,268949116,-2095548606,1815385526,1678171281,-1192594894,946264101,1619377229,-382317678,-616654811,538210090,618815078,-2070049748,-1771742907]}]],[[{"sector":1,"length":512,"data":[251231649,-1663355760,-80237532,-1278203268,1358357206,565082003,1933882671,1826288448,1731894557,1169998879,1537730136,929831294,1111174855,-37954413,411649253,955546151,-1093024295,1683136753,1177523466,318326942,689179620,155749967,163722450,1753230379,-804122749,-1755326412,-2116422035,-912659329,-1784322643,-388864700,-505341143,-1068203867,587780425,-482825776,959333262,-1369205019,593691769,210120785,1400617047,1507817400,942250132,102991585,-1491776958,2038323140,2015992806,-2033625389,-1561021746,1086344845,-553021292,1084621648,2082775197,-1722246075,-307976798,1865274843,-1145636332,2020384223,-211924081,2058168226,1037546048,-1624514255,1785328786,-1746207649,-808583489,-1712279157,-258334967,-1692464727,520731120,432664732,1308859677,-2002966034,1101969483,1815812878,1641908316,-1543503500,-205780736,-1169695623,-1099273161,773776879,2017926555,806355968,-1229520768,-1578970515,1598912563,1995993913,763849643,-158864869,7352340,-1917205951,-1267357454,933329590,-1520259574,-2097059941,699010566,-1851238714,537868129,-2127523772,-2004155070,1990153139,218514177,-502331365,130269648,853334891,-1002303230,1243877812,-424918888,675673828,-1320114926,1176615634,-768797908,-1230650666,-989253609,107160596,1849039501,1133625736,1025380039,33245820,563120164,957909572,-1836505982,949636133,-1812659591,-1099835861,-202115268,-780141377,910939123,-839019629,770571891,790270363]},{"sector":2,"length":512,"data":[1870154583,96035521,-1236583040,821602528,-633796422,2116214469,1750508980,-417899047,-437316213,-1127990801,1732729342,1289516819,1822012042,-981864762,-1755831784,917641221,-226639688,558491641,751672315,-650896641,-2004593094,395649054,-1917029519,-1961758783,-393896848,-987276019,-1189747563,-1402517908,1704233334,-1834499517,1384639551,-179665469,1882517023,-203094105,-1929255984,1809269959,-179648679,-201686382,1810189299,135126417,1913173957,1318102513,-1055524645,916753185,-1798683767,-308378146,1036370997,1759294050,-2092516944,1386235331,-36955831,-330513933,-1918257819,987890578,-1329886562,992644581,1752344792,692711921,-780072580,-1165798365,-1556350597,1693376311,2003096581,1017061102,1766534072,677087402,-700471301,-208873718,-578187818,532102076,429317567,-364790345,-474556029,187758782,1015962511,-1576112188,2107230066,-1795355224,-1366616107,-1949951272,1404770293,-840815654,-469933989,-1149115050,1199997168,600359146,-2082711972,304918304,-609008383,-1117224761,-1984092658,-945327941,399830544,2007430300,-1912075894,186431984,-2094276370,1276731158,1650540934,882154672,-261690247,1319161086,1387736554,194262062,-487601624,2029355122,1463935611,1842524855,-2123459159,1646697377,457722784,192019293,583885997,-652992692,-1696237017,1440929194,-1302952516,-1167292897,955055328,-951583764,1580431321,-1519756359,1249125995,968817171,1954502161,-630706846,-1130482539,-1797370679]},{"sector":3,"length":512,"data":[-998879450,-549646291,-1036173635,-2002899819,-1797118775,-748375926,-910221624,847994782,1337687809,2070882037,223809572,-1700245647,-1338977353,1597759402,-814595601,-333164116,226257003,-319836269,-1092621024,1420261181,-1583370071,2118923249,775015830,-949519647,990952421,943111964,1580481270,-1685108345,1600320036,890448578,-2114985584,-504460020,-497386584,1477791459,1562101119,-1913936701,-608188600,-1079702858,1637780930,-235668814,1962234490,730808743,-497122541,1745904482,2081339947,1653014716,346940799,381419268,-1927647693,466068284,-156038998,197094362,-1033595583,-925618306,744373396,-173555191,1137039481,1614635950,507187151,-1889607871,-1928739088,-208712707,1408980870,-1640538230,-1199496272,-1494284513,-481503358,-19665488,527455147,709365518,1573381184,1909636133,585171530,-1085377740,1141542950,717084195,-552911008,-380999335,19095742,-1570171740,722715651,1765581904,193627394,883441953,140791888,293971858,-2143784285,-830057832,-797700068,1191248276,1882627022,-2132898072,1283908424,-396283494,564578714,2043468911,-1528506685,1697717070,1668841700,-1006324618,-462275944,-1160023660,-525842391,613779748,-2069975483,-1389935727,1229688632,-395365495,195153086,-951953594,623909000,1477870310,1738859033,905233053,-1803983856,1174549389,226016078,-124130834,-2087200081,676468444,-984742393,-839706323,-454018804,1785632714,-191308850,226806119,-1705398079,-1445507245]},{"sector":4,"length":512,"data":[2092347141,-1117002072,248476028,-295269683,-679755578,942879934,700769247,-1400270157,-1561988185,571035814,-1316847051,498656828,1514296866,-2133496283,776116788,-664454384,64088192,-2138043324,469093983,-1215021890,1739246312,-58843409,194113913,-353987922,-306516325,-1129886786,-197361519,-569410607,1082515383,1894318308,981108640,722845297,-1924263940,-720093691,-665989233,-1771145249,-1298009860,-1087337306,-211566814,-228553115,751334202,865708161,-309907395,1753998713,1276185866,-106001051,524982695,382971162,710091775,-1176579688,1648176809,-2104759866,-1633139415,1946870424,-920079238,1370900809,-1836740268,579933297,-843955627,4347270,1313165391,978136864,540031282,790647599,1112678484,776295233,222648389,1163008522,777602113,222648389,1430343690,706757971,1394616874,1802072692,1851859045,1701519481,1869881465,1835364896,543520367,1145128274,1713381721,544042866,776814930,1327106573,542000464,825904431,790639669,1143939155,1380143930,1330071098,1145195323,1377846330,1497645381,1413562926,1327106573,542000464,825904431,790638640,1143939155,1380143930,1330071098,942684219,1313815095,843272992,1297040174,1327106573,542000464,825904431,790638646,1143939155,1380143930,1330071098,942684219,1313815095,860050208,1297040174,-1642460659,81930560,975604676,1345110126,1113378932,1394413835,1641105542,496224484,1145734219,303637622,1239753732,1296242451]},{"sector":5,"length":512,"data":[73929741,692100608,-1950087966,-463324634,-392144496,377801120,424440900,-1853405918,745951011,-653182447,273179793,1294439824,1388385372,-1929215580,1771365376,423887779,-1059430084,-2079960223,-1472126709,1989357696,472948841,-213791680,924471014,-1714143129,107182283,1395003716,-498513752,973605092,-1039777681,-1857469040,-1828043534,542332450,163428546,-1706137805,-1539281357,725293985,1346996588,882740678,1773723250,660921675,1630837900,12070596,-1706228415,180756537,952832129,-44525998,1725779459,-395374567,1461922208,642068100,1909246569,1092637977,-1058662773,-917015799,1681064395,-1586784068,1949932300,-520060223,-967094618,699189332,1229805459,1011510608,1196753585,-1202444269,-2115213880,2041845966,1764394837,-1481886255,73050290,776688384,223170371,1430343690,706757971,1394616874,1802072692,1851859045,1701519481,1869881465,1835364896,543520367,1701079379,1801677163,1869768224,1095901293,168635981,1162891034,1294934094,540424506,790647599,1129527876,1195784786,1112226639,541342276,1162103123,1262700875,1413562926,-1541797363,60975380,1093145796,-495372114,554404004,1345628225,-1844943792,413016103,59189809,-1375451128,115550624,632986756,-1260490189,-1938341631,744620721,924339627,1236287588,1259120355,1932827159,329370688,-1579348410,-2076151750,-1958008283,-1815576061,-2071814999,-967348192,-147613292,1691962983,-1222626656,30466137,1285686217,-815255144]},{"sector":6,"length":512,"data":[-1381701489,-415081605,-1706149075,-1696046799,-902403715,-898877540,-1039600290,1647746381,-251541302,-1277596474,1837284700,-612043478,-1664004447,1706431377,-1555054117,-682917658,775707214,93120789,815581858,1389021799,1091252696,840239235,-755955596,-429968997,1718342052,1849404142,2063191118,-791614236,-713237853,1903408627,1336124625,-2050139245,621434955,-421220956,622041837,-773284766,269075683,972020583,-1648208654,-1797884240,1034173385,-56862681,453361973,19562620,-1287325874,1418276811,1354242454,212243370,-1876945127,-1284937254,-165569936,-1067285688,1029640340,1113087143,737047561,-2133866271,658952568,-934666180,-1815582236,1347552934,1310893970,1389448364,-938318190,1209023494,1171840671,1545252259,596457188,1425687508,877602402,-1815500167,-227631539,-1666739324,-257637543,661403151,-1413121363,307251944,312516968,1325408557,542000464,909790511,1412374576,542322464,943342639,976697392,1228623439,1394622787,1464157257,777214273,223170371,1347361290,790646341,842218061,1395597365,1396327456,1178227267,1126977351,943407431,976697392,1394626127,1213222233,777604687,223170371,1347361290,790646341,842086989,1395597365,977547040,926429240,542003002,1112692052,926428495,1297040174,1410992653,776687169,222648389,1430343690,706757971,1394616874,1802072692,1851859045,1701519481,1869881465,1835364896,543520367,1852401748,1632903275,1713400686,544042866]},{"sector":7,"length":512,"data":[776814930,1327106573,542000464,825904431,790639922,1431576659,1112490578,1127105603,168643919,1762960410,134480802,1353073962,-1981451615,-1472126709,1682985012,539464200,707860638,1208484743,1235265540,-1719400653,-2134217676,1822897064,-715518327,-1840372077,-2060289776,1344899077,-227451774,-1655617084,1217025575,180667025,-597618669,45139344,336390725,-2067521494,755381153,-400482137,-666277271,-664454254,-449942096,1940550133,705841189,-1721464245,1404894426,-86963772,-562819013,-1765718912,1522081029,1937350741,983254023,-2119899028,136566251,-1931578824,-994911883,1431873368,-2045544016,1713920332,470660405,1011737603,1773461091,-1693838101,-1194693068,233103404,-1255107235,1701045376,1933727370,-668892371,-1788121470,-1920676697,1481559292,-1730270525,113447169,-2122765236,1361670605,1695560610,-1550198564,848021415,-1799242438,441305912,-733253838,1710098816,-1032832631,1458794972,-84111337,773392891,566802524,-1949415789,135867,1313165391,978136864,540357170,790647599,1129527876,1195784786,1112226639,541342276,1263419732,1413562926,1327106573,542000464,825904431,790639922,1431576659,776946258,223170371,1347361290,790646341,825309773,1395597360,977547040,994132809,978469715,542066502,1160665174,168641880,1162891034,1294934094,808727098,542322464,1396327471,1178227267,1461735239,808464979,1480928816,436866373,1313165391,978136864,540029491,1396327471]},{"sector":8,"length":512,"data":[1178227267,1160531783,1262174535,1144669250,1094928699,942684219,1313815095,1313429280,1297040174,-468055539,61041044,1631328580,1398915290,815301638,27313780,-756210079,-2143788736,-840531048,-831638371,605206656,1160090889,1359039666,840519271,29157408,1556948545,540842053,1399357634,501042630,-462409545,1716722108,1288428750,-395364606,8233158,348750929,949113386,-1764621767,-1943661099,-463128039,777139018,-354231598,164116170,-1006487837,-857164005,1881179266,784025322,-1937351912,788774219,629788766,397022344,1128891630,1016679783,-2004336525,386294561,-1337706727,-823917364,1547738970,927187408,826038196,858287712,634982134,-1716467190,1210992451,-1653640303,-726451579,-395298921,1692534932,172280138,-229024652,705956325,-1505025744,-929883796,-2068307376,1748431561,-1555064755,2036009396,1950444711,-117317934,-1873146239,1638954856,-874384261,-1199740648,-1954077984,1717719259,-1750767301,1618448998,-1199023997,408620618,-2113694990,-512337331,2059506036,-2009777127,1898276656,-1765538829,1960587052,-1049609983,1098564269,-939150566,49168949,-788434058,428345251,-2088401632,1160188872,1182409775,914169158,-1582601766,1220710538,-751376875,839763823,-989242928,-1145503081,1013746138,405144942,43493986,375956769,759070297,-925453011,-2040825780,1803062717,402046327,493443428,-277320558,-1775879356,-153415829,-1629269413,1718315579,-1217348126,-170106022,-39747424]},{"sector":9,"length":512,"data":[817438424,-638031074,-1258443984,1573613787,932624053,330821884,-469193259,-865451579,-484537103,630125099,-1764587389,-1164169412,-1878484388,-106157773,-294150938,-1932466615,-759919333,-1996671092,1336362306,1566097738,796575531,1890014225,856889011,635752303,-1776046161,1393189496,558708497,1162891008,1294934094,808464954,542322464,1396327471,1178227267,943411015,976697392,1277185615,1095909961,1160665426,168641880,1162891034,1294934094,842215738,542322464,1396327471,1178227267,1461735239,1480928848,436866373,1313165391,978136864,540028978,790647599,1129527876,1195784786,1347887183,1163412782,1327106573,542000464,909790511,1395597364,759450656,758338391,1480928819,1398218821,1297040174,221324576,1347361290,790646341,959527501,1395597362,977547040,978469715,995051334,977551947,1145380932,1380930633,1163412782,-803599859,688654848,-1455174123,2086561601,506767623,-409081735,-720679278,4576275,25182216,1383081992,1151721536,-1794752176,239703175,927834161,-784063224,-459153082,1343357952,33948000,1175417869,265580837,-201252277,1963610525,470192423,142737528,-747145180,1675951950,-1339422206,839647968,1041355900,300174588,1624314184,-264630781,1074762128,293880072,-997945090,-1530312842,1078858500,944604449,353514581,253843932,-1050064618,-799008891,1649366020,1325818256,-2035850136,-993180298,1483742086,1981613863,505251676,-2016979846,351877407]}],[{"sector":1,"length":512,"data":[155459603,1126238245,571732505,-2000541387,1112051747,-1063881463,-1675196029,680133240,174541988,582003242,-927978595,-1204974782,797688552,203620817,-1558133199,1098855180,406253132,1828450535,545273432,672662596,825571310,1629663508,2114552962,-79794720,-454604574,-2044731911,-36511855,1277543474,261647600,-407292067,-1612317599,-605925064,-1392762872,-1016097209,1359235428,-334321305,-1828862810,1898485522,-602732079,-1950141417,14976992,330480012,-1440967966,-41660960,731156795,-164068802,-574029754,-40101391,532315940,723770387,-2005776046,778198491,-245538165,189730281,-1237127375,1125135363,-1597829052,1529670824,1234635277,1066475744,-1057318723,-1304527398,-498730943,-1899733658,-22006093,1177756296,200847368,1997813216,-726477644,-986702919,1999668071,158085545,-612105393,-1706448268,-848587237,216406969,2127590664,392566000,-1262124599,27015711,-781808092,-687337013,-1135009283,85697433,-653846735,-1911643220,-724989330,1796227357,-911325182,27574622,1086995155,95867094,25029821,1621577427,-1389293032,-400330222,1752705571,-1773756128,-758262933,1499943475,-34536128,2069553771,-540609357,-1761607684,1253304039,217372876,350749858,2030516515,-765194021,468172515,-2041079646,-196265103,1167552883,769805441,-1907172951,-811537618,1773319295,-1691703917,1565810504,-1053369688,-1237636412,1109880900,729719306,1314763685,-1072012357,1132047783,1532841768,-1327053375]},{"sector":2,"length":512,"data":[1374429003,611197511,1413517421,-2079977670,-2113513551,652576648,-169350295,-1606999825,143986182,1988287789,-459467037,-916493604,-1873933761,1430066568,1755646215,2088446419,2095835666,-1607504872,1533031978,-281358451,-1795321790,942125009,1813492514,-1293379712,1833160100,276153664,1180460888,1112870935,-1032503317,-120824147,-1149800108,617328644,671146717,-1859392000,2069585270,1074457191,-1932328906,670667449,1114511021,-395629034,-101092665,-452197950,1515250784,-1130464376,-819475565,1793914823,-1522092765,-790247536,-1662517446,1603723229,392068343,1980441750,-696304036,1608089480,1721307532,684988790,-832138711,1957901906,1190274665,-1614147829,-691685221,212394777,1650656095,2016846539,-420386635,-1614872659,493045228,448534985,-563630570,898667686,-494345701,-224278371,705520518,52572681,-1378614739,-1035668300,1765437908,-133388084,-1909403531,-562455830,-1284631102,1345614419,-1152542257,1712102727,-1397536063,-2077374501,1500202145,-1118908473,52432923,-1391052302,1720642703,-182200297,-184713665,331051178,-1449352918,-888631858,-1178846576,-216324906,-184899886,-2101007563,27975017,-1812988547,1128826296,-424400833,1000812264,-930655716,516716762,605859031,-1394209742,-676486118,1325720433,-907412279,-194144798,35441257,933699992,1605419035,-255314720,594567375,1554372384,-300461993,572160514,324090797,117990515,-1401072911,-1499461157,-1146538372,1463397772,-16480494]},{"sector":3,"length":512,"data":[111826710,-570855938,-1397282599,1512749596,-983488059,761619782,-876236998,-1449534847,-176609479,-66407310,363114487,1083109026,1567593220,1344846452,-158906812,-60552831,964591814,385111902,1297496409,-258110104,-1859504125,1076613996,-722782362,-792056591,-1560644912,-2059685800,-1751919117,-809571070,924281247,1398689889,210824379,1965258322,-54927795,1878844775,-2010900488,1780839522,-248940782,-634520563,107625225,28022310,-1862569418,811075223,-1751684845,-59917103,-1015623026,157356702,-2086843248,1105081180,248212499,1288490621,-1486312954,-2068148156,-140038535,1240381096,1921008580,-1440254218,2068042914,1470591204,-671684007,-188305463,-874098670,-735491498,-1512970255,1772972665,-1851356337,1111472495,-1978307580,1368167506,-1646211922,822407165,1595898821,-1464765979,635694315,-539677821,-1226008204,-1166944558,1145932465,397821653,-814038534,-371565704,-1722700312,-1405685142,190208063,-959082529,-1164974417,22764266,494210331,660824447,998109805,-680334465,-751047452,1176649395,244815078,146705184,-551898745,-1832977345,1188538009,170453837,-1220910237,-1544677629,540615381,-1029283009,-26314631,-1075234666,-1602417138,-1959690719,-1957624908,299086620,1446233719,-1623729041,53445583,-1483932074,1404782395,1064530419,-1153464398,895209539,1338857741,-65723585,-1480765269,1501143541,801015281,714738816,-1845306475,-907017735,-1098971562,-1984042862,-1006289285,-1173031954]},{"sector":4,"length":512,"data":[1528768968,803800522,1589629735,620707074,-2036363013,-1135419167,514321182,-778745720,-275711894,-976831452,1286834343,-1479085631,-280406191,-761306115,-1455249952,-1283719711,-592064503,-1151610609,11797942,-331901526,-100376186,-777875494,-70233908,-468782986,1079527803,1998769992,-2020773601,1246162927,-1568932765,1991368351,2078735872,1425011676,-1105741000,229808306,-250167695,-644527852,-1829391529,1151297605,649495626,969651204,137542229,170848431,291206887,-1986713242,1151412928,1739787694,-1992598418,-1471748339,-105266267,-1918524606,362002966,-1299201458,840348716,-1932109771,604769960,1104261144,150430386,-2038058139,1578234220,-862565886,-1695122002,-1001833018,850705883,-243862332,-852682178,624792604,-1277409398,61767981,-2022103569,-1613156247,-1799420337,-990080350,672230112,27249417,1721092799,-1950797467,816497893,1793774375,-1716613964,474696249,1748261304,112846905,-1934787754,-898062899,1322321780,-362436649,1018423025,49545791,-557132682,-565701149,476184388,-1807833201,-331843334,-549717580,790604122,1998088254,500517411,1985017077,-769934232,498107685,-887512934,-899114530,-926822724,1618359272,1184544072,-766956546,-439958340,969536383,310004822,1053664917,-1457407142,-1236573913,-215101910,161779423,392324256,750892201,638989621,-141377101,664530304,-1177651048,-1242901401,1808386033,411088039,-995218314,1469037046,2021231041,936049206,993059750]},{"sector":5,"length":512,"data":[1023434485,-25023167,182413801,-242782530,-783508568,804860704,-1010098581,1129729379,1308323787,2101004735,-1208288326,1112019626,-274470109,-1528253332,1831313369,637604824,413886589,-6389994,855578616,1435926633,-797066465,-812132828,484064720,1095377429,-1018497983,2109537942,2111255498,-501769913,119052035,1324175723,-1854272601,57706177,1712799222,1226159758,149625932,-1518212285,1084899160,-2066271681,-89179065,1431244439,317370999,1770180304,-217093583,141408081,-1023161165,316655966,757311220,-724386386,-396078040,-719754075,-1745159734,-844318473,-1794599404,-954900218,617132259,-1703307176,-1107950417,20381857,583569647,529585041,710187872,-76810583,229709686,-1144814735,-434695367,-1158211552,926928286,-1585224592,-1985076679,-548396352,-674169358,-1102285538,-1094905677,-1788158327,-769512950,281167299,1100326640,1593528028,-1596593259,-1500264467,194354615,-1532181289,-371752645,2050384567,712003290,519907824,-1081649115,-745020159,754490807,265442892,572404288,1945956237,1028275910,477633581,165220789,-1549339528,-1798463656,1057680604,-176740768,-281133500,633712388,-606414147,-11670228,1068285567,2045192973,-2122484355,260845254,-2003108112,-361466141,-2048323856,-1141409619,292651018,-1054259351,1487371284,635280727,-665038172,995571631,1824241251,1802857875,-219206178,-433322195,-1082186482,-1285916456,-1201138998,-987896931,1630185734,-601126220,-1530050868]},{"sector":6,"length":512,"data":[883374384,-239642895,-1971083978,-534816988,119367737,-1142466621,-1198390746,-1907993695,-395298148,-971882368,1765153037,-1603691300,115477104,1311151044,1380538514,545786596,-968957840,-426532476,-607533587,466117857,-1528530632,-2127133895,269110370,-924814799,491414017,720530999,918774180,974753256,701022839,41054947,840404422,-1510163348,33575078,1747681810,25452234,-1680980223,-857316047,1844875521,424277100,-546017102,252380961,429190163,479061827,-2000522224,-837397663,274762204,1644373456,-1950967730,-1194475838,-1819810895,-2066282129,1613321744,588088513,1141040214,-798805871,158026266,1640454212,-81706288,-2124666316,2231556,-512722343,-1228010281,755462401,-714552366,-657754702,1149452822,-1990091743,-1891163311,629973792,-462555580,-590713275,949493269,629573357,-1757055591,-275520390,-614514973,983060054,1606348147,680799748,381921676,83451594,158715894,135128997,454724529,1353424289,1607431317,1804140797,2048297603,1533952046,-1628576956,1470479494,1979004114,77210851,89212325,-1924176368,1078058772,-594515538,612154665,-209659511,1387733817,-1976206522,-627010550,1756795550,-961112166,-1690454483,428461385,1261071416,-648106957,136631024,518414038,-627202918,-1184793706,-408205575,-1866306277,-806532311,-287831471,-596675939,251179111,1019225836,-583864885,-1754030287,-166084262,151470488,462021980,682247862,-2030324688,-1950047075,-306074164]},{"sector":7,"length":512,"data":[618856616,-1364026729,1246008002,-1448501036,-1266605862,-1725768058,-1774146875,-857991962,1600347005,1890602759,-742523060,1582907878,-1565289452,-948365014,1214142239,-1620236584,1219701560,-1735390734,-630532932,54626285,167827456,-547877416,1422782078,-179745389,-246784009,2065638665,-2143287296,-195819519,-1256293552,822255348,51270537,-1054851058,-1605300921,1159941137,793039428,109150297,-1859900078,1698760570,-2145515758,-348040704,1125310601,-1634457564,-1062721527,1092356994,239096452,209912829,-2092686036,84686861,-370784560,1045070784,269620248,-1636759257,-2129116077,1155612958,725746821,319071381,1157955662,-1791148217,1373967505,1511392609,1322509288,98887772,1099515160,-1469572730,1847268289,2030503200,123850866,-1523287983,813453703,-2145411531,1346905992,-1804463798,-1843311839,948707987,-534506542,2009678409,157779192,-495936986,-1981929463,-1473672638,730514088,187135152,-2099651539,-121885045,-1037034062,832414480,212017625,591449651,-1745013491,-916786513,787409335,1831169442,-276235620,-1185048837,-491045269,-1792382691,-679878788,-1979752921,-997670953,120979369,-1246294515,-236742768,-650401043,1525826733,1479397157,-146973923,36066542,1726252010,611020173,1817272189,-136527323,1859253403,-1822438455,-1266074404,-1152714537,-1380667613,-1135615695,-441962338,-439807244,-339755553,2124360411,1045816661,-1537302750,2008103825,642866348,-1804473707,-137850928,-994330347]},{"sector":8,"length":512,"data":[-992023605,-2035302661,2061364084,-1070014830,-1755020339,-1321243211,-1261297171,602272310,-624655506,1552519595,-3222639,975912146,1601062974,1976000341,-1368962800,165389557,1138204071,-1090593803,1496279128,-340542274,-1682638592,-816101693,-910381490,-382179206,145900005,-763370177,282777495,1838296929,-1131316886,928107877,-2087776403,-1750128056,-173386288,-1019497170,1855872672,-681863729,1707995230,-256912219,-1070556627,1594252791,-1479523983,-1367509031,958345436,-1068173280,-127062508,-325685804,-634981770,-543460946,-407942150,-793555619,-1866638238,-1679057405,-75647538,2029180094,-22715256,1997220060,-355036848,-178921909,-84773735,-1351960077,2056616506,-91302047,-494780972,-1368468674,1463434036,283935358,657281309,600813106,-265859180,-1827900754,1936160699,2085551435,-1010526255,-1413629731,235301177,1546049583,-424925516,1253830382,-114014841,-502018632,-1423221541,-1628780766,1229915719,-319092297,-1028307837,-862865681,499767205,-340057555,587983505,1227489603,1152295072,-203510823,1344401125,-1593334195,-1843321203,-1340416553,-1798439062,-763727506,2057971104,1407874418,-1870590651,-672947058,1825396283,-336941925,-1462002031,-1783411265,2063710271,229472223,897836729,-1374051656,-405165484,349825674,-1726296846,-531766077,564336059,-1411007907,-192176495,-393878191,2051870179,1378070338,1584802733,-120490837,-99754098,-1609021878,-389747969,733180221,-324331051,617936382]},{"sector":9,"length":512,"data":[1230879744,-1098306872,835583384,-1322846453,-678630356,543471651,732729019,-1936410727,-367175187,-1359644599,-1160851874,-1370121400,57777054,1737621539,-1627495431,1336371568,-381586278,-1817502549,1330779699,1447403669,706552904,-297129097,1909325660,-74238361,-92448941,-307300408,-1685490842,198441913,-1262765386,1898662022,-1551435803,-331864750,-1810561157,-1343928044,1391501863,779410582,170345250,1549640923,1662005901,807615012,330873406,1866116910,-592257643,-841408899,-1295552714,-938366474,175910613,2093416274,1204494898,1180551102,-1133429463,2085645698,177847447,-1964001893,-1522865012,-1360018368,-1825268477,391441520,1023482941,-1919558031,379683754,-1783344807,1862901612,-350612253,2129520024,768870822,-1830044267,-741186581,-349507474,-1682185267,-391093530,-133373336,-1391145170,-1203505608,393320814,1193047971,1383535535,-2134483758,1977538478,-1977695044,-952843065,-1688514786,35219076,1380787974,-797309730,-2126271849,1960447172,1210665647,1677150771,156344669,1010417366,-1215232845,-277142992,-589346278,-1942959142,-1732173887,-998479357,415768393,-404085340,233591914,-684180577,1572047311,-1346546202,-1687399110,1492061294,-145407051,-550939309,1828750407,-1380524325,1483025247,-168654789,1819278238,-1121855340,-671634436,-495064321,-234934795,1131871258,-698468761,-475334752,71801966,1339210767,1234101162,-612315626,1311036624,-386715637,330791836,-225845275,-799018602]}]],[[{"sector":1,"length":512,"data":[-1208833120,283130441,1543793716,-1579422836,-580014569,1795041965,-1049709682,-1594401233,-488752789,-1997181680,1277032163,-592352619,724105397,-502438799,1852997568,-1706832391,-1113103932,-1760053211,1386533469,-1440611683,-1708164438,-643154205,-941798552,1393207563,-1267696309,1853527566,50985051,-2106791592,1886633916,-945040554,541445198,-998494246,-1059458802,-1260693802,1708706676,2055303160,-1582081816,-545432253,-2134170312,1930478924,-286294148,-384304780,1572049002,540930343,1745721227,-2124585036,-1979376856,1623935284,-731583520,613434520,-1089100158,-392414649,-1742718268,-988522975,407221541,551303262,280393344,392811096,1215514721,185432931,918603504,-1516137703,-564910204,1788707516,695215892,950947942,335154388,1876097321,1775895911,962682084,670390609,-1308254875,274724381,-1355913098,2008217758,-161110259,-617979578,1867413835,1832589748,1553063411,-622955398,697168802,998037432,1219476633,1584917718,-1964909129,841862965,-960943843,1327355805,-23061315,-690753763,-303570867,1469958249,1827337181,825374838,-1644297944,-273355013,-1514978796,752118970,-1565938245,232606681,-977302348,-643380746,1778237475,779622165,-1918412137,1982096050,644551738,-1363263358,-1706827449,1543912597,368414099,1964284543,-664789082,2067988978,-1568921160,-1780871781,-2098074934,1000172057,-228875323,-1560957845,-93425771,1847651234,-1488568208,-198689617,-490980900,-560467852,1531026074]},{"sector":2,"length":512,"data":[1558304898,746031874,219369189,-895308695,1290133446,1582999299,925268593,1723800214,-1318595957,-760946758,1945695863,729518991,-1141278812,-1527468973,-838581516,-414425432,-363553816,-1824535661,-1574520930,-1298024025,532461258,1522433585,-2022577391,329826761,275698713,-1654058198,710177102,-1553582687,600242440,622016667,-495662284,-1750477481,-500095446,-873492742,-1237070025,1563153513,55335659,528495906,-572682512,76985156,-1259187208,1429616479,-1945225504,-1911468611,-129960383,-1495443289,-1572461272,-279166639,892834994,729070956,1247690466,-889984663,1627266980,925271140,-914705589,-382708159,706286492,-1694229951,-1431578139,-2026102470,1246355415,-1356972601,1720069205,-1873740302,-1128368396,-1136249152,151033952,-1080817372,2035332884,132685984,-145843605,453384550,-1649081407,-1240590642,-127064676,1176753870,1427550555,1697761291,313550716,-949890531,176717029,-128081203,1689260603,-1546366036,-1428978753,-302842072,-183937981,-1323388504,2018548120,-391894124,1083453637,-546900166,191551490,1702267099,2130496812,1658463110,741298374,-2108361965,-2032080551,1024485433,-640309232,-775493402,-1152652345,1042610457,-1360762788,1691617028,-870046706,854646490,1689217449,-18122068,2121930817,1572898870,1835740795,-363235338,-296666474,-1144026694,-247846434,572644731,-543924434,-800188757,485001670,-417582666,-1848674864,-1156131563,493374995,833645414,1309726225,1011838487]},{"sector":3,"length":512,"data":[1416120988,-1271949263,1110728732,-1379687807,-1819380528,116405682,-563264302,1776100124,-515098828,-751392574,-331848511,-749825170,-2121683731,469575288,-609531987,1193873439,-2027506533,97102206,396298546,1446161029,-244564046,-2085508353,-1929542461,1082577613,1042160258,-71059152,-1542170098,-1690603949,-1446135262,328523918,-1901396601,805015740,1398636754,1506246437,-567258612,-1181872898,-2025952350,77484379,-1738944263,1094063301,928954455,1154050010,-1601771379,1705241304,426981728,-19412145,-1612673952,-1727327099,575476814,-1340547651,794808,331259813,-1945873368,374193969,1892541610,1539648754,377283441,-1852960800,-867367618,782770580,-1108607166,1217855877,-755382035,-727800969,770422782,261916237,-1446170754,1875020124,614094476,-256684606,1721873238,-1569578229,26928038,-154319228,22190130,1493990468,1022042138,-1887609712,1729283777,1181604875,1951768023,506679113,1793749891,-354100049,1344701900,-581200569,742725077,297965571,669418045,1279264895,-491753797,2057114738,-860948523,-1763749822,-244128233,826115432,-1459722237,-814113375,-1276078549,1541435041,1839648138,-427521842,1502301436,1485109629,2138890285,-564018721,1781076354,-2072350552,-1078356151,377579640,1656411486,861981298,1630277613,237602781,-489883173,-1373842840,-774152973,-123431845,-336885793,-1411937114,-934923732,1246610380,1575600974,544129899,-2007840074,1277064996,848695169,236218130]},{"sector":4,"length":512,"data":[1649982576,-520315961,-1867713962,1308930342,1368678646,-170559615,-194113716,781594185,-205935271,1084192470,-647991771,-1754089772,1095069979,1160274431,-1128788583,-1218977936,474289220,1486322187,197576429,1098220418,-876239566,2098136480,-55213141,122838129,1635773899,-1240617948,-841508720,115735399,1031722493,-788283411,810149587,-1542520780,711382282,-2045766349,1532332067,1589734781,-915839616,1181930126,908584171,1505233574,939817568,-635539640,1700150758,150274276,-229679099,1296100876,1774809109,1359044341,2147458789,-456097396,1713324078,-916684788,1969324083,486744904,-2146162829,-834601709,-1102330603,-1600638307,391247149,-69336986,1068338864,-700672083,-1120082142,-1685252563,396779533,1072171297,-973076971,1554283879,-1971954657,1271466441,-1062483549,-670032130,-1509906028,393596180,-2098388211,-1259475475,33566903,-1227605323,1674091270,-152328206,1280439105,-1589982179,57634837,1533546798,572170723,127745318,-446891590,-1513021235,-1841014596,1673895741,-1092320693,-1266559246,-581963532,-1087632247,-363432729,1897676174,-1900644848,-1308643757,1443301226,-1845746276,-1007459629,-437961216,-1585147909,1180287414,-821772702,1858643440,-272969699,-422800921,2142109938,1586332296,-1728647251,1137632603,-1164974617,985923988,-69067572,912568977,7577589,-78026466,-1884230296,-793542274,-2034937561,1412284314,-397191482,-1495337106,995018473,-843142415,1377735244,1245535311]},{"sector":5,"length":512,"data":[2079558883,-204367589,-1254933266,1366702685,1305109256,220661351,1802420861,1099442602,-5486905,996052544,-754126737,79450744,1772363040,-267188867,1979243058,-1560804698,1020764999,-138446222,-244457881,2134575061,-2106078537,2145311149,877839145,1561718023,480846813,830466149,-4118014,886225519,166606614,426308607,257457453,-1656777960,419626765,-2048899354,1933775213,-1189376577,291974314,-2081318154,-317038497,1269182828,-1054817644,-544458514,-1992226322,-1945617849,-2012621673,-51988639,-448105305,-1529125525,1485919418,-1233472957,-1233826321,1913536167,-769670658,1368809976,-1772386842,-573752766,-209524756,-1391648597,898559387,-1848963378,-503523186,-1007209546,392118044,795154237,-541766189,1323817482,-103263017,-149663111,-2043372200,1630771764,56838656,771094744,-859920980,-1641477330,-479824745,-792353480,-1538662473,2039922791,993781298,-1032198821,-1431002734,541856072,-1195442664,1126758343,-1884484429,-1786978179,-1275151209,-691772529,-1344598820,-1378124658,598852692,-829931378,1863265196,-1591747165,1851351269,1848580162,1087411351,719579295,-309140634,-792147558,640699251,-1100781051,921271851,-1719233994,-959671864,1004670015,1525978987,1333361006,-1384090796,-343364465,-383807319,100439739,-1759118754,169230403,1424199905,2010662199,-6664645,-1886854516,328748151,-15176989,-158410776,1448611628,-488794640,1462400657,1323668601,-1408135355,1156837006,-32152587]},{"sector":6,"length":512,"data":[-1791836371,-303225949,2078029624,2103484053,-1706397412,-847254927,1841529665,-706796755,-1507523955,1590270539,-1874081421,588935102,-1359296417,691020466,1938465250,1035032548,1347278681,-2100470011,-1187161955,-130588499,-448315968,-10944852,-1368717304,598099062,-1487928531,1492020261,1209376433,-1225591299,84919283,790233591,-1417636459,494780215,1408849711,-1443694838,-2062012595,274727305,407431223,-67597579,-1338410646,-1360008844,-114515501,-1916707345,1895831694,1683829427,649173569,-47292247,1994969055,1564003937,1123275479,788841893,1471986388,606038148,-1610674052,-1617310653,-808330171,-1073339953,-1831818438,-648478457,-1905029617,661586308,811993276,-162759537,1449132420,-2006807231,-150028093,-1550370142,-309946500,-1199798572,-54210022,-1365497987,983681502,-1515971545,1530793914,-1738815532,-1165890908,-2101357490,970523366,1469625028,800299506,911223496,1344232165,-1081094388,1362620797,667854055,587336039,-1879564388,1220351505,938466169,315289409,1747596302,538769542,1948153990,25566202,-1030048384,349115684,152492723,91843022,-1654820944,-614891844,-1622398737,1679100354,-137680901,-1315635223,1156145192,-574308520,1411030998,-1880294647,2049062844,-1324734335,-1019699909,1697155642,1120499652,-1471166127,-1242263911,-837599831,473580674,1722916694,-1918892527,-2142524717,-1724928205,982599387,-237155576,258339123,1482150558,-525764458,1642226818,-419519790,-865365284]},{"sector":7,"length":512,"data":[1063864857,1138222641,1174750489,-1295143441,-1955376659,-314963752,1619678600,-1552550263,2012660711,-559391576,-1340640845,-1276740944,840555804,1416000429,1427406993,661699934,-2024698844,-1210524137,-301981179,-1778293027,-295991500,-2089878942,-269374111,634101091,1868963723,-111981786,-2087294203,-968012355,1829510868,-353833749,-1992085311,-341232898,-1955889381,-1651304128,631201739,752848829,-1368203473,1966308634,-679851626,-2007410592,-735892016,804817213,783870305,-1397158581,1812210216,1153208937,-400306439,262708643,-1917930693,761817588,108952271,-1483363937,1886146360,2112607126,1877153436,-2120716623,972918154,-1511281595,-1232390273,-480425683,1384772878,-1765405899,-1557332590,-974735620,-1354003868,-2044468933,-1236441108,2042782775,-652252124,1242713507,-1655600279,214780217,-795861449,1816682563,1065243519,-1347601770,-1434722938,645029081,-1191338992,-1149711605,-1616818578,2069286282,-80803154,-1275945416,-1251344963,921809946,-237398970,-567034836,153529427,-1781658263,1152367807,-729460474,1939737422,-299853734,2036771882,-438444439,-1721365940,1579955866,-135889422,-39642009,122491920,-51540682,-1300042337,-1125570662,719008144,-1210517733,1221558478,-397716663,-1771891621,-911675285,-827599040,-65305985,-279946299,1386657715,606023568,-1442171487,-1693982480,203886133,-659808047,1006034504,-47859607,1978810755,101771060,646841984,-431236495,-1570837105,1474687626,-35649244]},{"sector":8,"length":512,"data":[-1494223102,1201197387,1968085707,-1255521971,-1237025798,-1783737869,-1341364906,528443663,1696924815,-708764532,-2080567642,-795447837,-2084490398,-618054415,1219992338,-323633336,50860127,128699680,1241020985,-1087614401,1583577978,257872401,-164958649,393150497,599308793,-1174433861,1977519150,1659558700,-2010333184,1962449507,2099936896,1938796599,1566959758,-1884981259,-1993258426,-1652812590,-287344137,-409911581,1079386333,428928218,-305357491,158609385,1206603458,1107083576,-1492698672,1458027198,406851654,761754290,-112195855,-1117864788,-1696374828,842020447,1549479302,-1131319444,2024230982,72482585,268082468,1198024738,1264787752,1049883297,-1648206368,-393767026,586936090,-594415738,1540366424,-548175637,-1092471411,906109648,-1292387265,-300077357,-1065355004,-103400196,966757098,-1156759631,-342290596,9690462,-186847159,1357704627,60401884,531691736,-405449118,882841728,-1772355337,-453502747,1854184266,2020492384,494491137,640199354,-1383696622,-1346846209,1031807324,1389896373,941926114,284188732,-1627947134,-1135254306,1274651122,-645825276,-550143819,1238087395,-55424042,312738923,1046343052,191102798,-1806530493,387355293,-1493489700,-1291290237,-449478488,1737017493,854420111,-1745171103,1377509496,-411622669,809741070,-2102324377,-50624588,2078861570,-1754264492,-1536624765,1405031343,-789786111,-171666744,510597589,724726532,-1453734995,-1726325618,-1601907341]},{"sector":9,"length":512,"data":[-234558405,2019683927,-1223061640,-1979046055,1105776465,-2056252447,-2097406324,-267607013,-219689837,-119367002,142074856,-638405125,-1824519134,463012421,645038840,-684217196,-199194245,-461963339,2094513628,-1798975831,557903293,886299405,-1024139593,-170537530,-70309371,-1250042653,-616192199,-1710907511,-748736125,-638940083,-320288339,101847998,424346877,2036605656,-1753046667,1099179614,1213041836,-886020095,-1136137914,470477935,1492116623,2045066126,-798450826,2020643014,-513251389,1833646311,1953960185,1876135025,-805281503,-1729101996,208415765,556023551,1550444574,-820532936,-959823750,637965958,-1316281636,-42316290,-198887267,-9584504,1420407412,-295963214,1132741485,377272174,-62380918,-31749275,-1331083381,903375653,-539710508,2093089412,1293821352,-1561675504,-635298030,35614857,-1262046802,-1934049805,-2023338036,1980483436,-1938799023,-858213301,1838942061,1346111535,706385283,1567585884,-67878233,1296980376,821206227,1129714706,-367346021,-2117337271,441756821,2065462819,-168604429,1103860456,1479801658,-503544834,-1064847584,1526638999,1920677315,583949334,-1962660176,-1837661204,-1415846534,1729524082,-792371360,1714572265,1757826871,566506811,-1535300504,-334610443,-378035622,1350234447,-993506189,98294042,-1528536908,78777747,-587348465,-1321676822,-1696202593,1565497473,-1134365958,-1788047921,635221561,1867114540,298492910,698007367,-562775640,2004788697]}],[{"sector":1,"length":512,"data":[-513547870,-1864793841,-805112825,1233463005,-1555138482,1287875644,1946101552,-509622784,933779720,-588915699,-76325067,-1476438275,-282996308,185256112,1905720661,656748793,531810374,-1468994049,173071551,708330911,913321242,-747488779,-427160207,-234710384,638532614,-190028890,-1722683858,557457029,1966914418,-1036235883,-1549294131,2047082343,-1364274597,675812324,-1139462441,853544746,23303278,-1503120589,-1849141522,-791223968,1792742314,-1164969820,1448002264,-1495250753,-570902813,977773569,-1350265009,534830487,-831587167,-958117684,1189310778,-1955590455,555047294,-1139919102,1791908892,-441737516,1264791620,-673208537,-796677017,-1817767421,789977452,-1984554863,1660348822,-1312936600,1673427627,1011474391,-1973576637,729873971,734412629,-138431834,-421134510,-727864001,-225866185,1921776193,-1116378584,-117037606,894273403,965657425,1895499585,-1949261486,-329573936,-2022156959,1756910558,100100880,842050815,-165209620,1383930132,1418703560,946764369,2140554470,203540639,630080896,-1665167744,124723448,-1980356309,977730880,1983297182,-613397347,-1768238544,2105210441,1562243654,-832574736,-1473506443,-1780266733,-1895778971,1786993384,3181065,412705895,-1423854004,184613840,742836236,-299860652,-347768131,-586389389,1538244272,646334380,-1535133130,-1291099027,1014934985,-58196337,-99091109,117131514,-391493803,1146864018,77328204,1650329792,-2146823539,-964030487]},{"sector":2,"length":512,"data":[-1210051350,-1616500617,215786540,-1644339935,721818315,22604237,-1853468673,367428709,-676380181,-1324687927,-975186285,-226288393,1322277744,382909537,-322267508,1456764858,1035200212,356614107,-965962134,-704313070,431635726,-541834399,-1728102425,-1693402748,427949402,2091081021,1079024640,1059798420,532098188,270058351,-1429533658,2096105471,1939426997,1394521984,-1803062920,692017938,-1194265524,1207845375,1896709781,-780453911,-873915809,-145774863,-1922507935,-1791392144,-17754891,-2041526448,-1610413772,628069643,-1216576384,16699254,1005537417,-84293012,-1368676,-574462064,683171832,-274619168,-854733882,-1217403045,-193097630,1919446606,-672625227,-1924194150,1242136947,737376992,-252035942,-177084441,-1234361804,-1314232696,-340842663,100334751,991616325,1682616547,-911163491,1582831302,1855772853,136397802,1969366679,-1791817965,72338784,950735144,-1780645183,228705936,-1214990075,630184949,-941444584,1060884890,478377210,-1690575373,667278899,806567515,2055720751,222260758,1998643699,-547299720,-2096643673,1408305601,-1083900361,289451033,1069497950,555911676,12877818,-2121396042,-1047373051,-1679659056,-492795914,-1562827385,2111398139,-876170482,-225397560,536501353,-598484724,1755748224,-471632209,-688558929,447052148,1701090811,-1009611105,-184679188,-736068332,1951464265,707165646,-662159314,-1887458520,1892850348,1355112139,-535590788,-2044106218,-1260044720]},{"sector":3,"length":512,"data":[-529590904,-1796241154,-2088840143,1725323338,565635532,934669946,-1506291479,1469284493,-1448365026,-439105926,1231932007,1609910540,807129661,-602931872,1025086535,-944766200,-1645426285,-1154677808,-1238933459,-942787523,1856584041,-1077979559,983914675,274974136,-253199114,1652786989,-1824410769,-13065314,-220074400,-323287558,-136414852,1128167096,-2129396281,-1849617814,1451573858,1678691283,2028919657,-612973966,-503877767,2089674071,-1346438581,-1090251176,-2039627956,558509567,224116642,-648722517,945342995,1070713368,-1250012825,-1368879243,-2061703335,-881253951,1878164218,1926553015,665330638,1673808855,1863978357,770141522,1971600668,-1210401250,-890051365,1625227222,1943856571,-1529269361,-1556164168,6781959,-454461143,-673857953,461740705,2002697871,-461305716,820415027,530539804,-494410673,-244825980,-324575993,792017131,1809841465,1877594426,-886739694,-1660961655,660219703,-2083790796,777005276,-394384627,-483378914,-84291665,1835773615,-72434083,-1294603179,818900113,-1446650117,46342642,-1693070904,432837892,1602691825,261430366,1123624682,698279862,86114383,-122013374,-11530425,-1867786996,-129174858,-1399201266,-1223360619,-379861375,-1034903609,-188511763,-470254738,10233473,-873912257,145146365,1386746350,543568875,774258308,1672197310,1880083025,759420803,-419747386,2088256510,1765759258,-1702794936,797290346,-2075022035,171338914,1471462082,614015508]},{"sector":4,"length":512,"data":[7365064,461042397,2013790073,-329258959,1290922866,-1855979302,1408237764,1994393575,-117934129,102216473,1816657940,-402524084,-939586253,2139374120,1355677786,-218346785,1602815626,661127176,-1211236249,1877475427,-1333071117,9655243,1605986416,-313090041,2018554,28445444,-2052471136,1319976974,179844156,-48865603,1339722492,1685926379,418651557,1631241029,1393234446,1145165236,1052755857,1153948380,-1612849570,202145903,1069204732,-1654924817,-1450384866,-1093427034,148884100,1710510855,1183365506,-957965861,-1919263362,-1891365479,827758977,-330142102,671188098,-1668384895,-408266366,613894154,-510340851,268447878,-589055471,-1489470965,-2094358133,-1196816800,-844916196,875724415,-1115396639,584408339,505284366,1060239964,-1275087025,-1809118497,1197541895,848029438,-1492560316,-1491288454,1641245587,1980403732,623506146,-1279745719,754094208,631344374,-1765734931,575330520,-1457047758,2139591615,-1643376262,208426310,-860184731,231324099,334161412,-347207249,1344788991,2088321703,-1838001509,-1773596207,1592380365,1874736090,-826028695,-299893072,504989695,-1625685607,-613554758,-983254991,585285442,-362911986,1180275033,-401088292,-553995986,-2094530915,1112235033,737784852,821427903,1160026969,1059508046,684712268,2070777850,-1133706442,-74307432,-1746410533,-1169841015,37166438,-2067324169,-863354688,1768519947,-622049183,-2018089022,-239145018,-748959235,-553776534]},{"sector":5,"length":512,"data":[414762306,-1682543165,1432980420,-496383427,-1337412925,-703734337,1243311049,407938692,-1244201193,-955199206,-1645281510,1776419335,1335134638,1604460142,528821368,589686501,1971562745,-522104224,-1828479311,980398238,1257246674,1367811127,-1054575353,1111593695,-1861772197,-1973530189,-1581857031,-1940695388,-1640067057,860792309,-1407998679,-1206713156,-1033015126,-1707474952,34835876,905819314,-2039337944,-943964144,465258341,190795088,-350977816,-1507034589,-438486777,23545193,-132652380,-193150347,-1021231235,1221680485,701988864,-1275445977,2054136752,1979878883,-1947242240,1471503524,-1124048579,-819573957,-1644435529,1736969705,-55587375,-1799155976,-1356894531,889835706,-1225827540,-1852799491,-385400618,1876705444,-1366545863,1314470043,-1340722015,2104620992,310374525,1202976441,1669958683,-1615102620,-1063015753,-1750080182,1337937485,-741663348,-1414938096,1969633170,2020815710,1114699241,-1353817739,-30816708,1534866220,563822680,-1348826721,-248154125,1993946700,-873861711,1042366132,1142947231,-559793317,-586287575,-1146149462,-1368638043,-1456722203,-1124364701,-1116744107,1729898794,1827958018,2029768648,1578064061,-320500786,-1616878798,-1026355234,195463210,1907635496,-321276952,636332383,1333063281,-1406169217,2006171555,1307422853,1906403904,359676472,-416491491,1549251621,101832858,854321207,-2047318466,-1723702265,70101087,-93728393,-425292829,-1292656602,1013936699,-789509494]},{"sector":6,"length":512,"data":[1606365805,1884319654,-1819714643,1489629835,-1967288143,226195015,-1751192317,1605330357,47148507,-1105490778,376666215,-395993571,-1296300352,2122073074,1541279339,-1014131633,845026915,1427785959,-1078481923,1782897534,2147111662,948757904,-209300387,1868481403,1367125653,-1750893761,-1784924568,-1212247537,-159578348,509834243,-1597196229,-1288503579,1047529356,-429106728,-350937407,-627803645,538804815,579926523,1609094155,-1854208478,466184521,164652708,-654181260,768126437,388213942,1795293094,526161694,1454473170,1573880062,-1109346269,495871399,-904036613,-7137675,-1336103575,1085754678,988739352,1291899844,-862487216,-1108727929,1434407199,1155730930,-2094056364,1908233029,-376516120,469707116,-705971767,684014245,507226023,-105227853,360923608,-896463469,1515114599,792657487,-1044445189,-713503177,-243458042,-1483183388,-1401181736,908780125,1788099429,1048040935,-993887140,64253399,-1417408520,-6196768,1101015995,-440286992,-321947227,1434973863,2005401278,-393076858,367466494,85863183,-1339050793,-1402473776,1947270982,238464378,-1107924206,1490833038,-1085984504,741531485,-1582698402,1609161846,-1598065934,2094645609,896346376,541709382,-1682798205,-564196187,1280042304,1502322361,2120717146,-1832167580,1895063152,1134649492,929454459,476689175,1533245513,39297355,1707131396,-1143141784,-1689487364,1161866990,620377856,1640251767,-1506232232,-205919865,957762798]},{"sector":7,"length":512,"data":[224680334,-1003610511,1007856519,395855285,630678601,-2047091826,252592285,1764227731,1048135239,823352652,50948665,-111930384,77531147,-1057188454,-1111641221,1572715966,-342439217,-2053608549,-1178896333,-102094933,-1231421812,1993203263,-699521055,1998134390,-1825918739,-413982028,-864443784,670913123,-1435792922,664601479,2100737208,-1732239980,1577454918,-1110597172,-428193494,1419788142,-408396675,2067526094,-689864254,539733796,-313800906,1640024746,-345781540,1390570303,276602737,817845956,277289701,-250455901,1350546827,-162794306,-1555181231,-687005104,-1013374116,257282710,-1207809988,-377913156,-166622751,1664888320,-1920709544,2141803123,600671176,-636148928,2070928295,1465560407,388282615,-118554707,1759460664,-748041911,488259824,1446185635,-1221164303,1862540314,-1033356003,81233778,-1687311765,-776517797,-64037160,-1709219530,1306982968,-548368094,-1622629818,-303176544,1169195371,-213290806,-1730453942,1696747289,-1814756426,461746308,544629399,254974717,499148107,-1272787692,1093455185,-906306377,1767007897,-1512362601,-21220286,-854811138,-1595558026,1931992284,-1376115992,307381870,-2116147338,-14270750,80719660,-610928517,-315057981,428390415,-240628985,-1716965366,-1794739300,1026010773,-844479639,-270155510,2144667170,-673409688,417486449,-2143336095,-1400708083,1145928033,-1744761917,2085047647,1100423867,-659700894,309868923,-1422923758,-1878943247,2013727383]},{"sector":8,"length":512,"data":[-1043123258,-230716413,-710200673,-1847964601,-1653678538,1821264018,-181662875,-1198052571,717043721,-1829576471,-27340268,-1190158802,1236561977,1792406245,-230691229,2009268301,-438301916,-1510391341,-252556237,785380658,1069370064,-254730672,534980218,-21878296,-2137618731,1610585107,241554015,-1653012313,497459100,-1833330868,-721912492,95875549,1839313138,-1931005167,1316226329,16875322,-858531478,768401416,1425189074,1851736881,1835728885,1921998518,-50496856,828758915,741909350,560090541,-788259104,-451742759,-1936149657,-1771926601,988906653,-1124785350,1279175018,-1608501090,-961654378,821497629,-1016091971,1166759059,-105698292,-417275509,-21589356,1603008700,178435855,1115516016,1379366592,-885885955,173792996,798347213,904802984,1826930154,1141726624,491742216,-65681550,2084249549,662668355,624315898,-674509088,-778715138,-2020001844,-1283447326,-1939042723,-647689452,457107062,976010280,250780965,350489408,-413550565,1656978909,193161308,1666816374,-967757034,-2081753642,320182454,1655333490,-1554837287,-607558877,2096969367,-557972073,-1141999835,-533398319,1174407680,-109572411,1322357857,1373926716,-403834289,-570458785,4281223,25182216,-2134890488,-1817964541,1832549907,-197095148,1452438605,19160563,-1604315643,-1052095167,608502215,126953433,-1822118634,-1480250295,-2124919343,638124576,184721568,-1842069233,-2074792693,-63944558,839685476,2088984785]},{"sector":9,"length":512,"data":[-2088487672,-1261369074,-1041347692,1074758596,293880072,-2071675615,-714739950,820853406,1309872724,336761912,-2061165225,1632758865,1750618629,1548784433,411435384,-724461468,-1583282310,-1066525946,1951663905,503801104,348629114,894729759,1350587284,-2044655579,1418240544,-924506996,1112051796,89094729,-1708783259,655644576,-1979549440,1654170664,-1465353762,-1339323710,764101320,195224037,1124122159,415510686,-902685133,866001712,220693712,-1553934795,-1139591411,1037897640,-553403865,1138239700,-1360223405,2002367467,1307816369,1844033285,1504897905,1899024509,-1378983049,1300506596,-1301862220,-1144277221,-1839154980,-398607491,-194352350,-1682706380,-958598722,-573091400,305925175,1817932159,788077340,1517466771,585050918,1668127483,-1100101853,-1804191025,-991984836,-208191063,-1913480901,-1913843987,-268759175,-1305767300,-273050015,-329304106,-860679324,-1851680225,-965616208,430251757,-469328966,1183019409,835407795,-1381172965,-1459956977,506023529,-1680762166,-927167155,843940292,1007418552,-683558066,-272778763,500974115,1841968239,2132327852,1877626217,1785263820,-1444317748,410294489,-399028235,1062548894,1785655237,1920132700,1470031948,-2028682797,2049874713,1237542323,611186201,-1953879845,1999215021,1980024402,-2042353424,1833184937,-1420157503,-1736994665,-680606174,-1907804851,-513009793,1211622138,1307133777,992497497,-1390748574,-48901719,1922773357,478848367,-232902810]}]],[[{"sector":1,"length":512,"data":[-956639367,-840006775,-1558591996,-542828357,1399659625,375845647,346656999,-585343889,1064068791,1607806091,581838042,208808558,133680732,896736718,-1150146327,-2104699963,-1357096417,-1186096705,1855128971,-410789225,-1665871412,1318405299,1662264981,2118214508,-406396322,-1917629198,-963165322,718239454,-67944739,1542272030,-277811215,-2009793349,-548282884,-1973317978,-730197182,1182227897,-1146947676,21544816,-1647664827,1060418966,1976501444,1859439786,644576061,2123102687,2135411364,-1646078729,-861213905,2087475412,660980855,2010475352,-1720892080,1445249555,-1159041111,-62968193,-1971375632,-1510264837,-154441129,-1419677096,1002015231,1636561228,906403564,1218337628,1732398620,-2108688611,1148613368,-1092738027,-113350216,-179094450,2092456853,1668261298,894817143,191758347,-841129857,1957721463,528003431,2075370584,1414526675,-562912972,1400507473,292975331,-723600409,-45674200,-156803775,1462338202,-2052244004,1724888808,-826371588,-777385747,721208244,681218337,174289678,97345011,-16726217,-1970980457,-663265939,-387836737,1756855755,-557678891,-511227425,-510369555,1500366483,-36044342,698969648,551460380,-239092758,1690717947,-1008794105,1165003763,672384439,-1931513680,581768209,1358555442,-1862378014,-569680865,-139212964,-1317278621,-2104157114,-547385747,-1609580705,1044616187,469241133,-735699519,1231868136,-1568066764,-1468435821,1926802662,-1295527008,381638359]},{"sector":2,"length":512,"data":[1713214974,1783569051,1966686908,1258745488,-1741641581,-1491756370,-579932721,1721282045,-1019820695,-148459803,931298435,1927398397,-1253526216,-1793452095,1036231450,1836507781,-32108900,-1807828011,-529055652,724498422,-930865924,-440422253,1301739394,-529896339,-362072291,372586230,1857015071,-888158934,650682863,-61339988,1082652396,-462068391,1034218941,1338192534,1314691564,-542769633,1184846279,-72863928,-573882690,1106772705,1643822948,-1375367270,-34347528,1535838731,-174160792,1370781839,1847883760,-1749043297,1267032058,1469213881,-937126002,-659062610,-33086774,1999803971,1561785532,-375511673,-822334941,955159360,1648457562,543757141,1590461749,-1379233827,-499850083,1955948373,-1492397743,501200121,364843095,-1732456507,-1794422477,-544885945,-39890703,-1613682870,-1974911629,-2029553183,-907077651,1586424245,-815741229,2138593928,1722901873,-1640680286,555184672,-696810362,1518732664,-1123468477,328591002,-1680022623,-27937294,-88737739,-2090117826,1910113656,-1426907862,467386970,681989120,677964782,-1236209571,1806000887,-679625782,1443024919,-1191103449,-1074477455,-2121499546,1351657520,-231777089,-58205089,621671448,-432855208,-1825785886,874850289,1314123117,94692803,-52103718,1144798475,1603837578,1599517955,-1703886785,-835534917,-918988115,477746991,1227546119,-200876334,147764228,748528736,1350772445,993863233,-839429592,1581345246,2005529648,971592223]},{"sector":3,"length":512,"data":[271952058,278068867,-23733335,386920003,1658593367,524724117,1909691356,618284771,-496365656,1692294886,1905444209,1358403723,-1828713258,-728678282,-531870781,-1091572347,1201241483,1420863938,-1515782938,-1099505976,495961266,1815227008,-1613536190,1719287376,1718074397,-1390474191,1159729954,-1978561572,-1643200483,663354241,-1439527312,202747475,-1411354960,-1338574834,2092166261,1106486152,-1955347799,-1143992771,-2145406810,925882693,-1159486808,866684164,-986327997,1390661583,-1817079116,-789660265,1452578216,-1937528734,106534239,-976826493,1300097236,1174181184,-28345455,-536694590,573141717,586418032,-514983687,-19370458,1091928901,-1166411206,1568664936,723071351,-1625482221,-2027280868,-1635652216,45313400,-1845827152,956171325,1928012221,657438456,-1568351000,1007881342,-161077527,-1735718063,-1751694267,622129613,1749835046,-851650900,-685129399,430977279,1013585282,-121084614,1820951888,131957797,355517351,1940027516,100267448,2105428129,-642120730,116894793,1766307383,2047910829,1678134634,1320619285,1413694232,-1402349966,-1205556676,-358665228,-1418652361,-320612168,416167222,-435860235,1433902320,774834232,-1789915624,-741900718,2144562721,689066753,-1931053579,-101025781,800714823,-996642840,1669978628,-789746864,-116637081,1720353075,-2082695667,-491891657,2090744771,-273236119,891736835,1399529899,-2015591133,806072483,-947740731,-1624769276,-290013856,240885354]},{"sector":4,"length":512,"data":[-543668381,-1453777552,-788421996,-907062583,-1618966380,1719334994,-268889793,2049982292,-1914635356,1074403729,746668871,862789442,363482112,-1080400590,-35876468,2054194791,365042821,-301576203,-951232983,236263022,1785246733,2030206068,1970288141,815867186,1689029010,931261145,-1876129024,-1951862462,-599855041,4057459,1916957542,-299332327,1309229235,-19534103,536146369,966359113,-1670587862,-504552825,1093247558,1292661822,-1739509678,1571665637,-76380168,-1192581216,1521100728,-453916397,2126765027,-1351805062,231339628,1669456777,1811229507,528770259,38375902,1501546685,-424864473,178700790,1012463046,1361957522,-304711588,1629772120,-1825258175,-2138298809,1430825395,-619178175,1046988269,-1297585184,1192200750,276121368,-239831737,907324977,915297760,1015779427,348523374,-1791550858,-817319850,1367870721,762043248,-1993724007,-1871516832,710506539,625644114,-1215874805,1149900724,410615838,-237389962,1971977623,1560769715,-1272500570,-1368861931,755929714,-274164662,1820082605,383688610,-1750993662,1184972311,306668711,-740125164,-704583113,-219212349,-157672533,544934795,-963554950,-611148312,-1025858336,463354192,249230251,-2014003046,-619691428,-354739099,1286213019,435684532,-1746396279,1082082919,819446558,2024118696,371017855,659717696,191914536,1430649839,1082787091,-1871280524,36314602,-2049521542,369432391,-666407596,17065737,484258821,1934274802]},{"sector":5,"length":512,"data":[606627529,1472049904,235560560,696741135,1047095323,-698551693,756893113,1203857566,-214203149,53784251,1366048864,-1582529337,-560329574,-1416091950,1415353150,-213046235,-942613231,1316834332,1314537677,-1044320020,180751338,1785189816,2121208112,110527576,618320473,-673726756,1629617393,1491105083,-1114198251,396037902,1003449314,1119851328,1723701944,1597315890,-1027882506,-849160400,1302058870,692638079,-1374029604,1273032766,-1064934486,1164371212,-1980203817,-1341816155,-431414730,-382001518,-735164523,-732596839,208104165,-294535745,1761666668,-1974740862,415318070,294955565,2026170162,-739437258,-1962024787,-702743226,-425724253,-681566298,-89963617,191548686,765710161,-921797570,717152457,-1130869861,-957592886,1395500824,1554756536,456812059,-349957018,-1490660167,1623084301,-1064019536,594991375,832243491,-1049364946,1550832287,903166609,1025809855,1210008255,-248509623,2144810732,-126626721,-993961284,-1792121135,1770941545,1022806813,-364212465,-983042252,102758761,-609675390,-1255432906,1745425232,-1879919882,731667617,-1245828885,-2018301982,75611651,97510084,-926616041,1128607539,-1698207632,-1739537869,332622200,-2050913032,1891537604,-913581104,846454246,-1576340372,1210533804,-1212552050,-541688256,-2093795390,1369923683,717346491,-404927562,504319044,934836158,-842529420,-1753907392,-1914290648,998322618,-263017483,-385206727,943544375,1355425962,1740168325]},{"sector":6,"length":512,"data":[321172217,-329711051,1731793512,106798075,-510229687,-804947833,-1138675175,-668223457,415294067,-1764786482,17571159,-496371077,-1130418328,-2125134709,347947862,177874682,-506274137,-1079268891,851421732,-195565067,-2084314853,1425006634,-717551061,1345411500,2127116843,297977929,1848847213,261334122,2005263647,-2068271287,-93421817,-429214988,518096358,-473908000,-800258899,-494495251,-676055411,1242618163,1912561372,1899974774,-525661308,590990317,900734955,464657241,287574737,2146907918,-909133604,1461997765,1718389577,637610622,1953920521,1308745722,-806549755,1976423014,-1649164716,-1173463191,5669143,178150137,-387161202,2125636333,-1459825916,-1941622946,1183665581,1741477589,-798912928,-2060759325,-1656461504,1454801468,-1310282763,2039723411,814514958,860837900,674783971,1156957344,250859289,-1840106584,808465687,-1197297412,-944340738,921522004,-1281758329,-505102945,714568576,1895091821,-1151467119,908045719,558330160,1755862368,-1062691319,-1653911240,-1880824858,1327801829,-770018114,1780391126,-470107882,-1764078302,-1936283545,1011392414,1067657508,-2095171752,-553989702,-520942912,-600366541,-1627217312,-1698812346,1360962123,1210249634,-930622345,-542403283,-662113310,1903149401,1168180195,625252446,250412154,-1250321781,-2114905574,-473625972,1524375360,-1792507863,286706641,413305157,344413082,795558315,-419922880,191792213,-2064496272,-1642163349,-1403235932]},{"sector":7,"length":512,"data":[-10557192,1343135316,1877551628,-580314397,-1833482487,-839616112,-712634039,-1771317725,-114007136,-159490829,1949257012,-1143752494,-766883783,-53291247,815894328,-1513918790,1431574359,702665619,550894407,-1799617103,1501993994,-1413025724,1655636065,635379233,843715839,572491007,-180329245,1117055883,1849220104,381104929,1750199660,-201406410,1455082308,1353447800,1044838566,1379787019,-1403504963,650215201,-1946394126,-1862605881,206739775,1252843003,-883046161,19322643,-122983407,1294629131,1279580180,-1049231670,630880930,-1802768691,-536172287,-946802515,-309395225,-1531365493,-784078260,-75103251,956587442,-1850648893,-306171248,-348324619,1718775191,-184763586,-394761359,566201774,-885911200,-1365918446,-1136117830,-146175449,-897546076,-2056158551,-1618129542,-89111230,771850529,-1534724327,1894568146,-1207264155,544324041,-39180813,-285536797,-1342726342,485849609,-2036271365,420672673,-948983045,-60693670,497231559,1571247462,-589299281,-340383379,-462367686,928510391,-471936231,-6762122,19066089,-48804985,428950784,-1073565310,-978376396,649624296,-344433509,-45721392,-2146776818,-162540176,1834184013,-1656112063,1494420750,1409884,-1104104824,1097684838,1163316517,473581448,1360267239,176423137,1380151611,-215947989,525921461,-100198166,-1072648994,-511119515,-619271669,-1077862663,1561525623,341077640,895558354,905291604,1443575655,1397264384,951234585]},{"sector":8,"length":512,"data":[2101848130,1020327803,1672394570,1984811261,-1548593258,-1080455796,903066024,-2060915696,-843181595,-1100882434,1056893715,1174663159,1388230301,-2018778924,-1719115396,120832461,-425599013,-336498151,-1919191433,832296955,1071769014,726645625,-2136389036,662757954,-1759077344,1688816323,-2141256759,761370292,1914503995,-1703374219,1388925080,-930237624,-321492093,-684123521,1512832311,-850274878,623655995,-872286280,-1180031563,-1030388759,128270337,-1946849184,-493316382,1444792217,984274157,-1533788262,-95826515,-1923824181,1797088162,-902534385,1735776035,805166520,754530706,1549761924,1898647069,870134746,-440527296,1244749345,-212273423,-1131981093,-162121065,-630050920,1202808142,1670022254,2021649208,-1877598604,-1105037545,-667122426,-1200879125,-1291495985,1332748798,-1002729389,-1856464862,-878799575,879142609,-197004474,950389482,2063919489,280025494,181718565,-1300821936,299118390,-248743045,-356405682,211941451,1245504297,1978880243,-1814791565,1719108355,-358957099,1500433174,504533221,338854737,-990261291,-2134903724,1039780652,-1134267182,613592508,-1789496946,96776490,-1960218451,-2123975745,1331830890,1756702619,1659799981,1623094124,91905731,1077501773,-1680111441,-1630544393,1695524429,1912151742,-2126682246,-1943132632,-1317601852,-1751603842,-1534775246,1872513692,-1243607751,-248388557,-1205868604,1451738585,-1361308550,1110419166,1391439831,-36311549,1790592369,135718614]},{"sector":9,"length":512,"data":[-1368202657,-1227289689,-246457530,1550357708,-34165175,-40739654,-1751929583,123872182,1635286201,-1664855750,-180360754,-1207958863,-2118347891,1625719391,-1093279800,2085142962,-106684674,1520931650,-202900728,-369151335,-1648951907,617015639,-1562304097,45177231,1841490880,-1215343106,1241063020,2127349359,100364338,-774181614,-639861980,-680082070,110553232,-1929916890,-878062667,-1312246457,1511703798,-35693226,-1171385111,550346303,453447579,-188242245,-107342683,-1209872429,-896299362,1766648130,11266495,175021768,-1945422021,1608611095,1810901012,749624103,283336719,887732654,-371406523,-914942250,1350087959,202457533,1330232358,-346933300,1476439245,-1314030243,-168964592,747780531,773571575,2107661193,-1035606023,889651210,-63256827,945231297,239710415,944221260,-649946766,-431593254,1711002622,1932587511,1422200336,632286597,-1855130180,1174414016,604121140,-813973931,645331866,881871665,-1462493251,-871252574,586480393,1787156700,1141459066,-106061125,1685789393,-1318820127,963476565,-159523211,967148086,402658710,611589076,1943196563,790222313,-2033626069,1684498778,378583380,1595179423,1555814789,-1251176245,787666079,-1264943066,-729824285,-200995068,417351406,1092004766,-586375575,-398857107,786046835,2131416378,5649302,1985462420,625449243,-1146593301,-720135881,1419442112,905099206,-2001915612,-538447266,2144537101,663932498,-1580429161,-1620944143]}],[{"sector":1,"length":512,"data":[-1386395923,1541057601,1686287853,-684280153,1575965737,-1815239640,-1713758780,-1741428012,1601774619,578426301,-751785888,-141526714,1546331253,675263518,569789228,-1311893207,-723715543,1053441831,-1244433806,-939567053,-224365130,920125355,121931652,289560505,261532429,-1665584671,-1235769501,-780750950,567692987,1305603771,-1559183453,2054286620,-1219153029,807453320,-1798399533,-163348019,109384141,1030100353,-494189749,-1697599416,-1498630896,889076550,-1478062900,860192686,-677384654,1044517251,-1823242406,-1908675631,1123507577,-1690033200,-1523850143,-2103357155,666088182,1458157977,2033674289,1076927643,1400235731,-623543373,1679072740,142287125,-735699696,2018504936,-1565184131,-341071350,-1042183364,-746064376,-38845031,-122554919,1692648798,1486695113,-645531044,1163500252,-420581399,-1782059994,1542106938,-1714835288,-2025805442,-50785993,745779388,-1976843379,914221131,1756099644,-646759176,1783085057,2110698633,973517931,-1754534782,625684874,-1504323144,1811944574,-1726050458,1464065799,1498361305,156733291,-287347271,-1451784132,-206706137,-313232861,500415570,483907999,1225064511,1887560185,268556620,2143178340,-1858601847,1884699045,1754868553,-185702715,1230658248,-1770131560,-1426698756,-508722193,1985816166,-1483144192,292676743,-1720929578,-800431854,-412454827,-341402921,2027116539,-415258818,-1540313516,-1577224999,-1828778545,-675767320,-1789893997,1474659741,1348782836]},{"sector":2,"length":512,"data":[925756502,373678767,437600256,-1093938002,-812626803,50665061,1956274293,-162192036,1140161914,1581774497,-395618657,1660663170,-531800919,-2005049597,681556765,-358621918,-1303705656,-393246662,1258447871,-937049825,-1946719141,-479698228,1562221592,-1045953795,1205923896,506907637,-959245423,-755042006,-1723847524,2134123256,31355756,1644559469,-2088839075,1020876056,-105715930,-1813101470,1901343083,-143174660,482345966,-635538090,283502046,654050615,-613452821,-1198256756,1741325604,1639994794,-146287621,-23022779,755481923,1746269114,-106201377,-864456982,-635235777,-1993649349,-2108734201,501109025,1108781329,-462391188,1851193898,-135897735,-508519521,231929905,-1764716136,611803624,955171789,1329718364,-2009042693,-564944413,609800785,-432068604,-6442165,688684223,1285783966,905352216,1209703747,1139455264,731135482,1517252569,1288420625,-1436934192,281268479,1513833732,1845956393,-718689994,272637345,-1709322400,667160118,1729400719,-1639876435,-705554444,1618279988,-1120485909,-1678854849,-1199467084,-198301607,1823803382,-941440166,483522134,802133431,-300950841,-107176791,-1245601904,567756661,1083601745,585220060,178251503,-1640480911,1962267209,-1721896496,2100478495,1336305616,408902554,550640436,-1619039104,197029657,580088378,-1583643357,736246748,1858739731,-1922981282,-822659981,-987159542,1964259706,622689487,-439726454,-1393929523,118432472,-1997671257]},{"sector":3,"length":512,"data":[-1625432469,1859308285,-398395920,2009135573,777398220,-850911730,-1665149480,1416722876,-1360633839,-1889905524,-559183169,4800237,-965713085,-2135265826,2029714300,-278308663,-118275643,320658733,1111404882,1444187295,2080887034,818139101,-67770536,967714883,1540550666,-713725207,967655294,-1770765305,-1128431249,1713115901,-1078678359,-1624043658,1819399468,-1835697680,-1326844058,-990009026,-153923428,-214160873,-1855378220,1265127007,-1743280514,2049038081,298434487,820290800,1258292911,-884817675,2097297545,-677740783,-483476419,-1940309642,-1146379721,-723080295,1872422273,1506896999,-416095592,917670486,510526020,1020794965,-1596554829,265953240,-137298630,-1304448385,-285179961,1266676980,-1690960752,1130699554,-815906580,763031036,1721027317,1983956348,-977859784,-1716301780,1123034276,-21641836,1449500530,705099017,-1423204584,176268848,-585048651,1294764900,1269828757,-1145118599,1952451004,-826499152,1455861987,727804766,1426348373,-9825002,1438618271,-706716967,1946471918,1822763943,41754400,437549189,-308771642,1969268293,-827365166,-1026669910,894079466,-2122001399,-78804846,735162020,1954999695,1194148122,-1105199501,1666809850,-1894726970,-905195599,-1841367800,-1764257634,1017765816,1279728201,-637016772,-1914435587,304475801,-1461943805,-1121146156,-1528964045,1059114478,97236439,1185326969,781632584,-534747461,1985337378,-443048510,-1092465806,608179553,718597060]},{"sector":4,"length":512,"data":[-1321687657,1553618545,1274910883,139213385,1456602519,13616409,-378742136,1688034410,1216757152,-1204837165,1859011481,-1059467973,1259757148,-1619056609,-332276673,-1102159429,-1450207158,-1859624132,1664050842,517205011,-237125078,1559415055,2104778356,1356519052,-2089544021,942652443,-913786165,26071955,-1699582993,2050358884,1154756267,2124052282,1424403513,286252342,1601816229,1453725967,1289378307,944287209,1707373337,-80188091,-488267944,635125722,-357064974,1432709592,-1827720070,-1796195030,-1341452932,379899063,848108656,-192427189,1904240339,78544685,1907490500,-677717026,1934151115,409129925,-507911061,-2127110599,1009027823,1085695507,-895610915,-758849578,-266606965,-1757008442,1274300798,-595382264,-736698539,-1838172921,-93764662,1542112354,2109614174,795501713,-997486321,364367631,406922601,947183610,-1401843485,-1632837521,-952126252,245980775,852000602,1084732902,-1286755628,1234419463,746859598,1212108868,87916670,-211667721,2066392019,746375768,1002925970,-1783012033,-169101778,-1794893197,-1248490342,-586763863,1357288504,-378349657,1427873893,-1682121002,-322963347,-1011109796,-910824941,-1217414287,-270134575,390134168,-96079065,1741569137,271364087,2011420090,-379865908,223481359,1416511909,698110772,499681771,1891546970,1710997865,445609349,2014858483,-566019642,562260739,1040924965,1781945229,-1968097761,577259006,-1767217829,849836601,-1395844453]},{"sector":5,"length":512,"data":[65695462,2006896282,1777672307,1508212095,1338335125,885357625,798705110,510589226,1501683407,-652118086,-56377836,-1015042097,-811119935,2104506285,-1541717093,-165017725,-1032267325,-1736999467,-1577426742,125251621,-757534549,-2066801689,-330559709,25467022,-1848256217,-79300920,-2048877997,1826447164,-878236515,-219295964,1474566126,596757944,1973189481,2145099613,799532213,-1994991353,1735568556,-476382088,-898206723,-1941840514,-832621801,1778226910,1139722233,2048724335,-1886691482,1427785200,1968166688,-1359976315,-1125799959,541753574,-1054603985,1735156948,1050710907,1802683615,-1079472956,-951594260,909909150,761457472,-446548995,542293600,147034567,597686879,-664831488,983448222,-1791342412,-123611992,-204765884,1326697531,2142140577,500338483,-809058420,-1360987296,-965430330,405752270,-1701125766,1214613127,-920900276,-2146908219,752753817,1341476495,1463141983,479186148,1611096420,-2147106434,51880776,668980024,-683448666,-189791975,-1432540740,-1040221083,-1041311032,1263136755,1508727311,-812047802,-1486878796,-404337080,-1153050700,-158814931,-595945637,1744891094,1342307771,407368842,-579474380,702340930,1235635068,-1171917785,-1729240916,-1513002432,-1072740193,21019214,368219797,-397935758,-452269921,-1922927114,-539476337,-292900434,-798802952,861618525,-290912807,990511330,2023748865,1350869504,1481185610,-99712160,-96251369,1309898033,534030849,1074266187]},{"sector":6,"length":512,"data":[671613312,977666240,1423950957,-2132509433,132511819,1477706881,470188416,1157752016,1601496349,78453316,1747191938,641453765,160547917,-1854619371,-1600048515,1210977026,810278708,2085979332,-548120036,1155134019,-1405977326,876778707,243499224,1136958734,553664073,285953348,1242694753,1380239296,-989775600,1095312251,559628869,1511392613,1384499128,-2046723772,1701078040,-1454237178,1847267393,479486400,-1806353292,-1481344995,8265479,-333409054,1435001361,145054856,-984525484,1083069128,-1806644958,638149956,1416784362,-408118150,-1868421111,-1440085406,2047525896,-1636646738,-2099727316,-256214645,-449836062,831275785,214116552,591449721,1490319565,-600404605,297571192,-1540456029,-1159827231,1388037387,605687204,815632488,1557962095,1788189545,-1992569814,1181651076,-591160011,-799975812,41124128,1656989462,-1703949515,-1788514190,-174875864,-1226472400,-1819245914,497727591,-1830734749,-1985031891,253973036,2082231429,992678923,1101062612,1886913266,-1518887390,1084036099,-749692312,-374658979,602465556,-1882513199,-840485822,6817832,-1402332374,-1638709597,-1432714518,-2114509725,951136807,-1928007027,-246049695,1848927912,1102065348,-491416495,822485876,-1394689737,-831184515,887496369,-1295373636,473375601,1794669263,1351514282,872074630,-1422569340,-866663248,1967343627,-1109144978,1849446352,-1558382489,1017896165,-1002838758,-154787818,-451061205,-1088519554,-528073761]},{"sector":7,"length":512,"data":[344146928,171001614,-410055467,-1941016535,-1173111887,1254777546,1531007555,-1577168498,1371078401,1925305333,1368047236,-1703306296,-552315440,440293461,593508786,-625463409,-937364755,-1438269707,-477745437,-1142973839,1606847275,-642803756,-1480587804,1025737470,726510078,358117536,58595815,-1829496789,1143826159,1642804714,-1373223254,1913516891,466363235,-462648391,-575420766,1843413193,683868290,1508513148,-596463516,836947219,2035120158,-2013606508,2036412147,382780648,-2072575955,-130518218,-927704282,-1499233325,-1140573047,1129187297,1400353465,-1229017878,-190148142,-1812914316,1911941604,-1773049231,1178349345,1978171647,-1854433616,-1368503854,-909599413,322549865,74789883,1964743313,-1071739464,-1393727835,1077707531,-2049829879,-1067816712,1418021672,773740933,90047466,-667573458,1440988040,-1962928990,-157815030,-826167296,1781690500,-418117227,-1609840039,326594682,870051007,-2118082747,-319616279,-251054959,-541987412,-1253286966,130944657,488610756,1750276073,-1672616513,-588290306,-2032886004,2012100731,-1977295088,1399649783,-1311344584,1733965276,-1129361664,1346538582,-302082085,1724513150,-243651851,1294329546,1729048043,-243362315,469137156,457944116,1598762325,-1700051635,-191637085,-763300837,1173004909,1558420237,1217779299,1700775893,2049590657,1317820280,-102152298,-264305364,-697258657,1420150151,-74779507,-1922187756,477132777,-2000722266,881905768,275264654]},{"sector":8,"length":512,"data":[-1644763690,332889556,1168862494,-1366559109,-1158028377,1012904700,-1504056513,1005809543,1237500424,-1385279856,-535062276,-1136399161,-1085170729,783120113,-754319747,1630751684,-1754118146,-1752358213,412208255,-453840887,-713593297,-1321382753,396797743,-756133193,263667253,-957172241,1154898683,1587169782,-1526311972,979937156,1575812287,-1168519341,-1872561560,-1039565708,-298036334,-1558754158,-1383769806,2025270534,299103327,667143798,1577331668,-2133642539,-1047036835,1566859485,-1746788364,1631989592,-1819696002,-2132837193,51333963,830854682,1587107078,-1396325926,-1530670591,1099140896,-1132076767,1854284431,-967435414,1625764925,-780561573,800291387,1303003137,196226029,-996748949,676837491,-1917673679,-1385892933,1145008560,-1363401302,1190692381,1514108222,1959770772,-1055353769,95712946,1692165697,-1257554838,-1215706572,617993462,-1928740011,-1587862454,789107279,-844147969,-601883787,-1369637533,-541897837,1920916821,-1441082835,40799028,-302987848,-516695854,2081504580,2089049672,-1604299256,-952467570,1747398719,565569927,-61271767,1619681003,-421094240,-742448391,650841565,1589673542,498521222,143918520,-1022494786,-2087354123,-1733372899,-2061813654,199972174,-1571618048,128096234,-1155878473,-66058897,1118856638,-1462642185,317351515,-728779161,-678152392,454906055,-1365430853,1787215700,1495848647,-2084633703,1045901286,-1691344977,-1677996486,1063516041,-556487594,528526522]},{"sector":9,"length":512,"data":[1830437356,-1366754316,1866078528,-1440655085,-1079296500,1556579103,-1904536680,-1708876009,-1221284454,987498652,571279161,49656266,1048721165,-61349840,-239047561,1963753756,2083714953,171515366,448559352,-1626046611,1297348551,-136769820,2093178332,-230920457,-1306964758,-1410733598,-1952417075,861967443,-2005667152,1407092404,-458378506,-444958910,477529950,-162988797,-1546586393,-1131446390,-1755377705,-1531670966,-859847513,-857903086,-1096025319,-721117299,-27138673,-1423348728,-1750455943,1226887244,1831102651,-1567497481,-1913454003,-1093058790,1312018217,-1924762013,-1241198564,-1351715189,-2027138100,1310012690,-1921544019,-1535721854,-1918516364,2037415752,-634312550,-1181256544,-651148399,-562611716,-2063605377,-1962482869,1592844061,-836460774,-568934132,1942172782,188584393,1669846338,694098997,-901942052,-317808851,1993791260,-1406218854,662999967,1115554811,1928166604,32993355,-613889527,-1349537785,-2128265802,1732728360,-240303410,2097609142,2022374538,-5812349,1611037505,790279316,316536721,-462125760,1751595346,-2030429709,1118769860,1199338223,-925701480,-1815033264,-1159016121,972582024,457240857,1359889886,1804918050,323715769,-1768345148,-1860594056,1859895624,1462845597,-1274460176,-212934327,-328699285,1565027313,-1124871110,-587782918,1230430854,-709281510,-1964588402,1825748663,133929822,58748740,41234627,1618671326,388175217,-733083268,-594382797,66578422,-317690164]}]],[[{"sector":1,"length":512,"data":[980723033,-1701233906,-1983231542,-642080341,2053752769,-414933650,-1552144427,82419244,701753630,-2084474998,256821713,-453790881,-1904518447,-826736220,662371503,-1823326087,-971777347,-2026484567,-60182866,1197363712,-2077690961,969879014,-1638829214,131297912,-1796539126,1287220848,-2051516209,-1954321284,1454597528,-1406605896,1274044846,123662137,2000810876,-1697834920,-442409595,1584495162,961812150,-1035978552,837510979,-1124534885,1492522466,1728292634,-1485149036,-958836915,-1422087944,-931763431,-910840811,-1433863494,229061615,-1331079109,-698299469,-1540121486,-663753704,1369820822,-1032228738,708979760,-953012601,292912208,1437501488,147884851,-1504462561,-106547178,-956795619,332499756,2046341756,-437701958,-1796426632,-370700212,732536155,-1464428165,2069480164,1702674141,-2054228536,-1031502184,662182776,38432953,-695888362,-1062501585,-1670922965,-1158175062,-575388711,-225119702,1100558244,449789170,2074135238,-72226236,1668632787,-1751814323,-2051320462,-575002639,412359079,1395691482,997356799,1412320899,1112863144,289807321,-2039522641,188996814,941660869,-876152116,-719314438,-76201458,1071015589,-118940408,662824967,-1059506367,178316849,-1068223114,1777063687,1436842175,-1800718978,1917164,1288860743,512448143,285713956,9077842,345325600,2121910676,-2117525347,940644409,1344452263,-2123676888,1273128306,-1998394984,444837741,-29978427,-86924556,1439942016]},{"sector":2,"length":512,"data":[-491161534,-1827748147,596738749,1587845511,1035248128,-367119682,-713605009,1707650337,-393416522,816601666,-957846385,-794119422,-577847504,-1495253098,1015540402,-688321277,1191972867,-1685314200,-2039642704,2048492218,1068458046,-1004800893,-1899967011,1176113008,1381353718,228097933,-283532554,-1755247050,-68493741,1115530061,836922943,145376241,1659583924,1917420426,-1586314955,1090132154,-38184227,1908794129,1486197965,-1849800275,-405232184,-735018945,-1755934441,1795172064,230327266,-440435107,-2106820753,523074997,-1891295771,1423966396,-31485582,-592102536,-1895546406,-337521022,-1037076971,1630437957,140153831,431723679,-1019670414,258190306,1970873569,2084988679,1539804848,1705112929,1992011181,-1665899533,-1131532870,1209757381,-454721312,-2143798867,160151973,222630623,1379503751,429244963,-1664626684,238371099,1122501874,1711502549,2017799939,-1318633798,1659749059,-1897621229,-1455730483,-2056176719,714604339,-1368362901,-1134118507,-1326509570,-676091323,-1352683438,482193889,-994120969,-2101161136,101096338,-810332717,-542902172,1986007759,439337141,2130407828,559835948,-1934127377,875012969,929467256,1809581314,1256105261,-1722254698,335162018,-1853544621,444125819,1589588458,736499502,246583789,-1229000681,-1546625169,479457395,-2012748615,-2058430183,201342894,-144596778,1503148761,10317019,1905542947,207822826,1056693655,327514907,-1418115659,-966435112,-1621006461]},{"sector":3,"length":512,"data":[-156016564,-1676347455,-2014505492,1229914013,1038577097,1166932325,-1365428831,-1047810207,-1761785189,694988187,1461526342,1964124806,-1691483390,1412594630,1156363482,1124275510,1711983979,397871143,1060869190,-437143542,1807742187,2004569934,-1340295700,1251423222,-1257558178,869852924,481481352,-241498701,2003651382,2089533998,-1750398586,-1224814159,2029386094,-286217529,1577120446,1374603943,-77603731,-6913179,-904742827,-1364337907,-320923204,1003044632,-673306885,72327733,-998596433,-421064165,-2098724676,1126355714,1917151549,-172070639,1547638,1858048443,-1093246209,1859016113,703588729,-2046184297,-1773943701,2123647275,1892967700,-2091323173,-546763209,1809739493,1383804921,-1997649697,-210934042,-1679932062,693633463,-1225284178,2137943329,-80873239,-618985003,-808847171,-1938507482,536230334,-846968367,149789938,-591333608,230340813,871490105,-489409505,-1825621675,-683189666,-1207694496,-972286993,479181060,1462902699,-14853422,172672815,-169149772,177442007,2765341,-1432314270,1870524702,-1109528664,1514205613,-1984734802,1872990499,-1172365892,-149096466,2016383637,1557470287,-493670545,-1907579118,346615200,1111701601,-1610124412,677755330,1542985515,218877464,-292980066,-602350800,-1292439091,1981121782,-1921250341,-1239155909,1517734779,1713199087,-1706366490,1078380926,1217589780,-2090295155,1136538938,1165588344,485429248,-2081033269,-545196519,1352326954,-122847296]},{"sector":4,"length":512,"data":[-1210142631,-811190702,-1056012930,1107535472,-1817271571,1935175913,-1804341006,1091116455,2019290298,-579388916,-1078225158,880699805,1298436803,824230083,-1399358530,1934224567,-132084304,-1502456159,-18933113,-1628036192,1031367628,-1085222115,-2111894946,-1212239797,-1771930107,838745562,1764961388,-681054498,1031469231,-1505957201,948960463,801915601,-43088266,-1015812488,-417509329,1186519701,-1853864745,-923846671,-243870916,1956487024,938508231,1942523508,-713344079,-889942936,-222696040,302595504,-1533548266,176221616,1025326929,-247972106,1545356,-442113847,-127542477,-1170896433,808072414,1219374687,-2028588546,-152803514,-1820497233,-1019383412,1378691292,1475261180,-335520135,1432584568,-1112787594,1464635564,183222664,499720130,-102473534,1889507343,125546387,-896042968,1971681757,533800187,530852828,-1904542572,-1448228106,698224204,1682163456,-1893990234,1879218534,302950460,21790750,-1728037856,7880706,-260045518,-1155690496,31253614,1187376,825659,3382913,-2147054574,150070284,771401764,1542313985,-1945096073,-37236343,-975501411,-609112634,-1820771459,2139582552,-628989337,-926086766,7116568,-1076296732,-1630233928,-400978761,-1054944389,839389286,-2122180813,1215742267,-1642839990,-6989835,-1204057632,-910678181,-973295187,-382224480,-1574191237,-774183995,702610719,-1128321213,698935296,4190920,1828997302,132939793,-100363237,1926423667,-2117393217]},{"sector":5,"length":512,"data":[1330588148,-1810962350,-1167287044,1704041068,-1408487501,1179536358,1983429327,1903469179,-1422131679,-696298682,848263339,387340767,1794844095,684936637,511640387,239555167,-754717670,-753419131,-1797716827,-658549905,-971412260,1519381854,1840120972,863057122,-1628916396,-579053047,-702513145,-2104017398,1522796806,-1075946761,-2059555331,-382591496,-196328471,664935454,-1479843758,-929840879,-2134422136,-157330199,-663033239,-1627404894,737738229,-1411536350,254390859,-1922107148,-1692342337,-674553679,-1089600501,1870633293,-626163264,-1230418460,-536695187,-987480071,1068791560,2032963331,-1129775525,558521405,-48531007,1722398939,1169698633,1680276984,1902550918,-228351558,668308241,1332879337,2046400372,-725483852,-1133229314,-150725603,1866080316,-42050077,1754939421,1023682648,-1744361620,1142397217,120099040,1371660366,-1692286510,550697602,211812560,-1356198977,-345944409,1257158357,290592882,-2081133585,442317717,2035558187,641901768,1121143125,-167821252,896853000,-965329704,-1375012127,-804920064,-1067450913,677750572,-1776733372,-1408477682,-2039101998,-621323691,605645315,-972591984,2118118081,-950896783,-979657366,2031600948,-1956357760,1727612928,-969159168,1674626472,911048516,265559885,-161141683,868270588,540661558,-297442524,-1366250331,640325181,2023868561,-1202887482,-747473503,-146493649,-1728937938,-790355058,-833885184,-525868945,-1167153115,-1314680586,-1024646330]},{"sector":6,"length":512,"data":[1730150408,-1583914999,-1558399138,1245533450,561118458,-21055855,-490151886,964673238,399522440,720932778,796879848,931880439,1090283896,1886392304,768408131,-212180044,-42304805,-317466363,-509026227,-197004137,500789336,-1106438153,-1082119459,1347755935,-1961128757,-1340744840,461107207,837673444,-1116239210,1534634258,-2030290965,1918890729,1633632775,-83635123,1048715748,-875492825,-1577056974,854868375,-1750990842,268448357,-1750987587,-1178181935,536882980,203258,1626065,-1806893755,-287674376,-78992167,537626754,961005175,-1250417905,-927958101,-892581919,654913394,-2058536349,-684415247,514025214,-1491900256,-1904447694,1300971308,-1044074793,1222480115,-1146927272,-702563979,1703059496,270598129,-987125279,368747448,-260384412,-1098930651,388294611,883357388,-399680623,-442373514,379675813,-436622787,1819421057,-1842535941,2113845609,1255538770,-566319161,1737161577,-261621484,-1043224182,1175121548,1864462878,-96344126,2122142612,-726415791,-36986955,-42867001,-1982530982,1257173627,-334676645,706682576,-1238893839,-311411733,-891279913,22912925,861769485,659482764,629031912,2143604490,-252760671,-633316274,-1251636201,976195687,-710931091,-1811559977,-1262977318,-1737503293,471685518,-1768131206,-1071917160,-413392666,891341608,-1189023384,-992661850,1378639393,-588834268,-2066968065,336070115,1661794525,-1092875981,100760344,-388205202,531621181,-1198614595]},{"sector":7,"length":512,"data":[1308381052,208977413,867539031,-1384431368,267513625,1862472694,-1141446698,278997417,-590831807,-1553411284,-1027147233,1317626283,-1025261681,-1641778605,1574434147,547796937,819957667,984120575,-462862082,642674093,-794943010,888358484,2092514942,-424981909,481635452,-568595142,-2108414102,1465496453,-318997598,-372172464,413738187,992089749,116614873,-1693676714,1813280520,449502761,54863349,-275296247,879159566,-1019947377,942411951,-1703796422,-2083760656,-487667381,494890296,-2112442687,1453974846,1641671540,2102694986,-1155238342,1988279564,1351210900,1212530419,996633308,-1948569854,577098087,-1264788197,1914292690,23947362,-1160758173,-1879004053,197030015,1289361704,116951177,-1744897312,-1094509322,-268990695,-146221302,1347122854,1309729314,-374976034,-64857115,-940576713,-1420585941,-792016073,776883817,1079553505,-186634049,1853384755,-1767781438,844895588,434791262,-1879414688,1341820786,-2121884763,-1549003460,1031563847,871521555,-1625741846,332812613,428300421,1704046336,-2126625674,-1697224272,2132974874,-1366315567,2023617313,-328771235,-1981315438,-311022543,-2083132251,634444867,962886318,-1802405457,-1741108337,-1370783857,1240668631,-1627481126,-769822157,-578421966,2069355518,937139958,1570951369,-1486056116,-134347202,370441232,-1701841730,-1590326623,19225227,-187919428,-1765286654,14073663,1096300543,827001893,1011480875,414869817,-716379830,-1186100581]},{"sector":8,"length":512,"data":[-298384167,257425596,-826863809,-2121652635,2050367237,24220676,2123438824,549422585,-1738210386,-1984134182,-893083823,14467878,-205520002,864141259,-1120319015,740923307,889064788,1832878658,-438367169,-1557640804,-1672630086,502629480,-272618796,300275735,-989066582,1859317547,669630250,1130432347,144558907,-1604214150,-1123083321,-712423188,-1867200609,-509136583,-370458049,16343571,-22542604,-1841434022,70868300,1905249683,565776926,-380140459,-333079681,1612707814,-167876364,760698537,-989564281,1516960360,-1894666270,1704025259,-975925783,-604029964,1902559681,1323429781,-1145675017,811432098,-1178132840,-1581422464,1025743358,1520784925,-1767137751,-2014157,1338777712,1261000336,-1581495398,895835993,-2095951402,-2136811273,875273470,1434159741,2067111319,1911715730,-79908131,1676049994,-689713156,940193567,-865606921,853055047,1379061726,-564302029,-1058212245,-526129061,1909129155,-2050802069,1716899801,-181426948,-1814473482,1073767568,-468134215,-513944348,1888143411,-801103737,839911186,-1892952423,-124334466,-1343204690,284979986,-1339951769,1063992282,330284000,1190719565,-562033715,-2082809247,-874652062,382628923,1415342456,1711122414,-420892169,-1379449195,511581982,-325594739,1401162221,669894615,2102154724,2058679312,697998367,-876006856,-1375530776,1056311552,-597175326,-1366018598,-151585279,-516400115,1151051493,-1138700649,-1850012541,531650523,29679430]},{"sector":9,"length":512,"data":[6299656,235274881,1621116960,1933621089,-1010431769,-1088984192,1882510701,71434480,1411912457,1539836892,746175479,562084730,1748444291,-790598604,-1878539327,1781078410,1220821523,541729902,-1300381390,311104420,1654737057,742979237,-513132783,1844892130,-2090264017,-467254511,-798584765,1909297576,1849051318,1220135136,-660730169,-504743149,538560483,554468417,-1240939438,680675363,-375078311,-1605425355,-2060283580,532682058,-112987264,1547813317,-1853257986,391329816,596870032,-1295933702,1764930098,-1775594106,1246626379,-1016479145,-146217872,-1300513052,1082069042,-1903495576,1624543061,-2130673419,103823672,-772631199,678830030,632311713,1493465834,26232189,-1785293183,-1006630047,312993991,-1267031797,-1033489520,2140053763,253731736,-1785431167,-606737903,-1759278394,-519860669,1501762040,-472849288,-1014630292,101282351,-1142503677,1058150693,-830898015,571575327,-400671103,1222117639,1886818801,-1803013331,1670899680,2048354220,597207238,-1267692431,1808104397,1651988158,685530678,463714530,-583371003,958306894,-119107464,467691942,392846677,-433708105,815482199,-298588133,1008864329,488390588,704666424,-1067839874,477476809,-1287164211,-1926158158,-177268227,-1944205522,412404984,-1068744135,315424127,870081001,85746988,-800506088,-2063436725,1077002036,1103802976,1244790413,297462466,206789168,-1687148746,-1830057725,-558628135,940497019,967376467,-805342037]}],[{"sector":1,"length":512,"data":[266198346,1190180671,1323735737,-1177029786,-94305635,231844323,2000939856,-744297584,-1799615255,1962275268,-1262918386,-1264705662,-426531814,-534257545,-1428045020,2006375502,-484689347,-493443993,1720104752,-2032106788,1243888979,-1646718520,-1990986366,2002092317,349839356,720082121,1596956480,-1865004352,-824540008,1009567586,1375342691,1438108132,46842163,990414428,-1563607564,1899368009,-522648778,-1912414932,-1996247646,1374946843,-1184094812,-1085949188,-1428772078,-1317677356,232417947,-545277795,1830244349,940247634,-1314350279,2070535128,489837911,928100350,904472327,-1274605905,-336690,912219877,912716664,-427483949,413923019,-137653403,654798138,1966519461,-999569911,33096264,701080643,1974627328,-220003839,1116229809,1375971541,1992407549,545490529,-1967109553,1774050718,1297251091,1399393791,782602931,-290097812,1040567293,918871281,450013852,1777131003,2086359127,-909839844,-126233089,-1245509885,-579853197,242477086,1893748025,-280314229,-2021835124,1541013868,774995394,797064139,-580229201,-527470281,-1782072474,1702037105,-1291240672,-1125473102,858701594,-443105337,-304809864,573538737,-1457810245,1881386498,233783955,619147191,-287389804,1361314957,1350519752,701410807,1642496427,-145500851,580365782,787504368,-584137862,-879265199,237871685,-608899636,1734627106,928419822,-251054147,-1358042489,-350579259,-1584961313,-1674730349,1327616066,-521405907]},{"sector":2,"length":512,"data":[2093511253,1975059188,-746739292,-1669777242,-1179456967,-1280782654,1910875366,-1943046003,181951919,-2041860333,-1856666770,-1190446514,-1918414610,132867180,-546350785,1860158789,1828084240,932885032,-670975116,-1152522238,-1792321870,1531081914,-720044058,-1089499242,-1599258871,-1259153777,-1722440819,767327946,-1498534279,552598685,311419583,-1894130604,-563089907,51777908,624032940,-1877547373,1006263439,-1355187152,1141266392,-1380159117,-186207961,-2115374198,196595118,1010257734,-768961577,-2086661016,1169919332,-1077687083,-354207691,1817628550,-1710917803,-2051496915,130858586,1136055167,1901845778,-1289035822,1276358467,1629126533,-397178709,-1091978651,1222229717,702411863,-1494442803,-719604379,1513837254,1271251125,-1675507840,435481604,-761382845,970101469,-192800033,-1373171379,-302438662,116969308,1566169312,1803367978,-1780761617,1336713819,1842989026,-1229408652,-1133609498,1788790165,719833912,-100442513,2088360024,973436818,1577646839,708558911,1775995114,-928284579,-900867666,647270969,1470428147,-327919854,-296406625,1444214770,-588662200,2133328734,-1266988447,1582451250,-118086340,-1947656994,1576602941,-632904242,-1506805648,1688644910,1989388820,725390694,1334363363,595827171,1713666819,-1658896045,614347881,854858863,600015598,1794040589,-1440914921,2090760867,-2137680119,1052511955,2020523,950305322,1689646029,-890276721,813364646,563292981,-1756410156,-757635749]},{"sector":3,"length":512,"data":[512341565,-1590437282,-362424745,-1410269092,336911077,1003158030,561824949,-1899909142,904949466,-1661597973,564957087,-65307241,-1148898843,-666476432,1733789549,1004448525,2092784808,-1984958827,-538654215,1602820074,117244783,-911230942,1131983841,-1256762722,1551635906,-72362188,1679641097,239958840,-1127314345,-1076206994,-1014758017,-264349576,-1425092445,-1373709989,-1250025788,151037440,1805790948,-306914474,1574812389,1580054507,1761507639,-808939793,-126143527,-960276008,3923373,1075316738,58818720,-835131640,-1225963882,1627025335,-1692972339,369755294,-522164176,302547969,55971878,1021144743,-1471088167,1977803104,656218179,-1019111750,1008537094,225194108,-667065500,823166222,1206049442,680594134,-1251686327,-1471010797,1361232216,1586108171,1663142080,-2017336538,1235800344,1122191053,-924773065,247942465,-58966754,-2010762752,-1975246448,74593102,1260720713,-227461992,-1076606460,-464342244,-264893411,-1638734037,-1806783574,-1361594537,-1518406745,-404995733,-1363245282,1961602751,-2006995429,-1202843521,586934109,-1478006385,-202508293,-50463371,-1249123168,-804716549,370611824,493528763,1143794740,1874108119,39427241,168214690,1146641254,1471867898,-436476128,-991238187,400416542,-1433493657,1538441199,1296740578,-722735198,1801218959,1855135092,-1311838933,-424902197,-1344361870,1302697379,1193994702,-1516198817,-1731465486,-1708376153,1478740387,1876755152,-1487499399]},{"sector":4,"length":512,"data":[335210353,-146044826,-238709349,-242192086,-869365564,-734552395,493307704,-1708928393,-190077540,-1397262204,1781591343,-1144742196,1520897524,-1460559829,-940281194,-1812020225,-2105727796,-1461528694,1159106043,847322319,-784105587,1670320207,-149473267,-460915311,1993219122,-1329152231,11646936,-239933454,-844847112,1486256907,1063501729,-1260267159,1856978771,974872518,118869212,-1477595018,-1206439867,-969732380,-325158576,-920844781,-777552910,-449030414,762454188,1084161954,-89566471,839105471,2008697438,-1826695952,-1929896466,-536610908,1999322437,-303783178,-420281496,-1009222129,-1495079900,557368206,-1824048037,110584791,30273030,-1055978390,-1412375860,2042193688,552373981,928351321,1635231259,-864331479,-2114790521,-1279760496,1195167934,-406566479,1233325518,1129958382,1637260101,-248820016,1440624832,420400179,673395745,-331385622,-973304824,792907585,60191862,178372936,1557941780,-252387846,-389897824,-717548320,-1524634463,689346776,725432334,632950075,1603282035,1079446506,-714064693,-423057807,711505255,-427599967,-1609894462,-957096144,1507031635,-222950628,-1706260048,-288838455,1790387824,732207334,597993828,1388610901,-1367889735,716324088,-894758325,-1456500071,-1765399494,-1722775912,-797772903,-1449117193,-184678804,-1353217649,-951444987,-1986851645,-760720279,-684462240,-1639084864,1315113984,794719539,-29001094,747480981,962096330,1568741091,-2145758991]},{"sector":5,"length":512,"data":[-1179197490,-1057971988,74143450,-252954192,-1897121631,1082130590,1402009606,405656465,426926742,-1266002553,-2094180736,-980507652,-321482322,1638516329,820067675,58568461,-1916698151,946438182,1348142452,442322262,0,909652944,1163149645,1398362926,1411403008,1140850774,1933063959,16843132,44097,1,65536,1410990209,-805306282,1396062259,1347769413,1163412782,442703872,386007040,717177781,-1006567167,16777254,0,-2130706176,1891047936,1188036608,1162759765,1498623564,4522067,347424,185906944,30308987,1119158529,65536,0,8454145,7734298,1229508608,776815949,4411204,536888576,5164,1426330839,16905227,3607297,256,16777216,436240640,35376,1296648400,1395543365,21337,-333447099,1962934287,1343275026,16843236,6266,1,65536,471466113,-805306214,1395541068,1493193561,1157627987,122298368,385482752,903644057,-1962868479,16777225,0,-2130706176,-1587144192,1339031552,776490070,4544581,4521984,797216,-401244672,22478700,319160577,65536,0,8454145,11374618,1297469440,1498623554,83,536888576,1400,2014254893,16881702,466689,256,16777216,436240640,45832,777012176,5066563,0,1696596037,167772190,895483919,16843183,11411,2,65536,1830420609,-805306159,1229868367]},{"sector":6,"length":512,"data":[1212631368,1297040174,101326848,385482752,-1031184618,1342243073,33554440,0,-2130706176,-680060416,1339031552,1447644749,777471305,4544581,7972640,-703119872,32631354,-1107295999,131072,0,8454145,22093338,1297076224,1230391630,1210996549,536891468,4657,1134695623,16878333,3305985,512,16777216,436240640,90959,1162891216,1480928846,1279787077,807403600,-2063597559,-1872173294,16843054,3502,2,65536,2132410497,-536870548,1110333007,1157649473,1347176448,10493952,348651520,1413432807,-939458303,33554432,0,-2113928960,1830754816,1339031553,1413829462,1160663125,17752,2767904,-1424540160,23189562,1394606337,131072,0,8454145,26696474,1448071168,1279608915,1329802828,536870989,22127,-1861479138,16871972,9240065,512,16777216,436240640,126410,1398165456,777273684,4544581,1126170624,805306419,608050454,16843241,22455,2,65536,219807873,-536870367,1095715920,1480928836,69,32055296,242941952,1364287488,-369032959,33554435,0,-2130706176,586553856,1355808770,1414416722,776753235,5066563,465184,-1592469760,17223857,121372929,131072,0,8454145,36310810,1381027840,1095911247,1412322125,19798,892,2132154153,16843423,520193,512,16777216,436241408,142731]},{"sector":7,"length":512,"data":[1095586768,1160663875,1442858328,2097229,973078640,2030060813,16843126,47552,2,65536,-1961230207,-805305699,1463898195,1480928846,1297481797,153952256,310706176,266103011,-1811873535,33554445,0,-2130706176,-1497884160,1407188994,1129597271,776950856,4544581,140064,-1978622464,18687406,69927169,131072,0,8454145,44620570,1398329344,1280066888,1163412782,536888576,1262,-2092165857,16892217,411905,512,16777216,436240640,175561,1095062224,776293700,4544581,-1725956027,-33554426,19656726,16843239,2040,6,65536,1645871233,-805305676,1145128274,1412318541,1157649496,360259584,390332416,-75810059,-251592447,100663348,0,-2130706176,-908387840,1339031554,1230263638,1143886668,17231,7058976,773276416,20927871,1079378177,196609,0,8454146,53842202,1162010624,1380274245,1297040174,536870912,967,1726092523,16878450,275201,768,33554432,436240640,211288,1297040352,1398099789,1329802821,-618659763,-2030043135,1484012817,16843021,561,3,131072,857342081,-805305541,1129205571,1143886421,1291862863,279781376,384761856,-525038684,-1979645695,50331687,0,-2130705920,1272977920,1137704963,1430474319,1480928850,5046341,5451808,253161216,26908297,-964689663,196608,0,8454146]},{"sector":8,"length":512,"data":[60755994,1329848320,1431196494,1127105101,536890703,570,1283134288,16900440,164609,768,33554432,436240640,237898,1397507536,1313428052,1480928839,-1491075003,-285212614,-76132074,16843054,20464,3,131072,-249954175,-805305381,1229281349,776947278,4544581,364060672,386007040,1782404672,1610678529,50331676,0,-2130705920,-240903680,1171259395,1128616024,1329802836,77,878368,-2129310976,19773590,340721921,196608,0,8454146,67046170,1095159808,1380996179,1329802830,536870989,1587,1692669110,16904709,416257,768,33554432,436240640,263486,1431521744,1431390542,1329802821,-1038090163,-2030043132,-1671416043,16843248,1804,3,131072,1704065,-536869878,1280067915,1163412782,1297040128,35266560,278790144,111783544,453050625,50331652,0,-2130705920,203037184,1288699908,842083652,775040307,4544581,476704,-737107456,19734861,160825601,196608,0,8454146,68378650,1145884672,843268653,1160659254,536888664,1420,1306005666,16873581,488961,768,33554432,436240640,268524,759450832,858871628,1480928833,-1558183867,-1577058299,105765648,16843247,1926,3,131072,-1894121343,-805305314,1278035020,775237975,4544581,96018432,279052288,-170832416,-1778319103,50331655,0]},{"sector":9,"length":512,"data":[-2130705920,608705024,1288699908,1431186756,774910548,4544581,355872,-485449216,19801165,124125441,196608,0,8454146,69842458,1145884672,861099821,1160655661,536888664,1480,1306988706,16844397,505345,768,33554432,436240640,274302,1296125664,1330794565,1329802819,-2011168691,1207959555,-967784939,16843042,1129,3,131072,102367361,-536869837,1330466638,776295253,5066563,57221120,357040128,-982951915,1778450689,50331652,0,-2130705920,913250816,1338507268,1447644749,777471305,5198416,8736,-1911337984,32505107,2228481,196608,0,8454146,70684954,1448075264,1398035024,1127109187,536890703,1048,1750275400,16855253,322305,768,33554432,436240640,277161,1330794704,1297436227,1329802818,-1054867379,1207959556,1699793429,16843214,1804,3,131072,1780088961,-805305281,1162691922,1380270669,1163412782,115744768,384761856,-1469942175,872481025,50331657,0,-2130705920,1179654656,1406140420,1262767685,777214277,5066563,2644512,236266752,28550217,989856001,196608,0,8454146,74361370,1163124736,1279871828,1480928844,536870981,577,-1367338850,16891859,285441,768,33554432,436240640,291051,1413829584,776557136,4544581,-283115520,-1644167163,1035042832,16843185,2054]}]],[[{"sector":1,"length":512,"data":[3,131072,-635830143,-536869770,1398031699,777011543,4544581,37101568,278790144,-1066881496,989921537,50331652,0,-2130705920,2031098368,1406140420,1264013128,777214277,5066563,1318944,-1424806144,29154914,437256449,196608,0,8454146,76361754,1465114624,1313427521,1163412782,536890624,551,-1367011170,16856370,273153,768,33554432,436240640,298839,1095194320,1330401091,1329802834,1780482125,33554446,-834212585,16843079,12754,3,131072,-1055260543,-536869731,1380143958,776357455,4544581,16785408,246087680,524771814,-352255743,50331650,0,-2130705920,-1631512064,1473249284,1263814977,777214277,5066563,2761760,-2045560576,28855411,1051459841,196608,0,8454146,80274714,1096278016,1380996169,1160659791,536888664,642,-1365962594,16891249,318209,768,33554432,436240640,314215,1162368976,777209170,5066563,-1826619323,1040187419,437293844,16843155,9536,3,131072,-98959231,-805305114,1129595202,1397501512,1157627988,74522624,349700096,135942723,-754908927,67108872,0,-2130705664,-345302528,1120403460,1094856241,1414725716,4521984,10016,-1777502976,17238341,2556161,262144,0,8454147,82547226,1094895616,1413562926,5526272,536888576,40,1168313717,16874014]},{"sector":2,"length":512,"data":[10241,1024,50331648,436240640,322490,776159968,5521730,21587,1059061829,1962934272,-2109334771,16843254,70,4,196608,-115736447,-536869653,1110331970,1392530497,1157627988,3284992,225771520,-98023886,939589889,67108864,0,-2130705664,-332719616,1120403460,1094856276,1414725716,4521984,9760,-1827834624,18241350,2490625,262144,0,8454147,82596122,1413728256,1413562926,5526272,536888576,54,1184435573,16899359,13825,1024,50331648,436240640,322695,861160416,1094856246,84,706740293,1962934272,1682352141,16843139,43,4,196608,-1323695999,-939522836,1110324036,1409307713,1157627904,2498560,225771520,-815184182,637600001,67108864,0,-2130705664,-321447424,1153957892,774910259,5521730,4521984,9760,-519211776,30023494,2490625,262144,0,8454147,82640154,1111803904,1413562926,21504,536888576,26,1189547381,16853167,6657,1024,50331648,436240640,322839,844580040,1413562926,0,639631429,1962934272,71757069,16843122,38,4,196608,1025114241,-939522835,775116612,5521730,1157627904,3350528,225771520,1381058292,855703809,67108864,0,-2130705664,-311420416,1288175620,1094856242,84,4521984,10272,-66226944]},{"sector":3,"length":512,"data":[31918150,2621697,262144,0,8454147,82679834,1330432000,1413562926,0,536888576,40,1191447925,16900734,10241,1024,50331648,436240640,323008,777473224,5521730,0,622854213,1962934272,-230224883,16843060,37,4,196608,-451280767,-536869651,1110328141,21569,1157627904,3678208,225771520,1768703773,1057030401,67108864,0,-2130705664,-300082688,1304952836,1094856279,84,4521984,15392,722302208,23036231,3932417,262144,0,8454147,82729242,1431226368,1110323250,21569,536888576,46,1195445621,16904032,11777,1024,50331648,436240640,323207,1313689568,1397703753,1413562926,-1608515584,1912602626,-2144919532,16843017,1015,4,196608,656015489,-805305103,1380275791,1280724050,1413562926,68493312,343015424,-14473563,-1258225407,67108877,0,-2130705664,-180610560,1340080132,1330794582,777277517,5521730,111648,-1693158912,27244326,53412097,262144,0,8454147,83292186,1112721408,1413562926,1110332416,536892481,30,1195773301,16845502,7681,1024,50331648,436240640,325390,1095062216,1110333764,1090540609,1092616276,1962934272,-2058921971,16843127,65,4,196608,1327104129,-939522825,1110333778,1090540609,1413546068,2891776]},{"sector":4,"length":512,"data":[225771520,-160413870,738263297,67108864,0,-2130705664,-142927360,1405616132,1094856242,1413546068,5521664,11296,1661826304,17371207,2883841,262144,0,8454147,83339034,861128704,1413562926,5521664,536892481,44,1210256757,16893247,11265,1024,50331648,436240640,325587,776164320,5521730,1090540609,840958036,1962934272,-1740099827,16843127,52,4,196608,85590145,-536869640,1229538131,1413562926,1413545984,3416064,225771520,1546733625,889258241,67108864,0,-2130705664,-130475520,1407188996,1413762629,1094856271,5505108,56352,1024776192,22148178,16843009,262144,0,8454147,83432730,1230227456,1229669700,1110330179,536892481,64,1213336949,16852888,16385,1024,50331648,436240640,325973,776688584,5521730,1094856267,773849172,1962934272,1867008525,16843165,46,4,196608,-2095447935,-536869639,1463898195,1162760014,1413562926,28581888,343015424,1675241117,1359020289,67108866,0,-2130705664,-80274944,1405616132,1094856279,776274004,5521730,12064,1460499712,29540936,3080449,262144,0,8454147,83584538,1498662912,1413562926,1110328576,536892481,52,1213926773,16900003,13313,1024,50331648,436240640,326554,926438600,1413562926,1094856192]},{"sector":5,"length":512,"data":[689963092,1962934272,-1974964467,16843235,41,4,196608,-1021706111,-939522821,1263419732,1413562926,1413562880,4464640,225771520,1653098601,1140916481,67108864,0,-2130705664,-66643456,1422393348,776225602,5521730,5521730,7712,-2096270080,32786504,1966337,262144,0,8454147,83633434,1163190272,1465144403,1094856271,536870996,311,660739186,16856005,95489,1024,50331648,436240640,327004,777278664,5521730,1413562926,723517440,1962934272,-1958190323,16843031,43,4,196608,-2028339071,-939522819,1110332756,771773505,5521730,1777664,225771520,751061108,453050625,67108864,0,-2130705664,-39708160,1455947780,1094856280,1110310996,21569,10016,-1878166272,23381832,2556161,262144,0,8454147,83740954,844613632,1413562926,1094856192,536870996,39,1217793397,16843994,9985,1024,50331648,436240640,327152,776558536,5521730,1413562926,924844032,1962934272,-79127539,16843041,55,4,196608,656015489,-536869634,1162693463,1110332750,21569,38150144,349700096,-51883613,1912668417,67108867,0,-2130705664,7150080,1472724997,1094856268,1094844500,84,12320,-1475513088,29466952,3145985,262144,0,8454147,83926298,1347930112,1110323252]},{"sector":6,"length":512,"data":[1409307713,536870912,35,1219431797,16861584,8961,1024,50331648,436240640,327872,877680584,1094856241,5505108,589299712,1962934272,826848525,16843132,35,4,196608,-484835199,-939522816,859001687,1413562926,21504,2564096,225771520,-1106884411,654377217,67108864,0,-2130705664,17439232,1489502213,1094856281,5505108,84,11552,-905087744,23366728,2949377,262144,0,8454147,83965722,1329844224,1330794573,1412322119,536892504,2787,-1796336902,16847278,1635585,1280,67108864,436240640,330778,1414416864,1347768901,1481911892,924844116,-100663294,127200530,16843162,978,5,262144,1360658561,-805305074,1330464077,1412323666,1409307736,658382848,270860288,717030694,-2097086207,83886182,0,-2130705408,898570752,1339031557,1145654861,1412322127,21592,1985824,-233512192,24025168,1271791873,327680,0,8454148,89381914,1129566208,1430537544,1412318540,536892504,6139,1869157521,16850684,4315137,1280,67108864,436240640,355287,1347376336,1464158550,1415074862,-1239416832,-100663290,-862655470,16843156,3924,5,262144,-1927675775,-805304974,1230195030,776293442,5527636,62660608,318373888,-114846481,-1409220351,83886087,0,-2130705408,1297026048,1230391630]},{"sector":7,"length":512,"data":[857757509,13880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1444675584,1769173605,874540655,540029742,1666129965,1700949876,824192114,3225913,0,0,0,0,0,0,0,0,0,0,0,0,150994944,942888527,1313418806,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,257,1325924352,1447644749,5719369,0,1313689381,1162434121,942874711,1766072374,1769108595,1769239906,1142976111,1701540713,543519860,16163,0,0,0,0,0,0,0,0,0,0,1448019206,3553331,0,0,0,0,67108864,1230706432,1096045390,1413565516,1145982793,1128616521,1498566484,-81184419,942896751,-1559719114,1076507400,-418899456,721485614,-13703416,1479507456,908000568,2015176991,2016958508,238573613,1129858395,1162106188,84294,2,1230707968,1096045390,1413565516,1145982793,1128616521,1498566484,1414880349,944983113,-1559719114,1076507400,-418899456,721485614,-13703416,1479507456,908000568]},{"sector":8,"length":512,"data":[2015176991,2016958508,238573613,1129858395,1162106188,149830,1744831234,1230708541,1096045390,1413565516,1145982793,1128616521,1498566484,1094868061,1162363732,-1342161069,-1758533882,-418899342,721485614,-13703416,1479507456,908000568,2015176991,2016958508,238573613,1129858395,1162106188,215366,1828719362,1230708797,1096045390,1413565516,1145982793,1128616521,1498566484,1346460765,1414483536,-1342155963,1476956934,-418899400,721485614,-13703416,1479507456,908000568,2015176991,2016958508,238573613,1129858395,1162106188,280902,1929380610,1327825213,1447644749,542590281,540424243,1953720644,1969383794,1852795252,1936278560,1953785195,824385637,1094534486,1029263951,812136536,858862130,875968819,385955896,407831042,327937,327745,1413829391,21907796,1414725632,1398101057,1039794188,1326004312,909652822,825241646,0,0,620756992,1229868367,1464158550,909652768,1936278560,1651077748,1869182069,1766072430,1952803699,589325684,1027954225,1498566465,1748523069,825373232,909718323,20461620,1325531671,83951896,83902720,1163071232,1313428564,1392508929,1431585108,-100660141,154687549,942888527,808463926,49,0,0,1313689381,1162434121,942874711,1766072374,1769108595,1769239906,1142976111,1701540713,543519860,1163276579,1380925757,945306969,842149992,959656753,943207478,33691393,16848975,4259845]},{"sector":9,"length":512,"pattern":0,"data":[1393491973,1230263365,334,1413567571,807765,945307130,861294345,808334904,12592,0,0,1297032448,1230391630,857757509,1142961720,1920234345,1953849961,544108393,1802725700,1702130789,1446060832,1329675589,1480415570,842033208,858992946,942945849,35062072,18370306,1090520321,251659520,1414808915,85577,1096045312,206787924,1480456704,1448020280,775305267,3223600,0,0,1327824896,1447644749,542590281,540424243,1953720644,1969383794,1852795252,1936278560,1953785195,824385637,1094534486,1029263951,812136536,858862130,875968819,385955896,407831042,327937,327745,1413829391,21907796,1414725632,1398101057,1039794188,1326004312,909652822,825241646,0,0,201326592,926167865,859058227,892811316,0,363513,0,357961]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"data":[168639291,1226849083,1096045390,542394700,1953721961,1634495585,1852795252,1919120160,544501865,544370534,1229868367,1464158550,909652768,990514478,1700143163,1869181810,775168110,824193075,875572528,221329709,221985546,540752650,1953849667,980316009,1953251616,1852404325,1752440935,1713402729,543517801,544825709,1937072483,1752440933,1313415269,1279349843,1919950924,1634887535,1869881453,1818324256,1668183398,1852795252,990514478,218762555,1634288650,543649644,1936028240,1699430771,218762617,538976266,543370784,1229868367,1464158550,909652768,538970637,1663967264,1919243808,1852795251,858666016,218762544,538976266,543370784,1668048215,543518063,1948282740,1998611816,1684828783,543584032,1801678706,1819243309,1142973545,1830835023,1769237621,1802723700,560426601,168626701,538976288,1936287828,1869770784,1835102823,1819042080,544438127,543516788,1953721961,1634495585,1852795252,543584032,544829025,1629516399,1864395884,1752440934,1297031269,1230391630,168646469,538976288,540424243,1735357040,544039282,1701603686,1851859059,1935745124,1768124275,1684370529,1668244512,1852140917,1769234804,539913839,543516756,1702129257,1667327602,1869881445,538970637,1752440864,1881174889,1919381362,1763732833,1701650547,1679848814,1702259058,1851859054,1702305892,1768453152,2032167790,1998615919,543976553,1684957542,544500000,2037540214,1935762720,537529721]},{"sector":3,"length":512,"data":[1948262432,1937055855,1495281253,1830843759,1881176417,1936942450,1950563360,1010723954,1629503064,1851859060,1769218169,1948280173,2019893359,1948284009,1763730792,1635021678,1952541804,225341289,538976266,1869770784,1835102823,1867784238,1953392928,1970434661,1629516912,1818587936,1702126437,1886330980,1952543333,745434985,1701998624,1008759667,1046704965,218762542,538976266,1869108000,543452277,544567161,1702257000,1702195488,1869182067,1629516654,1953853282,1313689376,1162434121,942874711,1881156662,1935762796,1868767333,1667331182,1968382068,226061934,538976266,1818839072,1867718764,1635218534,1948280178,1852334949,1818321769,1886745376,1953656688,544497952,909128232,892870697,909258039,1864382006,2036473970,1480672800,225730848,538976266,808593440,941631798,841824053,774911030,1667585056,1970479208,1919905904,1869095028,544436853,543519329,762143032,544043061,1768120656,543385958,1701669236,1867325484,2036425838,538970637,1752440864,1735749490,1917198440,2036425833,218762542,1684948234,1818323268,168650607,1634036803,1919112050,225338725,1141509386,1919251557,1701734765,1953721929,1634495585,1852795252,1701996868,1919906915,1225395577,1917067366,1231386217,1835356787,1634039407,543517794,1953721929,1634495585,1852795252,1986622020,218762597,538976266,1968069408,1919246957,975199545,221257789,538976266,1968069408,1919246957,542978097,807419194]},{"sector":4,"length":512,"data":[538970637,1146822688,1563521641,540883488,1953721929,1634495585,1852795252,1986622020,1527385445,1852403536,224212084,538976266,543574304,1919501403,1025531185,1850301216,1818326131,1869760108,1769096301,224224630,538976266,538976288,1886343200,538996853,1701597216,543519585,1667329136,543236197,1851878498,1713384555,1634562671,1684370548,1936286752,1953785195,1852383333,1769104416,1528849782,829581636,168635997,538976288,1768189509,537529702,1126178848,1918985580,1701995347,168652389,538976288,1954047316,225996610,538976266,538976288,543370784,1667590211,1735289195,1769497888,1852404851,1868963943,1952542066,543584032,1802725732,1702130789,544106784,1986622052,1146822757,1563521641,537529646,1159733280,1700029550,1866626168,537529720,1126178848,1918985580,1701995347,168652389,538976288,1293968969,1634296933,1866888009,1952542066,543450484,1953721929,1634495585,1852795252,1986622020,537529701,538976288,1528832032,1651340622,808546917,1027219549,1953453088,1884515425,1332044641,1769096302,1226859894,1635021678,1952541804,1148088169,1702259058,538970637,1816469536,168650099,538976288,538976288,1818323268,1428186991,1699243379,1919247457,548676128,1414745673,541871169,1684366702,1870209139,1746956917,779119717,-1021301202,218762530,538976266,538976288,538976288,1397639456,1280065876,1701146144,1948283748,1852514415,1948284783,1663067496,1667330145]},{"sector":5,"length":512,"data":[544830569,1948280431,1679844712,1701540713,1936028788,538970637,538976288,538976288,1870209056,1769414773,1646292076,1937055845,543649385,1679847017,1702259058,1766087456,777859442,168626701,538976288,538976288,538976288,2032166473,1679848815,1948741231,1936291616,1869881448,1852793632,1970170228,1769414757,1948280948,1763730792,1635021678,1952541804,225341289,538976266,538976288,538976288,1869770784,1936942435,1870209068,1634541685,1919950969,544437093,1920222012,1480343148,1869881406,1769497888,1327509108,1919248500,1702062455,537529644,538976288,538976288,1881153568,1935762796,1852383333,1953654131,544104736,1919971425,1769107567,1818588257,1868963961,1952542066,543450484,1802725732,1702130789,225339680,538976266,538976288,538976288,1769104416,1528849782,829581636,168635997,538970637,538976288,1850023968,1634288740,224882540,538976266,538976288,1953449760,1348149359,1953393007,168647988,538976288,1768189509,537529702,1226842144,1314594918,1700949365,1563439474,874527776,808464432,537529648,538976288,1528832032,1769108563,1563780974,540883488,544567129,1819044215,1701146144,540221540,1851878498,1713384555,1634562671,1684370548,808858400,1768169547,1952803699,544433524,544370534,1868767329,1701605485,168650100,538976288,538976288,1920226139,912748137,1027219549,1936615712,1819042164,1869182049,1411395182,1702061416,1936286752,1953785195]},{"sector":6,"length":512,"data":[1998615397,543976553,1914725730,1919247973,543450482,1629515636,168639091,538976288,538976288,1920226139,929525353,1027219549,538976288,538979889,1229868367,1464158550,909652768,1937330976,544040308,1802725700,1702130789,1867917344,1701672300,861294368,1395537464,220812121,538976266,538976288,1951619872,1735289202,975199544,538976317,539898400,1313689376,1162434121,942874711,1951735862,1953066089,544433513,1802725700,1702130789,1867917344,1701672300,861294368,1429091896,220812116,538976266,538976288,1951619872,1735289202,975199545,538976317,539898656,1313689376,1162434121,942874711,2017796150,1819307361,1142977381,1701540713,543519860,1819235880,543518069,942888527,1480928822,168634701,538976288,538976288,1768318276,1699571054,224487780,538976266,538976288,538976288,1313689376,1162434121,942874711,2035490870,1835365491,1936278560,1953785195,540680293,942888527,1498623542,537529683,538976288,538976288,1327505440,1447644749,542590281,540424243,1818850389,1701409897,1766072435,1952803699,975201652,861294368,1429091896,168645460,538976288,538976288,538976288,1229868367,1464158550,909652768,1635271968,1701605485,1766072435,1952803699,975201652,861294368,1160656440,168643928,538976288,538976288,1147432517,1852401253,1684360549,168649065,538976288,1702063173,538970637,538976288,1716068384,1968069408,1919246957,542978097,808984636]},{"sector":7,"length":512,"data":[808464432,538970637,538976288,538976288,1398480928,1852404340,542979431,1495285050,1998615919,543976553,1684366702,1646277152,1802396012,1868963884,1952542066,543450484,1261449783,1936286752,1953785195,1713402725,1629516399,1836016416,1952803952,537529701,538976288,538976288,1528832032,1769108563,1563846510,540883488,1953721961,1634495585,1852795252,1750343726,543519589,1802725732,1702130789,1769414771,1646292076,1701978213,1920099686,1948279909,1935745135,537529658,538976288,538976288,1528832032,1769108563,1563912046,540883488,1851878466,1920226155,224882281,538976266,538976288,538976288,1951619872,1735289202,975199544,538976317,539898144,1313689376,1162434121,942874711,2035490870,1835365491,1936278560,1953785195,1445470309,1836412015,1448026213,775305267,693328211,538970637,538976288,538976288,1398480928,1852404340,542980455,538983738,775036960,1297031200,1230391630,857757509,1159738936,1886216568,544433516,1802725700,1702130789,1867917344,1701672300,861294368,1160656440,220810584,538976266,538976288,538976288,1717912608,1298493033,1634296933,538970637,538976288,538976288,538976288,1297031200,1230391630,857757509,1394619960,1702130553,1766072429,1952803699,975201652,861294368,1395537464,168645465,538976288,538976288,538976288,538976288,1229868367,1464158550,909652768,1635271968,1701605485,1766072435,1952803699,975201652,861294368]},{"sector":8,"length":512,"data":[1160656440,168643928,538976288,538976288,538976288,1147432517,1852401253,1684360549,168649065,538976288,538976288,1702063173,538970637,538976288,538976288,1398480928,1852404340,542979431,1495285050,1998615919,543976553,1684366702,1646276896,1802396012,1868963884,1952542066,543450484,1751607656,1852138528,2037672307,1936286752,1953785195,1868963941,224469106,538976266,538976288,538976288,1951619872,1735289202,975199542,1868767293,1701605485,1763730804,1635021678,1952541804,778989417,1768444960,1768169587,1952803699,1998611828,543976553,1914725730,1919247973,543450482,1629515636,168639091,538976288,538976288,538976288,1920226139,929525353,1027219549,1634484768,1951624046,1735289202,538970637,538976288,538976288,1398480928,1852404340,542980199,538983738,774971424,1297031200,1230391630,857757509,1394619960,1702130553,1766072429,1952803699,673211764,1970040662,1327523181,1447644749,777471305,691419187,538970637,538976288,538976288,1398480928,1852404340,542980455,1109409082,1802396012,1769108563,168650606,538976288,538976288,538976288,1768318276,1699571054,224487780,538976266,538976288,538976288,538976288,1313689376,1162434121,942874711,2035490870,1835365491,1936278560,1953785195,540680293,1229868367,1464158550,909652782,538970637,538976288,538976288,1850023968,1717912676,1298493033,1634296933,538970637,538976288,1850023968,224815460]},{"sector":9,"length":512,"data":[538976266,1684948256,168650345,538976288,1528849993,1651340622,1564045925,807419168,538970637,538976288,1766072352,1735355489,1700354848,1316114291,542978415,1214608213,1701077349,-1272831886,1701597216,543519585,1702129486,539897390,168633027,538970637,538976288,538976288,1398480928,1852404340,224212327,538976266,538976288,538976288,1951619872,1735289202,168647990,538976288,538976288,538976288,1528850734,1769108563,1563912046,538970637,538976288,538976288,1764630560,1951619872,1735289202,168647992,538976288,538976288,538976288,1528850734,1769108563,1564043118,168626701,538976288,538976288,538976288,2032166473,1847620975,543450469,1701670771,1835627552,1869881445,1919903264,544498029,544695662,1802725732,1702130789,1881156723,1935762796,1919950949,544437093,540954172,224685665,538976266,538976288,538976288,1397639456,1280065876,1818851104,1702109292,1919905901,1818849889,2019893369,1948284009,1329864815,1411395155,745432424,1701345056,1752440942,1818632293,1768976495,1629516645,168650098,538976288,538976288,538976288,1684104562,1869881465,1702065440,1870209068,1633886325,1969889390,1696625779,1919251566,1480925728,539120713,1663070068,1769238127,778401134,168626701,538976288,538976288,538976288,2032168772,1746957679,543520353,543516788,1970365810,1684370025,1836412448,544367970,1646290543,1802396012,1868963884,1952542066,543450484]}]],[[{"sector":1,"length":512,"data":[1802725732,1702130789,539587368,1746957409,1063546465,168626701,538976288,538976288,1147432517,1869373801,537529703,1159733280,1718183022,538970637,1314594848,1700949365,542980466,824196410,538970637,1716068384,1700354848,1316114291,542978415,223223869,538976266,538976288,1769489696,1148146804,168645455,538976288,538976288,1936021851,1867412047,975199537,223944765,538976266,538976288,1953449760,1348149359,1953393007,168647988,538976288,1768189509,537529702,1226842144,1699553382,1231120740,1886209395,1226865012,1635021678,1952541804,1148088169,1702259058,538970637,538976288,993730592,544171040,1752461166,224882281,538976266,1936475424,537529701,538976288,1142956064,1869373801,1499144295,1917809509,1563520846,1702057248,1684104520,572551781,1631789238,1869182069,-954195602,218762530,538976266,538976288,538976288,1769096224,1528849782,829581636,1868832861,1847620453,1663071343,1635020399,1629515369,1634492960,1679846254,1701540713,778400884,168626701,538976288,538976288,538976288,1414745673,541871169,1702129257,544433262,1881173876,1701011820,1937008928,1818846752,1864397669,1886593134,1718182757,1679844201,1701540713,1936028788,537529646,538976288,538976288,1411391520,1679844712,1936286565,544108393,1881173876,1701011820,1730175264,1852143209,1818846752,1852776549,1931501856,1768121712,543385958,1802725732,1702130789,225667360,538976266]},{"sector":2,"length":512,"data":[538976288,538976288,1935761952,1864393829,1752440942,1869881445,543973748,1634754915,2037672291,543584032,543516788,1869440370,1818386806,1701650533,543254884,1948282473,168650088,538976288,538976288,538976288,1953721961,1634495585,1852795252,1769104416,539911542,1948280393,1701995880,544434464,544501614,1970237029,1914726503,544042863,1948282479,168650088,538976288,538976288,538976288,1802725732,1702130789,544106784,1986622052,1146822757,1563521641,544175136,1684828008,1819042080,1701344288,1818846752,1226863461,1096045390,1998605388,1937010273,538970637,538976288,538976288,1869881376,1953853472,1701344288,1948280178,544105832,544567161,544825709,1868787301,1702129269,1919950962,1701601903,1679848301,1852404341,1752440935,537529701,538976288,538976288,1763713056,1635021678,1952541804,544108393,1668248176,779318117,168626701,538976288,538976288,538976288,1953394499,1702194793,1953068832,1752440936,1852383333,1818326131,1769234796,1881173615,1701015410,1629516659,1635219822,168640377,538970637,538976288,1850023968,1634288740,224882540,538976266,538976288,543574304,1936021851,1867412047,1025531185,168644128,538976288,538976288,538976288,1867280211,168650606,538976288,538976288,1768189509,537529702,1159733280,1718183022,538970637,1716068384,1766087456,542978418,1230708797,1635021678,1917217900,1917087087,1566930537,538970637,538976288]},{"sector":3,"length":512,"data":[1867522080,544241008,1817190432,1702060389,1885696544,1701011820,1701344288,1313689376,1162434121,942874711,1766072374,1769108595,1769239906,1142976111,1701540713,543519860,1763717411,1919164526,543520361,1919501403,221142321,538976266,1684948256,168650345,1702063173,538976288,538976288,538976288,1713388347,1886416748,1919164537,224753257,538976266,1968069408,1919246957,542978097,1176517946,1399154034,1701011824,1917087311,543520361,1953721929,1634495585,1852795252,1986622020,1158286693,1718183022,538976288,538976288,991961120,1768300603,543450488,1986622052,218762597,1702187274,1701603654,1970238023,221323376,1968069386,1919246957,975199537,1968250941,2053722981,538976357,538976288,538976288,538976288,538976288,540752672,540424243,1667592307,1667851881,1818846752,168653669,1968270933,1818838629,1869760357,824209525,1968245261,1818838629,1869760357,840986741,1314589197,1700949365,542978674,1361067322,1767073141,538994042,538976288,538976288,538976288,538976288,993730592,1769107488,2037539181,542527264,1701603686,1426722163,1702187374,1701603654,1970238023,221388912,1702187274,1701603654,1970238023,221454448,1968069386,1919246957,975199539,1968250941,2053722981,538976357,538976288,538976288,538976288,538976288,540752672,1965053519,1768712564,1713404276,1936026729,1851066893,1181054289,1197829225,1886744434,168637216,1181054289,1197829225]},{"sector":4,"length":512,"data":[1886744434,168637472,1836404315,879912290,1027219549,1702187296,1702521171,538976288,538976288,538976288,538976288,538976288,773864251,542392642,1701603686,1426722163,1702187374,1701603654,1970238023,221519984,1702187274,1701603654,1970238023,221585520,1968069386,1919246957,975199541,1968250941,2053722981,538976357,538976288,538976288,538976288,538976288,540752672,544239681,1702129486,1426722163,1702187374,1701603654,1970238023,221585520,1968069386,1919246957,975199542,1767055421,1716479354,1970238023,540090480,540221490,540352564,1527385398,1769108563,1563518830,540883488,1701602643,168653923,1920226139,845639273,1027219549,1818579744,225731429,1951619850,1735289202,975199539,1699946557,1952671084,1398475277,1852404340,542979175,1394621754,1667591269,1527385460,1769108563,1563780974,540883488,1701602643,168653923,1836404315,930243938,1027219549,538980384,538976288,538976288,538976288,538976288,538976288,538976288,1663056699,1953396079,543584032,1970238055,1931506544,1667591269,224683380,1968069386,1919246957,975199544,540024893,538976288,538976288,538976288,538976288,538976288,538976288,540752672,1634886515,543712116,1769103734,1701601889,1527385459,1651340622,1564045925,540883488,1399158097,543521385,538976288,538976288,538976288,538976288,991961120,2036473915,1663067508,1953396079,543584032,1701602675,1684370531,1818846752]},{"sector":5,"length":512,"data":[168653669,1836404315,829580642,975199537,1314594877,1700949365,1563439474,1528835360,1651340622,1564045925,538976288,1646279483,1936028793,1701996064,1717641317,544367988,1953721961,1634495585,1852795252,1699940877,1886737268,1953656688,1868983881,1952542066,225341289,1701597194,543519585,1819042147,1701344288,1853182752,1210087790,543976553,1952870227,1701994871,1667593248,1667853928,1931504737,1869639797,1746957426,1768715375,1629513070,841490548,539571760,758592824,909522482,1208618286,1936881007,543584032,1919250543,1869182049,1918967918,1631068261,1882533229,1632641133,1768319331,1769218147,539780461,1684959053,1177385313,1633970546,168636025,1399090757,1968403557,1919905904,1718503796,1634562671,1852795252,168626701,1768902747,1563522158,1716062733,1684360480,1866686825,544501365,221388860,538976266,1952797472,1953787714,1766616431,1867801966,1954103840,1176531813,979723634,1968069408,1919246957,542978097,1109404973,1936028793,1818579744,1702126437,1528838756,1651340622,1564045925,539831584,544695630,1702132034,1917198451,540697957,1836404315,829580642,168647985,1768189509,1191841126,1699574885,1749251438,1701013871,1702057248,1684104520,572551781,1414745673,541871169,1852399949,1852132640,168632949,538976288,1970233921,1297031284,1230391630,857757509,168638008,538976288,538976288,1766072379,1634496627,1752375417,544502383,1954047348,1936024608]},{"sector":6,"length":512,"data":[1651077731,543649385,543516788,1229868367,1464158550,909652768,1667330080,1701273963,538970637,1850286112,1818326131,1984241772,1954116197,1735289192,538970637,538976288,540745760,1953721929,1936485473,1701344288,1953391904,543519337,1229868367,1464158550,909652768,1667330080,1701273963,1684955424,1769497888,221148020,538976266,538976288,1411398432,544434536,1769238639,1998614127,543976553,1634038371,1931502964,1919252069,1931504737,1768186485,1952671090,1701409391,1851859059,1701716068,544433253,1970233953,537529716,538976288,991961120,1968069408,1919246957,1646288182,1936028793,543584032,1701147238,1634759456,1864394083,1752440942,1852383333,1818326131,1769234796,1679847023,1702259058,537529646,1528832032,1769108563,1563518830,909652768,1701860128,1768319331,1766203491,225666412,538976266,538976288,1411398432,544434536,1819044215,1735357472,543517799,1953721961,1634495585,1852795252,543584032,543516788,540424243,1869440365,1830844786,1734438497,1629516389,168649838,538976288,538976288,1701978171,1702125932,1919950948,1634887535,1629516653,1679844462,1836409711,1635020389,1852795252,1750343726,1864397673,1869182064,1701716078,544433253,1970233953,537529716,538976288,991961120,1968069408,1919246957,1646288177,1936028793,543584032,1701147238,1634759456,1864394083,1752440942,1852383333,1818326131,1769234796,1679847023,1702259058,537529646,1528832032]},{"sector":7,"length":512,"data":[1769108563,1563584366,1769099296,2037539181,1819626784,1635019124,1852402547,1766203495,225666412,538976266,538976288,1411398432,544434536,1819044215,1735357472,543517799,1953721961,1634495585,1852795252,543584032,543516788,1835627120,544830049,1953265005,1935766633,1735289195,538970637,538976288,540745760,1952870259,1701994871,1818846752,539915109,1936287828,1953525536,544108393,1684366702,1650532467,225736047,538976266,538976288,1528838944,1651340622,1563587173,1954112032,1864397669,1919295590,1931502949,1701011824,544108320,543516788,1953721961,1634495585,1852795252,1769104416,221144438,538976266,1951619872,1735289202,1293966643,1769237621,1802723700,543649385,1818850389,1701409897,537529715,538976288,991961120,1768444960,1769414771,1948281964,1818716015,1852383333,1818326131,1769234796,1864396399,1702043750,1634887030,1868767340,1851878765,1768693860,1965057390,1768712564,168655220,538976288,538976288,1919950907,1634887535,1629516653,1629512814,1668248435,1702125929,1868832868,1701672291,1952543854,778989417,1768444960,1886330995,1852795252,1701146144,1629516644,1953853282,538970637,538976288,540745760,1836404315,863135074,2036473949,544433524,1713399407,543516018,1667330163,1852776549,1701344288,1936615712,1819042164,1869182049,1919164526,778401385,538970637,1398480928,1852404340,542979175,1835104325,543517808,1413562926,1818838560,168653669]},{"sector":8,"length":512,"data":[538976288,538976288,1750343739,1998615401,543976553,1734831988,1763730796,1635021678,1952541804,544108393,1931503215,1919252069,773876833,542392642,1701603686,1869881459,1818585120,1870209136,537529717,538976288,991961120,1952802592,1635021600,1684370546,1769174304,1327523694,1447644749,660030793,1886330995,1852795252,1663069281,1634561391,1814062190,543518313,1702129257,1667327602,168636005,538976288,538976288,1750343739,543519589,1668571490,1768300648,544433516,1701536116,544240928,1970233953,1314594932,1700949365,542979186,1702132066,537529715,538976288,991961120,543584032,1667330163,1852776549,1701344288,1936615712,1819042164,1869182049,1919164526,778401385,538970637,1398480928,1852404340,542979431,1229868367,1464158550,1886404896,1633905004,1852795252,1953451552,168653669,538976288,538976288,1750343739,1998615401,543976553,1734831988,1763730796,1635021678,1952541804,544108393,1981834863,1869181537,1948283765,544503909,1701603686,1701060723,1852402785,537529703,538976288,991961120,1953068832,1684086888,1668178294,1864393829,1634887024,1852795252,543584032,543516788,1953265005,1935766633,1735289195,1718580000,1918990196,1411395173,1702061416,538970637,538976288,540745760,1954047348,1818846752,1998615397,543976553,1701536116,544240928,1970233953,1314594932,1700949365,542979442,1702132066,537529715,538976288,991961120,543584032,1667330163]},{"sector":9,"length":512,"data":[1852776549,1701344288,1936615712,1819042164,1869182049,1919164526,778401385,538970637,1378361376,1850288485,1818326131,1884495980,1718182757,1176527721,1936026729,1819168544,537529721,538976288,991961120,1768444960,1886330995,1852795252,1819042080,544438127,544567161,1931505524,1768121712,1763735910,1986618478,1635083369,1768300652,544433516,673214324,1764320626,1635021678,221146220,538976266,1936607520,1819042164,1819033888,1818579744,1702126437,1766203492,544433516,543452769,1953069125,538970637,538976288,540745760,1668181827,1701082476,1936615712,1819042164,1869182049,1851859054,1701978212,1852994932,544175136,223563588,1684948234,1299473735,1131769445,1667854184,218762597,540752650,538978848,1768444960,1936269427,1701344288,1685021472,1752440933,1746957409,1818521185,1696625509,543712097,1948280431,1830839656,544566885,1769238639,544435823,1987011169,168636005,538983227,538976288,543516756,1769169250,1684611171,1763729765,1869881459,1801547040,1970479205,1948280178,544498024,1746953591,543520353,1970237029,1931503719,1701011824,1717922848,990514548,538976315,1864376352,1752440942,1635000421,1952802674,1769104416,1948280182,1869095023,1948279916,1713399144,543517801,1970238055,1851859056,1718165604,745501472,1634231072,224749422,540752650,538976288,1937008928,1635021600,544437620,1948282479,1830839656,745893477,1702195488,1948280181,1713399144]}],[{"sector":1,"length":512,"data":[543517801,1970238055,1851859056,1752440932,1629515365,1937074788,990514548,538976315,1948262432,572548456,1702132066,1701716083,1684366437,1919903264,1936615712,1819042164,1869182049,1931485806,1970561396,1768693875,539911534,1852139607,1819042080,993724941,538976288,1701060640,1701996915,1919361124,1936749935,1986095136,1700929637,1931505253,1667591269,543450484,1948285282,1965057384,779249011,1701336096,1769489696,1970229876,1701734772,990514547,538976315,1881153568,543387506,1763734377,1802466926,1948279909,1667309679,1818326388,1663072620,544829551,543516788,1701603686,1851859059,1869881444,1685024032,226059881,540752650,538976288,1313817376,776423750,743659859,1668572448,990514478,1225395515,1935754094,1749229669,1701013871,225667360,538976266,976305440,1701593888,1666413153,1852138866,538970637,538976288,1766072352,1735355489,1701990432,1262580595,1428191589,1699243379,1919247457,548676128,1970233921,1297031284,1230391630,857757509,-1021299144,218762530,538976266,538976288,538976288,1313689376,1162434121,942874711,1868767286,1936290670,1864397684,1752440934,1297031269,1230391630,1830836037,1769237621,1802723700,543649385,1952870259,1701994871,543236140,1869440365,168655218,538976288,538976288,538976288,1634623853,544367975,544370534,942878776,1851858998,1634476132,544367988,1702060386,2037588068,1835365491,1629498483,1847616622,1919249781]},{"sector":2,"length":512,"data":[544437615,1886152040,225211750,538976266,538976288,538976288,1769239840,1769236844,539915109,1635131457,1952803186,1718558841,1635280160,1701605485,1952539168,1713399907,1936026729,1684955424,2019914784,1768300660,544433516,1668508004,1769173877,168650606,538976288,538976288,538976288,1701998445,1986289952,1701015137,1935745124,1952671088,1718558835,1701344288,1819634976,1635019124,1852402547,1852121191,1869769078,1852140910,1918967924,1818304613,168652659,538976288,538976288,538976288,1818455657,1684366453,218762542,538976266,538976288,538976288,1970231584,1986095136,1752440933,1886330981,1852795252,543584032,1953721961,1768713313,1629513582,1864395884,1634738290,1864397938,1297031270,1230391630,857757509,539899448,168652628,538976288,538976288,538976288,1718773104,544043631,1634738273,1634301042,1852383340,1818326131,1769234796,539782767,1886218611,572553580,1701602643,539128931,1936681076,1919361125,1936749935,543584032,1701603686,537529715,538976288,538976288,1948262432,544498024,544567161,1752394103,544175136,1953721961,543976545,1836020326,1701344288,1397639456,1280065876,1767992608,1701650542,539915630,1663070036,1701015137,1752440940,537529701,538976288,538976288,1763713056,1635021678,1952541804,544108393,1629513327,1699947040,1952671084,539124837,1970238055,1718558832,1818846752,539784037,1953723754,1818587936,544498533,1952540788]},{"sector":3,"length":512,"data":[1835103008,537529701,538976288,538976288,1864376352,1869182064,1734418542,778987873,544166944,1970561889,2037148769,1936615712,1819042164,1701344288,1699947040,1952671084,539124837,1701603686,1751326835,1702063983,1701344288,538970637,538976288,538976288,1868701728,1836020852,1852140832,1886330997,1852795252,218762542,538976266,538976288,538976288,1919895072,858798112,1629500984,941646958,909653040,1937339168,1936549236,543236140,1768843629,543973741,1953721961,1634495585,1852795252,1970239264,1763730540,1970037614,1948280164,168650088,538976288,538976288,538976288,909652770,1701860128,1768319331,1766203491,577987948,1684955424,1701344288,1917854240,1918987625,1967988857,1953068140,1768649569,1176528750,1936026729,1327509026,544828526,224749684,538976266,538976288,538976288,1952541728,544367988,544499059,1713399407,1936026729,1701146144,1700929636,1936615712,1819042164,1864393829,808984686,540424242,543452769,1819435365,544367977,1751343469,1936027241,218762542,538976266,538976288,1684948256,1818323268,168650607,538976288,538976288,1818323268,1344300911,1936942450,2036681537,1702057248,1684104520,572551781,1648435380,544503151,1229868367,1464158550,909652768,220381984,537529610,538976288,538976288,1394614304,1819635560,1870209124,1634214005,1897948534,1953719669,1936617321,1868718368,1327527029,1447644749,542590281,741750835,1701605408]},{"sector":4,"length":512,"data":[543519585,1953394531,544498529,1852732755,537529721,538976288,538976288,1210064928,543976553,1952870227,1701994871,1667593248,1667853928,1931504737,1869639797,1629516914,841490548,539571760,758592824,909522482,1700012078,1931503715,1869639797,168653938,538976288,538976288,538976288,1920298856,1918967923,1631068261,1882533229,1632641133,1768319331,1769218147,539780461,1684959053,1948285281,1970238056,1176528999,1633970546,168636025,538970637,538976288,538976288,1868111904,1634541685,1818304633,1713401715,543452777,543516788,1229868367,1464158550,1667593248,1667853928,1931504737,1869639797,1663071346,1701211759,1668179314,1869881445,543515168,537529697,538976288,538976288,1663049760,1702260335,1852139886,1635197044,1718558841,1836016416,1768846701,1769234787,1998612334,543716457,539915125,1936287828,1852793632,1701995878,543515502,1663071081,1769108065,168649829,538976288,538976288,538976288,1629518178,1836412448,544367970,1109419631,1948275522,1885695077,1701736296,1952804384,1802661751,1851859059,1919885412,1852401513,1936028769,1869768224,1752440941,537529701,538976288,538976288,1461723168,1210082661,1702063983,1396851232,544106784,1953391947,1096228908,544497952,909128232,892870697,942681392,539900208,543516756,543515991,1936682824,1634541669,537529721,538976288,538976288,1746935840,543520353,1701670771,1684300064,1869182057,543973742]},{"sector":5,"length":512,"data":[1229868367,1464158550,1818587680,1684370529,1818846752,539915109,1701080910,1936288800,1713402740,168653423,538976288,538976288,538976288,1751343461,543584032,543516788,1886418291,1769239151,1847617390,1870099557,544435058,543519329,1869835361,1635148064,1650551913,1948280172,1701995880,218762542,538976266,538976288,1684948256,1818323268,168650607,538976288,538976288,1634036803,1919112050,225338725,538976266,976370976,1968069408,1919246957,975199545,1314594877,1700949365,542979698,540752672,544499015,1702521171,1819033888,1818846752,168653669,538976288,538976288,1920226139,963079785,1027219549,1919898400,539916658,1684366670,1968069408,1919246957,1830837561,543519343,1702132066,1919295603,1864394085,1919164526,543520361,1936607579,1819042164,1869182049,1769096302,542991734,544370534,543976545,1701603686,168636019,538976288,538976288,1444966212,1718186597,1769096313,1884513654,224748385,538976266,538976288,543574304,1836404315,963798370,540942429,537529648,538976288,538976288,1528832032,1769108563,1563518830,540883488,1699964228,1952671084,538970637,538976288,538976288,1398480928,1852404340,542978663,1142963514,1818579813,225731429,538976266,538976288,538976288,1951619872,1735289202,975199539,1698963517,1701602643,168653923,538976288,538976288,538976288,1920226139,879193705,1027219549,1399145504,1667591269,537529716,538976288]},{"sector":6,"length":512,"data":[538976288,1528832032,1769108563,1563780974,540883488,1699964228,1952671084,538970637,538976288,538976288,1314594848,1700949365,542979954,891305274,538970637,538976288,538976288,1716068384,1684360480,1866686825,544501365,221388860,538976266,538976288,538976288,538976288,1702187296,1181510721,1936026729,538970637,538976288,538976288,1816469536,168650099,538976288,538976288,538976288,538976288,1293968969,1634296933,1853189955,540942452,537529650,538976288,538976288,538976288,538976288,1361059872,1766221173,1917281644,544241007,1850679345,1699573588,543254884,537529649,538976288,538976288,538976288,538976288,1361059872,1766221173,1917281644,544241007,1850679346,1699573588,543254884,537529649,538976288,538976288,538976288,538976288,1361059872,1766221173,1917281644,544241007,1869881395,1850301216,1818326131,1769234796,1766092399,1952671090,1568240239,1416515360,1684360559,840982889,538970637,538976288,538976288,538976288,538976288,1968250912,1818838629,1869760357,874541173,1416515360,1684360559,857760105,538970637,538976288,538976288,538976288,538976288,1968250912,1818838629,1869760357,891318389,1416515360,1684360559,857760105,538970637,538976288,538976288,538976288,1816469536,168650099,538976288,538976288,538976288,538976288,538976288,1181054289,1197829225,1886744434,1327509792,1299141742,1634296933,168636704,538976288]},{"sector":7,"length":512,"data":[538976288,538976288,538976288,538976288,1181054289,1197829225,1886744434,1327510048,1299141742,1634296933,168636704,538976288,538976288,538976288,538976288,538976288,1181054289,1197829225,1886744434,1327510304,1299141742,1634296933,168636704,538976288,538976288,538976288,538976288,538976288,1181054289,1197829225,1886744434,1327510560,1299141742,1634296933,168636960,538976288,538976288,538976288,538976288,538976288,1181054289,1197829225,1886744434,1327510816,1299141742,1634296933,168636960,538976288,538976288,538976288,538976288,1768189509,537529702,538976288,538976288,1159733280,1718183022,538970637,538976288,538976288,1314594848,1700949365,542980466,540883488,1399158097,543521385,538976288,538976288,993730592,1954112032,1868767333,544501365,1931503215,1667591269,543450484,1701603686,537529715,538976288,538976288,1528832032,1651340622,808546917,1027219549,1701987872,1634751333,1850697059,1986622020,1850286181,1818326131,1769234796,1917087343,224753257,538976266,538976288,538976288,1968069408,1919246957,542978353,1528839482,1651340622,808546917,539828317,1836404315,963798370,538976349,540752672,1702132066,1919295603,1629513061,1919251558,1936615712,1819042164,1869182049,537529710,538976288,538976288,1226842144,1699553382,1130457444,1953396079,840973344,538970637,538976288,538976288,538976288,1699946528,1953448564,1282240372]},{"sector":8,"length":512,"data":[1415933545,2034376815,544433524,1701147206,1314594874,1700949365,1563439474,539831584,1702132034,1699946611,1952671084,540697701,1836404315,963798370,757932125,2003127840,1954103840,1176531813,979723634,1968069408,1919246957,224211249,538976266,538976288,538976288,1684948256,168650345,538976288,538976288,538976288,1159753540,1383360888,1769239919,225666414,538976266,538976288,1684948256,168650313,538976288,540685117,1528849993,1769108563,1563518830,1142963488,1818588005,544498533,857750331,1394619960,1768121712,543385958,1701603654,537529715,538976288,538976288,1528832032,1769108563,1563518830,540883488,1701602643,168653923,538976288,538976288,538976288,1968270933,1818838629,1869760357,824209525,538970637,538976288,538976288,1698963488,1835364963,1316253285,1700949365,1314594930,1700949365,224212850,538976266,538976288,538976288,1953449760,1348149359,1953393007,168647986,538976288,538976288,1231318597,537529702,538976288,1528832032,1651340622,1564045925,540883488,1836404315,829580642,991961181,1699160123,1767055476,1864394106,1850286182,1818326131,1769234796,168652399,538976288,538976288,1920226139,963079785,1027219549,1919898400,539916658,1684366670,1968069408,1919246957,1830837561,543519343,1702132066,1919295603,1864394085,1919164526,543520361,1936607579,1819042164,1869182049,1769096302,542991734,544370534,540424243,1701603686]},{"sector":9,"length":512,"data":[168636019,538976288,538976288,1444966212,1718186597,1769096313,1884513654,224748385,538976266,538976288,543574304,1836404315,963798370,540942429,537529648,538976288,538976288,1528832032,1769108563,1563518830,540883488,1699964228,1952671084,538970637,538976288,538976288,1968250912,1818838629,1869760357,824209525,1416515360,1684360559,824205673,538970637,538976288,538976288,1850286112,1835364963,1316253285,1700949365,1314594930,1700949365,224212850,538976266,538976288,1684948256,168650313,538976288,540685373,1528849993,1769108563,1563584366,1142963488,1818588005,544498533,1344289595,1634560370,1293973874,1769237621,1802723700,543649385,1701603686,537529715,538976288,538976288,1528832032,1769108563,1563584366,540883488,1701602643,168653923,538976288,538976288,538976288,1968270933,1818838629,1869760357,840986741,538970637,538976288,538976288,1698963488,1835364963,1316253285,1700949365,1314594930,1700949365,224212850,538976266,538976288,538976288,1953449760,1348149359,1953393007,168647986,538976288,538976288,1231318597,537529702,538976288,1528832032,1651340622,1564045925,540883488,1836404315,846357858,991961181,1699160123,1767055476,1864394106,1850286182,1818326131,1769234796,168652399,538976288,538976288,1920226139,963079785,1027219549,1919898400,539916658,1684366670,1968069408,1919246957,1830837561,543519343,1702132066,1919295603]}]],[[{"sector":1,"length":512,"data":[1864394085,1919164526,543520361,1936607579,1819042164,1869182049,1769096302,542991734,1835627120,544830049,1701603686,168636019,538976288,538976288,1444966212,1718186597,1769096313,1884513654,224748385,538976266,538976288,543574304,1836404315,963798370,540942429,537529648,538976288,538976288,1528832032,1769108563,1563584366,540883488,1699964228,1952671084,538970637,538976288,538976288,1968250912,1818838629,1869760357,840986741,1416515360,1684360559,824205673,538970637,538976288,538976288,1850286112,1835364963,1316253285,1700949365,1314594930,1700949365,224212850,538976266,538976288,1684948256,168650313,538976288,540685629,1528849993,1769108563,1563649902,1142963488,1818588005,544498533,1327512379,1447644749,542590281,1818850389,1701409897,537529715,538976288,538976288,1528832032,1769108563,1563649902,540883488,1701602643,168653923,538976288,538976288,538976288,1968270933,1818838629,1869760357,857763957,538970637,538976288,538976288,1698963488,1835364963,1316253285,1700949365,1314594930,1700949365,224212850,538976266,538976288,538976288,1953449760,1348149359,1953393007,168647986,538976288,538976288,1231318597,537529702,538976288,1528832032,1651340622,1564045925,540883488,1836404315,863135074,991961181,1699160123,1767055476,1864394106,1850286182,1818326131,1769234796,168652399,538976288,538976288,1920226139,963079785,1027219549]},{"sector":2,"length":512,"data":[1919898400,539916658,1684366670,1968069408,1919246957,1830837561,543519343,1702132066,1919295603,1864394085,1919164526,543520361,1936607579,1819042164,1869182049,1769096302,542991734,544370534,1818850421,1701409897,168636019,538976288,538976288,1444966212,1718186597,1769096313,1884513654,224748385,538976266,538976288,543574304,1836404315,963798370,540942429,537529648,538976288,538976288,1528832032,1769108563,1563649902,540883488,1699964228,1952671084,538970637,538976288,538976288,1716068384,1684360480,1866686825,544501365,840973628,538970637,538976288,538976288,538976288,1968250912,1818838629,1869760357,857763957,1850679328,1699573588,543254884,537529649,538976288,538976288,1159733280,224752492,538976266,538976288,538976288,538976288,1702187296,1701603654,1970238023,540221552,1528852340,1953721929,1634495585,1852795252,1701996868,1919906915,1327521145,1299141742,1634296933,168636960,538976288,538976288,538976288,1768189509,537529702,538976288,538976288,1226842144,1701995374,1953391981,1651340622,1528853093,1651340622,1563914853,538970637,538976288,1850023968,224807268,538976266,976633120,543574304,1920226139,879193705,540876893,1702061380,1952671084,540752672,1413562926,1818846752,168653669,538976288,538976288,538976288,1920226139,879193705,1027219549,1818579744,225731429,538976266,538976288,538976288,1366185248,1766221173]},{"sector":3,"length":512,"data":[1917281644,544241007,537529652,538976288,538976288,1142956064,1701995365,1953391981,1651340622,1528853093,1651340622,1563914853,538970637,538976288,538976288,1866932256,1528852340,1852403536,224211572,538976266,538976288,1684948256,168650313,538976288,538976288,1836404315,963798370,1027219549,1968069408,1919246957,538991924,1193294651,1394635877,543521385,1226860143,1635021678,1952541804,225341289,538976266,538976288,1951619872,1735289202,975199545,1867718717,779711090,1701137952,1314594916,1700949365,542980466,1701998445,1954112032,1713402725,543516018,1679847023,1702259058,1850301216,1818326131,1769234796,1917087343,1566930537,1919903264,1094856224,1768300628,779314540,538970637,538976288,1866735648,1919243808,1148806761,1702259058,1667330131,537529701,538976288,1226842144,1314594918,1700949365,542980466,221257790,538976266,538976288,538976288,1951619872,1735289202,975199540,1698963517,1701602643,168653923,538976288,538976288,538976288,1293968969,1634296933,1853189955,1027350644,168636704,538976288,538976288,538976288,538976288,1181054289,1197829225,1886744434,1327510560,1299141742,1634296933,168636704,538976288,538976288,538976288,1702063173,538970637,538976288,538976288,538976288,1716068384,1684360480,1866686825,544501365,221388861,538976266,538976288,538976288,538976288,538976288,1702187296,1701603654,1970238023,540287088]},{"sector":4,"length":512,"data":[1867804239,1768187213,221388897,538976266,538976288,538976288,538976288,1936475424,537529701,538976288,538976288,538976288,538976288,1361059872,1766221173,1917281644,544241007,1850679348,1699573588,543254884,537529651,538976288,538976288,538976288,1159733280,1718183022,538970637,538976288,538976288,1850023968,224815460,538976266,538976288,538976288,1668172064,1701668210,1968075886,1919246957,1968069408,1919246957,168647991,538976288,538976288,1231318597,537529702,1025515552,1226848823,1398480998,1852404340,542979431,1698963517,1701602675,991982691,1346445371,1330520144,223561044,538976266,538976288,538976288,1951619872,1735289202,975199541,1699946557,1952671084,538970637,538976288,538976288,1851072544,1181054289,1197829225,1886744434,168637728,538976288,538976288,538976288,1919116612,1852140901,1836404340,544367970,1836404315,930243938,537529693,538976288,538976288,1193287712,544175215,1768902747,1563587694,538970637,538976288,1850023968,224807268,538976266,538976288,1968069408,1919246957,975199545,1314594877,1700949365,542979442,540752672,544499015,1702521171,543584032,1953721929,1634495585,1852795252,538970637,538976288,1398480928,1852404340,542980455,1394621754,2037543535,1699618862,1528849509,1651340622,1564045925,1919905056,2036473957,544433524,1701147238,544108320,1986622052,1230708837,1635021678,1952541804,1148088169]},{"sector":5,"length":512,"data":[1702259058,1868963933,1883316338,1867391088,779314548,538970637,538976288,1866735648,1919243808,1148806761,1702259058,1667330131,537529701,538976288,1226842144,1314594918,1700949365,542980466,221257790,538976266,538976288,538976288,1951619872,1735289202,975199541,1698963517,1701602643,168653923,538976288,538976288,538976288,1293968969,1634296933,1853189955,1027350644,168636704,538976288,538976288,538976288,538976288,1181054289,1197829225,1886744434,1327510560,1299141742,1634296933,168636704,538976288,538976288,538976288,1702063173,538970637,538976288,538976288,538976288,1716068384,1684360480,1866686825,544501365,221388861,538976266,538976288,538976288,538976288,538976288,1702187296,1701603654,1970238023,540287088,1867804239,1768187213,221388897,538976266,538976288,538976288,538976288,1936475424,537529701,538976288,538976288,538976288,538976288,1361059872,1766221173,1917281644,544241007,1850679348,1699573588,543254884,537529651,538976288,538976288,538976288,1159733280,1718183022,538970637,538976288,538976288,1850023968,224815460,538976266,538976288,538976288,1668172064,1701668210,1968075886,1919246957,1968069408,1919246957,168647991,538976288,538976288,1231318597,537529702,1025515552,1142962744,1699160175,1836012404,1818838629,537529701,538976288,1193287712,544175215,1768902747,1563587694,538970637,960307232,1866735674]},{"sector":6,"length":512,"data":[1769489696,1970229876,1701734772,1158286707,1850303598,1702060355,168626701,168639291,1176517435,1920296809,1970217061,1752440948,1886593125,543515489,1684370293,1701716012,1684366437,1684955424,1635148064,1650551913,1864394092,1752440942,1635000421,1952802674,1769104416,168650102,168639291,1768902747,1563587694,1716062733,1684360480,1866686825,544501365,221388860,538976266,1968069408,1919246957,538991929,1361067322,1767073141,538994042,538976288,538976288,540752672,1702132066,1970234144,1864397934,1702043750,1952671084,1713398885,1936026729,538970637,1314594848,1700949365,1563439474,540883488,1701147206,1667330131,1148079973,1702259058,1936607520,1819042164,1869182049,1769096302,168650102,538976288,1836404315,829580642,975199537,1314594877,1700949365,1563439474,1528835360,1651340622,1564045925,538976288,1646279483,1936028793,1701996064,1717641317,544367988,1953721961,1634495585,1852795252,1850018317,224807268,1953449738,1348149359,1953393007,168647985,993724941,1919243808,544826985,1952540788,543520544,1702257000,1869505824,543713141,1667330163,1868963941,543236210,1702259047,1919361134,544241007,1713399407,1936026729,1919887392,1818846752,1919361125,1936749935,168635945,168639291,1668248144,1920296037,1700143205,2036754802,1986622020,1634751333,168650083,538976288,1293968969,1634296933,1853189955,540811380,537529650,538976288,1226842144,1146822758]},{"sector":7,"length":512,"data":[1563521641,540949536,1936607579,1819042164,1836020294,1986622020,168648037,538976288,538976288,538976288,1528849993,1651340622,1564045925,1528839712,1651340622,808546917,538976349,1226849083,1869488230,1852121204,1751610735,1869574688,1852776557,1769104416,168650102,538976288,538976288,538976288,538976288,1836404315,947021154,1027219549,1968069408,1919246957,168647993,538976288,538976288,538976288,538976288,1836404315,963798370,1027219549,1968069408,1919246957,757095736,1968069408,1919246957,542978097,168639291,538976288,538976288,538976288,538976288,1433431888,1398481008,1852404340,224213351,538976266,538976288,538976288,538976288,1968069408,1919246957,975199545,221257789,538976266,538976288,538976288,1684948256,168650313,538976288,538976288,1768189509,537529702,1159733280,1718183022,1850018317,1869762660,1969513827,168650098,1917848077,1684366191,543519349,1969583441,1701728101,1701603654,538970637,538976288,1716068384,1818838560,1232292197,1651068014,2037539186,1951619872,1735289202,168647990,538976288,538976288,538976288,1181054289,1936026729,538970637,538976288,538976288,538976288,1398480928,1852404340,542979687,1528852340,1953721929,1634495585,1852795252,1701996868,1919906915,168648057,538976288,538976288,538976288,1365536325,1766221173,225666412,538976266,538976288,538976288,1668172064,1701668210,1968075886,1919246957]},{"sector":8,"length":512,"data":[1968069408,1919246957,224213297,538976266,538976288,1684948256,168650345,1348759109,1701015410,1701999972,168626701,1411398459,544434536,1684955496,544433516,1937055841,1679848037,1869373801,1752440935,1897952353,1702192501,1852776563,1919885413,1919905056,1852383333,1769367908,1818326372,1818846752,1646293861,1634607225,221144429,221985546,1869762570,1969513827,1193305458,1867740261,1766221165,168650092,538970637,1699946528,1886344308,1701734732,572550996,1634036816,1931502963,1667591269,1752440948,1768300645,1932027244,1869881385,1936615712,1819042164,1934958638,1918967909,544698226,1937335659,544175136,1869767539,1713400940,543517801,1953720684,168632878,538976288,1114924371,1869902959,1852394605,544167013,826686498,540687920,694502440,1701602643,1092645987,538995820,1396449325,1701011824,1411398206,1818716015,1766203493,757097836,1850031136,1047684468,1968250938,543520101,1701603654,168632947,538976288,1920226139,912748137,1027219549,1634484768,1951624046,1735289202,538970637,1314594848,1700949365,1564029298,540883488,537529648,1193287712,1699574885,1749251438,1701013871,1819033888,1968011119,1885959276,1428186476,1699243379,1919247457,1766597152,1918988898,1766203513,1277191532,578057065,538970637,538976288,942874656,1413565750,1394614341,168645465,538976288,538976288,538976288,808984635,540424243,1869440365,1830844786,1734438497,168653413]},{"sector":9,"length":512,"data":[538976288,538976288,1396062259,1347769413,1163412768,538970637,538976288,538976288,540745760,1970562387,1919950960,1634887535,1868963949,1650532466,224753263,538976266,538976288,1162166816,542262608,1329799200,537529677,538976288,538976288,991961120,1914716448,1684632421,544501349,1701340019,1768715620,1830840174,1953066607,1965060719,1768712564,221149556,538976266,538976288,1297040160,1398099789,1329799237,537529677,538976288,538976288,991961120,1702057248,1769414756,1881172084,1919381362,544435553,1952540788,1986095136,1752440933,544368997,544110447,1937076077,1919164517,1919252073,537529646,538976288,1126178848,1430474319,538976338,222648389,538976266,538976288,538976288,1092631328,1696735342,1919250552,2037588084,1835365491,1869881378,1701998624,1952672100,1313689376,1162434121,1701847127,1919903346,1668178285,168636005,538976288,538976288,1129205571,538989141,1129268256,538970637,538976288,538976288,540745760,1969450820,1953391981,1869182049,1768300654,1713399148,1126199919,1430474319,1160660306,168641880,538976288,538976288,1397641027,1112364366,1297040160,538970637,538976288,538976288,540745760,1869636946,544437362,543516788,1920103779,544501349,1936617315,543517807,1651340654,673215077,1953653104,1869182057,221129070,538976266,538976288,542130976,538976288,1329799200,168632397,538976265,1092631328,1953841952,1344284192]}],[{"sector":1,"length":512,"data":[1702130529,1769239840,2037672300,538970637,538976288,1279598624,1230132307,1159743310,168641880,538976288,538976288,538976288,1866670139,1919252078,1142977396,1159746383,1380930130,1163281740,1869881420,544104736,1769369189,1835954034,544501349,1769108595,221144942,538976266,538976288,1314211360,541869390,1498619936,537529683,538976288,538976288,991961120,1095582752,1970234400,761621602,1717990754,1852404325,1868963943,1967267954,1632444531,1919251571,1936286752,1868767339,1869771886,1919249516,168636019,538976288,538976288,1162691922,1380270669,1163412768,538970637,538976288,538976288,540745760,542266196,1684366702,1713398885,1965060719,1998611827,543716457,1414745157,1196312914,537529646,538976288,1159733280,1313424728,538988358,222648389,538976266,538976288,538976288,1377844000,1919905893,1830843252,1835626089,1881173365,1769239137,1852795252,2053731104,1701716069,1684366437,1919903264,544104736,1163412782,1818846752,168636005,538976288,538976288,1162893381,538989635,1297040160,538970637,538976288,538976288,540745760,1953063255,1868963955,1633951858,1948279156,1885413487,1918985584,544108320,1701995379,1864396389,1851859046,1701344367,1634738290,1953068146,778989417,538970637,538976288,1095114784,1380996179,1126178894,168643919,538976288,538976288,538976288,1917263931,1819566437,1835606137,1987015280,1881174885,1953393010,1701868320]},{"sector":2,"length":512,"data":[1713398885,1931506287,543518063,1735357040,1936548210,537529646,538976288,1210064928,1296387401,538976288,223566163,538976266,538976288,538976288,1092631328,1297621102,1919164499,1919252073,1634541612,1700929657,1701146144,543450468,1965059956,1478518131,1864389453,1752440946,1296572517,168635969,538976288,538976288,1162692936,538976333,1129268256,538970637,538976288,538976288,540745760,1969450852,1953391981,1869182049,1868963950,1650532466,224753263,538976266,538976288,1431521568,1431390542,1329799237,537529677,538976288,538976288,991961120,1885688352,1937011311,1701344288,1836412448,544367970,1881171567,1701015410,1936028531,1986095136,543649385,543516788,1701667187,1835101728,168636005,538976288,538976288,1280067915,538976288,1163412768,538970637,538976288,538976288,540745760,1819044171,543236211,1668248176,544437093,1835364904,1936029295,544500000,1836020326,1835363616,695825007,537529646,538976288,1277173792,538976324,538976288,223566163,538976266,538976288,538976288,1277180704,1935958383,1986356256,543515497,1986622052,544436837,1869901417,1886418208,673215077,1734961186,1329864808,539566675,1869440365,168655218,538976288,538976288,1162690894,1129271888,1297040160,538970637,538976288,538976288,540745760,1701667150,543236211,1668248176,779318117,538970637,538976288,1330520096,1398099789,1126178885,168643919,538976288]},{"sector":3,"length":512,"data":[538976288,538976288,1816272955,1936417647,1881170208,1769239137,1852795252,1667309683,1936942435,544175136,543516788,1937076077,168636005,538976288,538976288,1229868367,1212631368,1297040160,538970637,538976288,538976288,540745760,1684107084,1297031283,1230391630,1763727173,544175214,542330181,1478521455,1965052749,1919250544,1835363616,779711087,538970637,538976288,1297031200,1230391630,1159747397,168641880,538976288,538976288,538976288,1750343739,1667309669,1818326388,1819634976,1635019124,1852402547,1869815911,1635218534,221144434,538976266,538976288,1313689376,1162434121,1279795287,537529680,538976288,538976288,991961120,1701336096,1818576928,1702109296,1713403000,543517801,544370534,543516788,1970169197,1869424672,1768319332,1701601889,168635945,538976288,538976288,1313165391,538976288,1163412768,538970637,538976288,538976288,540745760,1634038339,544433524,1919950945,1936024431,1851859059,1634541668,544433515,1713402985,1734701679,1853190002,168636004,538976288,538976288,1212962383,538976288,1163412768,538970637,538976288,538976288,540745760,1684107084,1398022259,1763734354,544175214,1701867637,573055090,1751607656,1397703712,1830824226,1919905125,168636025,538976288,538976288,1380996687,1380143956,1297040160,538970637,538976288,538976288,540745760,1668443974,1008759653,544502352,1852990291,1869881406,1869573152,1952522347]},{"sector":4,"length":512,"data":[1919903264,1869768549,543452789,1701995379,221146725,538976266,538976288,1398165280,1347769413,1480925216,537529669,538976288,538976288,991961120,1852785440,1969711462,544433522,1229868367,1464158550,537529646,538976288,1327505440,1162367830,538987596,223170371,538976266,538976288,538976288,1411398432,1327523176,1447644749,542590281,1970169197,1953392928,1634103909,221144419,538976266,538976288,1398165280,542392660,1480925216,537529669,538976288,538976288,991961120,1701336096,1313689376,1162434121,2037588055,1835365491,1718511904,1634562671,1852795252,1769239840,2037672300,537529646,538976288,1344282656,1145130828,538976288,222648389,538976266,538976288,538976288,1428175648,543450483,1814065012,543449455,1229868367,1464158550,1684960544,1293972069,1329868115,775037011,537529720,538976288,1344282656,1414416722,541872211,222648389,538976266,538976288,538976288,1092631328,1769107488,1931506798,1819242352,221147749,538976266,538976288,1330794528,1297436227,1329799234,537529677,538976288,538976288,991961120,1634030368,1701340018,1868963955,543236210,1701667182,1919950948,1936024431,168636019,538976288,538976288,1145128274,538985805,1415074848,538970637,538976288,538976288,540745760,1869638985,1851880562,1701716084,1852383351,1836216166,1869182049,1650532462,544503151,1229868367,1464158550,538970637,538976288,1163010080,1162691649]},{"sector":5,"length":512,"data":[1159733280,168641880,538976288,538976288,538976288,1766203451,1981834604,1702323561,1868963954,1163010162,1162691649,1415074862,538970637,538976288,1163075616,1162560590,1126191961,168643919,538976288,538976288,538976288,1699946555,544433262,1937335659,1802465908,1948283749,1851859055,1297031289,1230391630,1881167685,1769239137,1852795252,537529646,538976288,1394614304,1229673541,538987596,222648389,538976266,538976288,538976288,1126185760,1920233071,544435311,543516788,1819044203,1818845793,544830569,1629513327,1869770784,1936942435,537529646,538976288,1394614304,1380996165,538976329,222648389,538976266,538976288,538976288,1126185760,1920233071,544435311,543516788,1869181552,2037672306,543584032,1919950945,1936024431,168636019,538976288,538976288,1398031699,542130519,1163412768,538970637,538976288,538976288,540745760,1953394499,1936486258,1701344288,1635218208,1650552944,1953066089,1718558841,1881170208,1701015410,221148019,538976266,538976288,1330139936,1497713495,1329799251,537529677,538976288,538976288,991961120,1936278560,2036427888,1752440947,1163075685,1162560590,1663062873,1936024687,1919903264,1797284128,1919973733,779318117,538970637,538976288,1297293344,542327617,1159733280,168641880,538976288,538976288,538976288,1699422267,1634689657,1830839410,1869767521,1869770784,1936942435,1998615151,543716457,544503107,1632641062]},{"sector":6,"length":512,"data":[543519859,1952540006,1936028277,537529646,538976288,1394614304,1314341200,538976288,222648389,538976266,538976288,538976288,1126185760,1952540018,1629516645,1667326496,1869768555,543452789,1668248176,779318117,538970637,538976288,1465065504,1313427521,1159733280,168641880,538976288,538976288,538976288,2001936443,544436321,1919950945,1634887535,1852383341,1869768224,1768169581,1864395635,1296375922,168635987,538976288,538976288,1414092627,1330923587,1163412768,538970637,538976288,538976288,540745760,1701536077,543236211,1668248176,544437093,1701998438,1970238055,221144174,538976266,538976288,1112364320,538976288,1498619936,537529683,538976288,538976288,991961120,1852785440,1953654134,1747066995,543713129,575885124,1835363616,544830063,1869901417,1397577760,1886410016,1293972069,1919905125,1816273017,1936417647,538970637,538976288,1414864928,542329929,1142956064,168641359,538976288,538976288,538976288,1681989691,1769236836,1818324591,1668244512,1852140917,1769234804,1713401455,1931506287,543518063,1818850421,1701409897,168636019,538976288,538976288,1380143958,541476431,1163412768,538970637,538976288,538976288,540745760,1852994900,1718558835,543236198,1953655158,543973749,1701995379,221146725,538976266,538976288,1095194144,1330401091,1329799250,537529677,538976288,538976288,991961120,1986089760,1444967269,1663058247,1919904879]},{"sector":7,"length":512,"data":[1734701600,1702130537,1629516658,840983662,1663055413,1919904879,1196839712,1869422657,779314532,538970637,538976288,1213669408,1397051973,1126178848,168643919,538976288,538976288,538976288,541139003,1701603686,1852401184,1953833060,1953066089,168636025,538976288,538976288,1414086999,1129271888,1163412768,538970637,538976288,538976288,540745760,1953063255,1868963955,543236210,1668248176,544437093,1679847284,221144425,538976266,538976288,1229018912,1497713492,1329799251,537529677,538976288,538976288,991961120,1830830368,1769303653,1629513582,1679844462,2036427877,1881171045,1919381362,1696623969,1969448312,1852795252,1769239840,2037672300,537529646,538976288,1478500384,1279608915,538976332,222648389,538976266,538976288,538976288,1277180704,1935958383,1398165280,1280066888,1953392928,1752440943,1953701989,1633971809,1159750770,1344295757,543516513,1835102790,168636005,538976288,1197764165,1699574885,1749251438,1701013871,538970637,1699946528,1953448564,1282240372,1415933545,1816273007,1399549537,1852404340,537529703,1394614304,1867805797,1852394608,544167013,1851878466,1920226155,224882281,538976266,2019906592,2020557428,538970637,538976288,1663967264,1702187296,1735289205,1818579744,1702126437,1766203492,225666412,538976266,1684948256,1954047316,225996610,538976266,1131301152,543519585,1768908867,1763730787,537529715,538976288,1025515552]},{"sector":8,"length":512,"data":[538982961,1528832032,1769108563,1563846510,540883488,1295398963,776295489,223566163,538976266,538976288,538976288,538976288,544162848,1969583441,1701728101,1701603654,538970637,538976288,842866720,538976314,1398480928,1852404340,542979687,857750842,1163081272,777016660,222648389,538976266,538976288,538976288,538976288,544162848,1969583441,1701728101,1701603654,538970637,538976288,859643936,538976314,1398480928,1852404340,542979687,1109409082,1162888517,1329802834,537529677,538976288,538976288,538976288,1142956064,1968250991,1332049253,1766221166,168650092,538976288,538976288,540685373,538976288,1920226139,912748137,1027219549,1297040160,1398099789,1329802821,537529677,538976288,538976288,538976288,1142956064,1968250991,1332049253,1766221166,168650092,538976288,538976288,540685629,538976288,1920226139,912748137,1027219549,1313817376,777147715,222648389,538976266,538976288,538976288,538976288,544162848,1969583441,1701728101,1701603654,538970637,538976288,909975584,538976314,1398480928,1852404340,542979687,1126186298,1430474319,1329868370,537529667,538976288,538976288,538976288,1142956064,1968250991,1332049253,1766221166,168650092,538976288,538976288,540686141,538976288,1920226139,912748137,1027219549,1313817376,1297436243,1329802818,537529677,538976288,538976288,538976288,1142956064,1968250991,1332049253,1766221166]},{"sector":9,"length":512,"data":[168650092,538976288,538976288,540686397,538976288,1920226139,912748137,1027219549,777012000,223170371,1141442826,1968250991,1332049253,1766221166,168650092,538976288,538976288,540686653,538976288,1920226139,912748137,1027219549,1397507360,1313428052,1480928839,151653701,544162825,1969583441,1701728101,1701603654,538970637,538976288,826089504,538982960,1398480928,1852404340,542979687,1176517946,1162759765,1498623564,151653715,544162825,1969583441,1701728101,1701603654,538970637,538976288,826089504,538982961,1398480928,1852404340,542979687,1377844538,1296387397,777143618,222648389,1141442826,1968250991,1332049253,1766221166,168650092,538976288,538976288,976367933,538976288,1920226139,912748137,1027219549,1163412768,1330007625,1163412782,151587341,1361080132,1702192501,1181052495,224750697,538976266,538976288,858864928,538976314,1951619872,1735289202,975199542,1480925245,1413694800,1297040174,151587341,1361080132,1702192501,1181052495,224750697,538976266,538976288,875642144,538976314,1951619872,1735289202,975199542,1095114813,1380996179,1329802830,151653709,544162825,1969583441,1701728101,1701603654,538970637,538976288,826089504,538982965,1398480928,1852404340,542979687,1210072378,1296387401,1398362926,151587341,1361080132,1702192501,1181052495,224750697,538976266,538976288,909196576,538976314,1951619872,1735289202,975199542]}]],[[{"sector":1,"length":512,"data":[1229463613,776815949,222515012,1141442826,1968250991,1332049253,1766221166,168650092,538976288,538976288,976695613,538976288,1920226139,912748137,1027219549,1431521568,1431390542,1329802821,151653709,544162825,1969583441,1701728101,1701603654,538970637,538976288,826089504,538982968,1398480928,1852404340,542979687,1260404026,776752201,222648389,1141442826,1968250991,1332049253,1766221166,168650092,538976288,538976288,976826685,538976288,1920226139,912748137,1027219549,776227872,223566163,1141442826,1968250991,1332049253,1766221166,168650092,538976288,538976288,976237117,538976288,1920226139,912748137,1027219549,1296125472,1330794565,1329802819,151653709,544162825,1969583441,1701728101,1701603654,538970637,538976288,842866720,538982961,1398480928,1852404340,542979687,1310735674,1431260495,1127105875,168643919,1866729737,1702187296,1850697077,1818838629,537529701,538976288,1025515552,540684850,1528832032,1769108563,1563846510,540883488,1229868367,1212631368,1297040174,151587341,1361080132,1702192501,1181052495,224750697,538976266,538976288,858930464,538976314,1951619872,1735289202,975199542,1297031229,1230391630,1160664901,168641880,1866729737,1702187296,1850697077,1818838629,537529701,538976288,1025515552,540685362,1528832032,1769108563,1563846510,540883488,1229868367,1464158550,1347176494,151587341,1361080132,1702192501,1181052495]},{"sector":2,"length":512,"data":[224750697,538976266,538976288,892484896,538976314,1951619872,1735289202,975199542,1347362877,1160662597,168641880,1866729737,1702187296,1850697077,1818838629,537529701,538976288,1025515552,540685874,1528832032,1769108563,1563846510,540883488,1212962383,1163412782,151587341,1361080132,1702192501,1181052495,224750697,538976266,538976288,926039328,538976314,1951619872,1735289202,975199542,1448026173,1398035024,1127109187,168643919,1866729737,1702187296,1850697077,1818838629,537529701,538976288,1025515552,540686386,1528832032,1769108563,1563846510,540883488,1163089487,777016660,222648389,1141442826,1968250991,1332049253,1766221166,168650092,538976288,538976288,976826941,538976288,1920226139,912748137,1027219549,1398165280,1280066888,1297040174,151587341,1361080132,1702192501,1181052495,224750697,538976266,538976288,808664352,538976314,1951619872,1735289202,975199542,1448026173,1413567571,1163412782,151587341,1361080132,1702192501,1181052495,224750697,538976266,538976288,825441568,538976314,1951619872,1735289202,975199542,1280319549,776225103,222648389,1141442826,1968250991,1332049253,1766221166,168650092,538976288,538976288,976368445,538976288,1920226139,912748137,1027219549,1230131232,1347638350,1480928844,151653701,544162825,1969583441,1701728101,1701603654,538970637,538976288,859643936,538982963,1398480928,1852404340,542979687]},{"sector":3,"length":512,"data":[1344290106,1313034066,776097109,223170371,1141442826,1968250991,1332049253,1766221166,168650092,538976288,538976288,976499517,538976288,1920226139,912748137,1027219549,1095062048,776293700,223631444,1141442826,1968250991,1332049253,1766221166,168650092,538976288,538976288,976565053,538976288,1920226139,912748137,1027219549,1095062048,776293700,222648389,1141442826,1968250991,1332049253,1766221166,168650092,538976288,538976288,976630589,538976288,1920226139,912748137,1027219549,1313166112,1497713476,1329802835,151653709,544162825,1969583441,1701728101,1701603654,538970637,538976288,859643936,538982967,1398480928,1852404340,542979687,1394621754,1229673541,1160662092,168641880,1866729737,1702187296,1850697077,1818838629,537529701,538976288,1025515552,540686387,1528832032,1769108563,1563846510,540883488,1347700051,1160661330,168641880,1866729737,1702187296,1850697077,1818838629,537529701,538976288,1025515552,540686643,1528832032,1769108563,1563846510,540883488,1398031699,777011543,222648389,1141442826,1968250991,1332049253,1766221166,168650092,538976288,538976288,976237629,538976288,1920226139,912748137,1027219549,1330139936,1497713495,1329802835,151653709,544162825,1969583441,1701728101,1701603654,538970637,538976288,876421152,538982961,1398480928,1852404340,542979687,1394621754,1396916557,1163412782,151587341,1361080132,1702192501]},{"sector":4,"length":512,"data":[1181052495,224750697,538976266,538976288,842284320,538976314,1951619872,1735289202,975199542,1347625021,776886081,222648389,1141442826,1968250991,1332049253,1766221166,168650092,538976288,538976288,976434237,538976288,1920226139,912748137,1027219549,1096241952,776882512,222648389,1141442826,1968250991,1332049253,1766221166,168650092,538976288,538976288,976499773,538976288,1920226139,912748137,1027219549,1230459680,1414021972,1480928847,151653701,544162825,1969583441,1701728101,1701603654,538970637,538976288,876421152,538982965,1398480928,1852404340,542979687,1428176186,1395540557,168645465,1866729737,1702187296,1850697077,1818838629,537529701,538976288,1025515552,540685876,1528832032,1769108563,1563846510,540883488,1279874133,1329868371,151653699,544162825,1969583441,1701728101,1701603654,538970637,538976288,876421152,538982967,1398480928,1852404340,542979687,1444953402,1330791251,1160660550,168641880,1866729737,1702187296,1850697077,1818838629,537529701,538976288,1025515552,540686388,1528832032,1769108563,1563846510,540883488,1128351574,1380928591,1297040174,151587341,1361080132,1702192501,1181052495,224750697,538976266,538976288,959724832,538976314,1951619872,1735289202,975199542,1213669437,1397051973,1297040174,151587341,1361080132,1702192501,1181052495,224750697,538976266,538976288,808795424,538976314,1951619872,1735289202]},{"sector":5,"length":512,"data":[975199542,1096228925,1380996169,1160659791,168641880,1866729737,1702187296,1850697077,1818838629,537529701,538976288,1025515552,540684597,1528832032,1769108563,1563846510,540883488,1414086999,1398359371,1297040174,151587341,1361080132,1702192501,1181052495,224750697,893192458,538982962,1398480928,1852404340,542979687,1478507834,1279608915,1480928844,151653701,544162825,1969583441,1701728101,1701603654,538970637,1850023968,1131301220,224752481,538976266,1701593888,1666413153,1852138866,538970637,1716068384,1968069408,1919246957,542980401,221257790,538976266,538976288,1634288672,543649644,1214608213,1701077349,-1272831886,1701597216,543519585,1702129486,539897390,168633027,538970637,538976288,538976288,1867784224,1952669984,1819042165,1915232377,1852385637,1818326131,1752440940,1886593125,1718182757,543450473,1701603686,1931488371,1667591269,1752440948,537529701,538976288,538976288,572530720,1953721929,543976545,543976513,1701603654,1851859059,2017796196,539128937,1769238639,1713401455,544042866,543516788,1852399981,1852140832,168636021,538976288,538976288,538976288,544567129,544825709,1869835361,1701998624,1008759667,1819440195,1045969982,544175136,1953069157,1397639456,1280065876,1953068832,1953853288,538970637,538976288,538976288,1868767264,1852406128,1752440935,1886593125,1718182757,543450473,1701603686,1869881459,1850301216,1818326131]},{"sector":6,"length":512,"data":[1769234796,1766092399,1952671090,1568240239,218762542,538976266,538976288,1684948256,1818323268,168650607,538976288,1768189509,1158286694,1917871214,1684366191,224752245,990514442,1750343739,1830843241,1718183023,544433513,543516788,1330926913,1128618053,1413562926,1818846752,1869881445,990514490,824188987,1344282665,1948284021,572548456,576081756,1919509536,544106784,543516788,1752457584,543582496,1953721961,1768713313,1327523694,1447644749,777471305,222648389,540752650,539570720,1953845280,1331438112,1414880342,1548962889,1768169506,1852383346,1701344288,1952542752,1718165608,1936615712,1819042164,543649385,543516788,1818850421,990514547,1342836027,1701015410,1701999972,1634026528,1953060716,1414873448,1163412815,537529667,1226842144,1699553382,1130457444,1953396079,824196128,538970637,538976288,1716068384,1951619872,1735289202,1025531186,1936016416,1667591269,537529716,538976288,538976288,1293951008,1718183023,1953841529,1702389103,1952531043,538970637,538976288,538976288,538976288,1681989664,1952534628,1836008296,1701736304,538997870,1230708768,1635021678,1952541804,1148088169,1667592809,2037542772,1950425181,1684948256,538970637,538976288,538976288,1850023968,1685015908,1098475113,1701803125,1113810296,168653921,538976288,538976288,1231318597,537529702,538976288,1226842144,1398480998,1852404340,542978919,1698963517,1701602675,168653923]},{"sector":7,"length":512,"data":[538976288,538976288,538976288,1768189773,1967225190,2019913588,1631740773,537529716,538976288,538976288,538976288,1092624416,1632658532,1866688628,1852797037,544501349,1528832032,1953721929,1634495585,1852795252,1701996868,1919906915,1432116601,1397508436,544489760,224685637,538976266,538976288,538976288,1684948256,1768189773,1967225190,2019913588,1631740773,537529716,538976288,1159733280,1716085870,538970637,1850023968,224815460,1684948234,1668248144,1920296037,218762597,540752650,543574304,540424243,1667592307,1667851881,1818846752,1629516645,1646290290,1735289189,1936615712,1819042164,221930597,540752650,538976288,539574560,544499047,1970236769,1864397934,1483022438,1684956532,1830839397,1919905125,1869881465,1936028192,1702261349,1718165548,807419424,168639017,538983227,538976288,538976288,1864379953,1869182064,1819042158,1701060729,1702126956,1684955424,1701998624,1684956528,1447380000,1027949385,776097109,223566163,540752650,538976288,538976288,539898400,1701602660,1629513076,1881171054,1701864818,1142973550,1128879685,1229471045,776815949,223566163,540752650,538976288,539574816,1701602660,1629513076,1881171054,1701864818,1142973550,1128879685,942882117,1413565750,1498623557,990514515,538976315,1126178848,1886330921,1852795252,2037148769,1818584096,543519845,543452769,1885696624,543452773,1230390596,1178420547,1162759765,1498623564]},{"sector":8,"length":512,"data":[990514515,538976315,538976288,824188960,1701060654,1702126956,2037276960,1869507360,1444966007,541150532,1986622052,544436837,1836216166,1313817376,793200966,1330926913,1128618053,993724941,538976288,692330528,1818584096,543519845,544829025,2003791467,1701650542,2037542765,1851878688,1919248225,1919295603,1126198639,1229344335,1498623559,990514515,1342836027,1701015410,1701999972,1634026528,1953060716,1313817448,222775622,537529610,1528832032,846358852,1027219549,1634484768,1951624046,1735289202,538970637,1718165536,1684360480,1866686825,544501365,221257789,538976266,538976288,1766087456,542978674,1528839482,1953721929,1634495585,1852795252,1701996868,1919906915,168648057,538976288,1768189509,218762598,538976266,543574304,1920226139,828862057,540876893,1702061380,1952671084,538970637,538976288,1146822688,1563652713,540883488,1851878466,1920226155,224882281,538976266,538976288,1766087456,542979186,1109409082,1802396012,1769108563,168650606,538976288,538976288,1919501403,975199541,1816272957,1399549537,1852404340,537529703,538976288,1528832032,913467716,1027219549,1634484768,1951624046,1735289202,538970637,538976288,1314594848,1700949365,542978418,908082490,218762548,538976266,538976288,540752672,1702131781,1684366446,1869440333,1917876594,1852142437,1969627252,1769235310,1679847023,1853056367,1998615591,778793583,1818313504,1970217068]},{"sector":9,"length":512,"data":[1919950962,1634887535,537529709,538976288,991961120,1869881403,2037543968,1684955424,1952801824,1768780389,1629513070,1853189997,1718558836,1951950112,1701080677,1701650532,2037542765,544106784,1953724787,221146469,538976266,538976288,221985568,538976266,538976288,1951619872,1735289202,975199545,1681989693,1936028260,543575923,1920226139,963079785,537529693,538976288,1914708000,1528852085,1953721929,1181510753,1148022642,1702259058,1482439261,1212371789,776684357,541415493,1951619901,1735289202,1361075513,1952803189,1310751084,1869762671,225734765,538976266,538976288,543574304,1920226139,963079785,1866670173,1767994478,975205230,538970637,538976288,538976288,1314594848,1700949365,542978674,807419194,538970637,538976288,1816469536,168650099,538976288,538976288,538976288,1836404315,846357858,1027219549,1951619872,1735289202,168647993,538976288,538976288,1768189509,218762598,538976266,538976288,540752672,1702126916,1852403058,1869881445,543973748,542330181,1701273968,1852383347,1937339168,745366900,1852793632,1953654134,1734438944,1948283749,776675439,538970637,538976288,993730592,538970637,538976288,1314594848,1700949365,542978930,824196410,537529653,538976288,1528832032,1651340622,1563718245,540883488,1634760773,1684366446,1869440333,1632663922,1098081639,1986622563,537529701,538976288,1528832032,1651340622,1563783781,540883488]}],[{"sector":1,"length":512,"data":[1836404315,879912290,537529693,538976288,1528832032,1651340622,1563849317,540883488,1836404315,879912290,537529693,538976288,1528832032,1852403536,1563439732,538970637,538976288,1716068384,1968069408,1919246957,1042308403,168636448,538976288,538976288,538976288,1836404315,879912290,1027219549,1968069408,1919246957,723541301,1968069408,1919246957,168647990,538976288,538976288,538976288,1836404315,913466722,1027219549,1968069408,1919246957,168647988,538976288,538976288,538976288,1919116612,1852140901,1836404340,544367970,1836404315,863135074,537529693,538976288,538976288,1193287712,544175215,1768902747,808612974,537529693,538976288,1159733280,1718183022,168626701,538976288,538976288,1528838971,1651340622,1563521637,1142963488,1919513445,1260414053,543584032,1702123621,1684366446,1835363616,544830063,544370534,1295398963,543519841,1914728308,1919251301,168650102,538976288,538976288,1528838971,1651340622,1563587173,1159740704,1953720696,543649385,1718558795,1951950112,1701080677,1701650532,2037542765,538970637,538976288,993730592,1968069408,1919246957,1025531187,1953453088,1260416097,543584032,1702123621,1684366446,1684955424,1397572896,1835363616,544830063,1936028272,225734245,538976266,538976288,540752672,1836404315,879912290,540876893,1635020628,541794412,1159751279,1830835021,1919905125,1919950969,1852142437,537529716,538976288]},{"sector":2,"length":512,"data":[991961120,1314594875,1700949365,542979442,1867784253,543973748,1768386412,543973731,542330181,1701273968,1919950963,1852142437,537529716,538976288,991961120,537529659,538976288,1528832032,1651340622,1563652709,540883488,1836404315,846357858,539697245,1836404315,879912290,218762589,1867537162,947154537,537529693,538976288,1142956064,1869373801,1314594919,1700949365,542978418,1214608213,1701077349,-1272831886,1701597216,543519585,1702129486,539897390,168633027,538970637,538976288,538976288,2034376736,1717920800,1953264993,1752440876,942874725,1952533814,1701650533,2037542765,1851878688,1919248225,1818851104,1701978220,1987208563,1752440933,537529701,538976288,538976288,1830821920,1835626089,908094837,1864387380,2019893350,1684956532,1830839397,1919905125,1411395193,544434536,1780511593,544502645,1970237029,1948280935,537529711,538976288,538976288,1629495328,1668246636,543519841,543516788,1751607624,1835355424,544830063,1634038337,1296574496,1713383745,1684960623,1937074720,1650532468,543520367,224749684,538976266,538976288,538976288,1919510048,1830843507,1650550629,543519865,1931503215,1702130553,1701650541,2037542765,1816207406,1701978220,1852399981,543649385,1702131813,1684366446,1835363616,226062959,538976266,538976288,538976288,1818851104,1700929644,1852793632,1953654134,1948279909,1296375919,1935745107,1902473760,1701996917,1868963940]},{"sector":3,"length":512,"data":[1970086002,1953068140,1768649569,1881171822,1869640309,779314547,168626701,538976288,538976288,538976288,1953654083,544106849,1735357040,1936548210,1970479148,1629513827,1768169587,1663069043,1701340001,1851859059,1752440932,543519599,1735357040,1936548210,1769174304,168650606,538976288,538976288,538976288,542330692,1702131813,1919247470,1667593248,1819242088,746153839,2036428064,1902473760,1701996917,1634235424,1869422708,1696621938,1852142680,543450468,1869440365,168655218,538976288,538976288,538976288,1931502946,1629516901,1701079411,1919903264,1701344288,1965060713,539911539,544567129,544825709,1667592307,544826985,543516788,1651340654,1864397413,1649090662,1936028793,538970637,538976288,538976288,1718558752,1954047264,1701080677,1701650532,2037542765,544175136,1702061426,543520370,544370534,1936681076,1885413477,1667853424,1869182049,1646293870,2003790949,1867784238,538970637,538976288,538976288,1937055776,1752440933,1701060709,1819631974,1635131508,543520108,908093039,1780501300,544502645,544500072,1953383740,775844453,168626701,538976288,538976288,538976288,1651340622,1864397413,1649090662,1936028793,543584032,1702123621,1684366446,1835363616,544830063,1914728308,1919251301,221930870,537529610,538976288,1159733280,1766089838,1735355489,538970637,538976288,1716068384,1968069408,1919246957,1008753969,221525536,538976266,538976288]},{"sector":4,"length":512,"data":[538976288,1968069408,1919246957,975199537,221257789,538976266,538976288,538976288,543574304,1836404315,863135074,1027481693,221525536,538976266,538976288,538976288,538976288,543574304,1700156239,1869181810,1027481710,168637728,538976288,538976288,538976288,538976288,538976288,1835104325,1415933545,1182038117,543517801,1869562459,1769096308,979199350,1313817436,776423750,223566163,538976266,538976288,538976288,538976288,538976288,1968069408,1919246957,975199545,1766596669,1968072046,1919246957,1752459607,1329866784,1229466707,690767943,538970637,538976288,538976288,538976288,538976288,1716068384,1968069408,1919246957,1008753977,221257790,538976266,538976288,538976288,538976288,538976288,538976288,1634288672,543649644,1936021851,1867412047,1428184369,1699243379,1919247457,548807200,1953849667,560885609,220383008,537529610,538976288,538976288,538976288,538976288,538976288,538976288,1495277600,1746957679,543520353,1667592307,1701406313,1752440932,857764961,1632450104,1663067508,1702260335,1629516914,1696623724,1852142680,224683364,538976266,538976288,538976288,538976288,538976288,538976288,538976288,1835363616,544830063,1159753588,1646285645,1663071349,1701999221,2037150830,1986095136,1329864805,1869357139,1684366433,1734961184,168636008,538970637,538976288,538976288,538976288,538976288,538976288,538976288,1867784224]},{"sector":5,"length":512,"data":[1852793632,1970170228,1869357157,1852400737,1329864807,1768431699,2032167015,1847620975,543450469,1914728308,1919251301,168650102,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1814066273,1953718629,1261712928,543584032,1702123621,1684366446,1835363616,779711087,168626701,538976288,538976288,538976288,538976288,538976288,538976288,538976288,2032168772,1998615919,544501345,542330692,1814065012,543449455,1746955881,543713129,1869440365,222263666,537529610,538976288,538976288,538976288,538976288,538976288,1159733280,1766089838,1735355489,538970637,538976288,538976288,538976288,538976288,538976288,1716068384,1700354848,1316114291,542978415,223944765,538976266,538976288,538976288,538976288,538976288,538976288,538976288,1968069408,1919246957,975199537,875962429,538970637,538976288,538976288,538976288,538976288,538976288,1850023968,224815460,538976266,538976288,538976288,538976288,538976288,1684948256,168650345,538976288,538976288,538976288,538976288,1768189509,537529702,538976288,538976288,1159733280,1718183022,538970637,538976288,1850023968,224815460,538976266,538976288,543574304,1836404315,829580642,540942429,1836404315,863135074,537529693,538976288,538976288,1142956064,1869373801,1499144295,1917809509,1563520846,1702057248,1684104520,572551781,1631789238,1869182069,-954195602,218762530]},{"sector":6,"length":512,"data":[538976266,538976288,538976288,538976288,1970231584,1986095136,1886593125,1718182757,543450473,1952540788,909652768,1702125901,1936028192,1702261349,1968069408,1919246957,223042865,538976266,538976288,538976288,538976288,543584032,1702123621,1684366446,1835363616,544830063,544503138,1936287860,1869439264,544501365,1701017701,544433253,543516788,1836404315,863135074,168643421,538976288,538976288,538976288,538976288,1965057647,1852793710,1953391990,1634627433,1701650540,2037542765,1885696544,1702130287,1935745124,1701998624,1953391987,218762542,538976266,538976288,538976288,538976288,1416179232,1818326127,1936028192,1702261349,1483022436,1684956532,1830839397,1919905125,540876921,1836404315,846357858,168643421,538976288,538976288,538976288,538976288,1867802926,543973748,1634760773,1684366446,1835363616,544830063,1936028272,544501349,1528839456,1651340622,1563718245,218762571,538976266,538976288,538976288,538976288,544162848,544567161,1953390967,544175136,1851877475,1948280167,1629513064,1853189997,1718558836,1951950112,1701080677,1701650532,2037542765,538970637,538976288,538976288,538976288,1752440864,857764961,1632450104,1914725748,1919251301,544433526,544370534,1701344367,1919950962,1634887535,222262125,537529610,538976288,538976288,1159733280,1766089838,1735355489,538970637,538976288,538976288,1716068384,1700354848,1316114291]},{"sector":7,"length":512,"data":[542978415,223944765,538976266,538976288,538976288,538976288,1968069408,1919246957,975199537,221257789,538976266,538976288,538976288,538976288,1416578848,1348149359,1953393007,168647992,538976288,538976288,538976288,1768189509,537529702,538976288,1159733280,224752492,538976266,538976288,538976288,543582496,1836404315,829580642,540942429,1836404315,846357858,537529693,538976288,538976288,538976288,1142956064,1869373801,1499144295,1917809509,1563520846,1702057248,1684104520,572551781,1631789238,1869182069,-954195602,218762530,538976266,538976288,538976288,538976288,538976288,1970231584,1986095136,1886593125,1718182757,543450473,1952540788,909652768,1702125901,1936028192,1702261349,1968069408,1919246957,223042865,538976266,538976288,538976288,538976288,538976288,543584032,1702123621,1684366446,1835363616,544830063,745829730,1920295712,1953391986,539785580,2037149295,1968069408,1919246957,223042866,538976266,538976288,538976288,538976288,538976288,543584032,1702123621,1684366446,1835363616,544830063,1914729321,1919905893,543450484,1881174881,1702061426,221148270,537529610,538976288,538976288,538976288,538976288,1142956064,1870209135,1635197045,1948284014,1751326831,1701277281,1701344288,1869439264,544501365,1696622191,1852142680,543450468,1869440365,168655218,538976288,538976288,538976288,538976288,538976288,1952540788]},{"sector":8,"length":512,"data":[909652768,1702125901,1936028192,1702261349,1868963955,1953439858,544367976,1735357040,1936548210,218762559,538976266,538976288,538976288,538976288,1684948256,1818323268,168650607,538976288,538976288,538976288,538976288,1528849993,1332962649,829378162,540876893,537529689,538976288,538976288,538976288,538976288,1528832032,1651340622,1563521637,540883488,537529648,538976288,538976288,538976288,538976288,1193287712,544167023,1768902747,1563980910,538970637,538976288,538976288,538976288,1850023968,224815460,538976266,538976288,538976288,1684948256,168650345,538976288,538976288,1768189509,537529702,538976288,1528832032,1769108563,1563846510,540883488,1415071023,1968069408,1919246957,168647985,538976288,538976288,1528849993,1651340622,1563521637,807419424,168626701,538976288,538976288,538976288,1226849083,1701978214,1987208563,543649385,544829025,1702123621,1684366446,1835363616,544830063,1629516897,539782252,1633906540,1428186484,1395540557,168645465,538976288,538976288,538976288,1763719995,1752440942,1297031269,1230391630,857757509,1763718712,1635021678,1952541804,544108393,1701996900,1919906915,537529721,538976288,538976288,991961120,537529659,538976288,538976288,1159733280,1768776056,1700029806,1766225016,1528849772,963799364,537529693,538976288,538976288,1528832032,1332962649,829378162,1027219549,168646944,538976288]},{"sector":9,"length":512,"data":[538976288,538976288,1836404315,846357858,1027219549,1852394528,1836404325,1467114850,543716457,1447380008,742736713,742542677,537529641,538976288,538976288,1528832032,1651340622,1563652709,540883488,1701734732,1651340622,1767338597,673212532,743657284,742542677,537529641,538976288,538976288,1528832032,1769108563,1563912046,540883488,1919501403,1432116530,1395540557,168645465,538976288,538976288,538976288,1528849993,1651340622,1563652709,807419168,538970637,538976288,538976288,538976288,1766072352,1735355489,1700354848,1316114291,542978415,1214608213,1701077349,-1272831886,1701597216,543519585,1702129486,539897390,168633027,538970637,538976288,538976288,538976288,538976288,1297031200,1230391630,857757509,1226847800,1970037614,544433508,1953833057,1953066089,1428171897,1395540557,539775833,1952540788,1819042080,544438127,1295398963,224752737,538976266,538976288,538976288,538976288,538976288,1766335008,1142974567,539120463,1869440365,1914730866,1869178725,1948283758,1700929647,1667457312,1702064997,1935745124,1397577760,1112364320,168636019,538970637,538976288,538976288,538976288,538976288,1850286112,1818326131,1735289196,1112364320,1398362926,1819042080,544438127,1701998445,1701602848,1768057208,2037672300,544106784,543516788,543519605,1948280431,1702061416,538970637,538976288,538976288,538976288,538976288,1886724128,544367984]}]],[[{"sector":1,"length":512,"data":[1869440365,1914730866,1869178725,1931506542,1701015145,1970239776,1852793888,1746957351,543520353,1679847284,1667851365,543519841,541800500,168650351,538976288,538976288,538976288,538976288,538976288,542330181,544370534,1684107116,543649385,1229868367,1464158550,1734961184,1210068584,1986361199,539783781,2032166505,1814066543,543449455,544173940,2037277037,225603360,538976266,538976288,538976288,538976288,538976288,1869575200,1918987296,1629513063,1869770784,1835102823,1953392928,1747066991,543713129,575885124,1701344288,1752440942,543519333,544825709,544501614,168650082,538976288,538976288,538976288,538976288,538976288,1970237029,1914726503,544042863,1814065012,543449455,1229868367,1464158550,1734961184,1935745128,1818588960,168636012,538970637,538976288,538976288,538976288,538976288,1767317536,1142974580,891310927,539785262,776097109,542333267,1914729321,1769304421,543450482,1864396393,1919247474,544175136,1684107116,1869770784,1835102823,1851859059,537529700,538976288,538976288,538976288,538976288,1679826976,1667855973,1919164517,1919252073,1768431731,1965058151,1735289203,1701344288,1397703712,1953392928,1634628197,1868767340,1851878765,539915108,543516756,1395541068,168645465,538976288,538976288,538976288,538976288,538976288,543452769,1212962383,1163412782,1869770784,1835102823,1764237427,1970037614,543450468,1752459639]},{"sector":2,"length":512,"data":[1313689376,1162434121,942874711,1629497654,168650098,538976288,538976288,538976288,538976288,538976288,1886220131,1651078241,1998611820,543716457,776097109,542333267,544503138,1847619428,1679848559,1852141669,1852776548,544500000,544370534,1768253556,537529714,538976288,538976288,538976288,538976288,1864376352,1634887024,1852795252,218762542,538976266,538976288,538976288,538976288,538976288,1869108000,543452277,1763730807,1635021678,1428188268,1395540557,222253913,537529610,538976288,538976288,538976288,1159733280,1766089838,1735355489,538970637,538976288,538976288,1850023968,224815460,538976266,538976288,538976288,543574304,1936021851,1867412047,1025531185,168646944,538976288,538976288,538976288,538976288,1528849993,1651340622,1563587173,540949536,537529648,538976288,538976288,538976288,538976288,1293951008,1718183023,2019906681,1818838644,1146822757,1564045929,538970637,538976288,538976288,538976288,538976288,538976288,1698963488,1702126956,1701734732,1968069408,1919246957,168647986,538976288,538976288,538976288,538976288,538976288,1298427461,1718183023,2019906681,1818838644,537529701,538976288,538976288,538976288,1159733280,1718183022,538970637,538976288,538976288,538976288,2017796128,1852403041,2019906661,1818838644,1146822757,1564045929,538970637,538976288,538976288,538976288,1867325472,2036754788,1954047316]},{"sector":3,"length":512,"data":[1701603654,1766087456,224213362,538976266,538976288,538976288,538976288,538976288,1684291872,1749250639,1701277281,1701734732,1752459607,1162094624,1162037590,1112364332,1629497644,1143087219,1128879685,1398488389,1852404340,576534375,544489760,1768383810,1852403310,537529703,538976288,538976288,538976288,1159733280,1867342958,2036754788,1954047316,1701603654,538970637,538976288,538976288,538976288,1146822688,1563652713,540883488,776097109,223566163,538976266,538976288,538976288,1684948256,168650313,538970637,538976288,538976288,993730592,543574304,1702061426,1852405362,1851859047,1483022457,1684956532,1830839397,1919905125,1952522361,1819042080,1869357100,1702125923,1296648224,1395543365,1629508441,537529716,538976288,538976288,991961120,691085371,1937008928,1717924384,1852142181,543450467,1633906540,1852795252,544106784,1179537219,1395541833,168645465,538976288,538976288,538976288,840973115,1953046569,1819287667,543515489,1948282473,1142973800,1344295759,222843969,538976266,538976288,538976288,540752672,1763715379,1752440942,1297031269,1230391630,857757509,1763718712,1635021678,1952541804,544108393,1701996900,1919906915,537529721,538976288,538976288,991961120,537529659,538976288,538976288,1159733280,1768776056,1700029806,1766225016,1528849772,963799364,537529693,538976288,538976288,1528832032,1651340622,1563587173,540883488]},{"sector":4,"length":512,"data":[1701734732,1651340622,1767338597,673212532,1230390596,1210860867,1296387401,168634668,538976288,538976288,538976288,1920226139,929525353,1027219549,1852394528,1314594917,1700949365,224211570,538976266,538976288,538976288,543574304,1920226139,929525353,540876893,1851878466,1920226155,224882281,538976266,538976288,538976288,538976288,1951619872,1735289202,975199543,1967530045,1632660588,1867802740,1296648224,1395543365,1344295769,1332245601,226061422,538976266,538976288,538976288,1684948256,168650313,538976288,538976288,538976288,1528849993,1769108563,1563912046,1109409056,1802396012,1769108563,168650606,538976288,538976288,538976288,538976288,1920226139,929525353,1027219549,1766087456,1549611634,1162692936,1498623565,537529683,538976288,538976288,1159733280,1718183022,168626701,538976288,538976288,538976288,1293957947,543517537,1701999987,1296648224,1746947397,1948283745,656434536,825912623,2004033575,1751348329,1819178272,544437093,1852732786,224882281,538976266,538976288,538976288,540752672,1629515375,793989152,168635954,538976288,538976288,538976288,168639291,538976288,538976288,538976288,1293968969,1869767529,1851877443,225207662,538976266,538976288,538976288,538976288,1951619872,1735289202,975199544,1816272957,1399549537,1852404340,537529703,538976288,538976288,1159733280,224752492,538976266,538976288,538976288]},{"sector":5,"length":512,"data":[538976288,1951619872,1735289202,975199544,1831804989,168636730,538976288,538976288,538976288,1768189509,218762598,538976266,538976288,538976288,540752672,1210082889,1296387401,544434464,1126198889,1229344335,1498623559,1869815891,1752655213,744845925,1818584096,543519845,168653929,538976288,538976288,538976288,168639291,538976288,538976288,538976288,1528849993,1769108563,1563912046,1852785440,1852399988,1162092659,1162037590,538970637,538976288,538976288,538976288,1716068384,1951619872,1735289202,1126194487,1635020399,544435817,825912623,538970637,538976288,538976288,538976288,538976288,1398480928,1852404340,542980199,1109409082,1802396012,1769108563,168650606,538976288,538976288,538976288,538976288,1768189509,537529702,538976288,538976288,538976288,1293951008,1718183023,2019906681,1818838644,1146822757,1564045929,538970637,538976288,538976288,538976288,538976288,1698963488,1702126956,1701734732,1968069408,1919246957,168647986,538976288,538976288,538976288,538976288,1298427461,1718183023,2019906681,1818838644,537529701,538976288,538976288,1159733280,1718183022,168626701,538976288,538976288,538976288,1092631355,673211492,1734963823,1818324585,1852402720,1868767333,1767994478,1735289198,1229463593,541934925,1948282740,1864396911,1329799270,1195984462,1398362926,538970637,538976288,538976288,993730592,538970637,538976288]},{"sector":6,"length":512,"data":[538976288,2017796128,1852403041,2019906661,1818838644,1146822757,1564045929,538970637,538976288,538976288,1716068384,1951619872,1735289202,1126194487,1635020399,544435817,1230390596,168641859,538976288,538976288,538976288,538976288,1768189773,1700034918,1766225016,1528849772,963799364,537529693,538976288,538976288,538976288,538976288,1092624416,1917805668,1851877443,1766614375,1767335278,673212532,1230390596,1210860867,1296387401,1629497644,1398481011,1852404340,542979943,1920226139,946302569,1950425181,1734689312,1768844905,168650606,538976288,538976288,538976288,538976288,1298427461,1718183023,2019906681,1818838644,537529701,538976288,538976288,1159733280,224752492,538976266,538976288,538976288,538976288,1685015840,1417242217,1182038117,543517801,1919501403,168647993,538976288,538976288,538976288,538976288,538976288,1331979329,1634222962,1281714030,1466265193,543716457,1447380008,742736713,1162692936,539569229,572552033,1230390596,1530742083,1769108563,1563912046,1951619872,1735289202,539123000,1109423169,1852401509,1735289198,538970637,538976288,538976288,538976288,1850023968,1685015908,1417242217,1182038117,224750697,538976266,538976288,538976288,1684948256,168650345,538976288,538976288,538976288,1919501403,975199540,1229463613,776815949,223566163,538976266,538976288,1684948256,991979113,1160716347,1042306136,168636448]},{"sector":7,"length":512,"data":[538970637,538976288,993730592,1681989664,857874532,1632450104,790652276,544503909,1948263022,1869881455,1718558832,1313817376,776423750,223566163,538976266,538976288,221985568,538976266,538976288,1635271968,1701734765,1954047316,1701603654,1766087456,224213362,538976266,538976288,1968069408,1919246957,975199538,1766596669,1968072046,1919246957,1752459607,1162094624,1162037590,909652780,1163149645,168634668,538976288,538976288,1920226139,929525353,1027219549,1766087456,1549611634,1295398963,776295489,223566163,538976266,538976288,543574304,1836404315,846357858,1044127837,168636448,538976288,538976288,538976288,1768189773,1700034918,1766225016,1528849772,963799364,537529693,538976288,538976288,538976288,1142956064,1952803941,1852394597,1314594917,1700949365,542978674,540752672,1701602628,857761140,1632450104,1814062452,543518313,1763731049,544417652,1919248500,537529701,538976288,538976288,1159733280,1867342958,2036754788,1954047316,1701603654,538970637,538976288,1850023968,224815460,538976266,538976288,1635271968,1701734765,1954047316,1701603654,1766087456,224213362,538976266,538976288,1685015840,1417242217,1182038117,543517801,1919501403,168647993,538976288,538976288,538976288,1331979329,1634222962,1281714030,1466265193,543716457,1447380008,742736713,1295398963,742741057,1935745065,1162093088,1162037590,1951619901,1735289202]},{"sector":8,"length":512,"data":[1528847671,1769108563,1563846510,1950425122,1734689312,1768844905,168650606,538976288,538976288,1298427461,1718183023,2019906681,1818838644,537529701,538976288,1528832032,896690500,1027219549,909652768,1163149645,1398362926,168626701,538976288,538976288,538983227,543450177,1313756486,1395543109,1948275545,1869881455,1718558832,1313817376,776423750,223566163,538976266,538976288,221985568,538976266,538976288,1635271968,1701734765,1954047316,1701603654,1766087456,224213362,538976266,538976288,1700354848,1316114291,542978415,1495285050,538970637,538976288,1314594848,1700949365,542978674,1277181242,1315270249,1700949365,1953060722,1143480424,1128879685,1430662213,1279610446,168634668,538976288,538976288,1920226139,929525353,1027219549,1852394528,1314594917,1700949365,224211570,538976266,538976288,543574304,1920226139,929525353,540876893,1851878466,1920226155,224882281,538976266,538976288,538976288,1634288672,543649644,1936021851,1867412047,1428184369,1699243379,1919247457,548807200,1953849667,560885609,220383008,537529610,538976288,538976288,538976288,1461723168,543716457,544437602,1953718637,1852404325,1768169575,1663069043,1920233071,1701604463,673215346,1629516641,1713399154,1684960623,544106784,1095977285,538970637,538976288,538976288,538976288,1634541600,1852401763,740914021,1701344288,1763730802,543236211,1818322290,1701146144]},{"sector":9,"length":512,"data":[1869881444,1634034720,1769414764,1142974580,1667592809,1699553396,2037542765,538970637,538976288,538976288,538976288,1665212448,1936942435,1296312352,1948264769,1701978223,1852795239,1718558835,1919514144,1818326388,1835363616,779711087,1314211360,776750414,542333267,1629516649,538970637,538976288,538976288,538976288,1329864736,1701060691,1701013878,1769104416,544367990,1952540788,1852793632,1684956532,1769414771,1948280948,544434536,1651470960,544040300,1679849826,1818391919,537529701,538976288,538976288,538976288,1646272544,1701209717,1735289202,1095582752,1767055406,543515502,1295398963,543519841,1936027492,1414483488,1886745376,1953656688,1296324128,1702043713,1667855986,221016933,538976266,538976288,538976288,538976288,543520544,1869771891,2037147502,1735750432,1953719655,1936615712,1819042164,543649385,1313756486,1395543109,1696617305,544105846,1970235508,2032167015,225604975,538976266,538976288,538976288,538976288,1937072672,1935764768,544367988,1953394531,1819045746,1830842981,1931508065,1869639797,1444967538,776031556,168626701,538976288,538976288,538976288,538976288,2032166473,1746957679,543520353,1969365089,1634541683,1919251571,1852793632,1819243124,544367980,1852139636,543520544,1751607656,168655212,538976288,538976288,538976288,538976288,1868785010,1852140909,1852383332,1818326131,1735289196,1314211360,776750414,542333267]}],[{"sector":1,"length":512,"data":[1868981602,1914725746,1768844917,1327523694,1447644749,777471305,538970637,538976288,538976288,538976288,1430659104,1279610446,1398362926,1937075488,1869357172,1684366433,1717920288,543519343,1295398963,776295489,777214291,168626701,538976288,538976288,538976288,538976288,2032168772,1998615919,544501345,1763733364,1635021678,1176530028,1162759765,1498623564,168640339,538970637,538976288,538976288,1850023968,1634288740,224882540,538976266,538976288,1684948256,168650313,538976288,538976288,1528849993,1332962649,829378162,540876893,537529721,538976288,538976288,1226842144,1314594918,1700949365,542978674,807419452,538970637,538976288,538976288,538976288,1867325472,2036754788,1954047316,1701603654,1766087456,224213362,538976266,538976288,538976288,538976288,538976288,1818575904,1281717349,543518313,1836404315,846357858,991961181,1698963515,1702126956,1314211360,541869390,1701734764,543582496,1931965545,1701344288,168650098,538976288,538976288,538976288,538976288,1298427461,1718183023,2019906681,1818838644,537529701,538976288,538976288,1159733280,1718183022,538970637,538976288,538976288,2017796128,1852403041,2019906661,1818838644,1146822757,1564045929,538970637,538976288,538976288,1867325472,2036754788,1954047316,1701603654,1766087456,224213362,538976266,538976288,538976288,538976288,1684291872,1749250639,1701277281,1701734732]},{"sector":2,"length":512,"data":[1752459607,1162094624,1162037590,1314211372,743195982,1935745065,1162093088,1162037590,1766087485,1549611634,1313756486,1395543109,539120473,1109423169,1852401509,1735289198,538970637,538976288,538976288,1850023968,1685015908,1417242217,1182038117,224750697,538976266,538976288,538976288,1766087456,542979698,1176517946,1162759765,1498623564,537529683,538976288,538976288,991961120,537529659,538976288,538976288,991961120,1698963515,1702126956,1836016416,1769235824,1881171822,1919381362,1696623969,1769108590,168653669,538976288,538976288,538976288,168639291,538976288,538976288,538976288,1835104325,1415933545,1182038117,543517801,1869562459,1769096308,979199350,1414873436,1163412815,1094856259,537529684,538976288,538976288,1528832032,1651340622,1563587173,540883488,1701734732,1651340622,1767338597,673212532,1146508588,220802131,538976266,538976288,538976288,543574304,1836404315,846357858,1044127837,168636448,538976288,538976288,538976288,538976288,1768189773,1967225190,2017816436,1094869861,537529684,538976288,538976288,538976288,538976288,1142956064,1952803941,1852394597,1314594917,1700949365,542978674,540752672,1701602628,1428186484,777208918,541937475,1701734764,543582496,1931965545,1701344288,168650098,538976288,538976288,538976288,538976288,1298427461,1718183023,1953841529,1702380911,1413562979,538970637,538976288,538976288]},{"sector":3,"length":512,"data":[1850023968,224815460,538976266,538976288,538976288,1635271968,1701734765,1954047316,1701603654,1766087456,224213362,538976266,538976288,538976288,1968069408,1919246957,975199538,1766596669,1968072046,1919246957,1752459607,1162094624,1162037590,1146508588,220802131,538976266,538976288,538976288,543574304,1836404315,846357858,1044127837,168636448,538976288,538976288,538976288,538976288,1768189773,1700034918,1766225016,1528849772,963799364,537529693,538976288,538976288,538976288,538976288,1142956064,1952803941,1852394597,1314594917,1700949365,542978674,540752672,1701602628,1428186484,777208918,542333267,1701734764,543582496,1931965545,1701344288,168650098,538976288,538976288,538976288,538976288,1298427461,1718183023,2019906681,1818838644,537529701,538976288,538976288,1159733280,1718183022,538970637,538976288,1850023968,543582564,540752672,1953721929,543976545,1313756486,1395543109,168645465,538970637,538976288,2017796128,1852403041,2019906661,1818838644,1146822757,1564045929,538970637,538976288,1314594848,1700949365,542978674,1277181242,1315270249,1700949365,1953060722,1143480424,1128879685,760425541,742736713,537529641,538976288,1226842144,1314594918,1700949365,542978674,807419452,538970637,538976288,538976288,1867325472,2036754788,1954047316,1701603654,1766087456,224213362,538976266,538976288,538976288,538976288,1818575904]},{"sector":4,"length":512,"data":[1281717349,543518313,1836404315,846357858,991961181,1698963515,1702126956,1718571808,1128869236,1768693829,1763730798,1953046630,1948283687,1701995880,538970637,538976288,538976288,1850023968,1685015908,1417242217,1182038117,224750697,538976266,538976288,1684948256,168650345,538976288,538976288,1835104325,1415933545,1182038117,543517801,1919501403,168647993,538976288,538976288,1836404315,846357858,1027219549,1852394528,1836404325,1467114850,543716457,1447380008,742736713,1162696014,690766151,538970637,538976288,1716068384,1968069408,1919246957,1008753970,221257790,538976266,538976288,538976288,1685015840,1417242217,1182038117,543517801,1919501403,168647993,538976288,538976288,538976288,538976288,1701602628,1766614388,1528849774,1651340622,1563587173,993730592,1818575904,543519845,1162696014,1395540295,1814057817,543518313,1763731049,544417652,1919248500,537529701,538976288,538976288,1159733280,1867342958,2036754788,1954047316,1701603654,538970637,538976288,1850023968,224815460,538976266,538976288,1635271968,1701734765,1954047316,1701603654,1766087456,224213362,538976266,538976288,1968069408,1919246957,975199538,1766596669,1968072046,1919246957,1752459607,1162094624,1162037590,909652780,743981389,537529641,538976288,1226842144,1314594918,1700949365,542978674,807419452,538970637,538976288,538976288,1867325472,2036754788,1954047316]},{"sector":5,"length":512,"data":[1701603654,1766087456,224213362,538976266,538976288,538976288,538976288,1818575904,1281717349,543518313,1836404315,846357858,991961181,1698963515,1702126956,909652768,542654797,1701734764,543582496,1931965545,1701344288,168650098,538976288,538976288,538976288,1298427461,1718183023,2019906681,1818838644,537529701,538976288,1159733280,1718183022,538970637,538976288,2017796128,1852403041,2019906661,1818838644,1146822757,1564045929,538970637,538976288,1314594848,1700949365,542978674,1277181242,1315270249,1700949365,1953060722,1143480424,1128879685,1162947653,690769229,538970637,538976288,1716068384,1968069408,1919246957,1008753970,221257790,538976266,538976288,538976288,1685015840,1417242217,1182038117,543517801,1919501403,168647993,538976288,538976288,538976288,538976288,1701602628,1766614388,1528849774,1651340622,1563587173,993730592,1818575904,543519845,1296909649,1852402720,1718165605,661940512,1752440947,224752229,538976266,538976288,538976288,1684948256,1768189773,1700034918,1766225016,168650092,538976288,538976288,1768189509,537529702,538976288,1159733280,1768776056,1700029806,1766225016,1528849772,963799364,537529693,538976288,1528832032,1651340622,1563587173,540883488,537529648,538976288,1528832032,1651340622,1563587173,540883488,1701734732,1651340622,1767338597,673212532,1230390596,1160529219,942886221,220802102,538976266]},{"sector":6,"length":512,"data":[538976288,543574304,1836404315,846357858,1044127837,168636448,538976288,538976288,538976288,1768189773,1700034918,1766225016,1528849772,963799364,537529693,538976288,538976288,538976288,1142956064,1952803941,1852394597,1314594917,1700949365,542978674,540752672,1701602628,1159751028,942886221,1768693814,1763730798,1953046630,1948283687,1701995880,538970637,538976288,538976288,1850023968,1685015908,1417242217,1182038117,224750697,538976266,538976288,1684948256,168650345,538970637,538976288,1716068384,1684360480,1866686825,544501365,221257790,538976266,538976288,538976288,543574304,1986622020,1383287141,1987013989,1818386789,1113268325,1148481391,1702259058,537529693,538976288,538976288,538976288,1226842144,1146822758,1563652713,540949536,1851878466,1920226155,224882281,538976266,538976288,538976288,538976288,538976288,543574304,1701603654,1936291909,1528853364,1953460034,1986622020,1547328869,1919501403,168647987,538976288,538976288,538976288,538976288,538976288,538976288,1919501403,975199539,1816272957,1399549537,1852404340,537529703,538976288,538976288,538976288,538976288,1159733280,1718183022,538970637,538976288,538976288,538976288,1850023968,224815460,538976266,538976288,538976288,538976288,543574304,1919501403,1008753972,1816272958,1399549537,1852404340,537529703,538976288,538976288,538976288,538976288,1226842144]},{"sector":7,"length":512,"pattern":538976288,"data":[1766203494,2017813868,1937011561,1866619680,1917088879,1566930537,1146838074,1563718249,538970637,538976288,538976288,538976288,538976288,538976288,1146822688,1563718249,540883488,1851878466,1920226155,224882281,538976266,538976288,538976288,538976288,538976288,1684948256,168650345,538976288,538976288,538976288,538976288,1768189509,537529702,538976288,538976288,538976288,1226842144,1146822758,1563783785,540949536,1851878466,1920226155,224882281,538976266,538976288,538976288,538976288,538976288,543574304,1701603654,1936291909,1528853364,1953460034,1986622020,1547328869,1919501403,168647989,538976288,538976288,538976288,538976288,538976288,538976288,1919501403,975199541,1816272957,1399549537,1852404340,537529703,538976288,538976288,538976288,538976288,1159733280,1718183022,538970637,538976288,538976288,538976288,1850023968,224815460,538976266,538976288,538976288,538976288,543574304,1919501403,1008753974,1816272958,1399549537,1852404340,537529703,538976288,538976288,538976288,538976288,1226842144,1766203494,2017813868,1937011561,1866619680,1917088879,1566930537,1146838074,1563849321,538970637,538976288,538976288,538976288,538976288,538976288,1146822688,1563849321,540883488,1851878466,1920226155,224882281,538976266,538976288,538976288,538976288,538976288,1684948256,168650345]},{"sector":8,"length":512,"data":[1768189509,537529702,538976288,538976288,538976288,1528832032,930244932,1027219549,1766087456,542978930,1919501403,1528847668,896690500,1146822749,1563849321,538970637,538976288,538976288,538976288,1718165536,1766087456,542979954,1109409340,1802396012,1769108563,168650606,538976288,538976288,538976288,538976288,538976288,1818323268,1428186991,1699243379,1919247457,548676128,1634036816,1310745971,778400879,-1021301202,218762530,538976266,538976288,538976288,538976288,538976288,538976288,1701336096,1819239968,1769434988,1327523694,1447644749,542590281,540424243,1701603686,1918967923,1869488229,1701978231,1701995878,1684366190,225339680,538976266,538976288,538976288,538976288,538976288,538976288,1970239776,1146822770,1564045929,1818846752,168639077,538970637,538976288,538976288,538976288,538976288,538976288,1764630560,1766087456,224211826,538976266,538976288,538976288,538976288,538976288,538976288,543764000,1919501403,168647988,538976288,538976288,538976288,538976288,538976288,538976288,1528850734,896690500,537529693,538976288,538976288,538976288,538976288,538976288,773857312,1146822761,1563849321,168626701,538976288,538976288,538976288,538976288,538976288,538976288,1634036816,1830839667,543517537,1701999987,1634235424,1752440948,1650532453,543520367,1701603686,539587368,1936291941,1852776564,1701344288,538970637]},{"sector":9,"length":512,"data":[538976288,538976288,538976288,538976288,538976288,1868701728,1679848559,1701540713,543519860,544567161,1819044215,1702065440,1701345056,1970413678,1852403310,1297031271,1230391630,857757509,221132344,537529610,538976288,538976288,538976288,538976288,1159733280,1766089838,1735355489,538970637,538976288,538976288,538976288,1850023968,224815460,538976266,538976288,538976288,1684948256,168650345,538976288,538976288,1768189509,537529702,1159733280,1718183022,991961120,1850286139,1818326131,1735289196,909652768,1701868320,1768319331,1768300643,225666412,1684948234,1668248144,1920296037,218762597,540752650,1936287828,1869770784,1937010797,1701344288,1702065440,1869881458,1701147424,1701344288,1095062048,776293700,542398548,1701603686,1684955424,1718165548,1701344288,1635197049,1948284014,990514543,1702043707,1953046629,1852383276,1701539702,1163010163,1162691649,1163412782,544175136,1886611812,544825708,1864397929,1752440942,1668489317,1852138866,990514478,1342836027,1701015410,1701999972,1869762592,1182036077,1699902063,1699570785,538970637,1766072352,1735355489,1700354848,1316114291,542978415,1214608213,1701077349,-1272831886,1701597216,543519585,1702129486,539897390,168633027,538970637,538976288,1750343712,1163010149,1162691649,1818846752,1868767333,1767994478,1847620462,1763735397,1919903342,1769234797,1998614127,1751345512,2036428064,538970637]}]],[[{"sector":1,"length":512,"data":[538976288,1700929568,1886218528,1635021423,1948284014,1870209135,168636021,538970637,538976288,1866735648,1970239776,1851881248,1869881460,1869573152,1952522347,1701344288,1095062048,776293700,542398548,1701603686,2003791392,218762559,538976266,1684948256,1818323268,168650607,538976288,1528849993,1332962649,829378162,540876893,537529721,538976288,1528832032,1651340622,1563521637,540883488,537529648,538976288,1528832032,1651340622,1563587173,540883488,537529648,538976288,1226842144,1699553382,1130457444,1953396079,807419424,1348143629,1953393007,168647989,538976288,538976288,538976288,1176528457,1164274793,1953720696,1230708851,1635021678,1952541804,1148088169,1667592809,2037542772,1163025501,1162691649,1163412782,538970637,538976288,538976288,538976288,1716068384,1818838560,1769489765,544437363,1936607579,1819042164,1869182049,1919501422,1869898597,1549629810,1145128274,1412318541,168645720,538976288,538976288,538976288,538976288,538976288,1836404315,829580642,1027219549,168636704,538976288,538976288,538976288,538976288,1768189509,537529702,538976288,538976288,1159733280,1718183022,538970637,538976288,538976288,1716068384,1968069408,1919246957,1025531185,168636448,538976288,538976288,538976288,538976288,1293968969,1634296933,1853189955,540942452,537529650,538976288,538976288,538976288,538976288,1142956064,1869373801,1934958695]},{"sector":2,"length":512,"data":[1634027621,544367972,1226880034,1096045390,1847610444,1935959397,1970239776,1701322866,774795372,583213102,168626701,538976288,538976288,538976288,538976288,538976288,538976288,1634036816,1881171315,1701011820,1701344288,2003136032,1313689376,1162434121,942874711,1951735862,1769237609,1142977381,1701540713,224752756,538976266,538976288,538976288,538976288,538976288,538976288,544106784,1986622052,1146822757,1563521641,218762542,538976266,538976288,538976288,538976288,538976288,1684948256,1818323268,168650607,538976288,538976288,538976288,538976288,538976288,1836404315,846357858,1027219549,168636960,538976288,538976288,538976288,538976288,1702063173,538970637,538976288,538976288,538976288,538976288,1766072352,1735355489,1702057248,1684104520,572551781,1313415348,1279349843,1701716044,544433253,1920298873,1818585120,774778480,220381984,537529610,538976288,538976288,538976288,538976288,538976288,1344282656,1935762796,1819287653,543515489,543516788,544695662,1229868367,1464158550,909652768,1937330976,544040308,1802725700,1702130789,538970637,538976288,538976288,538976288,538976288,538976288,1852383264,1769104416,1528849782,829581636,168635997,538970637,538976288,538976288,538976288,538976288,1850023968,1634288740,224882540,538976266,538976288,538976288,538976288,538976288,1968069408,1919246957,975199538,221323325]},{"sector":3,"length":512,"data":[538976266,538976288,538976288,538976288,1684948256,168650313,538976288,538976288,538976288,538976288,1869901639,1867537184,896822889,537529693,538976288,538976288,1159733280,1718183022,538970637,538976288,1850023968,224815460,538976266,538976288,543574304,1836404315,846357858,1044127837,168636448,538976288,538976288,538976288,1131701587,1701999221,1699574894,1415670116,1314594927,1700949365,224211570,538976266,538976288,1684948256,168650345,538976288,538976288,1851877443,1766090087,1952671090,1417245295,1230708847,1635021678,1952541804,1148088169,1667592809,2037542772,537529693,538976288,1377837088,1528843861,1953721929,1634495585,1852795252,1701996868,1919906915,1381784953,1296318789,1480928837,1968250949,1819567465,1867391097,1836020304,168653936,538976288,538976288,1851877443,1766090087,1952671090,1417245295,1230708847,1635021678,1917217900,1917087087,1566930537,168647738,538976288,538976288,1634036803,1919112050,225338725,538976266,1684948256,168650345,1348759109,1701015410,1701999972,168626701,1411398459,544434536,1718773104,1936552559,1702257952,1752463730,543649385,1952540788,1952802592,1868832883,1629513070,1919251558,1701344288,1767992608,1701650542,572552558,1953721929,543976545,543452769,1953069125,990514466,1886330939,1852795252,544434464,1701602675,1684370531,1750343726,1634541669,1948282473,1735289192,1953046643,1701798944]},{"sector":4,"length":512,"data":[1918967923,168639077,168639291,538983227,1226844465,1635021678,1629514860,1931508078,1667591269,543450484,1701603686,168636019,538983227,1142958386,1819308905,1377859937,1296318789,1481911877,1718165588,1936024608,1684370025,544825888,1919251317,993724941,691216416,1685015840,544826985,1179537219,1395541833,1629508441,1092641902,1162826837,776160600,542392642,1679844969,1919513445,1646290021,1937055865,168653413,538983227,1159735604,1969448312,857761140,1163081272,542135636,543452769,1163089487,223368532,540752650,539571488,1769238607,1818324591,1881176428,1702061426,1629516910,1651864352,1852140845,1752440949,1629516897,2003790956,1752440947,1937055845,1948283493,1869422703,2036754788,993724941,538976288,777408288,542392642,1763733364,1635021678,1931504748,543518063,1934775124,1701345056,1953046638,1853190688,168636019,168639291,1668248144,1920296037,2017796197,1867674729,1852404853,168653669,538970637,1699946528,1953448564,1282240372,1415933545,1816273007,1399549537,1852404340,537529703,1226842144,1314594918,1700949365,542979954,221257790,538976266,538976288,543574304,1768187213,1970226017,1008759918,221388861,538976266,538976288,538976288,1702187296,1701603654,1970238023,540418160,1867804239,1768187213,221323361,538976266,538976288,1936475424,537529701,538976288,538976288,1361059872,1766221173,1917281644,544241007,1850679350,1699573588]},{"sector":5,"length":512,"data":[543254884,537529650,538976288,1159733280,1718183022,538970637,1850023968,224807268,537529610,1193287712,1968272485,1766220901,544433516,1348824655,1766617701,168650094,538976288,1528849993,1651340622,1563914853,807419424,538970637,538976288,1866735648,1869762592,1182036077,1699902063,1699570785,538970637,1850023968,224815460,537529610,991961120,1852383291,1953654131,1684955424,1818584096,543519845,1768693857,1629513070,1752440948,1869881445,1718558832,1313817376,776423750,777214291,538970637,993730592,543574304,1953460034,1701603654,1685015923,1701406313,1970479204,1902474082,1953391989,1914730860,1920300133,1176531822,1163086913,1701344288,1752440942,537529701,991961120,1937055803,1746956901,1679848289,1818325865,1702326124,1751326820,1701277281,1869881459,1414873376,1163412815,1094856259,1851859028,1329799268,1195984462,1398362926,537529646,991961120,1766203451,1864393838,1763734645,1869422694,2036754788,543649385,1297630510,1818846752,1864397669,1701978226,1713400929,1936026729,537529646,991961120,537529659,1226842144,1314594918,1700949365,542979954,221257790,538976266,538976288,1766087456,542980466,1528839482,1953460034,1986622020,1547328869,1179537219,1395541833,168645465,538976288,538976288,1768189773,1866692966,1734960750,225671507,538976266,538976288,538976288,1952797472,1701603654,1097815155,1634028660,538997875,221263136,538976266]},{"sector":6,"length":512,"data":[538976288,538976288,1952797472,1717990722,1416852069,1282687343,1953718629,221262624,538976266,538976288,538976288,1936607520,1098150501,1852394612,1698832485,1852729703,543649385,1296388642,1313415226,1279349843,1230258508,1344294479,1380405074,773868865,541939781,1414743380,537529634,538976288,1159733280,1867342958,2036754788,1718513475,2035509097,537529715,538976288,1226842144,1866604646,1766225007,1299408236,1718183023,224683369,538976266,538976288,538976288,543574304,1701603654,1936291909,1528853364,1953460034,1986622020,1547328869,1179537219,1160660809,168643928,538976288,538976288,538976288,538976288,1835104325,1415933545,1182038117,543517801,1869562459,1769096308,979199350,1313817436,776423750,223172677,538976266,538976288,538976288,538976288,1968069408,1919246957,975199538,1766596669,1968072046,1919246957,1752459607,1163012128,1226848845,1096045390,1413565516,542003017,1196380752,541933906,1297630510,1397052448,690760788,538970637,538976288,538976288,1850023968,224815460,538976266,538976288,538976288,1685015840,1132029545,1768320623,1937331047,538970637,538976288,538976288,538976288,1698963488,1702126956,1701734732,1734689312,1768844905,168650606,538976288,538976288,538976288,1298427461,1718183023,1852785529,1399286118,168653689,538976288,538976288,538976288,1528849993,1651340622,1563587173,540949536,537529648,538976288]},{"sector":7,"length":512,"data":[538976288,538976288,1528832032,963799364,1027219549,1866619680,1917088879,1566930537,1329814586,1195984462,1297630510,538970637,538976288,538976288,538976288,1866670112,1766226288,544433516,1836020326,1866619680,1917088879,1566930537,1948277818,1113268335,1148481391,1702259058,542915165,1701410129,226061428,538976266,538976288,538976288,538976288,538976288,1313817376,776423750,542333267,1126200161,1229344335,1480928839,537529677,538976288,538976288,538976288,1159733280,1866687598,1766226288,225666412,538976266,538976288,538976288,1684948256,168650345,538976288,538976288,538976288,1142976324,1466720613,1097364585,1162826837,222512472,538976266,538976288,538976288,543574304,942878776,537529654,538976288,538976288,538976288,1226842144,1398480998,1852404340,542978407,1698963517,1701602675,168653923,538976288,538976288,538976288,538976288,538976288,1142976324,1466720613,1130919017,1229344335,537529671,538976288,538976288,538976288,1159733280,1718183022,538970637,538976288,538976288,1850023968,224815460,538976266,538976288,1684948256,538994281,540752672,1953460066,1818846752,1830843237,1718183023,224683369,538976266,1684948256,538994249,538976288,540752672,1701603686,1702043763,1952671084,168649829,538970637,1716068384,1951619872,1735289202,1025531185,1936016416,1667591269,537529716,538976288,1528832032,1651340622,1563521637]},{"sector":8,"length":512,"data":[540883488,1527385392,1852403536,224212596,538976266,538976288,543574304,1768187213,1970226017,1042314350,168636448,538976288,538976288,538976288,1176528457,1164274793,1953720696,1230708851,1635021678,1952541804,1148088169,1667592809,2037542772,942890077,1413565750,1498623557,537529683,538976288,538976288,538976288,1226842144,1766203494,2017813868,1937011561,1850301216,1818326131,1769234796,1766092399,1952671090,1568240239,909652828,1431586131,1480928848,537529669,538976288,538976288,538976288,538976288,1528832032,1651340622,1563521637,540883488,537529649,538976288,538976288,538976288,1159733280,224752492,538976266,538976288,538976288,538976288,538976288,1634288672,543649644,1214608213,1701077349,-1272831886,1397639456,1280065876,1701146144,2032169828,544372079,1886152040,539897390,168633027,538970637,538976288,538976288,538976288,538976288,538976288,1817190432,1702060389,1634496544,1948280163,1847616872,1327527781,1447644749,542590281,540424243,1953724755,1142975845,1701540713,224752756,538976266,538976288,538976288,538976288,538976288,538976288,544106784,1986622052,1146822757,1563521641,218762542,538976266,538976288,538976288,538976288,538976288,1684948256,1818323268,168650607,538976288,538976288,538976288,538976288,538976288,1869901639,1867537184,913600105,537529693,538976288,538976288,538976288,1159733280,1718183022]},{"sector":9,"length":512,"data":[538970637,538976288,538976288,1850023968,224815460,538976266,538976288,1684948256,168650345,538976288,538976288,1528849993,1651340622,1563521637,824196384,538970637,538976288,538976288,1699946528,1920287604,1953391986,1768187213,544167009,537529649,538976288,1159733280,1718183022,538970637,538976288,1431445536,1230708814,1635021678,1952541804,1148088169,1667592809,2037542772,942890077,1413829430,1160663125,1528841560,1953721929,1634495585,1852795252,1701996868,1919906915,861691257,1095579192,1395541332,1361072985,1952803189,1310751084,1869762671,225734765,538976266,538976288,1701593888,1666413153,1852138866,538970637,1850023968,224815460,537529610,1226842144,1398480998,1852404340,542978663,1698963517,1701602675,168653923,538976288,538976288,1836404315,829580642,1027219549,168636448,1768902747,1563915374,538970637,538976288,1716068384,1684360480,1866686825,544501365,221257790,538976266,538976288,538976288,543574304,1701603654,1936291909,1528853364,1953721929,1634495585,1852795252,1701996868,1919906915,1331453305,1447644749,777471305,222648389,538976266,538976288,538976288,538976288,543574304,1701603654,1936291909,1528853364,1953721929,1634495585,1852795252,1701996868,1919906915,1331453305,1413829462,1160663125,168641880,538976288,538976288,538976288,538976288,538976288,1836404315,829580642,1027219549,168636704,538976288,538976288]}],[{"sector":1,"length":512,"data":[538976288,538976288,1702063173,538970637,538976288,538976288,538976288,538976288,1766072352,1735355489,1702057248,1684104520,572551781,1313415348,1279349843,1701716044,544433253,1920298873,1818585120,774778480,220381984,537529610,538976288,538976288,538976288,538976288,538976288,1344282656,1935762796,1819287653,543515489,543516788,544695662,1229868367,1464158550,909652768,1937330976,544040308,1802725700,1702130789,538970637,538976288,538976288,538976288,538976288,538976288,1852383264,1769104416,1528849782,829581636,168635997,538970637,538976288,538976288,538976288,538976288,1850023968,1634288740,224882540,538976266,538976288,538976288,538976288,538976288,1953449760,1348149359,1953393007,168647991,538976288,538976288,538976288,538976288,1768189509,537529702,538976288,538976288,1159733280,1718183022,538970637,538976288,1850023968,224815460,538976266,538976288,543574304,1836404315,829580642,540876893,537529649,538976288,538976288,1394614304,1967354981,1852142194,1684360564,1867800937,168636704,538976288,538976288,1768189509,537529702,538976288,1126178848,1735287144,1919501413,1869898597,1867807090,1850301216,1818326131,1769234796,1766092399,1952671090,1568240239,538970637,538976288,1431445536,1230708814,1635021678,1952541804,1148088169,1667592809,2037542772,1448041565,1431586131,1480928848,1968250949,1819567465,1867391097]},{"sector":2,"length":512,"data":[1836020304,168653936,538976288,538976288,1851877443,1766090087,1952671090,1417245295,1230708847,1635021678,1917217900,1917087087,1566930537,168647738,538976288,538976288,1634036803,1919112050,225338725,537529610,538976288,1226842144,1398480998,1852404340,542978919,1698963517,1701602675,168653923,538976288,538976288,538976288,1818323268,1528850287,1332962649,829378162,1934958685,1634027621,544367972,1344320546,1935762796,1867391077,774792564,583213102,168626701,538976288,538976288,538976288,538976288,543516756,1229868367,1464158550,1667330080,1701273963,1668180256,1701082476,543236211,1651340654,1864397413,1953833062,1953066089,537529721,538976288,538976288,538976288,1881153568,1919381362,544435553,1952540788,1851876128,1752065312,1701015137,1701344288,1701867296,1769234802,1864396399,1870209126,1847620213,168654693,538976288,538976288,538976288,538976288,1953265005,1935766633,1735289195,1986946336,1852797545,1953391981,1631920174,1864394851,1752440934,543519589,1735357040,1936548210,538970637,538976288,538976288,538976288,1919950880,1684633199,1931506533,1768121712,543385958,1701733730,1937008998,1953849888,1953459744,1819042080,543584032,1835362420,1701994784,538970637,538976288,538976288,538976288,1768693792,2037146987,544175136,1847616866,1701078373,2036473956,1702257952,1852799346,1752637541,1970413679,1327526766,1447644749,777471305]},{"sector":3,"length":512,"data":[226050592,538976266,538976288,538976288,538976288,1869770784,1768188278,1948280686,1702061416,1885430560,1818845793,1701409897,1852383347,1885696800,1952543329,1953833061,1953066089,537529721,538976288,538976288,538976288,1881153568,1919381362,745762145,543520544,543519329,1701601889,544175136,1768843629,1702521197,1701344288,1869439264,544501365,1377855087,168643905,538976288,538976288,538976288,538976288,1229868367,1464158550,1702065440,1851859059,1869881444,2019650848,2053729641,1752440933,1717903461,1768122726,2036559461,543584032,1920298873,538970637,538976288,538976288,538976288,1868767264,1953853549,1931506277,1702130553,168636013,538970637,538976288,538976288,538976288,1867718688,1864394093,1297031270,1230391630,1931958085,1769239840,2037672300,1869770784,1835102823,1970086003,1646294131,1970413669,1700929646,1701998438,538970637,538976288,538976288,538976288,1297031200,1230391630,1629509445,1998611566,543976553,2036429939,1936028192,1852138601,1852383348,1835363616,544830063,1702127201,1752440946,168655205,538976288,538976288,538976288,538976288,1953069157,1868111918,1634541685,1751326841,1702063983,544175136,1953721961,543976545,544829025,1651339107,1952542313,544108393,1948280431,1702061416,538970637,538976288,538976288,538976288,1919950880,1634887535,673215341,1819042147,1411408997,695423571,1701345056,1702258030,1870209138]},{"sector":4,"length":512,"data":[1327526517,1094856278,1768300628,1763730796,1970413683,537529710,538976288,538976288,538976288,1948262432,1953701999,544502369,1229868367,1464158550,218762542,538976266,538976288,538976288,538976288,544162848,544567161,1752394103,544175136,1701602675,1948284003,1411409256,544428627,1953721961,1701604449,2036473956,777408288,1062486338,168626701,538976288,538976288,538976288,1147432517,1869373801,537529703,538976288,538976288,1226842144,1499144294,1917809509,1563520846,1495285024,538970637,538976288,538976288,538976288,1398480928,1852404340,542980199,1109409082,1802396012,1769108563,168650606,538976288,538976288,538976288,538976288,941647433,909652784,538970637,538976288,538976288,538976288,538976288,1716068384,1448300320,1769173605,1042312815,775233597,537529648,538976288,538976288,538976288,538976288,538976288,1142956064,1869373801,1499144295,1917809509,1563520846,1702057248,1684104520,572551781,1817190580,1702060389,1953451552,774778469,220381984,537529610,538976288,538976288,538976288,538976288,538976288,538976288,1327505440,1447644749,542590281,540424243,1818455657,1936024693,1769239840,2037672300,1869770784,1835102823,1869881459,1634692128,1868701796,168650868,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1769366884,1679844707,1702259058,1629516658,1411409006,1965052499,1768712564,1936025972]},{"sector":5,"length":512,"data":[544106784,1734961186,1329864808,1830822483,1919905125,168636025,538976288,538976288,538976288,538976288,538976288,538976288,538976288,2032166473,1881175407,1701209458,1746938994,1986361199,539783781,544567161,544825709,1986094444,1752440933,1780511593,1948279407,1329864815,168635987,538970637,538976288,538976288,538976288,538976288,538976288,538976288,1750278176,543976545,1814062455,1142977637,1629508431,1835365492,1948284016,1869357167,1948279905,1327523176,1447644749,542590281,1934775124,1734961184,168640360,538970637,538976288,538976288,538976288,538976288,538976288,1850023968,1634288740,224882540,538976266,538976288,538976288,538976288,538976288,538976288,543574304,1936021851,1867412047,1025531185,168646944,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1920226139,946302569,1027219549,222841888,538976266,538976288,538976288,538976288,538976288,538976288,1936475424,537529701,538976288,538976288,538976288,538976288,538976288,538976288,1528832032,1769108563,1563977582,540883488,1212962383,538970637,538976288,538976288,538976288,538976288,538976288,1850023968,224807268,538976266,538976288,538976288,538976288,538976288,1684948256,168650345,538976288,538976288,538976288,538976288,1231318597,218762598,538976266,538976288,538976288,538976288,1867537184,863268457,537529693,538976288]},{"sector":6,"length":512,"data":[538976288,538976288,1394614304,1866626149,1836020852,1701734732,572550996,808535612,673200702,1395221828,1667591269,1816207476,757080172,1884503072,1046831969,1867784250,1701603175,1936607520,1819042164,1869182049,539828334,1953383740,977171045,1801538848,1749229669,1701277281,168632947,538976288,538976288,538976288,538976288,1299473735,1131769445,1667854184,1816207461,1299672940,1769237621,224750704,538976266,538976288,538976288,538976288,538976288,1162166816,223495504,538976266,538976288,538976288,538976288,538976288,538976288,1092631328,1751348000,1819632741,543649385,1768845165,544370548,1818850421,779711593,1768444960,1919950963,1634887535,1769414765,1646292076,544236901,1919252069,1769218169,168650093,538976288,538976288,538976288,538976288,538976288,538976288,1297031227,1230391630,1663063877,1735287144,1948283749,1663067496,1701999221,2037150830,1853190688,1735289198,1869770784,1835102823,1750343726,1768956005,543712116,168650351,538976288,538976288,538976288,538976288,538976288,538976288,1752440891,1869881445,1763730798,1667851374,1936028769,1768453920,1881172067,1701015410,1763734387,1701257331,1852404852,1868767335,1869771886,1718558828,1701344288,538970637,538976288,538976288,538976288,538976288,538976288,540745760,1886220131,1919251573,1161961518,1380274245,1801548832,1965060965,543236208,1953786220,1830839660,543519343]},{"sector":7,"length":512,"data":[1851877492,541798688,1377855087,168643905,538976288,538976288,538976288,538976288,538976288,1296912195,1163089231,538970637,538976288,538976288,538976288,538976288,538976288,540745760,1936287828,1869770784,1835102823,544434464,2037149295,1701146144,543450468,2032166505,1746957679,543520353,1702043745,1818323314,1970236704,168650099,538976288,538976288,538976288,538976288,538976288,538976288,1852383291,1818326131,778331500,544491808,1869376609,1629516663,1869770784,1835102823,1953068832,1953046632,2003771507,1852383342,1852990836,1830841441,1702065519,538970637,538976288,538976288,538976288,538976288,538976288,540745760,1986622052,1948283493,1700929647,1635218208,1684369520,1953853216,544175136,1802725732,1953068832,1953853288,1936286752,1818845793,543649385,543516788,1937076077,537529701,538976288,538976288,538976288,538976288,538976288,991961120,544106784,1701344367,1634738290,1953068146,1936617321,1329799214,1431260493,1948271955,1936026465,544240928,1970233953,808984692,2036473904,544433524,1377855087,221138241,538976266,538976288,538976288,538976288,538976288,223363872,538976266,538976288,538976288,538976288,538976288,538976288,1411398432,544434536,1629516649,1967333920,1851859060,1632641124,577074291,1769239840,2037672300,1634235424,1818304628,1937207148,1970239776,544175136,1701536116,2019914784,537529716,538976288]},{"sector":8,"length":512,"data":[538976288,538976288,538976288,538976288,991961120,1717989152,543584032,543516788,1701995379,1629515365,1948279918,543518841,1763734633,544175214,1953459809,544367976,1735357040,778920306,542130976,1701536116,1886724211,538970637,538976288,538976288,538976288,538976288,538976288,540745760,1970233953,1718558836,1261449760,1296126496,1684955424,2036428064,543515168,544109938,1769172585,1327523172,1447644749,777471305,538970637,538976288,538976288,538976288,538976288,1480925216,1413694800,538970637,538976288,538976288,538976288,538976288,538976288,540745760,1936287828,1869770784,1835102823,1818585120,1948283760,1969299567,1634561908,1948280180,1864394088,1634887024,1852795252,543584032,1735357040,1936548210,226058784,538976266,538976288,538976288,538976288,538976288,538976288,1998600992,1769236833,1713399662,1629516399,1869770784,544501869,1629515636,1634037872,1852776562,1701344288,1919120160,544105829,1629513327,1667326496,1869768555,224685685,538976266,538976288,538976288,538976288,538976288,538976288,1881160480,1701015410,539915123,544567129,544104803,1852139636,1702065440,1313166112,1497713476,1869881427,1887007776,1852383333,1970435187,1869182051,1948283758,1752440943,537529701,538976288,538976288,538976288,538976288,538976288,991961120,1667326496,1869768555,543452789,1735357040,778920306,1347962144,542393157,1936028533]},{"sector":9,"length":512,"data":[1868718368,840987765,541799726,1377855087,221138241,538976266,538976288,538976288,538976288,538976288,1347833632,1129534546,537529682,538976288,538976288,538976288,538976288,538976288,991961120,1768444960,1919950963,1634887535,1769414765,1830841452,543517537,1701999987,1634235424,1752440948,1344413797,1953393010,1919111968,577660261,2036689696,544108320,1920298873,538970637,538976288,538976288,538976288,538976288,538976288,540745760,1652122987,1685217647,1769107488,544437358,543516788,1920103779,544501349,1734438249,1718558821,1701344288,1919903264,1869768549,543452789,1701995379,221146725,538976266,538976288,538976288,538976288,538976288,538976288,1327512352,1414680662,542262099,1936028533,1868718368,924873845,1646276656,1936028793,543584032,776814930,538970637,538976288,538976288,538976288,538976288,1380982816,1398033993,168643664,538976288,538976288,538976288,538976288,538976288,538976288,1750343739,1763734377,543236211,1852404336,1969365108,1919247974,1634235424,1937055860,1847620453,1752459621,1159754341,1864389453,1297621106,1701650515,2037542765,537529646,538976288,538976288,538976288,538976288,538976288,991961120,1769166112,1629513582,541799456,1717990754,1763734117,1329864814,1701650515,2037542765,1380982828,1398033993,1847610448,1935959397,1868718368,891319413,1718558795,1296126496,537529646,538976288,538976288]}]],[[{"sector":1,"length":512,"pattern":538976288,"data":[538976288,538976288,1377837088,1296387397,223495490,538976266,538976288,538976288,538976288,538976288,538976288,1411398432,544434536,1869376609,2032169847,1948284271,1701978223,1819042147,1701344288,1935764512,1380262004,1280462674,1279612485,1952805408,1701737077,2036473956,168648992,538976288,538976288,538976288,538976288,538976288,538976288,1919950907,1634887535,1919295597,1998613871,1768453225,543236206,1668571490,1768300648,1864394092,1952522354,1701344288,1397703712,1869770784,779382893,1768444960,1633886323,537529710,538976288,538976288,538976288,538976288,538976288,991961120,543515168,1684370293,1869373728,1998612334,543716457,543516788,1414745157,1196312914,1769239840,2037672300,544175136,1919118953,1702060389,1701344288,1769239840,2037672300,538970637,538976288,538976288,538976288,538976288,538976288,540745760,1327523439,1447644749,542590281,1668571490,1768300648,544433516,543452769,1701536116,1886724211,1868718368,908096629,1646276656,1936028793,543584032,776814930,538970637,538976288,538976288,538976288,538976288,1297293344,223560513,538976266,538976288,538976288,538976288,538976288,538976288,1411398432,544434536,1629516649,2036689696,1918988130,1634541668,544174691,1668248176,1869837157,1226845810,1633886324,1818304622,1646292851,1937055845,1948279909,537529711]},{"sector":2,"length":512,"pattern":538976288,"data":[991961120,1967333920,1851859060,1632641124,577074291,1718511904,1634562671,1852795252,1886413088,1769103717,1864394606,1752440942,1668489317,1852138866,1953392928,1953439855,225600872,538976266,538976288,538976288,538976288,538976288,538976288,1881160480,1919381362,779316577,1095586592,1847612227,1935959397,544497952,1935762796,808919156,1718558795,1296126496,1684955424,2036428064,543515168,225342834,538976266,538976288,538976288,538976288,538976288,538976288,1763719968,1851859054,1313689376,1162434121,1634738263,1953068146,778989417,538970637,538976288,538976288,538976288,538976288,1196826656,1280262977,168645199,538976288,538976288,538976288,538976288,538976288,538976288,1750343739,1763734377,1852776563,1847621996,1701078373,1852776548,1095194144,1937339168,1936549236,1950949422,544434464,1684370293,544175136,1702257011,1701344288,538970637,538976288,538976288,538976288,538976288,538976288,540745760,541149014,1869377379,1701978226,1953720679,544436837,1954047272,1634628197,1634738284,1953785196,1629497701,1948279918,1970479215,1919905904,1968382068,225600880,538976266,538976288,538976288,538976288,538976288,538976288,1444952864,840974663,1663055413,1919904879,1634887456,1667852400,1869422707,779314532,1095194144,1330401091,1937055826,1629516645,1953853282,1261449504,543584032,776814930,538970637]},{"sector":3,"length":512,"pattern":538976288,"data":[1850023968,1952794468,1970169165,1768908867,168650083,538976288,538976288,538976288,538976288,1114924371,1869902959,1852394605,544167013,1851878466,1920226155,224882281,538976266,538976288,538976288,538976288,2019906592,2020557428,538970637,538976288,538976288,538976288,538976288,1663967264,1685083424,1852404833,1448026215,1413562926,538970637,538976288,538976288,538976288,1850023968,2019906660,2020557428,538970637,538976288,538976288,538976288,1850286112,1702060355,1869103904,543515497,168653673,538976288,538976288,538976288,538976288,538976288,540684605,538976288,538976288,1109408571,1162888517,537529682,538976288,538976288,538976288,538976288,538976288,1293951008,1718183023,2019906681,1818838644,1230708837,1635021678,1952541804,1148088169,1667592809,2037542772,1448041565,1413562926,1114590752,1969972065,537529712,538976288,538976288,538976288,538976288,538976288,538976288,1092624416,1917805668,1851877443,1766614375,1767335278,673212532,1162166828,743589200,1935745065,1398481440,1852404340,542980199,1346716994,790647365,1629495922,1698832500,1852729703,224882281,538976266,538976288,538976288,538976288,538976288,538976288,1684948256,1768189773,1700034918,1766225016,168650092,538976288,538976288,538976288,538976288,538976288,540684861,1126185787,1330466127,222647125,538976266]},{"sector":4,"length":512,"data":[538976288,1853182496,1850301216,1818326131,1869760108,1769096301,979199350,1431260508,1212368211,1480928843,1968250949,1819567465,1867391097,1836020304,168653936,538976288,538976288,538976288,538976288,538976288,538976288,1836404315,829580642,1027219549,1165184800,1131702648,224748655,538976266,538976288,538976288,538976288,538976288,538976288,543574304,1836404315,829580642,1044127837,168636960,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1818323268,1528850287,1332962649,829378162,1934958685,1634027621,544367972,1344320546,1935762796,1867391077,774792564,583213102,168626701,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1931505486,1634300517,1869422700,543519605,544432503,1702126948,1684370531,218762542,538976266,538976288,538976288,538976288,538976288,538976288,538976288,538976288,544162848,544567161,1818850419,1635197036,1948284014,1852383343,1818326131,1329799276,1431260493,222250323,537529610,538976288,538976288,538976288,538976288,538976288,538976288,1159733280,1766089838,1735355489,538970637,538976288,538976288,538976288,538976288,538976288,538976288,1716068384,1700354848,1316114291,542978415,223944765,538976266,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1968069408,1919246957,975199537,221388861,538976266,538976288]},{"sector":5,"length":512,"pattern":538976288,"data":[538976288,538976288,538976288,538976288,538976288,1684948256,168650345,538976288,538976288,538976288,538976288,538976288,538976288,1768189509,537529702,538976288,538976288,538976288,538976288,538976288,1226842144,1314594918,1700949365,542978418,221388861,538976266,538976288,538976288,538976288,538976288,538976288,538976288,1634288672,543649644,1836404315,829580642,1934958685,1634027621,544367972,1226880034,1096045390,1847610444,1935959397,1970239776,1701322866,774795372,583213102,168626701,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1634036816,1696621939,1919251566,1701344288,1836412448,544367970,1948280431,1126196584,1881165135,544502383,1952540788,1970239776,537529714,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1830821920,1702065519,544434464,1852404597,1226845799,1870209126,1870078069,543452277,1752457586,1847620197,1763734639,1635021678,1126198380,1330466127,222647125,538976266,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1937074720,1852121204,544367988,539439143,1869374818,168639095,538970637,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1329799200,1869619277,1965061234,543450483,2032171362,544372079,1937076077,168639077,538970637]},{"sector":6,"length":512,"pattern":538976288,"data":[1850023968,1634288740,224882540,538976266,538976288,538976288,538976288,538976288,538976288,538976288,543574304,1836404315,829580642,1044127837,168636448,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1768189773,1700034918,1766225016,1528849772,1953721929,1634495585,1852795252,1701996868,1919906915,1331453305,1094856278,1867391060,1801675074,168652917,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1331979329,1634222962,1281714030,1466265193,543716457,1329802280,1431260493,690767187,544432416,1951619874,1735289202,1126194488,1330466127,541414229,1836404315,829580642,1629495901,1698832500,1852729703,224882281,538976266,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1684948256,1768189773,1700034918,1766225016,168650092,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1768189509,537529702,538976288,538976288,538976288,538976288,538976288,1159733280,1718183022,538970637,538976288,538976288,538976288,538976288,859643936,993730618,223363872,538976266,538976288,538976288,538976288,538976288,538976288,1685015840,1417242217,1182038117,543517801,1936607579,1819042164,1869182049,1919501422,1869898597,1549629810,1110333007,1310741569,1667318383,225473899,538976266]},{"sector":7,"length":512,"pattern":538976288,"data":[538976288,538976288,1684291872,1749250639,1701277281,1701734732,1752459607,1126967328,539569232,572552033,1920226139,946302569,1346576477,1952522274,1734689312,1768844905,168650606,538976288,538976288,538976288,538976288,538976288,538976288,1298427461,1718183023,2019906681,1818838644,537529701,538976288,538976288,538976288,538976288,1025515552,991967796,1480925243,1413694800,538970637,538976288,538976288,538976288,538976288,538976288,1867325472,2036754788,1954047316,1701603654,1850301216,1818326131,1769234796,1766092399,1952671090,1568240239,777408348,542392642,1631743822,1886743395,538970637,538976288,538976288,538976288,538976288,538976288,538976288,1681989664,1131564900,1735287144,1852394597,1953060709,740827240,1162893381,690771011,544432416,1951619874,1735289202,1159748920,1128616024,1915691092,1952522274,1734689312,1768844905,168650606,538976288,538976288,538976288,538976288,538976288,538976288,1298427461,1718183023,2019906681,1818838644,537529701,538976288,538976288,538976288,538976288,1025515552,991967797,1448026171,1398035024,168645187,538976288,538976288,538976288,538976288,538976288,538976288,1768189773,1700034918,1766225016,1528849772,1953721929,1634495585,1852795252,1701996868,1919906915,1331453305,1094856278,1867391060,1801675074,168652917]},{"sector":8,"length":512,"pattern":538976288,"data":[1331979329,1634222962,1281714030,1466265193,543716457,1448029224,1398035024,690770499,544432416,1951619874,1735289202,1327521080,1414680662,542262099,539128367,1109423201,1852401509,1735289198,538970637,538976288,538976288,538976288,538976288,538976288,1850023968,1685015908,1417242217,1182038117,224750697,538976266,538976288,538976288,538976288,538976288,976633120,540752672,1313428048,1280332628,538970637,538976288,538976288,538976288,538976288,538976288,1867325472,2036754788,1954047316,1701603654,1850301216,1818326131,1769234796,1766092399,1952671090,1568240239,777408348,542392642,1631743822,1886743395,538970637,538976288,538976288,538976288,538976288,538976288,538976288,1681989664,1131564900,1735287144,1852394597,1953060709,740827240,1313428048,1280332628,1629497644,1528963187,1769108563,1563977582,1230131232,1347638350,1629495884,1698832500,1852729703,224882281,538976266,538976288,538976288,538976288,538976288,538976288,1684948256,1768189773,1700034918,1766225016,168650092,538976288,538976288,538976288,538976288,538976288,540686141,1377844027,1296387397,223495490,538976266,538976288,538976288,538976288,538976288,538976288,1685015840,1417242217,1182038117,543517801,1936607579,1819042164,1869182049,1919501422,1869898597,1549629810,1110333007,1310741569,1667318383,225473899,538976266]},{"sector":9,"length":512,"pattern":538976288,"data":[538976288,538976288,1684291872,1749250639,1701277281,1701734732,1752459607,1378625568,1296387397,743589186,1935745065,1398481440,1852404340,542980199,1162691922,1380270669,577908512,544497952,1768383810,1852403310,537529703,538976288,538976288,538976288,538976288,538976288,1159733280,1867342958,2036754788,1954047316,1701603654,538970637,538976288,538976288,538976288,538976288,943530016,993730618,1095586592,168645443,538976288,538976288,538976288,538976288,538976288,538976288,1768189773,1700034918,1766225016,1528849772,1953721929,1634495585,1852795252,1701996868,1919906915,1331453305,1094856278,1867391060,1801675074,168652917,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1331979329,1634222962,1281714030,1466265193,543716457,1297296424,743654209,1935745065,1398481440,1852404340,542980199,1128353107,1629495891,1698832500,1852729703,224882281,538976266,538976288,538976288,538976288,538976288,538976288,1684948256,1768189773,1700034918,1766225016,168650092,538976288,538976288,538976288,538976288,538976288,540686653,1444952891,1329807687,223498060,538976266,538976288,538976288,538976288,538976288,538976288,1968069408,1919246957,975199537,221257789,538976266,538976288,538976288,538976288,538976288,538976288,541477152,222381910,538976266]}],[{"sector":1,"length":512,"pattern":538976288,"data":[1968069408,1919246957,975199537,221323325,538976266,538976288,538976288,538976288,538976288,538976288,1684948256,168650345,538976288,538976288,538976288,538976288,538976288,538976288,1528849993,1651340622,1563521637,807419168,538970637,538976288,538976288,538976288,538976288,538976288,538976288,1766072352,1735355489,1700354848,1316114291,542978415,1214608213,1701077349,-1272831886,1701597216,543519585,1702129486,539897390,168633027,538970637,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1867391008,1095194144,1935767328,1952801824,1702126437,168636004,538970637,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1866735648,1970239776,1769239328,1998613612,544501345,1763733364,1635021678,1444965484,1329807687,1062358860,168626701,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1147432517,1869373801,537529703,538976288,538976288,538976288,538976288,538976288,538976288,1226842144,1499144294,1917809509,1563520846,1495285024,538970637,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1314594848,1700949365,542978418,824196410,538970637,538976288,538976288,538976288,538976288,538976288,538976288,1850023968,224815460,538976266,538976288,538976288,538976288,538976288,538976288,1684948256,168650345]},{"sector":2,"length":512,"data":[538976288,538976288,538976288,1528849993,1651340622,1563521637,824196384,538970637,538976288,538976288,538976288,538976288,538976288,538976288,1867325472,2036754788,1954047316,1701603654,1850301216,1818326131,1769234796,1766092399,1952671090,1568240239,777408348,542392642,1631743822,1886743395,538970637,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1681989664,1131564900,1735287144,1852394597,1953060709,740827240,1128351574,1380928591,1629497644,1528963187,1769108563,1563977582,1095194144,1330401091,1915691090,1952522274,1734689312,1768844905,168650606,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1298427461,1718183023,2019906681,1818838644,537529701,538976288,538976288,538976288,538976288,538976288,1159733280,1718183022,538970637,538976288,538976288,538976288,1850023968,1131301220,224752481,538976266,538976288,538976288,538976288,1701593888,1666413153,1852138866,538970637,538976288,538976288,1850023968,543574372,993730592,1634683936,1735289188,1381192736,1919295603,1327525231,1094856278,537529684,538976288,1159733280,1716085870,538976288,991961120,1850286139,1818326131,1735289196,1230263584,168645452,538976288,1768189509,538976358,538976288,538976288,1226849083,1635021678,1852402796,1297031271,1230391630,1713395525,1936026729,538970637,1699946528,1836008308,1952803952,1399746409]},{"sector":3,"length":512,"data":[1970561396,544167027,1768843590,1684367475,538970637,1699946528,1769489780,1936018804,1701273971,572550996,1634227232,1495296878,539063663,1313689376,1162434121,942874711,1852383286,1818326131,1769234796,1763733103,1869488243,1868767351,1701605485,539911540,537529634,1394614304,1852787823,1158286695,1917871214,1684366191,224752245,1684948234,1769104211,168653936,168639291,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287]},{"sector":4,"length":512,"data":[1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755]},{"sector":5,"length":512,"data":[1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898]},{"sector":6,"length":512,"data":[1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298]},{"sector":7,"length":512,"data":[1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941]},{"sector":8,"length":512,"data":[1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320]},{"sector":9,"length":512,"data":[1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582]}]],[[{"sector":1,"length":512,"data":[1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156]},{"sector":2,"length":512,"data":[1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215]},{"sector":3,"length":512,"data":[1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865]},{"sector":4,"length":512,"data":[1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426]},{"sector":5,"length":512,"data":[1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847]},{"sector":6,"length":512,"data":[993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824]},{"sector":7,"length":512,"data":[544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977]},{"sector":8,"length":512,"pattern":0,"data":[1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019,1344289595,1768186977,1629513582,1852121204,1718558820,1919120160,544501865,1702061426,1936029298,1634759456,1864394083,1768169582,1952803699,1713399156,1931506287,1885958755,1701978228,1769171318,779316847,993724941,1684099104,1735289188,544497952,543452773,1931503215,1885958755,1701978228,1987208563,1931506533,1701011824,544108320,1802725732,1702130789,1919903264,1919120160,544501865,1769366898,1852795251,168636019]},{"sector":9,"length":512,"data":[1936287828,1936286752,1953785195,1868767333,1767994478,1629516654,1852383342,1818326131,1769234796,1881173615,1919381362,1663069537,1701604449,1313415268,1279349843,168635980,1763733332,1635021678,1629514860,1663067246,1768320623,1701999975,1701344288,1952669984,543973749,1735357040,544039282,1701603686,1870209139,1769152629,2037149805,1701710349,1948279909,1970413679,1313415278,1279349843,1851859020,1868963940,2003790956,2037276960,1919509536,1769235301,544435823,1830843497,1730181473,543520361,779448185,1866861069,2019893362,1819307361,1763716197,1870209126,1634214005,1948280182,1679844712,1920234345,1953849961,544108393,1802725732,1702130789,544106784,1986622052,742465637,1752435213,1948282469,543518841,1948282473,1713399144,1869376623,1735289207,1836016416,1684955501,1952522355,1142972704,1881166671,1886220146,168639092,1094599433,1850031162,1047684468,1091111437,1397639486,1280065876,1953383740,222196325,1225395466,1870209126,1634214005,1948280182,1651863410,1914725740,1768186213,1226860398,1096045390,1931955276,1936286752,2036427888,544108320,1920298873,1937339168,745366900,1970239776,1633880589,1702109294,1763732588,1869881460,1702065440,1646289184,1801675116,1684955424,1768453920,1663067508,1919904879,1751348000,543518053,1852404597,168639079,538976288,153100320,1313422913,1279349843,1831673932,168626701,1226860105,1096045390,1914719308,1937073765,1948283749]}],[{"sector":1,"length":512,"pattern":0,"data":[1701978223,1852272483,543521385,543516788,1986622052,1752637541,543519333,544567161,1953390967,544175136,225736048,1701344266,1869770784,1835102823,1818846752,539784037,981037684,1091111437,1397639486,1280065876,542002976,1447645764,224665669,1701345034,656434546,1763714916,1752440947,1667309669,1818326388,1769104416,1814062454,1702130789,1718558834,1701344288,1936024608,1634625908,1852795252,1769104416,221144438,1409944842,1868963951,543515506,543516788,1414745673,541871169,1735357040,544039282,1679847284,1819308905,1763735905,1981838196,1769173605,1847619183,1700949365,1852121202,980575604,1091111437,1397639486,1280065876,225848608,10]},{"sector":2,"length":512,"data":[107880563,328451,168820735,318766848,1310735,-254,1643519,-16711650,251658239,3080227,721420034,1610612992,-1,989869151,-64512,65535,-771735541,4527872,-16318361,-1040167681,-65280,131155,-251,1394612735,1668440421,1868963944,2112114,-16749553,7409407,-16252793,2013298943,1935756288,1919501428,-64512,65535,-1291809781,9520128,-16711528,50331647,10292736,-16187393,-1543459585,1935756288,1952534644,-65280,196607,-16727293,1634038783,1600676722,6584166,-248,1275120383,1349808993,1593865313,-65321,-254,50332159,-65309,-16717809,15536895,-16645902,335544319,16515319,-255,16846591,-16645875,16845055,-40960,308281343,67180801,-1,504037376,385986817,21299491,721420039,16826881,20054015,-16449534,419430399,1634030368,543712114,980578150,1242497056,251657985,23396687,1593835272,1275155969,1148482401,67138153,-1,1779105793,1140953345,24510831,-255,234881791,-65157,-1962934520,1275167233,1349808993,16807009,-1,-1576861694,1946156801,1668440421,1633836904,134245219,-1,1632371113,1632662643,-1235287948,50331393,-1,-1039990783,268435201,-65081,-788411374,-65023,-703397889,33676033,-1,-335421426,-65023,66023,-160,32595967,-16514568,16777215,33360640]},{"sector":3,"length":512,"pattern":0,"data":[38011642,134353154,-1,1632371209,1632662643,370081908,335727106,35389439,-1191043061,35982338,-16252357,738342143,1935756290,1919501428,-64512,65535,2046967823,-64766,1918304847,1767010401,7628903,-16624626,-64769,131675,-16618749,1634038783,1600676722,6584166,-248,1275228927,1349808993,251688033,-64897,-1912602877,1634883330,1717914736,-1844576140,50331394,43646975,-1442643966,1946156802,1668440421,1633836904,134245219,-1,1632371377,1632662643,-1105919884,486539010,-64829,-254,251659007,-64817,-184363961,-64254,1867448319,1701998624,1970235766,1702043763,1751347809,1952542752,1852990836,-11599826,1610612735,-64769,-254,1174405631,1635218031,1699964018,1751347809,50331680,1634030336,1097360242,1852399975,50445600,1667318272,1918990187,1634030436,543712114,196830,32]},{"sector":4,"length":512,"pattern":0,"data":[4938317,3,4259872,2424897,1319961600,494,30,1]},{"sector":5,"length":512,"data":[1297615373,1162363731,757091139,1953453088,1696623713,1852142680,543450468,1869440365,1763735922,2037588078,1835365491,980642080,1310729248,2032170095,1797289061,1853321070,220471342,223025674,8397834,1397030912,1330532943,190657585,1397053787,1069647,4517,0,8454144,393344,805306368,808464432,808464432,808464432,875770417,943142453,1128415545,4605252,67305985,134678021,202050057,-66122227,1053081651,-1977221046,-1073002747,-930406028,-1359856208,1049172341,79233098,1239044,1196559730,-402389831,-1031077880,855798618,-1977170990,808208133,158730556,255592236,-336002186,635622155,-804585457,-495596034,-990110013,-989836738,855663158,-930435895,-1021335821,-851246920,-109036497,-1477901452,1125169152,512307149,109838438,11796584,1713307438,1959922432,1879474949,146030592,1713307438,1958742784,1880490244,47616,-13760076,184575518,-1995737920,-1275041258,520039946,28835942,1782481152,1979744512,1781989170,1812922112,1779862272,1846946560,1779861760,772715520,6692607,208977931,7345665,7081727,736878453,6948495,-1543505224,378208366,371916906,378077294,246677610,1713307438,1958742784,1880490244,1812922112,-119573248,1889664195,702720,-140911821,188961521,-1309182528,7520048,-1014298866,39365372,1967893185,1053082617,-919404446,-1979682114,-201572084,-1943092316,234900510,-22550497,6559369,-402627933]},{"sector":6,"length":512,"pattern":0,"data":[108330735,378130995,12058724,-1558852216,-270008208,-6166274,6569603,-402295808,585891772,12197646,-855002112,1925119009,-1396690176,-661924213,-1272708922,-1172189943,162791494,12067277,2215244]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]]] \ No newline at end of file diff --git a/disks/pc/apps/sunnyhill/omniview/4.30/README.md b/disks/pc/apps/sunnyhill/omniview/4.30/README.md new file mode 100644 index 000000000..a4efa9242 --- /dev/null +++ b/disks/pc/apps/sunnyhill/omniview/4.30/README.md @@ -0,0 +1,47 @@ +--- +layout: page +title: Omniview 386 4.30 +permalink: /disks/pc/apps/sunnyhill/omniview/4.30/ +machines: + - type: pc + id: compaq386 + config: /devices/pc/machine/compaq/deskpro386/vga/4096kb/machine.xml + autoMount: + A: + path: /disks/pc/dos/ibm/3.30/PCDOS330-DISK1-720K.json + B: + path: /disks/pc/apps/sunnyhill/omniview/4.30/OMNIVIEW386-430.json +--- + +Omniview 386 4.30 +--- + +The COMPAQ DeskPro 386 machine below is recommended for Omniview 386 4.30. +A [directory listing](#directory-of-omniview-386-430) is also provided. + +{% include machine.html id="compaq386" %} + +### Directory of Omniview 386 4.30 + + Volume in drive A is OMNIVIEW + + Directory of A:\ + + 2 4790 01-07-92 9:25a + 3 4902 01-14-92 8:56a + AD 1691 01-18-92 3:58p + DISK ID 83 10-01-91 4:30a + INSTALL EXE 99477 10-01-91 4:30a + MAX 10250 01-28-92 7:32a + MAX DOC 21063 02-01-92 11:33a + MOUSECHK EXE 1504 10-01-91 4:30a + OV386 001 364852 10-01-91 4:30a + OV386 INF 63280 10-01-91 4:30a + READ ME 753 10-01-91 4:30a + SEARCH CM 833 08-31-91 12:39p + XMSCHECK EXE 1099 10-01-91 4:30a + 13 file(s) 574577 bytes + + Total files listed: + 13 file(s) 574577 bytes + 148480 bytes free diff --git a/disks/pc/apps/sunnyhill/omniview/4.30/manifest.xml b/disks/pc/apps/sunnyhill/omniview/4.30/manifest.xml new file mode 100644 index 000000000..dd2525059 --- /dev/null +++ b/disks/pc/apps/sunnyhill/omniview/4.30/manifest.xml @@ -0,0 +1,25 @@ + + + + Omniview 386 + 4.30 + Operating Environment + Sunny Hill + October 1991 + + + 2 + 3 + AD + DISK.ID + INSTALL.EXE + MAX + MAX.DOC + MOUSECHK.EXE + OV386.001 + OV386.INF + READ.ME + SEARCH.CM + XMSCHECK.EXE + + diff --git a/disks/pc/apps/sunnyhill/omniview/README.md b/disks/pc/apps/sunnyhill/omniview/README.md new file mode 100644 index 000000000..818c4a71f --- /dev/null +++ b/disks/pc/apps/sunnyhill/omniview/README.md @@ -0,0 +1,12 @@ +--- +layout: page +title: Omniview +permalink: /disks/pc/apps/sunnyhill/omniview/ +--- + +Omniview +--- + +Information is available for these versions of Omniview: + +* [Omniview 386 4.30](4.30/) diff --git a/disks/pc/compiled/library.xml b/disks/pc/compiled/library.xml index ae18c4a45..fa926a70f 100644 --- a/disks/pc/compiled/library.xml +++ b/disks/pc/compiled/library.xml @@ -2,7 +2,6 @@ - None Empty Diskette (360K) Empty Diskette (720K) Empty Diskette (1.2M) @@ -98,6 +97,7 @@ MS-DOS 6.20 (1.44M Disk 2) MS-DOS 6.20 (1.44M Disk 3) MS-DOS 6.20 (1.44M Supp Disk) + MS-DOS 6.22 (1.2M Boot) MS-DOS 6.22 (1.2M Disk 1) MS-DOS 6.22 (1.2M Disk 2) MS-DOS 6.22 (1.2M Disk 3) @@ -376,6 +376,7 @@ Word for Windows 2.0c (Disk 4) Word for Windows 2.0c (Disk 5) Word for Windows 2.0c (Disk 6) + Omniview 386 4.30 Borland Turbo Pascal 3.00B Borland Turbo Pascal 3.01A IBM BASIC Compiler 1.00 (Disk 1) @@ -502,11 +503,11 @@ Wolfenstein 3D 1.4 MS Flight Simulator (1982) MS Flight Simulator (1984) - VisiCalc - Executive Suite (1982) - Rogue (1985) - ThinkTank 2.41NP - Moria 5.5 + Demo: VisiCalc (1981) + Demo: Executive Suite (1982) + Demo: Rogue (1985) + Demo: ThinkTank (1987) + Demo: Moria 5.5 (1992) DOS Internals The Undocumented PC Undocumented DOS (Disk 1) diff --git a/disks/pc/compiled/samples.xml b/disks/pc/compiled/samples.xml index c72e97551..792102076 100644 --- a/disks/pc/compiled/samples.xml +++ b/disks/pc/compiled/samples.xml @@ -2,13 +2,12 @@ - None PC-DOS 1.00 PC-DOS 1.10 PC-DOS 2.00 (Disk 1) PC-DOS 2.00 (Disk 2) Microsoft Adventure - VisiCalc + Demo: VisiCalc (1981) Load Save diff --git a/disks/pc/cpm/1.1b/machine.xml b/disks/pc/cpm/1.1b/machine.xml index f96a08c8a..680248e31 100644 --- a/disks/pc/cpm/1.1b/machine.xml +++ b/disks/pc/cpm/1.1b/machine.xml @@ -1,5 +1,5 @@ - + IBM PC (Model 5150) running CP/M-86 @@ -10,7 +10,6 @@ - None Load diff --git a/disks/pc/cpm/1.1b/manifest.xml b/disks/pc/cpm/1.1b/manifest.xml index 75cd8cf03..a7df53645 100644 --- a/disks/pc/cpm/1.1b/manifest.xml +++ b/disks/pc/cpm/1.1b/manifest.xml @@ -1,5 +1,5 @@ - + CP/M-86 1.1B diff --git a/disks/pc/diags/ibm/manifest.xml b/disks/pc/diags/ibm/manifest.xml index d2abf17c2..26006ab85 100644 --- a/disks/pc/diags/ibm/manifest.xml +++ b/disks/pc/diags/ibm/manifest.xml @@ -1,5 +1,5 @@ - + IBM PC Diagnostics Diagnostics diff --git a/disks/pc/dos/compaq/1.11/manifest.xml b/disks/pc/dos/compaq/1.11/manifest.xml index 82262f9ae..622bed0a4 100644 --- a/disks/pc/dos/compaq/1.11/manifest.xml +++ b/disks/pc/dos/compaq/1.11/manifest.xml @@ -1,5 +1,5 @@ - + MS-DOS 1.11 diff --git a/disks/pc/dos/compaq/1.12/manifest.xml b/disks/pc/dos/compaq/1.12/manifest.xml index b64fc3c2b..08b948c86 100644 --- a/disks/pc/dos/compaq/1.12/manifest.xml +++ b/disks/pc/dos/compaq/1.12/manifest.xml @@ -1,5 +1,5 @@ - + MS-DOS 1.12 diff --git a/disks/pc/dos/compaq/2.12/manifest.xml b/disks/pc/dos/compaq/2.12/manifest.xml index 4e9394707..218ba3d06 100644 --- a/disks/pc/dos/compaq/2.12/manifest.xml +++ b/disks/pc/dos/compaq/2.12/manifest.xml @@ -1,5 +1,5 @@ - + MS-DOS 2.12 diff --git a/disks/pc/dos/compaq/3.10/manifest.xml b/disks/pc/dos/compaq/3.10/manifest.xml index 9f7625365..0dbe67549 100644 --- a/disks/pc/dos/compaq/3.10/manifest.xml +++ b/disks/pc/dos/compaq/3.10/manifest.xml @@ -1,5 +1,5 @@ - + MS-DOS 3.10 diff --git a/disks/pc/dos/compaq/3.31/manifest.xml b/disks/pc/dos/compaq/3.31/manifest.xml index fd6d53a23..f3bbe4a34 100644 --- a/disks/pc/dos/compaq/3.31/manifest.xml +++ b/disks/pc/dos/compaq/3.31/manifest.xml @@ -1,5 +1,5 @@ - + MS-DOS 3.31 diff --git a/disks/pc/dos/ibm/1.00/manifest.xml b/disks/pc/dos/ibm/1.00/manifest.xml index 6f00b61b6..03d75432e 100644 --- a/disks/pc/dos/ibm/1.00/manifest.xml +++ b/disks/pc/dos/ibm/1.00/manifest.xml @@ -1,5 +1,5 @@ - + PC-DOS 1.00 diff --git a/disks/pc/dos/ibm/1.10/manifest.xml b/disks/pc/dos/ibm/1.10/manifest.xml index 9efb40613..398382c72 100644 --- a/disks/pc/dos/ibm/1.10/manifest.xml +++ b/disks/pc/dos/ibm/1.10/manifest.xml @@ -1,5 +1,5 @@ - + PC-DOS 1.10 diff --git a/disks/pc/dos/ibm/2.00/manifest.xml b/disks/pc/dos/ibm/2.00/manifest.xml index 0628707ac..91232ea0b 100644 --- a/disks/pc/dos/ibm/2.00/manifest.xml +++ b/disks/pc/dos/ibm/2.00/manifest.xml @@ -1,5 +1,5 @@ - + PC-DOS 2.00 diff --git a/disks/pc/dos/ibm/2.10/manifest.xml b/disks/pc/dos/ibm/2.10/manifest.xml index 3e0966c11..47fd5932e 100644 --- a/disks/pc/dos/ibm/2.10/manifest.xml +++ b/disks/pc/dos/ibm/2.10/manifest.xml @@ -1,5 +1,5 @@ - + PC-DOS 2.10 diff --git a/disks/pc/dos/ibm/3.00/manifest.xml b/disks/pc/dos/ibm/3.00/manifest.xml index dfc7ad2a0..ba2411668 100644 --- a/disks/pc/dos/ibm/3.00/manifest.xml +++ b/disks/pc/dos/ibm/3.00/manifest.xml @@ -1,5 +1,5 @@ - + PC-DOS 3.00 diff --git a/disks/pc/dos/ibm/3.10/manifest.xml b/disks/pc/dos/ibm/3.10/manifest.xml index 99b466bbd..33a922b23 100644 --- a/disks/pc/dos/ibm/3.10/manifest.xml +++ b/disks/pc/dos/ibm/3.10/manifest.xml @@ -1,5 +1,5 @@ - + PC-DOS 3.10 diff --git a/disks/pc/dos/ibm/3.20/manifest.xml b/disks/pc/dos/ibm/3.20/manifest.xml index 62876b47f..0a056c29b 100644 --- a/disks/pc/dos/ibm/3.20/manifest.xml +++ b/disks/pc/dos/ibm/3.20/manifest.xml @@ -1,5 +1,5 @@ - + PC-DOS 3.20 diff --git a/disks/pc/dos/ibm/3.30/manifest.xml b/disks/pc/dos/ibm/3.30/manifest.xml index 7ebbed52a..1763ea0b1 100644 --- a/disks/pc/dos/ibm/3.30/manifest.xml +++ b/disks/pc/dos/ibm/3.30/manifest.xml @@ -1,5 +1,5 @@ - + PC-DOS 3.30 diff --git a/disks/pc/dos/ibm/4.00/manifest.xml b/disks/pc/dos/ibm/4.00/manifest.xml index 65b4ea6f2..eba143487 100644 --- a/disks/pc/dos/ibm/4.00/manifest.xml +++ b/disks/pc/dos/ibm/4.00/manifest.xml @@ -1,5 +1,5 @@ - + PC-DOS 4.00 diff --git a/disks/pc/dos/ibm/5.00/manifest.xml b/disks/pc/dos/ibm/5.00/manifest.xml index 1eaa92cb1..1ae0792ff 100644 --- a/disks/pc/dos/ibm/5.00/manifest.xml +++ b/disks/pc/dos/ibm/5.00/manifest.xml @@ -1,5 +1,5 @@ - + PC-DOS 5.00 diff --git a/disks/pc/dos/ibm/6.10/manifest.xml b/disks/pc/dos/ibm/6.10/manifest.xml index b948dcf9b..640c86e66 100644 --- a/disks/pc/dos/ibm/6.10/manifest.xml +++ b/disks/pc/dos/ibm/6.10/manifest.xml @@ -1,5 +1,5 @@ - + PC-DOS 6.10 diff --git a/disks/pc/dos/ibm/6.30/manifest.xml b/disks/pc/dos/ibm/6.30/manifest.xml index de0c05370..bf345387b 100644 --- a/disks/pc/dos/ibm/6.30/manifest.xml +++ b/disks/pc/dos/ibm/6.30/manifest.xml @@ -1,5 +1,5 @@ - + PC-DOS 6.30 diff --git a/disks/pc/dos/ibm/7.00/manifest.xml b/disks/pc/dos/ibm/7.00/manifest.xml index 978c3b412..f53ea3c0e 100644 --- a/disks/pc/dos/ibm/7.00/manifest.xml +++ b/disks/pc/dos/ibm/7.00/manifest.xml @@ -1,5 +1,5 @@ - + PC-DOS 7.00 diff --git a/disks/pc/dos/microsoft/3.20/manifest.xml b/disks/pc/dos/microsoft/3.20/manifest.xml index 56e41b832..9e33549e3 100644 --- a/disks/pc/dos/microsoft/3.20/manifest.xml +++ b/disks/pc/dos/microsoft/3.20/manifest.xml @@ -1,5 +1,5 @@ - + MS-DOS 3.20 diff --git a/disks/pc/dos/microsoft/3.21/manifest.xml b/disks/pc/dos/microsoft/3.21/manifest.xml index 1b2397056..efa5e98af 100644 --- a/disks/pc/dos/microsoft/3.21/manifest.xml +++ b/disks/pc/dos/microsoft/3.21/manifest.xml @@ -1,5 +1,5 @@ - + MS-DOS 3.21 diff --git a/disks/pc/dos/microsoft/3.30/manifest.xml b/disks/pc/dos/microsoft/3.30/manifest.xml index 075d0a0c9..fc924a125 100644 --- a/disks/pc/dos/microsoft/3.30/manifest.xml +++ b/disks/pc/dos/microsoft/3.30/manifest.xml @@ -1,5 +1,5 @@ - + MS-DOS 3.30 diff --git a/disks/pc/dos/microsoft/3.31/manifest.xml b/disks/pc/dos/microsoft/3.31/manifest.xml index afd700365..c6a6f87ae 100644 --- a/disks/pc/dos/microsoft/3.31/manifest.xml +++ b/disks/pc/dos/microsoft/3.31/manifest.xml @@ -1,5 +1,5 @@ - + MS-DOS 3.31 diff --git a/disks/pc/dos/microsoft/4.00/manifest.xml b/disks/pc/dos/microsoft/4.00/manifest.xml index 99f08dada..92fba26c3 100644 --- a/disks/pc/dos/microsoft/4.00/manifest.xml +++ b/disks/pc/dos/microsoft/4.00/manifest.xml @@ -1,5 +1,5 @@ - + MS-DOS 4.00 diff --git a/disks/pc/dos/microsoft/4.01/720K/manifest.xml b/disks/pc/dos/microsoft/4.01/720K/manifest.xml index 9aa4af302..971ba73fd 100644 --- a/disks/pc/dos/microsoft/4.01/720K/manifest.xml +++ b/disks/pc/dos/microsoft/4.01/720K/manifest.xml @@ -1,5 +1,5 @@ - + MS-DOS 4.01 diff --git a/disks/pc/dos/microsoft/4.01/manifest.xml b/disks/pc/dos/microsoft/4.01/manifest.xml index 6125d126b..d77e1dc0c 100644 --- a/disks/pc/dos/microsoft/4.01/manifest.xml +++ b/disks/pc/dos/microsoft/4.01/manifest.xml @@ -1,5 +1,5 @@ - + MS-DOS 4.01 diff --git a/disks/pc/dos/microsoft/4.0M/manifest.xml b/disks/pc/dos/microsoft/4.0M/manifest.xml index 44fa257be..59d29876f 100644 --- a/disks/pc/dos/microsoft/4.0M/manifest.xml +++ b/disks/pc/dos/microsoft/4.0M/manifest.xml @@ -1,5 +1,5 @@ - + MS-DOS 4.0M diff --git a/disks/pc/dos/microsoft/5.00/manifest.xml b/disks/pc/dos/microsoft/5.00/manifest.xml index 5fdbdd4c0..d601a6f0b 100644 --- a/disks/pc/dos/microsoft/5.00/manifest.xml +++ b/disks/pc/dos/microsoft/5.00/manifest.xml @@ -1,5 +1,5 @@ - + MS-DOS 5.00 diff --git a/disks/pc/dos/microsoft/6.00/manifest.xml b/disks/pc/dos/microsoft/6.00/manifest.xml index 71379588d..c4900fb4a 100644 --- a/disks/pc/dos/microsoft/6.00/manifest.xml +++ b/disks/pc/dos/microsoft/6.00/manifest.xml @@ -1,5 +1,5 @@ - + MS-DOS 6.00 diff --git a/disks/pc/dos/microsoft/6.20/manifest.xml b/disks/pc/dos/microsoft/6.20/manifest.xml index 796f6c873..ae358b45c 100644 --- a/disks/pc/dos/microsoft/6.20/manifest.xml +++ b/disks/pc/dos/microsoft/6.20/manifest.xml @@ -1,5 +1,5 @@ - + MS-DOS 6.20 diff --git a/disks/pc/dos/microsoft/6.22/1200K/MSDOS622-BOOT.json b/disks/pc/dos/microsoft/6.22/1200K/MSDOS622-BOOT.json new file mode 100644 index 000000000..d3198cdc9 --- /dev/null +++ b/disks/pc/dos/microsoft/6.22/1200K/MSDOS622-BOOT.json @@ -0,0 +1 @@ +[[[{"sector":1,"length":512,"data":[1301298411,1397703763,3157557,65794,1610670082,522505,131087,0,0,254345216,1309415436,1095639119,538985805,1095114784,540160340,872030240,-1127182656,118914048,906000571,1444820933,1052726038,768380,111473660,-28981729,403606287,-112359300,-956151927,-75743737,2037519309,104448051,141851667,2081623691,2082475657,-142864224,58463782,326900742,58465814,-2089021946,1352859858,1377208700,2085200764,2085295753,-150986568,-1954803418,58460958,-201897789,2085160449,2085295747,83933952,2085754507,-394506079,494010514,-1394081360,-1961463296,768507,-209852738,-1928694362,196681855,1957098240,2107555352,855662568,1578552768,-1895526625,432865860,-346531752,440896488,512378952,-13468659,100918263,370375753,12287051,243975,-397323696,-663617478,1424490928,1482316032,17152882,13796096,2081103363,780853986,378174485,512457764,1268874313,60028,179044464,-1272351552,506638,-219475763,2081953339,922163571,-1023509480,2085557896,922210867,378043418,1302559781,-104597380,-1962756925,-1317253866,182899206,-1954787530,-1964407094,-1971575786,-847502026,168674067,762212174,1953724755,1679846757,543912809,1679848047,543912809,1869771365,1376390514,1634496613,1629513059,1881171054,1936942450,2037276960,2036689696,1701345056,1701978222,226059361,1330184202,538976288,1498619936,1146309971,538989391,1398362912,-1437270016]},{"sector":2,"length":512,"data":[67108857,1610940480,8390400,184590345,-536018752,16781056,318840849,1611989312,25171713,453091353,-534969920,33562369,587341857,1613038144,41953026,721592361,-533921088,50343682,855842865,1614086976,58734339,990093369,-532872256,67124995,1124343873,1615135808,75515652,1258594377,-531823424,83906308,1409282129,1616184640,92296965,1527095385,-530774592,100687621,1661345889,1617233472,109078278,1795596393,-529725760,117468934,1929846897,1618282304,125859591,2064097401,-528676928,134250247,-2096619391,1619331136,142640904,-1962368887,-527628096,151031560,-1828118383,1620379968,159422217,-1693867879,-268498496,167812873,-1559617375,1621428800,176203530,-1425366871,-525530432,184594186,-1291116367,1622477632,192984843,-1156865863,-524481600,201375499,-1022615359,1623526464,209766156,-888364855,-523432768,218156812,-754114351,1624575296,226547469,-619863847,-522383936,234938125,-485613343,1625624128,243328782,-351362839,-521335104,251719438,-217112335,1626672960,260110095,-82861831,-520286272,268500751,51388673,1627721793,-981232,185639177,-519237439,285282064,319889681,1628770625,293672721,469758233,-518188607,302063377,588390689,1629819457,310454034,722641193,-517139775,-970990,856891697,1630868289,327235347,991142201,-268495935,335626003,1125392705,1631917121,344016660,1259643209,-515042111,352407316,-15392431,1632965967]},{"sector":3,"length":512,"data":[360797973,1528144217,-513993279,369188629,1662394721,1634014785,377579286,1796645225,-512944447,385969942,1930895729,1635063617,394360599,2065146233,-511895615,402751255,-2095570559,1636112449,411141912,-1961320055,-510846783,419532568,-1827069551,1637161281,427923225,-1677725287,-509797951,436313881,-1558568543,1638210113,444704538,-1424318039,-508749119,453095194,-1275072079,-239789247,461486079,-1155817031,-507700287,469876507,-1021566527,1640307777,478267164,-887316023,-506651455,-930020,-753065519,1641356609,495048477,-618815015,-505602623,503439133,-484564511,1642405441,511829790,-350314007,-504553791,520220446,-216063503,1643454273,528611103,-81812999,-503504959,537001759,52437505,1878990914,545392416,186688009,-502456126,553783072,320938513,1645551938,562173729,455189017,-501407294,570564385,589439521,1646657522,578955042,723690025,-500358462,587345698,857940529,1647649602,595736355,1006629433,-499309630,604127011,1126441537,1648698434,612517668,1260692041,-498260798,621805348,1394942545,1649747266,629298981,1529193049,-497211966,637689637,1663443553,1650796098,646080294,1811935849,-496163134,654470950,1931944561,1651844930,662861607,2066195065,-495114302,671252263,-2094521727,1652893762,679642920,-1960267777,-494065470,688033576,-1826020719,1878993218,696424233,-1691770215,-493016638,-876759,-1557519711,1654991426,713205546,-1423269207]},{"sector":4,"length":512,"data":[-491967806,721596202,-1289018703,1656040258,729986859,-1154764801,-490918974,738377515,-1020517695,1657089090,746768172,-886267191,-489870142,755158828,-752016687,1658137922,763549485,-617766183,-488821310,771940141,-483515679,1659186754,780330798,-349265175,-487772478,788721454,-215014671,1660235586,797112111,-80764167,-486723646,805502767,53486337,1661284419,813893424,187736841,-485674813,822284080,321987345,1662333251,830674737,456237849,-484625981,839065393,590488353,1663382083,847456050,724738857,-483524621,855846706,858989361,-214617277,864237567,993239865,-482528317,872628019,1127490369,1665479747,881018676,1261740873,-481479485,889409332,1395991377,1666528579,897799989,1530241881,-480430653,906190645,1664492385,1667577411,914581302,1798742889,-479381821,922971958,1932993393,1668626243,931362615,2067243897,-478332989,939753271,-2093472895,1669675075,948143928,-1959222391,-477284157,956534584,-1824971887,1670723907,964925241,-1690721383,-476235325,973315897,-1556470879,1671772739,981706554,-1422220375,-475186493,990097210,-1287969871,1672821571,998487867,-1153719367,-474137661,1006878523,-1019468863,1673870403,1015269180,-885218359,-473088829,1023659836,-750967855,1674919235,1032050493,-616717351,-472039997,1040441149,-482466847,1675968067,1048831806,-348216343,-470991165,1057222462,-213965839,1677016899,1065613119,-79715335,-469942333,1074003775]},{"sector":5,"length":512,"data":[54535169,1678065732,1082394432,188785673,-468893500,1090785088,323036177,1679114564,1099175745,457286681,-467844668,1107566401,-12442591,1680163407,1115957058,725787689,-466795836,1124347714,860038193,1681260532,1132738371,994288697,-465747004,1141129027,1128539201,1682261060,1149519684,1262789705,-464698172,1157910340,1397040209,1683309892,1166300997,1531293695,-463649340,1174691653,1665541217,1684358724,1183082310,1799791721,-462600508,1191472966,1934042225,1685407556,1199863623,2068292729,-461551676,1208254279,-2092424063,1686456388,1216644936,-1958173559,-460502844,1225035592,-11983727,1687505231,1233426249,-1689672551,-459454012,1241816905,-1555419137,1688554052,1250207562,-1421171543,-458405180,1258598218,-1286921039,1689602884,1266988875,-1152670535,-457356348,1275379531,-1018420031,1690651716,1283770188,-884169527,-187872060,1292161023,-749919023,1691700548,1300551501,-615668519,-455258684,1308942157,-481418015,1692794868,1317332814,-347167511,-454209852,1325723470,-212917007,1693798212,1334114127,-78666503,-453161020,1342504783,55584001,1694847045,1350895440,-11492087,-452112177,1359286096,324085009,1695895877,1367676753,458335513,-451063355,1376067409,592586017,1696944709,1384458066,726836521,-450014523,1392848722,861087025,1879003973,1401239379,995337529,-448965691,1409630035,1129588033,1699042373,1418020692,1263838537,-447916859,1426411348,1398089041,1700091205]},{"sector":6,"length":512,"data":[1434802005,1532339545,-446868027,1443192661,1666590049,1701140037,1451583318,1800840553,-177383739,1459974143,1935091057,1702188869,1468364631,2069341561,-444770363,1476755287,-2091375231,1703237701,1485145944,-1957124727,-443721531,1493536600,-1822874223,1704286533,1501927257,-1688623719,-442672699,1510317913,-1554373215,1705335365,1518708570,-1420122711,-441623867,1527099226,-1285872207,1706384197,1535489883,-1151621703,-440575035,1543880539,-1017371199,1707433029,1552271196,-883120695,-439526203,-667812,-748870191,1708481861,1569052509,-614619687,-438477371,1577443165,-480369183,1709530693,1585833822,-346118679,-437428539,1594224478,-10541583,1710579535,1602615135,-77617671,-436379707,1611005791,56632833,1711628358,1619396448,190883337,-435330874,1627787104,335541777,1712677190,1636177761,459384345,-434282042,1644568417,593634849,1713726022,1652959074,727885353,-433233210,1661349730,862135857,1714774854,1669740387,996386361,-432184378,1678131043,1130636865,1715823686,1686521700,1264887369,-431135546,1694912356,1399137873,-162175674,1703303167,1533388377,-430086714,1711693669,1667638881,1717921350,1720084326,1801891839,-428998666,1728474982,1936139889,1718970182,1736865639,2070390393,-427989050,1745256295,-2090326399,1720019014,1753646952,-1956075895,-426940218,1762037608,-1821825391,1721067846,1770428265,-1687574887,-425891386,1778818921,-1553324383,1722116678,1787209578,-1419073879]},{"sector":7,"length":512,"data":[-424804362,1795600234,-1284823375,1723165510,1803990891,-1150572871,-423793722,1812381547,-1016322367,1724214342,1820772204,-882071863,-422744890,1829162860,-747821359,1725263174,1837553517,-9591079,-421696049,-598163,-479320351,1726312006,1854334830,-345069847,-420647226,1862725486,-210819343,1727360838,1871116143,-76568839,-419598394,1879506799,57681665,1728409671,1887897456,191932169,-418549561,1896288112,326182673,1729458503,1904678769,460433177,-417500729,1913069425,594683681,1730507335,1921460082,728934185,-416451897,1929850738,863184689,1731556167,1938241395,997435193,-415403065,1946632051,1131685697,1732604999,1955022708,1265936201,-414354233,1963982708,1400186705,1733653831,1971804021,1534437209,-413305401,1980194677,1668687713,1734702663,1988585334,1802938217,-412256569,1996975990,-8968335,1735751503,2005366647,2071439225,-411207737,2013757303,-2089275393,1736800327,2022147960,-1955027063,-410158905,2030538616,-1820776559,1737849159,2038929273,-1686526055,-409110073,-548999,-1552275551,1738897991,2055710586,-1418025047,-408061241,2064101242,-1283774543,1739946823,2072491899,-1149524039,-407012409,2080882555,-1015273535,1879014471,2089273212,-881023031,-405963577,2097663868,-746770433,1742044487,2106054525,-612522023,-404914745,2114445181,-478271519,1743093319,2122835838,-344021015,-403865913,2131226494,-209770511,1744142151,2139617151,-75517953,-402817081,-2146959489]},{"sector":8,"length":512,"pattern":0,"data":[58730497,1745190984,-2138568832,192981001,-401768248,-2130178176,327231505,1746239816,-2121787519,461482009,-400719416,-2113396863,595732513,1747288648,-2105006206,729983017,-399670584,-2096615550,864233521,1748337480,-2088224893,998484025,-398621752,-2079834237,1132734529,1749417976,-2071443580,1266985033,-397572920,-2063052924,1401235537,1750435144,-2054662267,1535486041,-396492808,-2046271611,1669736545,1751483976,-2037880954,1803987049,-395475256,-2029490298,1946155121,1752532808,-2021099641,2072488057,-394426424,-2012708985,-2088228735,1753581640,-2004318328,-1953978231,-393377592,-1995927672,-1819727727,1754630472,-1987537015,-1685477223,-392328760,-1979146359,-1551226719,1755679304,-1970755702,-1416976215,-391279928,-1962365046,-1282725711,1756728136,-1953974389,-1148475207,-390231096,-1945583733,-1014224703,1757776968,-1937193076,-7558967,-389182257,-1928802420,-745723695,1758825800,-1920411763,-611471361,-388133432,-1912021107,-477222687,1759874632,-1903630450,-342972183,-387084600,-1895239794,-208721679,1760923464,-1886849137,-74471175,-117600312,-1878458369,59779329,1761972297,-1870067824,194029833,-384986935,-1861677168,328282111,1763021129,-1853286511,462530841,-383938103,-1844445295,596781345,1764069961,-1836505198,731031849,-382889271,-1828114542,865282353,1765118793,-1819723885,999532857,-381840439,-1811333229,-1,15]},{"sector":9,"length":512,"data":[67108857,1610940480,8390400,184590345,-536018752,16781056,318840849,1611989312,25171713,453091353,-534969920,33562369,587341857,1613038144,41953026,721592361,-533921088,50343682,855842865,1614086976,58734339,990093369,-532872256,67124995,1124343873,1615135808,75515652,1258594377,-531823424,83906308,1409282129,1616184640,92296965,1527095385,-530774592,100687621,1661345889,1617233472,109078278,1795596393,-529725760,117468934,1929846897,1618282304,125859591,2064097401,-528676928,134250247,-2096619391,1619331136,142640904,-1962368887,-527628096,151031560,-1828118383,1620379968,159422217,-1693867879,-268498496,167812873,-1559617375,1621428800,176203530,-1425366871,-525530432,184594186,-1291116367,1622477632,192984843,-1156865863,-524481600,201375499,-1022615359,1623526464,209766156,-888364855,-523432768,218156812,-754114351,1624575296,226547469,-619863847,-522383936,234938125,-485613343,1625624128,243328782,-351362839,-521335104,251719438,-217112335,1626672960,260110095,-82861831,-520286272,268500751,51388673,1627721793,-981232,185639177,-519237439,285282064,319889681,1628770625,293672721,469758233,-518188607,302063377,588390689,1629819457,310454034,722641193,-517139775,-970990,856891697,1630868289,327235347,991142201,-268495935,335626003,1125392705,1631917121,344016660,1259643209,-515042111,352407316,-15392431,1632965967]},{"sector":10,"length":512,"data":[360797973,1528144217,-513993279,369188629,1662394721,1634014785,377579286,1796645225,-512944447,385969942,1930895729,1635063617,394360599,2065146233,-511895615,402751255,-2095570559,1636112449,411141912,-1961320055,-510846783,419532568,-1827069551,1637161281,427923225,-1677725287,-509797951,436313881,-1558568543,1638210113,444704538,-1424318039,-508749119,453095194,-1275072079,-239789247,461486079,-1155817031,-507700287,469876507,-1021566527,1640307777,478267164,-887316023,-506651455,-930020,-753065519,1641356609,495048477,-618815015,-505602623,503439133,-484564511,1642405441,511829790,-350314007,-504553791,520220446,-216063503,1643454273,528611103,-81812999,-503504959,537001759,52437505,1878990914,545392416,186688009,-502456126,553783072,320938513,1645551938,562173729,455189017,-501407294,570564385,589439521,1646657522,578955042,723690025,-500358462,587345698,857940529,1647649602,595736355,1006629433,-499309630,604127011,1126441537,1648698434,612517668,1260692041,-498260798,621805348,1394942545,1649747266,629298981,1529193049,-497211966,637689637,1663443553,1650796098,646080294,1811935849,-496163134,654470950,1931944561,1651844930,662861607,2066195065,-495114302,671252263,-2094521727,1652893762,679642920,-1960267777,-494065470,688033576,-1826020719,1878993218,696424233,-1691770215,-493016638,-876759,-1557519711,1654991426,713205546,-1423269207]},{"sector":11,"length":512,"data":[-491967806,721596202,-1289018703,1656040258,729986859,-1154764801,-490918974,738377515,-1020517695,1657089090,746768172,-886267191,-489870142,755158828,-752016687,1658137922,763549485,-617766183,-488821310,771940141,-483515679,1659186754,780330798,-349265175,-487772478,788721454,-215014671,1660235586,797112111,-80764167,-486723646,805502767,53486337,1661284419,813893424,187736841,-485674813,822284080,321987345,1662333251,830674737,456237849,-484625981,839065393,590488353,1663382083,847456050,724738857,-483524621,855846706,858989361,-214617277,864237567,993239865,-482528317,872628019,1127490369,1665479747,881018676,1261740873,-481479485,889409332,1395991377,1666528579,897799989,1530241881,-480430653,906190645,1664492385,1667577411,914581302,1798742889,-479381821,922971958,1932993393,1668626243,931362615,2067243897,-478332989,939753271,-2093472895,1669675075,948143928,-1959222391,-477284157,956534584,-1824971887,1670723907,964925241,-1690721383,-476235325,973315897,-1556470879,1671772739,981706554,-1422220375,-475186493,990097210,-1287969871,1672821571,998487867,-1153719367,-474137661,1006878523,-1019468863,1673870403,1015269180,-885218359,-473088829,1023659836,-750967855,1674919235,1032050493,-616717351,-472039997,1040441149,-482466847,1675968067,1048831806,-348216343,-470991165,1057222462,-213965839,1677016899,1065613119,-79715335,-469942333,1074003775]},{"sector":12,"length":512,"data":[54535169,1678065732,1082394432,188785673,-468893500,1090785088,323036177,1679114564,1099175745,457286681,-467844668,1107566401,-12442591,1680163407,1115957058,725787689,-466795836,1124347714,860038193,1681260532,1132738371,994288697,-465747004,1141129027,1128539201,1682261060,1149519684,1262789705,-464698172,1157910340,1397040209,1683309892,1166300997,1531293695,-463649340,1174691653,1665541217,1684358724,1183082310,1799791721,-462600508,1191472966,1934042225,1685407556,1199863623,2068292729,-461551676,1208254279,-2092424063,1686456388,1216644936,-1958173559,-460502844,1225035592,-11983727,1687505231,1233426249,-1689672551,-459454012,1241816905,-1555419137,1688554052,1250207562,-1421171543,-458405180,1258598218,-1286921039,1689602884,1266988875,-1152670535,-457356348,1275379531,-1018420031,1690651716,1283770188,-884169527,-187872060,1292161023,-749919023,1691700548,1300551501,-615668519,-455258684,1308942157,-481418015,1692794868,1317332814,-347167511,-454209852,1325723470,-212917007,1693798212,1334114127,-78666503,-453161020,1342504783,55584001,1694847045,1350895440,-11492087,-452112177,1359286096,324085009,1695895877,1367676753,458335513,-451063355,1376067409,592586017,1696944709,1384458066,726836521,-450014523,1392848722,861087025,1879003973,1401239379,995337529,-448965691,1409630035,1129588033,1699042373,1418020692,1263838537,-447916859,1426411348,1398089041,1700091205]},{"sector":13,"length":512,"data":[1434802005,1532339545,-446868027,1443192661,1666590049,1701140037,1451583318,1800840553,-177383739,1459974143,1935091057,1702188869,1468364631,2069341561,-444770363,1476755287,-2091375231,1703237701,1485145944,-1957124727,-443721531,1493536600,-1822874223,1704286533,1501927257,-1688623719,-442672699,1510317913,-1554373215,1705335365,1518708570,-1420122711,-441623867,1527099226,-1285872207,1706384197,1535489883,-1151621703,-440575035,1543880539,-1017371199,1707433029,1552271196,-883120695,-439526203,-667812,-748870191,1708481861,1569052509,-614619687,-438477371,1577443165,-480369183,1709530693,1585833822,-346118679,-437428539,1594224478,-10541583,1710579535,1602615135,-77617671,-436379707,1611005791,56632833,1711628358,1619396448,190883337,-435330874,1627787104,335541777,1712677190,1636177761,459384345,-434282042,1644568417,593634849,1713726022,1652959074,727885353,-433233210,1661349730,862135857,1714774854,1669740387,996386361,-432184378,1678131043,1130636865,1715823686,1686521700,1264887369,-431135546,1694912356,1399137873,-162175674,1703303167,1533388377,-430086714,1711693669,1667638881,1717921350,1720084326,1801891839,-428998666,1728474982,1936139889,1718970182,1736865639,2070390393,-427989050,1745256295,-2090326399,1720019014,1753646952,-1956075895,-426940218,1762037608,-1821825391,1721067846,1770428265,-1687574887,-425891386,1778818921,-1553324383,1722116678,1787209578,-1419073879]},{"sector":14,"length":512,"data":[-424804362,1795600234,-1284823375,1723165510,1803990891,-1150572871,-423793722,1812381547,-1016322367,1724214342,1820772204,-882071863,-422744890,1829162860,-747821359,1725263174,1837553517,-9591079,-421696049,-598163,-479320351,1726312006,1854334830,-345069847,-420647226,1862725486,-210819343,1727360838,1871116143,-76568839,-419598394,1879506799,57681665,1728409671,1887897456,191932169,-418549561,1896288112,326182673,1729458503,1904678769,460433177,-417500729,1913069425,594683681,1730507335,1921460082,728934185,-416451897,1929850738,863184689,1731556167,1938241395,997435193,-415403065,1946632051,1131685697,1732604999,1955022708,1265936201,-414354233,1963982708,1400186705,1733653831,1971804021,1534437209,-413305401,1980194677,1668687713,1734702663,1988585334,1802938217,-412256569,1996975990,-8968335,1735751503,2005366647,2071439225,-411207737,2013757303,-2089275393,1736800327,2022147960,-1955027063,-410158905,2030538616,-1820776559,1737849159,2038929273,-1686526055,-409110073,-548999,-1552275551,1738897991,2055710586,-1418025047,-408061241,2064101242,-1283774543,1739946823,2072491899,-1149524039,-407012409,2080882555,-1015273535,1879014471,2089273212,-881023031,-405963577,2097663868,-746770433,1742044487,2106054525,-612522023,-404914745,2114445181,-478271519,1743093319,2122835838,-344021015,-403865913,2131226494,-209770511,1744142151,2139617151,-75517953,-402817081,-2146959489]},{"sector":15,"length":512,"pattern":0,"data":[58730497,1745190984,-2138568832,192981001,-401768248,-2130178176,327231505,1746239816,-2121787519,461482009,-400719416,-2113396863,595732513,1747288648,-2105006206,729983017,-399670584,-2096615550,864233521,1748337480,-2088224893,998484025,-398621752,-2079834237,1132734529,1749417976,-2071443580,1266985033,-397572920,-2063052924,1401235537,1750435144,-2054662267,1535486041,-396492808,-2046271611,1669736545,1751483976,-2037880954,1803987049,-395475256,-2029490298,1946155121,1752532808,-2021099641,2072488057,-394426424,-2012708985,-2088228735,1753581640,-2004318328,-1953978231,-393377592,-1995927672,-1819727727,1754630472,-1987537015,-1685477223,-392328760,-1979146359,-1551226719,1755679304,-1970755702,-1416976215,-391279928,-1962365046,-1282725711,1756728136,-1953974389,-1148475207,-390231096,-1945583733,-1014224703,1757776968,-1937193076,-7558967,-389182257,-1928802420,-745723695,1758825800,-1920411763,-611471361,-388133432,-1912021107,-477222687,1759874632,-1903630450,-342972183,-387084600,-1895239794,-208721679,1760923464,-1886849137,-74471175,-117600312,-1878458369,59779329,1761972297,-1870067824,194029833,-384986935,-1861677168,328282111,1763021129,-1853286511,462530841,-383938103,-1844445295,596781345,1764069961,-1836505198,731031849,-382889271,-1828114542,865282353,1765118793,-1819723885,999532857,-381840439,-1811333229,-1,15]}],[{"sector":1,"length":512,"data":[538988361,538976288,659773779,0,0,851443712,138431,40774,1329877837,538976339,659773779,0,0,851443712,5381311,38138,1296912195,541347393,541937475,0,0,851443712,10296511,54645,1230196289,538976288,542333267,0,0,851443712,17308863,9065,1162891329,538985550,541415493,0,0,851443712,18488511,10774,1230197569,538988103,541937475,0,0,851443712,19930303,6399,1381258305,538985033,541415493,0,0,851443712,20782271,11208,1262698818,538988629,541415493,0,0,851443712,22224063,36140,1145784387,538987347,541415493,0,0,851443712,26877119,12241,1229932611,538985795,541937475,0,0,851443712,28449983,1754,1347243843,538976288,541415493,0,0,851443712,28712127,13084,1314213699,542724692,542333267,0,0,851443712,30416063,26936,1430406468,538976327,541415493,0,0,851443712,33889471,15718,1414284612,541410642,541415493,0,0,851443712,35921087,11111,1263749444,1347243843,541937475,0,0,851443712,37362879,10748,1263749444,1498435395,541937475,0,0,851443712,38739135,13335]},{"sector":2,"length":512,"data":[1347635524,542720332,542333267,0,0,851443712,40508607,15789,1263750980,538990917,541937475,0,0,851443712,42540223,5861,1447645764,538989125,542333267,0,0,851443712,43326655,5406,1229734981,538976334,541415493,0,0,851443712,44047551,12674,541148997,538976288,541675587,0,0,851443712,45685951,58870,541148997,538976288,542333267,0,0,851443712,53222591,4885,860704069,538981944,541415493,0,0,851443712,53877951,120926,843405381,542001474,541415493,0,0,851443712,69409983,8424,538985286,538976288,541415493,0,0,851443712,70524095,18650,1397310534,538976331,541415493,0,0,851443712,72948927,29336,1145981254,538976288,541415493,0,0,851443712,76750015,6770,1297239878,538989633,541937475,0,0,851443712,77667519,22974,1178686023,1279410516,541937475,0,0,851443712,80616639,11205,1346458183,1396918600,541937475,0,0,851443712,82058431,19742,1346458183,1396918600,542069328,0,0,851443712,84614335,21232,1162692936,538976333,542333267,0,0,851443712,87366847,29136]},{"sector":3,"length":512,"data":[542069577,538976288,541675587,0,0,851443712,91102399,49754,1313427274,538976288,541415493,0,0,851443712,97524927,17918,1113146699,538976288,541937475,0,0,851443712,99818687,15750,1113146699,1146241359,542333267,0,0,851443712,101850303,34598,1161969996,538976332,541415493,0,0,851443712,106306751,9390,1145130828,542656838,541937475,0,0,851443712,107551935,1131,541934925,538976288,541415493,0,0,851443712,107748543,32502,1162104653,538976288,541937475,0,0,851443712,111942847,23569,1163022157,538976288,541937475,0,0,851443712,115023039,2545,1398099789,538976325,541937475,0,0,851443712,115350719,56408,1163284301,538976288,541415493,0,0,851443712,122625215,18319,1179864142,541281877,541415493,0,0,851443712,124984511,7036,1313428048,538976340,541415493,0,0,851443712,125902015,15656,1313428048,542262612,542333267,0,0,851443712,127933631,18804,1145913682,1163282770,542333267,0,0,851443712,130358463,5873,1280329042,541410113,541415493,0,0,851443712,131144895,20274]},{"sector":4,"length":512,"pattern":0,"data":[1414743378,541413967,541415493,0,0,851443712,133766335,38342,1448363347,538989125,541415493,0,0,851443712,138681535,12015,1380010067,538976325,541415493,0,0,851443712,140254399,10912,1380011347,1448232020,541415493,0,0,851443712,141696191,45145,1414680403,538976288,541415493,0,0,851443712,147528895,6938,1396856147,538976340,541415493,0,0,851443712,148446399,18526,542333267,538976288,541937475,0,0,851443712,150871231,9432,1162170964,538976288,541937475,0,0,851443712,152116415,6945,1347371864,538976345,541415493,0,0,851443712,153033919,16930,1179537219,538986313,542333267,0,0,1939210240,155273369,73,1330926913,1128618053,542392642,0,0,1940979712,155338905,19]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]},{"sector":10,"length":512,"pattern":0,"data":[]},{"sector":11,"length":512,"pattern":0,"data":[]},{"sector":12,"length":512,"pattern":0,"data":[]},{"sector":13,"length":512,"pattern":0,"data":[]},{"sector":14,"length":512,"pattern":0,"data":[]},{"sector":15,"length":512,"data":[100742633,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16776960,0,0,0,0,0,0,0,0,0,589203758,780676609,-2010250961,771829014,20002441,110046750,-919404237,-1912153714,2016840641,2048822784,86163200,-67105863,520529139,7866055,512492834,-1962475398,779881230,18550409,2081230474,923699246,403606273,243871356,243990827,-1993442278,-1962867442,779884046,18157193,2081296011,487491886,470715137,243871356,243990807,-1993442285,-2147408114,696002110,-1557258635,513868069,430124668,16352001,547425909,665005692,2082644225,19505966,-1946799108,-1324167682,870372102,-1948545317,-1912554466,-2130657762,1347552127]}]],[[{"sector":1,"length":512,"data":[2139098997,158682117,112775307,-1959801526,772059586,18552459,725805779,899886786,94812673,725805779,247500482,94812447,-1207524109,-883949000,-795948916,855705020,-1579643200,-617382901,2081234570,-1557208073,-970063609,16854534,689343278,664874497,103493121,-628948707,512437760,-472841963,-628899029,287214336,-754667140,-2084361237,-919404326,2081230474,868387664,787609554,1476464035,-163712521,772174351,19793606,85631236,-1557247928,62390559,922103296,-58719945,844919808,-1959898908,771826446,17370761,621710126,243871233,-164757237,771831590,17368577,186024750,446758913,860375045,512372443,-470351561,151388462,370224641,1347944715,119994158,117489409,-1070335997,-1607548786,-1557266121,-1545076461,1077958656,520487214,773736449,17245943,-1962564051,7387336,-1064380274,856008382,782562303,18955913,786706975,771831712,771822499,18036479,771823848,18024079,18850606,809402414,1081409281,36557363,787296768,20385418,53404151,771826438,19207699,17408814,186026286,1049308673,-13762271,-1207889098,-1064435600,1476404712,455538478,100740609,-1645543135,791579182,378154497,-1959919315,771826462,-369023583,7340032,1358955961,17408302,186026798,-1031057407,-147926477,771828534,1476464035,725022510,512437761,-634715861,959378315,1929450294,915090949,-1023540973,-1959863670,1342246166,-768359797,87488302,228797953]},{"sector":2,"length":512,"data":[-147957759,-1979644618,-771313166,-1964832028,-1949529368,378154719,-963968723,1464861364,1482625997,-1961331879,1373909727,756451886,332224257,1950964063,-8656637,838923241,103362276,443810067,151388462,377695745,855638283,785943259,-150922335,-369622045,113508178,20291886,-970014578,-16699386,18850094,775847982,1215627521,-388894581,861073411,5957842,639464794,-1574041718,1380319503,1239994931,-1608099328,-1574043648,-1590820592,65732879,772246310,18810615,91553793,-351273179,-754667260,267927016,384507507,-774753454,13796320,300478603,-1960420864,-508665,-970062221,77830,1448133383,784763735,18550411,992932343,1946226950,295906868,-768388607,386269998,370355713,53346585,-2097079034,-1557266222,-1993473783,771820310,18024135,-13434879,1526632936,453937966,-784643839,1583340171,521061208,-402301250,-466485226,-617408819,516217742,2025718065,-1944286976,432865860,1958742700,-1290882040,-351220473,168674291,762212174,1953724755,1679846757,543912809,1679848047,543912809,1869771365,1376390514,1634496613,1629513059,1881171054,1936942450,2037276960,2036689696,1701345056,1701978222,226059361,-118947830,-369098729,7342227,0,0,0,0,0,0,1879061760,-176155904,1124532230,538988111,1193287712,28672,554104192,1481982215,538976288,1879071008,-174014464,1342637318,538988114,1797267488]},{"sector":3,"length":512,"pattern":0,"data":[134246400,956757376,1330397959,539249475,1879079712,-183975424,67583494,254,1879084288,-176160768,1124540678,540101967,-1625284576,-1073713152,201782688,1414548487,538976305,1879095328,-174014464,1275532038,540169296,2105376,0,13238272,-1598029712,119146229,861163596,538976288,7340252,116752384,1329792807,538980941,15605792,-2147483536,120391413,860704579,538976288,7405567,116752384,1329792819,538981453,1056800,318767104,0,21,6400,1769472,1308622848,28675,131327,16777216,0,589824,0,0,2048,-2134093824,101191744,167772932,67372546,201328655]},{"sector":4,"length":512,"pattern":0,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7340978,33554432,33554943,23593024,150995456,256,0,0,537067520,10240,65794,1744887810,192513,131081,0,0,0,-65536,1325400063,1095639119,538985805,8224,1174405120,842093633,2105376,7341078,33554688,33554943,23593024,150995456,256,0,0,537067520,10240,65794,1744887810,192513,131081,0,0,0,-65536,1325400063,1095639119,538985805,8224,1174405120,842093633,2105376,7341178,33554432,33554943,23593024,150995456,256,0,0,537067520,10240,65794,1744887810,192513,131081]},{"sector":5,"length":512,"data":[-65536,1325400063,1095639119,538985805,8224,1174405120,842093633,2105376,7405567,33554432,33554943,23593024,150995456,256,0,0,537067520,10240,65794,1744887810,192513,131081,0,0,0,-65536,1325400063,1095639119,538985805,8224,1174405120,842093633,2105376,-1603270397,131589,5242881,5242960,80,1343422464,505355295,522133023,522067742,7345407,7345198,1413563904,538980913,1095106592,540422484,1308631072,1095639119,538985805,8224,0,0,0,603979776,16777216,33554434,50331650,67108866,83886082,100663298,117440514,134217730,150994946,167772162,184549378,201326594,218103810,234881026,251658242,268435458,285212674,301989890,318767106,335544322,352321538,369098754,385875970,402653186,419430402,436207618,452984834,469762050,486539266,503316482,520093698,536870914,553648130,570425346,587202562,603979778,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,33554687,-1,-248,-62977,-16056321,201326591,-1]},{"sector":6,"length":512,"data":[-244,-61953,-15794177,1895825407,-1,-142,-35841,-9109505,1996488703,-1,-137,-1207741185,-2147214333,4,0,0,0,0,0,0,0,0,0,0,0,0,520093696,1509964544,-1761576960,-738151168,285274880,1308700673,1,46923843,46924694,46928642,46929227,201770542,785318656,1187465,335973422,1088998144,-402594816,16449595,887619584,64256,3008513,33620219,-83876120,-402456064,19922975,1697792,-402587344,19922963,911362,-402456272,21430279,-1577057560,1048587780,1946157069,-1590800371,959315971,1476400134,-13761163,-402203090,-152371101,1431787088,-1156664237,281870343,1583308123,-2144415912,3390,1458047092,-402426624,-1943142331,-1677714402,-367067346,512634374,46792732,471764480,-13722624,771798046,1842828,781983502,867968,-402099200,57999393,-1660940056,-16740149,33023,1042432,1354957172,772125779,925439,516118619,1465274630,-1154038482,1053044231,146343871,1604842240,520575326,-1269608253,520039942,1482358798,-1910567229,-1191175674,12451845,-778523647,-1948200480,-1381257736,-2131565909,409662,1102979700,964870,-125069140,-1378317395,1962933123,-49907,-16578444,-1416364285,-454906989,867968,-402426880,432865328,1951355709,788475397,1344143627,-1912586056]},{"sector":7,"length":512,"data":[1548504,205261860,521014389,867968,-402426880,525860872,788475641,1364197643,1156056663,-18177,281002126,1095936,-1410088909,1482252039,788475587,-1545009434,248830,0,0,0,7342254,5242880,917506,1310800,7340044,1,131072,0,0,1459617792,860902150,-1144549633,-2068316139,-1943024362,1959201728,-222818805,1460031496,-889192008,1594317656,-1929379893,291595,1330511872,1296125472,538976325,1330511904,1296125472,538976325,-8388576,1342177535,16908291,268566529,-134217728,1,0,0,0,2097920,40,0,0,0,0,0,0,0,130816,1330511872,1296125472,538976325,32,1095106560,540160340,-16768992,1342177535,16908291,268566529,-134217728,1,0,0,0,2097920,40,0,0,0,0,0,0,0,130816,1330511872,1296125472,538976325,32,1095106560,540160340,-16768992,1342177535,16908291,268566529,-134217728,1,0,0,0,2097920,40,0,0,0,0,0,0,0,130816,1330511872,1296125472,538976325,32,1095106560,540160340,-16768992,1342177535,16908291,268566529,-134217728,1]},{"sector":8,"length":512,"pattern":0,"data":[0,0,0,2097920,40,0,0,0,0,0,0,0,130816,1330511872,1296125472,538976325,32,1095106560,540160340,-16768992,1342177535,16908291,268566529,-134217728,1,0,0,0,2097920,40,0,0,0,0,0,0,0,130816,1330511872,1296125472,538976325,32,1095106560,540160340,-16768992,1342177535,16908291,268566529,-134217728,1,0,0,0,2097920,40,0,0,0,0,0,0,0,130816,1330511872,1296125472,538976325,32,1095106560,540160340,-16768992,1342177535,16908291,268566529,-134217728,1,0,0,0,2097920,40,0,0,0,0,0,0,0,130816,1330511872,1296125472,538976325,32,1095106560,540160340,-16768992,1342177535,16908291,268566529,-134217728,1,0,0,0,2097920,40,0,0,0,0,0,0,0,130816,1330511872,1296125472,538976325,32,1095106560,540160340,-16768992,1342177535,16908291,268566529,-134217728,1]},{"sector":9,"length":512,"data":[2097920,40,0,0,0,0,0,0,0,130816,1330511872,1296125472,538976325,32,1095106560,540160340,-16768992,1342177535,16908291,268566529,-134217728,1,0,0,0,2097920,40,0,0,0,0,0,0,0,130816,1330511872,1296125472,538976325,32,1095106560,540160340,-16768992,1342177535,16908291,268566529,-134217728,1,0,0,0,2097920,40,0,0,0,0,0,0,0,130816,1330511872,1296125472,538976325,32,1095106560,540160340,-16768992,1342177535,16908291,268566529,-134217728,1,0,0,0,2097920,40,0,0,0,0,0,0,0,130816,1330511872,1296125472,538976325,32,1095106560,540160340,-16768992,1342177535,16908291,268566529,-134217728,1,0,0,0,2097920,40,0,0,0,0,0,0,0,130816,1330511872,1296125472,538976325,32,1095106560,540160340,-16768992,1342177535,16908291,268566529,-134217728,1,0,0,0,2097920,40,0]},{"sector":10,"length":512,"pattern":0,"data":[0,0,0,0,0,0,130816,1330511872,1296125472,538976325,32,1095106560,540160340,-16768992,1342177535,16908291,268566529,-134217728,1,0,0,0,2097920,40,0,0,0,0,0,0,0,130816,1330511872,1296125472,538976325,32,1095106560,540160340,-16768992,1342177535,16908291,268566529,-134217728,1,0,0,0,2097920,40,0,0,0,0,0,0,0,130816,1330511872,1296125472,538976325,32,1095106560,540160340,-16768992,1342177535,16908291,268566529,-134217728,1,0,0,0,2097920,40,0,0,0,0,0,0,0,130816,1330511872,1296125472,538976325,32,1095106560,540160340,-16768992,1342177535,16908291,268566529,-134217728,1,0,0,0,2097920,40,0,0,0,0,0,0,0,130816,1330511872,1296125472,538976325,32,1095106560,540160340,-16768992,1342177535,16908291,268566529,-134217728,1,0,0,0,2097920,40]},{"sector":11,"length":512,"pattern":0,"data":[0,0,0,130816,1330511872,1296125472,538976325,32,1095106560,540160340,-16768992,1342177535,16908291,268566529,-134217728,1,0,0,0,2097920,40,0,0,0,0,0,0,0,130816,1330511872,1296125472,538976325,32,1095106560,540160340,-16768992,1342177535,16908291,268566529,-134217728,1,0,0,0,2097920,40,0,0,0,0,0,0,0,130816,1330511872,1296125472,538976325,32,1095106560,540160340,-16768992,1342177535,16908291,268566529,-134217728,1,0,0,0,2097920,40,0,0,0,0,0,0,0,130816,1330511872,1296125472,538976325,32,1095106560,540160340,-16768992,1342177535,16908291,268566529,-134217728,1,0,0,0,2097920,40,0,0,0,0,0,0,0,130816,1330511872,1296125472,538976325,32,1095106560,540160340,-16768992,1342177535,16908291,268566529,-134217728,1,0,0,0,2097920,40]},{"sector":12,"length":512,"data":[130816,1330511872,1296125472,538976325,32,1095106560,540160340,-16768992,1342177535,16908291,268566529,-134217728,1,0,0,0,2097920,40,0,0,0,0,0,0,0,130816,1330511872,1296125472,538976325,32,1095106560,540160340,8224,1921055360,50102282,-58717580,772109322,17182463,1465012563,-1202715106,-661782464,7603910,2145550336,7673402,113641330,-352255884,-1064545504,50654145,1539346115,235922307,1912659944,-397387764,-155582438,1810427395,646600704,-469106572,133759348,1499094815,182875,-973061214,536889350,1946352768,1208403461,-1047911936,1151483684,1160677376,-1061058048,1185023720,-1060992256,-461372192,214174223,4694688,-401714426,-1960443812,-390003385,4366850,138906150,646580059,-461373322,-1998583104,-1023379930,-401671285,896860224,4384782,12136309,32553473,-496108804,116849661,1946288200,837291536,-1189711360,-256245756,1827928577,703074043,-33131264,1962951438,1701364683,797895423,1701376000,773778175,1701376000,780135167,1701376000,786623231,1701376000,788065023,1701376000,795470591,-58658816,772110101,17182463,1921055360,-1202708746,-661782464,-13722536,520160798,714,-264831186,1048653316,478741744,-970060173,319091718,-184105426,334188548,-200882642,-970058748,324870,-265387730]},{"sector":13,"length":512,"data":[857508100,-257872174,95795972,-1993411593,-1291522026,786691588,83166720,-267976914,1048653316,23987440,-30529930,772076806,82849409,62456174,1048653312,23921904,-30534538,772076806,82849409,-371064467,-150550994,-617407228,-1590767053,-155319056,833796,344638462,91669051,-490591418,113651443,-1977875209,915025619,-1976695563,772076558,84025087,-13709178,-2046492130,520040176,-930740990,35585838,786991621,82839183,181686731,-455998287,-883309558,110042894,110036667,-392362307,-1980104685,-83562442,-100611096,449642932,-1154547717,1381060614,449700914,1347967322,777146707,115017415,78905345,57875149,-2013228055,-2012823762,-2012823538,-2012823242,772194838,115017415,1239941122,779579905,115017415,-421003261,778793472,115017415,-1427636224,113287168,-1086422888,58004486,755000325,78708816,-594873866,95795608,-1557208585,-1014364453,1958742936,23968012,19849719,-351872250,-1052868601,91619846,-620298450,-1039234554,1240281606,-619839186,-1056011770,1240281606,-1010900527,-1947139322,100740612,-1959917861,1510398774,-1017619623,-768358093,45365483,-193848627,113192584,113249928,113325704,113379014,10938368,-1998004622,-388402688,780795925,243926719,915015360,378144449,520029890,-1597831454,535299775,113222144,-402210656,-1063124970,113352710,-1577054744,-1029699903,321542,-1022967134,254075018,-321780559,-2134701355,537313086]},{"sector":14,"length":512,"data":[242496887,113196672,-2144570855,-2147041218,1048585586,2006517440,-1052868578,393679366,113327744,-2146404864,822526526,1048578423,1979713218,-104597502,-1086422845,276243462,113262208,-2146863271,1493614910,-1007156617,79283193,113228544,-527825014,1022365477,-803834102,-789786388,-2131963668,-58716188,1124497162,-119442103,-1866204733,0,0,0,33587200,-65536,2623746,16777728,64,33622016,112,67248128,256,134447016,512,268763135,1024,2141716480,33556483,262144,67239936,4194816,8,33556483,1048640,268697600,4194816,32,33562629,4194368,1074135040,4194816,128,33587207,64,152635015,0,825176368,876097328,33591296,33554690,47186032,150995709,512,0,-1879048192,16843264,14680576,133761376,33558272,0,0,33591296,33554690,94371952,150995961,512,0,-1879048192,16908800,15729152,166729344,33563648,0,0,393252864,396629898,396629924,396629924,396629924,13113278,-331940050,922693143,-883620128,860944896,1490587328,383427374,-669087442,1359416854,1941446231,-1093104124,179066687,-1274448704,506638,-219475763,375071,771817662,-523134804,-125050671,-1414662265,-142103635,1499459042,17211694,11838254,17342766,11969326,4982471,244057972]},{"sector":15,"length":512,"data":[113705038,139067476,5639820,6555335,244058107,-839188378,108817,1397765749,106386001,11667636,91362253,-99186642,1516177175,1918393177,1048587803,1946163194,-90165752,-339149289,113651215,-1207888147,183173121,-1060060976,1962935077,-30523386,1073772550,-1024014198,855799168,-86887488,12374670,-1974338809,-1061924635,393352653,1962998912,1200236050,1050816002,1200236038,1067593219,-1106384122,-963706881,958502,104768046,551952560,1044283438,276103174,547907300,263195252,1357140198,343146920,-2031615056,-402477047,28313985,839482600,158853312,1793589936,-402542583,-1070462619,856252648,-1898279214,-1077922878,-1414855372,113756300,116260972,-956272989,1644209158,10920711,-1157626689,-1416427788,-947672173,-1817472252,-1817472085,1477035,68585733,86810629,19309102,1044283438,192085254,86705863,113639951,-841022174,-754536174,-1993451040,1343673870,-617393378,512482190,512622780,2139160766,1968198147,92241935,-1962314420,1241954512,-1031065651,1076698971,-542953984,4205846,383886126,74693208,113760910,2294389,41356940,-33385309,-1743877951,1929824002,-1207301630,-1064434573,-661733325,637550241,43255355,3999094,-955615760,-201311226,1041140742,-1899416832,-1777431847,281146884,-970060684,268756230,-435763666,521015556,-1209530610,444169,1476990976,1973609522,19243520,100786385,-1205987490,-661721088,-1425791,527781699]}],[{"sector":1,"length":512,"data":[-1294719,393564237,-1163647,259346753,-840695624,-2096598507,-2135408437,521522660,146047154,74585037,391976584,521065010,19662534,18464521,384646784,-1962183423,-952267971,-369099003,372900116,57802869,855705577,-1237480503,-335100416,1461594134,-1274654382,1913900296,16613496,666175093,28707249,-973158658,384448136,-2009079424,-2011763954,974580782,1979788302,739149828,1515783937,364126047,225579981,1963129984,46759944,7800518,-331448319,192227350,384515712,-1235978743,-2142180601,1343679550,162985333,384515712,-2143259612,253160254,1048578932,1963529963,-352143650,-352209362,1515783978,364126047,527569869,1963129984,46759962,7800518,-335100415,28725270,104468400,58065196,-2147406686,-91610935,7880320,-33196798,552698063,-358563789,910526742,-1994986592,1300837445,578127907,-2012916344,512361597,1569199852,2017361957,292880640,7866054,281641730,-1960620791,-339542467,-373096778,96993008,915079167,-167110819,-2135794828,1614711634,1964935703,-402606336,141689427,1929891816,132114435,-20775334,-387877426,915015371,-2135812259,1397883319,392183435,7675530,1912744680,128378894,-1226307213,-27632889,1541663687,-20775334,-2133232178,33629502,-2081946762,1614711553,436175127,-1089637111,1048578328,1962934391,150912771,-2130966770,-66699714,1048585077,1946163037,12490524,-1094283536,-172026010,637439,1972872947,336378120]},{"sector":2,"length":512,"data":[-351084866,-268388277,-2128166770,1140845118,642479439,-1294719,1114984525,-297893594,1968259583,-73324999,1038124799,779565110,-1591338894,-528023563,1999648829,638284321,-2030045023,808730080,767104115,336379412,1049167630,244056244,-836042570,118400243,83050112,-1994885887,-1190853058,784203985,-1985678572,-1190854082,-4325365,1470427924,-1287585352,1032463873,1595264505,113646450,503382137,-661733325,28327561,28446348,353025567,-217986119,-2095116636,-271511609,-271454255,-947785775,1049165936,-694091773,81247510,-87234546,235275965,117097960,654258975,-1574566518,-1591339305,503715542,-1122038265,-401734441,520551082,106793735,-467760850,526223894,-568424410,139299350,639059339,383256105,639190411,383387161,857664818,-1948283137,520436254,-1912310856,109979328,384303731,116796935,1967134430,-134512378,-2096895217,-529336325,-368817688,74646121,423529262,75333633,-1962314624,-31939,1357640565,1166541488,-29521147,-31808,-1959857035,-1962862274,646590013,-327155419,-2009232638,-1057094331,-176829186,383164462,544342588,621161006,67400193,772139778,7669250,383164974,-1088503554,-544340877,520263842,-509530429,-1145008618,28836352,-1175047678,332201985,-2128213646,1426325054,-117345110,508778435,90015750,-2147199608,-973003955,-972742075,1498630,-1269631094,-32256760,360024262,-2140966310,1300774881,-1326951917,1450334975,637780667]},{"sector":3,"length":512,"data":[-2130950154,-2144987020,208929087,71270438,-2144991628,108332607,980743690,-1014771970,50037008,-1143442172,-165280830,1971387463,1065362968,638350337,1946435456,1065362950,168195334,-32541450,281248718,67304321,-369502091,-2010250521,639034134,637814667,755390347,-628948991,1191388672,1460872712,-2147126518,-2145985010,71797542,639059337,-1996077173,-1960437435,-1960441257,1435043911,457541917,1996552835,4209925,1435219058,390433561,1569381171,-1031057389,-201862605,86614830,-1963722920,868351690,358451931,785527632,-150656607,698560243,-201893883,691962670,2088173573,1996750909,1199407991,50558209,-858764987,-461321008,-1966339392,787647208,383981194,1320879886,33667073,1320883149,777016065,1961443200,1065365005,774469099,-1878884480,1505436277,1200238081,1022370826,773158384,33570689,-1976693131,-1073085881,-389020044,91552883,921262936,777738241,839417729,772764974,805994368,803932277,-369165335,-437780190,2139172353,1965961224,1200238093,607202311,-384535298,-2127691515,775096447,125164914,176128046,785674801,24395392,777483561,22953600,1464825088,235347486,22658591,772196227,556163,-2094128267,1962939772,2088971804,359989271,772294027,-1962392439,-1993468603,1166742852,1149840919,1685783,1595909363,235347462,122797343,-138876914,-385409274,1505624403,785527553,185091211,772699584,773145739,-1961405301,1959267274,457541894]},{"sector":4,"length":512,"data":[-1961011831,1435179845,1552625181,157124867,-628899029,1552625152,291342603,-1020533807,771807875,-1996071797,78711901,-1020531757,855693955,1284124361,139298818,868387664,787609554,1476733347,-2094075401,338238,-163767177,-2147126769,1075240462,235347462,122797343,-148051954,-385409274,-2144468826,-2145985010,-2130657559,33563469,-1961011829,381557573,339422743,108465522,38026030,-964491914,-1964053750,235407436,-1959913762,-1959918516,1435043412,492145420,-2011478645,116787309,1967134430,-1965346018,-670872611,-2143032365,-208929053,-570168367,33538945,2106126288,-1321342191,1435193860,736809740,-628925758,77056,-1291789693,142445058,-763116797,77056,-150939005,289769971,383655562,505372040,521013022,235264445,536248808,-1961011829,-92071099,-2095679744,1996495229,390398736,1166740338,239438107,1787335,-568423936,526223382,1528760312,1381024607,1048587862,1948844404,2139172401,1966092551,2139106823,578105354,771840446,556163,-1959913356,53348420,242422084,-13759371,1837303884,1568866587,1516109853,181080,33554435,1053088563,1460011289,576555558,1963326336,651309886,185484683,638088640,639456651,1377518987,1166747216,1710695957,1489537811,-1031057318,-235417037,86614830,200406872,1073837266,625314086,1972182790,240577286,1048587807,1946228461,133922900,-768393099,-148552309,1710700133,793086260,1023521352,108138486,-489625391]},{"sector":5,"length":512,"data":[-92211733,-955943935,15740229,774460808,568207095,-600377554,785527585,568342263,843417920,-472838165,-1961371458,662539568,-218097223,638017444,-8176188,-385649409,-1731985588,28627083,-1732044851,-1548693365,348979380,1563855555,16678935,-2135805580,1544980562,-855067625,868679187,-1547269440,-511699102,-1547597249,-1979312284,-401122282,57867047,117443048,-20775334,-1009682994,29541249,88047654,-1014822028,50037008,-336497404,10676348,1049327475,1170675552,-2097151673,-973003955,-972742075,1498630,-1994956127,1688278341,323324183,-2011734880,1973421125,88442880,176128806,638023424,1074298755,-343721102,2005542404,-1058635774,-959396144,56068646,642340233,637685643,-1979615350,-1156097002,28836352,1913900290,63093520,714758,-402427385,1944649793,1398260735,-2144991714,460587327,71270438,-2144987788,259262015,-2129607805,1963197179,520616421,-373072037,1048640268,1914306677,1941440013,650153476,58984134,1455621889,423005011,-12811519,881525876,1015674859,-956146548,-1929380091,1569522269,1580632838,-2095281897,35085830,7669502,392169091,-1017226396,1431458128,-919343821,45404723,-108848435,-2095942400,225771770,1946287491,12141852,-335617472,113651425,-402586381,-397017072,-1980042997,-83562442,1499094366,777044824,104742528,774206972,104808064,772305926,104808064,-1340771580,-400116598,-1951399888,603982824,-1327461881,2287627]},{"sector":6,"length":512,"data":[-90389672,-2146676653,-460295962,1490586481,252477476,-460295962,1539541873,124942,1352454083,-2146676486,-1970245402,1483859652,252477476,-460295962,-401713039,1371799523,243871319,-1014294820,-503887800,-670694610,370355734,1344149210,915091027,-561113377,-164695157,1075240454,-288276875,861074179,8317138,1963428698,772246041,1175905954,-388877486,-1604714388,-1574043648,-1590815001,1398478566,141814737,-388896559,-388896559,-478029685,250286079,-774753454,13796326,1509965800,1482563467,-2081215713,125173758,-603061970,1401940758,-1590800302,-1959913770,1511447566,721850158,521018885,149273870,535998952,-1590796453,-528083236,-133963567,1364247385,503731799,-1959868789,-149494770,503746801,521031767,383164718,235198397,1492287976,155517734,772218719,384304699,-1557255564,777131752,86705863,-796196864,771752377,504813217,520041223,-1123148018,1340606693,777658354,384044683,-1949222071,1577525210,-1017620129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7340032,805735982,115392256,-1426062151,-69056697,1364219595,508909394,-326413562,772961931,3153550,-1576909685,646447137,881525991,1187524,21465638,224889382,307202854,341281574,77790849,113710965,1323,1979710083,1468737036,722897180,1468737029,-1977182438,976093767]},{"sector":7,"length":512,"data":[-1741917436,-268181295,2143561367,-13698034,41025876,-1909587532,-989843426,-1996484066,123405127,1516199199,-2090968999,-389348668,-487915511,0,-1342177280,304006147,1328096768,-108940270,-83164989,-83756287,1543558401,-83779839,-50198271,-83755775,33233409,33227259,35258581,33227208,35586555,38863391,33227259,33227259,42664443,33227259,33227450,33227259,33227259,-83164432,-83756287,218158337,-83675901,1946381313,1426289667,33229315,33227259,70582485,33227208,64684539,115540955,-1442839064,-1007093022,82126474,109494322,-1073086452,382544501,-327892981,1970405437,-351227900,-448888805,208928772,141942844,208987146,82559026,74825738,796296,827587,1299562506,82192010,510990029,7945856,-1005358080,637538846,215031,-1207471100,-617463552,-1258744371,-1072971005,646580341,382534885,4048875,-1341885070,-2146243824,320830,-532935820,-58718347,-1342016512,304006144,1200104960,-473696243,92940028,-500576953,-960235272,3078,382534068,-466422924,-185919795,-117523736,-1154554941,937951234,639464704,-466483830,1946169320,-229351,212863349,788166,-167187712,108265924,-371493557,-498598261,-389809966,-210436086,1971373302,-9770508,378208948,399310881,820281424,1479605376,-461371787,147620063,1948828918,-167137270,41230532,-1329348354,29685250,1375177667,-1962986925,-788207842,-393245725]},{"sector":8,"length":512,"data":[-1075291388,-166365697,-152993596,638481497,-387698004,91619248,-1007101470,-31594151,1195716,226328614,-385649659,-1977156083,-1004138939,-13495427,82255498,-1886657583,1698432232,1161561972,-1960386187,-393246451,227091972,1053082616,-2144993262,1963265405,1166681614,1952791566,1967471620,-104597502,-469907223,8120337,126271538,58048522,-1442839064,-1007093022,1055392436,247789056,1489174901,-1341341646,-386030871,126484565,292929546,-167763224,208929220,141828264,-1996499480,-22943481,-385977367,547880971,-990448012,-118393824,-1962691389,-855629546,518570772,509440,-1427913736,1191545382,-421002828,-2134575361,179307892,-486715671,-1950091029,-2130697954,-1023404349,-436847440,-1056767819,-1961398087,-1948125222,-161173304,-2084043801,11993298,-763114749,-1148087808,-470292213,-141373049,-2084502557,-1148059438,-201981947,11913354,-1835481974,-796134409,93005515,-214007728,645136388,54888998,84025087,-1977161590,520028741,-930478846,88443430,84025087,11726986,-855395078,-1960379622,-1960443315,520029269,-1258682654,-1894068991,-83562490,83050112,-16092160,-100334050,449643956,-389809925,915079246,-1047853840,-489563509,-489565743,-754724399,-1181564653,-235411189,-1070344053,-745803273,-150943559,1694138609,-360709262,-628427420,11718865,1018811089,-1963854080,-2030962950,-963948348,-1951704917,-1007113277,449700914,82984576,839349504,-268041756,-1073036540]},{"sector":9,"length":512,"data":[117376116,12780784,-350797286,-721055228,1023956736,1476745224,1091062021,1476745224,167826693,822614536,1476745224,1795512325,1476745228,604329989,-1710145007,423543826,1161307649,638153733,-8176188,-101550593,-1447741,637534654,19154422,-2128210060,-16833691,18745030,1173759743,208929059,-335544386,1173759532,628424995,1048639027,1946157175,318302218,1441281650,-1106086636,513802241,1161438721,-402295548,32178216,516163150,-1993998318,185011831,-2146469386,30526,-1293417612,503760403,-1007091967,-1274636056,29279105,-14620672,1195739942,-1960390613,-937735867,-771024267,117313909,1048576285,1912930589,487521804,-2096764159,24519930,-924073138,-400192986,-165216449,1963008837,3663907,84543174,6088705,1048621426,-972946166,330246,1048578676,1946157175,331474947,-1945712765,304006337,1736975872,2139694605,1334388242,1472460820,-1993946829,-1993975987,196696397,85835264,-213137533,1173759652,348012575,-1107069691,146343179,96961280,-1017142029,591787558,-385649659,1381040286,11397203,-620033678,-85456779,-379786496,1642594443,-2131201535,30526,-404225164,2105550354,443875874,1979317376,81705850,34698,233355,366475,106379,-58709525,-1335856392,1074313985,-1174323015,-990510847,-33065726,-2084307264,-990500671,50885633,-26167351,650313414,638088584,638352776,638471561,638608776,638666120,638803336,638932360]},{"sector":10,"length":512,"data":[1656263,1170679296,637534231,1918407,1499093760,168216259,1055391749,-957158651,330246,-336001104,-1191135512,-890765311,860582400,1312719067,359950593,21905024,-2146536215,-352235970,1048588661,1972371792,23306282,-264441820,1671438709,1961901057,1963042843,1446936855,1965961985,1480491015,141767169,22742726,1124199169,-1966881800,-1979622602,-1962844354,-1979621106,-1610521818,512360804,378143078,1048576360,1963001098,1304596,113640818,-2147351286,16807742,669516661,-2134640622,687961150,-1957613963,637629710,-1957212791,637630222,1465470345,768342,-2097055298,-1527559225,-1107294023,-947715708,1587868421,-1007134369,11977721,-402652487,41025541,1438853002,637535165,-1157343862,503710030,33667079,1929843661,75556940,-165264268,1963008837,943620329,309657606,918888016,1149894957,155502089,715267855,503732225,33667079,-1677257779,104349312,1343124736,503392928,19740357,520701064,91463000,-5064725,1981188345,504793088,1837639169,132684870,-1017275132,7814784,-402164736,-14222141,-1007148987,7814784,-401705984,-2094596941,1946165373,1308567044,-389810144,-165217117,1963008837,-1262225406,-943458045,50405382,-955847935,50405382,10020864,-2132153229,9169144,1397815019,593333030,1965147126,281278067,-1977192844,1460012101,18431684,71645222,548623221,593331238,807816052,123675485,593299494,8011392,639071489,294272]},{"sector":11,"length":512,"data":[-1977205131,-1912208059,637540870,117769378,1048588011,1963065464,-1977200617,-527825595,436637190,109454848,973538564,276060384,-351353112,1036264971,1979711363,123730335,-1329375141,-1341986040,-960235257,33628166,109895563,-454556361,1166681851,18850320,-165222173,1963074629,571378142,891717889,868387585,-2083453962,-2094661418,1946160765,16679693,992394613,-1216934315,906171115,992347435,141696373,992389495,-1552475307,86709899,390398758,425005862,101002659,1705614,2016855078,758548736,788958209,-165279999,1963008837,-17373168,7814784,-402426880,1256722161,868387584,1979131602,86614803,637873569,-32279049,823560386,1300964865,-768389099,-150656607,86615025,-2081294504,338238,4003447,-2012121340,-1560202730,580976947,8906753,-1023390232,654254313,-1576778358,1048576286,1962935864,19701818,758564126,71600129,-1979038582,-1575025564,646447398,-987889365,637611318,35814784,78644597,839533702,-2034172224,-1575024316,263192871,-1023334238,591787558,-399543039,-2137259522,407614,105915253,19740356,637610912,-1610333048,646578471,-2010775258,-970585788,637666116,118121608,197369176,654013632,19088886,116788596,1954546991,2746374,650362931,-32289398,823012033,1005400577,-1962773567,-1957605176,911553,-1054123943,-117251632,-320223765,376064,591787558,-2146929663,57935100,-1996488003,-1996148178,-1979370450,1342251046]},{"sector":12,"length":512,"data":[20125323,591787558,638284801,21462403,52823157,-825210539,906677968,-896859855,915073414,-1977220814,-2144992171,1946493565,1983807507,175439616,1946352768,83656711,1458242164,1912667368,1981188245,1837639168,540967238,1946223361,-165259182,1946231621,788985351,813006853,843047296,570829284,-2000158207,637612302,1980976442,822527515,915013889,-956432078,360004134,-164493710,20121343,20067976,372950008,108331126,1181563430,1978179188,1486678784,-402344880,-1519189871,1964113024,873398027,-392530939,1055589720,-16428056,-351981042,2000584732,57933824,-2146605336,17118782,29165685,906413568,-1410859003,639661056,19088886,-58718859,-2146143104,175426812,87295687,-380108795,29228793,-386405632,113639501,-1946222306,-1962860018,-385796826,1048641112,1962935864,-1605368290,918815016,-2010775251,123210052,100666600,19740356,155502118,650315521,-2145434122,-1912205963,-855296250,923175955,-104659195,1371766964,-1979245050,21275332,-1090516551,-1359871684,558474,-1007068921,-126556080,1196768038,992347765,225724749,18679494,1435051520,1300833863,-1017579447,-2147187736,41158396,-469056691,-1492647741,-2045843444,-1559452914,-1710447860,-1055758063,217253650,230756079,212012195,298978467,1080038016,1113735521,1197950566,-127276952,304006150,2139104768,-1977219059,1963396679,205307429,58007720,604786622,775957727,309789754,1189138840,-13701117]},{"sector":13,"length":512,"data":[512634388,-2118909904,787045059,304006644,325043456,574982694,637618056,623068555,1200160771,1166747138,71797029,1200144434,662015238,1946224630,-1909580270,-402640866,669580160,275914745,-1928956531,431556479,520494592,-123407609,304006595,325043456,592281894,133562688,-1971555070,-2010775225,1200300613,1166616068,38243109,512634398,1048576048,520093815,-47905931,206335,592284454,-34283135,-1993948917,1200235333,-1909580282,-1577045986,639567415,-2145170047,133584640,638940417,69420535,637891584,-81566333,-1929371719,199960445,592282406,1685764,-1928954483,-1527576713,512634398,-320339920,-1956700413,773727823,3153550,87625353,1703093791,133625635,637891588,136531331,2000681347,-1089019110,2005730619,109981224,1195835440,-391271763,-492174872,-1329334027,-977012468,-989851106,133567327,504263681,807308846,37873664,-133724129,2105550531,141886754,807308846,10283264,-1962848373,133563223,512634370,57933872,-402594071,20709911,54265460,1743456117,27650130,-95754150,967033483,940476417,-1142846975,243991867,126420281,-503004285,375289,87800657,-1274725984,924748805,42919941,1360425561,-1982123181,-1610270946,78906681,2045247921,1935235842,39512105,104400582,1381060609,1006744296,-402426623,1499070791,-960634280,17185030,1963392128,-377441278,113704309,-1023408583,304006430,325043456,-1962717301,1468727623,522160645]},{"sector":14,"length":512,"data":[18876102,856590596,20095489,87625355,1946338294,180521763,-164727324,1977879265,650677032,19088887,-150113280,-2147143930,-972721152,17118726,-617365453,87498377,-973062168,341510,-385764157,113704205,-352190176,537314821,-1006238975,637538846,638803908,-1560066165,-1960443597,849477959,1200301569,1334519301,1606690311,923175945,646514437,971505973,943620345,125042950,-1897377456,-1101506054,-523172549,-268181295,637534650,136529399,-2029882368,1179800017,832744518,1173825025,1946157347,788985621,1946189829,571902221,-389903615,1499134739,1353499640,-1974460842,-989778906,-2013188810,1686635332,-1977657340,19047362,1593504488,1960024,1499125763,1048622050,1946224184,-93788157,-58670088,-1979484414,61916100,-1194816829,-523042688,960397507,242483462,591787814,1282670720,593854758,113704831,-973076935,1342257926,-2144992080,1946296957,2105550363,74711330,283836848,1048576688,1962935863,-972836857,1409366790,512644638,918880282,1153826936,526257929,-1977215052,332203093,325421606,20391560,-2142088765,17185086,-1070455180,104349312,-385649407,1443233925,1705614,2016855078,758548736,788958209,1153836545,123604745,625838886,65372233,-841953840,170322310,-1977216179,503710805,414472022,863114189,104414848,103117825,1705614,2016855078,976652544,1007062022,436637190,1049175552,-1893334920,-973047290,17184774,966967346,-2146112762]},{"sector":15,"length":512,"data":[158600444,1954610304,-352210936,-352145402,1594077186,1510416222,-2142190759,17184830,113640821,838927929,-971780636,-16747002,1448330072,104335094,1345746177,2105550342,-1902378462,637540870,7878340,19740297,19859084,637613984,-1610333048,-2010775237,-970586300,-1659958972,-970586763,117705284,957778776,652904961,-1979427446,100743222,87492238,1577522125,-1326922917,1166681843,423543812,1161307649,638088452,539182583,638940416,-303350332,-957115672,16808454,-956887064,31238,-148453070,1057605,-1977219468,-1040317107,1187525,-134131832,-1070444349,-2046412382,168179718,1444836544,918881822,-1909586374,637546502,1705614,2016839974,512501248,520552570,-1007134626,637575656,-972733046,33628166,1912634856,1665040422,477294593,24395392,-1005226711,637538878,-1106018364,-947715723,1554690,-1007115021,-1007089744,637561320,-1979366006,537315024,-397278719,1918500930,1665040446,879947777,24395392,103642409,-1090052521,918880629,1959067666,46564115,-218097735,1595868836,-180361209,113689226,-402456288,113639434,-1006698210,-1007089744,508778246,21937927,378130995,28902699,-156178432,-1022927013,72714790,578343434,591787814,443875332,7814784,-401378047,242485028,332207796,-1152186253,-303562688,-977052922,-989851106,11539295,591787814,41222656,1200144638,516276993,1606746130,1702962707,-2130837725,1962934655,1300309510,-1023279069]}]],[[{"sector":1,"length":512,"data":[304006150,1200301568,1963473933,-1190719978,1623130123,-222001652,-1207405138,15401216,130283527,-974252823,-989851106,130487135,-1977221120,-164494251,332210356,134092658,37538046,67373684,74712892,292882748,-134133880,855408835,45147764,1949432960,-1274564606,12843393,1947466880,150765587,-58705036,-2139524074,58018556,-822040599,785943632,3153550,11810559,11941631,17184511,17315583,11802249,-1996441949,-1946089954,117508102,1482301275,1945648335,1975519995,-335564796,1946238195,1946369048,-1909580252,-1996476386,-1946152418,520098822,1879611626,505284096,512634375,-739770320,-351854845,512634567,1053098032,-1125449447,512634398,87818288,104599924,-1023990411,527761409,147859072,-149361920,1962934722,-804356078,512295176,109840542,-1665464160,520560136,20743915,-400681611,-4521909,-1950118145,198440927,1124168923,1018161951,506688770,-1895825473,3008711,1962934147,1004533537,-1090160929,384565247,150421131,-2096118909,503443683,108333303,150406855,-383778817,1978269560,512634623,1049296944,-8189705,-2146470401,589118,520030324,1049299193,-54327049,16824657,-33489279,-8320393,74972672,-1017534989,-1527520815,1397801817,1894274822,643985920,19088887,643462144,-1961665141,4138433,1299628859,-469044234,-477494155,-511653634,852232896,-972930844,637588608,1981105467,-768388554,358452006,-770968585,-745863307,24428555]},{"sector":2,"length":512,"data":[1526368840,-141897730,-410977910,-2046381249,49009355,-757329176,182028003,123730127,-1966909349,-338755856,423544052,1429743105,638153732,-8176188,-101550593,144083651,182727168,-1978436416,-16776282,-1660940106,1879545754,-2037408768,-1866268656,-2147467264,30526,-1152165516,1307050304,1340824324,1383649924,-896904880,-523107920,87099012,1114921049,-1003616685,34927902,14123226,-1828207066,787176199,1982083,-2096663544,352329278,-1269813899,127375873,-346554256,-1909580254,-1560268770,-58720226,-2136968187,340286,-1751471499,-1677692921,104742528,-1648003846,-903929486,-93126654,1963392128,2027031059,2000584719,141819904,4242259,1526974440,-2132808711,2121533948,1964113024,943620315,-730595066,2047616,852325634,127376100,513867888,1021587968,1404531713,547508817,33667072,-1694595096,7341975,-58716557,-2145553399,309662204,-1070399308,2100990,-1040316044,-939603970,1526323179,-2031396007,1320899334,-1207493119,-1751514623,1526755335,-2147126521,-495644164,-74754218,-402567490,1583349281,513918699,-58656000,-2143587838,1014236412,1946549376,1378842440,1431327569,-1030951797,-489561391,-489561391,-1031679229,57868799,-805272343,713077998,1927297766,158763574,-369196312,162791642,-15537671,119427846,-1711190341,7341975,99157851,1448281855,503717463,-208986361,-402567489,1595932081,-1948390562,105973846,-30021545,323848998,591787814,123666433]},{"sector":3,"length":512,"data":[74761354,-517324876,1944074841,-997568507,-527825941,-31070128,676888178,-872283546,-66913278,175431738,-2048342998,-1965364227,-1974269578,-58719386,103118083,509040158,-1090052346,-1957232306,-45356813,526278491,1451884976,-44374008,134079208,585841266,119427846,-1342091589,139889153,-386055192,123469259,1465262706,1321139083,-48764927,-2141495713,-1975450937,-17300922,-1979091768,501745750,-39458563,1532880267,1918523739,-30217981,16668137,7677578,503744447,-294131449,18464286,-1977207611,1144521797,-1290242812,1560815120,593233955,593854502,593267423,637723520,-2094834424,-663355588,-1996340084,96937532,639631359,976504202,1979788294,19702275,-804849981,91488520,1879626138,642928896,-1979361910,32932082,12110123,1093651786,-1031790988,378023489,-708962319,-1406250217,-1406260787,-126500854,854211816,1528221156,230906202,1936607498,544502373,1802725732,1702130789,1919903264,1769104416,1092642166,1851859002,1919950948,544437093,544829025,544826731,1852139639,1634038304,168655204,-2094661622,-1023401859,871383016,22735094,1223176052,1345025281,1435117138,-854150140,1918392851,114205,18751114,73218086,1364201332,-317265838,190339418,855864566,-1343699978,-386239763,-177012691,-386689815,460652464,1946224360,-308746218,384307058,185037312,-402097674,1994915967,-1017185805,184669672,-2144831242,687961150,-370661260,871134208,1581154550]},{"sector":4,"length":512,"data":[309592065,1912667624,27518989,1979711422,-941079034,-121374720,18745030,-1588542465,992346485,242571077,637630369,1968784699,1492529925,-1101472533,-336003073,117211354,904451189,-389057281,309521698,1929353704,2029390601,-389855998,-369557497,-1377176915,1490674,-1275066392,-1094452986,-987889649,-2097147362,948521927,-1941180541,-1021377984,591787814,829685762,578650150,-2144701438,628488700,578650150,639136775,153255296,128979316,-1176498245,45746528,46433025,-2081607447,-320273724,1460061164,18431684,72693798,153486453,-1004133539,-31939,123727477,1173825219,-1023393757,593855270,-148454465,140101,-397389117,192217076,1912607208,10807306,-117448216,1522752088,50010,1347637586,119428870,-1106703169,213453056,1604645632,1166681607,1300964875,652342801,772359427,639212707,-1324595829,-1947675900,-1590799928,-1960437348,-768404659,-1975324169,651310026,-1978305033,-387413262,1148382633,-1342172999,4161544,1065367412,-2080017179,292883271,-501169277,-13739540,-501638138,-336186432,-208971498,119428870,-1190589249,-1527578613,866828338,1476878326,1515805688,-571778621,-169124258,-1101965737,-947713780,833867,1503982588,1472421726,151830097,-1186216061,-201588724,-1017161306,-1594477744,975569183,24383557,12802126,0,0,0,0,524288,4718664,0,12060240,650153712,-115072,208996345,-2136448284]},{"sector":5,"length":512,"data":[777520756,1191679,17950808,18,149422080,14337,-352321536,-402616318,4260091,0,1308685032,1108736,1258291200,216727618,0,-402653184,5832923,1108943,1258291200,216727618,0,-402653184,7405763,1108943,1258291200,216727618,0,-402653184,8978603,1108943,1258291200,216727618,0,-402653184,10551443,1108943,1258291200,216727618,0,-402653184,12124283,1108943,1258291200,216727618,0,-402653184,13697123,1108943,1258291200,216727618,0,-402653184,15269963,1108943,1258291200,216727618,0,-402653184,16842803,1108943,1258291200,216727618,0,-402653184,18415643,1108943,1258291200,216727618,0,-402653184,19988483,106254543,168201774,780873216,28311568,4621862,1366622268,271483694,-1993996288,-1943666074,-980745130,107907878,4602150,-1064549259,-326384242,-1912181109,-1899721520,1854615232,-13722624,-326434722,7244582,72781350,40274726,4638246,780742144,1560739856,46433112,1946238159,1183196676,1239040,992913643,1912605742,652774388,50349766,-1959859221,637537838,32384,28316277,4621862,343146556,74711356,4622374,204356398,-2096729088,-605353747,12066499,-2133291280,-100663746,-1341885153,-93133305,568786864,-829644314,1002364558,-1205972990,-661782416,147850998,1951932161,147954181]},{"sector":6,"length":512,"data":[1017905264,-1291291612,-854674425,-336336112,118099454,1850280461,1852990836,1931504737,1801675124,1702260512,1869375090,1393167735,1702130553,1634213997,1684370540,-383514099,422,0,0,0,0,0,0,-872402432,589826,128,65536,-16777216,255,264192,5,1090519040,23610,536870912,538976288,2361869,65280,-570425344,-1744538799,-1392217342,291586,0,0,0,538968064,538976288,538976288,538976288,538976288,536879136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49283072,47973491,47973491,1139,0,0,0,0,0,0,24,0,0,0,0,0,-872415232,2,51968,7342333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,365805748,-58714254,638743808,771901322,637713314,771966858]},{"sector":7,"length":512,"data":[-352142174,-268388306,-23013234,-1146999041,-1458451198,460652545,-1261882874,-855592440,259131155,1946220928,1976699402,113651206,-67042677,-24381901,-1810986194,1226771970,-1014047949,-1138848986,109979136,-2128215874,1347552127,-2144985995,1967916415,1389464341,-850786632,-896837585,108318779,-1776907986,1891125506,145483865,-377370581,1891109376,144697370,-1047607253,-782667591,111539177,1342488504,7387339,244111502,113641723,-1207891715,2062047600,63540232,868257473,788433910,41098894,-212860743,109850277,60883571,1906519552,139978754,1929783598,96504834,-1064433152,-1996060882,-1093104126,-24444880,723153081,-202780210,784370853,42409727,-1908489170,918892035,-1959918987,-100494314,-795948916,-83545412,1897856814,512503298,-1557265787,-1993473405,771916046,41752201,772115238,637693347,771900811,637693859,772031883,637696419,772162955,771914659,41092750,2131135534,1048784386,1946157718,-17582,567101620,567101620,772194446,43386411,-1958160137,-850742056,-17631,567101620,567101620,650153544,67271,-953810936,1375733766,113714768,4980746,201770790,637534208,919239,-1274609664,773967177,40713924,-846678792,638284309,189089161,-402426688,-1960442178,335876165,-1650250240,-1734332926,1166550530,861117507,1354773467,626564253,4059136,-1207012112,-1655640064,2447516,1124168944,1539541827,146845,-970586763,637617221]},{"sector":8,"length":512,"data":[773866890,-1945926750,1125832,-1659991250,-773205758,-773205527,-1054129687,44540718,-930392314,771788589,771925411,637707171,638746052,280007,96937472,-1993998336,-1047657907,-125059021,637896998,637683081,-16497209,1170679296,637534214,542151,235364096,113567775,-2061595090,144415234,-50659216,-343684212,868453904,-1174500362,-1510801280,906398758,-850349056,521018913,-1202688838,567092516,58998400,-1173982208,1944606988,-1976688823,167942166,-33131310,-854674230,-1070916063,1822546062,-1557258492,-953285748,-1962703098,244067843,-1477966967,883746818,964018187,1745260078,512437763,724435812,-1274845154,-1943941814,-1064417088,17221414,637536256,526023,-1064549293,50725670,-1003601920,637693238,-335657847,776582153,57149070,-1461182003,1048587803,1946157676,109981198,-1070398861,2099183406,856877826,50522331,771752376,41092750,2099183406,36759554,771752123,59186943,-855179730,470542338,-399272728,-30526530,-402469626,-722985987,107669558,-1204333848,-1064435600,-49887706,-147980280,16961030,772305920,46991102,773576936,40648320,-402426369,-2144468407,158782,1793590132,113651205,771818325,57149070,567101876,-838404306,1946157570,777192997,56493710,1612614446,-850742269,1220578337,-953761650,134217990,113714688,1146290184,-2144467109,158782,-370670732,-971043325,1544198,1933808872,-1475444728,-2014837678,1154476100]},{"sector":9,"length":512,"data":[1373507210,-1103036235,-251440674,-1173551930,-1152233136,1219821567,1219764685,1802641869,1236582542,-343203379,43261579,244041868,65214348,722964129,298025944,1265822507,-113442632,1936859597,1048631435,1962955085,137738776,-1275067207,-2145268417,-385338050,1048598901,1969621048,868823890,1107474642,1914818041,984390,-402599293,212927653,-1039408429,989859845,-1173851451,-2014816613,-1271076025,237096254,46119687,-1945203878,-1962613993,-1994945010,72322063,-1945612404,12061775,567146827,-2142101746,5357886,1048577908,1946177869,1444395526,1514609640,567089588,-796245756,-2142138178,5328190,80086389,-2147095808,1416953916,-2142133826,1282736188,-2142125634,1148518460,1487911506,1514608104,567083700,-851529134,1327401505,-973031599,223432839,-1269739846,-1172189942,-202877502,512383558,-620080817,113694324,-972992179,5329031,1373505223,904596736,113641246,-1090498227,-961785520,-1442775228,-160055286,-2142118209,1966735996,22317059,-1073042772,1170668149,113643007,-402632034,1525170962,-23598781,-1258291269,-1272853176,773967176,771975331,-1023187805,541150536,544501614,1767994977,1818386796,1277180517,1768186223,1142974318,1814057807,168654703,1952532004,1159752801,1919906418,1631789114,1953459822,1819042080,1952539503,1699553381,2037542765,1919903264,1397703712,-400291315,24248357,-1273033021,162970121,29041101,4646912,1929809454,784347906,41754367]},{"sector":10,"length":512,"data":[1812383278,-389873662,326238230,1929809454,784347906,41754367,1812383278,-1007156990,1912660456,-18412,518570126,244002304,971506307,42461184,1307100152,-390033920,-1959919607,-402489074,784531492,42540686,-1962921794,443595262,-372126165,1460053491,-1557217140,-13761659,1594001182,1460060935,1899414830,1537536770,41001262,-1561803989,-668247294,1931381038,1891156738,3157274,-2130312402,984322,184715496,1960348635,-850873318,760312353,-1064435709,554092326,637536256,2623175,516113235,777146711,40713925,93212495,51284774,1925921536,378152487,-1064566784,92914435,378067086,113704960,1,243911467,-1064566781,1509950253,-1021354151,-608559346,-855002103,126871841,7387166,1307105422,-1203211008,801981200,925321,1050252,-4587084,236912639,158615552,365791412,1912619069,-16403418,1207963166,-1494737547,-1206356991,-1064370177,268879654,638727168,1064577,58004020,-104652808,12108575,1009765699,1397801856,1465274961,-2144467426,-16618434,-1830288523,1595869182,1532582494,52056,-2147483648,0,1,0,1397310550,1444945995,3354163,0,0,0,0,59921,0,1229215232,775113555,16810035,1073807361,-33423360,524294,1,-1070398400,1688328334,-660394496,6725899,198877998,79382708,1210174720,-953761650,134217990,113714688,1129512968,-88043968]},{"sector":11,"length":512,"data":[6555335,1721958447,3455232,856402110,-65073409,1476109555,-18426,281002126,2144512,-217326402,-1022926940,0,0,0,0,65535,37632,65535,37648,0,0,0,0,0,0,0,0,0,0,0,0,279471332,-2127686795,-134038722,772371481,45825665,24447484,-930347325,212979851,78768851,-2046435117,13795340,208184110,1779861550,1095948,1455294222,-846744564,-1933375723,-18237,-947666133,-253263089,-523041615,-1205929941,-661782416,150421129,853702,868425727,-1898410304,-1107276258,96010258,-1090056704,-1494021190,-4714380,-1093103873,-541130733,375051,516138739,-1895825479,-1899416639,12631769,-1191128897,-201588731,-775741532,-773271064,-1008152088,40713924,541952550,-2010714830,-1047912115,-453617484,-1962600472,721594166,1971922672,650545944,1459655,902112768,-13385586,44671278,6088875,44802350,117321387,-1070398807,4176209,-24925453,773092607,42679936,-2146208511,242680124,-1410137167,-1323766951,1504441091,-2141646357,1946159228,1073788931,-1413051477,-1196697460,-1414791169,178347,-1442795349,-492065877,113651363,-1019149655,1832305966,741655810,1946434113,427083016,1979711107,-1205943308,-661782416,86982275,-2130283264,-2147143922,-1590812928,-1557265757,521011877,775902696,738369440,1347581445]},{"sector":12,"length":512,"data":[1038632624,-466462711,1646168878,378220035,-986840220,-989696706,495518845,235033993,1053044255,-953810078,654311173,-1291565687,-1947994565,100740808,112722786,100740608,-2144468126,35099918,54460904,-205507592,-400617814,1487945462,772335592,839032992,512437988,-1959918750,771974166,40713925,-1994760823,-1976689579,839033118,509446655,1053040398,-953810078,654311173,-1291565687,-154629317,1644560867,440323,56755713,395644544,1050994690,1102116867,3914065,648737788,12928455,1170679296,637534426,14435783,-454928128,43597443,-385649409,113705111,667,43583175,508559362,1831781422,1858348546,639569408,-33530230,1141422275,-1073012275,-617400715,6195750,-658848770,1141749843,-855088967,-1960742367,-1588336866,-768388129,-150863687,199489521,1023768018,141951696,43583175,233504771,427721510,637957375,-350654780,-1807842898,1981808642,-1727609054,-2130705150,169022,-954960320,167942406,-1807843072,1988100098,-1727609082,520097538,516238936,-1590820243,1200161433,-1683935681,1095207170,-401449019,1118846410,503823336,56354899,-2094129317,170814,-1276629644,244002365,1334379362,244002310,1334379364,244002312,1334379163,33601546,-1557208585,-2144468126,35099918,-398620184,-1202700922,1978138700,-1003595769,637693246,773868938,44174906,-1976695437,839033358,1300768493,1688284705,1166616067,1654730264,1166616067,-1262384618,-387647912]},{"sector":13,"length":512,"data":[19792472,771974150,395644544,1027401730,641058086,-401179196,521076034,43007619,-2146536193,179262,1048577909,1946026683,42770801,1786036235,-1338175000,117631059,-1912380255,857673408,-1174457354,243860073,-135789726,514126652,-1912573768,-1073297448,-1946152952,772325894,771973793,-1560112989,-1590818618,-1557265564,-928841070,571400,-1912208594,653733378,-895286644,-907534584,100740609,-2144468124,35099918,-398676504,521011952,839032736,868781028,-851528485,178977,567099060,-1158028733,45109480,-839303756,-402296031,334184224,113488,567099060,-1260876968,-1272853179,-1172189883,45109484,-1170262296,28332272,1346318056,-1341762989,49462015,1122910958,1122910958,-1192344850,-1064374272,-29458394,225770751,365805748,-165276046,1950352711,-1157648369,1122895602,1122910958,-297603518,1482381831,56926544,57148971,-1341955933,100853844,1681820504,-1983410685,855823422,-767653377,311475714,16810425,771973646,395644544,1005119490,113747187,309789398,47713932,47058563,1003808770,56893067,-1560057695,-1064434850,1253365803,-1945755187,-1064417088,17221414,637536256,526023,-1157151661,1219821567,1219764685,1688412621,1644611331,-1912602621,-1558279232,1272457986,-850742197,-17631,567101620,567101620,-1912379229,-1274846202,-1021194935,119408214,869698335,-969999159,537063686,-1409092929,41156668,648870379,171705736,-1040317068,787737415]},{"sector":14,"length":512,"data":[49286792,1962998144,113651206,772604657,1735,-930349056,-2094086005,1543230,-1959918220,773295630,54660745,54960942,55223086,55485230,637559016,855825059,-1152666432,503710530,-768671954,503733762,91430663,1033300054,252035934,-774319872,-773271064,-1943092248,771777046,6563465,-1909579315,771777046,6563467,376571679,637540584,47842873,162794612,1723473678,-199111424,-14221845,503502382,44278054,-164374386,-1960394701,-788344818,50754793,-498711036,87211770,727281849,652857806,1178993667,-1021314590,0,1699547661,2037542765,1819042080,1952539503,544108393,1869771365,841228402,5695698,28443252,1200373641,71812866,-947191808,-1727100114,1709725442,-487027968,1043017465,643367581,-813232759,38635814,393531914,17582022,56926510,870343,256346368,43884846,771757101,56755713,-1794211794,199754263,1381221178,43884846,-1725499602,984322,-1946161115,1241692376,-8179763,-1089964545,-1909587968,1510171654,-13712549,637713718,771900815,771931555,43845123,637896998,-16497209,1170679296,637534214,542151,508609280,1381061382,777344599,637701281,-1593834845,-1557790066,-1590820858,-1557790064,-1590820856,-1557790062,-1960443894,637536302,798345,637536440,134795,-989601289,303910,-343680885,1049306626,-1591345148,-503906298,-1070348149,109977350,-201588726,34507690,1187390976,-2010775552,-1993998010]},{"sector":15,"length":512,"data":[-1993997754,503514182,-1993998330,-1993996706,147161903,-310124574,237930760,271485184,12066304,-2133291280,-100663746,-1341885153,863168007,-88043840,-1090516802,314246722,1489408,-1107110680,1203699744,3717894,-402637638,616432325,105692928,-1174388293,-1226309563,29408770,-1157207361,1387921486,44558336,503326910,505201958,16417626,1065365876,-2127792945,1112213119,-92203404,276164608,12210694,650284784,-16703941,259262298,106020639,-1174382149,1793589335,520219394,503327934,505201958,16417626,1065365876,-2127792945,1112213119,-92203404,276164608,12210694,650284784,-16703941,259262298,106348319,-1174376005,719847535,520219394,503328958,505201958,16417626,1065365876,-2127792945,1112213119,-92203404,276164608,12210694,650284784,-16703941,259262298,106675999,-1174369861,-353894265,520219393,503329982,505201958,16417626,1065365876,-2127792945,1112213119,-92203404,276164608,12210694,650284784,-16703941,259262298,107003679,-1174363717,-1427636065,520219393,503331006,505201958,16417626,1065365876,-2127792945,1112213119,-92203404,276164608,12210694,650284784,-16703941,259262298,107331359,-1174357573,1793589431,520219393,503433406,505201958,16417626,1065365876,-2127792945,1112213119,-92203404,276164608,12210694,650284784,-16703941,259262298,107986719,-1174351429,719847631,520219393,503434430,505201958,16417626]}],[{"sector":1,"length":512,"pattern":0,"data":[1065365876,-2127792945,1112213119,-92203404,276164608,12210694,650284784,-16703941,259262298,108314399,-1174345285,-353894169,520219392,503435454,505201958,16417626,1065365876,-2127792945,1112213119,-92203404,276164608,12210694,650284784,-16703941,259262298,108642079,-1174339141,-1427635969,520219392,503437502,505201958,16417626,1065365876,-2127792945,1112213119,-92203404,276164608,12210694,650284784,-16703941,259262298,108969759,-1174332997,1793589527,520219392,503438526,505201958,16417626,1065365876,-2127792945,1112213119,-92203404,276164608,12210694,650284784,-16703941,259262298,109297439,-1174326853,719847727,520219392,-268388322,1048631438,536477694,665846901,-1191480602,-661782416,104859334,1600019713,123427162,650336287,126420107,38046502,503465865,-1912573768,76228312,-1960442487,1166606916,-1993990398,1552688660,1359397634,1678674734,243871235,-1047652461,41510,243869249,123273217,1678180142,49923]},{"sector":2,"length":512,"data":[0,0,65280,1566244864,725499004,2243389,-1459173586,-67108841,-1676768978,113716759,6046,-1324955858,771751959,396494535,-953286656,1528313862,113716829,1014765626,1007077166,774585880,406718151,-806864067,-1206684922,643039231,975576459,-1207733489,-379912190,-1993473757,1394060086,512578903,-164751437,538421766,-391363723,1014105951,1946600424,116713527,-164751243,538421766,-1947728523,774302470,397018870,1310618689,-2010244117,1966947335,243281414,1124145066,1929857256,-2010207035,-1091878137,914959950,-970057824,-1993474041,639086366,915217803,-2144462925,913583932,574390318,-164755340,18328070,-1977199499,-466484921,-1677313746,772961047,-786981727,54739936,529213144,-352286488,113716841,71582,-1977196309,-466484921,65065280,260712152,-921965262,1396903796,-400585946,1935343814,-498908351,113716978,202654,-1977207573,-466484921,65065280,126494424,-523115470,651690816,-315486326,259311883,-1960422589,6154271,1124823899,787669571,396232391,1599930372,244002395,-1590814820,-1959913570,773300278,396498571,-1541502418,1355020311,-1459123418,91553794,-1677263058,1015033367,-1457949440,158662657,-1643722962,-352321001,61886478,-1628897356,65755136,1476468200,1438906819,1334453841,200094216,-1928497975,-488109713,-402099453,-152961010,772205561,397487753,-1017292296,8290342,1157854208,-1018824981,-1441890258,-957870057]},{"sector":3,"length":512,"data":[776631039,397026944,-1590800145,-970254419,-1425669842,-1959897065,773303606,1962949760,2088775206,158677759,-1643722962,-352319209,1065559583,639202304,67575,-953281931,35102214,-402003200,-336068458,183236877,-1274826672,256255,1472460888,75467558,-1572959954,92808727,23431206,-1314836912,1166616087,20731906,-1993995659,-1993997227,1525352013,108331580,72714534,121393387,138209396,104653940,-2010773899,1055589461,259327036,397123886,1166616128,1569465860,640412422,637826441,1342590348,38270502,-1341885439,638184196,33703926,45090164,1476453864,38270502,-402426864,-1017184076,1090962990,642777112,-1073018997,1397758069,-953264302,152542726,-1325419520,-10754045,1482381919,65733355,-1450151957,309624832,-1643722962,-402653161,-2094137050,152542782,11097973,772961344,396232391,-337117184,1048784384,1963530142,16820544,-953281164,1547782,51832832,771987944,396246659,-1457097463,309592576,-1643722962,-402653161,-2094136580,152542782,11079541,772437024,396232391,-639107072,1048587777,1963006017,1048784399,1962940318,113716743,595870,1448133464,168069678,1008366784,772633914,97408,-970062219,166395908,1929663720,-347716095,-1017618721,-796241322,-402355666,208798785,208977930,771755240,32179336,-387234234,1019436634,1007448960,1010594401,607680378,1395977183,1049450246,942544947,1343714325,118379089,-1031117388,-1174405189]},{"sector":4,"length":512,"data":[-4587515,1512164863,-1959896999,-1909587619,1128465221,-685342676,-1017444513,243281488,780146602,397026944,76164861,175385404,125119804,-1441890258,-398065129,-1017643006,1448235344,-768358093,76164691,1114947594,1912664552,-1947979207,-773664280,13822161,-628413326,-489569909,-974597679,-786468352,-388902430,376570044,-938224893,1912648680,-2083192051,-1444413231,1174630912,-379864085,777715853,397018870,-150309886,-2083325999,-779943486,2005607936,76162566,125108284,-4980304,1183872235,1006930470,1180726272,-1442384338,511016983,55327526,108476018,22297382,992358002,678889292,992361074,544671060,992359147,410780492,992347775,276562260,122436390,477891199,89406246,350945919,-32913789,783644104,396232391,28311558,317456308,-1977220688,772533028,396232391,61865993,787021748,1499094781,782025560,397018870,-1660783358,40934851,-1007041544,141701180,74922300,-1007144916,1397801977,-1960421550,-1977219457,1975519749,-335563772,1963146316,-1977202881,-167136251,-134004508,-1274705370,1088747013,-1977157629,642205445,854076811,-2095942912,-922876985,-953224843,135765510,-335563776,1703552532,637710591,199955851,-1643722962,-1275066089,-402411265,1516240037,1354979419,-1302965675,76164610,1912749288,-32774084,-1442384338,225708055,527777084,25067558,-344886016,116796947,1947211690,1966750734,2122327562,1551171584,643623750,1962952250,1958742557]},{"sector":5,"length":512,"data":[-347781550,1178215955,1178957056,1157925422,4602406,1162230389,-164714517,1075292678,-148500620,2097735,-2144991372,1946157182,133637666,410255376,158677564,8290342,-351439616,1962949646,2122327559,57948672,772205561,397227657,1566203640,1464910680,1049308758,-1976690773,1958742532,6285331,-970054539,18366726,80096862,1072389888,80096862,-148480256,1962934535,113716786,137118,1448618475,168069678,-400657216,192151597,1929469160,1195788034,787082054,773301410,1191183558,-1606514386,1482645015,1946288297,-4960247,-1897396816,1405311227,941526353,637208,1946630702,-119389436,-1017423551,-1976675760,1958742532,18081848,-2094125966,1949958524,133637646,510918672,24936494,202863872,1918975008,2004499473,-1973408755,-1325419312,-79697914,-953284629,152542726,-1017619968,2287788,1407719540,773223680,397018870,787313696,397018870,1309242433,-336001301,-1018234879,1364444152,762580284,695468092,628361788,41779238,857633282,1569335003,79921923,3768358,-919401100,1124698662,1946237478,1022943748,-1017423603,-970043053,538420230,-1440317394,540860183,154941044,742142580,540815732,1015024757,-1341688544,-1069922784,-2144985365,1912668797,650720023,184765834,-1156877111,641925123,125043002,540866786,784554841,773301410,397018870,772175105,397020800,-339723744,-1288794649,1960655639,1966029834,250345731,1007414264,772175151,397020800]},{"sector":6,"length":512,"data":[516159552,-2094116010,1550142,508569461,1431786065,-1896467706,1660991710,-611573299,1560795915,525949535,774468696,396703369,-1491171026,915090967,-1909581915,-2095601890,276037692,141689914,1996571706,99350787,-336902586,526277624,18909379,33635073,547758226,2144769,32768,547037388,16843008,1,99,32769,548348108,16843008,0,8,0,550183116,5779201,0,0,0,551092224,20644097,2154241,2097152,-400503808,196640,-234814976,552927776,1325420111,17990,16851199,151191867,639704353,33,-872415104,2167328,16843009,-419430400,16777219,-872415104,2167328,513,550183116,0,18954240,16857857,8510,32768,558309580,16843008,8,255,18962432,33635073,561258848,-2147483648,550240256,16785769,65793,16711680,-2147483648,550240256,16785789,257,16711680,0,16851343,-1795096261,268435489,-872411135,2149152,18981888,33700609,566239660,-2147483648,550240256,16785845,257,4194304,-2147483648,550240256,16785865,257,33554432,0,568131584,20644097,2220801,2097152,-400503808,-234880992,989921569,327680,404884514,807543842,34,550240256,788603083,75,550240256,788603083,78,550240256,788603083,70,550240256]},{"sector":7,"length":512,"data":[788603083,84,550240256,788603083,87,19022848,33635073,575414860,536870912,550240256,8798,-872415200,2252320,67108867,35810817,1996694131,578487330,1212631368,1464814592,1112364288,1431260672,16973,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1414484560,609108301,0,0,-1205924352,567097088,1373574792,1373443720,-1202654022,-839303936,-402033887,113647752,-1022688563,-919349109,45666867,-1558065854,-768408746,-851312456,-1525249247,56008962,-402468701,-802427056,-1911125686,-2083509481,378081770,378077861,-628227421,-768359794,1443793710,-113265661,1352409549,447762775,98826891,24489714,-1441943473,732564144,1049177850,1599669078,1344212568,567099060,74620248,745850939,-397347654,247671944,-851541985,-160232958,44250879,1479969543,1446414595,-1980353789,-1996269002,-402477258,116066867,-400720152,-764278229,45025023,395445958,-1794718208,171704343,-1868411788,-2139151337,1544510,-397399948,-527824377,-2046164248,45065156,-851541928,309461506,47056631,125042689,47005312,637760003,-527825784,1930026728,-851541992,-2039283198,235510505,690481183,-924278549,245099273,-851541985,57999362,-2147381015]},{"sector":8,"length":512,"data":[33738046,1048581748,1946354381,1224507421,-58717580,-2096663223,16961038,-58668565,-2089978537,16961038,-58671637,-401967799,1114777429,-336748056,1476165806,1189623925,-1204587993,567105536,-2125211509,-1207926581,567105537,-849870152,1357132321,-1151859784,567083009,-1192398360,-849651709,28859169,-383660712,-58654863,-2146798503,91511548,1966144640,1510932232,1443299075,-11015933,1967324288,653256803,113663602,-1090510646,-919396221,-1511468661,-402296056,1173031135,1962934077,-834764516,1965081376,-1592726782,-108846896,-1559923455,65740998,-350173021,-968981547,192308000,-955731224,2148358,-1592595712,-1717362490,550019330,-1593664605,-1180499281,-17831678,1967389824,646441021,-725665678,-1949748448,138602705,2095580531,1025829640,359989247,550321792,-972589823,18938118,113640939,-352313095,-1338788644,-115963391,-383660768,-58655059,-394562227,1987192389,857856191,-388920375,91424768,-351782168,-49865,1048581492,1963008205,-335100409,99287329,569116358,517794560,-1912573768,1048587992,1962942956,788973320,-352321275,788973318,520126469,-2130814743,57952508,-385949719,-126736915,857882559,-388920375,91424680,-351804696,-49910,1709704564,-370349304,-58655187,-394496683,2003969477,-402063896,275976829,-1741256402,109850135,-1259858022,-32773881,584687918,360038411,1930006248,914959888,-1943136360,-401106426,-286718057,637949693,222037130]},{"sector":9,"length":512,"data":[171707508,-286783372,1174631462,-1573982741,-970579219,1577517060,1930356968,113651208,-352312616,113651254,771760856,583614080,774403072,584582854,-2145326335,57951484,-402454039,-126737087,-670644690,-953286622,2283782,113651200,236987117,2083948831,2114358275,-382301949,-351892446,-1777940958,-672661481,281864230,113656434,-1610538296,243278552,1946165976,197060638,393543484,583536382,185318376,990278848,2099427846,582656262,-401874456,-1130295434,-1174011102,956723746,1931656710,651356437,638642408,1931492480,112847107,-383179800,520551705,-1243031925,235347472,115438111,282847318,118380038,-986819042,-148717514,-2147482556,-986835595,-2147324618,1914314876,1579113994,279177223,1577091817,121235487,772252648,395460224,772896000,58197703,-1959919616,774028830,58334857,516238878,-1607597459,-1574042749,-527826048,522209159,441168,-1155115288,1357381640,773740582,40705733,522209161,772220392,771979425,774030499,771979937,-400374109,-2144464835,2279742,-1947729036,1048587793,1979646572,-494409725,80093022,-350286336,-1172369884,-2014816574,23390248,521013086,-2126609618,175374339,772160744,58787527,988348416,-962515204,104541730,91628222,-1505442,382021374,-225762624,1832829998,71600898,1954545833,243281448,-402516075,-1250815978,1946157481,1435051528,1569465868,567566,-1993996172,-1943664555,-1192687011,2006986240,1958742531]},{"sector":10,"length":512,"data":[172263568,-1777991634,-930375657,-1977158518,-494264235,-58662910,-385649126,-2144403605,35099918,1913637352,1157637809,100675104,-986840189,771980318,40709828,7259174,427721510,637957375,-350654780,-996069645,1183393314,-962515431,1183393314,784608795,-2094128444,555926534,638542824,-15120697,1187391231,931921688,-1993981117,1404305494,-1960435251,772145734,40713924,272972582,-385649145,1377697960,-1072249554,1451828770,1586243091,1109350933,-1948072194,2078809870,1053044452,-1960443283,-1960435123,-986831787,639811638,639792521,-1960551028,-1063047676,-1995667166,123601492,772502592,395446014,-384879896,-969998859,1544710,-401660184,65537089,-84940544,-297893842,1031077922,-1152773704,801964032,829800459,-2147433737,-970060427,-14488058,-2094137298,102689539,244002390,-1959918748,721593622,179153,395747374,-13740620,1577289502,123650823,-1151998790,-1410837054,-90445530,1951530112,19458307,1914843368,113651448,771772672,556861127,-88145920,-1949748448,64940241,-202896269,113716736,-57041,-12764693,775189759,550256256,773158145,-2095001439,108331513,556770094,-1557265173,367730993,1465255454,-986839282,-1088368586,837308672,123625254,783739679,556744323,-385190401,-1158022619,-2098637269,1048587776,1946177792,1359002117,45745131,1023457361,1914818041,1554198089,785943299,773926817,556865163,1678674734,-2134802173,238759425,1215759013]},{"sector":11,"length":512,"data":[-2142175042,41222204,-1003600314,1459779902,-402077821,777987532,56888971,-164374130,1931739880,-425178,118397044,4096046,91488337,-347012930,1359134211,774221800,44240523,350994830,777416378,44240523,521060750,-1075313037,58976293,1545505582,-851528701,-109057759,1962935869,1445706245,1371145195,631302230,-1023187736,1967586432,553904176,868166514,-1949748447,46065873,-119011981,1024977666,175439871,550543406,559063598,-1607538709,-1574035118,921240223,1291616505,-823644043,-1087671776,-919395958,-1981230709,-402296062,401277635,1962934077,-794808822,-1633538528,786950945,773955232,-385703262,-58656511,-401181360,292692121,1913949928,337897481,-384537880,-2132150039,1274839042,-1444347020,544991232,-1614808974,-1949748447,37152977,-575009677,620292182,-385696536,-12779383,773158143,-2095001439,108331513,567583534,-1557265173,-706010666,-734100690,427032609,-734100690,141690913,-700546258,124985377,-737753298,-335544543,1048784399,1946165718,113716743,-56876,-734100690,544603937,-1945712850,771754242,42862279,-953286528,167942,1457371648,-400259608,401277513,567583022,42771246,567714094,42902318,-1878603986,-369099006,-58656715,-396462765,1500651469,1292289582,-953286319,5365254,1364311808,-385923704,-1073085977,540807028,92810354,-1879080633,-336825775,378401,-397287489,540803531,92801394,1560248647,-1947176366,-538345009]},{"sector":12,"length":512,"data":[243805777,96883166,1946827776,27912197,2045376371,1492943095,1793606005,-1086557665,-919396013,636014987,-402296063,686489951,1962934077,-794808811,33129248,-1574041995,82518408,562668078,-1607541525,-1574035064,-970063200,172294,-2131260183,57946620,-402618391,-126738655,857861567,-388920375,91422940,-352250136,-49810,-2127678604,153144894,772306210,574359238,786492161,550387329,141894189,1023854126,-806682334,-834764498,1965177120,113651398,-352247234,1048587966,503390780,-1912573768,-972393000,320774,82183878,1033907713,83010082,1044283438,242483234,1387549446,-2144984627,33588750,-383842469,-58657027,-401640106,175251093,1931116520,14936302,-58660373,-401836722,124919425,1914104040,-2133267476,192240124,56233727,55969535,-2131310359,-260820740,1962933376,1510932459,1443299075,105835267,57188654,650153544,198147,104541760,74908325,44409646,503759623,118365958,-1709274066,914959895,12195736,-357242880,1946157117,-49915,-336067723,119535873,-1172369725,-1679272546,6285346,1436465859,-400387608,1525219413,1448222454,-977658098,578873429,395851461,-92269430,-1274579955,1176620290,521073387,-397032774,719856230,526016000,244011459,316867414,56243851,-16479706,-16558578,-133998074,-335953063,1459272443,-400409112,247660557,1461762591,-400412184,113442817,118380318,-1245765874,702722,45064494,1912605245]},{"sector":13,"length":512,"data":[-137219316,818577649,-347138680,-2010116881,-388527355,526328322,-466435321,550346798,1209758792,1950880116,113651207,-1023401271,-922302930,784596770,40634054,-970013952,-16618490,-1516163389,5105666,-2144465804,2283582,-1590818956,31990462,-1155611904,-611450816,1253003,-601978578,-754536158,1287144,-620313042,-1021313246,-616660946,-970063838,2284294,-1205989772,-661782464,584884526,520098723,1443241667,-1070152402,180781858,-557906162,571682,123643635,-1273052385,-1910387358,512437979,512295589,-1021378558,106385744,-1070397682,579052070,578986534,579117862,-2046376410,-1574502622,-1174658375,-2017525744,-1179978974,-1749090288,128709410,-1017620129,1381061456,5236742,1912757480,868257345,1120570322,40998,18778918,1977223936,512435736,-1047658493,41510,52298534,29590272,52332838,650218496,71307,52872076,1124074270,1513931662,485017205,1499072256,-1195157413,567105538,637996550,119715746,-1151859784,567083009,517682115,512368398,-1205919049,567105539,102651843,-1392763130,1946203624,1949252858,-336048636,-551244757,259347260,100696808,-970586354,19038982,1021111047,-401902260,266862703,1322283776,62391275,-112308736,-1017176313,1966750892,18868298,250104690,-389510654,1097990295,-1409267992,-378258628,1946181096,5105722,792474740,742142068,-152559243,-400788992,-1528299165,2222080,1950039212,3729604,686298484]},{"sector":14,"length":512,"data":[1007645696,-1207208913,-112328703,178371,-129055751,236867779,582590495,113311263,-1574566130,1476862649,1946172611,1947024390,-1022739454,108273724,41172284,1354959164,235296595,-1947979257,-2017057064,637543047,579208760,-970586507,2262534,1482383111,1913666755,1405352194,102651479,521013006,579223168,-1576831489,-1073077626,-662040204,28901170,-2021251584,-1073077625,133759348,1532976671,106386371,-645265650,-472907593,-1752725210,1532954402,771752131,819150467,-2145618672,158491129,2003237248,1474920480,1106870467,-109049486,-2146273466,-2134689815,158478585,2000288128,820609028,1405352387,872160849,870003648,785527753,819136199,-1977221110,-4986868,-922078862,-1977215115,-109051572,-2147126152,158685433,-754530514,1174409264,210380358,-7346106,333975666,51212800,1926435777,-102044921,-129105173,-1017423585,784501584,819144439,-796192398,785614680,819144439,-754723961,1489230643,78729667,-1315772205,199283468,1455643074,1387529758,-1591336499,-12779380,-133991169,133759467,1354980895,106790,1946159165,605447,132842100,565542,1480807229,106058179,-957820789,-1909492993,-1932971072,1942109120,-3151832,641794421,1006633120,-1945340838,100869824,-1908408317,-1931416640,100869824,-1036320765,-919403661,130124617,784554330,819150467,-402033392,-12714061,1073837567,-397193021,1482423653,521019075,1008895648,-1341819393,132905217,57982986]},{"sector":15,"length":512,"data":[536347056,508645571,49801222,-404211854,-3020548,637996550,578946758,703072001,1962884096,1103704864,1930492291,113347086,117499880,-1008204430,-387126527,-1073086452,-51903627,1495205634,236897112,579248159,1448330015,-1608577506,-466476410,-803039301,-1950153760,1579134448,1448330075,840896030,580369380,-1023156016,531493003,113466206,-1574566130,-1022942586,521018962,579212938,-360417,-51903628,1354980093,8054790,-756539022,-400788226,57999400,637545192,1006633120,-1945340838,100869824,-1908408317,132115392,508609368,-2086658290,-1073078494,-2094611624,270,113714883,524289,134661926,642336768,657095,-953793468,1157630982,113714766,538968078,-953790269,262,539015168,566054,697126,828198,959270,1364247384,-1947979182,-29628208,-919355250,460638779,1979599080,-1608105727,1513881600,-1064563596,50725670,-1064419328,1526325995,1405311065,-3479471,-617399950,518572339,-400067330,242614132,51264294,-1945665792,244000451,-1608122365,1513881600,-1064563596,50725670,-1064419328,-1014049557,-619986549,1509491061,844153691,517507839,-2020991218,169812615,1405311168,-661977519,-1960394612,-2097151218,-650436375,-1977203337,637534230,200331,52332838,113649152,55377920,-1064419133,-1020542581,378021448,-953810944,262,61023744,539015168,566054,697126,828198,959270,-117314568,-1017423609,-1979297197]}]],[[{"sector":1,"length":512,"data":[-7673663,-1047909516,1929330920,-1047900124,1543395304,427081739,125223739,518570378,-401675268,158662304,1929344232,-339571708,-389969143,276168536,-1047866829,201219304,-1912245038,-21632830,-1017423353,250086992,-1910607107,1894592,-1595407499,10495742,1952070656,650152972,198147,-339702208,-1017640988,27338320,539904,-1591336331,1178402824,639202642,1023412897,276126287,827686,1968063805,245442055,538983680,-953760936,134217990,113714688,1380319240,168216358,643452672,788167,-953790907,536874502,1364247328,2112357970,-1947979011,-57939760,-919355250,1979489512,-902086399,-303560588,-402426371,-1608056904,1513881600,-1064563596,50725670,-1064419328,1510464235,1354979417,-402252205,183040581,1424530432,520592890,1354979419,1387529811,-1960435251,-1064370617,40998,208951868,52872076,1124074270,-320093298,-12730228,1482360735,520041155,512368398,-1205919049,567105539,236867779,578986015,1975519775,-1007069181,-402609176,235274272,113649159,117449346,1476396008,-13450248,-1977676258,522368798,-849869896,105956129,1912630248,-390033890,57999388,637551848,1006633120,-1945340838,100869824,-1908408317,132443072,642827096,81539,639792392,1023412385,427116872,696614,1967408189,211887632,1313160448,-1591343243,540868622,650336288,67271,548929536,144909856,178464256,212018688,245573120,509002496,-850217978,-1935595999]},{"sector":2,"length":512,"data":[-49920,-336067724,520616193,45663070,169987416,-1207405120,29054979,-1021195008,-666992594,980680738,-935428050,359924002,-402342680,-1914111025,8907006,-32708452,-350260579,4319245,-1561851789,7596036,-1590816654,-1959910706,774031894,583800323,-970059797,2283526,56926510,-1525249234,8513538,582787886,-1105819346,113716770,8896,583181102,-861851965,100871714,724443850,186830342,-117279296,992889027,-1021134330,-942109154,134217990,134661888,524571392,-895275456,-828166622,512306722,-1144839476,12124159,186764616,1259762907,-1172424402,1125021474,-850919240,1208381985,-117456408,784348099,774032547,774032035,-115159389,509019843,650153558,1734,-1557774268,776994817,58472133,-1392705909,74791484,-135528821,74800188,-269746549,-344604662,146798475,571648,1958742700,1949187079,-186471933,548406499,1582869235,-1022927073,-1960901090,1023457494,947003853,45668491,-1949748414,1914818001,984356,-150941053,1962930370,113716745,-56646,78712811,212986067,-1039408429,582656814,12098808,-1658729154,-1959869665,774028318,584326793,-702641874,-1899262942,584367043,1270088624,-1664933427,-939080146,-1595408094,772174589,583534278,650353920,-620094326,-347733132,512372470,-2010766611,-1590770916,-2048384316,100740826,-953277754,2278406,-1096733184,104410658,58073798,-1021992983,-962515376,1048587810,1962940306,104541711]},{"sector":3,"length":512,"data":[141894332,-1002536146,108265506,1493155816,-111623176,-1590812989,-1959910724,1210238494,725670030,-1546061885,-2144468989,2283582,-1993472140,-350040546,512306700,-953285788,221702,1405296384,-953229685,2283782,914959872,-1943133463,-400364794,-2128216015,1967739708,2088838690,1967479298,1149904410,344188932,-964488843,2091013,-1557262734,182985433,-1948349696,-1007133709,650377563,1659372682,1174631700,868480491,651310016,-75490166,-2143718387,880020219,-389838256,1951929413,2811923,79242866,-773795584,184214226,-672446781,-2097148155,-1023999790,209059824,-134216519,-657335599,-1007093278,-75447303,-2145947088,74922491,-1020204160,1916926848,1190887433,-343931785,-1007041737,1912606952,4188173,1541932402,-386471168,-389873387,762696260,567104180,-419001298,1125169186,-1993461811,774033438,584189580,-432111570,192217122,1912683752,113651208,-117497114,1355020739,-4583244,520040191,-771022128,280235892,-803274962,81186,1492648821,-68421181,512634398,512631527,-661913460,-1019494258,-2144989321,1509949502,-661758860,-352264984,1104776429,-638072021,1734,17221453,-1996486656,-956300530,1392510982,650350147,1734,113714765,1,637725315,202377,-1908155901,-1020574781,443942,-953791232,134217990,61023744,113714688,1129512968,52840427,637534982,208515,113649153,-1957888000,-1020575544,-1047602953,443942,-953791232]},{"sector":4,"length":512,"data":[134217990,61023744,113714688,1129512968,-970538098,1509949446,17221414,1241513984,51808550,868425472,109981439,-1910103321,-1946121210,651726528,81465,585631604,-350260736,1829102,958797938,1962934590,244000482,21037059,637534990,227020170,-2134645781,1509949502,-661910668,198147,-121598400,-389809725,1903361741,112267981,-930357037,-654851285,-1912477309,113649345,642580480,67271,-1557790712,-953810941,1392510982,650350147,1734,113714778,1,378086986,-1909587965,-1088231674,-1993998196,2408205,856002086,1031808767,-1945340838,100869824,-1908408317,653192128,208515,113649153,-129171456,784595395,583679619,103052288,512437843,724443854,774031902,583665294,-850788168,1220578337,-953761650,134217990,-1022928128,-2144467426,2287166,-1909579404,639821574,2367118,-1942058202,-13899776,-130347662,-661781388,113701867,123338752,977519391,1279411292,1128353875,1229073989,977469518,1448232028,1128353875,1229073989,977469518,1448232028,1128353875,1313418821,73,655360,113651283,771760856,584648391,521011200,-1204058438,567098624,-661954702,567099060,-1204054342,567098624,-661976206,567099060,-348420418,999602759,-851640136,-1962184159,-851528488,998686241,1991914219,1023457339,192029133,1052039307,1992171981,-1172444357,12073844,1914817853,-1260877045,-1105081026,149633908,-348412738,997506563,-1506375378]},{"sector":5,"length":512,"data":[914959931,-1943141508,771980814,585709193,-351368146,288679970,669517582,4241659,-970056078,19056646,788133352,774028449,582616579,959317874,1931656710,4372486,771880681,585701061,-1191493656,-260964287,2013710126,771751939,774028961,771979939,583016132,310346022,1186475564,779252992,59180743,-1943142380,771983622,771982240,-2096922462,-2144987965,662038847,23003942,637780867,1965965184,2139170330,1963342593,2005607954,76228099,-1475986642,772044603,238790819,57326343,1000907054,-2028011730,235631363,1497938463,567085492,-1073019669,-953282188,-1962703098,244067843,1203241865,778627840,84113569,-657391601,-388896559,53405905,771979782,774031011,583272135,79364096,520039936,-1959918713,721593630,507195096,376578758,-1526322898,109981186,112919205,520039936,-1557265529,-1590811962,992879302,-1205682682,1551302722,-1070152402,1053044258,116064877,-385858888,-1607597845,-1073085577,1149779828,-1947979254,653560520,-1977592438,-2132802846,611785468,1929019880,1157637847,516238880,-1003617412,637693230,637562564,-15106429,-1004138124,-202696338,-352303944,4438019,771792617,639812769,773408393,639813281,773539465,583282372,-1006206162,367534370,1187456762,654311193,-15186234,1128478603,5671206,567104436,38177574,1053044230,992346733,-1207496635,1433862213,113585694,-1993989440,-1943661754,-31517346,-490275134,-400617855,-1003565266]},{"sector":6,"length":512,"data":[637693246,639782283,774133131,583022277,578128166,610110502,1418267785,-101324798,-972125394,378220066,-785710427,-1152057160,-13762558,855869214,1539312576,1242675395,-855637829,1975520047,12777335,-1150192512,297336831,87018826,-1557266430,-970054982,2283526,-653867218,771751970,583534278,1344212481,1000775982,58499886,244067928,-941096066,-140974066,582787374,-1174011090,-962384350,113716770,8900,-1140421074,1060290082,314179379,-1935346944,132544,297320590,-83126,870854605,-111810311,1242675395,-855637829,1975520047,750881338,785418817,40711876,376751142,-453617484,-846532605,106360114,297292369,113482,1499082701,-633709049,-2128214411,-1073790108,-27736445,-1008737598,-1,32768,1111752704,1229083468,503325774,1381061456,-617406706,1426071178,-658848770,-1337674669,-1324829427,-1205744320,-661782416,17233710,1946158165,243936781,28333312,101245138,-1607596751,104485868,58065196,1510026402,525884249,521019075,1406928583,113639504,-956148775,5495302,17221376,520093781,521019075,561253692,1031014972,276176956,57945916,-399447047,512294969,124933377,1928206056,-337777916,17233694,1962936405,334231811,626327969,-626851837,-33110189,-134217645,520134632,1443299267,1510932227,-388568317,1366486499,1094508324,1513900914,235292535,-1810986489,-1090472619,-1359850091,-1204390649,-523042815,1426136715,-930359285]},{"sector":7,"length":512,"data":[1946220713,-307107808,977018226,-1461184139,-970042387,537046534,772648424,44959430,115890944,868481024,-2050754087,1968505102,146929459,-1576700928,686511360,8438263,-643693196,186510163,-149326656,1946161345,1406968581,-1040773397,91488288,-346751325,1425842947,235324408,-1965346041,-2141988578,108331259,1406928583,-472842200,1434498955,-1185685569,-201588705,116852644,2118913,-23001484,1408017236,1426130679,108265536,-1554711391,113660910,-1291693087,-381777168,-297893037,1031209555,-544594827,1407991427,-2096532206,1347673150,619381365,1406942851,-2094893784,139717694,-55370891,1048582123,1962955737,-2080591093,139717694,-21822859,1407256262,-383875071,1406968147,1408116471,1407985399,-128718941,244002499,669188950,-24381901,-970014669,217094,1946292456,32434189,108268092,-260693956,782896107,55576262,-102372608,1465274819,-1102188917,11883253,210435467,642114374,1950039424,92939824,1189028935,-503364550,-251420684,-529159010,222134310,-2144984716,460589629,393501500,92939856,158678844,-343929768,-349130742,191883270,1605989720,267082078,-1336320417,2045291098,1963604993,-1433408519,-1574011100,1530659668,1329355636,1161564020,1094454132,1245448052,1676149620,22210571,259263036,192154940,125054780,1963665640,1308814316,1048587841,1951990612,1048587874,1950614356,1048587828,1950942036,1048587820,1951859540,1048587812,1951597396,1048587804]},{"sector":8,"length":512,"data":[1949369172,10086659,1946232040,16967798,1946873064,-1746294029,18081792,-236427148,181659648,-391449740,1517551877,1006691304,-1436847057,1946861800,1998601309,-396891158,540803280,154990964,1027405172,222097780,171715188,-1574033804,-970063022,16994566,1006677992,1008038944,1007776777,1007514637,772830218,771969954,55641854,1006670824,-369527542,-970522968,-381222907,-970522976,-1438187515,-970581269,1006698309,-337349622,9168911,1776868724,173271040,149681012,1946189032,5957838,1948400810,1998601278,1048588015,1968505684,1946827797,1963801623,1170613983,782901503,1061422846,171758315,-857010060,1144946734,108265791,-12204506,-970020320,4146182,788406761,55590528,772305920,55576262,782625536,55576318,82026219,-1018581978,1049177689,-1993473194,855857214,914960118,-812973222,-486478871,1048588007,1962935120,1048587824,1912669009,76162600,1376139310,773747971,55656064,638285058,771835018,55772728,-1193079947,1174702630,1963605065,116835317,1963086500,-1070916063,28629134,359995085,382534324,225772456,772041889,59508267,1912612157,-617930779,382534324,125043624,243286851,-1274785112,1947651329,1975519806,1660715066,-58718860,-1173523137,1541953399,-1475444724,384500818,1952840832,1123844101,-1246092427,205842519,512229811,11817640,113645261,201282222,-2147126053,91357947,-116877848,1355020483,-1900008674,76228312,1007041326]},{"sector":9,"length":512,"data":[-2146994857,-553380058,992873963,-111724026,243271029,522191895,1448199000,1491655467,1011642887,1124300123,1312571627,-620032395,-1092077451,1153836799,787165439,712323388,1007105768,1008956426,-386566865,-551286997,571868730,243271541,-352234844,570833635,-2132773598,38970382,-588720405,1588587270,-1543047591,141885778,1946087400,33155331,-373302485,69068882,113655923,-385854751,1381040663,-402651206,-478148931,-2132047345,-754257694,1963479272,111929361,-1978670208,266502387,-472775503,-298134774,-226491531,-1625913336,-380020142,113639595,-956214615,5417734,-1392065024,645988178,-386051416,-768932249,1913033448,1014965294,1009284187,1011709007,1011446853,1008628801,1016296530,1007645774,-395414480,1769211869,121694457,-555195413,-346100738,-1422489246,-1371635630,443875410,1912995048,101640268,-208976014,-2147080984,41048827,512252595,904614573,1930033792,-385971408,108266306,117500153,-1958599701,-1350072102,-1982135470,-1991067209,-1957507657,96200955,-840430734,-2029620731,-843085345,97642578,184510953,721778130,15591899,378067755,1049318058,-16035157,1396907124,-1215571197,-2135338311,520494592,520301288,1124693083,1386880570,28566902,1386815112,1387085440,-167086848,22194182,-941030539,-854608896,-855591920,1085802000,650153472,-1560260959,-1608101210,-1516109726,1386258770,12062925,-1623291386,650718034,4855434,-1977169154,167806006,-1979419146]},{"sector":10,"length":512,"data":[-850222282,914884368,-222670173,168355927,1386481398,-1977649919,-1974296514,-1303207114,-855460864,1480505872,-1274417688,-2146382589,378012394,29053602,46196736,-1440859581,-1292470702,-2131523072,1049232582,45372064,733614285,163637336,-1174193688,-1209510462,-1539899639,-1542553518,2011693394,-1543074044,-294062,199755893,-372692218,-75300625,-1962314242,721638926,-34280970,1387249536,51410255,-1178629157,32565330,-880019573,66988009,-1180726309,-1424062126,1443793746,519449347,395189902,-397148373,1918566717,1448169532,1391378263,-400617954,1595867647,1951947102,1960512271,-74754284,-400620002,1595867627,91559794,-352035096,73001165,1912899304,1014965256,-339315621,1372556272,-1107294279,776426209,1191545004,-1190725150,-1959919495,189967158,235238902,1391377927,-402355674,108266945,1195771272,96924386,-13957366,-1942058706,1509305111,1503982417,102750348,642171022,1734,2549760,-1606516729,359923794,4241414,-1499348850,1319315026,1386586112,6464038,1443793159,1477347587,1448198915,-1912207842,521637382,179095851,1853159872,1962478908,-116769687,1010918516,-1326746307,723814912,-13940239,1946499110,1373604645,1587999574,640120153,1966947712,-18143,-1957253390,788237303,395054731,653512235,-58696028,-2145422323,443812604,-1185871381,-1359806465,-1396577447,125046076,57936444,720694186,-2010731840,1049177605,520558476,-389850786,1869742971]},{"sector":11,"length":512,"data":[1530691364,1245473140,980796554,-12270042,-373336272,14084178,-289462924,13559890,-24437388,-1962908184,343236567,1456180049,-386757814,-1024982249,710500095,1596713920,67954936,92808427,1914715207,1048587805,1946163089,1632265,1195842953,417859819,-2012450301,171722501,-588712843,-1014174974,1373317968,777442955,55971467,-857147861,1124430338,-160239045,-1017620130,-1959898800,1443059214,102692395,649247,-645136757,1482251807,47311043,2133074546,208952124,326453820,-1861320658,199950615,-1861320658,149422359,-402295296,-638909825,-1461168189,-401575422,629802001,625412980,-1002774561,1610148980,-389773629,-997850115,1364260331,521018966,536860392,-1017620130,1381061456,-1979468714,-850223042,45371920,-964627574,-855264765,79923728,-1624864208,-1457636782,-2146405038,-326471476,-976091983,58059834,-1224149888,-1948581120,-1974284865,-1606513956,-1190546350,281870337,45400830,783814861,-32453367,-855460670,153139216,-1023536947,281871028,92939782,1963539527,1008775170,1008038432,-1273924572,-32453367,1325039810,45352563,-571797299,45373959,1516114125,-1017619623,1386815114,938001290,21293057,1387085440,-1269664513,-1977496276,1387110654,1387136554,243273075,-972926296,5418502,1392572137,1049286794,62149280,-2142105395,45353154,-1631973171,104654936,-1315388534,-1963854326,-1271921460,-1978610418,-1271921471,1511050510,281871028,-1308183461,1965149695]},{"sector":12,"length":512,"data":[-1388412897,-243990702,567094452,-148183414,41155722,-167116362,906026868,-1913957714,-18352,1387071111,242548540,169916499,1386159755,-855617351,173562640,-849709632,1018590241,-2146405048,-1384775173,1386811134,-16864792,1007872971,974681424,1934797342,-1459159536,-23795630,-389838269,1676213902,-158930176,22193158,1111291765,914361205,-402566488,1894318174,1967078655,-1475444508,-4520878,-350179073,1947024422,1963473948,-83196,1982868675,-1442432312,-1564313774,1206407849,-338130178,-1979664462,1345324227,41099324,-796254032,567083700,-397032774,-1017641658,-1271921581,-1625388278,112978,-1017442099,-1625388205,-855395246,45371920,1386354315,1386481398,-1307675647,-1206858496,1354304032,-351220480,-1609511661,1048598682,1963020968,1486266371,281874100,-855460774,-389850352,292683859,1963048168,1947024630,1946827783,32241667,1021887481,-10711808,-1293355150,-336366591,1946828004,2746377,171705458,734263157,1960155,809245298,960239218,-1202711945,-145620982,-661955869,-1741673384,-504637437,32080835,-1406794382,-1178345334,-154992640,72525830,-1142357132,-1475938816,-294321582,395354192,1386743542,-1475906303,-385649280,-1168768866,2133088496,-259370636,-171975893,169708114,1193637083,91488570,-352224883,-11695376,45351093,-1975057014,-501101104,-2143440137,41244414,567091378,-1073042394,548405877,275914812,-2144991627,141697084,45404298,-454352435]},{"sector":13,"length":512,"data":[-396849478,11797522,-1073080627,-58716299,-1594657473,243292314,-352038232,987702305,1951963654,-1777976807,-2146208680,1544254,456971380,243322997,-1610460504,2129156246,104488702,57956506,1489238104,-1007079244,1381061456,-1675686370,-1979968024,-402477282,1939726717,1465235993,-1207718424,567086087,74825738,567084980,-397032774,1511981978,-1017619623,1386743542,-163351548,22191622,243285109,-2130619746,38971406,541374977,173137312,-1977125696,-1219371490,-2134144256,-75496509,-2011728002,-2125341154,1095884739,-1996658806,-119387353,-1979824248,-2134638761,22194238,116848757,1963086494,-1643216655,1505362514,1018817312,1009218573,1008956426,1008694363,1008432221,1008170031,1007907840,1007645728,1007383561,1007121469,1006859308,-389810117,124969123,-143324612,-1008690456,102651473,-1395095009,158490940,91716156,1149771820,1459323135,1027343477,222038644,171705972,-538836364,-1017553377,1654730320,-989403133,1678115118,113716739,866,56926510,-1526318290,774075138,395642614,102265858,915091030,-963766381,642303531,771752867,395650688,1476878077,-1682258952,-400617898,-85392766,512634564,53355202,-1960656866,922693127,-1557257536,1790649024,520039939,-1892801856,-1021132794,108146732,41355580,-1007041544,-388287661,1249050606,180048787,1541666560,-729758974,-1824820736,1927272168,1948269615,1949056033,1946762269,104476185,309592750,-1869598916,171707508]},{"sector":14,"length":512,"data":[222038132,-1073085324,-13713035,771970566,56233727,-1072970869,-970013861,175622,-111427533,1380997059,-768358093,-402521928,1299317072,118380038,-1185856577,-1494024184,1031079774,-2146253181,896860476,-1961587898,12059212,19589144,210446194,28768641,1179000695,996104282,175440452,1946221187,72629013,872616820,-337492410,-100663367,1599692483,1418459627,378088964,1418416459,206342922,-402521928,-479067928,1178995851,-1974054569,-1410858428,-1954713088,1284179028,1107343366,1914818041,33602248,-1275063111,567146815,-1053049998,1418442613,105679620,-113114952,-1452138035,34127446,-1168241525,-1048378880,-113265654,-1787682355,-1854553797,-1107147638,210436616,-108969663,-2122906120,1006647016,638743809,639137279,1461351935,1268854352,71600465,1017443160,1594455297,440766246,407211814,56580446,1229342260,1946220931,-9901821,1963408579,1032005142,1460696064,-1960423088,46629645,-1426866126,-1017161639,1254589265,1192069926,87565895,-2144988300,91488573,-351942781,700941059,-335942686,1963015179,82528003,25019430,-1202666663,-839302656,158488865,-164376013,-839303244,509002529,-402186490,108134446,1178993802,431228651,1090789837,1358996014,-1974402113,1952201732,1949252614,1325525762,-1090510872,102650112,-1017247969,1094484048,1015025010,-2146928806,1966735740,-117314814,-2136685736,1962999676,118408185,96137867,1438825302,535305998,344598016,125096458]},{"sector":15,"length":512,"pattern":0,"data":[567083700,-1947014330,846035,1430159406,57934083,-1008875288,567085492,1894595,-457570445,1370192,869829571,-851135296,-2134706655,1052045941,-420798003,-839303756,61915937,542330319,542330692,1936876886,544108393,1126703158,1886339881,1734963833,824210536,758200377,876165425,1667845408,1869836146,1126200422,544240239,1701013836,1684370286,1952533792,1634300517,539828332,1886351952,2037674597,543584032,1919117645,1718580079,1816207476,1769087084,1937008743,1936028192,1702261349,1431183460,1329791052,1430323278,1380974680,1130102862,1229344335,1498623559,977338451,1431257948,1498567758,1398362926,0,0,0,0,0,0,0,0,0,0,0,0,0,1329856256,1381256789,89,1130105920,1095585103,1127105614,19791,0,0,0,0,0,0,0,0,0,0,0,0,1130102784,1095585103,1127105614,33574223,1543524399,1329877837,1329814611,1312902477,1329802820,1091240013,1397578810,542330692,1543524399,1548963652,1296912195,776228417,5066563,1547321609,542330692,20527,5254914]}],[{"sector":1,"length":512,"pattern":0,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83887872,6144,16777216,-16777216,0,0,0,0,0,0,0,0,0,0,0,0,1124073472,1229344335,1291861319,5590597,1296912195,16797263,1107647323,1262568786,1430390595,1380271686,1124549203,1162693967,123294798,1314213699,1364808276,1447379974,1145389897,1447379978,1212498761,1430800201,1397703683,1380190280,1095784009,72371538,1396851526,1229325656,1179862348,1129203975,1162106188,1313408842,1279349843,1225476428,1096045390,1229474892,156715079,1414742348,1447645764,1392987205,1162691157,156194126,1431192909,1330401091,1292587602,1146441285,1430341189,138499148,1431192909,1296389193,1431112261,1414091852,1262698834,1431177037,1129270349,1375948363,53497157,1448363347,1162367749,106122316,1128354899,139154251,1414092627,1397049411,33554481,5242880]},{"sector":2,"length":512,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131072,9,33685504,1879179265,-50147328,589826,2,0,33554432,33554689,157286624,251660281,512,0,0,66050,-1610584062,260357,131081,0,0,16843264,14680576,166726464,33559040,0,0,33685504,-268304383,-266960896,2359305,2,0,1426259968,1429558556,1429558581,1429558581,1429558606,1174951271,1146377032,5129033,1851066893,1868785010,2053729895,1663067237,1634561391,1763730542,1329799278,1195984462,1398362926,220465677,1684095498,1836016416,1684955501,544370464,1634886000,1702126957,757101426,168633376,1952671059,1931506287,543521385,544173940,1735549292,1852383333,1818846752,220471397,1684095498,544370464,1936943469,543649385,1836008228,1684955501,1953384736,1919971941,1919251557]},{"sector":3,"length":512,"data":[1225395456,1818326638,1663067241,1953396079,1663072626,543515759,1663070831,543515759,1701273968,220465677,1920091402,1763734127,1329799278,1381256789,1868767321,1851878765,604638564,1850280461,1717990771,1701405545,1830843502,1919905125,1868963961,1329799282,1381256789,1498623577,1768300627,168650092,1124732196,1768320623,1634891111,1852795252,1869575200,1918987296,1713399143,1830842991,1919905125,604638585,1867778573,1634541679,1646295406,1801678700,1986356256,1936024425,220465677,1986939146,1684630625,1096045344,1881164611,1835102817,1919251557,604638579,1850280461,1920102243,544498533,1701081711,1852383346,1313817376,776423750,542333267,1701734764,1917133856,544370546,1126198889,1229344335,1498623559,1768693843,606102894,1179602511,1635013446,1852404850,1397563495,1397703725,221130286,1342179850,1936942450,2037276960,2036689696,544175136,1953394531,1702194793,773860896,168635936,760433956,542330692,1646293865,1935765625,1735289203,1970239776,1329799282,1195984462,1398362926,1684955424,1414873376,1163412815,1094856259,1768300628,779314540,1294207501,1329868115,1769414739,1881173100,1886220146,1870209140,1869881461,1852793632,1836214630,1667327264,1329799272,1195984462,1398362926,1836016416,1684955501,604638510,1293945357,1329868115,775299155,1394618930,1953653108,1293971573,225799781,-842194934,-842150451,-842150451,-842150451,-842150451,-842150451,168676813]},{"sector":4,"length":512,"pattern":0,"data":[1159733284,1919251566,1663066400,1667854184,606091877,1111307590,1935765625,1953702003,1970565729,1768300656,544433516,1128085574,1768320623,1696623986,543712097,1701734764,543584032,1179537219,1395541833,1629508441,1092641902,1162826837,776160600,542392642,610082907,744053536,608132430,609437017,606097230,1701669204,1835364896,1768843617,540698478,1953383716,1663070821,1701999215,1847620707,543518049,1126196847,1634561391,1226859630,1919251566,1952805488,673215077,539780965,1130117699,1095585103,1127105614,220810575,1917854730,1936024431,1430331507,1480937300,1110328133,1528845377,1565404249,1096229951,1313427026,1277174087,1667852143,1679846497,1702259058,1634738291,1512076403,2019893306,544502633,543452769,1819044215,543515168,1869506409,224683378,1918313482,543649391,1397506628,1162035536,1313423918,1919252000,1852795251,2361869]},{"sector":5,"length":512,"data":[-528714519,28733,940967424,956432642,84017923,51381306,37422338,71041794,84148739,33752637,85591052,1057358142,1074071042,1090848258,84017923,17171010,33752131,88343809,100732175,100812037,100812292,436356868,117590031,117590280,117656073,139134985,67240195,84412939,33751886,302075666,51447126,1459949570,218629636,16865281,33752154,89851140,67240784,100948997,1696670721,1711407362,1744961794,57083393,1812006916,201458442,436752388,1761935629,17633028,-1577582843,1424577760,1438406047,1411143106,1371165771,1377849876,1440765398,1282952609,1451777228,1584618975,1573606949,1571904976,1141724921,1281903731,1294945581,1141720077,1141722481,1574591957,1443714617,1320570010,1572953542,1211714850,1215711318,1246120071,1243368532,1299423643,1297694802,1277906058,1246579913,1613324513,-1343791003,-1490309360,-1465866182,-1465536455,1631760372,-1451513509,-1567727696,-1544575981,-1579967649,1592171349,1084841790,1298481333,1245793750,-1335931227,-1538676467,-1326822179,-1294356270,-1437948622,-1364612693,1085621261,1086409994,1272335064,-1486968968,-1486991426,-1316731891,1065108682,776408624,139247214,-342857913,-342670508,-1603326056,1790152858,-831827093,-464506808,-112185192,307237199,2006526096,329688218,-1136491861,2024722090,1816793673,-45099191,-1448710743,1212429486,525348993,726717520,978377383,391156904,877725265,223426897,542330180]},{"sector":6,"length":512,"data":[542330692,1936876886,544108393,1126703158,1886339881,1734963833,824210536,758200377,876165425,1667845408,1869836146,1126200422,544240239,1701013836,1684370286,1952533792,1634300517,539828332,1886351952,2037674597,543584032,1919117645,1718580079,1816207476,1769087084,1937008743,1936028192,1702261349,104603748,-5241994,-1909580081,1346234142,53984854,-1072962510,344589429,1967666667,31621127,736826504,-2146994872,344326626,54338027,-1979288320,-352294634,277782,112922997,838906390,289308918,57933842,1578159744,-338747560,-1909580119,-1992431842,520302622,-1909580081,-1958877410,520302622,-1909580081,-1573001442,-820049248,787211314,516931634,-417427922,-335114435,-1890035707,-1677360122,922702074,922682756,-2145450516,-596171527,116121994,1828487418,-58666377,1947759155,1694269602,-1250684553,1951530112,1660715172,-58679436,109999184,1448563998,1347637586,-1909532532,-1556224226,512296428,-2069821974,99787525,-1559918943,-1070397968,-167415134,17838086,1050870645,554106371,-2077849341,-2045342715,53518597,-1912390493,-1991223080,-1946145242,771764246,1038554766,-83386180,-611396724,918565779,906360482,101787265,-1573517312,-1573518505,-1573518516,910164810,-1828497246,-472785782,1961102076,1509720087,-58702732,906852108,52444800,-1137216256,854264480,54174518,587646518,-969539325,204806,570869302,-1269760253,1479200130,1476838966,549191683,116798985]},{"sector":7,"length":512,"data":[1962869559,-1746382843,-1959897010,910073503,99229319,-333541834,385824261,-2143943190,-83851738,512634618,1048591847,1962934405,554630695,-2045342205,-2077848827,-1997763835,-224329658,92578565,-1559891807,1532495238,1600019033,-821616803,6495883,53485115,251580277,-1155661691,-883748563,-419000786,110044733,1532495342,1600019033,-14278819,772140582,1038550670,-301560026,1465196037,1397838422,922691152,-1957362194,340168428,-1909537955,-985798882,-1023048650,67896834,1082130440,50597890,554106422,519895811,216538902,637956609,-14727481,24322047,113718979,1543,1912887016,1483663603,374363678,62832159,75498632,21284673,12058682,718141443,1931435608,113718995,3277604,-1940849981,512634584,178470375,-1945741299,-1996088554,772152614,1038554766,-1912004420,101517854,117397736,1929349608,237430845,-1341733322,1038679821,863627278,-812969099,236882998,512308742,-1075313140,1947986741,118359577,112845874,1116520192,74821362,90540582,-1197263353,-402130675,-100139270,230203702,554630710,637998595,102438542,489065254,-872741114,-661892870,-417427922,218800957,378275416,646514203,-1909586403,-1136793834,512624928,-402256630,-402194735,-1233977598,906862568,229639878,62187775,504214504,523789288,-348974104,17059970,65541746,840004455,1719780,-1543959948,113705764,33623480,-1023315112,94514884,1128724262,141852672,52692679]},{"sector":8,"length":512,"data":[-1007091662,1164887078,92941961,93062796,-24188733,-32086909,-466480917,-402625304,2112356378,374113278,76151041,-1010814269,-1556683726,65536804,-1006653440,232504918,1245610038,125042691,604423990,-402631933,-1017249790,777211934,1038556814,52698763,1962884268,1958951433,63341317,-2136083733,74776572,52831880,57999164,-1409079390,57999164,1526932386,516104024,374559062,52732703,-1975653442,991857400,1017982467,973894911,-2046004029,65286880,-1964053520,-1978864697,787296972,1959213740,855171586,1582914532,28885791,-1909580288,-969021666,16982790,-389809889,-120848404,-58655797,168457489,-402426688,46858204,284983296,-58658444,-2131987436,58004220,-2147347991,225711868,1967586432,28895491,1879049706,-1909580288,1010689822,-385649405,104595767,-588709003,1963408384,18409731,57935164,-150896407,1946157506,24635651,266864327,113704960,4074,51052417,-1796668558,1364414464,-1957210542,-2097116130,578093051,232392390,-1945756159,-1899983144,-50973733,-1189994561,-1527578613,-1190275649,-1527578619,116793095,1946288262,1516134152,-346530983,6922324,832716804,-1335053296,545307392,-1174403143,834535425,-16624,1583292877,510875994,-1101652398,521029517,-1275042887,-2035483646,-501101104,1512005369,-381593509,-661978911,567099060,-955260229,271648327,1527275404,806256728,243269904,1375800588,-491007093,39291151,1510229900,-1293351138]},{"sector":9,"length":512,"data":[29554432,-385649664,1048576169,1963003354,-637090265,105906189,-1588111791,-1064435572,-1090715853,196678175,-1096486144,96013781,1604645632,1476876638,271591040,203849728,1877671949,1964374915,1976109930,582697234,-351855088,-406955940,1380497425,1241427433,1950955124,880036172,1228698697,-1064549515,-1064434104,1144881190,641734517,1963017529,1166747152,280692483,-1947994368,-337998904,-1070397670,434885171,267115147,115447,1488523124,855960320,-1207505966,-1413826180,533667746,-1946266135,1308831798,52872846,-1023409354,1465255454,512634449,20725223,-488105099,-1912135937,-1074383906,146341894,-212730880,-843097692,-341511411,1963080731,-3938281,-13384050,-1191180610,1375469576,-1101421325,-1527575091,123625305,-33756897,2016870190,922693183,1431322490,1183575179,1172856078,-37754615,-417427922,-5192899,-425021,1380985460,222726950,72780326,1962867328,851639816,199423990,1951947474,-1909580251,-952244450,118339590,-1007083774,503469963,-417427922,118917437,394993414,-989573237,-1007155617,508712528,-417427922,973534781,1948221453,-1342065653,1451894277,509798400,-1017618854,1766066701,1701079414,1702260512,1869375090,319425911,1970231552,1937075488,1634214004,1948280182,1713399144,543517801,1095649623,858665010,1763718712,1752440942,1869750373,1864397935,1870209126,1646293621,544501615,1986622052,1946815845,1970413679,1767317614,2003788910,1852383347]},{"sector":10,"length":512,"data":[1752057120,1701015137,1867325540,168650084,1853443673,1296039963,1044140859,1262435645,1094799954,1400722011,1409635333,1408324358,1401180915,1401574327,1401901997,1410159503,-1324771352,-155232498,118359623,1594339058,-376708655,78053166,-400615864,1386283194,1344178947,-96802813,84302985,1149831100,1453340164,-5192957,129821057,-108791950,168982391,183399670,-2132118318,91688190,434642710,521585409,-402620952,1418328580,72124678,-1329348558,419266815,-108988301,-2131528900,-294437634,1935997568,374493673,62307103,855639737,1405258706,507362024,3028677,524105448,1038149723,62523023,62391951,3028677,842867432,-1909537856,1363011358,2156550,-790507513,-773729823,-790507039,-1949431058,55681489,-523107151,173662417,-1023193082,227608263,1398145024,-1190938949,-768409594,1558758027,918887997,-655884242,1583030076,-1962690911,-1962690546,990099990,1946375174,-1422508594,1419984243,1381062147,-1246113229,-772671739,-773795360,-1094153248,602410260,1944703232,-926777084,2418688,482214321,1107981,55643784,1343653954,9955331,-1017226918,1001128116,737702608,-152354352,-417427922,1376684093,63043075,41229488,497205502,-253181171,-1144616193,987172123,1929359554,-2561808,55580297,-372119087,-1962560072,-1964902438,-2147266034,347997153,-774862067,5433569,482267018,1239959821,1238075904,-1550659325,1398145876,62307152,855639737,1405258706]},{"sector":11,"length":512,"data":[507283176,3028677,524026600,1017964635,62260879,775341342,1005709312,-1587651809,-768408748,1073743801,-1997408448,839079446,11846592,61605347,-1006902576,512433942,243991476,20710322,-13499787,807308830,4235523,-129308641,1552483465,72124674,-6277437,19186434,50307638,1962884291,853051908,1376198399,-2095114657,1702166527,91609867,-351130946,48449,1912605672,16483164,-628411275,717111531,1547384338,-1949731736,-1193593901,801969152,376831804,125168907,-854326088,-1207571665,801969155,-1468743670,-5192711,-1959331093,-1765906340,1620242,-216066530,-974643292,39619063,753517451,114169,1946136552,1962884339,-114890493,-102039120,1769087036,91586728,-351621189,187808515,225779772,1189659274,-141629371,-351910776,1965243428,784347938,1206916666,976098932,1950872086,372911631,158615537,-216647122,1073902663,-1952191680,1965112562,1959332623,183020788,-12285883,-370411550,1165304380,1958742700,1157097696,-335592312,100238323,521566322,-2095961410,58064890,-2090314613,58064891,996826251,1366648916,1969904699,1214024524,1246530385,974288574,-2096401404,-136182330,-385765287,1503983736,343146812,-1207958343,-1527578619,-1014249333,-1980306456,-2115304372,956557699,-1962773748,227091980,-2096969853,-1047854394,-352320763,1357132505,335591517,-12832819,28312692,45660651,1009765652,-1962576640,-1058322364,521596651,1007823550,-1961790207]},{"sector":12,"length":512,"data":[1418422876,-157620152,-1996333943,-1427437996,863306300,-1201122165,801969152,662044476,-854326856,1958742575,1967209701,4306968,-972872541,100869638,52889286,587646469,-571931645,-1330779145,385542913,-389903841,410148490,-2027970840,855077587,-163387164,-1996073847,1552483404,-1023112958,-1191722520,-370409473,740199222,244004355,568853294,39619062,-1022342007,739674422,512505347,918749998,-1023199584,-1057045878,1918771432,916600324,1201681923,837337856,532948480,-1980370968,1150026332,568902416,-1993934336,1603020311,-164168958,67143174,918749557,8732288,906392832,8718022,-617364735,-661994610,-472783919,-1296037181,1007121455,1962914306,-1444363519,106203637,-1591798077,1053033252,512426792,780796710,-1847065821,175933941,-1995422580,1284047452,-151918332,304791126,1782876982,-1073036450,1911034485,138725365,772148453,1038550670,118375564,-1360471061,1508398657,138711029,369144515,-389903841,510811526,1914608360,-1742305031,93896453,971564082,72124917,-1996071799,1418461820,-1209416946,-181999370,553796807,273976323,-182785853,637682887,273976320,369144515,-389903841,577920322,94518980,1145435686,-401115776,954729392,63629385,-303559566,40667636,839795852,-5192768,385855683,59959327,101781123,1283844100,101787267,-1257846789,-1157627891,512360447,512294944,-1847066594,-18429,287357008,-1017630771,-41222141,-1392326781,58491051]},{"sector":13,"length":512,"data":[638022912,280006,-796166165,-1429668180,-466435842,108331432,-388971266,-997525781,-1512535382,-125130068,95529901,55110355,868912066,-1947076654,-1522055224,1183327916,-1968460521,-134860073,1174611682,-1056724218,189172006,-2094609526,1962937726,-1947389412,1418397788,-2082985206,-922025766,-772274316,-488910374,-339506183,1177232904,-740755699,-661962520,256281382,40302374,267844481,-355398286,-657384331,1913648957,51309333,-2083384384,175309818,-734595282,-1019525043,-1014300042,222726438,491177766,-953810944,-57530,512634563,113655271,-1895890008,1443049502,-907539733,341610227,145151,-164380018,-2135294325,-1180306688,415170580,918887936,-1527578572,512634399,1048591847,1946157992,512634445,-617398809,100668601,-1336436760,639922943,268846582,-1977213579,-461372827,1895596272,1049170292,109839774,166200736,1465247770,117803558,407341094,-1949507005,637743134,1449609,53479052,773774222,1038556814,61343430,861413120,-1898344759,8961730,-1191179585,-1510801402,172838,-12729813,-1207732721,271388671,834304,78764075,-628170541,-1996487005,1023412254,208994032,394951,113705152,8,1735,113647821,-946208763,-855617530,1376175649,113756928,1572916,3546764,3278535,113704980,-65480,3802823,-953745409,100679686,1723450134,1946172424,1963015175,138852617,1911033264,28361489,1458840553,-391360425,-2031599564]},{"sector":14,"length":512,"data":[652249664,-397998710,2062041128,1977629248,1975519748,1583306981,-391360317,1726496788,-1073042880,-1017580427,178957392,1492809152,-1185916989,-1070399489,-772296974,-389849256,-320339961,125183,520494787,-1007188217,1916698678,-143327227,244004433,149094428,-490130607,-119383554,-1957313703,1586189292,529149446,1929666104,73304599,-472776910,106824515,-1994421458,1566246494,-1023097725,113401179,109981184,-1004126745,-2096782786,141885439,1145435686,-1023314560,-165231627,-1015019963,109981190,851394023,-745846003,-472783919,-1960379645,-913571259,125092155,57982987,-2095584263,309657598,-1993942644,-1993997747,221953845,-2144929277,-1022918643,-876602375,938000778,-13188258,906331190,92681983,-1962929944,1471801541,-2046390474,110048773,918750596,906848929,-1945795421,-2036123952,683590405,512634381,885341671,-1960688501,918758492,92550911,-2043216074,-2889723,434685323,110048784,-1892285050,-1023048698,52732214,916243395,218906240,-351308800,-401682687,-1202651141,718110721,32228184,-68677937,916243455,218906240,-351308800,-401682687,-1202651141,718110977,32228184,-68677937,916243455,218906240,-351308800,-401682687,-1202651141,718110722,32228184,-68677937,916243455,218906240,-351308800,-401682687,-1202651141,718110978,32228184,-68677937,1444856831,1967093992,1048589883,1962936992,-402279419,-2068565435,-2143933747,-15888066,1397758837,371085905]},{"sector":15,"length":512,"data":[47135,-402468120,28899086,46786560,1532582431,117388888,-1058337391,317252658,908025394,227542726,1962949632,113653254,-1023341168,1017967243,-386370524,-152370483,-1064382324,-315428213,1958742701,-1965258010,1992506109,221806597,-578157964,910872714,906099104,1442970274,906099647,91827848,-175440502,1023370216,-402426614,104660828,976157044,1950872838,1954495555,1946696758,-1877525454,-1877656432,1947024528,1946827826,104476228,1802782708,427029050,-389611862,-2143943952,358718,-80035467,-28918413,-340202553,-402149279,-1343552959,-1426755095,1593981160,-16812664,520494790,33275399,-1527525750,21686467,-167079445,1005096308,-386405632,-167116746,-1977215372,809303877,960237170,537718134,74604860,-478774724,-1325438743,32761948,18278494,33202230,-385721112,65601337,-11540224,427095562,637556968,540804490,154931059,356260724,339478388,1172833140,1048589824,1962935673,1962871443,1322253967,-45131837,548458122,-486034605,158772750,25002022,-32934903,921887435,33168938,-889004502,-66592384,-982229157,-503314456,-21042181,145772494,-1342080792,24373280,1860765872,-174051839,-16455353,-819278966,887621611,-1325208832,113653249,973079929,974091506,-1408535301,31385770,-956381186,-1360402462,1962621694,1187512057,-385964823,-251461625,-1695942398,-34150146,-184141266,-402295481,502005228,-819278966,1950947188,119408148,1207864151]}]],[[{"sector":1,"length":512,"data":[123711218,-772405387,-819279102,1793678787,-398413570,1465843957,-1125638650,1577525246,-185999734,385234686,1323894137,-384126722,229703286,-1342122776,13625610,-12795254,1139475316,1053046416,-617413244,1914787048,-402541381,192229341,641519336,1075203456,650362930,-1089051264,1396489960,854121267,-294495455,-1159200332,-1274645201,-349516412,-387697945,1405300653,-402652741,460464405,-2130355061,-2122284829,1962967291,1556422160,71824903,91496208,1542990285,518339,-286721813,1358262816,1827147243,243349052,33555985,-1271146008,795338755,1480649844,45352308,-131113752,1443241667,15703,1824393332,56278797,1824458475,56278541,-661729140,196722830,1604711168,-1021376674,1358747624,1476396264,1019382467,1012691488,906327167,33097470,-29993442,906166278,50341504,1342534975,1480338664,1593792744,116799007,1962869502,1444828111,-402652741,561127521,-167420789,427131079,1954595830,310036,1914719464,105182732,906589192,50202310,9103616,1006666985,1008759821,1009218568,916550921,201456032,1373173496,11913354,548407267,-486571800,918772217,33097414,-377361664,-29950095,-385746674,540868470,154988915,356314484,339479924,-1336931980,-11278242,-398455720,-389808307,62602133,534505472,65795186,-1271178520,778037249,-466422156,-1020372760,244563,-1152187157,-1031143420,996927568,-397009320,526319296,1592312667,1946202171,-1006695176]},{"sector":2,"length":512,"data":[-617393584,1914674408,-402344955,1482305061,20766858,104600436,121376628,138152820,171706228,11535220,1676278467,83945707,-1996173080,1418207556,243041059,-2013039808,-387373964,62832621,1918176488,-400615927,41029067,-672535317,81062125,503561919,1425270870,-294510754,521557534,1578224616,-1948028385,-1949856813,-620032420,-2135227531,-1946645760,-137219134,-947171085,-896797705,84337498,-763166719,558139648,170087560,-2001636106,-1393875852,-2081898446,-1979485180,-1573454012,-437779093,652964355,839140746,-639086364,906523996,637889440,-1962654328,-1993993148,1149964101,1166616086,272927501,289769766,638731403,638797193,347521,-400615872,1053038424,643368350,-1677439608,4031270,-1336932491,50522189,-1770807976,-1837889988,401146544,68479213,-2096854446,1052709062,506789636,-1962637226,1411901654,76488542,907702874,95565451,-1271494346,62832389,1918111976,246540296,-588709006,918809580,94256836,1962497000,1166747147,474253579,1743487155,1952199656,643558146,-2147138058,-1960426891,1149836101,1166747165,1569334813,-788821500,182964427,-1058832161,1149813514,1166681624,524584991,189106982,-1290058615,1166747136,650126341,-2013117174,-620094908,401287796,121998118,639255689,-1995881077,1085480004,-13181973,-1929332706,725023301,1392525318,-201966669,1528317064,88443686,-1022738652,907625608,1073746081,356878630,364578421,387072,1090358]},{"sector":3,"length":512,"data":[-2147436349,-1003071738,637550654,-1929097845,690357885,637761281,-947715703,1609818683,25765383,1525155523,512634602,-1073070617,1049303669,1040912477,276041823,274546372,94256777,94373516,11463160,4210372,72190758,-1157202547,-208928769,-343157877,885542,-2094641548,1215627069,88471334,846561280,1968908264,1564379437,1594264592,1958742544,1564026555,637956885,-1961534069,1002931191,-24392990,1979711107,-2080535785,813039613,958812651,-445442731,357927718,-571740277,-1049313270,1043972236,108335197,274662969,2011759476,-1547684865,1604522077,-9639664,141934602,274546313,274663052,94256777,94373516,4031270,1575488628,1022718741,-101616634,-1070463509,-402583576,772270442,1038550670,-1640053722,-1023315451,-1396497488,-1439228952,-1966867998,-2136467132,2045254772,-1207339686,801968384,208977930,54174006,1947270272,26798083,1575535609,1357739354,-588775248,-244164354,38127398,1059356674,1073745304,-1977987958,-1058701079,-511654646,1300768271,1166616066,1017198085,1166616067,106307121,-1090054569,146343243,-1897380352,-971041025,369453830,1596447208,1914658311,2106074649,1170613765,-986316796,637901366,638023049,-1022796404,-1960407317,1059390789,-397009408,-1993977778,-1943664779,526256477,1150019186,1166616093,407144987,-527777756,-388971312,1059374090,71665702,605570186,652487231,-1961015927,-1993991356,-1993995451,1149908293,1166550559,100607519]},{"sector":4,"length":512,"data":[-1929284467,196681853,-16259072,-1185430536,-1426915269,650128223,-1993996919,642258245,-1021885047,-1072085770,-1003073420,637550654,1912882488,-163859643,108891619,-1590233085,958792508,846541125,4031270,1149906036,1954588697,-1071361999,1968750652,520042015,376570044,992347883,242551645,-1977204956,-461372059,1977629247,-1007041791,639386763,1963672891,1084802037,1552613493,1564157466,-1947765497,992353372,-562755235,1397804779,-401062774,1482424190,-1640068810,109852165,292750752,-406067194,-385982232,906487726,1912808609,1053046452,-13236834,637746230,-1020181105,-419000786,2340925,1258735142,-1004140541,-1090155986,-812974079,190221094,-113769496,558140355,-2094836597,41042171,-1966868942,1418403908,-773795828,-1965502230,852921058,1381024758,2133117067,-2145368952,-506363679,-980757807,1149887114,-1017619956,1015083659,-2096925185,-231012410,240946115,-126493941,-1996455749,1438846556,-326898549,-330921964,16729798,-151005720,1963519046,112899,-386052471,-790036583,-144799233,49039094,2095580020,-112817665,-386181495,1183580052,-1947994117,-112817160,-687610889,-1980545399,1183577430,-1981548547,53932358,-2096944122,427032786,50284230,53256502,24500471,-137219256,-45708813,1183441911,-1982123023,1580855134,-167217679,1946353478,-394859774,259260104,-941074968,60742,33507014,-1962872855,-1993994172,1149964613,1166616082,-213480685,653612683,638928265]},{"sector":5,"length":512,"data":[1377260935,-1074704757,1190556157,58000620,1433676991,521557534,526309375,918123101,101400192,906654720,101385926,-12139008,-280065791,653991144,639059343,-1995356789,-1960439740,1149834053,-280589550,1995952691,-314144265,-2080815615,989920086,292879686,82593526,-165279883,1971324229,-12139004,1959922433,-112819418,-78216447,-330893824,-15174652,1187441990,1317733375,852110327,1053046464,2114126636,-1951730705,1183578966,-330893575,-167349246,1946741830,-26810365,149702390,1149833076,592742433,1074691203,1955070835,-330893788,504067332,535568360,-1995160439,1190532692,158599404,-387101045,1284105664,-12154364,-1017256565,-1191181640,1377725024,-1094758319,1314646019,526014808,736691059,-30873369,-402542512,1918434071,1170679338,511705090,-242527402,-687923434,908025435,94256836,-1336928141,-52500398,277848,607978868,1342534912,1493013992,1776861419,-401639949,175461972,1564379446,109852176,-14282657,-101193723,88471078,-1979091584,1299507204,76071166,-2146548537,1166747136,373590285,256215846,638862473,-1995356789,-1960439740,1149834053,-1983892718,-1003090876,637550654,973366666,125048900,-58660784,-32935080,1975794368,-1010814226,639124616,-1590295041,-1993998320,521540933,94256836,-401735898,1135629836,-335790104,1765063132,1474871347,-1979484931,300547908,-385175297,246480229,-1325571863,-44308220,1458110640,-385437443,45153617,922569961]},{"sector":6,"length":512,"data":[94770825,-1474393034,-2131588347,58064700,-16267645,-1090054604,988283838,1527018317,384175593,741801759,775356163,738641667,-1945846269,-402444770,110035339,110035758,57869100,-1093014693,1053033662,116786598,1962870124,130515715,1977289307,907971078,-1396441597,-1186479226,-1510801398,-995441786,-167564226,-16421882,-5239180,-1178534230,-1426915323,-1442484832,-1179991158,-1510801392,921017065,94770825,-1474393034,113653253,905971053,90965702,-1090054656,-225770306,1979661440,113672973,1839347372,251540997,1353450860,-1441512310,-218101063,-14739803,-16569290,-956092874,-1107088378,773753860,241428483,53347983,53216911,1458111346,-1505835777,1812395525,57999109,1527236483,-383940570,-225712854,1829668918,62832389,1934404328,-385634299,521594112,53229311,53360383,53216967,512492734,-1796734162,772181760,738627331,-352161021,79609562,53231300,-218098247,1149916836,-964449781,1185260822,1587914054,-385862168,118940851,906280639,53229253,-218098247,-14739804,-16569290,-956092874,-1107088378,773753860,230942723,53347983,53216911,-1410617485,-218101575,2105550500,125116671,-108838577,-2114817528,1965039676,41713670,-1340967904,62499374,648344320,553614720,-347143307,-1430244362,243349187,67110417,-1022588952,-1963882520,1256712386,-1645735821,-1909580047,-1606555874,-383842800,1444865072,-417427922,-1573468867,1128593157,7700480,512634398]},{"sector":7,"length":512,"data":[113655271,520094540,-402407745,1460019688,123674462,-964443022,1333003008,1968979072,-1404025343,326418442,225707324,1017905643,-1442286244,1963277484,-1427787774,-294273014,-390057384,-924192460,-1960946973,62832626,1265756247,520516447,-352079782,1048589962,1979647354,839325202,1254615232,-2031612046,-33262353,536013760,-351227814,-1101389858,2146005279,62832384,753463947,-1341885621,-2132219133,-16418242,1053095285,-8190558,-387156737,-378400684,94518980,1128658726,628367360,-397322490,2089542120,240946694,-2029797698,1472213751,1581972200,94518980,1229309734,1599733759,5433351,-148459145,-2147466427,-148499595,536888133,-4652172,1300834047,-1572944823,-282269691,283754546,1876606691,1443086015,-1394019701,91446858,99156912,1048590051,1979647354,233330419,74866176,-353696336,-428681473,-1959341845,369472054,115888415,1140425711,1633469273,1638621532,1661690283,1640325899,1651007941,1660576422,1643209187,1673028104,1643209656,-561225208,289152790,-1957687433,-1605128,1491587328,514195246,17099105,1933913064,-385437691,3990164,88443430,-167109772,229639284,-2136412693,-897523852,587646592,-2010774525,1760101717,587646690,-466484733,225738920,52627142,2110006788,1703552519,-388986107,1418322140,-388240634,-1317911332,88471078,-962431872,67314438,125682726,1273617202,738309121,-1274907642,-1293398013,41113619,988318699,-1327461854,-33393153]},{"sector":8,"length":512,"data":[-1983452224,184556558,-1988791086,-352314858,1150740720,-165253262,1971324485,587646563,-1004141565,267061117,52627142,150831106,-2014818699,642348289,1074021878,113656436,1007879038,638352400,-2147203594,113652340,102302590,2080818775,512235267,780665725,243794825,914949002,1049166731,378078093,914949007,2092630929,1577522691,15329567,-1779891792,-17176095,1963012584,1173759731,-327940091,2114373174,229641987,-1556683894,-1070398596,58696502,-141877498,2092631830,-397009405,526263127,58695990,-1325268955,-370617591,-1014308533,1917325800,12511304,-1960426638,-662043563,-1572944842,1173759493,57966660,370147514,62832159,-2008956032,21284636,12058682,718141443,-897514381,-165281280,1947223109,13271300,-544020352,-351906679,-384847698,-1914117888,-385649853,-1960378785,-437582507,-385919511,-126549874,88471078,-957254592,50560518,91488680,58590918,-1978224628,58500067,2141438003,59351555,59641481,59381385,59520649,-141877498,2092631830,581036035,-2147027402,108363779,59679030,-1959355925,-2130477250,-1962868761,829155527,52732214,-1974433301,1195960515,-617470862,52627142,-1572944893,1173759493,-1004109756,225789309,52627142,1569334786,2110006785,-1017579501,1929367528,-1000929778,637903422,-2143009290,1489176415,-369147159,-1561592150,1979703784,1173759734,-277594108,58590918,1947089943,2114373125,229644291,2091115402,-1547685117,520487807]},{"sector":9,"length":512,"data":[118945675,503545019,570550358,-164225186,-2147254266,-1607024523,-186055811,-327816993,330827379,-1020277487,91162310,-315955200,92145351,915137792,179045810,-2080672320,1015088366,108342826,704806016,-293396620,385779465,1061140487,-218102599,-2028178001,775794174,-1391168193,1967079229,91070478,524033828,113640821,-973077121,16993286,1931091944,168588563,-1207405367,-386334718,-1195119384,-152371197,1048579189,1946158463,374789,-469047061,243332984,503383407,92219018,98713285,1795618358,158662917,17516534,-350289036,8775730,-350289037,88471082,-402164416,1300248199,663240709,-2145444725,268791566,1912798083,1580934670,-402098419,1399990704,-1006582552,-402290130,1198659842,1930966248,-1976646495,1183458821,893511680,116798834,1947207023,1795618343,477366277,-1000929712,637903422,-327146102,-1591310271,-385928694,-1461189394,1476878129,-1007929368,91162358,-385649407,1357512509,1347886847,118904403,-1304523978,921930501,98836110,-1014767733,-356128766,-386333879,910641199,100744841,1593447912,374756187,-1004601569,-1608610816,-1643723003,839345413,628156644,94256836,38127398,-953810928,-402652923,225594933,94256836,378662,1310910464,-1976646408,1482382853,-1664934049,911233878,95565451,851116976,1478491917,-1013096869,1398232732,915093072,1270810036,-1157189627,536808754,1583307608,1453114269,78663763,851367147,486487565,-359274301]},{"sector":10,"length":512,"data":[297272947,-1020277487,52627142,-1305048318,-1270969595,-1979414011,538971429,91538490,-117435976,775356355,741801731,773753859,738641667,-972677117,356358,-387245080,359859732,1962938941,178179,738627577,772181763,-350033917,374979,741786910,365331203,269174006,915081076,-1024981580,-663281670,91242112,-1949207296,449217523,1946078952,2144261,-984169493,-2096944074,1156978118,57937931,1577380702,-1577115416,915080626,914949556,-1264384590,-1241069819,-939524347,-16417274,401008869,-469097614,95957881,1352464640,-402295136,-2141703289,215614,-375585675,-1202126989,1810432003,-2146732545,215614,-922090379,62392181,1491728640,-1090054401,1270744407,768261,-1029593869,90481413,901449494,88850182,-1190832194,367525899,1795606017,113645061,-385940098,-1703732670,90447499,92942020,1914111208,364046477,1048610931,1962935114,90480938,103745083,1084251508,1964025862,90939930,94379660,-1996003906,-955933130,131652,48810291,-385649886,-1001128108,-402284994,-1000649632,637919806,1074087414,-588773259,1300244019,-74760187,-1106524285,364447296,-391843072,2003959933,110033803,-441448988,-401347670,1735524461,110033803,1270744548,768261,1049339123,-165280286,1967129925,865724424,88965158,918902336,-964492500,189068821,-402230256,-346096138,566124033,-378345466,92145350,94627840,2005737842,-44439526,548931187,-20518656]},{"sector":11,"length":512,"data":[-1475985248,-402230256,-68551243,-37426946,-117508631,-1946243095,-1006227682,-402290130,158471701,-1592188696,-622328275,1017955093,-1979550401,-498882041,1491649525,-1207536664,801968399,-384636733,55314118,14477313,208999283,141871370,-117439816,-1008133144,-352320584,2028210934,-499219473,125173509,280028210,518384632,98836110,-617352309,1284242315,408193814,1149953074,1964025867,477924102,522083467,-1446908936,343211992,52627142,654755329,113641219,-1207696602,-1007091707,1944575720,246960136,1529859345,-392763197,1275512400,-806878973,1526952725,-469073685,-396884359,-991172448,-499219624,175439621,1945922280,2144267,95959787,887879936,98713284,191332390,1191716568,1173759499,141901829,640833256,1074089344,1376089760,-1979665321,-386167856,1516240080,1932604136,178179,-1008185368,974028854,1743257869,-2143904747,-2146616794,-1909537891,641591046,94256836,1978098664,473556995,-1023017178,-2136415182,145232501,243337332,8390161,537659568,175394984,-973077064,16982790,1053059051,-1006238306,-2096782794,494272510,-167315961,225706245,288274512,-967102515,390662,414732483,1529859345,1157048003,125829187,-1075308172,637891072,33705347,100009718,1355904257,-854517832,-389850321,91357350,38634278,-410327038,1931440872,-1593391593,-1645674742,1774500839,-1007036626,1347552512,35652867,-1594109720,145229165,1053039732,-1977219678,1106018341]},{"sector":12,"length":512,"data":[178333320,535298487,-414259200,-399714584,45672296,-1640053760,-937492731,-413472768,-1274982167,-13702911,-27851184,-1327723836,140949773,1393388730,-385928622,1532688164,-16112526,1270744436,-1107039483,-91550278,369543043,-1190717921,-1527578613,-1341634887,-385928691,521598716,-1017641121,-167315914,192151813,27342416,1158227462,-1007069182,55314118,21030912,1053043570,-466483810,38111270,-1573469178,-97531,-167301003,17167878,27267188,783831046,1529859345,100009670,116835072,1946222726,302446089,41158662,-1202707536,801968406,-148454565,-2147466428,-167152633,17167878,-689190795,-2132379672,84752910,1930670568,169112864,-1206881079,-2143944702,-2146616794,-428152583,-1207925015,-286588925,-352320072,184120553,-1908442908,637920262,-1475655798,-1461095160,506426369,-1640577706,38570757,-2147433993,-779482507,-2131697024,141914362,-1980702333,216728140,-2146442880,74711289,-1192550562,-1343742114,645936671,-394261190,91422794,-337242136,243748,94256836,13115135,-991557656,-402284994,-148497905,-2147483067,815859572,1166616067,-148454607,-2147483067,-1977217931,-511704499,16351472,266863989,-1192856760,-1007091680,-1947881496,1358961166,1497889000,-1746399629,-990584092,-402284994,-411828280,-1008356376,1392864930,-478095222,1916698864,91619077,1953561472,1090224133,-662041225,-2146442368,58131195,-1195116453,-111476724,-459413309,213386867,-1020277487]},{"sector":13,"length":512,"data":[52627142,-447551486,1915411176,179009,1915297512,-499727047,342133253,-1960435946,-1960440498,-92070058,990147839,857961169,-51885614,1964470824,-498908671,642468853,-33274230,1317742272,1451828738,703133727,-645151771,1053092075,-8190558,-1207536129,801968409,1173825219,1954545731,287029254,-389861427,116909284,67110417,243271028,-973009606,16993286,1929463016,975601669,132677645,1964602130,1959332370,1226766,975601718,-386301939,-1195121456,-253034493,175760394,55051975,117374975,1053033840,915079980,749471154,1053076032,507970348,221906678,-1962380272,-467759373,-1107039483,648283467,100629888,-970586763,-1176109243,-1527578614,90939423,1218531498,-1029592317,-947672315,-469084156,1048779640,1979647458,973534736,158666765,-129644762,2095710207,-467759361,-1175221499,-947191776,-125065997,87916582,-970587019,-2143886075,-2146616794,-386392298,-993795020,637742142,-2136472182,481822324,-1020277487,52627142,-470095870,94504647,512492787,1074005412,1916579560,-1572944842,1841571333,-695408571,4622886,-955943262,359942,1275512549,918880515,380371756,88850183,-218100807,-1573475164,195888491,-385648192,-1387200781,521590923,92942020,1930461416,-336898045,1477675240,1913668840,259254498,-466428558,385809385,915093023,179045810,1006990528,-101223105,109983427,-1960443088,-1962921458,-397717031,-497469095,-1205922058,801968413,10493695]},{"sector":14,"length":512,"data":[1077855286,1300964864,-1927814396,-1590294915,958792508,91566405,378662,1002930944,-617352990,949807187,-1023315109,-12745946,-1590290059,958792508,259338565,54436150,793065766,-953809547,1124073477,1053087467,-1960442466,-1007221411,108298240,-854522184,-169295057,24176866,369157352,-397193185,1482376548,-1060898992,-385649664,-605552450,1929752576,11921667,1955419735,-507910112,-401668376,1600053683,-24441740,521537310,-385699591,1157038231,1954545666,1837770253,71600651,90939958,1149896683,1166550532,1300243979,-1960435701,-1556735419,1149964222,1166616075,289704730,474319142,638796939,-1960950391,-1993994428,1149966405,1166616077,1207313942,141901829,640444136,1074089856,1284199966,1990211083,11817477,-921972598,62131573,-1961132917,1955208524,906947359,264113723,45352820,-1106343114,-400615921,-396691780,123677471,24249776,1357421816,-1671848682,637760841,770182537,-1664901662,1208322854,642253173,-1013119609,52627142,643237378,-1994566261,637929238,-14985845,1376126774,1512529128,101123727,-1070455438,55248582,701491224,526260594,-499203018,1300243973,-544537595,-1340834419,526710304,1606678531,1053082375,-1960442466,-1007221411,-243990336,-2147433481,129500788,-1020277487,-387868696,266920340,-18432,-1661032984,-1659521304,-1008622616,12633079,-1007158923,-210419712,99111760,1166616281,1435051535,-4181235,1526777886,-1729576104,-1206619168]},{"sector":15,"length":512,"data":[801968387,374979,-512825095,-513087293,-386282775,378331460,113706400,71173534,74516167,279969792,1914247912,212448,784651124,1053099402,-148175390,141950806,369522175,-1036583137,-1547685115,669517250,-394825192,1920077233,98713284,88471078,-402098880,-2144982277,-2092956339,783815879,-1038709984,413788165,1512976056,-1005018392,-972715474,402868998,117870426,-390057466,1668425925,96605835,98713285,67456384,-1980300450,-1982713068,1418265172,88471044,-402164416,1300245163,521551877,4622886,-1205234968,-1310195707,1515897824,101123727,92942020,55248582,-390057448,393357433,98713285,67456384,-2080963746,80091886,-4593435,1593773801,-1729561877,-1207536673,801968389,-531437373,1128658726,108273664,1229309734,113704959,-973077684,369454342,221908608,225765377,975601820,-1197637619,124911619,244005749,-386398782,-389816260,108257107,-854523464,233358127,1275512544,113639427,-401210003,208801090,1049301877,-16054846,166399605,-385875016,1482227354,-23991976,98713285,-11280597,1979648117,371136006,88850183,196689840,850064128,-1293374784,208463887,512676978,-208992796,539901357,-964441995,775793950,381646126,1208403743,-402652669,-1301148598,90900166,188606486,1048619123,1962935114,-1976646495,-1038185723,483321861,-1889889166,-972683514,402868998,1860747314,-981110233,-2147098050,1526990157,130473731,521543397,536068328]}],[{"sector":1,"length":512,"data":[-956388631,218886,1460061891,-1588592381,-425523810,94413061,1476782243,-1640053565,1166681605,1007625218,-385649407,-85457374,-401874172,141876856,-854521672,-1007107281,88471078,-972065408,33760006,-388035608,635962810,113689567,637797155,-1006281334,-167564226,125059267,1946469366,-373280251,-1007288106,-167217888,1634992579,100766953,116799007,1946226736,29619720,-1159134348,870288128,-388985920,907940847,94254789,-1961662488,914797783,56442507,595197707,-1960832280,1040398074,724960108,167996430,1007711424,520320003,912246763,94256836,1594194921,53934731,-352097218,-1899983726,870288344,1371704274,-402652743,911807387,94254789,-402164539,283647398,-2035001581,1564379958,2046757635,532277271,113718879,66412,-546045636,-1351351492,317440050,1048786527,1963000684,-1909055969,-1979487714,-13230331,906192902,56428231,1011286016,1006990362,1085333517,-1962888215,-1950338081,322300112,38258214,-986309115,-402285002,639570600,215031,504591488,1424545675,184191775,1012888768,524907523,-148449557,33555271,-970569867,637796935,17975239,-986309120,-402285002,-678751632,-1960409420,-940113025,276070400,-1960895768,1958742778,1946369061,-1662312689,1241156383,-14280221,-1863643577,1053046367,-2115435106,-2068557820,-380097843,908066686,57425411,-1392602903,1963801770,168084995,-203421124,-164427915,216078568,-400615935,915013129,521535522]},{"sector":2,"length":512,"data":[95960713,1053034869,-2144991842,-390134427,-389872432,915144179,-167051230,1048625525,1954546299,2064041734,1375698946,2075809542,-569579518,-1101461665,1015022205,-1331661542,-1336956390,-524031990,-1444153805,94256836,38111782,3936036,-202833035,1173759491,125075459,71693862,-386960127,1038615229,-1207536420,801968393,1173759683,1886748677,52627142,-590157822,1912934376,-1640053744,1173759493,91504643,-83171247,-589633447,-390057021,907940374,94254789,-1961796632,914863319,56442507,544866059,907937512,57413163,53926539,-1962709986,1958742779,1946369035,-907337981,-34674344,1822498648,-1640053757,-389510395,-1950153703,9431505,52627142,1300243972,-1977204731,-1070398115,-1977688093,740214211,872123139,1948297426,-1467028734,-1469156094,-1949272828,440369346,-1185821836,-1813512191,-986293999,-989487562,1810368372,282454043,914863191,56442507,377093899,1595768552,1812383542,1006633219,182416385,-385059648,912260464,57425539,1109160960,1745289014,907953923,57286286,521813376,-952759948,220422,-1951145472,1558781890,521543423,536641256,-1403915381,91494972,-488672024,-1054123786,-60561377,922697449,56049280,370308352,-396949985,108146936,-561068404,123729803,33260483,-986257033,-133831114,-2083376189,377406,-342752395,651201036,637818402,-754626934,1930856680,-1966568699,-1072264222,118917381,-1105818874,-2133589499,377684182,-1962932729]},{"sector":3,"length":512,"data":[-1996112866,-486155234,522577945,-544753038,1931413480,-1980571134,-1962550242,-388199721,113645460,840434507,590080192,1444846194,98711237,67456128,918757214,55248582,653888280,638078602,839861899,-952741139,395014,-1957670656,6154447,544495960,-354234365,-389051558,-831258545,1963378230,-1662517243,1946237952,-134005522,-1007091339,-165231782,1946682437,29550596,-922005053,-1337392779,1019930752,-402295975,-311230105,1173759683,74713092,-1023302168,-1310146510,-402296004,-193789655,-1977200189,-1977215130,106103110,-351288600,1501223,-969534604,17134854,1006648040,1022260225,24508419,642892793,639067786,1392592522,265086982,505403788,326550846,-1911614744,911935449,57413259,-137417889,1570846425,-2147440381,1963932867,-1590276078,-1556741264,-1590295768,-1556741262,-396885206,650320844,906458565,93068940,914956054,512427402,512295724,113640888,637535604,638928267,-1994959477,-1559900138,-148503090,-2139093691,-1006224267,637897262,-2013241718,637892126,1359109771,-1996144152,-1559901162,243860932,-779418170,572971147,512230494,1323828595,527784197,222706470,-1130161801,-1047853307,53216771,748751987,1977153283,-930396159,130221283,-128202445,97296835,-1072965237,723914356,-654900666,74700843,-617364733,-1962552669,651310019,-1560119561,378078678,-960297516,357638,54916646,1359902080,38636070,-2131697280,1968767225,998041605,-919347085]},{"sector":4,"length":512,"data":[-117431880,1963378371,-655687419,289770278,324897574,97388075,97525275,175449714,544522251,41140539,1961412747,-1023314946,92942020,-1946190104,-402277362,242357204,326420747,636030644,9890050,521558873,95996211,-1983645440,-1996113386,-2096776162,381502,535299444,-2082246124,382526,-1326951564,-959286764,17134598,91428490,97914507,96214667,1913965544,1397774273,55248582,773754424,-397323773,-957865296,911890941,101451407,-1942576526,-402256354,521535582,233003865,1931239400,-16731611,-351946234,97821123,376750091,-402271581,242357331,97257159,-1410859008,-385649901,1053097836,243991966,237700536,-165280980,1971324229,96248078,893749542,637909665,-484883063,1291920905,1434658325,-1007157225,1899922230,1014235136,119442230,66292486,14058442,-1960850456,-1556741563,-1977217349,1161429062,991196420,58001501,1996903739,141900554,1295713141,906655494,247152187,-562741877,1173770435,796147717,1465274961,734169862,-654899643,638875021,-150843765,1049310945,-134019572,235310646,-202780410,13730725,1594336499,-1957078434,527755463,-1157219530,-1703585778,-437732629,-1023118340,637657833,-1090165375,1166747327,101491473,323324710,-1006235997,-402290130,-828244489,-803828987,64611077,13796289,39750438,-1962745368,118393328,1389497094,108384651,-2097151699,-219676454,1380997634,101586571,-402256735,243860158,243861006,-930413110]},{"sector":5,"length":512,"data":[-770974069,17107060,-904494336,-928841723,-1547685115,-526187042,1049319429,1044055559,1735525902,-651491212,101596699,12519915,1926834944,-1958251434,-148466742,378077798,245564935,650611462,50489079,-1962539258,101622224,-628899541,-2084371712,619380946,-840382325,-401415407,225645439,1990201268,-993447163,-133849538,-381228093,-1037369145,-768407178,-1996104029,1476780054,96210571,1913749480,-1138849306,-1172928251,1958882053,1371398944,1088997515,-1066247917,96081547,91507010,1913748456,-1138849342,-1172928251,-767655163,158597125,96214667,1913779432,97952170,1886699531,96732673,96867971,306309120,113663858,-1979644556,-1962577130,-1962558434,-402270706,1232212572,770199639,512636417,-969538770,939739910,1962660840,1948728343,113653283,-402586251,20773875,54323828,-117344776,521558873,417535858,117375154,-1075116614,1532567318,101385926,669645057,-49878529,184931489,-1559006016,-790100526,-940674543,379910,291760128,1053090674,-559872610,-535917819,1975520005,638575362,638665985,-1206694639,520028161,1642660040,197692413,762016970,-628948991,-1960422656,468189790,-779396351,101125769,-1962854168,275441864,652450674,1913797352,-1640053730,97427717,289769766,637915297,-1206696567,520028162,-919404344,-369281815,-1006174566,637902398,1931040059,1170679310,637534233,638277003,120935817,-385876038,-1267592522,-617366549,-1640053754,1569269253]},{"sector":6,"length":512,"data":[1569269273,1569138229,-620034293,1426464372,-1001238192,637897262,-1962912118,-402475829,1499130316,-402170536,-965602692,1364427755,119442230,66292486,14058442,4622886,2000585526,829685760,-1341769162,1344959757,229744950,-1287746762,1979136781,1992833794,100873751,-679280521,1977563904,1943026434,113718791,3509,477554776,1963214138,140327719,1429930869,991786758,58001525,1980124475,88471059,-402426816,1170677449,-400490748,48962654,993410443,1963899710,-1017423413,33618817,-896854667,-494808949,-997588481,-846536310,-372118222,-1950099247,868387784,-1846282286,650376183,839208586,-788077587,-489106966,1525203962,90939396,138190372,2129134453,17360897,-1779891341,512630272,663356900,980739082,2133211702,-164400123,1946684231,117323269,-695466629,-208943474,906316735,88817280,906393061,88803014,6416389,-1004590988,-402290130,-1116536730,-1960881941,990070798,1929762830,-670136060,2133211653,-1981778939,-117057010,747255019,1797687839,-1629192187,-166759283,158599365,1946731766,-337366304,150765585,-689383564,-167283709,-16417274,784649076,-1977219702,118882406,768451,125085427,-8552410,-1007324097,990070945,1946540550,1603092516,1977236256,1931381278,985923077,1912960798,-601978089,391047173,-75298957,-352161278,-1547437774,-1007156408,91430536,503531683,98713285,906515851,101127817,-2096736885,-2093612606,395030,-131930081]},{"sector":7,"length":512,"data":[619436851,-1560065887,95486792,-796147501,-2080382939,-1960435742,-478150050,-1946945568,-1528278054,-1284350985,98702987,51692163,1443047130,197392386,-1992526629,637911582,-33274230,91726528,973534806,125108749,1930878696,-1983685118,-1962558402,-1998900525,-402296034,1381896016,101127819,96474761,-1105819302,868481029,96641984,1208316834,637910179,638273163,722556555,91726530,96343689,96470727,-1007157248,92145351,113698048,-956169437,-16391674,-1304523777,25002245,980704314,-1962686589,11725047,1839214194,90939909,52627142,-1106831871,1049298251,-678754894,-1409283911,1948269738,-489190654,-956658698,-605552635,-1010762238,915144427,-24967754,-1929153025,113640309,-1005189781,-1207590338,-1960378369,915097949,-264567370,-667205516,116800628,1946225978,1364657730,1459582207,-12269997,-1305048320,221297413,-1190312257,28314939,1610549022,-2146930174,74711100,-134091783,1150246491,123689471,915082611,1955399090,-1976646653,-1002444027,-402290130,41090765,-919452181,-141835271,-946940020,-1190835265,-1326972919,1949187088,285206542,-1073084556,-492173964,-2084308499,548405953,-796087565,-941041522,-756497663,3965182,1839204725,90939909,113501234,-1946252458,-2096774642,-16402882,1044057716,141886902,94518980,1229818150,-1064382324,-1207612481,-1414914016,-1414812757,839207871,-1396572444,309603900,611631114,544496700,58015548,-1442722688,1405085675]},{"sector":8,"length":512,"data":[-1073042427,1547439732,1060899444,-864025739,-303322623,-2134078898,123699401,58062651,1442901225,-1073085302,1049233525,1049101677,369493355,19982343,168522247,-385649472,-379715375,1048641148,1977943371,1258735109,106366213,44165201,-1914174605,1594317308,-739703949,-499202816,189265413,-385649392,-2143944543,216126,-678746508,521591180,973534815,192151821,221906678,-1962642430,-2146605506,57999421,1459657961,-644941173,371070091,973534751,276038157,1049352843,-397408836,-2091319935,1038811844,736045855,1448104951,108396369,-1962379777,-400615718,110099813,1918502407,1258735114,-1070458877,1494775016,1935366238,-141861115,1038623211,-499217419,66519813,-1595383841,168135170,1194620096,2129196939,-385649393,844037797,1596779465,116793110,1946225978,973534731,74711565,224804491,-1073085046,-141884300,1760038379,-1010762238,-1962636706,-1598027017,1805780333,-993789691,856001070,55092160,1208318882,-1559897949,1354958298,90939446,-987574026,-1017637340,1347508054,88815359,88817280,-972720891,-452637946,90900214,-1105038072,1157038152,1954545668,-2084140271,1270811334,309509,-259282957,885331316,1979711107,-779290143,110090638,1498940747,918773343,94117516,-2147189622,-410992433,914962143,-555022950,-1088413512,-1431632557,866795696,702912,300461043,90292167,-1416451182,-1700661365,-1667126523,-410342651,839207867,-1957313600,116163564,922648201]},{"sector":9,"length":512,"data":[94516933,-1929742711,1307114590,1128593359,57966592,838898665,377894610,118883148,-1949432344,521600630,371988456,1276545055,-1572944893,-1394060027,1852988692,94516933,-11961213,118904437,-1305018570,-92914939,2123041653,1049179902,-873986638,-14739763,1426418998,1575916520,-1308192933,1830717445,-92879611,-1992945805,906338870,94641804,1284032819,1229244163,-986251265,-150625738,536888132,-4652172,1229752831,922386116,94518921,-1543074762,-840370171,-92355378,-1017256565,-24422825,-890764150,1175942413,538971565,1969579069,537701421,645232188,229894316,1444814965,-2146637080,1979252796,-1608575477,1805780333,-25368571,1935613790,1610058498,-335952907,116799221,1963003194,9955587,973534774,-176879603,906834107,95565451,-1190312257,28314939,1610549022,-1922600446,993459804,1946530334,3965021,911284853,90902154,1831766582,780678661,-1977219733,317197165,1333090814,1714850102,-1948677363,-1556740281,1200292680,-1029491191,88574725,96248630,516175366,-1977219702,-952760537,385542,109852160,-544537116,907703693,221908608,-12729582,906393087,221906630,645936640,-100987590,-164193085,17644038,-164202124,34421254,-2143941260,-49464794,1715374902,509537037,1465275142,-986296239,-1106910658,1166740795,1149842950,138775297,1149837078,96248067,-1593490295,1149829960,96641287,-1962326903,348619715,548521771,76083702,512624414,-74775068]},{"sector":10,"length":512,"data":[1736067,1532365940,817758896,1560225293,1499002882,123428447,243283487,-1660416710,370022083,-2045898995,-2029681148,-2046130424,906331655,59512460,-1979267274,906214403,59639495,-1556742143,1156973500,57966598,-167729431,1971324228,10348803,-1104943098,-745743732,-1014047858,-58664141,-2130414331,-1996226357,855867166,-1994487589,786205187,-2080266358,-1959861295,-1148975217,646447996,780665724,-628227202,906063848,58670731,880344867,-661729140,1963326848,59351046,-1979466590,-167542746,48529620,129871336,-2086652260,-12740608,906458623,8587006,-1590246499,-1013120068,-387391094,1963015181,-1115101177,-11802361,-2144960458,54328579,-30014091,-352287986,1961101995,1959591459,1959591429,1962918673,393543445,-1895820824,1150228292,669565717,-282007552,-1023388184,905977320,101781123,-319690688,287736630,-921977082,905985512,1963179168,-1021660958,1812369206,988284419,922695357,-13237460,906178102,94379660,914956054,243991966,243860364,243991342,243860362,243991340,283837326,57411215,53347983,53216911,129821160,1814495030,-152566269,-351424324,-286783994,638496956,-2147072522,-466458763,88471078,2110006912,907244807,50544256,642938369,637625738,-1004139126,-165276803,1946682693,-1960901056,-1090054409,-544537766,-1441943472,-1428126120,648732806,1479,2746448,58690342,410648355,-2147138314,-2035022732,-1047919381,-924318028,1963015180]},{"sector":11,"length":512,"data":[-974432253,-1134237608,1959117575,-880089081,-2147138314,-2144973451,1946419839,2139104782,125044738,41910310,-398953207,1433534618,33834230,-2144985740,-1590294521,-952761490,-16552442,1956853503,128005635,1990407686,907078403,101138051,638088192,117655495,-1960645759,-1556740540,-1942617224,906197534,58203903,906511499,906197155,58203903,1912685288,-885856034,1347508163,380634289,1522468630,-1437029885,-1430156720,-2085896141,-2041050937,-997807392,-1413248176,1504434316,-1416451240,1607567249,-1023190341,-1320136361,235025928,-957676801,2000585526,561250304,1816036150,427098371,1444827729,-1959373050,906194454,56376960,-402099196,-1897332539,-389810176,175243559,1560725302,-117374973,-1590268949,-1959393785,906194446,229183019,-1425663178,15629,-108834187,911046401,229967559,-1590231041,-1556742025,-1590295700,-1556741270,-1590295026,-1556741272,-1590295028,-1556742029,-1590295704,-1556742027,-969538710,17676038,229613622,229679670,57581878,229745462,101163318,229876534,128005880,-1415367162,1856058893,-1448921597,-134092019,526255967,918772058,906866592,229639738,-1590288523,-896858617,-1324471498,102446605,4001203,906654976,7802427,-336067725,-389809919,208863185,-754974280,919664608,229967393,1048590019,1946160567,245446222,1789081094,211891715,1755526662,113653251,905973175,57411271,-164233215,-2147262970,1444811637,1364350726,837339443,1599756544]},{"sector":12,"length":512,"data":[-350265849,113718806,66412,-1257846986,905969677,229639878,-121374209,-9967421,28852594,920703744,229967493,-1047841420,-1389955274,100873741,322306163,-1912572650,921734106,57280142,1748929334,244004355,-372175443,1782480950,57933824,-211359279,-104597339,98083267,1962934077,-2084308990,377406,-1007091083,96607883,91544331,1913020136,113138,1912954600,-1038709782,1976699653,-174069747,113761650,-64696,-1957483541,-402277346,1918569584,-1138849511,1431326981,-1977220684,243990614,-343210558,1574775784,-745842344,-370615502,1317676548,851574276,113660397,-1340603573,276293887,-1017576845,38701862,-499203066,1300243973,-2091449339,-1070394169,-1410078255,1604977011,88471078,-402098880,-2144988585,121636173,29524825,101127811,-1581587968,-130022584,79276995,539015168,-1330992141,-947672560,-1640592630,222595845,256150443,-1413313621,-1414807501,2114373571,1357250309,55314118,91070976,-1963635736,1489538001,91565683,1954609792,839168006,-154928668,17167878,243274100,-167508490,-268045306,-1191639691,-993853433,856006206,1525414336,61884532,90900214,171668760,169507053,1372091876,98829966,191859238,1963050486,-139728860,840922457,1357132480,-387610031,1053032774,1398146462,1932137704,1499355994,-351883176,95443350,28348907,-1957655061,7661761,-1331727528,-236403966,-151358721,268790534,1397814133,702802006,1935170398,1053053160]},{"sector":13,"length":512,"data":[-970586654,-165223161,1967129925,290580488,88965158,-1976646592,1183458821,271968256,-995431592,856006206,-953227072,1342539558,-392427945,127740320,93267551,1539783656,-396863138,-1653407852,-1672064176,-1658221336,-1017619618,92942020,1048581747,-117439670,15266165,-387157250,-411896931,-1007087893,58319882,-402616855,-210632403,90900214,-2146995192,359230,110027893,-74775068,-1190835266,-1510801403,90939556,856011178,-391384128,-1416446392,-1070355566,-1414812841,98711179,88405542,-402098880,-2144989021,-1002437300,637897262,1342195338,-1000929709,637902398,-2147138058,1394481781,92937925,123570470,-1993942132,526059869,-956654872,17474054,1558710111,16443407,-1973528485,-1023314976,1053095050,-947714658,180367876,-1912112906,-1979325410,866782023,214338240,-987845824,-167110073,-986315400,-1425700346,-1423976308,-293362346,-1381653242,-1379365971,75101706,-930365389,-1416516719,-1414807501,1148777994,440896427,468681559,893749542,521543263,221906678,-1106152444,1149963579,1150003969,76196611,451616682,915093023,1149961698,1150003974,-1014256888,722781827,-165629498,65776369,-1962424445,768499,375301363,516159519,98713285,1435176075,378091016,1435174407,-108847354,641036802,1997360699,1407134511,101136127,-388396206,-1889926444,1929774854,-960275710,402868998,1927856178,-227386611,65684456,-1962548706,449217523,-1622096904,178404992,-972000256]},{"sector":14,"length":512,"data":[696838,1053054726,-2065168994,-1643683847,-1006189736,637902398,641031563,186209675,723809499,50885578,651310026,118185355,-51899421,-2028703224,148826335,91479943,-498933881,130283757,-1007138239,96212619,91430538,55248582,22734904,1913452776,1946601194,915079429,-24443464,97652363,1049229571,1053033912,-2144991774,-1928854195,1040389245,-1007155764,-390057210,57933758,-1943147769,772181699,-2015654397,-202780162,13730725,906470643,98713285,722754957,207087859,41302822,-1992948366,-134189762,-1581048042,17106372,96772864,96867971,96903424,97125947,259457456,-996078734,-939115771,1996599301,113259010,1929338344,773754527,-202780413,13730725,906470643,98705093,1074087926,1424492405,89096206,343379264,992411179,91357822,1830717750,521598976,1946613443,645201669,-33197152,1178216128,-1961331196,-402277346,343082972,1913122536,-1136752369,-1173946619,-1577013243,-1007155853,1397933049,71731750,-527777538,-779369942,-402652999,930219975,-712980478,1942633216,1136953907,-344655045,-1138849461,1389439749,-148455029,915079782,-972880456,1476769955,31075162,1527101982,-1962928152,-2084308770,-1007090492,-517289429,646499582,-896858765,642893803,1241861770,113718858,1543,208980234,-772215502,382809810,-152959481,52876042,-2093610154,395030,907985753,101267199,-401671989,57933812,1392549097,954784563,-1774286585,-512599291]},{"sector":15,"length":512,"data":[-745843887,492735270,1996684163,1187456521,-1157627363,641925121,1997364795,118614110,-227201166,492734758,113298,1913083624,2122524192,74776351,525270822,-1948612718,121759938,-1953297550,-1161043245,887685119,1918458631,114944140,971540338,-2021494272,1962871775,642958081,100685450,94256836,190679334,895322406,650336775,35487363,-1168405643,535363583,-1054124032,-973076504,17173254,1381221369,-1948568745,-402287082,1516177123,-768359589,1913030376,-1960676316,-790080825,426924550,192270859,528384806,637826303,-1960884481,91506904,1913015272,1183459029,105993728,192538709,1582892893,105769155,-1957430670,103737567,-1947110565,921627615,55445190,-1462619648,637826306,1191183814,-1476392775,548442884,-117242764,-1426863821,-1007287375,50623496,-204917767,-1414819414,-166662269,158597571,-402616600,74776872,8775750,1979774696,977043486,742791541,1343190592,1478194408,-2143942029,436604990,-5111180,1313818282,571719,-2147473176,360001084,116799046,1946224146,45720582,-1190925568,350748675,918718976,101787265,63176447,-389853447,-143261533,10348622,-164230027,-16560634,540809588,-303884939,1965702217,-213929980,1060940458,-897523851,-1327830271,1319826208,-1578586941,1325036544,113653443,369165134,88850183,539015255,-1442839111,-1070421005,1605030026,922712808,88817280,920221157,88803014,1718010629,1711695462,1717986918,1717986918]}]],[[{"sector":1,"length":512,"data":[-151493018,1342177279,-37132,1157627903,-3004,-1,-1,1879048191,-154,-1,-1,-1,-1152144140,1631324977,2050757746,539755127,175276092,773750828,1038556814,-397402153,27787288,1405311832,-397353749,44564492,-397360296,78118916,2117911384,-1152182669,-388984878,1935398702,-790048760,-790048536,-1022417688,1019416496,1007056431,1555088220,-1006930749,4327,4347,4367,557744182,24379651,1392923075,-745777634,-611400818,-1811495370,-969538301,235115014,-1794717898,-1157627901,-986315886,-402640330,-164170437,33789446,-1070462860,123412318,-1607023783,54264735,-969477515,67343366,-1845049802,-2009721341,906206990,60098247,-952762368,17015814,-184424448,123412318,13691225,158666812,-1874952138,108265485,1946369219,-1511406847,-2143904768,219198,-2143935628,204862,-13231243,906188854,303120000,-855345920,772139816,-1870913793,1476824886,-389833469,861142854,-465311525,-1259113893,-221517823,322748276,-2143902091,888894,-466440331,-336414488,385234506,-1152187650,451411972,-898475036,119428870,-165216629,1946682949,649613336,1479527697,-969535629,196102,287619152,-346542131,1048589840,1962935038,-204085243,-924318741,-1022926861,-1258331416,-228071423,861140596,-472913701,854356571,-229119772,-1653338052,-545979588,302446134,141885958,-1310194768,-1036064573,1048583958,1946157911,-536614909]},{"sector":2,"length":512,"data":[-2045341958,-2077848827,-1335826427,-1909580281,-969021666,205062,52430534,841386240,839287555,1048576515,520098321,-839383691,-133764317,1948188462,-1940850032,512634584,178470375,983783437,995662851,1963143718,54173962,218766990,-2085700119,27787972,512683892,12061962,-1909580212,-969021666,-16560890,-1092490465,-1959901320,776440606,1038554766,-402153284,-622133246,521537302,60032710,-1845049848,113710595,917,61087369,-1996254533,-1945919434,-989617650,-402640330,-953748649,-1140613114,113714691,66468,1048590019,1962935072,281837579,-33098186,58064642,909692032,55256712,-2113500106,780744197,-2125068928,-1946091545,6613213,-2120760482,-2097086489,175440127,1183458896,581056000,-1054124029,642961411,1510106871,-466429949,106314534,-989980046,290863910,-953808781,-57530,-989984021,190200614,-989986190,171369680,906327334,55256586,4622886,-2113500106,780744197,-1004141184,-980675722,-2097047320,58068223,905972927,52444800,-1341885440,913107715,92808841,-2093611242,-16405954,1444809844,-1372142282,-16464379,922361694,52430590,554630710,116798979,1946289654,-352079868,378418729,-1960442490,637895718,303120000,-855345920,772139812,-1871175937,-2077849306,378283525,-980679290,-1959340658,906332198,52496126,537314870,922419203,92286660,1047658812,54281844,-164213643,134433542,61883508,-167315914,91554309,1241972278]},{"sector":3,"length":512,"data":[113653251,922682146,95043203,-1023314433,911234590,906341025,95303365,1582826632,-164183265,537086726,-705968012,1258747446,-1099689981,521587691,56049280,-402426880,1048632769,1962935129,2080818857,-1070464507,504215529,718111412,1493616182,582549251,-1339044591,-1203574750,911410777,53485195,379706254,1958951680,1977170712,-2143924204,50691134,-1175976332,-648681459,805736246,-1340140029,-1128077057,-402277656,1441316060,113703671,-973077727,-16571898,56166086,-2147053824,-2113499387,807308805,806784515,774277888,-1381701632,-661893113,-417427922,218800957,92578648,-1621600168,35971206,-11472204,-16416202,-1593475018,512624004,1355746570,755940280,773721771,1038556814,-947128261,-2054551949,-466481493,520299683,1539200600,-1354962930,-2128166050,267783550,-75429005,74715120,267975553,-117734461,1977289667,-2126607609,-1006695680,224279334,-588765577,-1960939008,638481725,-2129824117,1913648894,-335607028,-772812532,-772812305,-1605137,-1021372913,524732198,-1269760001,113653384,-1089993909,-941092865,-134005507,1492713845,1977289667,-2129229563,-1863793920,-1949142528,1359705141,-489487183,266765145,-2128210709,267783550,-427750797,-494800896,48959487,-234097101,-986303095,-167386570,1967129924,93972487,1074089088,2017361974,521535493,1397796468,93233489,98836110,-2011904381,1344214564,93460107,101127817,93329035,838861246,56486080,-987991464]},{"sector":4,"length":512,"data":[-167386562,1967129925,89516039,1074089344,1326761859,41812774,385353096,1482381599,2013710019,1397751813,-1014279599,226394406,41095158,-13375279,-15482109,38701862,33618305,-796192651,33546881,-271465334,-466429744,-678755093,52883959,1346963014,-796176046,101123783,-1070465024,-402652738,1482228455,-984124838,-1928994250,-134015876,930464059,521536906,91752190,-1996124510,-955936746,365062,113721856,1543,29278258,45213696,918889586,2089616866,369461780,93299231,1510313663,-1070376103,226394406,41095158,27837323,1499120472,650336347,638021060,-1577040246,669517174,7989421,643237571,642084292,-1577040246,333972854,6678701,-395180193,-1070385035,243932744,-315490233,1165346086,1010746422,1173759488,410353732,1165310758,-611577227,1197292326,-2061104523,74729797,1229293862,-497498237,784605148,-1007155830,524732198,-410910721,113639679,-1273494709,91660314,-990120472,1006996014,-117279485,-1340139837,1720329743,56271617,56362694,1560725249,637534211,-1575532918,503710567,637754043,118716101,384730856,1049298719,-16055459,-466441608,409372198,939882144,1963630854,-1593391608,-1444282614,1747323392,-352159485,-130255771,643106499,638807748,134563574,645138269,521557790,55248582,1053034008,109839209,-1996029142,-1207752642,113639439,-402586251,526383888,494142268,922709737,7421571,-400591872,1161298168,-166824700]},{"sector":5,"length":512,"data":[1950352709,-132180472,-115403069,910003139,247152185,-953752459,-57530,939578344,276104261,1074087414,1170705269,-400490748,48955602,993410443,1963899710,1048786658,1946157175,104478221,108334512,-1341733322,-987300083,1173754750,276111365,45817622,-53614592,1053139826,334169570,-768387834,118917430,8054790,1560430056,-2082115065,-1942612793,369322526,1748928799,639021059,-1560189302,113640282,-956169380,220422,1183458816,57123351,-14279162,-14281354,1522209654,119496195,132993768,1049304854,-16055459,-1977210504,918886214,-953810068,7494,917839848,57163461,138840614,653673864,-1995487605,521598789,-373047246,-986251702,905997630,1967815,-1992884225,-1022444738,48772607,1354981120,93017683,1830718262,1958951680,1979398944,1839412742,-1961432320,76087925,38046102,-1996327029,41912636,-1996327543,1482382877,-16482944,-1992948363,-1023382210,175503163,-645115311,-902053236,868440410,93627382,4622886,1982149,118393654,-31994,1429934708,990737670,141887565,1963214138,12445955,1006596072,225773141,1963478331,71645704,-1914109067,910002944,247152187,1448207733,-402238126,1560740122,-1892262310,1929774854,10414339,838965224,641218276,1249183124,-1189847667,1465253889,-2143943086,31038,1394476916,2048836918,1962281728,-597956601,99287732,-1260617496,-2143904768,31038,-1960439436,-372178354,1609796509,-207815673]},{"sector":6,"length":512,"data":[-1658911067,1583307271,-1959376782,-1996093682,1435043917,225282310,638535052,-1996470646,1170605125,-1070399222,192214539,138840614,638207368,-1995487605,-823653563,512505598,-1942616604,905977886,98713225,507414838,521598976,-23402301,285668918,141886470,1899922230,594804736,-1979699992,943064165,1946362406,116798984,1946420753,71681797,1032519935,-1153549514,383612174,1245610015,24444931,-1262224957,73742591,-533023116,1161430644,-1401554940,1074087414,-11491724,199754869,108156928,-1983912832,-1017641915,-2029977672,-12843963,-990448268,-386894784,976617621,1946362374,-1348323610,225297421,-1961599603,1300956757,243873288,1300891143,921514506,55248582,147125784,-2143943052,537086734,1460356491,1394540339,-1185918633,1381171201,1048589854,1946157177,-1962520296,1317742323,921293058,8011460,-201531509,119473829,-611194791,1482381855,24272729,-489684153,186604487,-117344769,642827103,906118795,638430627,905987722,1477291938,117388995,918749297,7421571,906327040,7409407,918565827,53741191,917017321,8718022,1963277312,79255813,-1957342910,502039532,343278908,587646518,28311811,-379722357,1424533620,68479256,-395050436,-462158788,-294386372,-1929617783,1183383110,-96024837,-430536448,-1947705716,-1267734286,921325193,906166944,838894754,-2143922752,16811534,-1676457496,-2044297162,1570635264,1183428210,853052408,-983111488,-1024063630]},{"sector":7,"length":512,"data":[-1341492096,13428994,-941028688,-297351424,1187446784,-167771918,1963129670,-59325100,-1073019765,-1909060491,-1593626594,-1073020884,-1064419468,12189491,-222285184,1237939630,1974388344,1569544182,-362937583,-338492239,106620934,41113887,-1064405781,871515785,-201421834,112804,-428423765,-202748277,-1189144924,-927334374,-400685553,119473297,-1073000334,440224884,-149326592,-15739898,-972786177,-1577059770,1295847368,1023964250,57953626,-1593706775,95489996,103538899,1183387600,-79235340,-1001819134,-1960379266,-330921723,38112038,-369736055,145752291,196084459,-386376053,-1645738940,-397061964,1482492521,922663401,906166944,8658570,35555382,1086584323,1084806261,-1590243212,703266954,14894790,265698947,-2095942400,1038398,1191054197,267402723,268764019,34010624,91521027,50466432,9085760,520093627,520452072,83921569,-75300848,1000632849,-157255741,1979710022,-771357928,999584271,730888131,51368454,1913639942,1992506116,516131586,1586092171,88008944,-385649889,243990385,243794052,2122318594,309592291,268499841,78711923,-343809069,512295168,1183387608,1050094,-375050,1174604148,-196727824,-1996484563,1183446598,-329872404,-1947969911,1376768022,-489487183,-754142888,-1949791256,840890462,183888064,-385649889,1586233086,16482804,-1157402096,1579749344,78730228,-880024621,-329347554,-397290957,525927193,-935638926,721974363]},{"sector":8,"length":512,"data":[16351688,20673282,1190653022,1979711476,-162624571,51369633,264414145,-1559242591,113512384,-995946532,62950415,264676289,378259763,1586171872,-1070391560,520783592,-1914109069,-837383170,-1095085553,25999619,45869086,-361604601,-1090493511,1988821950,1959922678,499459606,1174657164,30969572,80184119,116056650,114223903,1183732048,-962513180,244004367,-13234236,907153942,325195519,-385394599,837353694,-79235330,-986876926,-1985086346,-4658106,912518143,906166944,8658570,35555382,1086584323,1084807285,1183569012,-388287506,250282618,34010678,108298243,34504758,-4505597,63629567,-948643061,1408261769,1526972392,99501705,1183383568,-2118110228,1930428667,-1312584946,1038144260,-1552547328,755040301,-1957691136,-919340962,-1070345845,1493804776,871128718,-420982318,57892353,1006478313,-385649210,-1976107143,906003486,50470536,50022134,1183527541,1060332,264676150,-1006188746,-2130640881,-2097086778,74776318,16828033,-1070167754,-1029491185,-942109169,905969668,6362879,-386376053,-397082208,-396556343,1190527395,980681467,-402536472,-2143944229,1064766,106309236,1077330998,1015031312,907113472,53479054,-1120469194,110044686,116064320,1057408566,1577517072,-379722357,1451992139,114414,200427147,1208317120,344578190,1223575179,344578190,146736926,24045568,1017927249,-1442286546,1930493827,854843906,285180864,1588199795]},{"sector":9,"length":512,"data":[23717977,-260666542,-1192693245,1996446382,110044914,-13238228,638500150,4195983,519861957,108315990,1358957753,-1979687745,866448156,1504422848,1444814686,-1979026235,-1415253188,-987799893,-914357644,-201749632,-1966473564,-385928505,41093733,-1014302326,1525209906,-1979550966,-1573459751,-15436545,1962873460,309657364,168202022,110044672,-1070399476,110090382,110035080,-952762230,-2147275770,512636416,-1942617296,-167563746,1946286918,918894119,2126778304,1569466108,-1991356912,1971922460,113587726,-1943662652,-1993993123,-443870651,-1555699363,-1003043530,1053046287,-1064562752,289308726,443809810,512634398,243285479,-1996226426,-1946131690,-1202708520,-1940909803,922405824,52496070,-1949266432,1444871143,-628178290,-389299317,1586167820,1105745400,216554759,726909696,-1338578725,1526730984,-1959373885,-402444258,1172832261,-1664918608,-230257840,-1962931736,65596998,-1013098496,-76234741,-661774776,73353,1992672031,-1395749914,-109823428,-176923588,-210436036,-242749141,-952743485,101629190,1053046294,-1064566691,980731659,168135206,909341888,101596809,477479226,1347834183,-291837780,-502368850,-1960421129,-1113377275,-346464754,1499355153,238979894,65286662,63407096,1355007723,2080818742,-1909062907,-2096943098,57870074,-1962932550,-402238502,1528758841,-661911694,44286723,652957696,-2093940552,-623833150,-355269711,849290729,646330084,-469105843,2080818742]},{"sector":10,"length":512,"data":[108265477,2080818742,-1779957499,922695328,1150223152,839445268,113653440,905971068,92022410,53781302,-1902086168,-1070394276,180273294,8961792,-1515870811,317302181,-1590246414,12517412,3205120,520502642,73273,1049166965,1031798785,-402295718,-387252205,9216310,1962934077,1004506142,-350718984,64523473,1073742598,-2144943986,125062461,1513979942,-1007091340,1952071040,-1971974,958854514,1962934590,244000494,21037059,637534990,227020170,-1444356373,614545070,-1901906432,116798976,1958740738,116798992,1946222729,-1935591928,-1901906432,-1950338304,1084438264,1117992451,1151546883,-1590276093,-1813512050,104231679,20855071,912880640,8980214,907834369,50464502,907310208,906006177,2360891,-661911179,-1945748682,-2147226880,242506301,1946113768,1441290442,-385371986,-2093571856,213054,-2065104012,614544896,104543744,242483342,34010678,108347395,9347894,1374196971,1552505759,-1373444094,-873789264,1929326056,51284928,-902080000,-779419018,2010725202,1048786562,1962935104,512505349,-2093612224,213566,906366580,54658702,51263782,91621120,1109298230,512505347,1391002436,512636671,243991364,-886374397,1282726540,-1030827773,-338065591,919155502,50466442,-12590719,1996618115,512636632,91358016,1109298742,51284739,-1932842240,1959824344,1086522139,-1991655282,637535006,200329,495340979,639469606,81545,-1590240626]},{"sector":11,"length":512,"data":[27460400,1087933440,-1385240485,-392166679,12561736,1220578304,1946051048,-16586493,1743313038,-1946782978,1358955278,-1518937797,-385934359,-164188892,67143174,-2143941004,34110,-969537931,16811270,-1946156865,669534400,638219006,81545,-340976664,-1391007573,-1310127696,1958742687,1946237984,1946303524,1946369074,113653302,-1341848797,920906497,52627142,-351817723,44054260,-337366525,-478063670,-75235521,-646489342,35555382,921496323,604015008,922151681,9178763,1962932611,33260480,477365362,-164186133,16812294,703074420,-961252864,1509949446,-1993965514,-773063168,-1996032458,276103424,1912606696,444058,-2143924992,16812302,911271147,-1912593247,654259136,1952071040,-388461031,678624619,-1996032458,108331264,1513979942,-1053097237,-164173963,16812294,-661779595,1929202408,1975597831,-1017579517,465787129,195390885,-1519475242,-1515149915,-1514232393,-1506040297,-1506040261,121415241,154928242,-225764746,907173003,271582966,906327297,54402697,907304075,54271625,423034670,922693285,-397368041,-969495832,16982790,-1914109520,-617364578,-974643434,736646059,639857153,1946172803,1032005145,638809343,345591,-1995737728,-1945788866,-402284538,1130088940,-1175922709,1290361771,520042142,41025700,-1158941461,-1675690186,921955072,10493695,-13177621,1912648734,-1665472279,-1996333943,1150028412,72124688,509138667,-1666783146,1223165791]},{"sector":12,"length":512,"data":[112809642,1202057984,1587914055,1552614539,72125186,-1962519413,1150159484,141885198,1577868430,-333542346,512308741,-969538070,-16420346,379279849,52477703,-1173705543,-819264710,-372123861,-788475517,-1672288031,-1995553652,1418266748,1352067846,-854514248,41048879,-1310093589,906267549,-1962728285,-1556739516,1149961000,715339278,38046467,52863798,906249355,52635272,109981379,-1910096409,637743110,3284539,112198770,-1004092423,50345022,-521616389,653947647,1979661696,-351883260,-1977199641,-385928675,-1017446398,-419000786,1053042237,992346154,242353245,73214758,-2093104090,-294256641,-1202666503,-470417349,-2091321341,868419271,-6690597,-2144990862,91553597,-1326257341,860930820,-1142402085,997350399,4031270,-2094654092,57999165,921365315,637746849,1966032185,1017198323,1161373187,652834097,-64057,54436150,793086246,54305078,826640678,1489238104,-389872464,728891995,1049173782,109839774,-2094660192,175374653,38111782,1883041828,552077172,96872191,-958732033,1051985266,-375613719,686333084,370373122,-1640068833,-1610183675,-938022907,1756628082,-471080213,-75240141,-1157401836,-1909063660,637743110,3280523,1349835067,29172343,512632320,-208994250,1015073579,1178564095,-75237150,-1123453164,415170562,501961472,1962933123,-2091648899,78712771,-478028845,-397074433,1918761668,868257380,512636671,-973667536,175374339,183193945]},{"sector":13,"length":512,"data":[78680811,244027627,-779419598,3421893,1364829427,-5191125,-1909019917,-2096943074,13374,508890485,906399238,-66852864,-144892153,1946157765,872859400,-352315392,872859398,-1946157056,-1895811578,-352308730,145775535,28356331,-37815573,-30545807,-1977218958,21096453,-320142733,-1640068810,109852165,-165280352,1948255045,243283462,906102262,53229311,775356214,1370115,-687923434,53347983,53216911,-890568077,-1410612853,-1320035701,1508627204,-1023158132,-494675826,378091023,-1942617300,-1023201762,-344707906,14805144,-1628765581,175505980,587646518,28311811,20746475,460786290,357892902,390927142,647152011,638928265,-401123959,1418303916,648538886,-2147072522,52824693,321261909,-588573875,54916646,653227392,620905867,1077739760,1023767552,-562757584,-854515272,-339709137,1929526443,7727168,-1073048974,653923701,638406027,-82881141,-1986438168,1418265676,-400495866,-1993955320,-1993994931,-1070395563,-937492682,1703093760,-2128167163,1073743181,-341308440,113653384,-1342110941,-1951339775,-42997565,1460017010,-393011362,225574943,-390088216,-1977156357,-350451683,1407118294,-388396207,1482423721,-335747352,-50403113,911219826,271582966,855929857,906554304,637746849,1479492923,-1329397387,1019476230,1344697607,1592312458,410146817,4553859,121377396,1283524469,-348127165,1130660121,317439999,-352317512,1946696720,515395798,1529859345]},{"sector":14,"length":512,"data":[216597362,-1710036582,641123638,-97536,70912372,1959069300,-101520615,-1003073341,637903422,4408775,910175232,4589112,1346909810,984891652,637896998,1543652807,1300243968,-1070907324,1229293862,1262848294,-1993997648,509103941,-5445546,-1993996174,-1943648907,526272349,743490392,275929089,87829876,-969524106,16982790,-2048196176,-91551970,235834166,-1743329280,369380489,50707999,-218099783,-1430244444,916026089,921225,118944395,906167743,50595582,-1202658581,801968415,-352160934,-388109375,-1519255526,-986294754,-150625738,536888132,-1787551906,268879414,-1007087866,91602954,53911606,1444825152,587646518,-164232701,-16420346,105914740,113718871,83035554,-1542026186,-398392315,-148439277,1073759045,1951926111,-400954610,124911641,4408567,-1341295296,279066127,113653254,-117374173,918757214,4654650,-1007091086,-986296237,-1291830218,65271384,914962160,-1942616670,1476764702,1438906459,-326898549,101127696,-260141737,1812383286,-969539579,355590,1957674472,-12285427,91071030,1812383286,-391315707,712179542,-1190954264,-1403650037,-1461397528,-501517304,-544514314,1605628392,-1927342585,1065414774,1426551808,1560284904,-1325857933,1575324419,-339725629,922726402,-1341961054,1906456319,113653253,922682746,95567497,-1241069770,385875717,-2035446521,116798976,1962870130,50522165,1929309672,51505194,-402563699,-1133379272,915087126]},{"sector":15,"length":512,"data":[116786610,1962870129,37152771,1053040406,1172833698,-355604315,-1331339288,-952712445,-16408058,287553791,695414733,1342357480,1390937227,-387938588,527819853,460709946,-391338664,-1073028116,988286580,-1428190236,-571936651,-1021372928,1492839338,1962949760,-117264380,-397061949,1482489888,-969531533,-16420346,922641896,91358918,42330112,-391499856,385393555,669631263,-30414634,-177077328,1460033054,1607818216,-1340121593,518418947,918894166,-544537182,-1924178941,-402618707,-1336958094,1161307740,-1442745089,-400597425,292880593,276086794,-391316597,-93002827,1958742606,-1436766205,1912624104,-1960896856,-989482434,-402283978,343212575,-385923958,208987025,4030502,910624372,95829641,915087126,-919403086,91293430,-402426625,521535788,94518980,1128658726,225804288,837290979,-373692252,-1331409944,-391331069,125166417,427031867,1324608426,70828083,-2144986507,1966800765,-1436766203,-123026294,30337219,41157552,-1007091024,1912623592,1032005370,638088238,774782337,-397473163,61866027,49014130,384366851,-1395493632,1977811176,1945975734,-391337272,-93003019,-1968575666,1958742532,-488118078,1929067459,-1977200885,-488904699,-1007094923,-1007090768,504294531,1431766614,783608971,-1002788180,-823650187,-1408535297,1975794346,-3938217,-1070443915,108431786,1988839403,-505288698,1946580539,116799039,1979647346,31621136,2048262198,1965915909,1959922180]}],[{"sector":1,"length":512,"data":[108431663,1270750998,176065797,-1316951977,-1575098273,38667081,1929399867,-990409973,65536638,200013986,16443641,58000048,1560523001,526255967,247759775,1235350248,-164183138,-16754170,-13211020,906338870,94648063,123688478,-689389517,-28609796,1128593344,-227270656,10610775,-346094732,1031808745,906523904,55314166,-1947240961,1595868919,906002664,184923809,50886848,918956999,-2147109213,57999420,-391488336,-998006394,29982724,-1892283157,906339334,94504591,-986265293,-1006263754,-1992931972,906332734,93062796,106307267,380981591,-1090338328,-521665602,123689468,57876318,-1097517079,521536446,-375308824,-1070426845,1946172544,24936659,-1379044038,1613504524,-5192075,79756995,-1422216128,-1590695741,1973875529,1149915383,-513021697,-1977219468,-25827323,-391330984,-92930449,-1008641816,381019186,-1191027224,-397383072,-1041718756,-1573459721,-1992944526,906340894,94256777,-1610183626,-141039611,-1813445773,1049179648,-1942616658,906342406,95166089,-1440838858,495461893,-1094716789,1021858051,-986293252,1912970806,1048589834,1962870138,-352145404,-919381936,-1996338039,-75418804,158689888,91521192,12156708,503731984,-396405241,1594342074,-11460842,918903251,443680158,66759,906316809,906341537,12590847,-1442396362,-369099003,1463653431,-352094976,80173841,-986316800,-972706250,49020676,-952739333,-16406010,1048786687,1965359908]},{"sector":2,"length":512,"data":[-1809913597,1368658921,912864441,91031238,-14161658,1342422719,-386757807,1482292127,521548658,91897472,-970295809,369454342,192020780,113645172,-1342110941,-389682431,326285304,-1986896920,-1947532220,1256767883,-352030024,-352079627,-225750556,-402407745,1918499675,1048590064,1979647354,-1256253938,18933766,1924376296,-1327961340,1373170435,520507934,1052768139,-80615420,-1305018570,110048773,526255540,918188633,91897472,1373140479,-402407745,1918499603,-2145446164,-16418242,922731890,922682786,-1094777436,839325187,-93591360,719851634,-33262433,-2081231936,279971012,-1892244501,906339334,94504591,380968726,-402609688,-1921862385,-1185839125,317286915,67418623,609272019,-1438579697,1976434264,-1957313549,183272428,-2571785,95946100,-1989285120,1451882062,-94466824,519986828,-1946514681,198834127,-1190955575,-1070333953,642756338,-385923702,57990981,-1985323856,521600126,-1748441003,-58801059,-1595358837,-389903361,-1070399589,-128531030,1442205323,1577027560,1346116467,87873652,-2093608331,1090724926,-2093610380,1392714814,-1024785804,1575324665,-2132212878,-1836652142,1913058870,41287429,-2009674358,-1023054578,-199849674,113718789,1527,-33504521,-494254731,1946221184,266502206,1996683904,-253460426,1997601920,109852206,-1992948229,906361150,99890943,-49901770,243873285,-1992948225,906363166,100998796,53905718,-1948873978,-1341396029,1502800641]},{"sector":3,"length":512,"data":[-351424418,-1007172616,108273664,-166821834,-2143944187,17167886,-198803146,906034949,99892867,-400919280,-646775096,-163676106,175374341,-200882378,-385875451,-790036349,116864657,67060,-1159190667,917926653,100023936,921138176,99878599,-164233214,67499526,-952738955,50721798,-112006400,116799171,1962870130,-389182974,846462132,-163676106,-411828219,1962934845,116864738,1050100,1592459893,-15824074,918894085,-695532029,1929208040,113718861,132596,-2143940629,390718,-952756876,17167366,-571977728,-190761329,71600389,-385578664,1348178239,-197229770,208994821,53921078,-401292026,65797491,1492410600,45615339,-1207702784,568918017,1996569745,-1444391156,1594913779,300484272,113653393,-1342110941,-1946948863,61455832,-1996466551,-1990655410,1988691022,112902,-712302826,41222568,-165274389,1954547269,285915143,82522061,11280127,-907345293,-385479519,-165244733,1954547269,285915143,-387239987,11017983,512484075,1347616794,11542271,125000536,1268571624,-1007030155,1364657694,-973069896,402868998,92942020,-1962933825,1451960015,-547166197,520576857,-613154500,773768185,1038556814,50544256,-3989760,-1023372258,-967375330,357638,55248582,-1976646632,114437,-1960390773,703074646,520576991,-613154500,520078329,1371734168,1707659,94256836,-1993949133,-397331643,1935278013,-1671632886,-1209472286,1507947519,-135099453]},{"sector":4,"length":512,"data":[66116,1149966452,1049864,1284227214,205818634,303497014,385824274,1157043042,1962934786,-984211944,753402996,-314709779,1150164830,-1113508344,1084433934,1048589824,1946161681,138709792,-2045870026,1157039104,1962934530,-661774841,520476648,-2063139274,1671640576,-1010814208,1612834042,1139195955,246421131,-1070385178,537916134,-1071509568,1364223722,-1900011505,1483102675,-863283053,-841085768,-1995929,-1957129245,-1553584436,1714290688,13961,1714348427,771752097,3574630,-85721344,213406034,-14260514,1532647710,1716545274,1716610643,1717200466,1717266009,106978136,47134,119527566,106980961,1711742750,-1269120159,-1268973565,2097156,308332,636016,-1265172352,-1264975869,8388615,308406,242878,-2128215936,-1962934210,639791873,802435,1343911200,637540536,1574457,958795381,1962941446,104408583,41156644,1409074008,1465274961,-2091573754,-326433044,-1591337202,1183383552,27191296,12132725,38701381,537300518,-1270301184,-402650438,242483568,-1162587458,1709703176,-385649663,2122907902,8290564,1215496573,-390804805,1081213179,-1157723305,-2144993277,1968308093,-1102950654,112833633,17491968,2105550431,91576831,-12204506,71732112,71665958,-1268269481,-402651719,-2091187968,99092675,75401473,-390802245,1114767539,1459910399,79363723,-1267089920,-402649159,-2090925880,1586169287,-571976956,-1266106880,-402649159,1583284424]},{"sector":5,"length":512,"data":[637814411,638010505,84231561,-1993998332,-1993994940,1182993221,-558168060,6940852,-947704718,-1581361655,244404,1577104104,-1957225355,244478,-1179343682,1911029769,62545664,-1263682048,-402650695,2122383460,1979803648,-1259816153,1912614632,-24422625,-1107295302,79279297,4646912,73304927,-1107271704,96056517,4909056,1560724611,1583286047,1482381658,38702019,1468741515,4909058,-1957225867,1468728439,4319238,-1962052258,1925589959,138885895,-1007156617,-1957182471,434635870,714752,-388365477,2122907664,-1957575932,-201587586,2122930596,-374291708,734235562,142791,12567467,-903130878,1364678209,-1493972341,1952341849,-236828925,-1960393895,-1291834826,63341322,1962939112,911375,-2144990603,74788412,125006,-2131495229,642658500,-1274977224,-1945713920,-1899877416,-1077899560,-1185480689,-5242864,-1958236429,727212023,-1178562878,-963968508,-388771593,-628354188,737201795,-150441008,736285658,-1898826766,519538650,-33087738,-1394903603,-1951576430,-1031125304,-1338180060,-206830219,1007086506,-210995790,27824804,-1869563532,-661863540,-661732821,264224910,1095936,-1359741008,-1946711225,-1899877437,1032128,-963967823,-388771593,-628356748,-628174805,-1947152765,-741279801,-1945537304,-1898959934,-254835774,-661863540,-1898410424,1032128,-1342172999,1202648063,-1014237301,-1077899704,78708751,-789068149,175433939,-802432372,-830350706,-947126288]},{"sector":6,"length":512,"data":[-388771593,-1031009676,-1030827989,-995455,-661863540,-1898410424,1032128,-1342172999,1202648063,-1014237301,-1077899704,78708751,-789068149,158656723,-802432372,-830219634,-137917456,1961415632,734170121,-2084401456,-1968377649,-1951576368,-1031125304,-1338180060,-206829963,-1878529110,1802875452,-1031101197,115868072,385824256,1405293076,-75381876,41291775,102679387,1465274704,1929570691,12970243,-1064371829,-2025944778,1031874048,57950802,234926825,1825014559,1962980072,-1217872348,-2025944266,684163840,-1157610311,1320681614,11397359,46008434,6732215,-2065062669,7782144,1962968808,-1213415868,-1191169345,-1933901756,2024978432,1929414376,-1213415919,-1157610311,1203241089,7727132,46028658,244151,-1866947341,-964449464,1358082,-2085903117,1270416070,-341511424,7651128,1962949352,-1208959440,-1191169345,-1950678974,1323218944,1912617704,-1224557028,-218102855,-1438076764,-1191000445,-1527578604,46564266,-218084423,1499357092,1528760152,-1204633917,-218095431,638153894,1459584384,-1494023563,-1494001725,-1959388555,-1962899650,869829579,84092608,-503134333,-1019518984,-1007156619,50169,32,65600,1052299,-385949040,1052299,-51839262,1381061456,503732054,234883775,-1183400417,-218101063,642413990,1023410337,1097990492,1996586813,-48306116,-1960429707,-2130700786,637665513,2098830,-1162248002,-303562744,-1106545412,263895432,-52238336,-1699736715]},{"sector":7,"length":512,"data":[303478954,-1412395861,-377238901,-208621562,1594302378,1532582494,646562648,244056392,113705292,16777546,18026124,-1107222344,1048641792,1396900123,1048653173,1346634099,1048651125,-200081082,1048649077,-2147483356,118363509,-1095107905,414777717,1973875456,113653254,-1022754683,83914959,-657391601,-388896559,-87824175,508973820,-1195144105,252034921,-1039104,-930287477,-1909532530,649742598,198286,1790574387,1604645651,106585631,-1994455266,-1995423682,772817438,1038556812,1981713454,512503440,-1943105414,-1987019234,-1996274154,-1945795546,-1945795050,-1127182632,113707296,-1574890990,303302343,113746465,-1574895519,1006846696,-1259161598,565707635,325231522,-1432106868,1241943050,1211533568,-232879104,129586703,267828736,-964486004,-1174806010,-306315259,-2095281135,-102627642,505349726,-661733325,-1548072776,-930348888,520137379,1442985960,-759232746,243712,-1412890965,-1330986958,-963925053,-1411871573,-1414807501,-1414838101,-2085901504,-964491321,309514,61974003,-1426906960,72122462,914961923,-1942618062,-989842402,32434228,134497526,-1992886924,905981494,3153548,907242173,2502281,671517750,-2093693696,2071265278,-150878232,-2147482556,-1976111243,839083790,172787949,1175882294,922104320,4591104,-986294754,-1962709986,641942327,637556360,1392604808,367546961,1183524498,104543746,74842166,3580726,554026379,1183393280,1183589913,1187391003]},{"sector":8,"length":512,"data":[1499135768,1591250011,1988699679,1586243091,-27910635,-1899823418,566592472,526299618,-2080407831,1187455469,-939524327,-58554,371312003,-389706977,-628294095,263966723,1175358208,-1575056381,-1432268285,-943682038,-16078330,33220863,-1946010904,1510648326,-661733325,-1866481522,-1432275456,38111498,-956267841,1459617798,8437650,-1186934088,-2085945335,-85851449,-1190869117,-2085945338,-85851449,-1190606973,-2085945330,-85851449,12322503,-1590278979,-1096611158,-1073297920,113764864,1087570113,8390343,113721548,1089994884,8914631,378077440,113705098,1122304148,9963207,113722220,-1580990308,118890262,378094162,-13434064,-1070349682,-218070855,54960555,378692840,1621791,-1431584717,297402288,380302080,740199431,220773888,105155622,38046758,973507622,7192064,943098150,378100224,-1993997522,-1912593386,444122,113728000,1,54960438,-1555512789,-759234557,243712,220774315,-1160081854,45727141,-521567817,-1169639363,910024749,92546699,-2045342154,-969487611,436427270,1527170614,-969539581,220166,1560725302,100663299,1522225235,-402188797,1532545143,-1202666745,801981184,494239804,102650451,-851242824,512634415,512310759,109842787,133697893,1482381855,-1017579069,-1909580288,-398596322,3997895,776828160,-1113309568,-1945602816,7530712,-1946090520,274907072,503318969,46629639,1039852203,762507264,1929355240,24307752]},{"sector":9,"length":512,"pattern":0,"data":[303105734,302434049,-944221678,302014726,1697978,225771836,303302343,99334543,770228364,113651200,520207780,861117643,1354773467,626564253,4059136,-1207012112,-1655640064,2447516,1124168944,1539541827,856081309,-1077834039,-1557790590,45678594,-947672320,-2080710142,-2085944121,79234759,-947672320,-2080710142,112788679,-947672320,-2080710142,247007431,-947672320,653976066,117490595,1342591939,119455884,-1962897217,-1190483426,-947716081,-294142,992347508,-1425967843,717156578,1331465234,-1940628340,1552701788,-2137224098,1667009536,-2096287554,-16078274,243992948,1278937770,-1996262140,123208772,856081243,650153664,1735,-2134962038,282769408,-1426062663,-503134333,80184314,113738667,-1426062151,-503134333,80184314,-1426061639,-503134333,147293178,-1426059591,-503134333,113714938,281411772,-1073297882,-953751040,-805256954,113714704,278134912,-2079930586,638623232,9701063,-953806680,-1308583930,113714704,280756380,277529351,278794388,280105128,281415868,1448087760,-1195425090,146378896,1015754240,46564267,1482618850,195,0,0,1,0,0,0,-1,213508,-65535,65535,0,13369344,0,0,8388608,0,0,0,0,0,231112708,1431178700,538976332,8224]},{"sector":10,"length":512,"pattern":0,"data":[0,0,0,0,16776960,0,0,131071,17591,17595,17595,17591,17591,17591,17591,17591,17595,17591,17591,17591,17595,17591,17591,-1,5]},{"sector":11,"length":512,"pattern":0,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12035,538976257,538976288,538976288,538976288,202181664,202181645,-1879048179,16711680,0,0,128,0,0,0,0,0,0,0,-1879048192,0,65535,1,0,0,0,0,0,0,0,0,0,0,0,0,0,917504,5,0,0,956,1,0,0,36864,65280]},{"sector":12,"length":512,"pattern":0,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36864,0,0,0,0,0,0,0,0,0,0,-65536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1270784]},{"sector":13,"length":512,"pattern":0,"data":[]},{"sector":14,"length":512,"pattern":0,"data":[]},{"sector":15,"length":512,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,-65536,-2147450880,-1908324966,1166053185,1229538629,-1869640119,-1722838382,1498764623,-1667523943,1100979869,-1521135799,-1465407835,-1398035799,-1330663763,-1263291727,-1195919691,-1128547655,-1061175619,-993803583,-926431547,-859059511,-791687475,-724315439,-656943403,-589571367,-522199331,-454827295,-387455259,-320083223,-252711187,-185339151,-117967115,-50595079,-2130706691,1167753216,-1891529151,1162167680,-1907799735,-1835888497,1431279951,-1701226155,-1633837925,1330200991,-1499093675,-1431721817,-1364349781,-1296977745,-1229605709,-1162233673,-1094861637,-1027489601,-960117565,-892745529,-825373493,-758001457,-690629421,-623257385,-555885349,-488513313,-421141277,-353769241,-286397205,-219025169,-151653133,-84281097,-16909061,16783103,65280,772669984,1532768034,1014774365,993864510,44,0,0,0,0,0,65536,67305985,134678021,202050057,269422093,336794129,404166165,471538201,538910237,606282273,673654309,741026345,808398381,875770417,943142453,1010514489,1077886525,1145258561,1212630597,1280002633,1347374669,1414746705,1482118741,1549490777,1616862813,1145258561,1212630597,1280002633,1347374669,1414746705,1482118741,2088458841,1132428925,1094796629,1162035521,1229538629]}]],[[{"sector":1,"length":512,"data":[1161904457,1330594113,1498764623,606360911,1092887588,1314213705,1067951694,-1398035799,-1339940319,-1263291727,-1195919691,-1128547655,-1061175619,-993803583,-926431547,-859059511,-791687475,-724315439,-656943403,-589571367,-522199331,-454827437,-387455259,-320083223,-252711187,-185339151,-117967115,-50595079,16776957,0,0,0,0,1937783808,-2144548095,-1346677986,-685830646,13311835,0,0,369491968,-1513576760,-1513577016,505355295,522133023,522067742,38,4650,1355808770,1355808768,0,0,0,0,0,0,0,0,0,0,0,0,225181696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-256,255,255,0,1330511872,1296125472,538976325,-2128216032,16778063,203,0,0,16777216,50267143,50463496,67240712,83952641,117375747,117507079,134546695,151323649,168100871,184878087,201392905,218170375,251724809,268567304,285344515,302121741,1342309128,537002764,553779722,1409417738,1459553281,1375798019,838992897,1426260745,1459815180,1392575241,604046349,637862913,654377985,1510016001,-16645107,335544319,335677195,352388356,385812229,385942788,402785291]},{"sector":2,"length":512,"data":[419497220,436338949,453117707,469894155,486803202,520029189,536806405,553583629,553779722,570556938,838993675,587399945,604046343,-16448511,335480077,387323156,454695192,522067228,2236191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196608,0,0,0,4084,34,3276802,262144,505,50331910,65536,4032,8978466,65536,140,2,327680,99223020,54395681,9175829,1547330304,1634625911,858665010,16791096,0,537327158,209059587,1479999286,-2144809725,204862,-1598277771,10,-1839755264,1087111168,1089994752,1122304000]},{"sector":3,"length":512,"pattern":0,"data":[1131151360,-1580990464,1153236992,1087569920,1087504384,0,65732608,771809512,274870015,-689437717,788475392,65736806,771804392,275394303,-1024982037,788475392,65736814,771799272,275918591,-1360526357,788475392,65736822,771794152,276442879,-1696070677,788475392,13570174,0,0,771751936,282789519,-586772690,-400306928,-13762439,772856622,283051663,-519663826,-400241392,-13762459,-854532306,6023208,4188363,113651450,-1912601823,-68711472,-1030859234,-1014244722,2615499,52498174,92673678,92546699,1183378571,99787008,-1593473885,-2036136464,1499158533,1566531162,1406076703,772191312,291708671,12802904,-2147483648,-1879048192,-1660944640,1448150558,918892119,-1003613849,-1190040770,-201588732,1594324135,520575326,1347666845,-1557213044,-1993469818,-1945073626,-1127182648,95684512,1662975790,1958742801,-2036257265,785419792,277358219,-873768104,281874356,108267324,45147186,95686861,281919538,236107966,1017969695,-1274448860,506638,-219475763,1895689211,100663296,570425344,512,67121664,-117440512,67073,16973824,-1073741824,1879056911,16780288,0,-1957625856,-503312370,13326846,0,0,0,0,1130102784,1414419791,1395546450,21337]},{"sector":4,"length":512,"pattern":0,"data":[28639232,-1392377850,67108874,2863,766213,199296512,-486080512,16777228,65574,437,36,771763200,973090048,131072,3317,44,0,0,843123213,1632116784,1635214450,1159751026,1919906418,908331533,87439045,-402164539,-986279792,-989514186,1374160756,700077830,-476387326,1364789087,1947876524,-1943083003,772111902,92020361,-611398772,47122174,911261747,637725345,1479492923,-544530682,-796147661,504291304,909559094,246409221,-2034968693,155093814,13104899,-400984960,-91547833,276086794,57934652,1607461663,910083126,77719813,-1392866465,141829180,246679475,-202698547,65259,-1869573941,37008]},{"sector":5,"length":512,"data":[1712680425,5512,4039,3717,4757,0,0,0,0,0,0,0,0,6612992,-13758946,-83819474,503339496,788475406,-386203384,236847182,204406574,1139342081,772677120,17837823,503331304,788475406,803733780,772677120,18362111,503326184,788475406,468189468,772677120,18886399,503321064,788475406,132645156,772677120,19410687,1048587932,1946157364,845832,451412851,-356279040,309,129257555,807337774,1488980737,-117279397,1405352131,772125776,19930879,57982987,-339518632,-1608625922,169805324,1476621760,-1259813895,2746368,113649158,117442060,1476396008,-13450248,1092520478,62398214,841076056,512368383,-1205926334,567105537,-402239293,510787691,485015694,-402426624,-1608122300,1513881600,-1064563596,50725670,-1064419328,1476912363,-2094640957,134218046,-1591336331,1211957256,639202633,1023412897,276120644,827686,1968063805,245442055,538983680,-953760936,262,539015168,566054,697126,828198,959270,102651587,567104180,9216294,1962934077,32241667,1579091961,1476573379,-1073077811,62392437,113496,-842849843,386857505,-83490116,-392421618,-375521509,1868824222,33554552,-855572480,147714,47448576,0,0,48628224,50525187,754,0,0,0,16777216,131789,50331904]},{"sector":6,"length":512,"pattern":0,"data":[87360032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19660800,0,0,65536,16842752,0,65535,65535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16777216,102629376,378216206,-1851711075,-1927378143,-1827763423,1364414497,-1014047860,93003403,567102132,57884288,-2093779711,203326,79375476,-850873344,-1910279647,872362944,512630518,565773082,281117440,530904060,110018956,1236534042,243868109,1532560154,-850873251,-1553632735,748881167,515935744,-164373106,-201523573,1048584100,1946165580,-1262121466,-970863287,16998918,652262918,-1191182145,-4477035,-850873089,1926904609,-850873301,1344631329,-1037319421,-1912381277,-251438912,1341719374,-56298499,1236582542,113648077,117441511,-53810913,1831401]},{"sector":7,"length":512,"data":[0,0,-369098752,276739,32768,23552,27648,102912,788529152,175964,92672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1179210305,1090866777,1953656674,1377840135,2037544037,1226845192,1919905383,539756133,1818845510,1913143041,1768186213,134244206,1953067639,6778473,824516622,1769104416,622880118,252316978,540091680,1769366884,622880099,638192946,1634036816,1763730803,1919251310,1870012532,1701672300,540091680,1769104755,622881889,858074418,1176832525,543517801,1869376609,1769234787,1948282479,1701601889,1684103712,1919164460,543520361,168636709,1986939157,1684630625,1297040160,1145979213,1297040174,1226902029]},{"sector":8,"length":512,"data":[1919251310,1768169588,1998613363,543716457,1763717413,1919164526,543520361,168636965,1701990433,1629516659,1797290350,1948285285,1868767343,1852404846,773875061,773860896,219941389,1919243274,1634625901,1646290292,1751348321,1651468832,794372128,322906446,1852727619,1696625775,1969448312,622880116,319425841,1869771333,1852383346,1163412768,1818846752,571084133,1735357008,544039282,544173940,543648098,1713401716,1763734633,1701650542,2037542765,219548173,544165386,1701147238,1818846752,1634213989,1701602414,1631722099,1866670180,1851878765,1919885412,1818846752,1634607205,168650093,1667449102,544437093,1768842596,421553253,1699547661,2037542765,1819042080,1952539503,544108393,1869771365,168633970,1852727619,1814066287,543449455,1296912195,742673985,1937339168,544040308,1953259880,168649829,1124732193,1869508193,1953702004,544502369,1296912195,742673985,1769497888,1735289204,221121037,1886344202,1986358304,1881173093,1701015410,1629516659,1953656674,539780197,1852727651,1663071343,1769238127,224753006,168624650,69007,68411,69007,0,392,1769101075,1881171316,1702129522,1696625763,1919906418,1986939148,1684630625,1768846624,1867385204,1701978228,377054305,1635151433,543451500,1769366884,1914725731,1702195557,1141535859,543257697,1869771365,1850286450,1768710518,1701060708,1701013878,1902473760,1953719669,1918988320,1952804193]},{"sector":9,"length":512,"data":[175338085,1801807187,1920099616,1225945711,1818326638,1830839401,1634296933,1887007776,1699942501,1919906915,1953459744,1970234912,1343906926,1953393010,1864397413,1864397941,1634738278,544367984,1869771365,1918308722,543519849,1819631974,1919230068,275935090,1684104530,1969317408,1696625772,1919906418,1852131087,1818325605,1767990816,1701999980,1634226961,1735289202,1869182496,1769234796,1276014191,543908719,1819240822,1869182049,1850282862,1768710518,1768169572,1663069043,1735287144,1128664933,1853169730,1767994977,1818386796,2035489125,1835365491,1936028192,1668445551,2019893349,1937072488,308569460,1701080899,1734438944,1768759397,1952542067,1326213219,1864397941,1852383334,393508208,1970499145,1667851878,1953391977,1936286752,1886593131,-1805294751,-1257723896,-704069880,50913544,554241545,1292448265,1879662345,-1844871159,-1257660151,-553007863,-16125431,1867780873,1634541679,1881176430,1835102817,1919251557,1699879539,1919513969,1881171045,1835102817,1919251557,1936289056,1735289203,1986939150,1684630625,1769435936,258499444,1635151433,543451500,2004444523,23360111,1632642080,1701667186,544367988,1970037110,1869488229,1852383348,1819042080,1684371311,1851879968,1343972711,1835102817,1919251557,1818326560,1847616885,1629516911,2003790956,1343972453,1835102817,1919251557,1818326560,1847616885,1629516911,2003790956,1344037989,1835102817,1919251557,1919903264,544498029]},{"sector":10,"length":512,"data":[544501614,1920102243,292840293,1635151433,543451500,1634886000,1702126957,1850285426,1768710518,1634738276,1701667186,544367988,1651339107,1952542313,1097756521,1879725322,-1895137526,-1240821494,-301280758,487262986,1850281995,1768710518,1969627236,1769235310,1175350895,543517801,544501614,1853189990,1632636516,1847617652,1713402991,1684960623,1869566995,1851878688,1886331001,1713401445,1936026729,1667449102,544437093,1768842596,237003877,1635151433,543451500,1684955496,1293903212,1919905125,1868767353,1869771886,1818370156,1936417647,1936024608,2037346932,1226007653,1718973294,1768122726,544501349,1869440365,1226602866,1818326638,1830839401,1919905125,1818370169,543908719,1919181921,326333285,1635151433,543451500,1769369157,1835954034,242511461,1635151433,543451500,1836216166,1226470497,1818326638,1713398889,1952673397,544108393,1634886000,1702126957,1850281074,1768710518,1633951844,1226531188,1818326638,1679844457,1702259058,1701868320,1768319331,1769234787,1092841071,1835365492,1948284016,1701978223,1702260589,1920295712,1953391986,1919509536,1869898597,1309636978,1931506799,543518049,1769366884,1309500771,1869422703,1713399154,1936026729,1818838539,2019893349,1937011561,1851867931,544501614,1701536109,1919509536,1869898597,1696627058,2037544046,1767982606,1852776556,1414416672,355742240,544173908,2037277037,1684369952,1667592809,1852795252,1967396211,1667853424]},{"sector":11,"length":512,"data":[543519841,1768187250,1952671090,275672937,1635151433,543451500,1936941424,1685221239,1986939153,1684630625,1918988320,1952804193,1309831781,1870099557,1679846258,543257697,1819631974,1967530356,1769235310,1847619183,1931506799,1869639797,1684370546,544825888,2004116846,661353071,1970365778,1684370025,1937339168,544040308,1886220131,1852141167,1869488244,1852383348,1818326131,1365534060,1896571403,-1811185653,-1307860213,-435432949,386663179,1091315212,1308622860,-1911789044,-1811112436,-1257723896,-704069880,50913544,554241545,1292448265,1879662345,-1844871159,-1257660151,-553007863,-16125431,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,830464,-737363968,-116595956,537726732,1158492685,878349,0,0,0,1007141307,-1155828734,138151815,1941640308,1946893319,131906317,108266812,-1106812997,-745864447,-351900184,-1261080055,-1558065843,2045313899,116793089,1946223591,-418974195,74711555,255125791,116838175,1946420199,33325074,-58658190,535656204,-116996989,-2147482934,67364622,1990285563,1975520003,229920774,-145219123,-16573946,189953279,-397511232,-1595407731,-1975487741,1392733710,52037262,637542591,335499,1946221443,-1014102520,567101876,243934727,-1960443903]},{"sector":12,"length":512,"data":[-1275067618,-1994273463,-16573922,1963163406,243817423,113640302,-402652184,1810367939,-1950338302,58434280,-402424670,104398876,108266358,58066631,645988351,955974631,1963158022,21358851,860933113,-402225472,1958742531,1848561668,-1161603069,-2081945621,1933475845,276037635,58080899,-1173785344,1877477381,-18089211,-402117446,1048577382,1962935155,51355927,-1593829725,178455313,51618048,-1207956317,567102464,58066631,109969408,1236534575,512434637,1353974541,1805722061,1782480899,41222147,113688627,-16710806,520292654,151424856,184979203,46433027,-661780706,-1191149377,-1510801344,567103924,220104998,105952259,-841249761,1980155681,-973045501,17000966,-2095112674,1048576708,1962935146,8513795,-1258291269,-400437944,537198602,1943550720,-12850933,-1313889096,-1008151804,567101620,113700722,-1560280214,2426159,268436976,378212978,-754776785,142004283,-92155861,57872384,-1559941215,799081761,-1982332155,-402430434,-668205122,56630843,-1783028876,856127407,-50426890,-242546965,-33649842,-1014102498,56630926,133997811,1612613919,-1898411005,101366992,855671784,-18195,58197639,1962934077,-852577276,1983808289,58064643,-385954839,372965763,376701800,51971782,19326977,989950696,1946380310,23193605,113701611,-1107295463,62850333,1611042467,867826691,-204592379,57057700,-16776541,520314414,-402471805,1355481089,-1193768109]},{"sector":13,"length":512,"data":[567100424,-1073019789,19203563,1540421376,-2095070376,31982276,921225984,-1948568831,-1962708978,973084694,-1274514230,-2011050690,1124079630,141880890,567099060,1650312,-1190870141,1051983887,-498916915,-1791065863,242614019,-1950939208,-855403746,-1794718161,1405288451,-1273100720,-1910387375,874431963,117934848,396568070,446703107,-1981773312,1476861703,535348059,-16652032,-1269804258,-1591620271,-611450089,3415749,1532495753,-390413537,-38344442,-402430560,-227147955,115931777,-390461835,53012486,50347648,-1274448640,69324057,50373185,-1106837830,266863354,119585283,-402454040,-1195180031,567086087,-854851400,-1169833183,12059420,1931595069,277776,-1430649227,-44111609,-335567384,-1160213531,-919394592,-851312456,-1190104543,-1910591851,-1174183906,1068761344,-1675681331,-851528624,1922914337,1958820612,115915448,-335580696,512630449,12452704,-1655457535,870961660,-805065262,-503262589,-1161617416,582484350,169249061,203328512,-1172189952,-1057095350,1438261709,-842990079,-2095070431,350814916,121813758,-1207802392,567086081,973273320,1946568966,1208367623,-102337274,110043075,117114378,1364676950,-1912136112,71601117,-165246938,47496962,-2097149767,-201585978,1599690916,-1561846010,484987646,646470146,1090782061,-167588446,175407300,49678070,-385649280,1790837238,29685254,1941832564,859736326,1428030981,1397838422,567105972,1582979419,1049173853]},{"sector":14,"length":512,"data":[109839108,839320326,-2080863260,57873391,-973075265,198662,1947271043,301957893,113640821,-1996422392,-2096949954,1115034879,12122251,1009765637,1395291647,28893067,1529859333,144842610,520494595,-4597877,-54512897,1170648818,162800895,1170612685,-350289665,134661653,1049296899,1049167155,-947715307,-386234605,1048576387,1946157832,22931461,-163171861,-2147289594,-1950740620,-818509562,47103490,-352237080,108837402,46675593,-402470978,1048576314,1946157849,-36116474,-2080518167,251860286,508632693,70698247,-423667965,1095938,1604645884,-1168564474,-574749029,17360898,-402240838,116785410,1947206509,105953798,-167709208,537095430,1488586356,15263750,57476854,-1173982200,-605551007,107526656,-167717400,-16549370,62129524,-1207915799,567086081,-402604312,11796825,57476854,973501472,1946568198,-154862039,268659974,104466036,443811397,104514814,343148100,116835582,1946682221,1191590406,-385649658,1709965145,65472246,-2145750015,226110,1320814708,7399432,262274795,1483523,-850591816,1661400609,91553539,56886982,-401176063,-88676349,225759754,58080899,-955878400,-16550394,356418559,125042691,51723907,-971868926,228358,58080899,-955878400,-16550394,-1950053633,-54466345,-1912119719,-821687778,-1106853190,132645623,-352145408,142457576,1364414550,-1948349614,-919360270,65259658,1509956072,1582848857,-628665661]},{"sector":15,"length":512,"data":[-787223677,396332003,-388331766,-1017446442,1965374636,-2146137583,-92261910,-402164983,1229324301,-796260629,567083700,1405346530,-167530415,-1965554718,23038727,661965054,729073918,79234955,-775892736,-775892544,254038208,960245764,117703286,45404298,-497540659,-1978274844,-855460841,-1978799327,1959922199,-855460857,-202685663,1354980185,-854453320,-1018936273,305020191,4008564,1344042069,-1957669552,138841068,-1593555319,1183384967,92643592,1476806281,1489706845,17088030,300662835,1963049718,-628403444,-472776910,142655428,533667675,1381061456,-1157161386,-8323061,57936699,989878971,1213887192,-133963567,92880443,482232178,113155,-1205862213,567110656,-661962894,-164374645,16837249,12110131,1914817858,87407130,-1275051847,1914817855,1979058958,378226186,-771029707,-1661347211,567099060,-335901795,1032529416,24510219,1499094777,-887138213,-930420598,-849870664,-791114975,-2132705079,176153472,1476507865,-578149939,-13440048,-849869896,52001,0,-1274672452,-842822576,805353505,104669645,-1173261290,1541939795,650153214,1443385,550370932,-1322848326,-1930767612,-1547566136,-1746394725,169797639,-843644744,1946172463,-1224558566,-12767283,-1206880769,802010886,59973257,129555251,-1087386185,1049168449,65537417,1426110474,-1073008691,-1993995147,640079670,651763340,-970586389,19323654,1706303238,-4586320,-17409,-1090517575]}],[{"sector":1,"length":512,"data":[567083910,1660991518,-611573299,-1892251361,-1860269821,1483011,-1593634909,295895050,827651,-1207757917,78714489,-913512237,799260931,-268425979,1930428421,87007491,-1593499229,512491522,512492839,512492843,512492831,1721960594,-524595197,-1782349530,264471471,-338492239,567102132,-1895381160,-956278239,270634246,-1348158976,-355269455,563943049,1621344811,2924803,184881059,-2146995008,2546494,-1561853068,-1262449145,-31339239,56992448,167795872,-1271499584,56992314,-2130886652,2182206,1049305204,-2144984721,1949958525,520494613,9418125,9551245,-218066759,-1993990236,-1543700667,782442781,-93591519,119475726,-1409253186,-466420085,96925699,-1983302899,-1088270578,243999141,-768400817,575747721,563683071,575606409,1979711293,41806083,1946157117,1028675144,896860163,915144331,-147119535,984361844,1948354822,1946762485,587610865,-1407552251,973431528,1965132294,-379954683,104464582,91562379,-1276552614,-1956751360,81848528,-335775000,1212055958,1948377122,1212055879,1948374050,1212055892,1948380194,1212055926,1965166882,9234691,575159937,2087985719,575159937,58008056,-2130670871,1126320190,-385649374,1048641720,572334664,-1192688780,9824512,58343040,-1207536129,1558773761,2047264511,854195971,1933476095,108265475,-385875528,117374791,113705843,25035537,51584652,557792896,-972720641,2178822,-2130769687,2204222,28837492]},{"sector":2,"length":512,"data":[-14817024,564266750,557778630,-17831679,57935559,99287040,57870022,1983285504,1057408515,1894318369,-1589739519,108265505,-385875528,117374699,1254039969,-2095215838,78712771,512355283,-1293344371,-1606516482,108331297,-385875528,113704647,-385801824,243334813,-384826063,753532565,-984211967,-1960687050,1023588566,1618092493,12114059,-165556924,108363970,567099060,-164475157,-1207711104,567100417,-745804174,-599883738,712245542,244049,1052039987,-498916915,-1260745735,-1272853179,-1272853179,-1272853179,1495387454,-31056034,-383329274,526319153,-402652742,149422958,-31200773,-583106522,-361496282,-586744282,89384998,861323406,1010937033,922383616,1310820768,-1185872760,-1959362560,-1339986114,-1951469056,74755831,-101994766,-835989621,1866369846,149913889,520494592,240100595,561102367,-218101575,1866369444,1582898977,976636332,1948354822,48474629,240251627,264117791,964897,-12219866,86246970,1229324917,378250483,520495471,-851640136,242360097,1052039307,1582899661,-385413601,-440730235,1067247650,1962950973,588167683,-1090889240,1049305359,247013743,-341511424,252088025,1933475845,779354115,-1940868090,-842821925,704289,-1425965384,-1196697460,-1934950070,1438165976,-661869823,371100843,20953600,-853201224,379651873,51356416,1449612,-1560274783,512492400,512492819,512492823,482280731,1865845507,1279164449,-661913567,-1064427770]},{"sector":3,"length":512,"data":[521018229,102855102,38398039,520550283,158533471,-2128514626,234883270,1049175583,2088764155,108345857,-83459290,-1431567870,-92946422,1547602214,251602435,-1977220260,-2147261146,-2010758972,-402456538,837288587,-1105261053,-964614432,1404633344,-372114275,61723187,13796304,378140898,1048576872,1962942783,310028,567101620,446890866,253659907,-1860269819,-1828272351,-1912602591,-1946799141,268418046,-1893824202,-773598943,-773598749,512308963,860561807,24111314,18812446,522294030,1946286467,1943612169,48972291,521070571,108319243,-400397382,-1918764782,-754667231,-1828308000,-1593411807,251994515,-1545022720,1048781197,1962935066,14149891,-972875103,50556422,58656455,-1064435711,11599667,-1442729814,-1414873037,-1414813013,-1174405192,-1410138102,555564672,-1274120960,35769625,-1574859770,782377245,555597345,-218101575,498771109,1023457313,158474701,1052039307,-1947655731,-672641024,558539520,1209991000,4275489,-1514523020,939571233,594682317,1968372611,2146093,-1189007682,-1510801400,556710564,-851640136,-1962380767,-851528488,-11670751,1025591326,108331073,-402137926,110032970,1236534042,113713613,794,57542342,2131150593,-1207959549,1084437820,652261409,-388823887,-1056716404,-14597469,-2094972898,226878,-2034629003,-133371870,-1205924322,512472839,801964947,-616660961,762577190,119414278,637600959,651763342,-684291290,768294]},{"sector":4,"length":512,"data":[-506338863,648344572,16678273,637956848,20186822,-351854847,28698627,870763497,172076233,-1006996032,-2147262303,16998974,-1940713100,652261579,-388896559,-388896559,-1017396477,1272612690,-1618222127,-628683973,1526174184,321731,1089154418,2681084,84870798,1448214323,1021881431,975587072,41287493,1583346658,1359770713,1493181160,4030502,-1007034251,-24443106,845911,-396950293,727253003,-1007056903,-350124384,-1178586622,-1359871744,1921006787,511716368,-2028026541,46367491,-350266409,-2029635058,973632033,1998686214,-1021301758,1443284099,1153954443,1577910273,102650831,-1940434352,-1898410296,1933476032,1014235139,892319750,512303565,109839749,-2147023481,2546494,-1172433292,-360513105,1087933456,800643214,522308901,28450444,564149888,-1089047295,1049169475,233506185,564149888,-1173981951,266862594,1482317823,-1017438457,-1090485826,-919395931,520081971,-12770919,1026716927,41156608,1048703211,573252168,1048646260,571548232,1048648564,574038600,-689237132,-1389976130,125091851,1743310987,-839586826,-1944141024,-1948741944,-2130343666,1963869177,264340230,871424387,-616660800,410321190,112742739,1495387443,1912994688,-2134887650,1968902374,135968771,-1048328189,-773205745,-773205527,-1961981463,1539514117,-351790408,-1945755929,-1193767224,567096070,1964041856,-1962467825,-1157265090,-80015805,1055602292,-1089987909,45678591,-2094019254,113704959]},{"sector":5,"length":512,"pattern":0,"data":[1963000116,872859177,243990529,448267657,-2084044024,-372174911,-372119087,243919313,-1108671093,-947714895,-253263089,1354632171,135969038,-1527556100,24111199,516103943,374822406,84910367,558644864,-385649664,-13958834,-2147437381,2546494,-1072988556,-1064405388,-13958992,1326937262,-1107294791,-1494015667,12126068,-340856319,1292289771,-13959135,1326937262,-1107294279,-1494015645,12126068,-340856319,1661388523,-13959135,1327723694,-1107294023,-1494015631,12126068,-340856319,1866369515,-1174459615,-1370914816,-1359870860,-1924138773,503362717,1449614,1457795,74784512,558630654,-1014772853,-773074673,-773074453,-850873109,-385649887,-1064435533,309657355,512630353,-164952817,-13906037,1495246067,727174955,1605039040,941706686,-1185909756,-1527578618,558630456,431244660,1090789837,-1574874206,11673948,-971045346,1972198405,-850938879,163127073,559135232,1001714315,242426317,-1174403143,-225762980,567098292,-678752910,-1273035234,522308923,1470427983,1085915179,1605038848,558630456,1673399412,1946433569,833797,104441075,259334511,558477,-1105104989,364454257,-1935346944,84911040,558630654,520576607,59587,116306153,-678706292,-1107229505,119416513,-1392505927,-1951677949,-136139837,79676167,309505,-1945974909,-947672128,-1006968318,1124120582,-2143539251,280497525,-1993355965,-1946079202,117518854,195]},{"sector":6,"length":512,"data":[1447380015,1313817391,0,1543503872,1296912195,776228417,5066563,1547304960,1330926913,1128618053,1413562926,973081856,1430342492,1480937300,1094856261,-15925164,0,22467,13155,1413566464,1124089160,1397578810,5459780,1146894915,1342198607,1347243858,1344552276,18212,1297040128,1128616019,1329814589,1312902477,1329802820,1631387725,1262690426,65,0,0,5750528,0,0,2205696,566362624,-888593982,-484321503,136441633,572658722,975318562,33620002,575012865,8782,1174405632,19025442,20527,1174405632,19025442,17967,1174405632,19025442,17455,1174405248,19004194,16794927,10486017,-2147483648,0,131072,575545926,4402945,131072,575545926,1397567233,71,575012866,788603470,63,575012866,788603470,75,575012866,788603470,89,0,0,385875968,1868787273,1667592818,1329864820,1702240339,1869181810,436866414,544503119,1696622191,1919514222,1701670511,1931506798,1701011824,224266765,1292504330,1869767529,1952870259,539578920,1143821133,1378374479,1700143145,1869181810,775299182,168636978,538976288,538976288,538976288,692267040,2037411651,1751607666,1766662260,1936683619,544499311,1886547779,943272224,959524145,221131833,1884497930,1718182757,543450473,1296912195,541347393,1918985587,1679845475]},{"sector":7,"length":512,"data":[1667592809,2037542772,1684103712,1396115981,1768121712,1684367718,1297040160,1145979213,1634038560,543712114,1701996900,1919906915,1633820793,1629498468,1936024419,1701060723,1684367726,1396181517,1953653108,543236211,544695662,2037411683,543584032,543516788,1143821133,1126191951,1634561391,1226859630,1919251566,1952805488,221147749,940182794,1296912195,541347393,1919179611,979727977,1952542813,1528847720,1769366884,542991715,977612635,1852730990,1528847726,1528844335,1196641583,168648029,538976298,538976288,1496275744,1127176992,1836016416,1684955501,790658080,1868767307,1851878765,224222564,1208618250,1683693600,1702259058,1634753850,538994804,1884495904,1718182757,544433513,543516788,1701996900,1919906915,1868767353,1767994478,1735289198,1297040160,1145979213,1297040174,1818846752,168636005,1679827021,1667855973,538976357,538976288,1394614304,1768121712,1936025958,1701344288,1986356256,543515497,1965059956,1713399155,1663070831,1634561391,1763730542,1953853550,1684955424,1953853216,779384176,541395469,977612576,1852730990,538976366,538976288,1952797472,1752440947,1852383333,1634301033,1852121196,1869769078,1852140910,1769152628,1948280186,1852711023,544108142,1702132066,168636019,790634573,538976336,538976288,538976288,1293951008,1936026465,1701344288,2003136032,1836008224,1684955501,1953384736,1919971941,1919251557,1919250464,1701732717,673215598]},{"sector":8,"length":512,"pattern":0,"data":[661545315,2019893364,774468713,541461005,1397567264,538976327,538976288,538976288,1869894432,544433522,543976545,1869771365,1701650546,1734439795,1763734373,1701650542,2037542765,1701980192,1919513969,790655845,221129040,538987018,538990895,538976288,538976288,538976288,1885697107,1752440947,1735749490,1752440936,1633820773,543712116,1735357040,544039282,1667592307,1701406313,2036473956,541273888,790655599,168635979,790634559,1868767299,1851878765,538976356,1159733280,1969448312,544433524,543516788,1667592307,1701406313,1868767332,1851878765,1851859044,1701978212,1852994932,168636019,790634571,1868767307,1851878765,538976356,1159733280,1969448312,544433524,543516788,1667592307,1701406313,1868767332,1851878765,1851859044,1868767332,1852404846,544433525,1852732786,778530409,168626701,1701336140,542125856,543452769,1196641583,1769435936,1701340020,1634541683,1700929657,1702065440,1852776548,1998616940,544105832,1296912195,541347393,1931506537,1953653108,1646290021,1937055865,224882281,1752443658,1213407333,541871173,1835888483,543452769,1948282473,1126196584,1229344335,1498623559,1768300627,221144428,2133018122,-484198365,2049190947,237289508,-1608166107,740679717,2521382,1996961792,1157641473,-1560270588,-1375460862,-1039697151,521218]},{"sector":9,"length":512,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,567086772,85888558,-18269,58197639,1962934077,-852577276,520039969,-315383037,58080899,235238911,647489823,-87520004,616353934,-1064371281,-2098669426,-1157183913,512622759,-969497851,-2136940282,1678165558,-318013279,-952759948,27320838,-2145916147,225854,-971108236,225798,-407232754,-851725151,1048583969,1946158057,-398557174,57999363,-969791256,223750,-661731188,-1356547504,-851967816,103503905,-1152146681,-470351856,1959922523,-18429,1979842621,-33544957,-1901910365,-157088482,17001990,-907534732,-166104527,-16521210,116789877,1979646844,436664075,1979711235,713156611,58080899,-150113024,-16573946,-2147125761,-284872410,58787526,-2113485312,431226883,-1573510707,116826905,1962869736,846588163,57542390,-401116159,309473652,58459894]},{"sector":10,"length":512,"data":[-150243841,-16573946,-401771009,116793773,1962869628,211544323,-1341733322,113639586,-973077609,235014,58394310,436664064,1962934019,-1205991870,109975810,549389082,-1172369920,802005348,119537468,-400677516,-971045923,230662,52037367,326500351,58924683,1946221443,438208778,-2096707837,234881027,-2090996961,226878,915086708,914817908,1723794294,-1396100191,222052778,239729013,1695451167,-1204163679,567106825,-1302525768,237096193,-1595819489,-850915144,1958742831,-854936572,-519140831,-2081607008,-507640895,-1587232864,1961403635,-339725527,695068678,503316920,-1559945586,520275363,-1969134402,-315489972,-402471293,57868584,-402586135,108276965,-382673175,619184378,235631412,-1756841441,-380328984,116850134,1963108311,-1791065106,-546045782,-1478869373,-1093110784,-1077960346,687978660,512434637,2139138005,460667393,-494921846,1105887455,208994108,-1479000437,1962950016,-40834810,-1976904983,-1557814779,163127472,-1359853824,-1054209872,-1079722078,-1101660031,-571956890,-391363032,175384800,108268860,-1559689670,860811381,1017818313,1341841421,-772345973,8392328,-599880866,473860519,-533296221,1979059111,-1074427134,28835932,-1574843095,1049338650,1049208807,915120926,-167008277,-175439243,-1207931713,567093505,-1952244830,-1985482178,-1952243650,-139994050,-1757535273,574523818,-1530945373,-1557850486,91607562,971622654,725149994,-1559945586,52037367]},{"sector":11,"length":512,"data":[91553791,59049670,1983808257,57999107,-369250839,1004797169,1947024512,171737142,-1912196748,648217862,-1476054624,639857680,58867328,-1474595839,639267904,52037367,192217087,436637222,113649155,-117374974,-133709049,-1143567421,1085538306,1790583245,1397418137,71022622,954793910,1314502996,210436722,-855067617,1975551009,-855067632,1967078433,243279600,-348125903,1964719278,645932552,-336657103,987702293,-117213755,-1053162261,-1969434763,-855460656,-392389343,127739791,1465255619,-1202499503,-1064374272,-29458394,141884927,1498962936,-1022927265,-1900019528,654259136,-1437254271,-2147153292,-268419840,-521409166,39684646,-472776910,-1014766639,-2132573313,637535935,843517322,1976110061,-339541244,1190300632,125085427,-947652349,-2132481277,91504444,1965046912,109850351,-1993431492,-106546626,-4482069,-850873089,-850873311,-1202695391,773727522,-1559945586,-854688838,-1898279903,-1269162046,-1910387371,8436442,567089844,84910374,1526738083,-754722164,136841,-1907697012,378094298,-628228095,268499841,-617414030,-472709967,-762389876,-1070341237,785446736,-1506003201,976682798,-876441946,1913151720,-92028159,-2096466942,91489274,-352307736,520039955,393519887,-401906200,2074226809,-1757234685,235141608,1373825055,519771625,1169825550,1373038743,-392710214,786977232,-1192550656,438210078,2145795,-1087561752,-1527536322,378085134,113678117,-1174300893]},{"sector":12,"length":512,"data":[113743653,-1522620891,-1759050042,1388519169,-849149256,28856865,-855526813,201898017,12067277,-1205744372,-849714431,-960275935,17002246,56887030,-970951169,16999174,438210078,37650435,1948188672,65136651,-1587109338,-1020925208,-1073790488,-661872282,52043406,538367,669439,1558763662,1496988678,-147753894,-16573946,1010332927,-972589760,225030,-1910624789,-1996285410,-1996486634,520096270,-851312456,113714721,-20659,267110707,-402585880,116851587,-64742,-389830539,-398392457,208937830,1937766787,1760078417,183189763,8452481,624706675,1017793140,-2116258547,-1952356369,1705125575,55175329,-2147024664,225086,116787060,1963000686,1948192260,-2059501383,57934083,-400213272,521018545,-392075590,753411468,222085925,-1796734092,-1142183424,1006833384,1018131493,749433869,1010397744,-1741326583,-472786805,436637190,2005607939,-24967412,-385649153,-1910571155,1224940062,1947024556,-108969713,57868416,854715306,-1293213760,-11540193,-1084809655,805610688,46000298,1963801770,1170613780,-1061289729,521035684,1912772072,1240014806,1965374719,641577184,-1090566776,521053376,567601233,236914265,1610058503,1877476210,115941122,436664319,1979711235,1961411329,1963801602,-1912159248,648217862,86967950,567101876,-1912159481,-1146944250,1219821567,-1269620275,1528941896,87008038,-1952246365,268379600,-1031075979,1978662949,633506595,389120]},{"sector":13,"length":512,"data":[639201808,86972043,-801385725,-880013710,141744187,-75376597,74649600,87007526,86090534,-1952249949,734563544,280712131,1541666560,57987595,1040187320,58065408,-1543634907,-1022909658,-1559951730,-2109833178,57934083,-399918360,-2144927896,17007166,-1142422668,768600072,57581606,860881188,116860608,-64742,-1591339916,-2144992486,17007166,-1912207244,60892864,642778880,58867328,-402426879,-970587866,229894,-1197331010,802010897,-695513420,-855632967,710600737,-1014900341,-1320091457,1407963908,567101620,1344565851,537248515,-1161065472,-1031557227,65721103,1925397459,2009217809,-1912186867,1224784064,-385408563,643301563,-402449757,1482358492,2131164966,-1910110717,637737478,1734,61023744,512630272,-1070357755,58465930,119441446,-3934720,2107705460,2080818691,-1557790717,-1070399483,-1979482717,520318494,18778150,113649152,637534210,637536419,1207962275,-1962931009,702943,-896816141,1723770099,702881,1008921576,-484609011,1065952774,-1409105021,1948443624,222079495,-202700172,-475394640,-588559905,-1918189518,78712669,1253370835,101130701,1983808287,108396291,58066631,-1571225616,1005126510,1482185463,-956423192,26682118,-946395718,144123142,638970112,1394476624,84315694,512634531,446800645,1958742787,-1064434110,57542390,-972720895,225030,18778662,1847494656,512435715,512294917,-1977220227,-2013264098,637762590]},{"sector":14,"length":512,"data":[204427,567101876,-2095150841,251602435,-1070398593,1526930083,-1017641185,-2126402480,1912635641,99350787,1975519914,1481591280,508646339,56887030,-385649409,116850897,-64742,-957807755,109970944,-2144992486,574,-1662450828,109258240,637599752,661123,-930347264,512481422,-75255987,-1170180609,244035407,512466120,1068803961,561193421,504931304,-1559945586,1407766667,434642939,1711720013,113642913,-1912561305,-341637858,-473396374,1863223584,-1982123089,-1968222946,1135562631,-1351672261,-4521102,1293847039,1964653743,109971061,-1910070523,637737478,147072,639005952,132862,-1351672181,-1353793664,637957130,132736,85888515,785393315,309592066,37650470,91488512,-351859280,118140981,-402181909,-689373522,-166875134,-16555002,56886982,-1090030592,-919363226,1048777963,1978663798,2134803213,108331011,58066631,1495269375,-1168587941,-1930848323,512630308,1048617733,1946158057,674752515,403097119,113705123,44577,-402619970,222044388,-292825740,-1248127297,-1963619584,937641741,276103915,629810860,1959017031,550273029,-287128518,-1946614881,-1639495907,1017961333,-391875571,-780853068,-14637080,404158179,554106787,1454697390,1017956659,-393776115,57942168,1022618433,1007121469,-1406634995,1017968107,-400526019,222044280,-211871372,1310160038,1947024512,222080184,1776857972,-1326025440,-382014465,-391315636,-361422756,770424882]},{"sector":15,"length":512,"data":[542304428,1052441205,436254885,45818317,555614976,-1479165778,-1960037144,440599,-850526024,839152161,-1341985856,403109631,41222051,-1073032970,-1477901452,537848052,-377368949,237502593,243925120,243794048,1723834725,-1527513951,514461104,-1559945586,58394310,1810440191,-8590858,-617477449,1947024556,534702324,808193140,-403258490,-1014578430,-1910576405,-1969027810,520317734,-482688974,-922839181,512660459,446800645,1975520003,-1064385791,213899406,41258240,-218101319,-12745819,898362228,-64057,1963801772,3965179,898227060,436664259,1962934019,-44439542,1948220392,-104597264,1347901123,-1587102127,-2095094808,1723794630,8173985,1482269939,-1910612385,-962394850,17006854,58853062,-381779967,57933827,522616040,85888707,436664227,1962934019,517092287,52043406,530057,661129,132806,1676156672,6143992,-1342174279,1974399520,-377274111,651818763,-1522659703,1929345768,1949973532,-53090266,158665276,1929341672,1949973516,436664086,1979711235,7858408,234930664,-1749370337,-400402711,-311230645,637558207,-1522659701,-397343253,-396755809,326376590,1963276838,-481736756,-1930931768,975591932,202304261,87696928,132842101,975577132,1202615557,1894306018,1048782588,2097718590,1998601220,1947024540,-60954617,-109769412,117200616,52037262,33998374,-402194432,784531457,-1485234549,1912994691,-851528700,1661388321,516096003]}]],[[{"sector":1,"length":512,"data":[52043406,-1207951174,567098624,378215538,243990536,639565834,-1951958621,1107343576,-953802291,-5288698,-628374529,-1961559064,738691792,-1007083712,-2095150330,1960512259,650350134,335499,1946221443,-1014102520,567101876,243934727,-1960443903,-1275067618,-1994273463,-16573922,1963163406,1846446292,436651779,117440515,236916419,44099591,85888550,1983807907,1979645955,2134803215,141885443,58066631,317456383,57542390,-150244351,-16573946,-402426625,870915475,-1580798990,-661781635,-876953458,436254725,1048781261,1946158405,1191640836,1193184005,1226717957,-1193640187,1927806976,55544617,1207310219,343213058,682637195,1979663416,984629515,1963017272,46236419,1048824363,1946158405,38270486,-1962576638,535496015,-1194773679,567102976,-1207571623,567103232,1929379768,47107,184894883,-1953270336,88850231,1048814835,1962935621,99204619,1946172544,-126508029,866828338,869398473,-1587101733,88350346,105592458,12060430,686548992,1175025547,1011221642,940864805,1175483700,88850006,-1073042772,1095760608,-1427772578,1963801673,651294431,-1587212664,85888550,1845950115,796131587,59063936,-402426879,113646747,234881925,182998815,-970563820,-956235963,1722164486,-1729316191,642249704,234833350,-957151511,230662,-1499378,21555442,-385799191,110033765,-2144951547,228414,-2144933003,256318,-1696070796,-388877533,-546176778,-613079748]},{"sector":2,"length":512,"data":[179103883,-388729408,-814612250,1038081829,-948613559,1975519916,13953218,675069298,-58672779,-2146405376,58010108,-111895,89128711,-401544378,-1619918666,1962944829,-30021370,-1946485527,91685834,-1341919613,1946433577,10020871,-303306126,80149131,2702592,-397999756,-663617402,1038081829,-797618364,1975519916,7661771,1397802610,1448563281,-147134379,-1157589528,-18349816,-1557750742,971506557,1583193591,1532582495,104624728,2100756262,1330185987,1192134950,1049175557,-2010774199,637879318,88409799,-980680705,1260816422,-31062266,637762566,58080899,638023167,58066631,-960233728,26682118,-946395718,144123142,518383872,-1793705150,-1962050134,-1479165734,-1960357656,-1007112905,-1910586375,-1163721442,1048680579,-16776330,113706613,-64650,515238175,-1909586352,648217862,184778145,101217472,1236582542,638001613,58525383,-970588160,228358,-389851129,-722990374,16508928,1929450728,11528451,-402570264,116850969,1090960,870845045,791577361,367723171,-1173293336,448046398,1556029901,1068517120,-218100807,25225386,1048790386,1962976028,30992446,-1517287689,175374337,1930093288,-1876524283,1072234149,80275466,116869490,566672,-873986700,-147033599,279285766,-1588431616,-1072979145,82319988,-146347261,27466758,-150113024,44243974,-1172802560,602642528,-1207442200,113639426,-1174300893,631478053,-401544297,1048776992,1964152613]},{"sector":3,"length":512,"data":[621201158,-150994281,27627526,-402426880,-1058468974,-1878591715,1946157477,193259523,-1499021373,-1517011319,-1331025232,113748493,107922,480493619,-1517247581,-962182238,111515654,-1566205534,-389831772,376570835,1023759848,242548735,-968535064,-6872314,-392599622,-1094499007,1005060225,-49915,-336002188,-1161562111,12103460,1914817848,33260311,112726644,-17563,-1962932807,-1354448941,91431373,-1354496314,116900608,1090960,646120820,-134371952,312840198,-2096794624,-22704090,4241438,-2069833586,-1073078528,430965365,-1057037262,-1196974941,29049868,-1325157120,-1483949441,-1667161651,-1557159001,-1557264698,-1878591743,1946157733,772195845,1048577443,1966778023,-1499029494,1076682532,-1023386462,1963074536,470713095,1458241955,-1517013249,-1516501306,433187071,-1516501306,141712896,915095924,803972672,195541409,-2144111168,10894910,243468148,-352148708,24936485,-1392413382,774782081,2088766837,125108226,-1558442365,-1089737982,246939740,-132002519,-1007091221,891533318,512303565,109883209,-1173901493,599268371,-1021194971,-1155531544,130459392,36431872,-745850766,1929702632,212231,954986356,47245395,-1174697125,-1070465011,-1957449998,-2692897,12098651,783831040,-729067474,1476706536,275946840,1575535595,146703,305989236,-117345280,1392965315,628363429,-1520681344,-1105300434,-74734244,1980017640,-1520648684,-1578566261,-1106611452,-41179812]},{"sector":4,"length":512,"data":[-218100295,1136575396,-1967115354,1958742532,-27900388,-1948200760,-2071253264,74585166,116117759,-788537977,1952374151,341492700,346559593,349050043,-208988964,-964428405,29852417,-352319303,-1946973427,164004861,-1190541437,1048576003,1963372356,508777767,-1354424635,1128476555,-1977171917,-985970939,-1948843661,1001137872,-687770683,-354303429,-1017292001,-1012521229,-41159797,-2096052605,79237319,653524224,-1950090074,-2080535565,-947710778,309524,-1507396611,-1977170948,-1977217977,270863462,-1008715248,357009958,356923942,-1744386365,113641125,-134175335,-1878591549,1946159269,392554547,-1173947672,-773285532,116516930,-1517287689,242483201,-1549581407,1304339265,-1555447901,933340581,-1556365661,-1516031041,102033573,378156724,567083100,1962934077,-136186092,-1506892829,-1506797943,-392727622,-1394064756,378258182,-91511404,-1517142525,495377202,1320470835,495329741,116788082,1950393683,-339135740,984633107,-1517154677,-922007223,-16054664,-55643395,375437507,2008548331,116852246,4236688,451413364,-15275264,-1911655728,866322182,-388002817,-336068238,228255748,-1899821063,866322182,1894317275,-1961987584,7792875,1575488882,-336169986,1226994,-1962415111,130426589,-2084308991,-4715284,-326414336,1342188216,1345202872,1342562024,280614027,-850480128,-399740383,280624635,-850414592,-402296287,-219415057,1024277480,309657618,-16744832,-175436684,-1431503989]},{"sector":5,"length":512,"data":[57982986,-1611007765,-1642806141,126494403,108265788,125108028,-1014774792,-101782762,-255981885,323807385,102634610,-141883617,-1398341441,-525680630,-1105262854,-1022908672,5572294,1527170815,1438258688,-854477824,1927335969,-1173624034,313786453,-523230771,1369444722,-1742304603,583279269,983931174,-1008437820,832815155,-1556896861,-1549584989,1235460929,-1555323997,-1505542528,-401902592,108199990,-116616216,-924314133,-401575170,-186121431,-20781054,-320338574,1039592194,141819906,1946161725,200014083,-1557053821,-402426880,-1007156151,117870086,-2080427101,-1079668698,1929341416,2156577,1929345256,-1557749489,406701867,-401706496,-320143346,-16398810,-1517285757,-1022887872,849692350,196717248,-1398476032,180781994,-930437723,283213997,-1515905163,-1517287689,74776577,-1012219853,184981480,-32607040,-771444276,-1429992732,-1413467197,-1429668181,1124517571,-1007157082,-372125813,28895697,-136260864,1946157767,-1878652666,-150541403,-1878646320,1455683749,-1516763450,74943232,-1409285702,829734922,41233724,-1145066422,440732,460697330,-1048325641,-771641338,-1744434976,550565541,-760899322,-1726609182,-389157979,-336002020,-1017186303,865962431,274852041,1962934077,15640,-628419723,1946500992,8775687,-437581966,-352264216,1398195168,-1157335157,76195395,242597898,1124403142,1124140998,1124206534,-768459797,1958742700,1965898804,-1400851965,-1180909121,-1359871994]},{"sector":6,"length":512,"data":[-638116747,-2147040893,91555577,-1517285757,-2000025087,-75414769,41133722,-396636949,-336002148,509445,-1017186213,1459557864,-1979418741,1958742532,1950891018,58648582,-1576735751,1593353124,-1957211709,-524352953,1096093,-2119175428,782099183,411276799,1690523999,1679313943,1679254551,1679254551,1679254551,1679254551,1561814039,-451416553,-1088978156,619226430,-225727741,-1073042772,1052441205,-851725147,-1957182687,-1178586370,-1359806465,-211824137,-984169562,-1763179401,113466906,-1559820658,-1557068033,-1556674817,117376117,-1960402119,-1960439481,100733783,370254643,100770613,370254651,-1022909635,512678284,2139136775,-644993535,116868212,566672,-2115488908,-1522614517,-1517287689,91488288,183039883,-1178586621,-218300417,-2144972882,1952251773,6076420,621201323,-1163575642,-1914136340,518206,-401403160,516096679,128003590,-1898410333,-2080666688,146344135,-48189440,-1958629645,-2081190959,-1392770618,-1878591690,1946165413,44623875,-502610712,-2080666643,62458823,-48189440,561295091,1120994113,-1427624272,-2081191158,-1392768570,-1878591698,1946165413,41478147,-502623000,-65075219,-1878591549,1946161317,-12785659,-1930943253,-1878591744,1946157733,28043269,1122505195,10545152,-1517287689,57933825,-402578712,-138150167,279285766,-148409088,145068038,-402099200,-119008669,-1341789439,171960352,-1173712920,-974612372,31844413,-401454360,516096479,-1559814514]},{"sector":7,"length":512,"data":[-964430965,-1536180479,-67106631,548447475,244138,-1070422797,116858794,2139536,1874724468,32237732,-1507522873,-323312529,1031989400,826180547,359923875,-1557315968,-1173848576,1843960059,-401806531,-1998056973,-1557225471,-22860382,-1012716274,117870086,652970915,269240054,-21359244,1028057240,-1729624330,-1173982144,971544833,639036221,-1995352437,648421654,-1995221365,-1163517162,568891614,1183524413,1958742799,634948424,-796262369,95536011,254077139,-812978038,-315430448,-2142191229,57828601,-2040206976,1057917426,1091996057,1317742233,-787422451,-773205527,-789982999,-1981184279,-1164359154,-773285574,-578091204,109971139,-1977179385,-12839609,-527820940,-321780559,254067966,-1507055992,-1163514462,-1444374102,-138213572,279285766,-397970176,-1125641945,-1557028608,-1517287689,611581953,-1555979952,460636171,-1555362165,-1555489141,-2013061144,-1566168026,-1011177939,1013901465,1476431592,-1163515229,1642633061,-1722369476,-398697496,516096123,-1559814514,269240310,1538262388,-402081560,1207369153,91492364,-1427612240,833800,132368939,-1628954448,536601096,-1878591549,1946158245,-397323504,-571997126,-1720665592,1497105640,-1482907301,-1557159096,6070467,91602954,-22865504,-1270872896,163103546,587646464,631440023,74943383,-1507510647,-1759050042,-1759135231,789512131,792626083,58131107,-1006655768,-1180485697,-1070464998,516139763,1397759758,27846738,1510929896]},{"sector":8,"length":512,"data":[773806171,-1354158337,108151100,41376316,1472405516,-1392705909,108314634,-1426069016,-1017121301,4241438,1048828046,522715210,645933173,-943744792,177793286,1864794122,645971863,-943744672,177824006,2099675146,113754007,471635838,243279595,-952067864,244902150,1863221262,243286167,-952067744,244932870,2098102286,113721495,539006846,-18237,-1549577821,378184615,-771096484,-889321612,-1628895253,420907520,1242675363,-855637573,1975520047,-2134640915,-478091148,-1202564225,-745911791,-855637573,190405167,-2139851328,-645431325,41210170,1405081994,79923875,-63261631,-1639334229,-218101063,63407012,-1426210766,179554186,838861753,-2131495196,-528076604,-490435926,1405091058,71681955,12080722,-1554793923,259203533,1107576263,1023457356,-844934214,-1558679007,-661937327,1085882292,-1553745408,74588621,108314939,-117412376,1048603115,1946198948,-1977830383,-2136780010,-853655318,-12837087,1889534837,-1549557085,-1549588831,4039464,-954698880,547595526,-1457615872,-1425619037,-945573981,-274486010,-1155011677,512295168,-472800347,-472790133,-1020536573,-1543634907,512467750,512336647,-1415339095,-1547631709,-1007115347,-1554964853,1962933123,-851528688,1359398689,-1577058397,648258344,1364444067,109971026,-617372759,-1556144503,-1555751287,-1555620215,1912603197,-1032838,1256738163,-395283967,1802633516,1735648209,-472780918,251716481,21232518,-2086451938,10700566]},{"sector":9,"length":512,"data":[-980758389,-388889679,1258295077,41141051,243975051,-315448413,-235486973,100787250,-1031036097,1912646632,-1582699734,100770623,100770625,244032323,512467783,503423813,236036937,503423819,236036941,166241103,855829248,1499072448,1465303899,-108268661,-1549590902,-470286542,954785419,-1014280192,594854155,-768360053,180079499,-1847331072,-788274185,-561262709,-607000111,-787234045,-561262709,1526730472,171762570,-989985678,1583333426,1445127107,-1946799273,465775614,-2096598319,-679280186,66251520,-1949232189,-1814131761,1583337863,-1946945597,-1949158438,103531466,326280103,1048631435,1962976160,65261835,648260382,-1007155317,-670831663,-1549066749,-1960443480,621114631,149622783,78764427,-880023341,1913647165,-255033123,-661923605,-1549328853,-472838030,503571409,-1960402003,1602954767,-1950091262,-1491194920,721973923,1940104478,1355020290,-919383471,-1549779328,-1559661312,-523131993,200004049,-1482424796,-774337629,-1950153749,-1551195688,-1552873981,-1553062153,-787234045,-1549463925,512483793,954770347,-1590595072,-146758777,-1952223706,866363166,-1877081143,-775351389,-774778397,64082403,-1949232189,-777804530,-1948134943,-391926498,24313863,1482251001,-1957604413,-1194292278,512442880,567124817,1068765554,102652505,522308895,-1053096590,-1007091340,-392710214,854079452,207743206,8502979,-1558444345,2126446592,868823965,136177874,1962934077,15678,1048668277]},{"sector":10,"length":512,"data":[-1661882505,-984212364,-2135983818,1966735740,41713675,-1207601920,1072365570,1578313960,1048825323,1946198812,112648,-351799576,470220597,-390534237,259198135,1034402209,393543680,-1505870208,-2096270080,10689598,166265716,463399196,-973077576,26682118,-1550375494,1827247909,8502799,865992895,-388877367,3999643,1445885184,-1351010619,1578288360,-1998007757,15623,-984212619,-1330677450,21248058,113643893,-1174235357,113743653,694053,-1083643042,28835948,-1407070935,1587951266,-392298305,-378206404,-1173606680,-1636526282,-1180626317,15783,1048611189,1946199614,-8591101,-1163512160,-68642988,-1272155125,6076951,-12836403,904398453,-5222398,167307344,1958805080,1029227265,141819906,1946158397,-11802365,-375966790,-1094512961,1824456833,868823965,116254930,1962934333,918902289,384348025,1824480786,113436829,-1729559692,272230414,-1505622282,-1173982206,-1997957292,1811986446,855638203,16890569,-844716354,236155681,28764191,-1507522873,113682086,-385771737,-661975453,-851181384,-2134706655,113707124,-20621,45619179,-1949158590,-1558065718,378122097,12103539,-841862334,587646497,512622766,-768367865,591298606,24379566,244002499,-2094095578,-5278914,-2094124684,11498302,690883956,783249678,-1351410045,773647104,-1351545285,-1959915402,-475041522,113716835,44913,690882027,-1263570674,1931595071,-9967357,1222887563,-13433058]},{"sector":11,"length":512,"data":[-233131952,1032935598,108331008,452951424,-936703371,637996617,-1373432074,113491,567099572,990736987,-385649215,994705274,-1023314495,-1207959109,567100416,1971372790,176351730,8502979,865950399,-388877367,-12778049,1027962111,175439872,865950399,93776082,1827223156,1460018701,-843644744,1958742575,-1224558557,-12767283,-1206290945,802010886,-1559945586,59973257,60098246,-1193593857,802010887,-1021376673,-385889560,548407711,503415016,5619463,866844592,-1431589952,1202325680,-1342174279,-1163201729,448046398,1438261709,-854477824,1554010145,1010828288,-1610255040,1090822937,1487288482,91537418,-342351686,-1536180461,1186912139,768421,-1070422797,-1741768022,1761654866,6037130,-844652870,192043553,-1338726424,18081824,-375896134,233321628,587646464,632947095,-1759140969,1364444153,1431787090,1504976390,567139123,1599932191,1532582494,8502979,866000319,80079049,3998131,-32869376,-49717,2028536692,-521645300,4188168,1527306984,880073482,-852293960,-1966962143,1981365502,82423810,-1506368959,-392593734,78722096,158527442,175304656,-342256966,-1718830584,-1883634709,873916569,-1274503447,1344392496,849601586,-528066394,883156018,-1744323930,506723305,-402252018,108135855,4030502,1776814709,-398544896,954925141,1191545382,812957706,91497532,-352303896,92940015,-1695827129,477413386,-402406525,121243224,1065355124,-336497408]},{"sector":12,"length":512,"data":[240584403,22544135,-924121249,-1161617657,-1578526460,-348278733,-350506994,-348213238,-348344314,108834818,1381435166,45404298,1599742413,431276807,1090789837,-1006638872,1052693042,-1593930843,1090822937,-1599391052,-2018860278,624855543,-850938714,-1729316319,-1262877837,860809367,977091,-1985659206,-1163516650,1038653676,378192691,-1031143332,1077690372,100796021,-1057053927,-1522418096,567101364,521012595,-1089893655,-678714050,-1422216104,-1432155488,-1077923133,1336582195,1947026664,1966816352,468403715,1947024556,90236980,-1398143628,-386798678,993789312,-2115438988,-1393462009,427035964,-143384516,-210499268,-946395718,26682630,587646464,-521600361,-1430244854,-402361880,31982661,80865285,-1398787138,91488316,-351968536,-1413467146,72673475,-402651928,650315555,1962950016,-1736787446,521013006,103974889,99582751,-471271541,-425724,249984000,-1516126457,721486010,-204372015,-1732068700,1642667790,-1340427214,1009765632,-1204849409,29049868,-1325157120,-1483949441,208806349,-1968726879,-1483038224,1055641738,-1207959109,567100416,1954595574,281212421,1390937461,-1272124672,1007734031,1007318531,-1274645497,-351220480,1085808154,-1948742144,-1979692522,520127542,41285130,-956425802,-1023409688,-889270530,856405074,1511050715,-930365389,129435316,281926450,281874356,-768408908,-1094512435,-1968399639,-1259523384,-796218362,-102620723,-1106829629,197066881,868823966]},{"sector":13,"length":512,"data":[832039122,1962934077,15644,-984213643,-1079019210,-1431525722,-92995524,-1643397282,1946277864,-1172641022,45655718,1914817853,-1193768176,567100416,1971372790,-851528692,-1736394207,-349081624,128012864,1409267353,-1959636248,1073789142,-855637319,1918524193,-2131348772,28836810,1394724164,855638969,-851528485,-102612191,-851069861,-851069919,-851069919,-851528671,85888545,413212323,57713408,1342272696,-1106829621,398393473,868823965,23718098,1962934077,15715,-1152296075,260812665,-1516302711,-1659388071,1963014120,-1340820408,1009765632,-1174047489,971741102,-1516298613,45115060,1081287117,1962934845,861516821,1025625563,91553805,-342380102,-1717847528,1504973803,567139123,1962950973,-1751991803,-2068184085,147188119,28337844,512303565,-1598380641,815196311,-1106829629,1975451777,868823965,14805202,1033909183,242548735,1962934333,1967030326,158598831,11803115,-341102928,2042517033,1074048175,775600298,-1442795349,1443687262,-1351010619,3975852,-1084294539,-1981244043,-385649664,868091999,-1587232864,567107764,-1779953293,621201403,-962579546,26683142,-955759895,1688610054,-1729316191,-402349336,516108293,-1559945586,57884288,-2096466944,-16550338,736694900,305051865,1049298354,109970315,801964941,52160543,-1559951730,51355942,1483558,51487014,697126,51618086,828198,352751110,-850807645,1286866721,57384998,-768400947,-1516423543]},{"sector":14,"length":512,"data":[1009752296,1024029951,24444928,1435712,-1657370173,797173925,141885244,1946157117,124931,587646659,632947351,312983,1033315747,225705986,-1516423541,-1507510647,-1759050042,-389855743,-1243086594,-1545054719,24468993,25028803,1442945512,-1092004885,26273792,-617351052,222080086,1027346292,-1006700683,1963801728,-339214608,-872522004,-1111882124,122546583,12576851,1959788123,24045763,1021894539,-544778751,-1664678202,-1712800256,-218102599,-33262169,-1952659706,-1403625733,91491644,-352209176,1048600310,1946197191,59173007,-1559951730,-1962730305,650130399,1342399906,1206387850,410343425,973175936,76157557,738288616,46629697,-1574518530,1074004837,-79787738,10626562,-1392801021,1946374120,1947024391,-202659325,-961888206,10274566,1049175631,-1899822244,-1901918946,855969566,3965174,-1581279884,178957477,-1157990976,102668482,778561567,-1092162785,65771996,1452925374,2943006,-141879438,-2029992472,1015031543,1308718336,721514728,-216070450,-1017241692,-342238018,-1713259005,1912604136,10283506,4319484,-1559951730,252087846,1375679237,-391358634,259260562,1195879758,-29017306,-498527883,-401806355,642187432,1979663674,1608507906,-1217111714,6613073,1031808601,-104041216,-1962467645,1340626942,1459940096,1493192168,-108529365,222068931,-391316876,158597190,-1409249560,-352285976,6482156,1006666472,-1008569027,-1409253186,-143343606,1006784488]},{"sector":15,"length":512,"data":[110019341,-1910070523,855969542,1031808767,-387025920,-169148410,48971184,12173362,-1011944959,777016862,-1559945586,59717317,1946172547,978343950,1174958596,125174842,871230278,855894976,1582842048,-2143501537,-2144594830,512643870,516268805,-1014824057,526112514,1631324907,2050754162,539755127,106123715,85888542,252087971,1390944005,-2082895104,-80018709,1364213618,-583866285,46367579,-2147419263,-336002190,-754667242,-1047772181,-1048327421,1002998816,-1259637816,-1675506358,84315654,-585701213,1482267911,-1173944461,216635196,-953767419,117440517,113465691,1220578384,-1591295858,78708739,-930357037,516097880,-1559945586,57818752,-227270912,-1264457798,841076027,142993600,8502979,865957311,-388877367,-12714749,1024881919,1349844992,-1351270784,-1089374970,-768369291,1979503592,-113383361,-1023339800,2033632598,135260335,-1653227682,-1175924173,-400198148,116786739,1963107906,-851725288,-388205791,54392788,1024095232,91488261,-352279576,-1738491389,-1020509208,1912618984,-851856327,-386632927,54392752,1026061312,91488261,-352288792,-1607222751,567089844,280579764,1914817792,1209436686,281212576,1404700020,-1174148199,32020579,-2118204628,-1653817600,-768358093,1039947496,427098112,1470116799,2033632598,1017818287,1593472256,-392336193,1952119844,-1759135020,-1007042509,1929366504,-1273465571,1931595066,-147134222,1946157885,343306,166200692,-1174148352]}],[{"sector":1,"length":512,"data":[-1444374426,113689387,-1996384477,-962190058,26683142,-1550375494,-1077700827,-1031101977,1077690372,100796021,-1057053927,170298026,-1422217053,-141877498,567101364,521062258,129651395,521019033,522939368,-391330982,-93061116,540853070,1027406708,742193012,993850228,154988404,171764596,571843,1948269740,-119363071,1948269740,-1327461870,-997807570,-1409109590,57942076,855171754,-1497126208,2088828021,-160169729,-1336871445,-1957211891,-17926,-234414586,-12204370,378078976,-323312091,721086616,234833350,1499399282,521061208,-1559951730,647444922,65552000,-402230272,-2034628259,49670552,942650448,1956841766,1949252612,1482439682,-1190737981,-1979711321,-402629610,863174429,-167479576,44450310,1001663605,326312397,1039538152,510918659,1946158397,-1481006311,-402617367,1068500573,-1191158337,-1426915317,-373047246,915079299,-1974557292,1048641348,1962977236,-6756347,-829725580,995291787,-1408011023,1962724840,-202684925,1979679208,1255574510,-225711637,1962031962,-1949398186,1961966578,-737753582,-391380825,-243991386,-737739194,1357573031,1144532656,940143873,74711620,162944,-1978436520,977076036,1048584564,1962977236,-13309945,-1007091083,-1275067194,1931595067,-177280992,195541411,-1966867978,-15144956,855078393,22841051,567098292,1552474994,94889985,1077315910,1048616102,1962911132,6078216,-852950344,-1815896799,-388287549,104529492,-210394359]},{"sector":2,"length":512,"data":[-2147431551,-28907450,-411824836,-62986170,-1180912705,-1359871992,28838261,199283456,-338367528,-1753105710,-385766679,-1073086206,870906228,-1976994813,-1247494386,-1810986752,-1157169499,63563943,-1163608130,-1077936129,-1375618985,1048588237,1962976447,10545411,865809087,-1530872119,-481882742,-1089586498,-1996065372,-207252466,-117203034,396494218,495667107,361449287,1973307207,-1153531688,57999527,-1593607448,101425948,539337506,-165252096,77797126,1048774516,1963109013,-1192064232,-1387266048,158646283,-388723888,-346543884,468277490,386332370,242483619,178461344,1017322246,-385649153,1793654599,386332162,376767139,1962946536,587646481,632947351,621201303,-385875049,-738262825,-1910628594,-2136799970,17006910,58787526,57941760,-372126231,-1084763206,-2135031679,-930436096,-1607537358,3973897,-1017139470,1946301928,-16783101,403097134,-1976696669,782443798,-1530980728,956745262,-1169031002,1625859263,125000405,956759598,-1090458714,96903725,1048587776,1962976825,149678097,141869067,2097153085,-657659643,-1863822613,352751106,-850807645,84315681,117319331,-970587286,225798,-1079890498,1354302773,-1527514112,-1962910529,5421559,901424627,-1155594747,12059919,116797003,1962911289,-714413821,-779173492,772147900,-1559548161,1220157198,668395671,869337577,84315849,-1587102045,1017970315,-33262302,1022880709,1374909709,-391317621,259324458,1034739850]},{"sector":3,"length":512,"data":[-227205088,553534663,1022094112,-32672478,-1394379571,-76209604,-622080514,-696971972,-1393063079,1962540520,1191544845,1191545004,-1040268802,574418411,-838987659,92802164,-1396572601,-160095684,1044172286,70801269,648808053,60163838,1023144936,1006924860,-972196595,-953807611,151230214,11725056,60276567,1359404939,-1409266247,443813180,1962660840,151403029,1007645859,1007907874,1006924860,1309046078,-346480464,-605902239,-346425109,1966881876,-388068573,1044183968,222037108,96865141,-1341733107,-352319070,-1329637535,115313570,-1410660594,-58662774,-2147126148,1031109884,-398557146,91553795,1848037414,117319171,1642595304,1947024635,1954298888,1971076100,-383842788,-528088399,-550815056,1962933123,1161307655,1325495807,128630834,1193642079,1947073664,-373162491,-2144927999,256062,-1967188876,1049175556,1723729032,-82384735,222079660,243858037,-2144951963,256062,-1094514930,-35085978,-1808399366,8503205,-1431516877,57937212,-1997018303,-1023377394,-1096719173,-4545345,-1375684353,3944397,-1517116989,-1517013365,-1505622330,1040631296,915079334,244032916,-695491182,1448168931,-1543742744,727426454,-888972834,113694347,-486496300,-391362250,141883506,117327433,-269768748,1979392488,1040645636,1967078566,1108246533,708575910,243271029,-402479550,108329596,-1559689670,844022901,1174701760,41225532,914949256,243901844,-1094474350,179044480,-386435904]},{"sector":4,"length":512,"data":[222035971,1307094211,1006925306,1324774715,1347559107,-1909567149,-2136799970,256062,116788597,1979646843,649222,1493192424,526014555,1048587971,1946198704,521019127,-1197297478,-661963520,1914642893,-1327985909,407340799,-1023403870,-1075306738,4275456,-8386444,-1173982147,1760139071,113651453,-1174300893,-1557227739,1491703589,-1757511427,57999363,-2147449111,235070,-1749392012,1023588355,1528941904,-661958542,-851181384,-2134706655,45637493,-18110,567136651,12066574,112959,-844745030,992703009,-2145946175,447100478,-1559945586,28850037,-18110,567136651,-1909576725,-1197275874,-919387648,567136651,87890923,58063104,-1157667351,-919403625,-850379596,57891617,-1946200599,-2030063400,430053447,860930816,1101855945,-92946422,-1017581269,1402797427,1431787089,1380982278,567105972,1270504281,4275607,-1014299532,119525771,1499357021,-389833381,1456209878,-1497411241,-1949748314,1017927617,-1442483200,-135549887,1604980144,243867406,1049208210,1599710612,773768030,-1559945586,58080899,-2130283520,-16550338,-1329389585,512630273,1923261189,516103939,512634450,-356867323,-851332093,70892065,567099828,42985562,65603270,-1161617664,-622291011,-383840513,-392365029,1381039966,-392657222,521076681,1512301544,1094557016,-385649408,199883775,85888717,-385417565,509019651,520494678,-392283202,1914697094,520494623,-386430201,31982328,-1172371965]},{"sector":5,"length":512,"data":[12059626,1914817859,281147143,-117345024,123674462,783553651,65676936,70854280,646505522,646448107,-356907974,-1261882621,1931595098,-1954288894,-851528488,70892065,567106228,1911096179,-1260876801,-400437954,915144163,1048773768,1979646838,1980155654,-336592893,1848016941,915144195,1017906312,1007121532,-385649540,378208398,12059915,1931595069,-13440765,-5187445,-1575467130,1723793432,-2134297695,58002748,-1325461271,1946433660,2084339959,-1431506316,1962243560,1094820869,222098667,1010908276,1006924924,652703100,234833350,243803721,-1991335579,-1962637258,1359285526,12110131,1495387452,-661937806,1200029616,1679896,84612743,84743817,-2010771989,1319200014,76035721,251493096,-839456481,-2114026264,226878,-955877904,-16550394,-876025345,85888046,-1944189277,-1899983160,594798808,-1196481350,567097344,8455879,113639437,-947871388,27354374,452621,520121576,-2118202617,-1657356544,-768358093,1025655016,125108223,1962934333,-400495801,-226096976,-1747775863,-1747642743,-392707142,-269999556,-49920,4008308,-1960479488,-1968209650,-1968209098,1370457110,112978,-18296269,1526676513,-1274448551,169987371,-1023314496,-1158245656,32020416,-1094456542,1220477057,868823965,567797970,1962934077,15623,602623605,567094452,-226039418,-1745547639,-1745414519,-392695622,-555212336,-49920,4009332,-1976994560,-1968207570,-1968207346,-1968207050]},{"sector":6,"length":512,"data":[1370459158,112978,-1897344461,1526676513,-1274448551,169987373,-1023314496,-1158274328,-1847027731,-1900025055,-2136799970,-50075866,65474056,516103950,512634448,-1070423291,65537670,74760202,57552592,-1262280872,102878508,-377092338,-1993411962,781791502,-1724705143,-392614726,-1022942900,-1170734920,567083100,783151755,-1727392117,772569160,-1727195509,-1959918220,-1952903146,-385894718,-1993465325,-1164450762,434673631,113716769,38884,1689914036,178593,-838895384,-389467359,-1997996175,-1587101963,865941183,-388877367,868425941,-1744913719,-1272911896,-1587234294,-402652487,567148365,1189660979,-178394881,-1079941442,-919364280,-1427582413,-1392721120,-76275652,-143390404,-4603058,-1950338305,119408382,-1359849476,-772339873,1459874495,1503982417,520494687,968882059,530903812,1364414659,-1672063150,-1507260730,-1694054656,872415149,88390080,-207104577,419874730,-945120851,11179782,-1794717952,-1107296086,-1910595226,-2136799970,228414,-1089440481,-315446119,-1587212662,-1527528962,-1079207490,548646171,-1382205815,113700147,-402610249,988345544,185168659,-401509139,216727579,-1507260730,1173506,82565747,49019037,1600059805,1482381658,1381061571,-392407465,1048772710,2101389973,-1946711473,-5597922,-1196780282,-2098681899,122144512,1334378496,41388037,-1390856565,906180489,-148134021,-1962707063,-1985110730,-141883017,-1390854517,-8259325,360557464,-201524949]},{"sector":7,"length":512,"data":[-1442795356,-1390854519,183236765,-352321096,178179,1600059805,-1017423526,1464947536,29882012,1048779892,1962913179,-1692497125,-1479165779,151001320,772343663,-107107689,-1784608533,-1382308950,1499461789,1354979419,196330378,56353782,1405326275,1465274961,116825173,1946396631,12839171,-1174316056,12103071,102878490,-1930366488,-1985099258,-1985098690,128831038,-1107263301,-1662475731,-1948880382,520538070,-392724050,-1073020491,-393516172,-1952305729,-1951935178,732420110,-2093304626,91357945,1946248248,-1558601720,-341098236,-2085901051,537658089,-360656758,-1378836384,33129386,1236011634,-1378875846,1312890484,-1191736490,567101184,-1604387189,1031843280,-2146864128,57933885,-1426527417,41223224,48449862,-1461082893,-687409664,460653735,378223543,371959768,-1031690283,-1175936467,-1612150016,141946123,871592862,9365952,-1952305729,-1951543794,112053302,-1379256577,2088773127,997535234,24936486,1362392378,-2012968410,1149904389,21334017,-2001874784,643170885,-897575798,1625980960,-964429941,1191229443,-1847057971,1324418041,-2090926453,123274182,-14758357,531483190,-391467780,276099214,-1542986935,33129289,-1608519817,216772048,1327491042,984469664,24444741,-1378697558,-1431516877,-92946422,1570620811,1499094623,-1336884389,-216995793,1555040116,1487786146,-1378835773,1364443992,-1672063150,-1073749016,915123483,914992590,-14766644,531483190,179095858,974419136]},{"sector":8,"length":512,"data":[-401574713,108326942,28419242,-919409429,535292842,-1378994551,-1070344054,-1390674047,-794812044,1976109741,-12240379,-1951792780,178957554,-1157990976,113749275,-1736593889,167776488,-1660652325,-1660752904,1516199673,1371757401,-1672063150,-1090876590,-768365089,973176192,361367669,-2132811136,12075242,1512164679,330910834,1308669952,1232216525,-1378810170,-771308032,1172832429,-788121088,-1575780691,-1111577135,-1378697299,-67105351,138192115,330893940,1325447168,-629988915,-2136092256,27757374,-1952443788,-1378770265,378211051,-303518177,47132,1516199581,1448592217,-1090518856,230272445,-1359807488,-276613515,-1666728443,1973929867,91596552,-352319304,-1091007709,1973918891,91596552,-352320328,-1091007725,1973918895,91596552,-352320840,47107,-1484046720,1024160769,108265472,-1196979294,1599995912,1364414659,-1672063150,-1484060986,-719942911,-666989657,4030631,-896843660,-1478881789,-1337864405,-1359807442,113641955,-1342134389,-1951469056,-2083902513,-885324565,-24437633,-201526645,-1958838108,175440295,1068542543,-1330992470,-123885056,-107150613,1499094878,1405311067,1448563281,-1014916011,78710099,12118995,1914817864,115903300,1153024142,-1090571515,-1527535659,-1433071989,-708919245,612125095,-1964451445,-711488516,651570087,-1752492151,-701782056,56068390,-1478584437,-1993943509,-638908073,-339375353,-335962876,1576574210,1499094878,196723547,6143488,1967078572]},{"sector":9,"length":512,"data":[-2080775678,796197113,-392690502,-2135024728,-942241024,-1207928828,567086090,1961101997,-265623321,1929518312,3982081,20773748,-267523940,-1261341283,6076947,-1057087027,-1343749004,-773274642,-1477946650,1048795886,1964152613,621201158,-385875305,434697079,-1172654872,567125243,1555698100,-31339264,-1093438272,-876632836,-1559584604,-269621078,-1158693144,-628382402,229248,1204159605,378077186,-323312091,454748312,-1985688646,-1163516650,233347308,-1744717285,-1206188056,567086081,1929481448,3982081,20719476,-1125449100,-71691340,-31339100,-401181248,87942744,-401902336,1038675815,449767654,1642660843,-1172654849,567125243,1555698356,-31339264,-385649472,770244473,1195494,1458111348,-303240989,-1007733016,1912642792,85888533,-2147060317,17001998,1848017091,-373031421,-108989777,-1173785600,1843921026,-284300817,-1559945586,57548426,-478142706,-1733772799,1659380459,855750656,91556978,567083442,-841862461,-109001951,851735808,-1977496128,-1735607590,177781182,-1107069477,-1957521226,-4805158,-2095371544,931726787,439543898,1991,2091203,1915617720,-855411446,-922827999,-2134695475,-2089484039,567104692,-1699030902,-1094849640,1017905281,1023112224,1022850057,1308718141,865924287,-388877367,-12772907,1026585855,74711040,669763723,-1351205248,-1190824449,468385802,101367859,-1080250506,-768369420,1025092840,74842111,132905117,-1164064629,-1007052695]},{"sector":10,"length":512,"data":[118380294,-2046815256,588155378,622234009,-1726760295,1595514856,-1581268217,-852839259,1381079073,-422449013,-829689853,-1231561567,1894275071,-251437286,-218102855,-1442795356,-1966909094,-1191824688,567108899,-1547684925,1470342695,-1499225177,-1549589342,547595050,-1485069405,-1566162781,1067623205,-1499290970,-1566162270,1503831717,-1505844569,-1566137950,1520607719,-1558666585,-1549337181,1688446818,-1493196121,-1549309278,1755555686,-1486970201,-1566205278,-1197300325,-1558010969,-1566368862,1537386336,-1486904665,-1549586013,446867292,-1499553117,-1566138461,2023925623,-1493130329,-1549384797,-2069649754,-1522621531,-1566245981,-1555519647,748856986,-1499618653,-391758174,-2118252760,-30690560,-962087162,27666694,12578099,-1657370201,196602021,1627848348,-2134378841,113640820,-167663776,57999815,-150961431,1946161349,570881804,1946161315,13467908,1086715712,-149326848,1084432902,-150440704,-2136792570,-2130414592,-968884019,10974726,8439287,76164468,175405372,108288316,1073794433,80092651,116868640,4236066,116852853,8430370,-847182732,113655808,151103350,161685550,-140303826,1954489285,62430474,-393615360,-1645201687,1542010226,796040703,1971374070,453443076,2074171043,-1493123417,1136641579,-1547238490,243836480,-213801409,1111394468,537315238,1577058467,-2130761239,27746366,1048581237,1963041563,1631485965,108331687,-375959878,1621100522,-1558535513,-523181872,-1599645278]},{"sector":11,"length":512,"data":[-1073044709,632949621,621201303,-352320873,1979857933,-1759135215,-1759181113,113639425,-385706205,1052635055,1963015334,-1558601696,984891652,33638086,-1415167041,-1558182201,1187381248,1187381764,1189609472,25067530,-1340705534,1141258298,-2146536026,-1090386866,1187423813,719847424,41847562,1962950016,-1738491371,1161312944,-962038274,-2147352506,-402258866,580979213,1092003,1421087860,-1910627891,849544478,58237924,771864607,-315416115,-1291812418,-1493123285,-167111448,-176881209,-1558172151,574967,1048579189,1946198810,1594279429,1055392935,4515844,-402614295,1471808325,825658263,657885603,382920870,-2134901271,10689086,113656693,-1174300893,113743653,169765,-1507522873,113682086,-385771737,-18348334,440303619,192217251,614645811,-1557486685,-1985796702,-1079552202,-1581407769,135784614,-1499253109,1614708931,41222311,-315385365,-1487456629,12528563,159115431,-940118414,-152472448,-294321721,-2130725912,27630142,113641333,-352213605,-1694054782,1556021413,687912960,1015030221,-1592363776,-58677594,-1342016454,740297792,6070880,2011697588,1458084865,57974249,855593193,738625216,1958742691,833803,-1096448833,-1527536322,1520615474,-1556182105,-1522549082,-2132102424,10974782,-1914146444,-1499021818,-1264569409,-400437920,376768733,-1558561152,-1173392128,-706176816,-362944491,-375959878,1048577522,1962976036,56223810,1048580210,1962976026,2000584758]},{"sector":12,"length":512,"data":[1182072999,1048587755,1962976926,440303623,141820067,-1557854522,-21501695,1946212840,2017362059,57933991,-956365079,27469062,-2130772247,10689086,116787061,1946330789,-1731151351,-401248280,-924259849,440303616,175440035,1912718568,604423685,1048576163,1946198810,70445068,-1499592970,-352160513,8710157,113663605,-385834203,1048641326,1962911390,1463192333,-1623815769,-1643723098,-315359322,-1487456629,12528563,136571047,1954596854,29881906,1575546997,-398989058,-1197162561,567093504,-1096448581,1049339072,1323869859,440303622,91488419,-1487272250,-18355968,-385983767,-1070399167,-1549589342,631415594,-1623815261,1463191974,583847,-504822924,-22418947,116789940,1963108005,-1008465405,-1172655024,567125310,6077016,-1073077811,-1499021629,-1264569409,-970863264,10688518,-1150549832,-919404480,-855572038,-352160991,-1982297321,-1197015778,567105280,378079858,243902306,686532452,-941634584,-1499060986,654755494,1374159255,-46234860,57933990,-2147439640,10691646,1659437940,-43849219,-1493361013,-851181384,-2132639711,-1493231992,1048579444,1946199899,-1735804410,-1962653207,-1951990498,-1952242162,732113430,-401705526,1048576756,1962977118,638487397,512630435,1068802823,1914642893,-473396337,-12681135,125108390,-1486930304,-1961135104,708742097,102412451,-1559820658,1963437810,403111429,-785694301,235129483,243901226,238789418,208839462,-2147311640,10968638]},{"sector":13,"length":512,"data":[-1880420235,-1493221760,-2146995200,10688574,512459124,1052026621,-2134695475,10691902,547420277,68216995,512437876,1558749994,-117279742,517682115,-1559814514,1705927,705101599,1510393507,1554055335,705037223,1023767203,175374337,1963078376,1547600854,57999527,-1962898711,-1952015842,-1951964146,-2136514026,10967358,750006644,-506453555,-506338864,-506338863,-838144304,-852839343,-1125547743,-773224953,-790179615,-790179610,-2132356890,-703987499,-2091256438,931004667,-849935944,-1206226399,-768392702,567134859,-1197682677,567100416,-851528622,158554657,6351005,-352310040,192257298,8438519,518522229,-16454912,-22859514,-123525882,-1709274173,-4986714,-956299032,10694918,-1158878464,1102358083,1455628749,-1096320095,-970217728,61253311,-1499225145,-1499328888,-2002455743,1587979582,199804299,-389683197,-1023212056,-1481097600,-401509120,113761756,-1505515995,-1759050042,308471809,1996932803,12058791,-1505510845,57876941,-33507607,-1918404858,-945329354,-956298492,-1505557948,-972792692,-973011388,-972028092,-973076412,-973076156,-1929377212,-1196987594,45810767,112896,-768409674,857018600,201898203,3940813,222099316,-662029452,548982922,975293797,1953757974,-65652212,973501555,1970535702,1408994008,1945771656,45826228,112896,-848037190,-968838111,141818374,-346349107,16744632,-678775948,-849010504,783831585,178948,-4798157,-1427582414]},{"sector":14,"length":512,"data":[372922900,225735675,1945900602,113642100,-352278666,32241664,113689593,100771702,-1559951730,252087846,1094094085,571806,1912617704,2222102,642191218,-551287414,91576636,-1485437242,-1899821312,648217862,46481027,-336432128,1031808747,638350336,1949252992,-236239101,-117314568,855585731,1031808704,1360294912,1587999574,1359574105,-226492231,-370452050,-117314568,-1558535997,452688,436615768,113689507,-2147440802,10691646,-1712782476,27715584,1963196648,-12681191,309657766,-1558561152,-1756448256,401146741,1510393345,12059047,-1505509780,855646651,16890569,-1487257984,-1174178560,567083282,837292403,621201372,-962182234,26683142,-1560222231,113682074,-1962826972,1140898008,378020301,-1024022884,-1607240576,203727648,1604323701,1527122599,2048488615,1946724385,1140963357,-897518030,-1676244960,-350106202,10807565,-1486944570,1494122500,1048577191,1962977114,-1690402780,494141861,1963154664,-12681192,292880550,-392736326,113709132,41770,-1487010050,-1709274173,-2016857178,-475846130,1543962611,1514045607,896860327,-1910582733,-1264384226,522308928,1939290554,-11605757,-797652949,-1499724042,-164006784,547789830,1048578677,1962977113,-1200338501,-342311750,-2016267485,1107409105,1721967053,1746307495,406749351,-1670119261,567099572,113663858,-1021663382,-32518168,-2136791802,10691646,512444532,-75258214,-1959559680,-1951963122,-1951963626,1958874049]},{"sector":15,"length":512,"data":[1107343393,-919395891,567099572,-1486209408,1091073024,-1264096582,-1272853184,-383660738,1052047537,1136271821,-851331930,604423713,-1628897117,-22091272,276433956,-1576524720,609789787,-1486904828,-1487337976,178741152,1048626112,1979688510,-1578647796,-391758147,-2098724639,-2034224414,178691334,-385649216,915079309,-71326144,687913124,1015030221,-1173982208,1407817535,-1505517057,1950022784,-1975472126,212295438,-1570755552,1117824251,-1524200794,33695142,326418442,259376186,-1486864768,-33000448,849780230,872868800,-792452606,1611008744,-1558535513,-523181872,-2136516190,10967870,101197173,-922048673,-1073078923,243997044,333685546,856038064,117870335,128905891,-1991309963,-1146934722,1048618303,1946198810,-1517962493,-1952121666,-1180286914,1017905160,-1979550401,1948269575,-498882047,-1341935119,1946433568,-1439780846,1967078572,1007127042,-1442745312,854712899,-154948928,1963066438,-2083157181,-1202256446,1086024704,-1949748480,16890610,1935614413,-641275883,1946157629,212259,87891572,-384207872,-661924123,-851181384,-851528671,-2134706655,1190548341,1299448836,-2147133813,91488506,1950023296,-2143243774,-360701750,-495261600,-2115500429,-693114407,-1031547509,75401733,-2147031168,410322687,-1291684213,-27510726,1187382901,99287552,16795334,8644942,1963130752,4638213,-1561804032,-851725079,-1959169503,-1950338054,-1977202232,-1073068283,-466482060,1960847848,-989968399]}]],[[{"sector":1,"length":512,"data":[-1605374741,1187422986,-469106176,1161430389,-1442482945,16795334,100945536,-1023380248,1037633512,91488259,1962935613,4638304,75401728,1946470390,4638438,41323266,1946172544,942584651,-1287293924,-27510726,1187382644,843972864,-400783653,-700716763,1364597619,-225718645,-541529940,1001130356,1509257969,990636894,1508733681,-10732962,1001655924,478552525,-1645701773,-708056616,-1982478871,1182794366,1069026305,571694,-997807373,-1312520534,850064131,-1094473024,-1967151549,-849300320,-1607221727,-392131905,868475345,2067696064,-1484873049,-1968734302,861379832,-1710323511,2045291685,1008563681,1022784544,-2030930935,178749190,-152406848,91521223,-1516632378,19785985,91603770,-343879808,1963801812,18409731,-1559689670,401146741,943370753,-2145553132,27666750,703071093,22866143,22603948,-1485095287,-1484978490,11790592,-1485095287,-1484978490,691961856,494207398,1977718248,429936664,-398392157,984613166,1476471272,-1485095287,-1484978490,-558045184,401081972,2028710913,-1507246464,-402426623,775741140,117311861,113682302,1023387517,-2147257025,708575951,-813682571,-1220640766,74776743,2028676331,1048577972,1946199934,-1342000126,2099653183,-2031390041,-2046172191,13166817,-136126074,468246918,-2145290783,1048577231,1946199991,46659077,1049184373,117417851,113682299,-956323971,10976774,-1409246744,1960863720,1947024440,151403060,976123043,1009415363]},{"sector":2,"length":512,"data":[-385649606,1048641375,1963107881,7661573,-347678229,-11671276,-375966022,1622860727,-474879592,-107126962,1374375619,-2130587776,-394264371,-398008296,225762794,-1409268248,-2130689560,-348127027,1963801652,-1442795511,1073794433,736677611,-571283456,240211718,-1665941753,-2130704199,-230686515,-2129955410,-1195376667,-523042815,1599727627,-1442795513,-1007116961,117326250,784574333,-1637873977,-1993474048,782166542,-1628690807,-298415826,-1993409378,782127886,-1638594873,-953286656,10381318,113716736,40537,621201198,777870239,-1624832313,-953271172,1050618118,113716779,993894187,1930003432,-18413,495658579,1930377766,178179,19130715,1647741230,1431786398,-1637212531,1627846190,1131749534,168814764,2011708530,-399018999,410323364,1627846190,91562142,-351715352,116796966,1950457441,468405790,1007126574,772175165,-1637806464,149439233,-1396346102,1124567086,776912619,-1638451575,509486,1713277230,495658654,-1637206387,792494126,-2144455052,141828668,1627846190,1416954270,21465638,959374386,1939755782,1403072018,1138807198,651690819,-1998053493,778693376,-1638594873,1626013697,21465638,-784276430,651690976,-315486326,259311883,-1960422589,13035551,1128362843,787669571,-1638594873,887816195,21465638,-784276430,651690976,-466483318,54583505,260712152,-921965262,1396903796,-400585946,1935343709,-498908405,113716978,302677,777740125,-1638723957]},{"sector":3,"length":512,"data":[-1638555346,1463192366,378220190,-1976656295,-123839714,-1960423229,174343,-13761163,782127878,1962949760,108825,-953284235,43930886,1343154944,-4979792,1476435688,501744619,-104638463,642864579,839405450,1959332845,158305549,1929648616,976904,-335939870,780742150,1509465704,-2144943267,1946157182,-152353533,-2144419003,278814990,1929365224,645934666,1357880929,-1637572306,19842603,1486774790,1681296174,1015033502,774272256,989822080,-953284235,161371398,639625984,1946173315,133637657,309657601,1426507566,-352320866,9889801,-116528136,-1336931605,-385895421,-128450557,-1960421437,-1993472897,647911742,-2010774136,776995173,647915681,1476543881,175440188,72714534,105744678,37509867,-1993996683,1357579349,-395049156,-462157764,108332604,72714278,71057131,-1590816907,641769058,637814153,-351904372,1971922475,1301030404,-165261306,1946223175,-352014332,1207313929,91488770,333972144,-165259263,1947206215,14870531,-970013857,10432006,126559824,410370059,1465013072,1426507566,-1275065954,-402411265,1516240731,820729947,1947205801,113716754,40533,771981544,-1638580605,-1457949431,393480192,1426507566,-402653026,-2094136178,161371454,65733237,-1450151957,309624832,1426507566,-402653026,-2094137041,161371454,11097973,772961344,-1638594873,-186122240,1048784384,1963564629,16820544,-953281164,10376454,94169088,772153320,-1638580605]},{"sector":4,"length":512,"data":[-1457097463,309592576,1426507566,-402653026,-2094135934,161371454,11079541,772437024,-1638594873,-488112128,1048587777,1963040558,1048784399,1962974805,113716743,630357,1448133464,168069678,1008366784,772633914,97408,-970062219,166395908,1929832168,-347716095,-1017618721,-796241322,-402355666,208799443,208977930,771755240,32179336,-387234234,1019436634,1007448960,1011184225,608270202,1396567007,1049450246,-92233952,-1929087996,782179134,393483576,240275792,-1973046265,-17470,-1174403655,567148543,777541978,771841419,1124287886,645934147,1527209943,-2144448317,-2137104114,1629913134,-1976631906,1948990468,1965898762,243281415,1174576737,1476395752,1381060803,868823894,-1976675374,1958742532,15853634,-466470542,-489559925,-756493871,-1960021504,-775844902,-388902430,527564997,-774774063,1912650984,332595990,11790536,-721220238,-402599549,57802921,1539042118,1526762985,1627846190,175375006,-755510793,-2097036669,-1960443695,-1977219465,1962949636,-1274957817,-1871385601,76162630,1618214972,116796998,1971363425,1278944798,2000056835,1413162502,640578049,1996966971,641364520,1996837947,640871200,2080590907,637959960,2080461883,1278944784,2081062663,1413162524,-352157947,164004628,-1250572034,1426507566,-1342175586,-335563775,637644818,199959690,1426507566,-1342174818,-385895421,1516174583,-1664919463,1627846190,41222814,1889387421,-104597502,1915763907]},{"sector":5,"length":512,"data":[2000239624,-131060732,1355020739,643256915,637960075,-1073085046,-4979595,54283499,642203509,162792842,54584566,92940024,-453638732,653787968,1195836810,-399668442,309526578,-33306749,787576264,-1638594873,-4980728,-1977215765,45154149,-350909658,113716747,630357,61931444,1610378984,-1017619622,1448236368,-1976696142,80078852,48774258,116797182,1946721889,1966947341,2122327583,1903493121,-164752405,278814982,977014388,-2144990603,1962934398,1558922844,4602406,-1073078923,1162236532,975573995,1165295686,76164678,1178216005,1178236160,782756677,-1637808394,638547008,537020407,638022656,32384,-148495756,1946161159,1966750744,2122327561,225771520,3935979,-2144991371,1949958270,116128003,1681295662,1516173470,1354979421,1398166097,11200598,113716830,40723,352765742,771752095,-1625880889,-1377304576,773353984,178197411,-400919333,1852965024,-1625971922,225762058,1912640488,396570209,1977289375,512437849,-75260175,774009858,178197409,-1975028252,362884808,1977879199,786991677,-1625876853,1963064195,-337017342,378220057,-1590780141,-469065963,-930471819,-1625841362,376824842,-92018550,-2130414748,1527213250,-1325419426,-81139705,1583026411,61931444,788209384,-1638594873,1499070473,915260248,-2094096655,41221948,1377701867,-1205924272,-695519232,1515725261,1381090079,-1976645325,1958742532,1048587836,1946197744,33259535,977011829]},{"sector":6,"length":512,"data":[775696500,216738932,645147964,578039612,510930492,1929242344,-1862224866,-150992198,1976699874,1925251857,-347696882,-120026435,-129628693,-1946615317,-1017554239,1448235344,-2048371117,1156984575,1969094929,16902147,319211310,771752095,-1626011961,-953286656,10426118,113716736,40729,-267991506,28508574,1929342952,329461341,1960512159,-10295201,-1557245838,-620060907,45306484,1929335784,396570177,1977289375,116796982,1963105888,915091003,2088803927,812985599,788481222,1611056942,771752094,-1637872000,244002306,-1959878934,782167078,-1628555637,-386412823,1601371920,-1625709778,1467341578,-1626103506,1333126154,1611068974,141820318,1131875388,-1070464395,1627846190,208929950,141823036,796003332,729225276,-1590767478,-469065963,-259382923,-1625841362,393602058,-1590769526,-469065959,-393605771,-4956581,-1461188432,1527835641,-1325419426,-107091965,1426507566,771754398,-1628436794,1482250752,777408707,172360842,788035008,217990282,1953512480,1952529433,1970093085,-1976676828,537722436,108294204,175399228,-2144463893,77488398,-2144467221,27156494,-29047250,-1017618944,777410384,-1637728629,168069678,-401378112,611647583,772195886,777912735,1593836742,777928683,1593836742,17299238,775058688,-1638594873,703266818,-1976674728,1958742532,3008542,1760037748,1191342849,-347715770,1537355497,80096926,-1993455872,1587435326,11098207,1342796802,95485876]},{"sector":7,"length":512,"data":[1492703976,-1924049981,-1180752610,976093193,1124365319,1497495778,1381024603,168069678,-398953280,745668895,24937262,638481466,1050615,-2144461196,1962934652,1008733207,1007776353,739080058,-1261401504,-402214657,132905099,1426507566,1509951902,-391330984,410255394,1962954728,116796950,1948294753,116797165,1950457441,116084233,-134091783,-1007107250,222056787,3942772,-2144983692,1912734333,651899678,-2096931446,-2144992061,225706041,-1977169613,975586057,-503024639,1494039800,1364443995,1527170606,-2144460642,-543268570,913580092,846465340,829697084,209002556,1965046912,1176547335,518766650,41779238,857174529,1300899529,1959332611,244491,20588099,-119404684,1532567612,1537355459,116797086,1963040353,243281414,975216225,-1914180672,1000237614,1008366813,-116165329,1200238160,-86906625,76154226,1492830952,-336064789,1966029835,243281414,-129982879,1398152899,1581155118,661979294,1381047888,856053079,-1193373962,567108352,-619979892,1516199175,1951932249,914959913,-1993433508,782130718,-1638123893,1579060782,3965854,70914164,1144653938,-117213439,1178994155,1543039979,-389865634,-389810963,-389286679,-389349360,-1796734964,113755092,172081,113706731,106545,105993040,1448544030,-1140406446,-1962934105,-1403998734,-315438966,16352088,-1094753932,1364285351,196730507,-156962048,1946421063,38258442,1204224000,1493172228,1348068834,-1759297920]},{"sector":8,"length":512,"data":[-972262145,27768838,865543615,1487580096,-1946711201,2139312606,158662660,67586038,1334575989,197362436,-1957040926,41910750,125150757,-1507518837,-1962780791,-1969213154,-1969806314,-963173578,9905158,-1759312186,-402252033,520553045,-1130167437,1600019111,1482381575,-1480835453,-1023314688,1048774414,1963106353,-1469257469,-1901609823,648217862,65537782,-402098945,-2034573907,-972297320,26682118,-1550375494,118396709,1406613225,1526728936,-1092070973,1354979584,1460032083,-1047606989,783875891,-855592430,956730415,926845343,305051807,801964722,-1623128436,-1623245175,-1307431240,-1943024380,-1986047738,-1197519042,112333358,109850573,1049206581,-471294157,822512701,792627615,1292274847,1262389663,1039263903,-1622866292,-1622983031,-1307431240,-1943024376,-1986045690,-945858754,228553222,-1157183990,113714335,40823,-1619458361,1021837322,1530825021,1042591,1594323704,1482381831,-998046485,1355020554,12066390,505531747,141696775,-1620363639,-1620244852,1354979422,-397060346,242352149,-117440896,520488052,521011947,1599993739,1455642631,871773011,-98103,-1131739019,-544497829,-956946965,-1006078974,-1935720516,1025043395,225574931,1996498749,1270662152,-339506017,800900102,-2084336481,376831995,1979711104,216791299,-1197508701,29229055,-118082816,-75297557,-402426880,-964493228,108197892,41273611,-2137219093,695534078,105993554,12079191,1009765637,158685439]},{"sector":9,"length":512,"data":[45668491,-349188859,91486465,-346486945,113541894,1560284392,-821957798,-268274,1472421467,-18096,-1359822798,1481232887,-75250849,-2095221503,-6334658,-12773772,1342928383,-6326367,1486837534,520029419,451649367,-25114317,637957375,-352105078,892874249,-1976695691,-947715251,762575108,1959332856,-98279,992347508,772008709,41223483,1950943723,80184069,1928979435,-98292,235042296,2097358343,839283202,227157741,1896269383,1354956959,1465209171,-376745466,-1620107639,-1619773816,201245928,186873033,-402295315,65732655,1912715752,250108431,173999873,-402426670,82511397,-116996989,1594295531,141752666,-2091165347,82510532,-116865917,1381191875,-1620107637,1979710339,2942981,2011694059,-1274055936,47961,-466476595,-116996989,-75296533,990606591,-402164543,-998047568,57866502,-1017619622,-2095118818,460653049,-1977220428,522308885,-1310145910,520494592,-1977219213,567083349,-1274024968,1959332610,361375241,1229398477,536408949,105928643,519736147,-1327920377,-1359807462,-651492491,1540066123,-1017161721,-921976781,102649716,-1958693857,33129431,567093365,-1977200609,5957637,520494680,-1258813837,567099968,1031808668,-1962773222,-821957695,-268274,1364531947,-1946179864,567106025,199950963,125093947,1979246651,1572965122,666419999,310016,-2134703691,292880382,1971373814,-1928913396,-1180732866,15204354,1460061183,-1620361532]},{"sector":10,"length":512,"data":[393543435,4031270,638612728,124912954,21314086,1207501175,1609165639,110084871,-617373835,922194579,-141320327,-2086700746,91621882,-348667264,818053123,-1073004206,-620034955,-108840588,-2146601725,1965820540,-2110324987,585843103,1963456899,175931405,-16419540,1100972598,-108850965,-2146732789,1965820540,-2110324987,865288607,866642898,-4181038,-1012959946,-921972173,632562036,942014640,638219557,1946248504,1975794180,92939790,1946113000,1111967489,1457747273,-317994361,-2092092556,10450750,1149905781,640680966,1963017530,1008659202,184841520,50623698,-2132284620,-6327234,1111623797,1330596169,-4586517,-114599937,1610484456,-385649831,-1957625716,108822730,185431040,1225159881,-347650231,283860481,58050827,-2096501922,41287673,-16004813,1465214068,-919383802,-1619575165,-163875584,1963919172,41731080,-352232728,121959976,-166956019,1947076420,121959942,-1006078708,1760035452,-166794495,1963657028,36038661,-454556693,5433346,552076267,1493660160,1583177479,-998046485,1048836362,1962975095,-385650171,113770246,40823,-1580059709,113745783,696185,1493075944,-1619294328,1090224963,-790101131,1976172032,168671470,-1619294327,-1058520253,-617364736,425088,-2016997003,757112699,-2017049789,1126211451,1560323816,-768353485,-1619980664,973685898,706639553,-152007999,1954547524,172263956,-1619294328,1090224963,2095580021,1976499712,142377196]},{"sector":11,"length":512,"data":[940405760,141756492,-1979167702,139234001,611633419,252134646,1156975733,108269575,1191545382,-2007498261,1134525319,1967192963,4319235,-596260354,-2147007242,-167110539,1149899892,2072479754,-75283553,-402426560,-822214621,1157033077,141889287,268911862,216728180,141873674,-1619720561,-126498050,1426064104,1460031939,-880081122,1049484083,1961402235,1594192636,82532615,-116996989,1156996547,309669895,1342540326,-44373951,-1977219469,-128974523,-1977217557,1958742533,-348043516,1442393077,-768385597,113754163,1089401,1157028659,611655687,-167409114,1963788100,1954588685,2133082883,-1619458361,1156972554,108334599,-1619458361,1424687114,268911862,-1960434059,121959941,-166759155,74744004,2145681475,-1619458361,1156972554,108334599,-1619458361,686489610,637897510,-167619189,1963788100,-2134444529,-2143091596,113737702,696185,235357430,113706613,696185,1074218230,1380985204,-1070450508,-1619323251,91431373,-1618868538,172263980,1482356875,738870470,-1946373144,172263623,-393214741,-619971416,-768408204,1431449010,113728963,696185,855667688,-2084555822,10451774,2112364149,9234432,-1618594049,-1967115455,2145912132,-2043216128,1149911455,7661572,-1619313021,-400657151,1743257688,-2043216128,-1070382689,-402373494,922681434,-1975410810,1340605764,2067694336,477430431,-402307958,922681410,-1975410810,937952324,-2043216128,501760415,2942976,951370581]},{"sector":12,"length":512,"data":[378339504,567123835,113707891,40827,-1618606394,1150010157,121959938,1023964432,58064995,-1023384648,-1619327345,-1619980664,1241246696,-1619980742,817366389,1094799360,-1619314945,113728963,696185,-167740696,1946224452,-1942061028,359989407,1006781578,1006926860,-1341751785,-348041119,1349562372,868234049,121960146,-1978960864,1709704516,-2076770560,1156989343,108339207,268911862,1149897588,5171204,-1618462977,54823489,-16759832,1100974134,-167623542,1946224452,-1942061037,208994463,41684284,3935276,212861557,1442535400,-1338460989,2065075456,1931595167,-1945712880,-973078113,983533574,-1618737466,110084910,243834747,770219889,238701051,91594609,1342189752,922698049,1371774843,-92266926,-1979156800,-1274075966,-1979520244,-1960900894,522309079,-133498240,-706211212,-1978960902,-840791352,-119436767,11797227,1499071602,-998046485,1355020548,-1912187055,866321670,228730560,211953158,245573126,113649158,654247440,-66698334,-1090514759,-1426913775,-1090514759,-1410136543,1482252039,1364414659,1340606034,40495104,-1064418958,-896806349,10495554,512435712,-636813311,-1960437643,-1912601826,10626753,503522816,-1014824957,512304641,-1047789565,18254630,650349568,204291,1019448899,-389647014,1510408222,-1017619623,-849870152,109970977,-1574526203,-1207499199,29054979,-1021195008,-1910580429,-1969027810,520503582,-849869896,509068065,-65075706,12314796]},{"sector":13,"length":512,"data":[792525428,-129104780,615263723,1968389343,8710161,84315654,113649315,117507597,1279056619,1877478261,1042432,-347156877,243715,133779022,-1396482273,1249196604,1912679144,34990155,-1645688694,-398364160,1017905222,-387353541,980680801,1946178024,1949252660,1965833264,16902177,1793596530,11462657,-1409277464,-999015620,1946172648,2942997,792465268,28838772,-1007071744,-117439816,-1007137085,512630352,1134600965,-1057087738,84315654,1134700195,-1017641210,108265532,41159996,1019415100,1007055904,1006793789,1397801737,109971031,-466443515,-970532725,397703,268843046,637957382,101713606,1532954368,272417624,-1007091086,508974931,84315654,85888675,272531619,58064646,168169634,-1978567488,-1191234856,-2044329983,168169863,-117345088,1600003847,1465107291,84315654,-1210479965,652464128,102860681,-1017422073,1048772608,1964008280,1643741212,-109049486,-2145355930,-2134681623,158482937,2001140096,938049554,821657795,-109049486,-2147190983,-104648471,508646339,868234236,868824027,1476839378,637536867,-1243083638,170947327,639006153,-2147398518,91519225,1968765312,1476839176,1174409315,210380358,-7149498,333975666,51212800,1926435777,-102044921,-129105173,-1017423585,-138245296,1919113254,1490062096,653775751,-746101928,-617360637,1371756739,-388823887,-754142830,1505889248,102651587,567104180,9216294,1962934077,32241667,1579091961]},{"sector":14,"length":512,"data":[-1591324477,138215425,1023898624,41156617,-1591343125,1396506632,1371756611,-796195246,1929365224,868257327,1002474697,-400002110,24510415,10495553,1952070656,650152972,198147,-339702208,650153184,198147,57918011,-1958098637,1499072449,1480491971,158666851,1040168168,24510463,1397801792,-1191355928,567105536,84315654,1117922979,2133133062,233328640,1539887104,28891146,1528941912,-1910586536,-1599929058,-12843504,28312949,168291321,-1341950784,-1021315071,102650192,1912801256,-54925255,117420008,-1559951730,201770534,-402194170,-12845015,-919396236,284787521,-1047916941,15984646,-402296313,-320142895,167775464,-402426432,520553226,516118617,-1559945586,520491168,508974019,-1559945586,839258272,102874084,-1023156016,531493003,1405311838,512630358,-466443515,-804904517,-1950153760,1579134448,-1912159397,648217862,117837986,-1910615357,-1969027810,520491030,1962932864,-36509693,105956186,1912634600,-22681567,719854708,-402426624,-1608122324,1513881600,-1064563596,50725670,-1064419328,1476911083,-1910615869,-1599929058,169805325,650336448,69251,-953761024,134217990,113714688,1229455368,168216358,642008064,788167,-953790907,536874502,642827040,67271,548929536,144909856,178464256,212018688,245573120,1354979328,-466464175,216584331,868257534,1959410633,-31856613,641794421,1006633120,-1945340838,100869824,-1908408317,-102569024]},{"sector":15,"length":512,"data":[-1017620134,-890744493,859403007,-389467173,661978607,1979675880,238757390,125763587,-1960393844,637534990,1006633120,-1945340838,100869824,-1908408317,-1898648640,197233603,-117344805,1354980185,-661979342,85888542,294095523,-1073078522,1364443992,-1931965690,244000448,-377290749,2010725152,378152517,-1960443904,637534990,204425,443942,-1023193856,-1950314944,1220750273,1476646,113714688,1,238374,639639736,637536419,637536931,637537443,-134213981,133759467,1405311833,-1047919022,1962903784,-389969365,611516222,-389969328,190578253,991524032,-1979222333,-68491071,-1662513429,-402033410,74645364,166445708,1458094475,856716799,-389969198,-770965928,-1030879884,134132712,1354980186,-52566010,-1064427918,1962941672,-23140349,40998,208951868,52871308,1073742598,-454311794,1354979335,106790,1962936381,144778786,1380334848,-1591338635,1329397770,638612826,1023413409,125128261,958758,1478500413,113714883,524289,134661926,642926080,657095,-953787825,1157630982,113714766,538968078,1381060803,-42997754,-796138446,-1896064280,-389467200,24509547,1959410497,-34871288,-1192754315,10495743,1952070656,650152972,198147,-339702208,1499072474,1397801816,132646430,715002,-99030884,1528760221,1397801816,-850217978,1200301601,650153726,1006633120,-1945340838,503523011,-1908211709,-1930630205,-1610662464,-1017619705,-1910571214]}],[{"sector":1,"length":512,"data":[-1969027810,520503582,-849869896,520040993,-1559945586,104996490,1476507679,516104653,1304583,1978142322,9955328,2145912434,-951195140,-1094213911,503709825,-117446649,133805032,37558131,-1174047488,-1007052377,1033479354,57933827,-107372870,125123,-1574060093,-1409285959,678701628,611598140,376704316,-1559689670,-1073082252,540806260,-1073084300,1101661300,-1070408213,1959332778,-1007137272,-107374406,-1717454141,-2118138887,-20368896,-22369079,1958742721,1963801604,243803892,-960298880,26682118,-1550375494,-1581017307,-1152865643,-470351861,85888542,1125026467,-1040310522,1346968547,-1077376175,-141842475,-66337149,251634931,187542165,-346531584,-815535901,208977931,2080375869,-1161562110,116103573,-402652488,-1007026263,-1156184321,49021948,49808375,51905516,53347330,54395911,55116811,55837734,56558596,58524693,60163089,62129170,63636499,65471466,67830763,69403631,70910960,72090609,73204722,75039731,76547062,77399032,79889401,82052090,83100667,83624957,85328894,87622655,90244096,91489281,92800003,94700549,95618054,96338952,97649673,98829322,100008972,101123085,101975054,102958095,106693648,107807764,108856342,112198679,113574936,114492441,114885658,116655131,117507100,118752285,120980510,123274271,123929632,124650529,125240355,125305892,125305893,126747687,126682152,126616617]},{"sector":2,"length":512,"data":[126551082,126485547,126354476,126813229,126813230,126747695,126682160,127075377,127468594,127861811,127992884,127927349,128189494,129696823,130155576,131335225,133891130,134153275,134087740,134874178,135529539,136184900,136840261,137954374,139592775,141231176,144180297,145818698,147457099,148636748,150864973,151585870,155124815,156632144,156632145,156697776,156501268,165086504,169018665,176162108,181929277,188155198,197461328,199034232,209061241,215680378,223217019,227149180,234554749,241829246,245958015,254608780,263456160,269354401,277743028,284100021,292488630,297469384,306251209,308020682,313066955,318703052,326763981,334628302,344196559,348587472,356713937,360777170,362350035,367527380,376899029,378144214,379848156,383714800,387515908,393414149,400229894,403899928,407307801,415237658,418121243,420677148,424478237,427689502,430376479,438109728,442893868,447350336,448988737,454231618,464520788,470025813,478283350,483001960,485754473,494143100,498534032,500762276,512165560,517342924,523110093,530384608,535168756,541984520,546834185,552339228,556795677,565643056,570296132,575997765,580388678,588384071,598804296,605292361,612042570,618596184,626198361,634193754,639633243,650053484,651364224,654247809,664340354,676071299,684590980,692717445,701106054,706611079]},{"sector":3,"length":512,"data":[540091663,1702132066,1919295603,168650085,1818838563,1633886309,1953459822,543515168,1768976227,1864393829,544175214,1702065257,168650348,1936607513,1768318581,1852139875,1768169588,1931504499,1701011824,1225984525,1818326638,1663067241,543515759,1701273968,1225656845,1818326638,1679844457,224752737,1850281482,1768710518,1769218148,168650093,1986939150,1684630625,1952542752,554306920,1936028240,1851859059,1701519481,1869881465,1852793632,1970170228,539893861,221126702,1851071498,1701601889,544175136,1634038371,1679844724,1667592809,2037542772,1445005837,1836412015,1852383333,1769104416,622880118,1634213937,1869488243,1650551840,168651877,1819235866,543518069,1679847017,1702259058,540091680,622883689,520752434,1970040662,1394632045,1634300517,1968054380,1919246957,544434464,623718693,654970162,1819309380,1952539497,1768300645,1847616876,543518049,1713402479,543517801,544501614,1853189990,453643620,1635151433,543451500,1752457584,544370464,1701603686,1835101728,436866405,544503119,1696622191,1919514222,1701670511,1931506798,1701011824,1175783949,543517801,1634038371,1852795252,1920099616,168653423,1952530964,1713399907,543517801,1936943469,224882281,168632074,1702063689,1679848562,543912809,1752459639,1952539168,1713399907,224750697,1631721994,1868767332,1851878765,1919885412,1818846752,1634607205,168650093,1667449104,544437093,1768842596,220226661]},{"sector":4,"length":512,"data":[1866672394,1852142702,1718558836,1936024608,1634625908,1852795252,1936682016,1700929652,1701998438,1886348064,604638585,1635151433,543451500,1701603686,1701667182,544370464,1701603686,1953459744,1970234912,168649838,540091667,1701603686,539587368,1768976227,168649829,540091659,1701603686,539587368,1986939165,1684630625,1769104416,1931502966,1768121712,1633904998,1852795252,1126566413,543515759,1701273968,540091680,544501614,1885696624,1684370017,1919903264,1937339168,225273204,1866672906,1881171300,543516513,1847603493,1881175151,1634755954,543450482,544370534,543976545,1769366884,225666403,1665209866,1702259060,1685021472,1634738277,540697959,168636709,1397509655,1129207110,1953459744,1936615712,1819042164,168649829,1920287520,1953391986,1769104416,1763730806,1869488243,1852795936,544367975,1768710518,1632375140,543974754,544501614,1853189990,235539812,1953397075,1696626785,1919906418,1125583373,1701999221,1679848558,543519841,622883689,841293873,1393887757,1867345525,1702188142,1415865687,1917220200,1952535401,1953383701,1847620197,1679849317,543519841,691086632,1125392442,1701999221,1948284014,543518057,622883689,269094193,1702129221,1701716082,1769218167,540697965,538979346,1698963488,1702126956,794372128,1010772302,543976513,1701603686,1852383347,1919509536,1869898597,1998616946,543976553,1679844706,1952803941,220292197,1701986570,1970239776]},{"sector":5,"length":512,"data":[1920299808,1495801957,1059671599,760433940,542330692,1936876886,544108393,623784229,1850282802,1768710518,1768169572,1952671090,226062959,1850291722,1768710518,1634738276,539781236,544501614,1701996900,1919906915,168635513,1679848047,1667592809,2037542772,1953459744,1886217504,168655220,1937067288,1886593140,1718182757,1313808505,544370464,222709327,1766068490,1952671090,544830063,622880367,151653681,1344302926,224949345,1850285578,1768710518,1919164516,543520361,1931505257,1668440421,1634738280,168650868,1986939152,1684630625,1986356256,224748393,1329993226,1633886290,1953459822,543515168,1953719662,168649829,1953384741,1701671525,1952541028,1768300645,1696621932,1919906418,1920295968,543649385,1701865840,1126566413,1869508193,1868832884,1852400160,544830049,1684104562,1919295603,1629515119,1986356256,224748393,1380060426,541802821,622883689,235539761,1230128470,1763727686,824516723,1158416909,542066755,622883689,67767601,6710895,7237379,1920091417,1998615151,1769236850,1948280686,1701060719,1701013878,620890637,824508977,36775170,151073061,1144791050,540955209,52437024,34086920,620890637,1835862321,761553965,151026041,1831691364,2037984621,2037975296,762146093,83911780,622866725,824508978,824516615,841293856,1919501338,1869898597,1629518194,1634038380,1696627044,1953720696,168430963,1646276901,1936028793,1410664973,1818326127]},{"sector":6,"length":512,"data":[1818846752,1814066021,1702130537,168639076,1917134890,544370546,1969447791,1684370034,544106784,1769369189,1835954034,544501349,1769103734,1701601889,118099241,794385184,37707086,672091737,1953394531,1769303657,622880622,1376594225,1936291429,544108393,168636709,1397703693,544434464,1377857129,1141722447,1763726159,1852383347,1095583776,1397703700,544434464,1814064745,1830844271,1919905125,1631788153,1953459822,1634683936,1734961252,1633820776,543712116,1701603686,1276905997,1214538095,979920745,1986939168,1684630625,1818846752,1835101797,805965157,1852727619,1864397935,544105840,1667592307,1701406313,1868767332,1920233077,1852383353,1836216166,1869182049,1768300654,168650092,1634683932,1734953060,1226848872,1818326638,1629512809,1836410738,225734245,1699879946,1919513969,1881171045,1835102817,1919251557,1936289056,1735289203,1427442189,1667592814,1768843119,543450490,1953068915,168650851,1646280997,1428186209,1847607885,1700949365,1634214002,1700929651,1931505253,1768121712,1684367718,537790989,774972704,1948267045,774971503,538982704,538976288,538976288,538976288,622862368,841297457,544175136,540028465,1919252065,543516513,1886220131,1936942450,544108393,1769234802,436866415,1919252047,1953067639,824516709,1700341792,1867394931,1819033903,1493385001,537149774,2105376,1952797574,1919885427,1701602080,544436833,1702131813,1684366446,1381253920]},{"sector":7,"length":512,"data":[541272908,1667590243,1735289195,218762542,1163018762,1528843073,2082491983,1179012896,218762589,1886999562,1380065381,541802821,1752459639,544503151,1634738273,1701667186,544367988,1679847284,1819308905,1948285281,1663067496,1701999221,1109423214,1262568786,1952805664,1735289204,1057623342,1886611780,1937334636,544370464,1937007987,1701344288,1952669984,543520361,1701080931,1734438944,1970151525,1919246957,218762542,1128809226,1851465808,224226926,1879706890,1852710944,538976366,1667592275,1701406313,543236211,1701080931,1734438944,1970151525,1919246957,218762542,1886999562,1212358757,1998606403,1869116521,1629516917,1918988320,1952804193,1948283493,1768169583,1634496627,1752440953,1667309669,1702259060,1685021472,1634738277,1847616871,1700949365,168636018,1936278619,2036427888,1752440947,1634607205,1864394093,1919885414,1634231072,1936025454,1701344288,1920295712,1953391986,1919509536,1869898597,221149554,1124732170,1380533320,1919179552,979727977,1634753373,224225396,1145586442,777736777,168647982,541344610,1769104475,1564108150,1952542811,168648040,777733187,168647982,538970637,538979886,1701860128,1768319331,1948283749,544498024,544567161,1953390967,544175136,1851877475,1948280167,1752440943,1634738277,1953391986,1919509536,1869898597,221149554,-1861612278,1701869908,541344544,1986622052,1948269157,1768169583,1634496627,1752440953,1969430629,1852142194]},{"sector":8,"length":512,"data":[1768169588,1952671090,544830063,1948282473,1931502952,1768121712,1684367718,1769104416,221144438,1886999562,1145249893,1953068832,1953853288,1918988320,1952804193,544436837,1679847284,1819308905,1948285281,1663067496,1701999221,1679848558,1702259058,1684955424,1919509536,1869898597,221149554,1816337162,1936875877,1701344288,1919120160,778986853,168626701,223562819,1866701834,1936025968,1701736224,544370464,1701998445,1818846752,1948283749,1851859055,1701344367,1869357170,1769234787,221146735,1124732170,542724175,541142875,1110384764,1869815901,1701016181,1093622560,790658080,1528847682,1869815851,1701016181,1093622560,790658080,1528847682,774774827,542989614,1936024667,1634625908,1852795252,538970637,541142875,1110384764,1528847709,542987823,542715739,758063228,168648025,543689229,1970238240,543515506,538976288,1884495904,1718182757,544433513,543516788,1701603686,544370464,1701603686,1869881459,543515168,1768976227,221144165,790634506,538976321,538976288,538976288,1768189513,1702125923,1851859059,1129529632,1948272969,544503909,1701603686,1980370222,1110384672,538976288,538976288,1226842144,1667851374,1936028769,1646289184,1918987881,1768300665,221144428,1679826954,1769239397,1769234798,538996335,1667592275,1701406313,1752440947,1768169573,1952671090,544830063,795111009,1713402479,1852140649,543518049,544370534,543516788,544695662,1701603686]},{"sector":9,"length":512,"data":[774468392,541002253,542519072,538976288,538976288,1700143136,1768319346,1948283749,544498024,544695662,1701603686,1918967923,1920409701,1702130793,1868767342,1667592818,779709556,544475661,542715680,538976288,538976288,1968381984,1701998704,1936028531,1869770784,1769238637,1948280686,1868767343,1919510126,1870209133,1635197045,1948284014,1986994287,1920430693,543519849,168652385,538976288,538976288,538976288,1696604192,1953720696,543649385,1953719652,1952542313,544108393,1701603686,1913261358,758063136,538976345,538976288,1126178848,1702065505,1919950963,1953525103,543649385,1663070068,1768320623,2032168306,1998615919,544501345,1864396660,2003985782,1702127986,225337632,538976266,538976288,538976288,538976288,1936291941,1735289204,1936024608,1634625908,1852795252,1818846752,168636005,1413614093,1931502952,1668573559,1496260712,2036428064,543515168,1936028272,1763734629,1752440942,1329799269,1296259408,1852121156,1869769078,1852140910,1635131508,1650551154,221144428,1867810570,1886413088,543452773,1701603686,1931488371,1768121712,1629518182,1852404512,543517799,1701603686,1919903264,1936024608,1634625908,1852795252,1969365036,1970086004,1885959276,1713399148,1936026729,1868958221,1869815922,1701016181,1937057824,543649385,1684826487,1685217635,1919885427,1818846752,1714106725,845507689,1818846763,1713386341,1634562671,221129076,1749256714,1701277281]},{"sector":10,"length":512,"data":[1752440947,1702109285,1852403058,1679846497,1667855973,1937055845,1948279909,1868767343,1869771886,1870209132,1931506293,1702130553,168636013,1413679629,1679841620,1667855973,218762597,1679826954,1667855973,538976357,543516756,1836213620,1818324585,1986356256,543515497,544567161,1953390967,544175136,744846197,1668641568,1935745128,1297040160,168635953,1936278621,2036427888,1919885427,1952805664,1752440947,1633951845,221144436,1141509386,541414465,762146139,2033017956,168648057,538970637,1680698733,2037984612,538976288,1937007955,1701344288,1952539680,1870209125,1886593141,1718182757,168636025,1417873933,543518841,1163149636,1953068832,1953853288,1918988320,1952804193,544436837,1679847284,1819308905,1948285281,1663067496,1701999221,1679848558,543519841,1953785203,543649385,224685665,1881170186,1886220146,1868963956,543236210,544695662,778399343,1917853728,544437093,1163152965,1869881426,1701145376,1752440944,1634934885,1679844717,778400865,1147406861,1952803941,1864397669,1864394094,1869422706,1713399154,1936026729,218762542,1279607818,1919179552,979727977,1634753373,1717397620,1852140649,543518049,1565536091,1380256269,541414209,1769104475,1564108150,1952542811,1768316264,1634624876,1528849773,224219183,-2096493302,1683693600,1702259058,1885035834,1567126625,1701603686,1701667182,1884495904,1718182757,544433513,543516788,1701603686,539587368,1679847284]},{"sector":11,"length":512,"data":[1952803941,538979941,1667592275,544826985,1953265005,1701605481,538970637,538976288,538976288,538976288,538976288,538976288,538976288,1701603686,2036473971,1769174304,1998612334,1667525737,1935962721,1326058798,1345265696,538976288,538976288,538976288,538976288,538976288,1917853728,1953525103,1868963955,1868767346,1919510126,1769234797,1646292591,1919903333,1701060709,1769235820,1696622446,543712097,1701603686,-1995829970,1886611780,1937334636,1814061344,544502633,1713399407,1936026729,1684955424,1651864352,1701996900,1919906915,544433513,1629515369,1919509536,1869898597,221149554,1141509386,1528844873,1986622052,1532836453,1752457584,1768315741,1634624876,542991725,1565536091,1462721312,794501213,979065665,1953784157,1935829362,1528847709,1532710703,1869831482,1919906930,224222564,538975754,794501152,1528847699,542982703,1565273947,1127176992,1566394459,168626701,1528832080,1986622052,1532836453,1752457584,1768315741,1634624876,542991725,1884495904,1718182757,544433513,1986622052,1679830117,1667592809,2037542772,1851858988,1919889252,1818846752,1948283749,1768693871,221148275,538990858,538988591,538976288,1937072464,1629516645,1919251558,1667327264,1668489320,1852138866,543978854,1763731055,1919903342,1769234797,221146735,790634506,538976343,1428168736,544433523,1701079415,1936288800,1868963956,1952542066,2114587950,1093607456,538976288,1766072352]},{"sector":12,"length":512,"data":[1634496627,1713402745,1936026729,1953068832,1886593128,1718182757,543450473,1920234593,1953849961,221148005,1629495306,1769108596,538997602,538985504,1701996868,1919906915,544433513,542253088,1634030112,1852779876,1713404268,1936026729,538976288,538976288,538986528,1684302152,1713401445,1936026729,544934413,538976288,538976288,1394614304,2035490848,1835365491,1818846752,538997605,1176510529,1936026729,1634038304,1948285284,1918967919,1986619491,757080165,1917853728,2020173413,1634037024,1735289198,1869488672,168632948,1328488480,538976288,1766596640,1646294131,1768300665,544433516,1931505257,1702130287,1919885412,779248996,546638349,1919906592,1685221236,1310728224,2034376736,1835101728,1630019685,1634234476,1769235810,538978659,538976288,538989344,1931508034,543521385,1634562856,1936026732,1768300660,695497586,538970637,538976288,538976288,541401120,544817696,1702131813,1869181806,1630019694,1634234476,1769235810,538978659,1109401668,1633951865,639657332,1835627552,1697128549,1768714849,544502629,1936877926,168634740,538976326,538976288,538976288,538986272,1970238023,1768169584,1952671090,1701409391,1768300659,544502642,757080096,1917853728,2020173413,544175136,1702258034,543519602,1701081711,2131365234,538976288,538976288,538976288,1109401667,1868767353,1701998701,1869181811,1634869358,544172404,1634562856,1936026732,1768300660,695497586]},{"sector":13,"length":512,"data":[538970637,538989359,538976288,1886611780,1937334636,1818846752,1763734373,1886593134,1718182757,543450473,1701996900,1919906915,1851859065,1818304612,1970479212,1919509602,1869898597,1936025970,1091177774,1110384672,538976288,1934958624,1646293861,543519329,1836216166,673215585,1746956142,1768186213,1763731310,1919903342,1769234797,1864396399,1970479218,1918987629,221129081,538974986,538987567,538976288,1936028501,2003790880,1633907301,221144435,538989066,1213940527,538976349,1886611780,1937334636,1818846752,1868767333,1701998701,1869181811,1634869358,997157236,1212362528,1702065440,1869095027,1629516915,1668246636,1869182049,1853169774,1931506793,778402409,168626701,1769427858,1701340020,1634541683,1700929657,1701998624,544499059,1948282473,1142973800,1296257609,1852121156,1869769078,1852140910,1635131508,1650551154,539911532,1702252320,1684632178,1879706981,1702061426,2004033652,1751348329,1646293861,1919950969,2020173413,543649385,544829025,1953068915,1998612579,543716457,1747460141,1701343353,757934446,544370534,1835104357,744844400,1462578976,369757486,538976288,1565732699,1110399776,794501213,168648012,538774029,541863712,538976288,1702057248,1869357171,1668441463,778400609,168626701,1769296190,1948283764,1126196584,1095585103,1127105614,1881165135,1919381362,673213793,1835888483,543452769,1702129257,1701998706,695362932,218762542,1230521610]},{"sector":14,"length":512,"data":[1024068948,1634038339,544433524,1768169569,1952671090,779711087,168626701,1229212493,1683693650,1702259058,1634753850,168650868,1528841293,1986622052,1885157989,224949345,1766087946,1634496627,1864397689,1702043762,1629516660,1634038560,543712114,1752457584,1919903264,1702389024,1635022179,543517794,1701603686,168636019,1095764493,1528842324,1769104475,1564108150,1752457584,774781787,224222510,1413566474,221978696,1795820810,1701869908,1413566496,540745800,1663070068,1918985580,1819042080,1634038560,761815922,1752457584,1952805664,1735289204,1851859059,1768169572,1952671090,760433952,542330692,1931505524,1668440421,1862929768,544828526,1948282473,1663067496,1701999221,1679848558,1667592809,2037542772,990514478,1701869908,1413566496,1769414728,1970235508,1634738292,1701667186,1936876916,544175136,1886611812,544825708,543516788,1920103779,544501349,1752457584,923405614,1851877443,544433511,543516788,1143821133,1663062863,1634561391,1881171054,1886220146,168636020,1380977165,1414548815,1702124320,224228472,2081033482,1702109216,538997880,1884495904,1718182757,544433513,1701716065,1868767351,1851878765,1919950948,1953525103,218762542,1869762570,544501869,544104803,1830839650,543515745,1864396917,1869488230,1818324338,1634231072,1952670066,544436837,543452769,543516788,1819045734,1852405615,1886593127,1634296677,1868767340,980641124,168626701,606085167]},{"sector":15,"length":512,"data":[538976337,1697128509,1818326385,1734964000,168634734,606347296,606085152,1868834848,1918987372,1734964000,168634734,606085162,538976340,1920103747,544501349,1701669236,538970637,538985508,1920287520,1953391986,1952539680,1024068965,1344544800,1126178848,1701999221,1679848558,1702259058,1684955424,1952542752,537529704,542516256,1397563424,1397703725,1919252000,1852795251,1836412448,225600866,538981386,538988068,1920287520,1953391986,1769104416,168650102,1193549856,1042292768,1919363104,1702125925,1752444274,1931505249,695101289,539757069,541860896,540811296,1936026664,1752444275,1931505249,695101289,538970637,538984996,673217568,1701865840,2030701865,1210327072,1109401632,1936417633,1701011824,1919232032,1936028513,1701998624,1970235766,1751326835,1667330657,695362932,538970637,538985764,1668498720,543518817,1701080931,1396779040,541673795,1701080931,691483168,538970637,538992420,1918976800,1734437234,1701978213,1852994932,1684955424,1852402720,1701144165,218762596,2035567626,1344300400,1347243858,1769414740,1970235508,1634738292,1701667186,1936876916,544175136,1702061426,1752440948,1919950949,1953525103,544175136,543516788,1634100580,544500853,1953785203,778530409,1380387341,1987013989,673215333,1701602660,695428468,1679843616,1667592809,2037542772,218762542,1145917962,1528844873,1986622052,1885157989,224949345,541348362,1769104475,1564108150]}]],[[{"sector":1,"length":512,"data":[1752457584,1377569293,1835101797,1629516645,1818846752,1919885413,1818846752,221148005,1393167626,1095648594,1528841549,1986622052,1532836453,1752457584,1818846813,1835101797,1713385829,1852140649,845507937,1163004429,1683693646,1702259058,1885035834,1567126625,1701603686,1701667182,1768300593,1634624876,221406573,-1609954038,1702129486,1634235424,1870209140,1633886325,1953459822,1701868320,2036754787,1847615776,1679849317,1702259058,544370464,1752457584,1919903264,1970239776,1701060722,1852404851,1869182049,1768300654,221144428,1426722058,1293968755,541414991,1914728308,1835101797,543236197,1701996900,1919906915,1864379513,1869881458,1987013920,1768300645,544433516,1836020326,1701736224,1919509536,1869898597,1948285298,1851859055,1701344367,168636018,1936278615,2036427888,1931488371,745763941,544370464,1869440370,544433526,1143821133,1696617295,1919514222,1701670511,1981838446,1634300513,1936026722,218762542,1413829386,1635146528,1650551154,1530750316,1769108595,1566402414,168626701,1981816961,1634300513,543517794,1701860128,1768319331,1948283749,1696621928,1919514222,1701670511,1982690414,1634300513,543517794,1701667182,537529646,1920234272,543649385,1394614304,1768121712,1936025958,1931501856,1701409381,1718558835,1634231072,1952670066,544436837,1629515636,1734964083,1869881454,1701344288,1918989856,1818386793,168636005,1414203917,543518841,542393683,1752459639]},{"sector":2,"length":512,"data":[544503151,1634886000,1702126957,1948283762,1768169583,1634496627,1752440953,1969430629,1852142194,1852121204,1869769078,1852140910,1635131508,1650551154,779314540,1143802381,1819308905,544438625,1931506287,544437349,543516788,1701669236,218762542,1296651274,1952129093,1566928233,168626701,1886999683,1230250085,1998603597,1869116521,1881175157,1835102817,1919251557,1869881459,1936286752,2036427888,1701344288,1920295712,1953391986,1835627552,1702043749,1852404852,1851859047,1628048740,1869770784,544501869,544370534,1701716065,1852776567,538979941,1936028240,1313153139,542262612,1797287796,544236901,543516788,1701667187,1835627552,168636005,1936278598,2036427888,1752440947,1868767333,1852142702,1864397684,543236198,1954047348,1818846752,168636005,1498679821,1528841552,1986622052,1532836453,1752457584,1818846813,1835101797,621415781,1886611780,1937334636,1701344288,760433952,542330692,1936876918,778989417,168626701,223495510,1700049162,544435308,1143821133,1998607183,1752458600,1948283493,1702240367,2036754802,1634235424,1870209140,1713402485,1936026729,1701994784,1769109280,1852142708,1919902496,1952671090,1948285292,224469103,1936286730,168636011,1163266573,1497778514,1313823520,1327528992,224216646,1409944842,543518841,1230128470,1998608710,1869116521,1629516917,1918988320,1952804193,1948283493,1768169583,1634496627,1752440953,1969430629,1852142194,1163272308]},{"sector":3,"length":512,"data":[1497778514,1952805664,1735289204,1376390446,1886611780,1937334636,1701344288,1936286752,1870012523,1701672300,1650551840,1629514853,1931502702,1634300517,1970151532,1919246957,1718165548,1701344288,2019893369,779383657,168626701,541871958,1769104475,1564108150,1130039821,1936485473,1701736224,1952539168,1881172067,1919381362,1713401185,544042866,1953459809,779249000,168626701,1280065859,1919179552,979727977,1634753373,1717397620,1852140649,543518049,1952539227,1882024035,1835102817,1919251557,168648051,544344589,1952539168,1882024035,1835102817,1919251557,538976371,1667592275,1701406313,1851859059,1868767353,1851878765,1768697188,1763730798,1919903342,1769234797,1914728047,1769304421,543450482,1948285282,168650088,538976288,538976288,538976288,538976288,538976288,1952539168,1881172067,1919381362,221146465,1699892234,1685221219,1868767347,1852140909,673215348,1634559346,695430002,544106784,1633820769,543712116,1701603686,544370464,1179537219,1395541833,221139801,1376390410,1528843589,1835888483,1567911525,1399523853,1701868405,544433262,1668248176,1769173861,1864394606,543236198,1668571490,1919950952,1634887535,1851859053,1768169572,1634496627,1948283769,1830839656,1634956133,572548455,1936028240,1851859059,1795820921,1948285285,1868767343,1852404846,774792565,220343854,1342835978,1163089217,1145899533,1819308905,544438625,1936942445,1936025441,1919885356]},{"sector":4,"length":512,"data":[1920300064,1663071086,1634561391,1697473646,1768908899,1864394606,1919885422,1717989152,218762542,1159733258,542066755,542003035,1179590780,168648006,1159733335,542066755,1936026971,1701273971,218762589,1886999562,1128603749,1998606152,1869116521,1881175157,1835102817,1919251557,1869881459,1936286752,2036427888,1701344288,1920295712,1953391986,1751344416,1702043759,1852404852,168636007,1919501383,1937007461,760433952,542330692,1629515636,1650551840,1701604453,1768693860,1763730798,543236206,1668571490,1919950952,1634887535,168636013,1330055693,1814056788,1818583649,168626701,1814044810,1818583649,1394614304,1768121712,1936025958,1948279072,544503909,1769108595,1965057902,543450483,1948282473,1646290280,1751348321,1869770784,1835102823,544432416,1634476129,778855778,168626701,544567129,1701869940,1814061344,1818583649,544108320,1768693857,1646290286,1953046649,1718379891,1700929580,1852729703,543649385,1752459639,1663066400,1852796015,1242172718,1851877443,544433511,543516788,1769172848,1852795252,543584032,1819305330,1634034529,543517794,1634886000,1702126957,1763734386,543236206,1668571490,1768300648,221144428,1393167626,1413892424,1348078093,1868984933,544435570,1684959075,1869182057,543973742,1668248176,1769173861,1763731310,1633820782,543712116,1735357040,1936548210,218762542,541477130,1414483547,1380261981,1280462674,1279612485,1836412448,544367970]},{"sector":5,"length":512,"data":[1835888483,224685665,1179207178,1330535200,1931500884,1852404340,1027420519,1769108595,540174190,1835888483,224685665,541477130,1414483547,1480925277,542397257,1701603686,1701667182,1836016416,1684955501,168626701,1310728317,538989647,538976288,538976288,538976288,1701860128,1768319331,1948283749,544498024,1143821133,1931498319,1819635560,1633886308,544830066,544503151,543516788,1835888483,543452769,2037149295,538970637,538976288,538976288,538976288,538976288,1718165536,1701344288,1852793632,1769236836,1763733103,1634082931,778400620,547490317,1381123360,1162629711,541869398,1651340654,1394635365,1768121712,1936025958,1948279072,543520114,1684959075,1869182057,1718165614,1701344288,1935764512,1919950964,1634887535,1970413677,1701978222,1852994932,168649829,538976288,538976288,538976288,538976288,538976288,1696624225,544500088,1701080931,1970365728,1948281953,1919885423,1701996320,1919251553,1634235424,1752440942,1970151525,1919246957,1701868320,1768319331,221144165,538994186,1835888483,543452769,538976288,538976288,1884495904,1718182757,544433513,543516788,1835888483,543452769,1663070068,2037543521,1953853216,543582496,543516788,1684959075,1869182057,1936269422,538970637,538976288,538976288,538976288,538976288,1701650464,168636020,1931485290,1852404340,1027420519,1769108595,540174190,1701860128,1768319331,1629516645,1970435104,1868767333]},{"sector":6,"length":512,"data":[1953064046,544108393,1948280425,1931502952,1768121712,1684367718,2019914784,1953702004,1735289202,537529715,538976288,538976288,538976288,538976288,1830821920,1751348321,1728711982,1480925216,542397257,1701603686,1701667182,538976288,1667592275,1701406313,543236211,1702195828,1852793632,1769236836,1763733103,1752440934,1886593125,1718182757,543450473,1701603686,1701667182,538970637,538976288,538976288,538976288,538976288,2019893280,1937011561,1997147438,1936618834,1931501856,1768121712,1684367718,1836016416,1684955501,1919903264,1667327264,1768300648,1763730796,543236206,544499059,1713399407,1936026729,218762542,1380926986,1635132704,1650551154,1226859884,1932009550,539587685,1663061828,1634561391,1528849518,1835888483,761556577,1634886000,1702126957,224228210,2097810698,1982144544,1634300513,543517794,1701860128,1768319331,1629516645,1885696544,1701011820,1701601889,1918988320,1952804193,221147749,673193994,695494003,538976288,1884495904,1718182757,544433513,1702043745,1718558836,1701736224,544370464,1701998445,1818846752,539915109,1818842912,1918985060,1830843236,1646295393,1937055845,221144165,538990090,1835888483,543452769,1394614304,1768121712,1936025958,1701344288,1836016416,1684955501,544175136,1920098659,1970217081,1868963956,1634017394,1713399907,778398825,538970637,1835888483,761556577,1634886000,1702126957,168653682,538976418,538976288]},{"sector":7,"length":512,"data":[538976288,1884495904,1718182757,544433513,1634886000,1702126957,1864397682,2004033650,1751348329,1713402725,1948283503,1931502952,1768121712,1684367718,1836016416,1684955501,218762542,544166922,543519605,543516788,542265158,1835888483,543452769,1629515369,1952539168,1881172067,1919381362,539782497,1667592307,544826985,1635132709,1650551154,1763730796,1702130542,1864393825,621415782,1769103734,1701601889,386534702,1702061394,1684371058,1836016416,1684955501,1835101728,789187941,1684107084,543236211,1735357040,544039282,1869901417,1701344288,1886418208,1830842981,1919905125,1918967929,221143397,-1660285686,1145130828,1212631368,1919179552,979727977,1634753373,1717397620,1852140649,543518049,1918988379,1952804193,1567847013,1330383373,1229472833,1528842311,1916423215,1869178725,744173934,1936615789,828734057,1916492637,1869178725,744174190,1936615789,845511273,774778461,794501213,224222547,538976266,538976288,1683693600,1702259058,1885035834,1567126625,1701603686,1701667182,1634753312,1701667186,1936876916,218762589,1278195210,1734701626,829321065,1768762459,2053731182,1532834149,1734701627,846098281,1768762459,2053731182,1566388837,221130286,538976266,538976288,538976288,1701860128,1768319331,1948283749,1914725736,1869178725,695412846,543584032,1869440365,1763735922,544175214,1667852407,1869881448,1634692128,537529700,538976288,538976288,1948262432]},{"sector":8,"length":512,"data":[1881171304,1919381362,539913569,1734693408,829321065,1701868320,1768319331,1948283749,1847616872,1700949365,1718558834,1701344288,1919510048,168653939,538976389,538976288,538976288,1835363616,544830063,1768383858,540765807,1936615789,828734057,1701868320,1768319331,1948283749,1830839656,1835626089,1931505013,744847977,224815392,538976266,538976288,538976288,2037276960,1868963884,1701978226,1852795239,538979889,1768383826,540175983,543452769,1936615789,845511273,1701868320,2036754787,1701344288,545196557,538976288,538976288,1847599136,1700949365,1851859058,1768759396,1970104686,1769152621,1864394106,1752440934,1702043749,1684959075,1734701600,745434985,543582496,779710049,538970637,538976288,538976288,1868111904,1633886325,1886593134,1718182757,1935745145,1851878688,1701978233,1852795239,1935745139,1970239776,1851881248,168636020,797116941,538976339,538976288,1394614304,1852404328,1629516651,1112364320,544175136,544437353,1768843629,544044397,1702521203,1768453920,1948280172,1881171304,1919381362,168652129,538976288,538976288,538976288,1814066025,1768186223,539912046,542322464,1847620457,1634562671,544828524,1684370293,1819176736,2036473977,1835355424,1701536077,168636018,1532430861,1986622052,1532836453,1752457584,1818846813,1835101797,537529701,538976288,538976288,1394614304,1768121712,1936025958,1701344288,1668246560,1869182049,1851859054]},{"sector":9,"length":512,"data":[1634607204,1864394093,1752440934,1919950949,1634887535,168636013,1884949005,1835102817,1919251557,1394614387,1768121712,1936025958,2037276960,1836016416,1684955501,1852402733,1852383333,1836216166,1869182049,1701978222,1919513969,1646290021,537529721,538976288,538976288,1948262432,1881171304,1919381362,221146465,-1928917494,-2123812802,-1020433471,68552193,1048578,1769475,2490376,3604479,1818838542,1869488229,1868963956,241462901,1752457552,1953459744,1970234912,1226007662,1718973294,1768122726,544501349,1869440365,1158773106,1852142712,543450468,1869771333,824516722,1049429774,-1048340832,100844382,-65258,1343094788,1702064737,1920091424,622883439,-1928917455,-2087255490,-3990079,0,-1507524597,268435456,-367001472,65732611,257024,-268434449,66125827,258560,-167771149,66519043,260096,-100662279,721155,42535,151625985,17038112,-1507196917,-520028160,-65009399,721155,42542,539029761,261408,184615934,10854144,94437632,67051521,-1627387135,16777381,536937889,184615936,10854144,94437632,67182593,262656,67109891,67436548,263680,134218759,721412,42401,50532353,2848,33554432,537528884,167773193,721156,0,134746113,264992,184615948,0,212140288,67969036,265728,268436495,721412,42546,16883969,872418080,33554598,805438113]},{"sector":10,"length":512,"data":[184615953,10893312,-2147483392,68296705,939526914,16777382,536969216,-1536229365,268566528,320864640,721412,42914,67412737,-1610609872,33554599,805569699,352322580,68550660,268032,184615960,10829312,-2146434816,68755456,268800,469763099,69009412,269824,184615967,0,-2146434816,69214209,2817,16777216,536969232,184615969,0,-2146434816,69410817,271360,637535269,69664772,-1593832703,16777381,536903696,184615976,10921472,-2146434816,69804032,553650945,16777382,537792241,184615978,10888448,-2146434816,721428480,69992452,282880,771753005,70254596,274688,855639090,721412,42401,50532353,2848,33554432,537397812,184615988,0,195428608,70590475,2818,16777216,537397924,11,-2063466496,908068358,70713348,855640833,16777379,537792241,956302392,70909956,277248,184615996,10829312,-2146434816,71442432,905972481,16777382,536936704,1140851779,71630852,280064,1207960647,71892996,281088,1275069515,72155140,738200322,16777382,537002641,-1507000309,285343744,1310720257,721412,42540,33722625,754977568,33554598,536936721,1213481296,1330794557,1028935757,1397575491,1027818832,1129466180,339559501,671088645,338181,1023753216,343557,348160,2030401536,2063956485,2097511429,2131066373,-1946157051]},{"sector":11,"length":512,"data":[-1610612731,368901,-1257917440,374277,-922368000,-888813051,-855258107,-821703163,-788148219,-754593275,381957,384000,389120,84280320,394758,419829760,453384710,486939654,520494598,401414,404480,1090928640,410118,1426478080,415238,1762027520,2080374790,-1879048186,-1543503866,-1207959546,-872415226,445702,450560,455680,151455744,469762055,466183,471040,1158104064,1191659015,1225213959,477703,1493653504,1527208455,1811939335,-2147483641,-2113437433,-2079882489,-2046327545,493319,1528497152,1161972274,1042301988,1193556293,793257021,608259108,1344558670,894510176,913265700,1596179286,1193552993,1308819492,197743695,1381123338,1162629711,-1941158570,1480918284,542397257,1141047308,1728270921,77213969,1280065859,-1693646590,1212351642,-1191030717,110754598,1095648594,-1996274355,60454176,55461202,-1703599991,1095910661,16991571,60434720,55330116,-1708580863,1348031492,557253445,1375967883,67521861,77242625,1498435395,222194947,1095763354,105206613,-1700454412,1413563396,896401989,1409587747,38096201,-1702545961,1380275715,-1893506814,1331037082,577045324,1124244119,723583812,1124440577,1380533320,19603715,1145897626,1361808387,1263338906,55724356,-1705956468,54809090,-1703859200,1145917957,217673,94007596,1095062082,1030095435,1443273207,1179210309,1034486361,1392745107,-2130291643,110787880]},{"sector":12,"length":512,"data":[1297044048,1728468048,77225256,1213481296,1428474114,1480918170,-1023388599,77221159,1498698819,522589443,1128596634,738611016,77244733,1330925383,-1358088954,1213400474,39077449,-1699410758,105269506,-1699148951,1380926979,-921698810,1279460250,628424787,1409849865,1313166674,54873409,-1697437887,1095715848,1195984964,1748959816,1275239127,1748959816,771791575,776818499,776296517,760496450,1112948569,1381453889,1148605256,1145392705,4409171,32,16908288,-894470912,50397340,-1351286783,16817354,1962934530,10275503,131072,-1664438411,5254913,40183,10288385,35651840,112162048,196765,268435968,-1659672931,1325420111,436225606,16777373,40224,32769,-1658212491,16843008,100,999,-1657208832,1057030144,16777373,2097152016,10275503,40267,10309889,524544,-894466816,-1654849380,1661009920,16777373,-1929379583,10275503,16817519,10276097,10319872,-1663696640,-1652490240,-855572224,-1662516836,10324992,-1663106816,-1466067454,536936605,-1351286751,788765900,1328480321,4402944,0,-1664438411,1093480205,1328361216,5451520,5451055,788546095,788546093,758054999,1345257559,1345138432,4992768,4992303,4402479,-1650090532,-1647862326,-1647403567,-1648779844,-1648321085,-1646944808,-1650287179,-1650483791,33594883,-845361918,234881180,16842910,40468,1122304,-1664438411,10362880]},{"sector":13,"length":512,"data":[637599744,158,-1351286782,788634826,-1640693678,-855572224,1409286300,1028672837,1347371776,1145914201,1111776317,1095783244,3032387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16776960,0,0,0,0,0,0,0,0,0,-16777216,0,255,2086492928,1026244156,8763,0,0,-16777216,16777215,0,-16777216,16777215,0,-16777216,-1,16777215,0,0,-16777216,16777215,0,168624128,0,603982336,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,1142969165,1444959055,1769173605,908095087,692267040,2037411651,1751607666,959520884,825045304,540293433,1919117645,1718580079,1866670196,1277194354,1852138345,543450483,1702125901,1818323314,1344285984,1701867378,544830578,1293969007,1869767529,1952870259,1819033888]},{"sector":14,"length":512,"pattern":0,"data":[1734963744,544437352,1702061426,1684371058,32]},{"sector":15,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,917504,0,0,0,25,0,538976288,538976288,538976288,538976288,2105376]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"data":[-1,12697683,1329791180,538976334,274604064,24117616,58917232,24118339,84083927,24118531,24117616,24117616,24117616,24117616,1799424551,108216838,1141267267,759694950,115821062,1376199755,761661277,124020742,1829199980,946734775,128020487,1929807985,-1368062299,6,150929671,84015108,-133725953,8915056,520157214,-132119304,116924674,587331618,-131856904,133702915,687902504,-1893056369,1619995424,756059948,-1892790129,1888431920,255,-256,-1,-1,512306943,-1943142223,-889146618,1381060694,102651223,-1256288941,48896,775915822,-66957428,75465518,776893951,-16351357,-986822795,104645687,-49832,-8190603,1463186687,571734,-1928692339,-1494021516,-920428706,-1960436107,-1993472443,-1064565689,105351470,138775334,138905902,-1993424756,99289671,-348273626,516239038,1334509745,38242834,1228440,-268177405,544674876,1343127492,-1912586056,8691928,41222204,521017520,530759934,620713994,199951284,-352314648,-343821298,771863554,11607749,1526941577,1599938311,1582848346,-1254715957,516173312,-13762383,-13761444,784533596,29361862,67161859,50725888,79,0,453516544,993013851,223490096,0,0,0,16776960,-1,-1,-1,-256,-1,-1,-65281,-1,-1,-16711681,-1,-1]},{"sector":8,"length":512,"data":[16777215,-1,-1,-1,-256,-1,-1,-65281,-1,-1,-16711681,-1,-1,16777215,-1,-1,-1,-256,-1,-1,-65281,-1,-1,-16711681,-1,-1,16777215,-1,-1,-1,-256,-1,-1,-65281,-1,-1,-1207959545,222035968,113641333,-352321107,1946827901,1963408458,-1877046516,132349954,281874100,1963474115,-1388412915,-193724415,28118782,512448747,28902032,-855002112,-1392050672,28155905,28051002,1048592502,1946157478,-1391526395,113689345,-33554003,-1274958330,28024862,326373692,259265084,170081920,-1274776318,-1979389159,940187430,1912712742,-1999831543,-402543066,915013649,378143150,1049231789,45351569,-2134699827,117822,179307892,-1593872663,71041451,121375090,179307892,-1258332439,-1858172408,-1559180030,162791873,42999435,-855637575,-401952752,62193475,-1269690163,-842072574,29466896,162847882,-855637575,45373968,-473755443,132665608,-492152576,-35001864,109494323,-1073086016,1048601717,1962934708,-2132528562,16892734,280240501,1048581837,1962934724,73066499,1946181096,-1002536941,208994561,184830952,-855249957,4778006,1229529205,3949379,-532935820,1048578421,1963000260,-2008856318,-1996377074,-402541282,-1073020915,-1073044364,646448245,-1950154304]},{"sector":9,"length":512,"data":[-1962822370,-1274085881,-1073069311,-29162123,-1996377074,-1023298274,-1979179589,200094223,1008563401,1007383552,-2146667040,16892990,1195050357,973335297,108265799,-605300477,-1597777141,-1073086016,1048602229,1946157492,-1256289528,-351827455,-2147371945,16892734,-998243467,1947651344,1975520081,-2147437539,16892734,280236149,1048581837,1962934724,59697159,382534379,-1947682325,-2146208513,16892734,1048579189,1963000260,57862149,209050379,-2147334262,1962934655,55020035,11607749,-385005688,1048640703,1946157511,-1323383789,1207379456,1946419203,1090566151,365812530,-956525079,114694,28575430,-2147372032,16892734,-998243467,1947651344,-2147437552,16892734,-998243467,-350827248,-474682400,92939954,911431,-1477707806,521019131,520094440,1364414671,106387026,-1845049515,-1766326270,-1912586056,4825560,-1557213954,121373099,-953284747,168454,6463664,43098670,-1950350440,1346866136,28156718,-1325379935,250139396,43295519,649366,1583286109,1482381658,27901635,1530668287,-1947663500,-2063284480,-1982123259,-352210658,1966816264,-1308164596,40429569,126468147,1915763907,2000239634,39381006,126234668,-453637452,1019414272,1007907901,1007645759,1006924834,-954043097,-1576680700,985858481,1963045126,-1307640311,-2063284479,602456837,-955807742,-351943932,3652524,-2147236989,628359231,-193657032,-1157544053,54724637,-1979603170,-1946799593,1976110026]},{"sector":10,"length":512,"data":[-520142591,91560764,91358407,-58267453,27854535,952305156,291879,-1946623481,-1274958570,-1273967345,-351220478,591298787,91554314,-350619264,521026052,-1595902198,1871315372,1961691649,986578434,-1979549755,-20085016,-1391556147,-1966806271,-1342067674,28162817,-4673045,-1191777536,-1363476225,-2136675583,34218814,431228021,646579947,-855766497,-420806224,1962998400,-1006189048,2078867457,33194239,1944650612,-1006188801,1810432257,28156415,-385765469,-1348337807,28156673,872376553,-1307670839,20506625,1393003073,-1979683141,63144743,1962933376,1977629199,-28865550,42993184,43001352,-572374181,872364265,-1391556151,-1608600063,289145259,305927028,1048579956,1963067939,-350636540,523667972,-1407809014,591298561,74777098,82575154,43007626,-855244616,-17045232,28118667,-571738742,-1057092942,-218700750,-1020252155,844301236,1527827967,-389641646,-1180434458,-1031120383,-1543512600,113639868,-955711052,-1224624890,-21960447,48955825,-1031091917,142346044,662441276,595530556,29951735,359923713,1085820958,-1579643392,-819658736,2100735,1476399267,-855591905,1007217424,-2012973817,-352213490,-2033044548,1107407382,5040194,1743259531,-1961134596,-1492243973,-1274624511,-141885439,-1380323069,-53597431,-217641466,669517732,66748416,1468536690,-1491729921,-2116418815,-1878939842,721842689,-1491719718,-12073471,-1459173632,-1023015935,27729547,-1306655933]},{"sector":11,"length":512,"pattern":0,"data":[-1728347903,-33132031,-352210418,499352043,-532888824,-469105035,-1070464396,1912603843,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16828416,33642496,67211265,16711682,3584]},{"sector":12,"length":512,"data":[0,0,0,0,0,0,0,419430400,16777216,-1006632960,637579550,638470026,1007910852,-402295425,132841495,242573116,1929423080,-2147480317,-385810419,535426861,1031808759,638022912,235044227,28837245,650377472,83398,281874356,915242788,770179533,-1207667966,1472397322,38127398,-2092564466,121373895,1946157240,-918650061,746326017,29951735,561250432,119428870,164970125,-617407564,113709261,2589,759559718,-16485088,1594498310,169713927,833963,-293362445,24936461,-2095614719,1947798396,508514065,-1912586056,8691928,-1993981800,-1070391547,-2134679560,17416462,169817855,4030502,-2094653579,1963852413,1166747160,-87804,-148500619,66629,1048776052,2097676745,112646,-402587671,57868573,-2147420951,1946222972,54388742,637591273,-1559214709,423430687,-1206488064,802008320,225836860,-844296008,-1207536849,-907476980,192709376,-150440705,-2147366650,-1202555904,281876992,-2146820191,1165101051,-523041871,162864781,989856697,-2096663545,-136182589,1468702443,-938048510,-1969916927,243794767,1048775201,1964575263,170041350,-167108190,67748102,313794165,564146355,-351220470,169845008,1946163517,189020933,-219653771,44427264,-2147459352,665150,-2094655115,2115571837,-918650094,192677889,548606644,113643725,-385938906,1048772809,2080899529,121405468,-617408652,71694118]},{"sector":13,"length":512,"data":[24379393,488540483,268679178,-855510144,-1054441456,861470217,-1195116352,645922826,-1879176767,-116777210,524190659,242489610,839979704,-1206858277,-617475837,-1916596019,-1191064266,1015021583,-1605339905,-12842558,-1977204619,1144522309,641430785,956843403,846529348,125665318,640382208,33979776,-1960438667,1144588869,639333637,957105547,309659460,-1960441365,1144589893,-133729015,70781675,-964429452,-106175987,163710662,263832575,-12812288,70781300,-964491404,-101522931,-138151741,1073858822,1444836352,4241438,-2017535858,772049408,169819779,604271897,201518078,520390657,-2130984098,175374844,1946221696,788475456,776997397,29951735,729022480,524190510,594811146,591298606,460652810,2080962944,616925718,1948269664,-389707250,-393608892,1038664074,1489537537,355401518,-970023926,17442054,354352942,113651210,1426065957,1465261574,1347637586,263462670,354353052,-159439862,50970886,105915253,-1010890994,163750409,1929178856,-1056014323,2129134601,-1054441219,1476918025,163710662,-852062721,-14489599,2088765042,125042945,170067654,-972690686,17441542,1515805528,119496287,-2130981027,74783484,92144188,422510382,1962949642,-117460986,1006675689,-385649150,1347747999,102650449,508778071,251300615,1963015199,2147057728,2028481397,-2090962180,268552510,2088785788,1366622465,170212992,-2146994943,17441854,512428148,-1993995745,-336064419]},{"sector":14,"length":512,"data":[1610186808,-488110731,-1204884484,-336003071,1031808552,638940416,16874880,243271541,-352187967,-1054441453,216792329,20807718,11535989,38111270,1600019448,1499078407,-1947432112,208800326,-1979711963,1482164806,149676166,-1996488435,1566050886,844353373,1376302052,-1285889034,1542714894,-1056508221,1014301705,116851850,65993,116852853,8389065,-1977735564,4241624,279042190,-3201792,1946680192,268140549,806159733,218360576,279117856,532908544,281870516,65987,-65520,2686975,16842751,-16773120,687865855,67108608,1048577,-1,-65456,268435714,-256,-16756481,67583,-65536,5308415,34471935,1073745920,671139841,234887424,1048578,13107840,1638480,527,1577222144,419450881,135168,41943056,5243230,34668569,-2147483136,1342300162,301997568,1048578,31457920,1966160,531,-939442175,419440640,135424,41943042,5243360,34799646,1073807360,671139841,16783616,1048577,-1,2818088,268435712,-256,721430783,66304,-65520,5308415,16908331,-16773120,1358954495,218114816,1048578,13107520,1638440,268435982,-939360256,419450880,135168,41943056,5243230,34406425,1073745920,671139841,234887424,1048578,13107840,1638480,263,-256,721441023,134912,41943040,5243230,17235993,-16777216,1358954495]},{"sector":15,"length":512,"data":[16783616,1048577,-1,1638440,268435712,-256,419440895,66304,-65520,5308415,16908313,-16773120,1358954495,67115264,262146,13107520,1638440,33554949,-939442176,419440640,132608,41943042,5243080,-986841063,-989810402,-722988425,773747473,11607749,1200144435,239569165,-955232372,-59577,-1988033608,-85392569,-1205924112,-1064435648,30097024,637957120,8652486,646587928,-990510954,-2146667504,116286,113640821,-402587197,-353894304,35645441,-13433058,-1287585352,1032463873,1914031609,-955857403,298647809,809250852,113706613,-1342176622,175575100,27985606,-1408842240,-617404671,1824250766,-1626880256,38767617,-956259141,-1945825273,-986840497,-956255970,274599495,-384807028,-1061883805,-2144987699,1979253375,-851200989,1963042837,-921795813,915210497,129568771,20506624,267794061,-402652743,854262062,-391118664,-533069554,243470197,-1929248311,-1190136266,333971457,-1207912447,973141480,-2096138784,67225870,268646029,-402651207,118358266,464830515,1049484083,281872853,1836391228,-853933896,150700048,-75496076,-2128841465,-2147366642,53906688,506128,-1929328152,-1190219466,-1075314676,-2144212224,1946887549,628981778,-2146667508,1946887805,645758982,-2095483636,134334734,268646029,-402651207,915210390,45682509,9234432,-1574287990,1036257826,121997862,-352204638,-1290619806,-2146382576,1467224315]}]],[[{"sector":1,"length":512,"data":[1963065216,-921795823,915214337,45682652,6088704,-511688213,167346191,-109050508,-2095352573,1073858830,268646029,-402651207,915210302,129568615,3467264,243472875,-1927282231,-1190132938,602406919,-1036612352,178447,-1023403544,-1965519330,-1342177234,41557,646601555,780664832,-1021378560,118359639,30228109,1946220931,-1862303453,-1977778942,1962884101,1946434057,231179013,-1185814805,-1527578611,30228109,-655668903,113467143,-1064386509,1074694950,243871232,-1960441323,771768846,169283209,113714938,215875648,1108249638,12122880,1009765805,772175359,170133190,113444609,-1064386509,12362022,169452334,-1106343130,243871232,-1056241125,1572343157,430124558,784894986,-100000861,-1140406490,638426624,12455564,12781563,0,0,-16777216,16777215,0,-16777216,16777215,0,-16777216,-1,16777215,-16777216,16777215,0,168624128,0,603982336,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,1142969165,1444959055,1769173605,908095087,692267040,2037411651,1751607666,959520884,825045304,540293433,1919117645,1718580079,1866670196,1277194354,1852138345,543450483,1702125901,1818323314,1344285984,1701867378,544830578,1293969007,1869767529,1952870259,1819033888,1734963744]},{"sector":2,"length":512,"data":[544437352,1702061426,1684371058,1381191712,-919382266,-13385330,-1307431240,774884608,320669324,457083182,305051667,801964722,621186094,1049177619,783815459,-855330286,109850159,-1993469131,-1206701250,112333358,-1943130163,773003526,320290441,772152808,320145036,322865454,109850131,-1993469135,-401395906,-1943140825,773007622,321339017,-1307431240,774884616,322766476,993954094,113716755,168629070,-1761163730,-953277421,1266438,113716736,660309,772158952,322911881,-402646552,1139277872,1390956800,1493725696,1532626783,-2096829608,-1007088444,-1205971376,567108352,1914636062,914959882,-1943137465,1578322182,12108632,47940,567136819,-2147359104,28836302,-1021194940,-1153171272,-768409599,-830463539,1140963329,-1262280243,1025625392,58004998,1025043448,91422722,-335544389,178947,-1191181896,11665408,-1007026250,1431393104,-1957558697,512306921,-2010246325,-401387466,-922025256,-318038924,652739957,-402396416,141689273,17229914,82534151,-116996989,1594295531,108198234,1482381661,-998046485,1355020552,-1959898541,-2095887586,91619323,-352310040,7858179,1504972659,-855637829,-2082196959,-336001340,-294128,-1053095052,-1326971020,113541888,1510175481,516118619,-108847354,-1273268991,361375234,-1977671219,11659458,1931413022,1435117063,-132002559,45354987,158648587,-854226394,1967736609,-1021314829,1392922711,119470731,447797643,1974399740]},{"sector":3,"length":512,"data":[1272523523,123456395,868441944,1959332800,520494671,-678739788,1963063683,522308904,92939856,1476418280,1931413022,1085601798,-1675506366,440238118,-1047854475,248447467,-335545368,-397322982,-376701018,1931595097,990636802,990344392,41285864,526238091,2603203,-1258289989,-25115903,-166628097,209027270,1049429790,45683534,-16783360,777455299,323436228,393543435,4031270,638612728,124912954,21314086,1207501175,1609165639,-1892760825,856903942,781358043,324351735,922168979,-92073131,-2147125751,65746882,1378927232,1975520065,1960512260,66683708,2088767093,108342282,1580662574,619397395,1963456899,175931406,772175148,324941567,-2095977663,208997369,738884736,-13760907,1091788342,-338545773,869413794,922693312,868422481,1959332818,-1339706335,624436736,942017141,74711397,242598970,-402290138,24379211,1229080391,-2024348811,1961692106,-2094117579,1266494,1149906037,640680966,1963017530,1008724738,184841520,50623698,786950964,324025984,1107850751,1330202946,-1174148273,727187455,-33560327,57891167,1368418283,2088815243,225705990,108316939,1195854153,-346160661,1976109840,166419971,1979709827,197735170,1430156543,860948055,1048784585,1962939219,121959955,-1006078705,1911030396,-402593022,65733002,1912611560,1594317063,82533981,-116734845,1396605742,91553811,719913842,113716991,4947,785527747,773018529,324339399]},{"sector":4,"length":512,"data":[-1578631158,-2010228482,1125341063,1967192963,34269187,-311047682,772410808,324503433,-102218941,1398194945,-919341517,1979711104,-1131729399,-544533697,-956946197,772371458,321109188,451658636,1912607549,2571534,-1003615881,-1944899652,772271043,320060612,-75250804,-2145946113,58064894,772664313,-1206692957,29229055,-118082816,-75297557,-402426880,-964493228,108197892,41273611,-2137220373,695534078,105993554,12079191,1009765637,158685439,45668491,-349188859,91486465,-346486945,113541894,1560284392,-821957798,-268274,1472421467,-18096,-1359822798,1481232887,-75250849,773944577,322649731,1025078527,225837055,1403072080,520039955,-346549445,520039941,451613499,-25114317,637957375,-352105078,892874249,-1976695691,-947715251,762575108,1959332856,-98279,992347508,772008709,41223483,1950943723,80184069,1928979435,-98292,235042296,2097358343,839283202,227157741,113651271,-1023405235,2088819507,326434822,1468516142,1127030803,-2017055165,1126175575,1560325096,-768353485,1292797998,155486739,527876410,-259342038,-2147007242,1149900148,-2021118454,-2092756137,58015995,-33521688,-2132052530,1946159228,139212813,1277823091,-1965979128,-922023860,1156982132,208998151,268911862,-1977219468,32196357,-2021118376,-2092756137,58015995,-33537048,-153389623,1971324740,1962281497,172263957,1468500014,-75283693,-402426560,-822214620,1157032821]},{"sector":5,"length":512,"data":[141889287,268911862,233505396,158650890,1359384366,1976237587,190711,106021717,-1962467753,-1915014197,-401385666,91421521,-346486945,113541892,-161627143,1966081860,92939794,954745168,637957116,1342260618,638446584,-1073085046,1095173236,-114559509,100778837,-65258,1158742020,1852142712,543450468,1869771333,824516722,1049429774,-1048372638,100844320,-65258,1343094788,1702064737,1920091424,622883439,-1928917455,-2095413698,-3990079,16913926,167774208,385883136,1868787273,1667592818,1329864820,1702240339,1869181810,403311982,1635151433,543451500,1634886000,1702126957,539828338,168636709,1049429774,-1048372569,49987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65280,16711680,1526726656,1044151389,574307627,113716736,6907,243871484,-953279762,1765382,113716736,6915,-200882386,771751962,462358215,-953262757,2082181382,113716796,725490579,-1794717906,-398770917,326304993,1409286072,639470374,57872186,1526727352,771826665,452802185,-1923786925,773522718,452724470]},{"sector":6,"length":512,"data":[-1404865248,1912959464,81127484,115881844,773354757,452724470,-402295520,652936349,-66652626,510935322,773581646,1027344264,-2144467339,18545678,89843779,783074675,-347928696,-1993453890,773517878,771753926,453058185,-1927443674,773522742,1949252736,1015033398,772305954,452724470,643069185,838944650,104410852,309533422,451846446,1128521937,-1960388605,8972319,-953259541,18542598,643885824,838944650,-523157276,-1977165821,200094223,1125086409,529213011,1526777576,1128481139,-953224478,52097030,641002240,838944650,-523157276,-1977165821,-773574137,-670875424,839879206,1959332845,642990863,1575493515,192109312,-220052669,-267991250,1560282138,-1959896225,773516814,773517473,452081291,-199849170,512372250,-1007150346,126559824,1962934953,117386757,-2144462098,427098172,1962934697,113716745,137968,-1336930581,-385895421,-346554210,18737155,-1007041704,-1977200299,-315488177,225757451,-402034803,141754936,-503312664,116128246,53381422,1566177307,2122327747,57933824,1173809989,243281603,-401597700,1249050566,-64585682,777056026,723189665,100740806,777526013,452933259,3964974,-2144459147,1966800764,113716745,596720,-2094653461,427032639,17299238,772961536,451937991,166395906,-134179096,-335999509,61886474,65601460,-1007134720,2139825751,1049177604,-2010768652,1703421445,-1590800383,-1993991421,1012400709,638219521,637818249]},{"sector":7,"length":512,"data":[-351908471,1963080794,1435051526,1011936004,1021867015,1021604872,637957382,-352037496,1963211838,-39768561,-1993981926,-1943665595,736822877,74811686,105745446,1207314000,74711298,166397104,38270502,-1341819902,10348546,1207314008,57937922,1593863400,113651395,1342184344,185043750,1343780288,777474643,451937991,-4980727,1541931952,1532649471,-352130216,-1876432125,1946288297,113716754,6896,771857128,451952259,-1458604791,175382528,-267991250,-402653158,-2144468806,18585662,-2094133387,1765438,-953284747,152760326,1354979328,76164694,443858954,225786428,24936494,772175104,-352320314,45017097,1178993011,1482612715,-1974315325,76164816,1912773608,1958742540,845836,-352024530,-347716095,-1017226520,208896060,1165123900,1098349116,1038868260,-1923676589,-2145678786,74712314,461717133,1947547694,1381060631,1706297102,-4472182,375295,-838860870,1482250785,22907694,54890030,-2144582845,123721510,809288539,960235634,808191095,-1007041544,1465013072,109021990,168135206,-1274776128,772402175,451937991,-4980727,1340605360,1532649470,1431356248,45241938,-402355666,1014104568,788491752,452724470,1007514632,639595837,97920,334197109,-66652626,242487322,175454780,8290342,1180464384,975592683,494207046,1383383050,334185798,4602406,776357237,642057354,1962952250,-347781574,116797095,1950358268,1207379471,1946165250]},{"sector":8,"length":512,"data":[2122327559,578027520,268957478,1008235520,638154042,32384,250285429,125108284,8290342,-117214150,-1993472277,-132448458,1482512990,1448562883,-46232786,76164634,326418442,1962958824,113651236,1577130904,312878,1581247327,312878,133637727,846528513,-267991250,-352320998,777410601,-1073085302,770186868,-401902592,41091352,1179076167,-1573983765,-970056970,776404996,452083337,-1453826210,158597632,-1325419440,-46602235,1364443992,462364301,771754425,74712890,1106829891,-1396483239,1946165992,5498904,-164751755,538639366,-164696716,1092287494,-347207308,32241926,-121417992,1011962819,1009611789,1009349632,639988746,33717632,-617406862,56461862,637846403,1946171776,650720013,641927562,74711354,222099682,1405311833,113651281,773855990,452732544,1948269791,1946762294,1949056050,1965046833,540835852,548407157,-339723706,2105550366,393347330,-1977169613,-922025139,62589812,975586048,-502828031,1495284984,-1573993637,-164750602,18545670,-2144467339,538639374,-403980230,453324429,175430971,58011452,-133239815,792464363,-2144467339,1075510286,1444856824,1048784467,1962941177,1360941095,106256210,-561056205,-849149768,198937633,1599932379,1478449498,-1993463436,773519158,452533897,-147420370,512634394,1015225081,974156800,973632004,58130756,1174793209,-118756538,-1021354405,16785903,19003137,8704,620757250,2237474]},{"sector":9,"length":512,"pattern":0,"data":[0,572793381,5779206,788548655,1395589195,1162170947,1514754894,1395589189,5385984,0,0,2816,16777216,536936464,16777216,-238163968,-202897549,-890635790,-1928917504,857861182,-388877367,-970000061,115974,-1006189010,-2144468991,19020606,-1696005260,914959872,619192888,-49671,-970061707,2243334,4055275,774468608,574293702,113651200,771752388,29689542,113651200,771752390,30148294,7137280,1007076910,-1293221598,658407726,1965164834,113651208,-352255548,1048653378,572596775,-970061707,16894982,-2127678997,203564862,772306210,29689542,773909249,572997249,141894174,-888748498,267059457,658407726,1948389922,113651439,-134151738,788487145,574373504,-117213951,-1007156757,503731793,-1959917794,1445083190,222068774,-347733132,-1977202953,983707140,80094754,914959872,240788024,758549791,39094562,-1207679860,45809674,112896,-4795854,787603944,574109323,974031406,210249250,1499334431,195]},{"sector":10,"length":512,"pattern":0,"data":[1464909,22,9044000,50659327,128,40632336,30,1]},{"sector":11,"length":512,"data":[-1325361408,255,2086492928,1026244156,-1375722949,-1140850688,0,15336448,16187604,260,-905904128,15336448,16187604,16777476,1140850976,54017,35651840,-536796160,1479475456,768,18677762,73985,738198016,16840193,17711,1,16974132,4140801,35651584,318848000,1345257729,4740161,33554435,16850176,1179582753,1313800262,11665548,112197673,-1308622314,-1342172160,139832,3866802,1547321264,548536323,1068499008,220218,4202674,9633968,1413829552,538976288,1413829408,1347436832,1027886661,-1308617669,-1342144256,-1308622533,-1342112256,143361,4128946,185208240,0,-2146435072,860161,786610,-80,-1308621569,-1342175232,-1,11665412,-5242872,11534344,-5242872,16777215,0,168624128,0,335546880,1092923904,1397600256,1397703712,1919243808,1852795251,673199648,1866672451,1769109872,544499815,825768241,960049453,1766662196,1936683619,544499311,1886547779,1667845152,1702063717,1632444516,1769104756,757099617,1869762592,1953654128,1718558841,1667845408,1869836146,1092645990,1914727532,1952999273,1701978227,1987208563,1344300133,1465209171,-376745466,-702641874,914894340,-655883045,1959332610,1978469148,2549765,-1175976981,1510502913,117507816,-2096829601,-336001340,1516177156,1560703737,-346530983,147096324,1397801977,512437842,-75299626]},{"sector":12,"length":512,"data":[-402295297,65732652,1929410536,-1151749105,567083008,-997989326,283900166,1962933123,1958820619,11593735,-116996989,1532625778,102679384,33129247,45357941,-854226394,-1031135455,503362024,124985094,22383142,-336059955,184726543,638153929,567088522,-210417337,1472405496,-1957493168,-1962467590,-65359655,58044146,-1957963477,1476877259,-1070349473,1333053707,-1273035234,-2083026112,678756857,1344217549,-402290138,509083738,108207878,1111536888,647766477,1964653952,-339637502,-401682687,451674107,-1494724267,1508477951,41099725,-935654421,-398784652,-1962773000,-1021354559,-1157617736,28639236,-98109,-956952204,504132992,-650212089,178436,-1006698520,-1003596026,184865342,639071487,-134201981,975573108,638022149,1996571962,1195899137,123726315,110046915,-617413412,-147942765,-1828397002,-533268690,167412484,-1031797386,-2147226825,1095905474,74825739,1014291211,1963194755,175931406,772175148,82392831,-2094732479,242550777,738884736,-13760907,1090840886,-108850709,-2146667253,1965820540,922693126,-1824455447,-1561603533,-1070345677,-600375506,-768359676,561301771,11543988,1965373478,1698178570,973370369,638481860,1273496970,1191277567,1967735367,-897100061,896855307,1048784461,1962935518,105155116,975581188,41222469,809246699,-771029899,872612980,-2144409621,-16458946,1111623797,1330596169,-4586517,-114599937,1610481640,-352095399,-1957588889]},{"sector":13,"length":512,"data":[108822730,185431040,1225159881,-347650231,283860481,58050827,-2096501922,41287673,-16004813,1465204340,-919383802,-566328530,326434820,252134646,2093222005,41019394,-1964506901,-402396415,124911650,1566508889,-2096829602,788073156,81673859,1912960256,-13965053,-569981138,-1023410172,-1590767053,-953285410,168091654,-22943744,-2021118376,-2092759838,58015995,-33420568,-1192397367,-1993471475,1124393607,33155139,861099715,-2134297610,158728190,-960722130,-337671420,46593576,-1003615884,-1945851204,1025174467,242352147,1996498749,-1127993847,-1014233930,-1003616277,-1945855300,-293949,-25159819,-117213697,-1557262869,-4717346,114175,-336005581,16483084,1424491380,80118528,184972024,-352160311,-25125734,1378448641,1460031829,83933264,-12832819,-1962314408,84064472,32190413,1594192889,116087047,-402209661,1516044300,248447467,1543502824,1347928926,855637945,-139529536,1599621585,33260483,-2094128779,-16465346,-12773004,1343059455,81699118,-1038155986,99309572,-1038155986,857402116,-98103,-1977219468,166396749,1966422062,1300901380,80184067,-131238919,427084043,1962933888,87762437,992871403,-352160507,91506953,-352008317,208861667,-117440896,118358645,41747238,-315488654,1192069670,-670644690,868417540,108822747,773027072,81954759,1128475936,-494418386,-398254076,861733035,785527771,81268360,973685898,706705089,-152007999]},{"sector":14,"length":512,"data":[1954547524,172263957,-494434258,-75283708,-402426560,-822214529,2088823669,225705992,1929923640,139209224,1284166026,1959332616,121959973,-166955761,1947207492,92939782,1476520775,-494434258,-75283708,-402426560,-906100669,1157028725,427130887,359986698,772424842,81954696,1090224963,619185013,1976499712,121960171,-167217905,1947207492,168684290,772371666,81528463,-143275266,1426064104,1460031939,-880081122,1049484083,1374160098,1594192635,82532615,-116996989,1156996547,309669895,1342540326,-63379391,-1977219469,-128974523,-1977217557,1958742533,-348043516,1442393077,369557443,1476395286,1862271488,2046821120,-1979710464,-1442839296,-1308546048,-16700160,369176064,1560358657,1711353857,-1644089087,-587124223,16855809,1258370050,1996567810,-1090439678,-33474814,755054594,2030123267,-1056884221,-83805437,755055619,1850284548,1920102243,544498533,1162891329,1981826126,1769173605,168652399,1986939150,1684630625,1952542752,319425896,1635151433,543451500,1634886000,1702126957,587861362,1635151433,543451500,1651339107,1952542313,544108393,1881171567,1835102817,1919251557,185208179,1092644686,1852141680,1342836068,1869376577,1881174903,1919381362,544435553,1864396660,544105840,1635017060,1818846752,1763734373,1886593134,1718182757,543450473,1701996900,1919906915,544433513,1763734369,1752440934,1998616933,543519333,168652393,1701344282,1920295712,1953391986]},{"sector":15,"length":512,"data":[1919509536,1869898597,221149554,1242172682,1162891329,1528841294,1769104475,1564108150,1752457584,774781787,542989614,1532505947,542003002,1329209468,1566393926,1345280800,977818689,2082491983,1095773984,1329219668,542983750,1564815195,1091308045,1313165392,221978692,990514442,1683693600,1702259058,1634753850,1394632820,1768121712,1936025958,1679843616,1702259058,1684955424,1919509536,1869898597,1948285298,1885413487,1684956528,1107954990,1479483424,1900957498,136360455,1883353088,1701407856,1885413491,1684956528,1679844453,1667592809,1769107316,1948283749,1768300655,1931502956,1668440421,544433512,224685665,3417866,991410,1886413232,1633905004,1852795252,1702389024,1769239907,221146735,538987786,1329223727,538986054,538976288,1886404896,1936025964,1886413088,1701080677,1768169572,1952671090,1701409391,1852776563,1948285292,1701978223,1936029041,1948283764,1886330991,1713401445,1936026729,789187886,548536423,800063503,1179597400,1936269382,1701344288,1717920800,1953264993,1952805664,1735289204,1258949934,1345265696,977818689,538988111,1092624416,1768714352,1629516645,1852141680,543450468,1701996900,1919906915,544433513,1713401716,543517801,1970365810,1937011557,1634235424,1818304628,1684104562,1107955065,548536429,1940914191,1768121712,1629518182,1952542752,538979944,1413566511,1313815112,544434464,543516788,1634100580,544500853,1953785203,778530409]}],[{"sector":1,"length":512,"data":[540150285,1095773984,1329219668,538986054,1968447520,544435826,543581807,543516788,1701209701,1864397923,1345265766,977818689,221138511,538988298,7030063,729266,1869894576,544433522,1868767329,1864399216,1752440934,1885413477,1684956528,1679844453,1667592809,2037542772,1936288800,1852383348,544104736,1769369189,1835954034,225734245,4279050,991410,1918990000,1818386793,1634607205,543450477,1162891329,539903054,541404960,544825709,1965057378,543450483,2037149295,1701344288,1919510048,1948284019,224750953,4013322,991410,1970239920,1702065440,1347436832,541347397,1702127201,1953702002,1769239137,2032166766,544372079,1953724787,221146469,889851146,1701869908,1347436832,541347397,1869881403,1701602080,1948283489,1629513064,1852141680,543450468,1701996900,1919906915,1768693881,221148275,2035566602,1092642160,1313165392,1769414724,1970235508,1634738292,1701667186,1936876916,544175136,1886611812,544825708,543516788,1701867617,1684366446,1919509536,1869898597,1814067570,779383657,118360589,180502157,81052033,369492419,83885825,2017792256,1684956532,1159750757,1919906418,238101792,-1690399481,549552911,166436035,1048587932,1962869583,116862568,66636,-58700940,-385649393,-58720116,-385649347,-58719509,-385649300,-58719570,779580451,72091383,628391936,1946174184,5564512,1927873397,1048587778,1962869583,1258306824,1894318965]},{"sector":2,"length":512,"data":[1258503426,1760101237,1048587778,1979646799,-821957876,-268274,1580138286,-821957887,-268274,1311702830,301760513,-1957490315,-12615462,1207305845,-1017444346,-1010812325,1968110720,146929155,113716931,1180756,-953284629,33838086,121432064,-402039320,-1557264602,-1993473676,771844118,23731852,248447467,-385877016,788138508,-1677624157,57999164,-402120471,-970061391,16994566,772367848,772022433,72615483,378342004,-739769290,134211849,248447467,788528104,24254092,1881573678,-1899459583,472288720,1381061380,102651479,-1964499186,146270216,1392952878,-1003618045,637626398,-58710134,-2096728577,-1977219133,646458919,-970587774,431226887,67735528,-1616761279,860337153,-1573483054,159311873,638164200,1966816640,17099011,1711705134,-1913156863,-402512066,-1993471991,771929654,31590086,1048587776,1966735912,772715549,36116106,-501839826,165799937,-398333312,-2144466628,217662,1202986869,915264051,703070693,1048587785,1946157906,-1677006057,1465012563,235282006,-1327222241,2091069183,8644865,36116109,31996852,1579091721,1532582495,24420654,772338664,771849379,55721600,1019770112,-402426369,1402734741,1448563281,521012766,-1976693068,-402546922,-360707733,147253313,378354612,-1108868638,-1925467128,-402546922,-1590818636,-12844676,-1590813323,992871456,1963217926,109981210,-1959919258,-2096974282,192151806,788473065,55772870,-1272911104]},{"sector":3,"length":512,"data":[378154510,484966815,1105887241,-1274513432,-1625912005,141486081,-2111403474,772336385,27207306,776006784,23600836,-12615642,-1014824075,663234055,-402181400,-2144467093,217918,378344308,-2144467936,217406,378340468,535299126,1579091720,1532582495,772158185,24514185,1376175918,-352316924,512306767,-1943142024,771848710,72484551,1022033922,15778551,2095645556,512306941,-1993473672,771847694,26285705,-1825142482,1049177601,-1943141995,771848710,26680972,1376175918,-352321020,113716743,132178,-402336280,-1075312906,1956851204,378088961,-1943142036,-352227810,-401682687,-1511456773,-1557202425,1922826620,113716746,-65164,772125929,72484411,-1427569804,121366533,248447467,788528104,24254092,1881573678,-1899459583,472288720,1381061380,102651479,-400617828,786957921,777034758,24395393,1886669568,1950253358,1970012161,915090960,-1909587565,-1929275642,-352147650,918826505,1049428332,-147979609,281606,-401967856,3998287,-352160768,116862489,536872012,1239954037,15618,887621749,15618,-346545548,-401682687,-969998341,16995078,72524078,24945454,248447467,-100664344,31910300,-821957800,-268274,1950253358,1970012161,915090960,-1909587565,-1929275642,-352147650,918826505,1049428332,1793589927,114550788,993886246,-1377238155,-821957887,-268274,-342034549,-401682687,1049493499,-397344217,-1993472715,1493276942,-1237939922]},{"sector":4,"length":512,"data":[65529858,24420654,1980664622,655789313,1048653314,1811939700,1364407669,508974930,250776326,1956720159,512437761,-1959919240,771847694,26285707,2047249966,1049308673,1105723797,1579091718,1532582495,778365852,24395393,729107200,800346886,772155368,73014921,1543932974,503798532,-1927629742,235167254,101640223,1320427354,1376175918,100667908,109981267,-1959919238,-402556898,123405812,1048653468,1258291572,1377703285,773502032,73012875,1545506350,97970180,-350266792,-401682687,1939668987,1048587841,1962935122,212255,992873076,1946440198,11987203,-1237939410,16679682,115934068,10938879,1392952878,-1590820605,-1557265326,32178556,-68677937,-375588353,-1557266292,1397752188,1448563281,1655965214,-1912244248,4046787,-1459254490,1718878209,637534509,-1959918199,771845182,23987854,1950253358,1951072257,1048653389,1308623220,915223669,-1959919065,-1979606770,629679652,-136165562,-2010751820,1392920357,703082420,-1960901115,-1979229197,-2010767772,16547877,1195775092,-225709589,-2010766198,16547877,1195770996,520614635,1499094878,-521643941,68806659,1396604974,125042691,69211789,-352003608,-401682687,520617979,1499094878,-454452133,650130178,973175936,-4717707,861324287,-1977200448,31975428,-2096794792,-236256570,1547468838,-2144989324,158609212,3964966,-347732364,-18212,-58670242,-385649225,-58720027,-385649490,-92077696,-385649409]},{"sector":5,"length":512,"data":[3932536,-1993470603,-402368482,41222180,1020264368,773354753,23215753,1678150702,512306689,166200406,-402426624,-372308585,1448083784,772167505,72889995,-1409104253,1929473256,-135549949,-210493380,-277608132,-344708036,-411812548,-478921924,-546022340,74779964,1777008700,-1404043637,58014268,-391315829,91423033,-352139645,1968978953,-1392604411,540863979,1027347572,222040180,154930292,742131828,993789044,-148118155,1963458179,-1393063124,1094508324,615261045,1968192735,-551244772,360009788,1021256876,-1408338619,1312612132,615253877,1967406303,1499399936,1019435102,-1341950720,71094271,-1003616651,-821994946,74777148,-805306440,393544508,1611041838,1049177601,118358366,264191629,1328971822,1020264195,505115905,820518670,112649,855638715,-1227738423,-295769857,-402542561,272369777,-1590815883,-617413556,-1976645325,771836950,21837450,1963343055,512437766,1020200012,772175111,72097417,1964063951,106123297,-396184489,-1014103260,637550015,27854219,84309248,-1993998335,1527209733,-13709480,771839534,55707334,-821841665,1329496110,125173507,537049168,-1017632051,-2094116016,269886,12061301,774884792,69082761,516118619,25673302,-1202708722,567108352,-2093577938,512503297,777519493,25376395,-2061595090,3965697,70914420,1144653938,-117213439,-964491541,-118822142,113450846,1049429790,915210791,-953285977,-16675578,1006996223]},{"sector":6,"length":512,"data":[-401705984,108265385,-1925281490,-347650303,-12219668,309681212,771944323,26033721,-947714699,-2096633086,792461767,1555039092,1017818282,-352160768,-1950152712,113716958,-65139,-2145088986,242483452,1946116328,914959878,1178993037,-1977160981,805077028,-58712716,-2146667428,326384380,276099899,1323821902,-1925825746,1308849409,1179049195,-2010871258,16547877,1195772532,45547393,-320142732,-821957693,-268274,1914080814,646655489,1352401264,-1269365165,30861410,1035977614,93005312,1946157481,77062,1594198310,777542407,55524992,-1207601665,718086147,1950253358,1967849473,-821957855,-268274,24420654,-1927344610,771893014,24649355,2047249966,25880577,32218143,-68677937,110046975,-1892810368,-1627292154,248447467,-1627391000,922693276,-13762178,771850294,-402555743,869204146,613033673,1946221696,1006403612,629671796,-348043450,-1977202964,16547876,-58718348,-336432069,-956943614,-1262288891,-390057421,-2010250968,-1274927850,838971443,18540754,-1338788669,378154497,233308709,867484417,-1976696400,-402512618,784531712,55707334,891598848,771814376,22158985,-1557217140,378339668,616044437,14608421,616046275,378220069,-1909587630,-402566114,-1021378356,106386256,69116206,1946157117,539918,-1028388492,29034416,120245504,-1017619617,-1590799536,3998750,1024357376,158597128,145801908,-855637573,-1017619670,547434064,916663812]},{"sector":7,"length":512,"data":[580988420,950218244,614542852,983772676,648097284,1017327108,681651716,1050881540,715206148,1084435972,748760580,1117990404,782315012,1151544836,1354979332,1448563027,1504976390,1038670643,547565056,512306692,-1993472990,772023310,69605001,674662702,1049177604,-1943141334,772025374,70125196,1599997727,-1017619623,1572085328,521013936,520094696,-2144418984,-16560322,781977461,22945535,1048784579,1946157392,-13722617,-1023324642,784540109,72091383,125124608,-843643720,1405351983,-907517260,-1144811777,-1960443860,1539345927,1946157117,49123,4030502,-2094643340,1098121277,508646999,129572622,-1003057920,531034882,1952407129,-487897341,1946222467,-2144973043,91488317,-351746173,-947697711,1031808519,638481408,1948269952,1031808520,-134056901,1295945155,-116978173,1643806915,-92272526,-2147256454,-1195171606,-795999571,67118733,113651452,234882186,-1274606049,-855592777,1979661359,47679,280016820,992882637,1963019286,81913879,-1157625416,-919404542,-4795854,-1326837784,69462268,-1207645464,45809665,852046592,-385894702,-21435912,67889152,-1895381202,-385876223,79364342,-398543872,2035023588,61532408,-1929111320,-1323153642,-1259678972,-19994526,-1020540788,11587587,-1041747532,1381061630,102651479,1312196910,512503300,788268112,76228233,-1979267538,-1410858748,646655488,1460012171,1312736302,96871940,1023893248,1064632320,1275524910]},{"sector":8,"length":512,"data":[1950351364,-1224427466,520499149,-745736309,-1959869554,1124358174,185058854,508033931,-1189147050,915210251,-1527577920,1015029598,-1341491909,-31020512,-348919033,1468671563,199917823,-1396100266,108314634,1593371457,979296747,1444246218,-203165437,-2142320130,-160089284,-227292614,251668062,-970545933,-1003614971,-1341895106,521054723,-1929377607,-217925578,47268,1600003847,-1017423526,-1070451788,788393960,35985032,28324788,-504835534,-1330137859,1009765632,-352094721,817139824,1040044008,41227782,-2065163541,571395,855638715,-1227738423,-390928129,-1325619224,46393599,-855244616,1975519791,-401282302,112722783,178944,-768423629,-1914110026,-1155339288,582483968,-2095723248,57999611,-402507799,129499963,178944,-768423629,1776877494,-60888856,2062089648,8502786,-217659858,-919404544,800379443,-584677330,646458880,-2010250995,771826702,20713096,1141803054,243805697,118358864,11157133,771917288,23207679,58310667,184615913,-385649472,-970063584,-16560122,742293550,359990017,-217659858,-970063872,76806,1276018990,-348127228,1048587978,1963131188,113651240,-402652876,750256807,20724993,29036415,852046592,-385894702,-348067888,-390056980,-555156544,1048587777,1946353956,1048587814,1963065636,113651240,771752157,19138246,1048587776,1946222885,646000138,2147419212,788491497,72093313,1659469824,1048588031,1963065660,786706985]},{"sector":9,"length":512,"data":[17639048,1007076910,-2144468991,16858430,-2127689100,-16495578,-12850721,1276018990,-383778812,-2144403663,50414654,652804980,1444808447,918892119,-970063544,82950,-1912602433,-1224427321,-1064554547,108381963,1049429774,-2136735029,1946222460,1610083074,-385409186,-969998607,297222,-1891728594,141885185,1346273326,1551106051,-1895381202,-402653183,12122868,-397360384,-396885577,837484934,-1207849240,45809667,852046592,-335563054,27125792,-1157626952,-919404542,-4795854,-1930948629,243713,855638715,-1227738423,521019135,76494477,535213032,-1325750296,12838913,519818472,-2144985338,1131690813,-293341301,869698311,3976393,-348060812,12183800,378347278,45679757,11397120,1048587807,1946158217,8502797,1911055028,-371486981,-969998832,297222,-1191553048,247726079,18475039,-1157626440,-919404542,-4795854,535185384,-1105273621,1655963777,-1896136728,113651419,520160393,-1207520277,770192687,512306939,-1943142058,-1207871482,501757217,512306939,-1943142066,117526534,-1927344610,-1206517738,99099951,-1038709253,622966799,788200424,22810252,46864013,1511426350,784539393,76168832,-402098944,1286864925,-1191519256,887750655,113660,-840417100,45859834,-398412800,1355020996,1655965267,-1896170520,512435907,-1014104020,567101876,-1017619705,-919383728,8392330,1979775363,-402355668,326367169,1965046912,24936480,-2095418080,-360512826]},{"sector":10,"length":512,"data":[1021438722,1007318077,1007055904,-352160759,-347519484,-1017620017,-1191181637,-768475135,-2142371146,91496508,1963801728,-202682877,83142,540835918,-1993409931,772051254,76750476,1381191875,-919382266,-13385330,-1307431240,774884608,77858444,-1572959954,305051652,801964722,-1408857042,1049177604,783811754,-855330286,109850159,-1993472836,-1207649730,112333358,-1943130163,772055046,77479561,787417320,77334156,-1707177682,109850116,-1993472840,-402344386,-1943142038,772059142,78528137,-1307431240,774884616,79955596,-1036089042,113716740,168625369,570869294,-953277435,318982,113716736,656608,787387368,80101001,771819496,80363145,-402646552,1139277872,1390956800,1493725696,1532626783,-2096829608,-1007088444,-1205971376,567108352,1914636062,914959882,-1943141166,1577374726,12108632,47940,567136819,-2147359104,28836302,-1021194940,-1153171272,-768409599,-830463539,1140963329,-1262280243,1025625392,58004998,1025043448,91422722,-335544389,178947,-1191181896,11665408,-1007026250,68552447,1048582,2555911,4128776,5439497,1347436826,541347397,1396777007,1313294675,1852785440,1667853414,453643636,1162891329,790643790,1886344224,2003134806,1852785440,1667853414,386534772,1868787273,1667592818,1329864820,1702240339,1869181810,436866414,1162891329,1629504590,1634038380,1763735908,1635021678,1684368492,118360589,562970253,8700289]},{"sector":11,"length":512,"data":[369492675,83885825,1632636416,543519602,1869771333,824516722,1049429774,-1048370665,-953236707,3334,-1993409536,771751950,132807,-953286656,5382,113716736,6,-1677277394,777870080,10356423,-953271172,1040228358,113716779,993853602,1929845736,-18413,495658579,1930377766,178179,19130715,255232302,1431786240,1515149,235337262,1131749376,128706732,266878066,-399019001,410322752,235337262,91561984,-351873048,116796966,1950416910,468405790,1007126574,772175165,921216,-1796717823,-1396346105,1124567086,776912619,276105,509486,320768302,495658496,1521293,792494126,-2144455052,141828668,235337262,1416954112,21465638,959374386,1929379846,10563090,1138807040,651690819,-1998053493,778693376,132807,1626013697,21465638,-784276430,651690976,-315486326,259311883,-1960422589,13035551,1128362843,787669571,132807,887816195,21465638,-784276430,651690976,-466483318,54583505,260712152,-921965262,1396903796,-400585946,1935343709,-498908405,113716978,262146,777740125,3723,172334,70683438,378220032,-1976696826,-134215650,-1960423221,174343,-13761163,771751942,1962949760,108825,-953284235,33554950,1343154944,-4979792,1476435688,501744619,-104638463,642864579,839405450,1959332845,158305549,1929607912,976904,-335939870,780742150,1509425173,-2144943267,1946157182,-152353533]},{"sector":12,"length":512,"data":[-2144419003,268439054,1929365224,645934666,1357840398,1155374,19842603,1476398854,288787246,1015033344,774272256,989822080,-953284235,150995462,639625984,1946173315,133637657,309657601,33998638,-352321024,9889801,-116528136,-1336931605,-385895421,-128450557,-1960421437,-1993472897,637535806,-2010774136,776995173,637539745,1476543881,175440188,72714534,105744678,37509867,-1993996683,1357579349,-395049156,-462157764,108332604,72714278,71057131,-1590816907,641728527,637814153,-351904372,1971922475,1301030404,-165261306,1946223175,-352014332,1207313929,91488770,-437779792,-165259264,1947206215,11855875,-970013857,42246,126559824,410370059,1465013072,33998638,-1275066112,-402411265,1516240731,434853979,1946419369,113716754,2,771940840,147075,-352160503,-1873220861,1954545833,113716754,2,771821544,147075,-1455393527,309608448,33998638,-402653184,-2094137132,150995518,11086197,773157889,132807,1273495552,63891459,37651246,259328256,1948254377,113716746,2,771846632,10829440,772764929,147075,772240640,132807,-1017642999,-1976674736,1958742532,1966750746,2088775181,108331009,312878,-1595405845,1174500100,1591733062,1381417816,-1976643446,76408836,-1073083278,216534132,76033536,1178993131,1583016171,1937784003,1918974988,2004499516,-337697736,1460032308,9911949,1947547694,1381060631]},{"sector":13,"length":512,"data":[1706297102,-4472182,375295,-838860870,1482250785,22907694,54890030,-2144582845,123721510,777044827,921216,645934720,788332558,725353610,758909556,-2144467083,33558030,190534,1364247384,-919382446,777245235,-1073085302,-1981267340,842625536,-773288988,-388902430,745668714,-1047799157,-774774063,1912626664,-773664481,5564625,-754772366,1273546771,51212800,13730773,1912619496,-1142209021,-1876497573,116797019,1946288142,-137234678,29524946,637587843,637958027,3933322,28313461,216793012,113716880,589826,-4979792,1593677544,-1017620134,116797084,1963065358,-1648124670,-1007156624,809288697,960235634,808191095,-1007041544,1465013072,109021990,168135206,-1274776128,1011674111,1195341059,-1274705370,1088747017,-1977157629,-167398395,-134004508,1191545382,764094023,1929392872,63406866,-243939074,33998638,-1275066368,638905343,-1325439606,361440770,-953283605,150995462,-1325419520,-49420285,1482381919,1381322947,771928662,-253229942,-398691838,-164692365,134221318,1027345780,-2144985227,1962934654,773057393,919286,1007580176,638219578,32384,-347710347,1178216028,169702656,1179808960,638839621,1962952250,-1976678843,975586564,980746310,-1477753530,235337262,259276800,38270758,125042720,8290342,639792128,1050615,977016948,-2144990859,1962934398,1007610637,638022912,973110912,-336002188,914959878,1593311249,-1017619110]},{"sector":14,"length":512,"data":[777409360,990859,1965571968,-1964756385,26273799,675040628,-989985675,691815794,-855767435,594820466,209003068,1174702126,4909123,267070834,1929518824,76033543,126501702,1174702126,784657219,-970062712,-973078204,-208994297,19064902,70682926,772860672,1259147,312878,33998638,-1275066112,1577365759,-68556709,-1957641384,18933767,574366836,-58716811,773748002,1128662152,-387388605,124977599,1174702126,772246083,1128662152,-335948309,80096773,-1017579520,777410384,999051,168069678,-401378112,611647583,-1526282706,777912576,1593836742,777928683,1593836742,17299238,775058688,132807,703266818,-1976674728,1958742532,3008542,1558711156,1191342849,-347715770,144846569,80096768,-1993455872,1577059390,11098207,1342796802,95485876,1492861672,-1924049981,-1191142370,976093193,1124365319,1497495778,1381024603,168069678,-398953280,745668883,24937262,638481466,1050615,-2144461196,1962934652,1008733207,1007776353,739080058,-1261401504,-402214657,132905715,33998638,1509951744,-391330984,410255394,1962955752,116796950,1948254222,116797165,1950416910,116084233,-134091783,-1007107250,222056787,3943796,171714932,-2144983692,1912734333,651899678,-2096931446,-2144992061,225706041,-1977169613,975586057,-503024639,1494039800,1364443995,134661678,-2144460800,-553644506,913580092,846465340,829697084,209002556,1965046912,1176547335]},{"sector":15,"length":512,"data":[518766650,41779238,857174529,1300899529,1959332611,244491,20588099,-119404684,1532567612,144846531,116796928,1962999822,243281414,975175694,-1914180672,989861678,1007318237,-117213905,-336064789,1966029835,243281414,-130023410,1398152899,188646190,661979136,1381047888,856053079,-1193373962,567108352,-619979892,1516199175,1951932249,914959913,-1993474039,771754782,603787,186551854,3965696,70914164,1144653938,-117213439,1178994155,1543039979,-490528930,453030427,-20476,-1,-1,6985,22413312,44893186,1112670958,-1064507253,234885125,303903,787971,244039822,-108331002,-34108593,-1202674445,-883949516,-661863540,-1898410424,1032128,-1342172999,1202648063,-1014237301,-1077899704,78708751,-789068149,-628299565,74698795,-768878452,-268181293,-947135858,-388771593,-802438516,-1064565645,-522989013,-1030817789,1322289836,1187548077,-31145334,91598908,-341118036,1974615046,-1968901267,1946265794,20102833,512433934,872153092,-930370094,-1031072797,-1064385789,-2080863315,292880383,-501415642,16417267,-2129234704,-351272766,1086360796,-276578162,486614544,-339702200,-1950118942,-1962932162,50334262,33948144,1060096,-1064380274,-100663109,-410265970,784698363,1085550591,-1191181637,-896794602,482007694,-1205744383,567102719,1801675088,1713398885,543517801,1663071081,1970434671,160880,457834852,0,0]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"data":[17180905,84148994,151521030,218893066,286265102,353637138,421009174,26,0,0,0,0,0,0,38375424,38535756,38535756,38535756,38535756,38535756,38535756,87294537,38994515,38994515,38994515,38994515,38339155,38339875,55640649,38339145,38339145,38994515,38994515,38339145,38994515,38339145,38339145,38339145,38339145,55640649,38339145,55640649,38339145,44958382,44958382,38339246,38339145,38339246,61211310,38339145,38339409,38339145,38339662,44958281,38339145,38339145,38339145,79364681,38339145,44958281,38339246,38339145,74121801,38339145,66978377,66978814,66978814,38536190,50201164,906413870,1342308353,1828487251,-997578121,-1948200552,-1476448552,283640122,146296832,1479200128,146297027,1479200129,146297027,1479200137,-661309,-13739941,-1962859986,1007127258,-2096794113,126486467,74825738,18718766,788513768,-402579806,126354224,522094894,777542401,20055695,872845102,49211393,572456750,-102196223,777211906,18816651,18784302,1482360712,876019502,922693121,-1930952398,-628371457,973176704,126522997,788493288,-402579806,126354178,522094894,777542401,20055695,872845102,43968513,572456750,-1444373503,777211906,18816651,18784302,1482360712,876019502,922693121,1021837618,-561262593]},{"sector":3,"length":512,"data":[973176704,1139344244,-402158849,-1573978336,-1343749858,772245506,18816649,-1892788133,771830278,20186767,771902440,19013375,39250076,-1959898288,771825438,-2013192544,777542407,20199167,842465070,-18225151,1976699599,-17503997,-773274998,513945342,37677057,1482412170,942049326,110046721,-1892810446,-402574330,-13762052,-1677647330,771885032,20463232,772633654,20463232,772109340,18749066,876019502,922693121,-1796734670,1482412030,71127888,1024422980,175391749,1950615613,1141456133,-620020363,-1014351500,788424680,-402579806,-662044204,-1892788136,771830278,20186767,771856360,19013375,27453596,505317934,922693121,-13762252,-402574794,-372244929,1482423886,-58698928,172193129,-1975880485,-31528765,18784814,-1979610136,777541848,20055695,872845102,21948417,572456750,1508416513,512372225,-13762274,771830838,20068095,-335677720,-33232637,-1506325,1482412029,-1073065136,-628419979,973176704,126486389,-2013175320,-35329785,-1946270743,25133278,-1963821766,-38344697,18784814,-2013182488,512306695,1482359071,839290670,110046721,-504889036,520039936,-392429278,1397752044,522095406,513814017,1527220225,922693208,-13762252,-402574794,-1949303425,-402158630,-1573978772,-1993473762,-2147410146,91568892,-2013203992,93005319,18981422,1966800000,14739462,1527089190,110046808,-1892810446,-402574330,-13762432,-1677647330,1342213096]},{"sector":4,"length":512,"data":[564145747,92808705,522095406,513814017,1527220225,922693208,-13762252,-402574794,-389022441,57999581,1543315945,497036888,-808911359,-1031120805,-236404482,513945340,6219777,-796210946,18981422,520040092,-1269825246,-13722599,771826206,18749066,976145150,1963008262,513814024,497167873,-991406079,1431359484,1183575179,102837766,1719730486,1576926982,1431356248,-1590760309,1174995254,-1017619194,57983230,-33553432,440189896,3939703,-1607595915,-1574043363,1364394270,-1147605878,-670891774,-1979217362,-1017423387,359809340,141974076,225599804,158825020,1613504524,83871720,-1209482432,788475647,-1343749850,788475647,-58719958,772109318,19803903,108462396,118358645,1456471984,-1070378672,448393355,-2071319040,994443523,-503024186,1505768436,12803672,0,28270,0,0,0,0,17186816,1026243331,105447680,1812353794,35655686,2013724160,6,-33553920,50331654,1096045359,5461332,1096045359,5451520,0,1790,4140801,436207619,1107741249,-834468148,114312198,1174852165,-699988268,114837510,1241963081,-565508388,115362822,1309073997,-431028508,115888134,1376184913,-296548628,116413446,1443295829,-162068748,116938758,1510406745,4261628,4390978,4522052,4653126,4784200,4915274,5046348,5177422,5308496,5439570,5570644,5701718,5832792,90]},{"sector":5,"length":512,"data":[0,720896,0,19402752,32,285215488,16777223,536936464,118685707,268566528,1344274688,430168204,119841543,67430488,333973107,36694021,184560801,101217472,1236582542,101130701,567104180,103882377,104007308,968883207,8502790,-768358093,103626377,103757449,-1559449624,3999270,-401640192,914948252,-1645738449,103195404,1048636651,1946158626,20572169,-402653000,-12779051,1342928127,-1559875679,-396884435,1048576458,1970865701,15667,179832446,28895232,547405875,178950,-58657802,-1207536640,-1545076726,608075777,209022470,102841984,-972720895,17178374,102710912,-402098944,266863055,-402199806,1994916135,-853953535,28856353,-1104163578,-24444669,-100656455,1526441203,567086772,-855549720,-919354592,547405875,178950,1048638454,1963067134,16547875,117317237,113640992,1350108709,-1576599648,-1477966296,45848576,-1982332159,1476798750,117325440,-2144832254,594804988,102762238,103089862,-6270855,103326214,-1962902040,-2012862178,604423687,-1990690554,-2096747210,458814,1048659572,106694400,1048645748,107218688,1048643700,107546368,113647477,-973011423,2030445830,106694342,1678165536,113647622,-1994389911,-351916746,4096271,1963357447,570869255,15401222,19708099,-1191181893,12451840,48896,-4849486,1023634920,57934129,-1007293632,661799212,-1001368826,637939998,1931560762,1606690330]},{"sector":6,"length":512,"data":[1488147222,56353782,1207379672,1950351427,123426822,-1195130626,1474822154,1476789760,-1207555165,801965569,62587313,452558849,975584119,1395749903,126494289,723421958,-2134667770,1074020545,118558344,-1207495774,29032450,178432,-1090054722,11665408,-337051722,1532561154,-339607997,-1262286912,-1021194932,312912,103618187,117970569,118103692,-1191181637,113115137,-1241468409,45934594,-2627496,-1274653872,-1910387358,512435907,-1014104020,567101876,-1017619705,310099,567099060,1543076171,891664579,512303565,109838630,649593128,-1994273483,-1946080738,-1207882746,567096623,19799689,19924620,-852155976,512306721,-1943142110,-1207884794,801965568,57982986,-1006765336,567089588,497205502,-73996287,-796210946,567086772,-1207574854,567092517,-1207572806,567092518,-1207570758,567092527,-1207823174,567092513,-385910296,1656422238,-852380672,49953,0,0,-65536,65535,0,-65536,65535,0,-65536,-1,65535,-65536,65535,0,658688,0,606339082,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,1294214180,1329864787,1700143187,1869181810,540418158,1126777640,1920561263,1952999273,943272224,959524145,1293956153,1869767529,1952870259,1919894304,1766596720]},{"sector":7,"length":512,"data":[1936614755,1293968485,1919251553,543973737,1917853741,1919250543,1864399220,1766662246,1936683619,544499311,543976513,1751607666,1914729332,1919251301,543450486,106058576,-1899416745,-1191234623,11670062,109850573,1049168460,783813194,-855461358,1409715247,1379830026,305051658,801965234,174327436,174210697,-1307431240,-1943024378,-1995814906,-401979842,109840320,1049168452,109840962,1049168480,-823653794,1476824071,1446938890,305051658,801966258,174851724,174734985,175965895,113641997,-953939258,688646,-2079930624,-402650614,1049167703,434637422,3074048,1358971368,1912623336,123689224,-346530982,214205188,1448133625,1660991518,119415245,-1995935201,-1945471434,1577744390,12108632,47940,567136819,-2147359104,28836302,-1021194940,-1153171272,-768409599,-830463539,1140963329,-1262280243,1025625392,58004998,1025043448,91422722,-335544389,178947,-1191181896,11665408,-1007026250,1431393104,-1957558697,2048821737,2134280202,46589962,477415691,91614475,-352311576,28370947,-396752782,1594294533,-998046485,82573574,-111517945,1499268722,82532443,-116865917,1381191875,175775371,1979710339,2942981,2011694059,-1274055936,47961,-466476595,-116996989,-75296533,990606591,-402164543,-998047568,57866502,-1017619622,-2095118818,460653049,-1977220428,522308885,-1310145910,520494592,-1977219213,567083349,-1274024968,1959332610,361375241,1229398477]},{"sector":8,"length":512,"data":[536408949,105928643,519736147,-1327920377,-1359807462,-651492491,1540066123,-1017161721,-921976781,102649716,-1958693857,33129431,567093365,-1977200609,5957637,520494680,-1258813837,567099968,1031808668,-1962773222,-821957695,-268274,1364531947,-1946179864,567106025,199950963,125093947,1979246651,1572965122,666419999,310016,-2134703691,292880382,1971373814,-1928913396,-1190494914,15204354,1460061183,175521476,393543435,4031270,638612728,124912954,21314086,1207501175,1609165639,110084871,-617411968,922194579,-141358460,-2096462794,91621882,-348667264,818053123,-1073004206,-620034955,-108840588,-2146601725,1965820540,-1925775611,585842954,1963456899,175931405,-16419540,1091210550,-108850965,-2146732789,1965820540,-1925775611,865288458,866642898,-4181038,-1022721994,-921972173,632562036,942014640,638219557,1946248504,1975794180,92939790,1946113000,1111967489,1457747273,-317994361,-2092092556,688702,1149905781,640680966,1963017530,1008659202,184841520,50623698,-2132284620,-16089282,1111623797,1330596169,-4586517,-114599937,1610484456,-352095399,-1957588891,108822730,185431040,1225159881,-347650231,283860481,58050827,-2096501922,41287673,-16004813,1465203828,-919383802,176307843,-166497024,1963919172,41731080,-352167192,24832000,552076267,1493660160,1583177479,-998046485,1048836362,1962936962,-385650171,113770286,2690,-1580059709]},{"sector":9,"length":512,"data":[113707650,658052,1493086184,176588680,1090224963,-119012491,1976172033,168671470,176588681,-387431613,1398194945,-919341517,1979711104,1857850120,-337671414,46593573,-1128003468,-1014232494,322771179,1024291328,142016551,173980868,116114316,172145860,-75250804,-2146011649,58064894,-1559434247,-4715902,114175,-336005581,16483084,1424491380,80118528,184972024,-352160311,-25125729,1378448641,1460031829,83933264,-12832819,-1962314408,84064472,32190413,1594192889,116087047,-402209661,1516044300,248447467,1543502824,1347928926,855637945,-139529536,1599621585,33260483,1048780149,1962871402,-49898,-1588589707,520030850,-346551702,1780416260,857402122,-98103,-1977219468,166396749,1966422062,1300901380,80184067,-131238919,427084043,1962933888,87762437,992871403,-352160507,91506953,-352008317,208861667,-117440896,118358645,41747238,-315488654,1192069670,175900358,-617364736,425088,-2016997003,757074566,-2017049789,1126173318,1560323816,-768353485,175902344,973685898,706639553,-152007999,1954547524,172263956,176588680,1090224963,2095580021,1976499712,142377196,940405760,141756492,-1979167702,139234001,611633419,252134646,1156975733,108269575,1191545382,-2007498261,1124763271,1967192963,4319235,-596260354,-2147007242,-167110539,1149899892,-2037938166,-75283702,-402426560,-822214621,1157033077,141889287,268911862,216728180]},{"sector":10,"length":512,"data":[141873674,176162447,-126498050,1426064104,1460031939,-880081122,1049484083,1961364102,1594192635,82532615,-116996989,1156996547,309669895,1342540326,-61151167,-1977219469,-128974523,-1977217557,1958742533,-348043516,1442393077,369557443,536871176,872415744,1241590784,-1811862272,-1140773376,-318689536,654389248,1442918657,1850283777,1920102243,544498533,542330692,1936876918,225341289,1917786378,1852401513,622881889,1931491889,1948284005,841293935,1292504378,1768187218,1952671090,1701978227,1936029041,1713402740,1679848047,543912809,1919250543,1869182049,1864397678,1852776558,1919164517,543520361,1629515636,1718182944,1701995878,1679848558,1702259058,218762542,1396779786,1313294675,1534614304,2034064698,1532836443,1563307566,1091177821,1195987795,1395597390,1431585108,218762579,538981386,538976376,538976288,1701860128,1768319331,1948283749,1679844712,1702259058,1952803872,544367988,1914728308,1936941413,778987369,540871181,538999072,538976288,1884495904,1718182757,544433513,543516788,1986622052,1752440933,2015392865,1769414714,1646292076,1935745125,1852270963,1948279909,168636015,790634546,1413567571,538989397,1886611780,1937334636,1920295712,1953391986,1769104416,1629513078,1734964083,1852140910,221148020,1426722058,1701869908,1397965088,542000969,1752459639,544503151,1634886000,1702126957,1948283762,1701978223,544499059,543976545,1986622052,1701584997]},{"sector":11,"length":512,"data":[1919251572,1869881459,1769107232,1634625895,1628048748,1734964083,1852140910,221148020,-1928917494,-2129570498,-1023290687,18220545,327679,1954039057,1701080677,1917132900,544370546,118370597,321666701,-1021263485,18220546,327679,1918980110,1159751027,1919906418,238101792,1346276615,499221267,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-16777216,0,255,-953286656,1281286,-1993409536,773029902,327288519,-953286656,1283334,113716736,4998,1929676776,-18413,495658579,1930377766,178179,19130715,-1892251346,1431786259,328670861,-1912146386,1131749395,85452972,2078817394,-399019004,410322092,-1912146386,91562003,-352042008,116796966,1950421902,468405790,1007126574,772175165,328076928,15221505,-1396346107,1124567086,776912619,327431817,509486,-1826715346,495658515,328677005,792494126,-2144455052,141828668,-1912146386,1416954131,21465638,959374386,1930657798,-2136920558,1138807059,651690819,-1998053493,778693376,327288519]},{"sector":12,"length":512,"data":[1626013697,21465638,-784276430,651690976,-315486326,259311883,-1960422589,13035551,1128362843,787669571,327288519,887816195,21465638,-784276430,651690976,-466483318,54583505,260712152,-921965262,1396903796,-400585946,1935343709,-498908405,113716978,267138,777740125,327159435,327328046,-2076800210,378220051,-1976691834,-132937698,-1960423229,174343,-13761163,773029894,1962949760,108825,-953284235,34832902,1343154944,-4979792,1476435688,501744619,-104638463,642864579,839405450,1959332845,158305549,1929536744,976904,-335939870,780742150,1509430165,-2144943267,1946157182,-152353533,-2144419003,269717006,1929365224,645934666,1357845390,328311086,19842603,1477676806,-1858696402,1015033363,774272256,989822080,-953284235,152273414,639625984,1946173315,133637657,309657601,-2113485010,-352321005,9889801,-116528136,-1336931605,-385895421,-128450557,-1960421437,-1993472897,638813758,-2010774136,776995173,638817697,1476543881,175440188,72714534,105744678,37509867,-1993996683,1357579349,-395049156,-462157764,108332604,72714278,71057131,-1590816907,641733519,637814153,-351904372,1971922475,1301030404,-165261306,1946223175,-352014332,1207313929,91488770,-2031615312,-165259264,1947206215,5629955,-970013857,1319174,126559824,410370059,1465013072,-2113485010,-1275066093,-402411265,1516240731,48978011,283837419,536914320,-953283980]},{"sector":13,"length":512,"data":[1278470,12249088,557744174,259326228,-2109832402,125108243,-2113485010,1476397331,777408707,-1073085302,977017460,-2144465547,1962934652,80096774,-402003200,24314475,-538229178,1455642718,785418834,1491600522,168587778,-401836864,-2010251252,1174530820,1525214022,-2143501474,1631325299,2050770290,-551272073,106118635,473861463,83525652,1049429108,942543895,1343714325,118379089,-1031117388,-1174405189,-4587515,1512164863,-1959896999,-1909587619,1128465221,-685342676,-1017444513,141701180,74922300,-1007144916,1397801977,-1960421550,-1977219457,1975519749,-335563772,1963146316,-1977202881,-167136251,-134004508,-1274705370,1088747013,-1977157629,642205445,854076811,-2095942912,-922876985,-953224843,135496198,-335563776,1703552532,637710591,199955851,-2113485010,-1275066093,-402411265,1516240419,1354979419,-1302965675,76164610,1912697576,-13965252,-1912146386,225708051,527777084,25067558,-344886016,116796947,1947210638,1966750734,2122327562,1551171584,643623750,1962952250,1958742557,-347781550,1178215955,1178957056,1157925422,4602406,1162230389,-164714517,1075023366,-148500620,2097735,-2144991372,1946157182,133637666,410255376,158677564,8290342,-351439616,1962949646,2122327559,57948672,772205561,328283785,1566203640,-391330984,410255394,1962955752,116796950,1948259214,116797165,1950421902,116084233,-134091783,-1007107250,222056787,3943796,171714932]},{"sector":14,"length":512,"pattern":0,"data":[-2144983692,1912734333,651899678,-2096931446,-2144992061,225706041,-1977169613,975586057,-503024639,1494039800,1364443995,-2012821970,-2144460781,-552366554,913580092,846465340,829697084,209002556,1965046912,1176547335,518766650,41779238,857174529,1300899529,1959332611,244491,20588099,-119404684,1532567612,-2002637117,116796947,1963004814,243281414,975180686,-1914180672,991139630,1007318237,-117213905,-336064789,1966029835,243281414,-130018418,1398152899,-1958837458,661979155,1381047888,856053079,-1193373962,567108352,-619979892,1516199175,1951932249,914959913,-1993469047,773032734,327759499,-1960931794,3965715,70914164,1144653938,-117213439,1178994155,1543039979,12787550]},{"sector":15,"length":512,"data":[29907533,65558,38273032,46006271,512,-1048320,82,1263534351,1163151692,1886339872,824192626,758135097,1344287289,1380013899,1850286149,1092628067,1377856620,1952999273,1699881075,1987208563,484453,31719424,31,17039392,67043327,128,61276176,30,1,0,0,0,-1174081608,328373,33962752,-1273269760,18397705,550314445,544501582,1970237029,1830840423,1919905125,539829369,768642560,-1903165415,-994488128,1476342528,-67025730,-1865701901,1406897405,2999169,-846407165,-461323637,-1962626801,-1947806734,1323946446,738102094,-1898435608,-203714875,-577831771,12518919,-1376374015,1096341,-1783813141,904597682,280139181,-1783810325,1005260978,280139181,-1783800341,1592463538,280139181,-1783799829,141693106,1257099684,-126618508,-617363149,1951067601,-774647355,-999011603,-611986479,-305064076,-775982006,117145811,-305067150,-1392216758,-787434859,-1886769453,-109051551,863335434,49906651,-305059212,1922921546,1257099555,-741237644,1951067601,-774647397,74795757,280139181,-75443247,773223170,24231818,1457031852,-215222389,-216070626,-346153052,1257099648,-1783823243,-741273422,1913191296,1257099738,-1783823243,-741273422,1914174336,1257099722,-1783823243,-741273422,14672769,-1125392506,-2134375764,-12844843,-1956937355,281248747,-1850949581,61673443,-1866428733,19306413,-335945187]}],[{"sector":1,"length":512,"data":[-1023169045,-1896174190,-69170222,1406665645,-980528979,-1070342770,-930359157,-393490293,-125046645,33555403,328714,0,134678016,131337,84148992,6,0,151521024,218893066,0,83886138,56211457,-1896163186,-1610564400,-1929685664,-1946135018,-1996467186,-1677701090,-1558867944,-594870190,60369,29590274,-670838644,-668221300,567102132,109858816,-1977221032,838893582,8503021,512625172,-1942618068,-1107273186,1208019794,1015236097,-2080738048,-1403648826,-79691767,727637643,1255377886,-2092705533,84016867,-483720631,1309080715,8896654,-1527526752,96876039,-1992931552,-1744802754,232984320,906267214,1195771272,-152939320,688504883,732433112,-397402207,1286865007,67189116,-326412869,1426113667,-1954800128,-1408993653,941555892,1575324481,-1962535229,-2104621498,2123080761,386378244,-1674509903,-1578164656,-1557264114,8561912,-100200287,-13739978,241009182,259785276,1825382430,-1206786072,1674536193,-393999710,-396353260,222469,-1201667496,15204354,-953247704,-950796730,302652934,111806080,312655914,169648649,1342313634,-1207141882,-1202714408,-1072428228,942326453,-469305852,359923976,303403564,-1206768840,-780065781,-397136664,1139282020,1663715602,-1995504987,194127960,487027904,-1207037103,1126851636,1779053417,-1194568438,828182104,239846463,805747944,-1834405003,-1554894204,-1872428994,113640820,-1207892704,-1483517816]},{"sector":2,"length":512,"data":[823021863,-1303770073,91563809,-989172547,1026517643,169374730,84098377,1006976301,346099517,28847109,-351356770,151473339,336089121,305915940,-907540919,-1142212336,907678424,-2050628373,-605342455,843382911,69414114,-28834397,104768390,-1559723992,1133775680,1183514379,-2076007924,-1559621361,337251140,570435618,1440401186,107939852,1388841184,939973719,432539614,690618169,109248515,746448896,537232214,930423166,-1962516853,5737223,-1980102124,300678230,310707216,1992589311,-2063988998,126373282,-2146935100,715596863,1988827878,1086253844,-338741499,128528148,-1057093572,105924665,-971185038,-1070923769,1555485842,-1926244682,49502,-399773964,331747247,36373645,1076614953,78711584,-2109675309,-720517808,-817364749,820575343,1085936124,-798291878,1802846224,1610622625,1234097043,1229010083,1159213024,1173583339,-1958409978,-1333533371,71118630,1083678786,1688032811,1442616098,-2082960487,-1961733496,-66585482,302492325,-434836473,1074400843,10956518,750317569,1445657923,568608455,-461569984,1116258346,138745578,335535110,-1202618749,-1461095798,-1543435474,-433579228,-1835448821,1153707482,17514692,189194280,-1592327104,-880282065,438671855,-158009242,60559368,-1207759895,70847594,594871040,208543371,1965768576,918593544,1174932587,134671324,1655007210,1917283944,1982606815,-723160276,137157924,54098411,739081260,958991744,604863788]},{"sector":3,"length":512,"data":[1584737502,738454536,1311508688,738776138,-551286575,137157966,-433323027,372015209,1124657721,-45382904,25856516,-538003419,1274170157,1138025967,-301446176,1258516221,754593014,620209961,-284676895,738453486,151137534,-13864300,-366157276,66062524,1846085164,738864202,-484177657,137141582,-1574173711,749235466,-1593746670,167131692,-872962227,539630356,19662697,672223471,-461963401,-251922456,185225281,887389825,269519105,-52893668,-2086567913,1962997374,350003468,-526315237,302728198,248703235,-16122371,-965958305,336910974,236992538,1124409784,738643046,-2145643516,-1507300546,360004107,571173895,583654181,15081988,1185325259,1775664122,100402586,87090904,-1497692680,99108473,135267828,-599591226,-654085119,-368248394,1960039948,-66314216,202942318,-385607464,418909404,-32713906,-401866216,202907065,411206388,110588420,762774010,-704230830,-66705658,554083625,453433350,-133803372,-33155834,252062026,151447558,-191167226,-1964440826,-1410740736,937300144,997497190,1697946887,761005922,645137159,-2113435242,1946486559,126454040,118584326,688550919,1292371716,-2145255808,1151433215,-230258421,-1794505493,-228684814,-170901632,131596426,1020544648,1006924843,235369773,-1964282308,-369289118,-1944000093,113704530,311560732,894045961,-1777799798,-368634454,675747591,329311998,270666393,117700183,101144949,-1479251962,-1073378409]},{"sector":4,"length":512,"data":[17188674,1445377768,999561360,-17135987,102333804,2139122796,989146113,435108468,-1205819607,-2103435989,1090785633,-1284896888,120014739,428277762,1593475904,1337534855,1074903874,-2145741302,-745895855,1346388099,-1231220372,1784430188,506479687,-1728052475,-1978205151,-1354748921,998068711,-657744597,1014329086,1773816435,911024741,189268507,1970276816,-1192006643,1745945897,-1608042606,-284619174,-1037498325,-1902481156,-62325682,-1877441970,-1947634624,-339249516,1895469071,344428640,312841,-56325615,66745859,1380483076,-971119772,-1961127786,-871887829,1651173624,92387332,-351982152,-583944158,391321400,422885403,684759152,1268463658,740229663,-253022910,-1082065826,1951805746,1950287635,123908359,1608873258,-519761980,-269957348,-955703260,85530859,2123835264,-1747126690,12011541,105357452,-1652826041,918107650,697745433,1352138890,893371275,71253946,937375488,-2101475172,-1122627292,-1291316084,-1979184050,501492231,1079923678,-1951399549,951059753,651970653,1654523388,-172150090,107284129,-51900286,245797006,-1783045518,-1743019493,169660098,-727709815,2142487951,1578312707,-541096906,1947694159,1960472572,-822459910,1950970897,1952829607,1842810618,108277364,-1485566562,714959873,1130963855,682156805,-486170322,-593477363,1403488264,1262794759,331443268,-2146746874,-2061006336,-1073675954,189175727,1281098918,1543912379,1493671178,579720178,-962789031]},{"sector":5,"length":512,"data":[1560428806,105286233,-1476378462,100914944,1191576908,-1411935488,188391714,1191493795,1502938302,1845804120,793793557,580978433,1559392778,1696822119,-1637711885,-1706139097,906934411,910738283,101086296,1962962996,919405723,-853540830,2484433,1355055231,-1324676015,2131612424,-492811264,1720384027,-457168134,186588742,95550481,253829962,1222114337,570566469,196085808,122395883,567958529,-1319326044,2043915,-1806924975,55000657,1062723795,1061674175,1241603580,1192511233,-1202314861,192432945,-1963069264,846515209,570498793,1648264005,-1941814656,623280128,-1593379089,1946289472,169609004,1361409282,152176410,-2046681593,13850493,14243539,855690473,869591300,352596740,-667741942,-1610573517,701560356,171450901,705143349,-1629221413,2146148079,1174422215,-1962223892,1120332918,552488980,2122518271,510855404,-321042272,84969354,890145327,-2048024496,282948801,-208993000,641353864,137746923,271778560,-260954364,-259184442,-1929071424,-291246522,1845234692,-1711629890,-2142632724,-284575583,1757475708,240338415,14477585,181072035,541911040,-1472461252,1963015320,-1239733184,361047300,-12777904,-2096400897,86086394,-840346618,-1950911958,1814662422,-159385572,461359779,-931541982,-1030625020,34122514,1398228597,1049909027,-1928465664,-217832052,1386612084,-1323271624,78512598,148780799,50166504,81044105,55330283,323900021,616647691,-1448853755]},{"sector":6,"length":512,"data":[1206171828,-1126414366,1200572186,1358431712,233991949,186630159,1105723522,1863583775,253919302,-1960612405,1514540294,1413620418,117920145,1962873560,1618352142,932743426,-1946190202,10897156,-85458560,2055653150,-973072641,16734854,-1228033864,-252056530,-1171634500,-912420704,1524598819,-1636624800,-1492789916,1326403673,197764111,2047934332,1308580357,-99476991,-2115434470,-1996128256,1949176766,270857798,-102809740,-616999352,1476800350,-840017856,249045495,-1839136946,-1098673255,1972877052,907036209,916363074,-1912593983,-396728856,939784717,-1629261367,108335626,393548256,-536837802,62795421,237072505,-746572833,1055590438,-905371426,1048578014,308741408,-1691900898,1961623119,18120707,49902235,1946679835,-1936194633,-124337638,-195513598,1629308843,1537249463,-2077806664,111564116,1856377724,35609416,1248141060,528686865,-231255041,520357407,520716614,-1559700831,119409324,-1222999881,-1123975196,1765351972,891559460,-1146413821,-501145040,151977497,-2072844287,2125100360,550905505,762052104,-318626941,359446565,-1577476048,983763766,51247883,627042631,-53357657,-987494144,17201697,-1574954994,928453799,-639056868,1411265708,211925917,543668998,1060634716,149422216,1444716560,1652065991,1379972747,-2143107578,-2129723616,69365950,-328073088,-2094077158,48972416,637902532,1130371,-2104878246,1996961830,99137285,-495845049,1194935354,818676794]},{"sector":7,"length":512,"data":[958203873,68001426,826803336,-1962189151,-1995743210,-1996447669,-335577962,-2147083600,1157595066,292849816,1176952459,1109014536,49015529,-405427587,-1548646392,1488591717,-276908182,-1592002346,1190356440,99839664,217257154,-7986874,52037201,18915365,-215661544,-502871266,294028552,-1484321927,-96034419,1410458273,1141474178,1090177291,1589946529,126559996,-1560127741,-1984436956,134644663,1192076546,738205356,449365576,-1016621100,139133480,1444448261,209323270,-2142473324,-1741970522,-1404772065,1279500804,-1314945876,84151108,907540644,-818930279,170517611,589033051,1754968724,-33285565,-18528879,1619499287,1759512691,206957684,-1226142739,-65339351,1163263003,136017179,-943422,492437110,1864226184,49005060,-399503499,1661270796,317226761,956321906,1414746705,509040213,823555846,78117979,-1930586576,1583292167,1532863104,1482250843,1404604623,-1205854203,1175357948,-1228191731,106628619,105026892,106761746,142345748,102136852,403057470,1023803412,1448565819,1107296185,346941612,-109770680,1577458492,428886,-2133118208,41230908,-620047370,76230517,1027646781,1023676371,154995316,84224041,427100431,-1325394234,1459522374,503727697,-2128264697,-1219600807,4799305,2135508490,-16097598,-1738557835,2634472,-1206684920,-1960422632,255469085,50334067,216619993,1429637377,1431786245,512562176,116786525,1965032788,12419646,930220130]},{"sector":8,"length":512,"data":[1946691304,945285170,85457025,-351800856,205523234,1310422081,126359787,1347501372,269385749,-1192738047,-916712428,-347925844,1246777027,1426409473,89726601,-1919899030,801134390,4993396,1040676037,642807041,838944650,971244160,1929725446,-788160239,172180448,769131288,8448031,1896376043,-1436679118,490743044,839879195,195660525,1396963529,1713960486,859796408,741077730,53719482,1563035435,121637130,-2122689483,70584885,1532976384,-1617788789,9112737,378253320,512361804,-1007155890,-146259376,1962934953,507940134,833165450,141921547,250287669,-1336901632,-385895421,-346554161,21751811,1342817112,904399103,-2145422848,173015078,1470189815,29764357,1476744454,1465319462,-402033600,-336068317,-2073626349,-1018949397,-1925018963,1364552770,1336189794,-1928485624,693129327,1282606072,-152961011,86868048,-1906626935,650337625,1879080576,-347762472,-725596682,-924315539,1833071359,137593327,-2145159827,-1371865220,519195514,414113057,-1022888154,-1020705519,-1879010457,-1448647923,-1979479542,-158203817,1049166975,-2010774196,704734467,645815072,1476543881,609315388,283913,105710611,37509611,-351402379,1012006991,1021867015,1021604872,42471942,1010635301,-1592888060,1384857739,1569467959,-2143933650,1342862602,38270502,-1341885439,153485618,91488779,904397488,226027029,15260688,1593882627,486983363,-2117009402,1343736957,-1286122925,-1516125174]},{"sector":9,"length":512,"data":[-452960024,1532649471,-1458050216,269495808,1776832912,-2143386877,41230834,1676346347,1937775248,18160170,1058360602,-535478105,-231205632,352458099,-272497498,-2136399083,1445205248,705566136,-1593215968,32970146,1302347392,1870865,-1651245002,1448133464,-1073085302,406863988,192231996,90602624,1674314228,94962944,1178993011,593421035,92951126,-400175086,192021911,820513578,-2013263103,-367138044,1019436634,1929379968,1918974988,2004499522,-337697730,414522,1049450250,-92273139,151286788,84411912,393483576,-1274601867,-1978359707,-17470,112885177,553689549,22907750,1124287886,742595200,1607935616,881548039,427826856,1863607037,161679866,34866938,-2135693242,1447537410,-768358093,-1308619437,18278466,-466470542,13756555,-774774056,1912666344,-1948611796,224101057,-502673685,369691137,-938224893,218749416,-716044285,-100609661,281019250,-379863877,-849674060,1946292736,-137234678,29524946,1653286430,1661368079,126408706,-4980304,1174444777,1947140248,-2144582050,992353909,-1835924660,992360050,-1473347756,1996951044,84838184,334176375,2082353563,2082373400,504563984,461113983,163614,-2095846653,-922875450,-1437813131,1610614395,408555,-349937592,-167136204,-268222236,1185338220,1950446915,837395682,837628165,828404743,17938442,1593641976,-1023396282,41272988,1889387421,12843010,1019476376,1007186480,738490169,237077296]},{"sector":10,"length":512,"data":[479332746,-1073084969,1245971573,1632576060,1980778302,184069075,4655621,764090696,1929392360,63406865,-240102531,180750449,1696513994,520270079,-2033665259,1627162075,1432869761,45241938,1881628704,-398822909,1277361640,225708181,275258977,-345090047,336740627,1796109328,352977227,-347710859,224536154,-1606465990,1179701558,1125000005,1212566373,339282501,933953555,638547008,537020407,176649216,1696747527,1053905,-2121725512,250285389,228690360,-1593609158,-128745104,274553438,1448294952,1577098472,14386873,-1845313274,100927136,-1557880344,169224354,-1779937829,1695829004,202113699,1493993960,581111317,512447156,98440512,1946352515,-468702177,1114965392,631359626,-393594615,378208426,1963006755,-337017342,219588437,-870376928,154936146,587726870,1935997571,1824686340,6183687,-402181605,267123539,250086155,1257981964,-1916252016,-12819146,628,1347558942,12066590,-841577672,526014497,-1077730619,1005963571,1048595908,-2146496035,74580010,1009808635,-349408210,1016530956,-1574538195,234881058,-33560546,11804274,703121,778999,292934144,242401539,-1075100015,-336013174,1175782661,-1946615548,273969345,1440175640,17271301,1126013706,284044008,1143144646,-208994303,13363270,-352149120,1496746765,-317816801,-396665335,1224800918,604474191,10625396,-58717126,76028677,-1069333690,-387322996,108200308,-1136577268,-103224570]},{"sector":11,"length":512,"data":[625607915,1462958144,807878253,-401488787,544538711,19842188,-346087842,130825785,476392932,710419940,-1726244797,460524053,1179058777,652929794,-1823563254,-1589737145,1220763486,1342770264,88090779,1744436712,512577875,28902930,121286016,-498924428,1532576249,552119491,-401197662,-1429688751,300839942,1309213089,1111492331,1324876192,1010366659,137196557,1009379072,639988746,163200,510788136,-1977165005,-1014824099,-2105208828,856496697,1124667337,711997990,804839943,911919787,1344310981,1021292810,1077687896,846465285,829697084,386404876,548407045,1337997894,22070348,574691186,704859584,244491,122237590,-1891033015,-1571302216,874548228,1563332074,990183424,1008301277,-116230865,-12088752,141544,-398429444,-346489823,728954893,773393131,203472448,-2091690466,634736958,503353680,856053123,-992047370,1660991503,-619980013,1560760610,-1604837574,915003170,562627919,137268374,538904718,974156818,973632004,-745474492,-768593872,1583085803,-1828687329,1342471856,172329808,1563462480,88967938,-1957229504,1432291445,1576396008,480596311,407668998,402822281,411637897,-1983608161,205870612,1577714776,1728218719,1460032083,868323057,-1199046401,11670062,-1942605875,-1626986490,103175017,-1231355375,772878353,-630389743,1041317905,101779894,571548689,-809199098,-855626741,1700012038,168107535,178727484,422320442,266037556,-1509410510]},{"sector":12,"length":512,"data":[289945858,113706310,1386219101,-969537011,223127046,-251508638,168190983,-1447650816,1278946132,647776810,1343219274,50875919,1697798,4450309,-401506223,141688914,483161,-2096840660,-872870716,1075730000,119430753,-1990495713,-1592633802,705058961,1142360616,-768391493,1088847900,-830471827,1140963329,1273435659,-1273817599,96731440,1964377661,418117635,1944847431,341056005,180028395,-1184823886,-1241468350,-1173274369,-1705683194,1913594166,648029966,100955384,1342368543,-141884416,-883388835,-164408490,-922089165,906589465,-1933460284,-347535165,264697384,772346638,322771470,2571578,326603987,-1845030086,152963378,389479299,-147120125,1654863373,1431603718,720806845,470585170,1820353709,-133904765,-922024334,-1700785016,1342254236,1378448650,1351766357,684525006,-12832824,-661948584,-804519240,-1832890070,-346480756,821766,1516078346,-401682670,-883008669,271518346,552779826,-772297205,2019514441,20324679,-6716532,168368500,911216088,-13205855,303979909,134605656,-692575845,-2003761548,892890926,193210516,1745143683,-131380158,538908992,992347539,84142853,1246300576,-350286032,175307235,1965691904,2097358336,1160953090,221900032,106757447,-1828716479,106386769,921275218,512306196,914912090,-1574697377,186863965,469994221,-1024958161,1912669184,266885647,173999873,117971154,1442055779,285485066,1560829530,1532579234,-935259095]},{"sector":13,"length":512,"data":[1381173256,-2125690058,742346290,2000625793,-1274055936,1825375321,-466476791,1948127289,845167371,-402164543,1913782448,788529667,-2095118818,460653049,41985460,523048355,-1310145910,354984960,1427113843,-632680191,38333432,2459,1967736607,-1021314829,1392922711,119470731,-645169152,-218359120,721647022,-880063527,687867739,767570778,1103782223,-678739788,-1470814118,1519953541,692672512,452462168,385881154,1031808668,-1962773222,-1540882239,1364531947,-1946179864,1427921385,-1445367030,-398743096,586678611,666399069,402963200,28639232,-166628669,-1005944634,-1921119115,-1190765250,-4816888,1460061182,1446954038,-2147349754,-2094655715,1962410045,87696912,-1023409550,1996571962,1195899137,123726315,918756624,56624783,-1845051245,1681323830,-2096721146,-1602876934,-1031797488,84142903,88166960,184824340,-1187220261,1963999235,175931406,907310380,106768493,321186625,286459143,185854729,-929037983,-768371949,855941867,22155200,202031979,-1272870784,637579301,1367614776,-1268434837,1342424122,-11858105,268435827,1967735449,-897100061,896855307,-1878717363,-1976797929,102812740,1387999236,1006719519,936546864,-404016125,-2143125450,-16359618,910297205,1162825545,1472246598,325931,1935236968,9365763,-1958172079,1950518986,278230797,32973574,-1575949474,117652052,539077897,-919403974,1856529955,1862947199,-163889072,1410271044,-402490172,558367079]},{"sector":14,"length":512,"data":[1947012794,104486156,201736974,1964643477,185470490,979342612,839510055,1733821192,1618083874,123275152,-1973527201,-493094646,-1905130157,-1059913982,1133643494,-314572453,1493072360,1720158262,-75283706,-1743699648,-33498904,1723395487,361306658,1304946755,-958713558,691213173,757076838,163984917,-1424223583,1327258880,-1879044472,1149896284,1992374793,-1967052257,-1721947920,286618752,2136539658,-833002847,105507701,940422676,141756492,713688362,92983648,1129260316,68216307,671473338,1766036739,1474008386,-167110283,1527189431,-2073273564,-352173001,-1518053363,-889298935,-2069301387,-2034019035,-886987992,-1928820047,1541945918,-1690986685,-1010481008,1966094173,287341330,1122517328,1166373885,719147009,476381259,1095173236,-114559509,7429444,1063500,-1858914029,589722912,1973715584,66430990,192881731,1289509123,218592690,949508331,640185681,-166712181,768787652,1702576900,707660657,39125800,-970163493,738977324,1074634754,1380985460,-1070450508,-2076043635,302427609,107862020,-125105482,1481640538,-399767610,-947127148,153159048,-1981247250,1358498556,766691333,764465234,-637502458,461967491,579332227,9835012,1426485556,1226195384,1267263493,67898990,-190240724,677324801,-232259218,677387415,-835496908,-1146498520,1107379726,209791290,775954408,-1114185061,230490288,1720887366,184730764,-1950143199,444596804,1664944186,-1207732736,898324997]},{"sector":15,"length":512,"data":[1925595168,1241235176,34159158,3168690,1430339920,1769914,-2078441516,494141896,550926246,1006777856,1006926860,168197655,794931370,1890583787,-1216321018,208980217,1822796393,93941657,1762056843,68701334,426973387,-1214595611,1610747101,1612005396,2081242124,168176642,-1337733118,-81598452,1502926595,19203644,997503703,778372666,-193279230,-888472845,-2145484800,142000378,254067338,48958644,-1039605110,710629,-133556544,-1729621388,-1978960902,382216277,-119436782,-1274499041,1510240768,-1007090477,117385256,879758614,-1325399552,14155856,-1730609062,-1878971392,77056,771798272,788595201,805378305,822161921,1342179585,855731206,872515329,385982977,1850277888,1920102243,544498533,542330692,41969014,1869181810,352980334,1718973208,1764249702,1852139875,1835363611,2032829733,1867390486,671100173,1953785203,543649385,1953724787,540673306,543517734,520565029,1762088040,4088932,1766074399,1887605875,540369260,1751326797,592685665,1096883755,1769091409,1934456162,654312750,1413566466,1112101460,1378573088,2082491680,1565666592,-754302710,1393180980,1229804298,1208633354,358898442,985349908,1248877405,1565168488,-1268683181,799094041,538595624,-1431819488,-1722605565,1251899249,476999424,-1171641065,1630749467,555550578,1377372818,1679577629,1873405997,91843694,606020270,574693013,1573941825,537428686,-2038794722,86638894,-197834721]}]],[[{"sector":1,"length":512,"data":[704727071,-2137776382,1346318171,1701015410,621507443,-1050081746,1819059840,-1201052640,782973551,-2060912109,309359421,1684350313,169115936,268504642,-2128003929,-889053503,119734276,1835016,1900553,2359306,720928,786473,917585,353304658,1761871914,50999589,160438603,-1744291022,722056202,706751497,-1569766635,1829070677,1936287060,-1611637395,545278273,1987407737,1421871477,1311725864,889470761,58019842,1986939161,-1840064604,-1736870700,1702170656,1603437203,9277995,671220171,-65134,1158742020,139849592,1160667246,81162866,-249215972,-591297749,46866436,1951403556,56991882,556537121,1096207133,-744839918,-1426063329,329718173,1310791748,1715746847,356784930,37490432,550306419,-1962714689,37103616,-2114508032,1913651454,376323,-678495608,227460225,370177019,-965175009,10534963,-4717317,-461163956,646526718,119675954,-1312361723,-754703360,-1556723488,-150796516,1082934153,-567557375,1253366775,512505384,335546259,-1074002154,-1866921786,1137650445,-1442690573,83901260,31982482,862232578,-1271463955,78775303,-1348463604,-337484845,589168776,550706452,2018773511,24843054,2030304744,374499868,-1308294639,-1207462493,-1995950848,102793502,-2096722937,-1464660473,-1766185726,-1957096915,671605262,-1909529851,-802785018,180682796,602146385,-1596247078,132178592,-383777421,1681260877,367531508,369970875,-389730796,920858126]},{"sector":2,"length":512,"data":[-1439104222,-1188269056,8912908,-217615170,-1190431578,171147263,427117169,54846955,-1665202395,1409330183,-22244968,1208054976,1106764458,-2136192412,-1262545497,1921282306,1354954250,91521088,1074892672,-1092126389,409867756,10676227,-1978661367,-960579072,370532360,1947631080,392076905,1712201822,-402625513,-1777663815,19135544,1187473499,-2147418364,1030538,-167770693,-984850553,1899934814,-795250338,220815445,11813276,17420551,382017243,683879297,-1103178971,1949343780,-1080025587,130028807,335544756,1945582531,-1957736694,-597235,1305553,-2096230414,92996847,1946305803,-870208,-1007752419,638174208,41658876,1054126723,377569988,-1928986617,-486381080,-385203708,676986459,735873872,507247064,7473094,-1884160,-373279775,861339205,4372982,-469106638,-533549828,-192873502,-1360494507,-2063654165,83952172,-1883021817,-1173895162,-1793705918,1946620972,738559785,-1946154416,1091024902,864090777,-218133440,-76173650,1998275655,231868342,-779366395,-2118239297,-1909374720,1099476061,-134218753,1866932876,1800030817,-401387961,-456840941,1477663763,608010249,57957436,870640450,1227506121,335153951,361300740,-373894158,-778682349,-898301528,825819627,827233323,834280999,99356637,-768484559,1342871531,-1332404458,1205273351,-2147424303,-18710523,-997465557,-1962429789,385549272,689649808,918906466,-1851085643,-1342505690,-1511280586,-1428683833]},{"sector":3,"length":512,"data":[-1034963711,553680709,-1871058173,-1087155490,1255611867,-1906143639,-366511266,61509200,1555039935,306883315,143656657,240855411,-1027273438,883378734,884416810,121040620,-1774921420,-852229787,130533519,83820544,130557644,715544044,-1947716560,1241091049,188891140,-1911524106,1048585926,2369577,1169093187,335597486,608212805,-771912706,1053098981,-1090191273,-2048393207,-812949760,-1980234990,-1272053760,-1912136185,1240871902,1015092195,29377339,2122909044,138757376,-303927032,1576947337,1455444393,1446185472,133479940,1740782509,47486528,-1835594636,1580239848,-1762923529,-989410465,1468334786,-397471613,-1207107637,-1953360733,-2112936454,1085598429,325001677,-796186368,119670275,104412530,119275520,251995507,-657371136,-388824143,805951884,-886318965,-1014054653,135583883,275929244,1162407972,-1953122991,369177134,419746821,-74323513,610014066,-126640514,12858904,-402191528,39845902,839752105,125156,-1564273272,593692568,1040515200,1912801173,1931623437,91365380,95420416,1016072171,-1342015981,130726675,302684375,-1974104669,-1074271292,21032067,73304836,-1650844101,151042053,705923307,2030585591,-940473528,-788500610,-1194226823,652366593,169364338,239292422,319178243,679020630,372013248,-1992889351,-2015472810,-2145123804,-1962075318,1452015182,1242767868,181988177,-1979183098,-1271029338,9438534,1172962702,-678724865,-661856629,-1072176754]},{"sector":4,"length":512,"data":[914231338,436172173,725681409,1179092985,1090909956,41211590,1788324,-921459306,-208952077,-866256245,-1723793672,-24416481,2023982661,27838328,856184183,611742210,862487935,1307918698,499129093,509477391,-761527056,474481297,-326936746,-163133942,335585485,1022838408,1007318053,302412838,-884665096,-100266773,1157170379,1141785218,-1913366900,-230258393,74383542,175999754,-11173344,-60951970,-1609168885,1167002372,-1325370870,149681782,-1090638872,494915861,1512901749,549680084,1443410567,-1374697790,-396996420,-29873054,1394107773,-94991880,763570498,403113466,753604575,350874000,-64613850,296979016,1982166783,369435384,-1961427460,381904362,-1604888992,-1375320877,-415096371,-1442794232,-180486783,201369514,-1740598712,93253386,1594252686,508667010,-544286836,1946520593,285624893,1577657182,-1934262264,126617183,-1946005620,-237173673,218169366,1514351882,813194241,-446626716,-1977559510,1853187663,551449699,756907863,-1130168055,21640476,1380076888,1767124283,679503213,1651067936,2037539186,1127481344,1920561263,1952999273,694364192,1342189856,741881913,1667845408,1869836146,350029158,292581918,536945152,1174536205,1397050441,4545097,1646788728,1140851121,84297148,8128632,1409286832,-1189524151,-1493171443,137254164,252321807,507502165,-1207367671,721426769,206344769,1378550829,-919469048,67654443,-1408743381,1027736578,537010720]},{"sector":5,"length":512,"data":[36055080,771959297,53609474,37135400,1040398850,476396802,543757752,-1490785715,1694646796,1913591296,251963214,251858300,1947666640,5508864,37816550,-290538978,-164822264,-738324732,101647417,1645150985,1273877771,118361879,-2128746332,189403108,1745486080,252355072,751972097,319949651,1423638802,306123284,301989908,-1744668150,-738019838,268628482,208387,1778601052,33785859,67109858,512465472,539632388,-1497030608,1929626627,-2138976240,73540097,289210625,488157780,-1040056552,-1691916894,16874320,-838268543,205260418,7209016,208966448,605555377,604786330,-754182108,202147165,216624688,1006767216,201346674,7602304,270549120,68859144,1616082122,5392483,69873194,-1423048612,120457426,-1705812989,-1626990847,1916901798,671095206,1325428233,2086492933,1026244156,573166139,-921757165,197260548,1443562504,1762890747,101157469,1092887316,555424010,1449650402,540878465,1126703158,337707049,758192927,1112357125,538903860,1701006378,1307997038,1952522506,1818323259,-346680111,-1435235216,639662475,-1237242111,1934487213,1918868638,1376400758,15765378,-1451293863,-2044624564,1127941922,1051344991,1179535711,437587535,-1576250859,16843137,355306026,772258318,-1437334205,-1878258932,17104930,402784790,17565965,-2146039801,318707244,-16641523,672866072,1010610210,1044895566,1382498978,-2130628554,1931500682,1801675124,604111257]},{"sector":6,"length":512,"pattern":0,"data":[2003790950,50678198,1763455772,-1008162450,1317542247,694777492,-1049336478,1796526899,1847671073,-300199613,1439790447,-196565563,-1968559151,-483520056,-770151058,16526948,16734530,1823804786,1516596340,-1697518480,1160922473,-468885128,1903128667,307554510,960083666,87107329,813001846,-1839758813,1769173857,1909875559,251649440,19410124,963954192,839460864,1375987204,-1930917054,672466368,-1558245820,201775876,150994944,-1962932722,-141864967,1352987645,884491264,-1932832768,1222151363,605061262,-1191178305,-9689067,524791539,306758539,78717472,-789068149,2677472,74698795,-741201110,-1896872992,-1955744038,381818567,371196864,-1396535560,-1387343734,1179043979,1023340576,-1408928336,101689394,1836429884,318802541,851358157,-1929305787,-57794933,713151027,-1961630935,1774388162,-133250037,646512515,-1610605311,-92146718,376762368,268485249,840228075,-2095169445,689508591,-487878508,138316695,1342191297,100790442,858587138,-1749307122,-1896214528,-68711466,-13711989,155235375,381269012,-1463120896,481063354,1421889139,-714740912,1936309859,613698592,7565429,30670896,360251678,4071461,544808960,555688072,743776892,752692377,1018380468,764882189,-418103992,16711686,8389630,1049511]},{"sector":7,"length":512,"pattern":0,"data":[19683917,71,24838176,151781375,128,144113680,30,1]},{"sector":8,"length":512,"data":[0,0,0,0,871140181,1489823936,-16757528,1996424822,12838916,-402340733,480456585,108461838,-402360577,-998044935,322496516,-13431064,1996424822,13887492,-16464765,-1293416842,46433037,-401488664,2112360501,307292178,722704872,868441536,1484318912,1342857400,1343357112,-2091724056,116786372,1946225260,174110739,-2132258736,79987539,11929286,824502276,254019270,788973067,113642255,-973009110,34551046,254084806,805750272,113639439,-973073836,1201414,317458118,-318323200,113704978,4842,237766342,755418624,113639438,-973074898,929542,301860551,1438847504,-1070338933,1448605160,1586174443,-2143843578,259338044,1057062016,2088765813,57999362,-13919256,1182991438,2122514950,-629866492,1438866782,-2068255605,1472260096,1187403351,686293500,2089207299,1187447039,-352321026,-27358417,1988879313,-1926168826,1358920838,-2091367448,1183515844,-28952316,-793243788,-2037559296,-397344900,-998025172,-28901628,956581515,-914424250,1342231224,-8616307,1477634128,-1929067389,-1543537530,904466952,101107457,-956301294,202508806,174110740,302037072,1029761104,-955988861,65094,1586173163,137792510,-2012968430,-16093049,117440070,1755386376,134625546,-1948028398,-2017001890,-1090516368,1623069184,-1190715894,-1510866937,174079619,-2095483904,-16097218,922685044,922684006,-504886688,79987456,16533190,16547456]},{"sector":9,"length":512,"data":[-1175911563,236894208,174458425,-1092091019,237549582,174458425,1048596853,1946157203,1714880270,1614216970,11200522,-1610300285,-467005905,237936720,237871184,237805648,29550672,-804731773,-1609683410,-467005908,-523039823,237835914,95548970,-1039932717,237899402,-1056707286,-1207913821,104403686,1249184358,9715328,-15830016,-16095690,-401973194,-998047664,317562884,-1605311446,-11529492,-401413578,-998047547,317497350,95544362,378265811,162599658,-1039932717,317525642,-1056707286,-1552416723,2122318004,57934076,-81175,1122502262,46433034,-443850914,-1957313699,-390056980,1891128838,254190346,254287500,254478022,772195856,113647631,1342181162,-2091437592,748815044,254648847,957229240,359990854,1342242744,-1202667477,-1202716671,-1202716670,-347078648,317110318,1963345465,16758804,1354771280,1342177720,1342177976,-352319560,178401,1354771280,1342177720,1342177976,-402360577,-998037788,-1241070070,-907541504,1438866729,-1070338933,-2125103640,137561214,2122385271,1929886724,505866,694413392,-2147302269,1997276798,108953606,-1207274751,-397410297,-998037171,142508034,-2147059937,1929447550,505866,691529808,-2147302269,1981679742,108953634,-2146274300,1946551934,108953612,-2147060727,1963656830,505866,688908368,-2147302269,1963067006,142508070,-1207273955,-397410297,-998037255,71759362,-2146405373,1981548670,505866,686024784,-972897149]},{"sector":10,"length":512,"data":[16815110,-1957313699,-390056980,2122339542,175511300,1342179512,-2094480152,2122318532,175258630,1342179512,-2094484248,2122318532,175258632,1342179512,-2094488344,2122318532,175530762,1342179512,-2094492440,113640132,1560346771,-390057021,113726602,305533964,336463558,252102145,113639700,-969206768,1315078,305530566,923190786,113705490,189600312,305792711,113642336,-955837892,1460813062,1057408786,-955093998,-2079178490,1124517650,-955082478,-1374534394,1191626514,-955071726,-636335866,1258735378,-956301294,740614,1325844226,-956301301,1477136646,1392953099,-973046773,742662,190842567,113705216,2914,191104711,113707864,8129382,191366854,1460061952,-956301294,1202438,1527170816,-955376110,2081578246,1594279424,-726137838,1622691840,-1377284078,79987540,1342232504,1343382456,-2091606040,-625474364,1723355136,-1847046126,79987540,309069511,113709056,4718,309331655,113709798,8131186,309593798,14530561,309704784,1416030288,-955988861,1213446,-2046376184,-956301294,672303110,-1979267314,-973046766,17992710,1342234808,1343393208,-2091631640,113706180,536941209,312149703,113704961,236851869,312411847,113639548,-1207889247,-1202716445,-397405534,-998026224,-1375287548,-954203886,34779142,-1308178688,-955376110,-1844268026,-1241070063,-424148718,-1212657664,-437759982,79987539,314771143,113704960,4805,315033287,113708574]},{"sector":11,"length":512,"data":[8131273,315295430,15316993,315406416,1404758096,-955988861,1235462,-603535616,-956301294,504552966,-536426738,-973046766,18014726,1342238136,1343415224,-2091675672,113640644,-972877422,1151750,294913734,-1794718208,113713425,238031255,295306951,113708599,238948765,295700167,113708613,239866275,296093383,113708627,240783785,296486599,113708641,241701295,296879815,113708655,242618805,297273031,113708669,243536315,297666247,113708683,244453825,298059463,113708697,245371335,298452679,113708711,246288845,298845895,113708725,247206355,299239111,113708739,248123865,299632327,113708753,249041375,300025543,113708767,249958885,300418759,113708781,250876395,300811975,113708795,251793905,301205191,113708809,252711415,1342238904,1343107256,-2091735064,-189266748,934825984,-1712828402,79987538,1342241208,1343110840,-2091742232,-4717372,1169707008,2112376846,79987538,1342243768,1343114424,-2091749400,146277572,1404588033,1642614798,79987538,1342246584,1343118008,-2091756568,314049732,1639469057,1172852750,79987538,1342248888,1343121592,-2091763736,498599108,1874350081,703090702,79987538,1342251448,1343125176,-2091770904,649594052,2109231105,233328654,79987538,1342254264,1343128760,-2091778072,817366212,-1950855167,-236433394,79987537,1342256568,1343132344,-2091785240,1001915588,-1715974143,-706195442,79987537,1342259384]},{"sector":12,"length":512,"data":[1343135928,-2091792408,1186464964,-1481093119,-1175957490,79987537,1342262712,1343139512,-2091799576,1371014340,-1246212095,-1645719538,79987537,1342265016,1343143096,-2091806744,1555563716,-1011331071,-2115481586,79987537,1342267832,1343146680,-2091813912,1740113092,-776450047,1709723662,79987537,1342271160,1343150264,-2091821080,1941439684,-541569023,1239961614,79987537,1342273976,1343153848,-2091828248,-2135423804,-306687999,770199566,79987537,1342277048,1343157432,-2091835416,-1950874428,-71806975,300437518,79987537,1342280376,1343161016,-2091842584,-1749547836,163074049,-169324529,79987536,1342283192,1343164600,-2091849752,1438844100,-1900483445,1341188096,-96025002,1921435136,1187381503,2122514686,1400111108,289277638,1057408558,1052246033,-397389807,-998047257,289323012,1359538256,1023591555,208994307,289357440,-972720838,1130502,1342284984,1343307448,-2091889688,1052247236,-1545056239,46433047,125091851,33179334,-1207868695,-1924136830,1358919302,-2097062936,1183384772,58015992,-2097103639,1962997886,11790595,-8995200,-385649408,1187446953,-385875716,1988821144,1991934204,57999615,-956263191,16741510,-1960973568,-1165951882,1950089078,1988266525,1956547583,1049069823,1955004177,-62455809,-2130938229,16742074,1988876661,1991934204,58014719,-1946401025,-956336994,1130119,1343307448,18475088,-1207647101,-397405890,-998027206,212226,1048579189,1966739775]},{"sector":13,"length":512,"data":[1074185733,-1330118639,1052266497,2112376849,79987535,1343307448,-2095655448,-1073020220,1187382388,2122318330,57999610,-2130747415,1946221182,8775939,1342186168,-2095040024,1048576708,1962934417,2799626,539551824,-1207778173,-397410261,-998039522,605218818,1962934589,2275387,537716816,-1207778173,-397410260,-998039550,-1224292862,-1128791808,1052266497,1172852753,79987535,1343307448,-2095686168,-1073020220,1187388020,350945786,1342186168,-2095066648,280494788,786976768,46433058,16416384,2078868341,-443851009,-1957313699,309484,-1202841112,-397409846,-998027402,-62486270,1330702416,-1996307325,1178336838,-955810810,-442,1996426475,74907644,-2091984920,1183515844,1575324670,-326412861,-402649416,1187466714,-950009614,62534,-1996077429,1183578694,-62486268,1358055053,1358055053,-1957670936,1438866917,179891339,1303177216,2122536535,175964676,1342180536,-2094950168,1187447492,-352321032,-163119292,956581515,914224710,-772245877,108397542,1065360523,-1947830993,-405670274,-1962508797,792690717,76273524,-1946401143,-1962637051,-472779170,-1962516989,126483526,1191165931,71732216,-129615032,2122518398,159318776,1090012811,-336181623,106859431,-1979555957,-397371385,-998028860,106859266,-2013110389,106859271,-1996339317,1191181894,-27358210,1966751616,106859316,-2147328117,175980863,1342179000,-2094992152,1586168516,39815942,2119843712,440330,551544912]},{"sector":14,"length":512,"data":[-1962752893,1602946654,-351827454,236756997,-660455420,75399954,-1207272189,-397410291,-998039363,106859266,-1979424885,-397371385,-998028980,106859266,-2012979317,106859271,-2147197045,175980863,1342179000,-2095017752,1586168516,73370374,2119843712,440330,544991312,-1962752893,1200293470,-28931836,-1946269953,1065418334,-1207274438,-397410291,-998039459,106859266,-1610326133,121115352,246942325,1189629952,46433056,739432608,-96040896,-397351894,-998038741,587458562,721047178,1959279597,440330,538962000,-1962752893,1602946654,738691588,-96040896,-397351894,-998038785,584574978,721047178,1959279597,440330,536078416,-16595837,-401728458,-998038817,-1761163774,1586167808,73370374,-106821750,-1956684271,1438866917,-1766265717,1271719936,-230242474,1586193697,38243076,-506231,-1572233,46433100,-9795959,-1913239927,-1924074938,-397348282,-998027720,73304836,-1929218049,1358917766,-2092139544,-1098709820,2131099498,1887866118,-1204884481,-1924136868,1358917766,-2092507416,-2037840700,-1072955540,-2115435659,1790348032,-1913639937,1040150658,1920925702,-9664885,-263812800,-9533753,-1635057664,-472776850,12105727,-386894081,-998028202,1975520004,-263812286,-1945164125,-972085218,269429510,254412486,1676169216,46433100,-1576063838,45616941,-1070903296,112720,178256,702544,474933328,-972372861,67155462,-14732312,-2080412026,218066622,-1956733828]},{"sector":15,"length":512,"data":[1438866917,414772363,1255729152,15484614,-16490869,1790444151,-1310175221,79987531,15222471,-1960908032,-1082070946,1968966506,1807712273,175463435,1342180280,-2095144728,1191117508,191543528,1273030736,956482691,-747444154,1342925496,-2092183064,20775620,-2146077440,772500030,-810021259,1790464001,1508397067,79987531,1342925496,-2092192280,37552836,-2146077440,973826878,-742912395,1790464001,-169324533,79987530,1342925496,-2092201496,-661978428,191479680,-1207012004,-1202716201,-397407382,-998028588,191543300,1021857872,79987708,191512192,-2141031076,1544252222,1555585909,1840795648,1441288203,79987533,200165001,-1207274048,-397410293,-998040083,-297366782,-364476096,1342201016,-387287297,-998027984,-297367292,175489035,1342180280,-2095200024,1996423876,316186862,-1202658262,-1202716197,-397407382,-998028298,4175880,191543376,1172629584,184861827,-1206749760,-1202716630,-397407382,-998029870,1958742788,-330906108,1832812545,292903947,191643264,-1207274148,-397410293,-998040207,306085890,175374356,1342183864,-2095384088,1187447492,-1606152208,1076630232,-1913502072,-1924075450,-397348794,-998028320,1488900,-29950128,-28930799,191543376,543811664,-2096577405,1313342,1048776820,1963136010,768018,488106064,1996424939,551479550,-167590781,1074930694,1790454644,254190347,254287500,254478022,705086992,-397410289,-998028742,254583298,-1206964830,-397410294]}],[{"sector":1,"length":512,"data":[-998040355,304390146,272371748,1048583029,1949176359,-327253996,-1207012096,-1202716191,-397407382,-998028952,191543300,183547984,1234888784,-1207647101,-1202716580,-397407504,-998030325,-297367292,292864011,1024127021,58654722,-1947318529,130477662,6076416,191543376,1139140688,-1996176253,-1072959930,1187448693,-351572754,-297337085,-1192331521,-397405324,113658184,-1962868576,868441573,1213262016,1048645355,134217896,780210294,33554600,-2094934296,1313342,1048832117,1962939402,-1472298737,1980235776,-1794718201,183173376,1342177976,-2095311640,1438843588,1555623051,1208805376,-28915882,-474480640,537279250,-402426610,1622678460,537279250,-972720882,16813574,991082424,1963859974,138313846,175439892,1342186424,-2095329048,113640132,-973012847,538111494,317654726,-267991505,113657362,-969272591,1241606,83773127,237150464,-1929754999,283901022,-1963041141,-2021088186,1191121646,-96010242,653942468,1183319946,1975519908,-230784797,242483218,317865600,-2146995664,957542974,113640822,-1207954706,104534627,91557408,9438918,308721665,236979771,113640821,-1207893873,104534690,2054491680,9569990,-28915967,580976640,605457166,-96040690,-335784311,-25785585,-2002499958,1191159362,-96010242,653942468,1183319946,1975519908,-25785372,10896070,1353074317,-2092413464,-1073020220,-660597643,1357130258,1342301880,1353074317,-2092356120,1183647428,-1262989146]},{"sector":2,"length":512,"data":[-51884013,79987704,940702112,1964225542,-1626946043,-1956773632,868441573,1187309760,231212742,231323740,316186704,1076749354,-1092071424,79987485,-390057021,565724838,-1262989312,726670867,28856512,1911050240,180650786,-2097115997,1313342,-1070918539,45633616,922701824,1592262796,147096348,28842731,-1262989312,-1202708973,-1202716640,-397410286,-998038980,9216778,336215683,-1207274496,-397410287,-998041019,1226754,399829072,-402471805,113647857,-1023344487,803782707,112710,178256,542042192,-1207647101,-1202716668,-397410302,-998039488,1354771204,-1995908454,-1957313785,964844,-951713304,-1224674746,1358055053,1358055053,1342189496,-2092453912,2122319556,125108466,10880710,-953554176,-1224543674,1358055053,1358055053,1342189496,-2092463128,2122319556,125173746,10880710,-972690686,16819718,10894976,-952535806,-1224281530,1358055053,1358055053,1342189496,-2092475416,1183516356,190227444,133318343,-196687945,1183645696,1183666418,800608498,971526144,113541959,-1017256565,-1192457387,1743257606,316186693,-956545400,-969212602,-1207894458,-1924104128,-397345722,-998040833,-96040700,508553296,184730755,-972589632,18092550,113640939,-16772078,-1545012618,46433051,-2012087904,1187445830,1187396349,1085800702,1183666304,-1058516740,79987482,1358579337,-2095181592,-1073020220,113641333,-352250872,134661637,1996423188,459598074,-1017256565,-471285709]},{"sector":3,"length":512,"data":[149088324,-2147466264,42302,854075764,554952707,-2146624536,39486,-51903628,7464973,10829440,-1192659712,-397410270,-998042042,-1206916350,-397410280,-998042054,-1241070078,-571997952,-1957313768,178412,-968584728,-973013434,42246,-2147456280,42046,1048587124,1946157220,54585347,10829440,-402295552,82510012,33441478,10763904,-972786432,-2147353018,1946222206,1575324629,-326412861,-402652488,1187398726,113639678,-402653019,1048576140,1946157220,50128906,10829440,-972786688,-2147353018,1946222206,1575324642,-326412861,-402636104,1187398674,113639614,-1207959388,-1605364876,-467004712,32880720,-1069118128,1177872464,-1207384957,-11534330,-1206780362,-1924131820,-397361082,-998040813,171868936,125108244,10749638,-2146309375,36414,1776814708,-1556185088,74776576,29247174,12484224,-443825804,-1957313699,178412,-968645144,-973013434,41990,301872895,336869119,-2095375384,1048773828,1962939402,-1543059957,1187381504,518717950,9322112,-401771520,1048576024,1946157219,-11671549,33441478,16678528,-443817356,-1070349475,-968665624,41734,-1023364376,-1192457387,1139277828,71732035,-1996487163,-397345722,-998030438,-28931838,209043467,1342177976,-2095636248,65733316,-1946270069,868441573,1125443776,1342894520,-2092673560,-397409596,-997982278,326017794,-1207032157,-1588589840,1077941102,1138419792,-1962621821,-955027938,-1023410169]},{"sector":4,"length":512,"data":[-1192457387,-605552636,639535938,-1995994354,1996487750,1142220804,1342358659,-2080409112,1183384260,639536126,-1962440434,1183579742,-16283140,1183515766,1346388222,-1958506520,648281670,1575324430,-326412861,-402652488,1856062098,-28931821,126605451,-2096224605,1064566847,-397393856,-998029807,336241410,796246027,10684102,237412609,-1202700224,-397407504,-998030520,1849097988,1118234643,-1593654141,1856179750,-1908506605,57933824,-1962933016,1438866917,-2135364469,1110763520,705878176,-71806748,1183666177,1676169464,113541956,1342183096,1356088973,1358841485,1358448269,-2095496472,1558907076,619202186,1963998224,-344031162,-1203735506,-397407504,-998030534,-2133292286,1544220607,1183649140,-256356117,45633546,-1928598782,-1202656442,-1202713872,-1924136440,-397377466,-998030330,-2142860024,-19339184,-1929198461,-11479994,971570806,79987481,336215683,-1952615424,868441573,1100802240,336084608,-402295808,65733043,-2147320600,37438,-655883404,-1891729158,57999360,-1022304536,1944633395,-1677277631,113704960,130,1342186168,-2095909400,2095579844,-1643723263,1048576000,1946157202,-1623293942,57933824,-2131059992,1212734,434635636,278784011,-1022266648,-1192457387,736624724,-1526282687,614465792,1007690770,-972720880,42246,605168800,1963473928,-1526282747,1048576000,1946157200,304390158,540811300,113640820,-2147483483,37694,1048583796,1946157204,11837705]},{"sector":5,"length":512,"data":[303564345,-1298067851,436615424,-972721390,42246,9715328,-1592888320,104399028,91427352,10815174,34453504,183679056,1103947856,184861827,-1200523840,-1202716145,-397405657,-998030918,1958742788,35305562,304592976,1101588560,184861827,-1203211072,-1202716123,-397405657,-998030954,1958742788,36485174,304592976,1099229264,184861827,-1205570368,-1202716106,-397405657,-998030990,1958742788,37926930,304592976,1096869968,184861827,-972720704,42246,9584256,-1202818048,-1924134160,-397366202,-998031088,-1404662524,1097132112,1023591555,74776579,11421382,1343367096,1353467533,1342327480,1353467533,-2092810776,1183647940,-1262989140,199774227,79987521,91602955,10815174,1575324416,-326412861,-402649416,1048592342,1962934415,1751131,291301456,-1207778173,-397410284,-998043310,-230242558,-106937329,-2009060335,1183708230,1183666418,971526386,79987522,336084608,-389843968,-1073020319,767049588,535318528,46433041,1024791528,410320897,1342186168,-2096034328,-1628765500,10239616,-1197575168,-1494548452,1342186168,-2096040472,113640132,-402390858,2112426904,-1660500225,1048576256,1946157199,-1673625590,57933824,-1207913496,-397410282,-998043446,1554434,281077840,721601667,552095936,46433030,-1971994613,184809960,-1954318912,1438866917,280554635,1057548288,705821088,1354256612,1183666178,937971952,113541953,1357923981,-2096694808,-1073020220,1048584052]},{"sector":6,"length":512,"data":[1962934415,1423370,275572816,-972897149,16817414,1342177720,-351942936,301572123,-1202658262,-1924136353,-397348794,-998031114,-263811834,1111287888,-1207778173,-397410282,-998043594,58517506,175423499,1342184888,-2095936280,-443874620,-1957313699,4503788,-2143387160,1312830,-106951820,1357130257,-352163144,301572105,-1202658262,-1924136325,-397352890,-998031202,-532247290,107014224,184730755,-1207274304,-397410275,-998043071,138313730,192151572,705821088,-1816637212,-1609962750,-467004935,44152912,-532247216,1080092752,-1207516029,-1924136954,-1924088762,-1924071866,-397352890,-998042305,171868936,175374356,1342182328,-2095975192,1996423876,364570878,-1929198461,-1605315770,-467004935,45463632,-532247216,1075374160,-1207384957,-1924136928,1343676486,-1202667477,-397410303,-998041184,9085706,336215683,-1207274496,-397410285,-998043223,636930,726684313,922702016,-2098724726,147096339,503350456,112720,-1976107184,329181184,-1995914109,251591750,-1967652732,1347590400,-11485141,-402617802,-998042795,-96039672,28856342,922701824,1911029898,147096339,-2130950519,1962932862,1292298,289663056,-16595837,-402617802,113644470,-1962934120,1438866917,616098955,1026353152,9387648,-2146667520,39998,-1070922380,-956245015,1313286,14084096,336215683,-1595182080,-467004935,989872173,1963858950,-339727612,112643,-319297456,-956119933,-15463930,2275583]},{"sector":7,"length":512,"data":[242542672,-1610431357,-467004935,45856848,-599356080,1057810512,-2147040125,37182,1048581492,1946161902,317634574,-599356080,1029367888,-2147171197,46910,-1078459020,-1207702782,-1924136246,-397353914,-998032064,-1593391612,-1070923520,-599356080,48085072,289323088,1354771280,-2092960280,178457284,1958742804,212232,-1410853515,-1593391603,582483968,-269987840,46433037,-1191233559,-397410289,-998044190,1947650,232319056,-1593654141,-443870198,-1957313699,178412,725365224,2145931456,46433046,336201415,113639424,-402587487,113644568,-1593835359,1183388682,112894,375187536,-1543616885,-443870198,-1070349475,-1204028952,-1202716580,-397407504,-998033366,1958742788,183547972,1026091088,1023591555,896663555,1342894264,-2092996376,178455236,1975520020,-234437094,-206021622,-660582390,769927698,-397410240,-998042943,-1207244028,-397410293,-998043743,-1777940990,1048576256,1946157198,-126097402,-1007069976,-1192457387,-2014838764,8691771,1346429994,-2097142040,1891107524,-106934253,1357130257,1342366904,1357661837,-2093111832,1183647940,149442796,1575324436,-326412861,1340653619,75399995,-16220918,-239598474,-2095781118,2103706750,74907400,-352127304,74907398,1342372536,1343451320,-2093128216,-1017313596,-1192457387,401080346,-1891729349,393478144,10239616,-401574912,-1073020711,-857144459,1947648,-1610561303,-467009404,-1729605568,46433279,336084608,-1206946816]},{"sector":8,"length":512,"data":[-1605364880,-467004935,50182224,1891110379,-106934253,1357130257,1342376888,1357268621,-2093153816,45615300,1183666176,-1202710810,-1202716640,-397410286,-998041976,8954634,336215683,-962693888,16816902,336084608,-1206946816,-1605364880,-467004935,52475984,1891110379,-106934253,1357130257,1342386104,1357268621,-2093175320,45615300,1183666176,-1202710810,-1202716640,-397410286,-998042060,9085706,336215683,-385649664,113704775,721485976,11314112,-1560237405,-1365049168,-1950340352,1438866917,1421405323,975497216,704677024,-397393692,-997982525,138313730,259260436,1343451320,705821088,1169707236,-1207047421,-1605364880,-467004935,55818320,-1404662448,1009576016,-1928805245,-397366202,-998043537,16655618,-1404662448,277276752,-1207647101,-1924136942,1343663174,-1202667477,-397410303,-998042212,8954634,336215683,-971279104,16816902,336084608,-1206553600,-1605364880,-467004935,57194576,498602987,9038080,1343451320,705821088,2008568036,1183666179,-1142402900,147096379,1353467533,-2096103704,-31128892,1183666176,367546540,79987472,1342182072,380389005,1354771280,1342177720,-2095764504,-1969026364,171868928,-1435172844,9963206,1354771201,178256,-2009661616,252962816,-1559706493,378077354,-1070923604,45633616,922701824,-85458806,147096334,-1996443997,721465366,1575324608,-326412861,-402635592,1048590586,1946157199,-1673625588,91488256,-269893589,-700019456]},{"sector":9,"length":512,"data":[-2130950519,1962935422,301572107,-1202658262,166396813,705821088,-1783082780,1183666179,-1552196,113541946,1342179000,-1912834305,-1924071866,-397362106,-998043681,171868936,-1267400684,33179334,294528,1183649653,-106934035,1357130257,-352082760,-314143475,301572176,-1202658262,-1924136021,-397362106,-998032718,-1623293944,376700928,1343468728,1354516109,-2093385240,-1073019708,1187382389,2122318074,1165296122,10618566,-1136227071,270854224,-2096970621,34867774,178324853,-2093356268,1313342,-1070915980,-1136226992,248703056,-1929067389,-397362106,-998043654,171868930,-696975340,10618566,-59310336,-385976577,-998043768,-11409148,-1017256565,-1192457387,-337117144,1488951,-666464944,-28930736,74907472,-2096165144,178325700,-62486252,158711819,-385976577,-998043760,-58817790,721712128,-1207702592,-443875327,-1957313699,1620204,-952653336,65094,16533190,10094278,-2130262528,113639442,-402584636,666370412,-660582382,1357130258,1342421432,1357399693,-2093368856,548931780,1183666176,726669032,28856512,1105743872,180650771,-2097117533,1313342,1191121524,-25263106,-401246971,1187381276,216728060,10094278,-62470655,125167617,16547456,-443827084,-1957313699,964844,-1204345368,-397410270,-998045518,1816578,145287248,-972897149,33601030,9584256,-954305536,2028102,-1996452703,1187509318,-1929371146,-1924074938,-397348282,-998035053,1575324420]},{"sector":10,"length":512,"data":[-326412861,-402651976,1183528666,-28931836,-1996077429,1452014662,1575324670,-326412861,-402646344,-1465829698,-62486272,16402118,1352908843,307143442,-1559510365,1048579008,1946157210,1354771321,307377919,-2080394520,1347552452,-231681,-402618826,-998044516,-28931832,108380171,33179334,1996425707,22210814,-1962752893,1178205254,-972786690,-2147354042,1946221182,-2043215940,214755328,-972897149,39430,1343367096,705878176,-1078439708,1183666179,2011713766,147096376,1357268621,-2097092376,117375684,-443875198,-1957313699,11319532,-952755736,16733318,183547904,928311376,-1962752893,-272662312,225729546,1343367096,1342894264,-352074312,304592907,183547984,63682640,-1404662448,941680720,-972503933,-972182458,-1928680122,1343663174,1353467533,-2093542936,-1202715964,-397410303,-998044678,-1841397752,1802764288,704677024,-397393692,-997983661,-1371108094,326154320,64010320,1451658576,-739749633,147096375,-11106675,-2037559274,-397344938,-998033718,922701826,-1276641140,147096331,-11237751,-11106675,917563472,990037123,1979667590,171868935,259260436,1342185656,-2096699928,113640132,-1962934126,1438866917,45673611,893184000,-402360577,-998044733,-28931838,-536975743,-25755904,-402360577,-443872300,-1957313699,309484,724899304,922702016,686297682,79987710,1996443730,-2009661692,188278784,-1995914109,1183448646,71732220,1979598393,-62485745,100782635]},{"sector":11,"length":512,"data":[370217550,1709904464,-11485141,1894253686,79987456,33310345,-768868794,307103233,307238417,197133825,197269009,11142657,11277841,-402621976,1996485426,1379336190,-37885934,1376044163,71732048,1358841387,8926975,-2096444952,1183385796,-28966404,-955101533,1200134,1343654656,-1073348334,-1038741237,-1442447093,-1407840000,1575324416,-326412861,-402651976,1441281114,-28931828,-16353537,-401452490,-997982873,-11513340,922746486,2011693192,-62486262,-1017256565,-1192457387,736624642,-28916172,-1643723009,1319174400,1342573330,-972458990,17989894,8521471,8535683,-16092160,-402619850,-998047295,35710978,336084608,-1205439232,1385758858,1354771280,9058047,-2096509720,1183647940,-1202710786,-11534335,-402617802,-998045170,-1740734456,259260416,9058047,-2096481816,113640132,-2147483496,39742,922684020,602407048,46433034,10159814,-2126610432,74711058,197396222,-2147332376,40766,922685300,-1572724,46433033,10028742,138313728,343212052,1342185144,-2096822808,532153028,1659392000,46433031,8652542,-1017256565,-1192457387,1407713290,-96025037,9091072,726684313,922702016,652738698,147096329,385500813,112720,-1976107184,157870080,-1207384957,1385758925,1354771280,9058047,-2096561944,1183385796,-27883012,385238669,309328,-1976107184,152496128,-2096577405,1979709054,-125926650,-1961986817,1452013126,4326904,-352267645]},{"sector":12,"length":512,"data":[-25755714,737965823,922702016,-1159200630,147096328,503361208,309328,-1976107184,150792192,721994883,-1202696000,-11534334,-402617802,-443873131,-1957313699,178412,-969760280,-1191182778,1385758858,1354771280,9058047,-2096597784,1183647940,-1202710786,-11534335,-402617802,-998045514,289054984,289150603,-2097135611,1347551442,-11485141,-402617802,-998045627,8566792,45633566,922701824,-2014838646,147096328,-1962907160,1438866917,-1070338933,-1590543896,378212666,1074073916,13796096,-1070903214,-1976107184,134735872,-1928805245,1343620166,1342177976,9058047,-2096608792,1048578244,1962934430,11450387,79187998,922701824,803733642,147096328,1347469355,1342177976,9058047,-2096641816,-1017313084,-1192457387,-739770366,-2126610383,108331026,66995910,1187382507,1048576766,1962939400,-1640071157,74711040,33441478,-1961755999,85064726,-763166707,726684160,922702016,2129133706,147096327,385762957,112720,-1976107184,130082816,-1207384957,1385758730,112720,-1976107184,123201536,-1207384957,1344148046,1342178488,9058047,-2096653848,-1070921532,45633616,922701824,854065290,1575324423,-326412861,-402646344,-2069876418,1088694784,-170006448,-2147302269,1312830,1891120500,-106934253,1357130257,1342429624,1357268621,-2093787672,565708996,1183666176,-1175957274,79987463,1343451320,705821088,-390573852,-1204557053,-1605364880,-467004935,66500688,-431583920]},{"sector":13,"length":512,"data":[857794640,-1207384957,-1924136927,-397351354,-998045820,326154244,301572176,-1202658262,-1924135924,-397351354,-998034694,2209800,-431583920,123660368,-2147171197,1312830,266863476,1575324661,-326412861,-402616648,-967429998,-1946193274,1342448056,-9206131,829089872,-1610300285,-1057095548,-8681848,16664263,-25785600,-8617274,-28901632,-2130805119,-957448704,-1207894970,-1924136821,385839750,23521360,-402209661,-1956773883,1438866917,1220078731,809035776,-2109832362,175374336,8533759,-2080511768,-1365179708,-1340699904,289055488,289150601,1186612934,12076743,-1200190720,12272326,-2085075201,2118105214,183744752,-1153004208,819914832,-955988861,64070,-244025,-28915713,1186529279,1183666176,-397404486,-998047504,-1559837178,113704960,130,1575324510,-326412861,-402643784,-2141835334,36670,1048580468,1946157212,-2109832438,57999360,-2130950680,41790,1458045812,11444735,11540107,-1995310429,-971899882,-954016698,65094,-956402037,-16720574,2122579526,-260174850,1343367096,1356678797,-2093985816,480314564,504793874,-364476142,-1595124087,-467006524,-1578219895,378208426,1183383724,-229209616,-1995299679,446822470,-96040686,-1995302751,1187445830,1048577001,1946161793,303866140,303961739,197133867,197269019,-1980479863,113702486,-352316799,303866125,303961739,-1980479863,582547030,1183666176,-397404452,-998047736,-443851258,-1957313699]},{"sector":14,"length":512,"data":[178412,-13705752,1996424822,142016260,9058047,-1996158488,-768868794,11404801,11539985,-1017256565,-1209483213,-1241070034,-236453120,-1957313790,-390056980,1183526566,302031620,-1559869813,1183519234,302293768,-1576253814,1183453703,302424586,-1559288648,1622675976,12079114,-1662496750,79987497,-1576378208,-1017310590,871140181,778365120,755254923,742195201,-385649152,-1073544682,-1476448621,-4707254,-1070903296,28856400,1996443648,-7411708,-385170301,-4718090,-1070903296,45633616,-1192826112,726663423,-1202696000,-11534334,1776813174,180651007,1342242744,1342228664,-1202667477,-1202716670,-347078623,16758976,12695632,-339727536,330610884,-1945164125,-972085218,269429510,254674630,602427424,46433071,-1576063838,-4714707,-1070903296,112720,-1199379632,648221177,673090575,721864207,113643535,-970977490,17771526,254609094,16758785,1354771280,-385875528,-105316501,254190353,254287500,254478022,772195856,113647631,-973009108,17771782,1342242744,-1202667477,1307115521,316193023,-2069834773,1088694784,-234231728,-1610431357,-467009404,6569280,1907888499,254190355,254287500,254543558,-1206916350,648221552,673090575,738641423,113640207,-972026069,537865734,-384881504,-2069823667,1088694784,-238950320,-1610431357,-467009404,6569280,1907888499,254190355,254287500,254543558,-1206916350,648221552,673090575,738641423,113640207,-972026069]},{"sector":15,"length":512,"data":[537865734,-1576063840,-105378003,254911249,255008396,255198918,956745232,113647631,-973009097,17774598,1342242744,-1202667477,-404160510,178430,1354771280,1342177720,1342177976,-385873224,716111512,748956334,748956836,716057262,748956334,716057653,716057262,716057262,716057262,716057329,726281034,729426719,729098902,716057538,716057418,723462830,748956347,723462830,748956836,748956836,716057262,719661742,719661755,-1957313699,178412,-953403928,19725894,1342242744,1347469355,1342177720,-385976577,-997982864,-28901622,922648193,-958300671,46598,-1962914840,1438866917,-1070338933,-13894168,-1947728778,46433277,11929286,3074052,-1957313699,5552364,-1205083672,-1605366328,-467004712,69908560,-1404662448,772597840,-1928805245,-397366202,-443863207,-1957313699,1095916,-2144619032,39486,922685300,535298182,46433026,10094278,-1690402816,259260416,8926975,-2097018392,113640132,-2147483493,38974,-706210444,-1976107016,32565248,-972897149,38918,-2131089688,39230,922685300,-672661364,46433025,10028742,-2109832448,57933824,-2147440407,41278,-1628896396,-1891729408,57933824,-2147445527,40254,-1964440715,-1572962304,57933824,-973045527,16818694,336084608,-1603636224,-467009404,-1192734656,46433263,1343451320,705821088,817385700,1183666180,937971952,147096365,-1924087765,-397348794,-998047332,-263811836]}]],[[{"sector":1,"length":512,"data":[46458960,-1207778173,-1605364880,-467004935,71219280,-263811760,755558480,721994883,1183666368,1843941616,79987457,1357923981,-352152088,112647,-240785328,-2147302269,38718,922684020,-1998057956,46433025,9846400,-402426880,1048641184,1946157205,1379335946,75622418,-402471805,-443874486,-1070349475,-953520664,588382214,310550629,-1206778206,-1202714016,-397405696,-998036244,174104836,-326412861,-402651976,-14800314,1183646838,-1924131074,1343683654,1347469355,112720,108461904,1347469355,-1996321382,336241415,-1946270069,1438866917,79228043,705751040,-16484609,1996425846,105286152,-1924078550,1343683654,-1996152166,336241415,-1946401141,-443810218,-1957313699,178412,-1926635032,-11469242,1996424822,142016266,-402360577,178466202,-28931308,-1017256565,-1192457387,-1142423550,108954409,-14978048,1996424310,142016266,-1928956161,1343684166,-1996386918,336241415,1187449835,-956301058,1313286,-28931328,-1017256565,871140181,696314048,-1710983425,126420314,1561594531,-326412861,-402652488,-14800534,1183646838,726669054,-1706012480,126420165,-1961620829,-443810234,-1957313699,-390056980,-14800570,1996424310,1354771206,83270224,178456457,1438866708,112782475,690546688,385500813,-62485168,127553558,-1559787260,1183519754,1575324666,-326412861,132694067,74907433,-1996126310,336241415,91602955,9897670,1438866689,45673611,686352384,1425950407]},{"sector":2,"length":512,"data":[74907392,108461854,385762957,61315664,178456457,1575324436,-326412861,-402651976,1187457218,-1962933762,130483806,-14745601,-14809994,1996424822,1996430858,2406408,-28930736,-1070903274,144330832,-1559787264,-1073015798,1183388788,106859516,1307064319,46433024,-1543747957,-443870198,-1957313699,309484,-953651736,130630,503609087,-1207535873,-1924136912,1343684166,-1996076390,336241415,309641227,-244087,233309302,46433024,-1543747957,-443870198,-1957313699,-390056980,1996433454,38836740,178456457,-2147039724,-1017315328,871140181,672458944,74907422,1347469355,-1996374374,336241415,-1957313699,1751276,-1607992856,-467004935,1342193709,1342177720,384714381,1226832,95197776,178456457,1975520020,-193527950,737310463,1996443840,737863934,922701906,922681516,568852650,-431584980,199775881,-13601598,1996485750,1354771442,-1946257665,1452014150,67068,1375785603,734455888,-1041739694,-431609045,-1981262309,1451878982,-14357524,1996487798,-193527814,737310463,1996443840,731834622,-1712828334,735898411,-330921536,-1947580791,1452010054,1575324652,-326412861,1273544755,301572135,1076749354,45633536,-14790656,213386358,1419399168,-1559787255,-1017310198,669564979,-1505853401,510984704,301991623,1453438727,302162699,1342857400,1343357112,1342189496,-2094479384,-1231026492,1357130240,-2094641688,1438843588,280554635,653060096,-469467517,1183517558]},{"sector":3,"length":512,"data":[-1982269692,1325335622,-247020028,-263797180,71731976,-1913502071,-1924075450,-397348794,-998037160,-58817788,-969051136,-968560314,-1962282938,1183384646,-263811598,-263811760,691464272,-2096839549,1946221694,440330,-91494320,-1962752893,2487878,81168,-2008954597,216792654,-1997519222,113770054,5130,721307274,1575324644,-326412861,-402645832,1187391070,1048791269,1946157224,-1475938790,175378176,-1325356895,1089000196,-1465840405,-754667264,-1207702552,1183400086,-230257178,-465138352,683599952,-2096839549,1946222206,72202260,640608336,-1207778173,-397410303,-998038174,-28931326,-1961620829,1386476102,1575324434,-326412861,-202850253,74907429,-2094408216,-1073020220,113707124,398346,113706731,5130,-1957313699,440556,-1205482008,1343105576,385500813,-28930736,1996443670,108461828,-1995991142,336241415,-1017256565,871140181,631564480,-1710983425,126421051,1561594531,-326412861,-402641736,1187456398,-956301100,54854,1342187192,383010445,-632910512,1183666198,-1706027304,126419428,185862819,-1961331264,883154502,-280589806,-1962164574,245623110,-347698414,-1962250589,1438866917,1085861003,625010688,14173895,-129594112,691202128,-1929198461,-397347770,-998037182,-62486014,-939637112,23657542,336201415,1183449088,1357130486,174995199,1358251658,174995199,1358186122,1342466488,1354778253,-2094582296,882970308,1958742802,81164,37563508]},{"sector":4,"length":512,"data":[-348032000,-92864679,302921471,720914058,922702052,1183453710,2025345273,1183666180,-1552180,247759654,1996436715,238485498,-112817646,-11475926,-1978528202,-1202653114,-638909305,720914058,922702052,1183453710,922702073,1996427790,76986618,1187430379,1187384794,1183648475,1183666368,-1481092916,1183666180,-1410838308,147096358,383403661,-632910512,631564368,1342358659,9189119,-2080731672,1183385796,-632910376,629991504,990037123,125163590,336215683,-1206946816,-397410272,-997984830,-1845049854,-443875328,-1957313699,1882348,-1205593624,1151537748,1176407051,1208403723,-956301301,1313286,-230242560,1183542272,-196703988,-1996077429,1183577670,29655044,-1946663287,1183385670,-62470150,1183648580,1183666404,1776832754,79987494,32524022,1183516276,336241636,-1947974005,1438866917,381217931,599058433,1358448269,-2094601752,-2037579068,-2037776520,-2037514382,-2037776662,-2033713292,1610678122,-2012030816,-1191217018,-1924135762,1358920070,-2094765080,1183646916,-2037559048,-1924071574,1358916230,-2094642200,-106953020,-360302575,-1207273986,-397410264,-997984427,-129594110,646768720,-1929198461,-1979746170,-1912638842,-1979782522,-939559802,16738950,301572192,-8878456,1358448269,-9795955,1787202896,-35106561,113541925,940759200,1979640454,2734090,-150476720,-1962752893,-1866244635,79562439,243859456,646513992,914949450,-1979972276,-955993842,307974,-972634368]},{"sector":5,"length":512,"data":[-956301308,308998,-2096707840,-950183163,2080736518,-2029598916,-953467387,1023772934,128575547,-4713613,-1960422401,255469085,45613939,216619776,-1070167807,1431786244,80223885,79628022,-1405192928,1913140456,127789111,-823643532,-166300409,537181958,1760036213,-165483769,1090830086,-347202700,1007126552,-2147125955,17088270,137357379,-2001942157,-1007992057,-1254717106,509444,79961737,-1927443674,-2147170250,829697852,1948400768,-1090062841,1349845252,21465638,104457266,292750513,-788221535,54739936,529213144,-352288536,-1291401370,-352321276,1200236126,1088696833,-670834479,839879206,1959332845,642990863,-1142415477,1064524544,-220052669,78841543,871038979,21465638,-784276430,651690976,-466483318,54583505,260712152,-921965262,1396903796,-400585946,1935343700,-498908406,-1291401230,1560282116,244013919,-1281293135,-1254716668,-1223259388,-1189180924,1355020292,-1459123418,74776578,78710527,1962949760,108824,113707125,132275,-1336930581,-385895421,-346554220,17885187,-1007041704,-1977200299,-315488177,225757451,-402034803,141755038,-503312920,99351030,80096905,-1017292296,8290342,1157854208,-1018824981,79629952,-3610608,645939826,1357841599,721732257,-1073348154,915101700,1015022786,-2145159936,1966800764,-1291401464,-352319228,1065559582,639136768,67575,113709429,132275,-1813509653,233568256,1342893049,-4979792,1476396008]},{"sector":6,"length":512,"data":[643286008,-1996193909,637843262,-2010774136,-1588592283,-1993997114,1012400709,638219521,637818249,-351908471,1963080793,1435051526,1011870468,1021867015,1021604872,637957382,-352037496,1963211837,79733006,1166616128,1569465860,640412422,637826441,1342594444,38270502,-1341885439,638184196,33703926,45090164,1476449512,38270502,-402426864,-1017184090,93062854,-1960423424,1975520007,1381191703,-1291401385,-1275066108,-402411265,1516240736,753621083,1947205801,-1291401456,-402653180,1048773135,1963525299,134261015,113710452,1203,-2096951576,151302974,65733237,-1450165013,326369536,78841543,770179072,77981700,78855811,-1457294071,276038144,78841543,367525888,-1287748860,242551044,1948254377,-1291401463,-402653180,1048576175,1963001228,-1287748851,108331012,78841543,-1017642999,76174928,410304522,192231996,97408,80086389,-402003200,24315245,-487897530,1455642718,-1966044590,89909252,-1073083534,199756660,-352024576,-347716095,-1017226518,208896060,1114792252,1048017468,988536612,-1923676589,-2147123650,74712314,91831949,393483576,508711248,-1973046265,-17470,-1174403655,567148543,-1957144230,1166934365,742605571,1607935616,1019435783,1007186480,738490169,-104597456,1381191875,2139825751,92939782,74825738,1256980404,1047855932,92939847,-453637708,653787968,95683978,54584566,92940024,-1960425657,3205165,-947711629,1976106499]},{"sector":7,"length":512,"data":[-1291401231,-1275066364,638839807,-1325439606,361440770,113707755,591027,61931444,1610473448,-1017619622,1448236368,76153522,1912896744,-13572038,79628022,1007514632,639530301,97920,317419125,79628022,1007580176,638219578,32384,-347710859,1178216026,169637120,1179677888,638774085,1962952250,76170819,1178216005,1178170624,-156505275,1074052870,-148500620,2097735,-2144991372,1946157182,133637666,410255376,158677564,8290342,-351439616,1962949646,2122327559,57948672,-1996100615,-133905866,1482512990,1381060803,-396995754,-950140772,356614,1929824000,-956301307,357638,10610688,1906513522,1960512005,9824280,1940088178,1960512005,9037836,1973639538,1977289221,1327401810,50037509,1906384756,1977879045,-1580692926,-469105293,-393594507,91559563,1963064195,-337017342,1897302806,91463941,527819786,1973536906,1977879045,-2081912298,74671354,124568193,-4956581,-1377302608,1527770108,-1325419426,-56432637,78841543,1499070473,915260248,1015219535,-352160513,1347558927,12066590,-841577672,526014497,861032899,168069833,-2143587136,347710,-75493516,1006925057,1009808442,-349408210,1949121548,1949252646,1949187106,-33560546,11804274,703121,-770972937,-1056763531,1183911538,-661995541,1174793208,-117314568,1499120011,1381060803,-396995754,1157037960,1969094929,15329283,91293383,113704960,1395,91555527,113704960]},{"sector":8,"length":512,"data":[1399,88999622,-402541823,1400045431,168128931,-397052709,1198718827,168129443,-1287031589,-10622974,1973631346,1977289221,-1106840017,880083460,78984843,754941056,1153837685,113716991,1214,79564416,1208912642,1244039941,1278642949,-107812603,1929323240,91726680,1366678282,168128929,-162892316,17088006,205260916,41238391,116834354,1946420415,1946958860,1913390088,1998076972,-1580168664,-469105293,-259383435,168129953,-1978239516,91726280,225829898,1583081610,145817524,-335853592,-1268884721,-402411265,113769276,591027,88999622,1482250752,-1974054717,-1073068540,1149958517,1008733438,1008235632,1008432225,1310750061,217990282,1953512480,1952529414,-2146374903,67419918,243271147,-973011778,1577123396,1464910680,-1069642922,168069636,-401509184,544538711,93062854,80109057,971726592,312926,133637727,762642433,78841543,636157954,76174936,460636170,1946168040,22800395,1179058803,-353679801,-972768862,-1991835644,1577366846,11098207,1342796802,95485876,1492814824,-1924049981,-1190821090,121241609,-498924428,1532576249,-1974316861,1958742532,18343989,2088970866,225720833,268957478,-2145553408,1962934652,1008733207,1007776353,739080058,-1261401504,-402214657,116128320,78841543,1482293257,552119491,-401181696,343212113,79628022,-152144864,1090830086,-347207308,32241926,-121417992,1011962819,1009611789,1009349632,639988746]},{"sector":9,"length":512,"data":[33717632,-617406862,56461862,637846403,1946171776,650720013,641927562,74711354,222099682,1405311833,-1190738351,645931012,1021248703,1010201632,1009939465,1009873964,-2146667232,125116476,977674416,639560640,16940416,-919398542,55413286,192203019,1124074427,1946237478,1022943751,-1017423584,-167462494,17088262,243271029,975176895,-1913984064,990169134,1008301277,-116230865,-12088752,1929059560,-402355707,-346490091,183236621,91565884,79629952,516159552,1048793942,1962935484,1360941093,106256210,-561056205,-849149768,198937633,1599932379,1478449498,914957684,512296122,915080380,512623802,1015219388,974156800,973632004,58130756,1174793209,-118756538,-1021354405,1475119957,75402070,1342850443,1569392011,72190722,-1962519157,1432291445,1576452584,108956503,1569260937,72190210,-1996073591,-1969289099,205883844,172329304,-443850914,1397801821,861341266,868323017,305051903,801964210,-1744401354,1049179653,783811990,-855461358,109852207,-1992948320,-1207591362,78778926,-1942605875,906342406,95305353,-1307431240,909102342,93587084,-1841395402,1394514437,-1942618112,906334214,93208201,-1408857034,1049179653,1067058602,905969747,94635660,-1572959946,305051653,801966258,-1207530442,1049179653,-952760906,218482950,113653258,908330514,97388231,-952762368,168153094,1392089600,-1942618112,906345478,96091785,-402646552,1139277872,1390956800]},{"sector":10,"length":512,"data":[1493725696,1532626783,-2096829608,-872870716,-1205971376,567108352,1914636062,914961930,-1942616638,1577436166,12108632,47940,567136819,-2147359104,28836302,-1021194940,-1153171272,-768409599,-830463539,1140963329,-1262280243,1025625392,58004998,1025043448,91422722,-335544389,178947,-1191181896,11665408,-1007026250,1431766608,4232858,-2146536960,1962475518,-350288380,-1960901118,123690487,1398197080,-919341517,1979711104,-1127991799,-1014233670,-956946197,906589186,94289092,451658636,1912607549,2571534,-1003091593,-1945785668,906488771,93240516,-75250804,-2145946113,58064894,906882041,-1207578973,29229055,-118082816,-75297557,-402426880,-964493228,108197892,41273611,-2137220373,695534078,105993554,12079191,1009765637,158685439,45668491,-349188859,91486465,-346486945,113541894,1560284392,-821957798,-268274,1472945755,-18096,-1359822798,1481232887,-75250849,908162305,95829635,1025078527,225837055,-828295600,520041989,-346552906,520041989,451610038,-25114317,637957375,-352105078,892872201,-1977219979,-947715251,729020676,1959332856,-98279,992347508,637790981,41223483,1950943723,80184069,1928979435,-98294,637564408,1912765699,653079046,910626186,96995014,1397801728,106386769,921275218,96870025,-885618634,1083611653,-922025984,-318037132,803734901,-402396416,259129794,17819738,-771072249,1676149620,-2096829690]},{"sector":11,"length":512,"data":[-336001340,1516177156,1560834809,-998024359,-2096829694,-872871740,911364944,96870027,1979710339,2942981,2011694059,-1274055936,47961,-466476595,-116996989,-75296533,990606591,-402164543,-998047568,57866502,-1017619622,-2095118818,460653049,-1977220428,522308885,-1310145910,520494592,-1977219213,567083349,-1274024968,1959332610,361375241,1229398477,536408949,105928643,519736147,-1327920377,-1359807462,-651492491,1540066123,-1017161721,-921976781,102649716,-1958693857,33129431,567093365,-1977200609,5957637,520494680,-1258813837,567099968,1031808668,-1962773222,-821957695,-268274,1364531947,-1946179864,567106025,199950963,125093947,1979246651,1572965122,666419999,310016,-2134703691,292880382,1971373814,-1928913396,-1190803138,-1572862,1460061182,-1036073930,1962871557,1032005143,276101120,1912945190,1161438727,-117344511,-370456761,918751071,97257103,-1835803853,-801704138,-147418363,-2096771018,91621882,-348667264,818053123,-1073004206,-620034955,-108839820,-2146536189,1965820540,922695174,-348060199,133792548,2088767093,108342282,-650707146,300630277,1963719043,175931404,906392876,98121471,-768371903,-768367893,-13189069,-1023030218,-921972173,632562036,942014640,638219557,1946248504,1975794180,92939790,1946110952,1111967489,1457747273,-317994361,911029620,97402499,-1976797952,805570116,21314086,535495285,74788924,74764811,-404016125]},{"sector":12,"length":512,"data":[-885096394,141950725,1229537858,65752911,1476394938,-1509077,1935237117,9365763,-2134209711,1946158716,1959332621,1195985158,1577184071,-922021653,-346160267,-425207,-919403915,1718943499,1359370069,-2093561549,380478,1156987765,141889287,-402490172,686489959,218580214,1156975732,108269063,201802998,2093222005,24504322,1156976363,91556615,-352175384,50980867,-352298776,2287619,123275122,-346137249,180650756,1048786681,1962935758,-385650171,-952697086,380422,-768359680,97427766,-804862154,-402650619,911801977,97683336,1090224963,-655883403,1976172032,168671469,-762869450,-398245115,868417735,108822747,907244800,97683399,1128475936,-762853834,-398254075,861733035,919745499,96997000,973685898,706705089,-152007999,1954547524,172263957,-762869706,-75283707,-402426560,-822214529,2088823669,225705992,1929923640,139209224,1284166026,1959332616,121959973,-166955761,1947207492,92939782,1476520775,-762869706,-75283707,-402426560,-906100669,1157028725,427130887,359986698,906642570,97683336,1090224963,619185013,1976499712,121960171,-167217905,1947207492,168684290,906589394,97257103,-143275266,1426064104,1460031939,-880081122,1049484083,1541932498,1594192636,82532615,-116996989,1156996547,309669895,1342540326,-45946815,-1977219469,-128974523,-1977217557,1958742533,-348043516,1442393077,-768385597,-952713165,268816390,-153406720]},{"sector":13,"length":512,"data":[1965033284,92939814,218580214,-2136469899,608371572,113718911,656848,235357430,-952760459,168153094,-161944832,1963984708,93005352,218580214,-990506891,1124365440,914351232,97519303,1156972554,125111815,-804862154,-352318971,93005354,39160614,218580214,-956952459,1124365440,914351744,97519303,1156972554,125111815,-804862154,-167769595,1950353220,-1269673942,-1916784072,-855256554,906392353,98109126,172263980,1482356875,738870470,-1946381080,172263623,-393214741,-619971447,-768408204,1431449010,-952738365,168153094,8185856,-1070345677,-767655114,544538629,-402618392,-13238122,1090903350,1149943859,8972293,-583598282,1149911301,8185860,-767655114,544538885,-402628632,-13238162,1090903350,1149943859,6350852,-583598282,1149911301,5564421,-767655114,510984709,-402307958,-13238202,1090903350,-402373494,-13238214,1090903350,-402645016,-1017839570,11548852,97654413,225649101,-771307722,905969669,98371270,1150010157,121959938,1023964432,58064995,-1023384648,-771322058,243807749,-1092090424,976636411,1963313166,3192837,910246224,97662719,-952738365,168153094,8382464,17253622,-2143937164,385854,1149900149,2081176578,2115451908,1348579334,-1341854911,859918448,-153996352,1948256068,88377868,905997544,98252543,121960001,-167348960,1947207492,71600652,905991400,98514687,54823489,905988328,98514687,38046273]},{"sector":14,"length":512,"data":[17253622,-2143939468,385854,222039157,204210812,41222204,585632944,-1262266885,-1929334728,-855256554,907244321,98764487,-969539583,973463302,-620313034,918760965,97650319,-938571722,-84678651,238696009,91555272,1342189752,-13221567,-1023028682,-2145496495,142000378,254067338,48958644,520544906,567138187,184188959,-401443592,192150168,-494221174,-511041075,-1274876936,1510240768,-2096829607,-1007090492,789972735,12320769,13631490,14942214,16777223,17498120,18219019,18939916,20512781,22085646,24576015,26083344,27590673,29032466,30277651,32505876,37158933,41877526,44367895,45547544,48168985,50987034,53542939,55640092,58327069,60489758,62586911,64684064,67502113,69468194,69402659,71827496,79036457,86245418,88670251,93978668,96862253,100401452,103874861,111149358,115999023,120389936,124059953,130744626,135004467,139395380,146014517,152633654,1668172055,1701999215,1142977635,1981829967,1769173605,168652399,1225395479,1718973294,1768122726,544501349,1869440365,168655218,1225395487,1818326638,1679844457,1702259058,1701868320,1768319331,1769234787,168652399,1986939150,1684630625,1952539680,235539813,1635151433,543451500,1701669236,1225656845,1818326638,1881171049,224949345,1867389706,1970238240,543515506,1986622052,1886593125,1718182757,224683369,1867389706,1918989344,544499047]},{"sector":15,"length":512,"data":[1986622052,1886593125,1718182757,224683369,168634634,1920298835,1629513059,1948279918,1701278305,1919164532,1936029289,1701994784,1701344288,1835103008,436866405,1917127181,544370546,1667594341,1852404853,1329995879,1413565778,219810317,1851867914,544501614,1684957542,1380927008,777273677,223170371,168630538,1869771333,1886330994,1852403301,1869357159,1818846823,369757541,1867254285,1852401511,1869881447,1818846752,824516709,220531213,1935756298,1633820788,1886743395,1936286752,1953785195,1869488229,1852383348,1953654131,168649829,1460276554,1229869633,539051854,1701603654,1852383347,1701344288,1918989344,544499047,1986622052,621415781,542915121,1953460082,1919509536,1869898597,1998616946,543976553,1696621922,1702060402,1258949988,1096223245,1313427026,1176510791,1936026729,544106784,543516788,1735549300,1679848549,1702259058,824510989,1094868026,1347767107,1919509536,1869898597,1998616946,543976553,1696621922,1702060402,688524644,707398157,1631723562,1852402531,1886724199,1818846752,1948283749,1919164527,543520361,540684581,220867114,1766069514,1952803699,1310745972,1700949365,622869106,722079025,1096223245,1313427026,1310728519,1768300655,544433516,1701995895,1970234912,1948279918,1633820783,1965058915,772410736,1850280461,1953654131,1667326496,544241003,1920298867,1679844707,1701540713,543519860,1679847017,1702259058,976299296,220858893,1936607498]}],[{"sector":1,"length":512,"data":[544502373,1801675106,1679847541,1701540713,543519860,1763717413,1919164526,543520361,221917733,168633098,539634218,544501582,1701601889,544175136,1801675106,1713401973,543517801,220867114,168635402,1702063689,1814066290,544502625,1801675106,1679847541,1701540713,543519860,1679847017,1702259058,976299296,220465677,1918981130,544499047,1852727651,1646294127,1937055845,1713398885,1646293615,1969972065,587861360,707398157,1632378922,1713402995,543517801,544501614,1801675106,1965057125,707403888,587861290,1766197773,543450488,1801675106,1679847541,1667855973,824516709,1936269370,1819633184,772410732,1766066701,1713400691,543976565,1869771365,1920409714,1852404841,1869881447,1128350240,542135627,543649612,1701603654,1344342541,1936942450,2037276960,2036689696,544175136,1953394531,1702194793,773860896,168635936,671747330,1631783437,1953459822,1380927008,542392653,1919840110,1987013989,1701601889,1769104416,622880118,168639025,1107955057,1969316709,2032166259,544372079,1920298867,1679844707,1702259058,544434464,1752459621,1092645477,1195987795,744777038,1229933088,744777038,544370464,1396856147,224683348,544499978,1629516649,1635087459,544828524,543516788,1701667187,544432416,543516788,1735549300,1679848549,1702259058,225511949,1667580426,1702065505,1970239776,1635000434,1952802674,1769104416,1763730806,1768235123,1919248500,1397965088,1699628873]},{"sector":2,"length":512,"data":[1243622500,1699629391,1864379492,1431511154,1700025154,1762266468,1936269428,1952669984,1819042165,1752440953,1634934885,1629513069,1752440947,1869815909,1701016181,1769104416,168650102,1970231592,1635000434,1952802674,1936286752,1953785195,1936269413,1718514976,1634562671,1684370548,1684955424,1867404320,1380927008,542392653,1735357040,544039282,544432503,1853189990,168636004,2032168772,1746957679,543520353,1953459809,544367976,1802725732,1702130789,1953068832,1329995880,1413565778,544108320,673215593,692989785,221192255,1936607498,544502373,543516788,1802725732,1702130789,1953068832,1329995880,1413565778,544106784,1986622052,977346661,221841933,544162826,544567161,1953390967,544175136,1953394531,1702194793,544825888,1702063721,1852404850,543236199,544695662,1802725732,794372128,541010254,1667318328,1965060971,1852776560,1919885413,1919905056,1768300645,544433516,1836020326,1701736224,1936286752,1869881451,1869504800,1919248500,218762542,1094873610,1347767107,1970238240,543515506,1953719652,1952542313,762212201,1986622052,1528838757,542987055,1565339483,1093622560,794501213,1933204294,1566931561,537529693,1143954208,1952539706,1412389733,1835627578,542989669,1531719515,1919179578,979727977,1634753373,1818060916,1768318831,1566401900,168626701,1931485261,1668445551,538976357,538976288,538976288,1884495904,1718182757,544433513,543516788,1701603686]},{"sector":3,"length":512,"pattern":538976288,"data":[740913960,1769104416,539780470,1679848047,1667592809,2037542772,544175136,1801675106,779121952,541461005,1936024608,1634625908,1852795252,1769104429,540697974,1667592275,1701406313,1752440947,1919164517,543520361,1931505524,543520353,1801675106,1663070325,1701408879,1852776563,221146996,538983178,538989359,538976288,538976288,538976288,1109401632,1936417633,544240928,1953394531,1937010277,543584032,1684174195,1667592809,1769107316,221148005,538994954,538987823,538976288,538976288,538976288,1109401632,1936417633,544240928,2037149295,1818846752,1948283749,544498024,1702257000,1634231072,1684367214,1852404512,1948280163,1814062440,225735521,538976266,538976288,538976288,538976288,538976288,1633820704,1886743395,1141509422,1093607456,538976288,538976288,538976288,538976288,1684291872,1633820787,1886743395,1818846752,1948283749,1851859055,1769497888,1852404851,1633820775,1886743395,1936286752,168636011,790634566,1935358534,1566931561,538976288,538976288,1884495904,1718182757,544433513,543516788,1702521203,543584032,543516788,1802725732,544175136,1713399138,1634562671,1684370548,1745489198,1143939104,1952539706,538976357,538976288,538976288,1667318304,1965060971,1852776560,1713404268,1936026729,1634231072,1684367214,544108320,1629516399,1919251558,1701344288,1701868320,1768319331,168649829]},{"sector":4,"length":512,"data":[1952539680,168636005,790634600,1769224788,538994029,538976288,538976288,1631723552,544435043,1864396917,544828526,1701603686,1751326835,1701277281,1952522340,544370464,1702127201,1752440946,1886593125,1718182757,224683369,538976266,538976288,538976288,538976288,538976288,1769218080,221144429,539002634,979061807,1769104475,1564108150,1952542811,1869372776,1818846823,168648037,538976288,538976288,538976288,538976288,538976288,1701987104,1936028769,1814061344,1713399663,543517801,543452769,1920233061,1869881465,1667592736,543453807,543516788,1801675106,168652917,538976288,538976288,538976288,538976288,538976288,1701867296,1769234802,221146735,-1928917494,-2125947842,-888511551,18220545,327679,1954039057,1701080677,1917132900,544370546,118370597,1392787085,-887045757,18220546,327679,1918980110,1159751027,1919906418,238101792,675187975,499221331,-326412853,2123060823,172329732,-1962570928,1300955741,106269444,1594389899,1061329493,1465712640,-1996063093,39684357,-1996206711,1971914325,-997548280,1477199241,1577731465,1575324511,-326412861,2123060823,172329732,-1962570928,1300955741,106269444,1594389899,788510293,1409359497,51284270,-1892802988,-1705769210,16504,2123061085,-1996125946,1300824669,106268932,-1626835575,1166656650,1166628876,914959882,1600017413,-1268914805,512437824,-1959898111,777257742,1409619595,-13753907,525600566]},{"sector":5,"length":512,"data":[195,0,-326413056,2123060823,172329732,-1962570928,1300955741,106269444,1594389899,1103534677,1465712640,-1996063093,39684357,-1996206711,1971914325,-997548280,1477199241,1577731465,1575324511,-326412861,-402649416,-1957297010,-1979275234,126355014,-16696856,-1008204682,46433029,-375159,-402216906,-998046282,-163149566,972703371,92206662,-1830174677,-96040192,-1980348885,1187509318,-2097151758,2080437374,-193557529,-1962641917,-1979275234,1963407364,-193035421,-2095614976,1946219646,-12285353,-397351894,-998047313,81154,1183532660,-28931596,-1980610933,1183579206,-129594890,1586175723,-1472820228,-1962898938,1988886110,1962948612,-129040623,1191166859,-62455810,16285315,2122570879,141885688,66340491,199951430,15877831,-196149504,1593801961,-1017256565,-1192457387,-1142423548,1187468803,-402652930,401277034,721176202,887640292,46433025,1962934589,-28901599,-1946269953,1988886110,-2013230588,-1073021882,2122373749,393543686,-972831861,1988826091,74843134,1178076298,-1948945146,721611718,-443851072,-1957313699,-390056980,-397016226,1586102290,-1946211836,-1978719690,1592011264,-1017256565,-1192457387,1072168970,-1070901757,-1979824503,1048837190,1963001574,-373282043,12058802,-2014818303,46433027,-1207056733,-397410048,-998046854,253928194,1342178744,385631885,253278288,1637503006,-1995994870,-1072956858,1183516020,-948311046,63046,-1946788213,-1978808778]},{"sector":6,"length":512,"data":[8975942,-1946788213,-1978719690,8975942,-2114566401,16840318,12115580,1183666177,-1588586756,1344147234,-1995822182,-96040697,-1166688245,-1995496799,1187510342,-1962934026,126548062,-259267542,1962309177,-971076855,-163149299,1191116936,-129564682,16154241,-941851647,17229318,-11933440,1575324510,-326412861,-402652488,-950664598,65094,-771852661,415006950,192217103,253344896,721712384,-1960449088,-422445450,939804298,1997478020,428095499,-1207602673,216727553,-2080487681,1912995454,-18233,1575324510,817103043,37495245,550306419,-1962390593,721420854,16679415,-1107070448,-1896214528,516194775,276036374,-907534570,1354773254,-1207356696,567102719,922674307,116270729,-366573258,-1312388346,1222693636,115909430,915011331,-1014235134,-604512725,567102132,1595837494,-66644473,-1190511937,-819259872,-1426866125,1005068054,-400615936,-1108866994,-1232122,-16285642,-16286154,-402162634,-397367106,1270350050,-1193767416,-952762365,939977734,1307070552,146401286,1342242744,116135679,567095476,-1207475805,567096576,122494601,122619532,12066574,1465301541,521544141,156372619,109981411,-1960442017,-989844426,-1945545722,920335322,156245759,521536883,906371049,156763845,62642828,520041984,521537872,123668110,739150630,-1909005568,654259137,1946172800,833836,-217628482,-1190431578,-1070366721,427142898,503768555,-141877497,-1408800577,-22244968]},{"sector":7,"length":512,"data":[1208054976,385344170,310047,124299136,1140897983,175251917,1954595574,1754234885,2034974727,157073127,-402039617,1555955874,157073161,-1023374616,-1091794091,1623132768,8251402,-1089905474,1961363806,1426320128,1589570699,157204233,-1107269912,1589578078,7137289,184907240,-2096401216,1962935422,71747333,263782655,375552,124291062,-1274776575,1126288702,132707042,71731968,567102644,156372619,45811683,1344208640,382017033,12060493,522308901,126500480,504198144,-989361248,-1274573802,522308901,1945582531,-1957736694,-597235,-1007490095,242480955,-1962610813,38079237,503313012,12840683,735873881,990540504,1913098270,-1864956,-373279775,-1957298581,149717996,-1128376745,105286919,1459373705,-2096567832,-125107516,1342588557,1443133183,-2096499736,1183385284,-396929288,-998045358,-129594620,-443850914,-1957313699,73305068,74767115,33443712,-1017256565,1458342741,127056727,1962950531,-1207493079,-1075314683,855995667,619420096,-1543625664,-1801255022,80188935,-964493311,-29047036,915013630,1317734296,-1898411004,307620032,-443851169,-1957313699,-1948808212,-1898410786,75402176,-4603853,-1917914369,2123104117,-18170,-772296974,-24643285,-150714741,1946157510,-783703038,329642985,-1952123959,1576700915,-1957363517,-1948808212,108432350,-661848437,-1070350194,-218103879,-1949173842,-947190658,41157032,-372160092,-921459213,-208952077,-1017251189]},{"sector":8,"length":512,"data":[-1947432107,-1931572265,-1950314792,2123039862,-1178586362,-1359806465,-114568713,91530995,-14827493,-1946973185,12803578,-1947432107,-1898410793,75402176,-4603853,-139529473,-1953412655,12803578,-2081649835,1448543468,125843083,1182070283,294531,1996439668,-3610620,-1962752893,-1878725640,-2096970109,712245308,-1276627713,46433279,-327235781,964697227,1474655549,1392801535,-2095927832,-1073019196,478926453,-352239219,-1070886909,-443850914,-1957313699,-2091428116,1187384044,1183567350,-146372604,175383868,108275260,-872921402,1187384555,1187433466,1187398905,1452033272,-163148300,-1947056503,92997246,-1962779253,1435173965,141921030,1426750859,1576165119,2123061244,-1996125944,1300824669,106268932,-1895271031,74582597,149681715,-1106945048,92995585,-2096335479,1583286980,-1017256565,-2081649835,1448546028,-1946925427,138841592,-956414327,-1958607291,1166607430,-955938556,2147418693,1342719629,1460041471,-2096644120,-259324220,2013416959,-1950340597,-2012872931,-1878267129,1354771287,-2096811032,-963967804,-443850914,-1957313699,-1957210388,92996734,-1962779253,1435173965,141921030,-854950517,2123061025,-1996125946,1300824669,106268932,-1895271031,74582597,149681715,-1106986008,92995585,1594652041,1575324510,-1957363517,-1957210388,92996734,-1962779253,1435173965,141921030,-1962248705,93194366,1594252686,509026765,-544286836,-1945600373,105221893,-1996063093,39684357,-1996206711]},{"sector":9,"length":512,"data":[1971914325,172330760,-164428686,1575487723,114180,1971914123,-1956749556,12803557,-1947432107,1603011678,-1945662458,1468793423,1575324420,-1957363517,2123061228,-1962467836,-1178586145,-1359806465,-1965426879,-74774970,944746226,855798789,1606913023,-1017256565,-1913877675,-11532218,1996424822,285665284,-1017256565,-1259566251,1426451257,1001712779,-855353717,63367457,-1259566251,72780602,-244112947,1962938429,-1970040084,3949319,1060899444,708576372,62058869,-705955438,-1259566251,1426451263,1085598859,-1962647925,-987887026,567084630,-1962577377,126422110,230377,-1897100459,1236534342,1978212813,-1957363709,-852839188,73304865,-2013114487,394789239,855918472,12803520,-1259566251,-1960719060,797443166,-2013180024,1468531319,1572877059,-1957363517,105286636,185228939,140413912,1183517557,-1947994364,146955749,-1947994368,71732168,51013367,71732168,-788274185,-1034033781,-1957363704,1183536108,1975520010,139365141,856049291,-1947076654,-235469754,-768359797,-930396693,-1962385781,1183516246,-773205756,-773140005,1976110040,-1946945548,174520264,140965777,208851203,1996903995,990605831,108397638,453527083,1177225814,106306308,-654845193,1526782595,-1034033781,-1957363704,16562412,40233040,127680131,-16485376,-1207460842,-397410049,-443874733,45663069,-108402432,-1175047338,-466485182,-533549828,-192873502,-401771435,28901316,753422336,112642,110084958]},{"sector":10,"length":512,"data":[45746078,1628846080,-1909885945,638017286,2885262,126092940,-1181106125,-13402112,1974382322,-1991817221,-1190690242,-1359806465,-779365897,-1107295809,512622721,1017907039,1023112224,1022850057,175076365,1198224576,540847182,154986612,222094452,-1073062796,574380148,1547445364,-347995276,1103705060,1952201900,1948400890,-338623740,-775844909,-1462692887,-339053311,1017925121,170619917,1009218752,1018852386,1107522652,-919343893,1547480129,574421620,-788331404,-1047798805,-787224111,-764083800,521574379,125582985,-783821053,-2133392409,-500433182,2124661899,64523015,906434299,1128480649,125974213,-1073042772,-2118190475,512636416,65734495,-1398095821,-76275652,-143390404,58002748,167804905,-352094784,-1992912775,1313030975,1948269740,1946762459,1947024599,1958742626,1948400734,1952201767,-454317565,-1404974797,-93037508,108274236,-1426891600,1555091947,-1426855471,581961331,1321593770,1947024556,1958742574,1948400682,1952201911,-320099837,-1404974797,-93037508,108274236,-1426891600,1555093995,-1426855471,581998195,869133226,521579200,1991,127805183,1441565525,123674254,-1047803597,-108271221,741772105,1962281728,650546704,16000,-234458112,1974355374,1083655674,-41157084,-989600303,-1084809450,-907542519,-812949747,-133956213,125841033,-561117410,-481692109,993820947,-1996131261,1162150014,-1073042772,-303891851,369118857,-443851489,-1957313699,509040364]},{"sector":11,"length":512,"data":[72780551,-1391892290,276087355,208967232,-1178586217,-1359806465,-336857205,-1956749418,46292453,-326413056,74907479,201313256,-1844153152,-1070335349,-218103879,1238497198,-1275067717,1596050752,-1034033781,326238210,-443826125,-126631075,1632336,1575324504,-402164797,-4718578,-443835905,-466435235,-1023409688,168256674,-2145159708,50815294,574360946,540806515,95421810,1016072171,-1342015981,127974163,1503893719,-997539065,-1957300245,149717996,1988843095,121932294,-96040552,-1272068469,-754732793,-775386120,-775879712,139724256,-151501175,1954743876,105182726,-2146732992,-1205860788,283770879,1157009409,-277544698,33967232,-284793728,1149878315,-1980200190,1157037182,1601506310,-343810421,61933492,-1014236205,-670833711,-2013862959,1963001940,-1124171450,-2130283513,1963443454,-92864717,-2096137752,-1073020220,117386613,-25098002,108332988,-351549768,381194244,71600404,1586168969,38258680,130417152,-1878463743,209250390,-167590781,1963460164,-2116121831,-1324894997,-1946430717,65262019,-152841768,17323143,1015763060,-1962640341,-1992293308,-128021756,1208108939,184697993,1460895487,-16485121,233372278,113541901,-335788407,1586204698,1753741050,259268615,1342177976,1347469355,-854857645,-1962359677,1183450204,-351827964,29331479,1355254528,1342457485,-386238721,-998044464,-62486266,1962704441,-18093821,704923274,-1956684060,-1866244635,-2081649835,-1957296916]},{"sector":12,"length":512,"data":[117376118,-25098002,141887420,-956414265,-1878201589,130350721,1187456117,-166455554,1963722308,-2116121831,-1324894997,-1946430717,65262019,-152841768,17323143,-1070922636,-963955221,-1324895187,-1946627325,65065416,98619841,1183385684,-28931076,-1996209015,-60912892,-1996357448,1149829703,17286658,33967232,1577058744,-1017256565,-2081649835,-2091515156,1946158206,108953947,125044668,-1006207359,-1955171065,1200227934,-397371385,-998044158,1958742786,105286500,-1324895187,-1946627325,65065416,98619841,1183385684,108462078,-2096399896,1586168516,509694,149447,106859264,-1070861429,1200161929,-1876235516,-2130289013,197526655,2139162484,1964250628,122128920,-1477947240,46433037,158646283,-402229505,-998044874,-443851262,-1957313699,23378156,1475725800,108432214,-23165299,-1962256221,1218644038,71731978,-955630429,676358,1342621440,-385875958,1015022204,-385649627,113705560,68180,1151582251,172008202,-1559605597,1285753410,172663562,-1559609693,1185090106,1577502474,-2147475446,1966080380,113722940,3148382,1015034859,-15895253,-955628538,674310,-1876759808,1965046912,1144947469,359989258,172623615,117379051,166398522,1965898880,1174863825,76170762,-169324392,46433031,-394936309,173717590,124184656,-1962621821,1514046448,209518602,172361471,-150316383,173712344,1965964416,1275526947,-1202305526,-397407660,-998045892,-2081387772,676926]},{"sector":13,"length":512,"data":[113707645,68180,172756735,1033372810,846463046,1946177085,6831413,1815945332,-955878144,34226694,1111393024,91553802,1967930496,1015039489,-384076544,113705352,68162,113763307,1051202,113761259,526914,76207083,-1668904552,4537854,1195182708,1023767552,158662744,171968255,-23296381,-1668904160,6499838,1979716925,18147587,781434883,1708959743,172498571,1352736651,-2096658166,34228230,-1878955543,172885759,171574983,179830784,2145931264,46433025,-1878961687,-352319304,117412080,117377598,1048775232,1962936908,1443284745,-352321270,113741831,2646,172754687,173278919,1048772612,1963461186,8972547,1118027819,-62486262,173671993,1520510836,-62486262,172375683,-955681792,678406,-1877808384,173682307,173711621,41795595,1520681003,1208386314,280494602,-1552384,46433024,1342192312,-2096902168,2122515140,578027772,172375683,-1961528320,86899782,173712128,41795595,1520681003,-1878529270,173672135,780337152,-1207694776,-397410288,-998047554,-14685950,-385871688,-1070858449,31647824,-1862325527,-352321096,-1224765197,-1175912804,-15079166,172113539,-1962707968,-24424762,4030535,1031800180,-1946847963,1355164615,-303540706,113541891,1015084939,-385649664,1048837500,1962936912,1008634713,105379338,-1202752480,1307312127,1688495496,1703830926,1704486286,1704486052,1704486296,1686922648,1690199224,1704486296,1704486270]},{"sector":14,"length":512,"data":[1704486048,1702389144,173162115,-2095877120,675902,512430197,1207306812,-1217060858,-347732757,1352765593,-1956684278,-1866244635,-2081649835,1448548588,168066691,117376116,1048775246,1946290754,1111393031,376770570,172498571,1468729227,-62486270,-2080483703,67782662,1048783595,1946159694,1209961233,-1995994358,1187511366,-352321282,512462862,126552648,-62486119,-2080483703,34228230,171589251,-1962052608,1175190598,-1962576642,48956486,1554235435,1479969546,1312719626,712310794,16678531,2122523773,393546244,1177355462,-1946401141,-654836138,-150941053,-62486054,-939633015,129094,1187448299,-1929379592,-125048762,1459910399,-100609,-1511457674,147096329,172768899,1461810176,-2081216024,243991236,-936703404,-336310647,80121861,-1047837136,2143292233,-196179467,171970187,76023178,125094155,58483004,1176513664,-8552377,-2081852160,675390,1151407221,1241910026,-2096401398,1962997886,112645,-1070923029,45279312,1577239683,1575324511,-1957326653,283935724,2122536535,343146500,-1593835074,1183386184,-94466824,172492419,9562370,172113539,-1961396976,-1962260450,39291655,-1980217719,109312598,-352056760,512462869,126552648,-1979955575,1586296902,1208386554,1048773130,1963985474,-129594611,1979336203,147765268,2122516971,158662908,-1995909704,1586296902,-129594374,-1980082549,1451881030,972434420,1946831926,1410239260,-1878070518,-893244,-2144931258]},{"sector":15,"length":512,"data":[359923775,2127444806,-1863455984,-228670394,653412095,1962950528,1514048499,-2080494838,673342,-396949643,-998047458,1996445186,-126418950,-2097057816,1048774340,1946159686,65558279,46433025,-443850914,-1957313699,82609132,-1995814751,2122579526,108291844,1191476867,28312693,-1070988565,-2080618872,674878,113706613,395860,16547456,1048776052,1962936916,1409730310,-16776950,-16105418,-16100298,922682486,1996425816,-266928130,180650760,16547456,1048777332,1962936890,1479999243,-233373942,46433032,171589251,-2095942656,676926,922684277,385813080,-998045450,1208386306,113707018,2652,185222305,1946831366,-25755885,150476543,184730755,-1207601984,48955393,-397361109,-443875064,-1957313699,1048794860,1962936914,1008634671,38797066,1183452792,-13137148,704940039,-1878266908,74907475,-2080935960,1967129796,1376190215,-1878660342,173016831,-1866244770,-2081649835,1448542956,173162115,-1958120192,-167050122,367739518,171718399,173946623,-2080950296,1967129796,1376190212,1321634570,377405451,171712139,2013417471,173973723,134168459,-467008120,1048829163,1962936914,71731975,173016577,-443850914,-1957313699,49054700,1988843095,1379828488,1349845002,922688747,1589905980,126494212,-639086440,79987702,-16485056,-16100858,-963967930,1958742862,1008634653,38797066,1589957752,126494212,171712139,134168459,-467008120,1048826603,1962936914]}]],[[{"sector":1,"length":512,"data":[138840839,173016577,-443850914,-1957313699,183272428,915101271,-1070921128,-1979955575,1048836678,1966082654,1275476248,957510666,1946828294,1443248390,-955878134,537550342,1514048256,-471312886,46433263,737691273,75377656,172375683,-2145880832,326446396,173948547,-1408469712,-1645719400,46433278,-2080878849,805985854,-16053388,1048774526,1946159686,75399961,-16354304,1609103942,1547600640,108265482,-386119937,1048772714,1962936902,-1612163290,46433278,294531,2122516852,57999610,-2097138200,678974,2122516852,57999612,-16761368,1444870262,-2080451608,1048774340,1946159686,1577502477,1459625994,-2080480792,1599996612,-1017256565,172244611,-1207602176,65732651,1342185656,-2080503832,-1866267964,1342189752,-2080506904,1048773316,1963985500,1077838615,108265482,-352298824,2025361412,-571977728,46433277,-1957326653,82609132,1988843095,-28915962,1015021569,-1961921238,-1962260450,1208386367,-347733494,1015058504,-955878099,-442,-2130760890,897331260,2134457472,1279146288,-2146732790,108343356,173934279,76152880,-774927464,65130977,65130959,820609992,-2142832245,92024892,2117680256,-28931103,-125046793,-1996202357,1590070079,1575324511,-1957326653,49054700,148684374,-352039286,-2142859262,175374396,-160101318,-352321096,-1070886909,1575324510,-823553853,-93044480,-2080448128,-227283207,-66947189,-1459713107,1212314625,359907643,-268185461,1946265773]},{"sector":2,"length":512,"data":[96600884,-141885438,-335657847,1962839014,-1980169460,-1054081460,-351958712,-17235195,-963903924,-779298164,91541819,-434205658,41912584,113649347,1023543532,628424702,-268173685,1946265773,1224641522,-1116487365,-268185461,1946265773,96601058,-141885438,-335657847,138906598,74760203,351000718,-334561754,-1945013240,1003982040,637891783,149036686,-1125435509,856061835,7006400,225756731,1077936420,6219928,1308495220,1894654,1318454644,-1936069810,1003588824,637826241,-1962350941,38242567,-1013333965,-28996783,57934248,1095354411,2147465793,-401196250,-788236792,-1946847766,1925579713,1925317397,601028365,-389665854,141885452,-355347721,-1070340747,1364378457,1946164712,-24422632,-234622837,-16890681,108497407,-684992885,-27948726,-1017489064,-768389037,1347572254,1342177720,-1444405498,147096322,536869507,41179994,12833291,1475119957,-1962467754,652413006,2123094411,871860996,-139529536,-1949629479,108432382,1149937395,986264575,74972997,1229522036,-1047801353,-443850914,-1957313699,-390056980,922741606,1996425088,108461832,-402360577,-443874502,-796146851,116262403,104412530,628295400,1342181125,61987025,-645076781,123674251,-1056715989,-661929074,567102132,605057624,-391952144,780899590,369166062,-1950152978,-376313401,-2081649835,-1957297428,-1272118202,-754732793,-775386120,-775879712,139724256,-1191295351,-397409792,-997987506,73304834]},{"sector":3,"length":512,"data":[184829833,-2146470720,-1962408369,1204289118,-352190462,1586204695,105873412,-28931324,71797056,-939630965,66119,-1962647925,71601139,1204225929,1577058306,-1017256565,-2081649835,1448543468,721712779,105155327,37487396,1156990581,427100166,-343810421,61933492,-1014236205,-670833711,-2013862959,1946224724,721718055,1183384644,2126515196,1962889243,121932292,568873112,113541888,1962690107,105676807,-16608,-1996209013,38061828,-947191808,-443850914,-1957313699,149717996,990142091,1913087518,151042055,-241309191,124291062,-1207208928,-919387646,567136651,-2013861006,1954547560,106335086,-1070397666,-1979824503,1476197446,-1946514602,-127497742,-485994869,-234180524,-397773394,-1472396564,-2092403200,-594869524,1023541434,57868840,721453242,-1949004830,-1962469638,1017907278,990671882,-1441172229,602469602,-1335760128,1979398925,1632259,-16076630,-471073722,-352317976,-346071326,860220245,-401479232,-1957604528,-473289777,73304848,567099572,1174474098,1958743038,1482381574,-2084308341,74647748,518719924,124291062,-1962183616,1065354846,-133991142,-1191637781,116071424,738084491,1720450118,-379625736,1317793983,1976109832,-373191931,1452011699,-851397626,-1274776799,199551753,-153061952,1074227335,-628422028,1964654464,-806619133,469809401,-1957312021,106387180,556675,-289458059,106334982,1208239755,1407715189,-349736448,1043761992,292833287,225769275]},{"sector":4,"length":512,"data":[-1996340085,-397013946,1935540282,80118576,121568897,-771029901,-4716939,501979647,-1014769013,-1310994161,-1259613437,1914817864,76124905,-1996335991,856112694,1583286208,-1017256565,-1962127733,38550007,-964490124,1056866564,-101550841,-628408341,963779587,-1047604341,108394299,115875385,-1014815117,-774123249,-773074453,1979137003,-1579613431,-668268705,1253359758,225583565,74839867,115873417,-1962637422,-1957313583,-1286121748,25487616,-1947432107,507184222,293406566,2080439171,1753740812,91504647,-352321096,-1950338302,12803557,-1192457387,333971674,-1923721240,-1946212218,175570936,-16222465,1996424822,27322372,-1995914109,1090485382,1048785525,1963067225,106859307,-2037905526,792526630,1547443828,-1073079692,2139096692,276052481,1342767288,-2081870360,-259325244,141948427,-8616309,-1879012375,1342209976,-2142859946,13166672,-1962490749,-12138768,-1878201600,1950039168,-2012968437,-2142812667,-260767684,1325401542,-8733047,-14121331,-1634994037,1065418618,-2146405284,192163647,1342768568,-401151913,-16464765,-396949898,-997988340,175570692,1460172543,-402360577,-998047498,2089191688,-2005581569,123289219,-2138999550,57999420,-1946191383,-1073002810,1877581173,1600033023,-1017256565,-2081649835,1448543468,721925310,-1877611521,-2096741130,-397014156,-997983126,24395778,147227463,147600953,-947132813,-443850914,-1587952803,-1002764400,-1003813261,-503326473,-85213133]},{"sector":5,"length":512,"data":[1475119957,-1962467754,1988822142,-1948284154,216205390,1958742700,-119363069,-1426866126,1600045963,-1017256565,-1962258805,1451951174,142510854,-66642345,1958742675,184124179,-771027339,766511737,-2082736214,-621346606,865269643,1958742994,-1812859134,-2020412937,1009779923,67270201,-1031034329,-495598837,-1404107384,1149764998,21270015,-227358917,-1956749480,12803557,-1192457387,1407713420,-1957275674,2122516086,276103684,-16091393,-397014922,-998046618,18475270,-1924087765,1358918790,1358579341,1358186125,-16091393,870844534,214205185,-1207470784,-185991169,1555599360,-396996608,-998047502,-1191671036,1448083503,-2097093144,1183384772,1975520252,1979648777,-335639791,-16019443,2117666164,-1962707204,783875198,-396931072,-997988056,1958742788,-92864743,-9140595,1996445264,50784260,-1995914109,-1930823610,-396980224,-997988614,328962,-435361712,-1962752893,1979649016,-193528051,-2082083864,2062090948,146313471,1465274377,-2082049048,-397409084,-997988820,1493616388,-16777209,-2037515658,1464926068,-402360577,-998047056,-129595128,123289219,-1205111550,-1202714355,1464860718,-2097137176,-397409084,-997988812,-92864764,-9140595,1996445520,41871364,-1995914109,-396887994,-997988992,-193528062,-2082113560,1183515332,-1956684040,-1866244635,1475119957,2123040542,-1178586364,-1359806465,1339684673,-49920374,944221938,855929861,-1962742848,-1956643641,12803557,-2081649835,1448547052]},{"sector":6,"length":512,"data":[1983510059,-1593412346,1183385472,108954374,-1960217600,1183385158,-1877742602,-2081005941,-16583098,-435886025,1073923203,1586229251,4162550,-25098636,-529104897,-1996003679,-1072955834,1586171764,1740603646,91553799,1979600639,-25263119,-1962380288,235273798,-2081422592,1946160766,242679566,-2082095640,50660036,1190134528,-2114685303,1988100094,1493616403,-956299513,168256518,-18432,-1878948631,149436043,149423815,1183514640,984564,1357792905,-2082169368,1183384260,1975520240,-294191327,-2082173464,-125107516,360054539,123274951,113704972,526180,149436041,2123085803,-399078928,140413704,-1980072311,96963391,-266076145,-1946532215,-125105570,2122530697,762576902,-1996077429,502003270,-1957642197,939521630,-457250729,1342489731,-2082005016,-1958738748,-163150856,-161576190,1962950531,-25263141,725513216,314069184,-396931063,-997989228,-169324540,79987686,1183512715,1191545086,1317795371,1757184254,108265479,124290186,-5242133,1179059592,1317661666,378622,378439,243172167,-971869184,-968425211,-12124155,-396947850,-997989304,-1946801404,-1958278018,926483550,2000254068,-972721150,1179066373,33932171,-163149568,1979919595,1354771442,-631157,367548215,79987684,-428414896,-1962621821,-163150856,-161576190,1946173315,537249285,1586185799,4162550,939469940,-2082190872,1183384260,1036387314,-1166671747,123274951,113704967,657252,-16228725]},{"sector":7,"length":512,"data":[-483203017,-385694589,96927363,207522573,126404235,1593067147,1575324511,37059,0,0,-1957363712,75400172,-2095877119,1946158206,1493616397,-1207953913,-369557505,1465313819,1586223244,-754667254,-1547500565,1183516960,153264904,153362060,915080990,-1085929182,28838190,-1205744343,1052715265,1428278537,1048583686,2097350497,378285601,-1993443806,-1082777562,898301998,607553838,41257846,641108270,512503414,549156392,75399945,-1341754368,-339135740,-121622014,-854870960,113727521,67464,-1274653045,1344392523,817123487,54272461,561863512,571903534,646655606,784299552,512634368,-1959889368,-1988745674,-1959918987,-1988746186,529767989,126355143,1560739840,74604127,567102900,15292137,157159051,-503381277,-939524168,369580294,-381556480,-1325308160,3801103,9437285,15073467,20709649,-326413056,1448235347,369499735,124958805,1740560526,571649,639008452,-12778101,1024685311,594804737,83357835,460685312,-385874248,-964493018,83314946,192184320,-503134589,309493,-1962864151,819460,2147427712,-1006631261,-1993992578,-852511691,169773345,201755648,235324928,378208512,448004102,2126782925,93005322,637534371,1479,1962934333,13560067,-1961208123,12063822,1931595086,12642563,-1912114504,239504344,-1006630749,1049170046,109838338,780337156,1931673608,571398,-1962893847,-1006631370,-1962933698,-1993992124]},{"sector":8,"length":512,"data":[1166616069,1166616068,373590792,38111526,105220390,172329254,639255691,638338441,-1961867895,-1993991100,-1993994683,-148499899,33493061,-2128212876,-33550235,272990502,-1070398976,638928010,-1189853815,12255244,507546112,125042748,390170662,653451843,1524166,-2010725493,-83683771,147081,263820,638222020,251594239,242483200,-850460488,-1006013919,-385875394,-1070858408,124958800,1048631438,1946157070,235324941,382009344,448004106,1566056909,1595868951,1532582494,-899816053,-1957363688,1381061612,102651734,1586189590,207013136,-1274392949,1914817856,108446983,-1070922615,520558429,1499094623,1575324507,1426066634,1364454539,509040210,-984279546,1102318166,41034189,392020011,1583292167,-1956947622,147480037,-326413056,1448235347,369499735,242664789,3998859,-1962642943,-1157648168,-628225998,-1275067206,1914817848,310837,-1962246460,1166616068,189041412,256215334,638403723,-1978579575,-2010771132,1317737797,585728786,2126776946,583500554,-1426915152,392020011,1583292167,-1956947622,248143333,-326413056,1448235347,369499735,124958805,1988876430,33456902,1740505973,325377,-1207536256,132841478,-14384752,1572877183,1595868951,1532582494,-899816053,-1957363710,1381061612,102651734,-326937322,172422914,729055232,-1977846075,1918974980,1937456134,752878594,1007841857,839807771,-146784028,410437080,-873921399,243712,-989804567,12065878]},{"sector":9,"length":512,"data":[1931595075,146696,-1243004044,-28407552,-954960187,-1962934012,52759622,212224,20777588,1024160768,846462978,-385872712,1992622224,313108,475448576,-1274394997,1914817853,410436989,1693123721,205949840,1023414309,108265488,-352318280,1992659045,33867540,475448576,-1274130805,1914817852,410436945,1455686793,-1950249968,1107474648,1047667149,-1961331003,341230876,1085589803,779231693,-1961331003,-851528676,-987532767,1183521878,-851594230,-988319199,76093558,-620504949,-1912062792,-28931112,821129,-997998549,118971650,1516134175,-443851943,1755741,1408011093,1465274961,1427506718,-1912065352,442072,-1274128757,1914817863,-1897952205,442311,-1342144327,-1359807488,721453242,108971217,990743334,-1207536694,283836424,650808208,2126779785,441866,-1070881549,520558429,1499094623,1575324507,2762,1408011093,1465274961,1427506718,567089588,67543598,175555992,-1207662272,-661780430,10632845,45635358,-1070903296,160930384,1048577929,1946157218,32241923,-1610168328,-956301312,40454,517053440,-778239840,-956260322,33588742,179968,378212020,567083142,567089588,104588338,57933958,-117314568,10395089,8783615,8797827,-1076265967,1048772608,2115633286,772715727,67507850,112271821,10366675,-1962893663,234922014,108447007,1552483465,1572877058,1595868951,1532582494,-899816053,-1957363704,1381061612,102651734,1455772950]},{"sector":10,"length":512,"data":[1124120590,158474701,-1995802939,-339727604,178179,520558429,1499094623,1575324507,1426066634,1364454539,509040210,-984279546,1317735510,1124186122,74588621,15450163,520558429,1499094623,1575324507,1426066122,1364454539,509040210,106239494,-1945348412,1183516609,274631434,567100084,1992624754,-1996191482,-1070923180,520558429,1499094623,1575324507,1426066634,1364454539,509040210,-1957358074,-1014299042,125425911,-851574600,721580577,118971840,1516134175,-443851943,182877,1408011093,1465274961,1427506718,1241929355,567086772,392020011,1583292167,-1956947622,46816741,-326413056,1448235347,369499735,240552789,567097012,1979711293,5748742,1351643883,1342714552,-1507948257,-1542027008,-1441888000,-1465690112,205949696,108265788,-352299080,1183551567,1195270,1874331261,-1874728192,721977028,92874432,38111526,721733507,1166616256,11051266,-2096789210,-1532951353,92874240,-1993949141,-1499397563,1166616064,650128132,-1593424503,-1993998166,-1070921659,520558429,1499094623,1575324507,1426066122,1364454539,509040210,-1202383354,-661780622,-2096073077,57999870,-150902850,1971322884,440326,-1962871831,-1670860,104237439,-852511744,169773345,201755648,235324928,378208512,448004102,2126782925,93005318,637534371,1479,1962934333,12118275,-1559607669,2126774280,37652748,67537920,1325447168,57876941,-2097111063,587204654,146278003,9627904]},{"sector":11,"length":512,"data":[407179,147140,639124619,-1993996919,-1993997243,1149962309,1166616086,1166616066,1166616070,440699658,205883686,272992550,639386763,638469513,638731657,-15710729,638350337,1074561,1166092030,855769104,356813504,340101414,-1157624647,1082785792,1946172446,1099441671,-220052713,390186534,650349312,51791240,37652987,67537920,108971008,-16384218,1946157070,-10884861,-1202667477,-661780622,933504,-972196864,3590,661189,567089844,118971736,1516134175,-443851943,838237,126421049,126421050,1408011093,1465274961,1427506718,1023952523,108265474,-352321096,1183551548,81158,71109492,-1207536640,703266818,891533456,1992630733,-1944286962,1455751748,378088978,-1943140465,-1945661154,-1160081718,599263227,723635493,118971840,1516134175,-443851943,1100381,1448543774,1397838421,139180112,-1064380274,-1893794002,1499158535,1600019802,516890375,1431721734,1347637586,-1912058952,784371416,126820095,1515805528,123690589,-808464609,1408011093,1465274961,1427506718,-1912059208,105286616,1946157117,81195,28837492,-1873810688,16000,855995649,-1874596928,1734,382021121,616040636,857853221,-1875907648,16000,855995648,-1876694080,1734,891598848,-1993465395,772324382,146671244,-628176244,-1207385926,567092516,392020019,1583292167,-1956947622,46816741,0,-8152064,772502786,146546431,141886012,-1336400947]},{"sector":12,"length":512,"data":[-1878791421,1439629744,1364454539,509040210,-1202383354,-661780406,-852155208,512306721,-1943140073,-1945560826,-1160081718,616040731,857853221,118971840,1516134175,-443851943,182877,0,520040092,37488919,600638069,65487,134217728,-1308018432,-1342174401,-1342170880,1408011093,1465274961,1427506718,772687499,-1274466398,-1172369901,567085352,-1275066183,139889468,520779519,141697485,1052039307,-1070915123,520558429,1499094623,1575324507,1426066122,1364454539,509040210,-1957358074,3999302,-1956285184,3999814,1029536768,1065287683,298702987,15763,246482559,1307306963,2130706749,-754667254,-754077213,1027533803,209649666,-472708943,-338489679,770425854,2130707261,-754011894,-753946141,1025436651,343146500,2130707773,12191247,650284784,134217376,99351596,-352320840,-977261817,478677622,520558429,1499094623,1575324507,1426065610,1364454539,509040210,-984279546,76221046,-1962510651,1017908814,1007252065,67466107,-12285728,392032482,1583292167,-1956947622,181034469,-326413056,1448235347,369499735,1660991573,292692429,-1962508604,76156494,1174767654,871883335,118971840,1516134175,-443851943,707165,-1308540608,-1342138624,-1308622572,-1342119168,-1308622591,-1342171392,1377850189,1412263541,543518057,1919052108,544830049,1866670125,1769109872,544499815,539583272,943208753,1766662188,1936683619,544499311,1886547779,1347158033,1275081044]},{"sector":13,"length":512,"data":[3298384,5132880,5132099,5002574,5788993,827609164,1347158074,3813972,978211408,1313817344,1431175226,1090533964,1933203541,184594944,150974464,234926080,110592,0,256,-65281,11665422,1118830606,1275086592,1409306624,1543526400,1744855552,1912630528,536901376,788532480,1294925907,4271872,788546607,1278148692,4599552,4474927,822099759,822095926,4927542,1261450801,942735426,942735408,822102832,1112223800,808596224,808596224,842203211,4344624,3159603,1261450803,808858368,922763851,922759218,4927538,1261449783,842072130,822095920,1261449266,808595712,4344624,3288625,1295134257,841888000,822100557,3159092,808727601,875626571,1112223796,875442432,774963252,5059636,875834929,838877773,3160120,808990770,942800971,1112223800,942551552,775028792,5060664,943205938,1543520845,1297239878,1127109697,1543523663,1297239878,1127109697,1090538831,1330011194,1413565778,1297040174,1413566464,774504520,774504490,774504490,1663369258,7546170,707668572,979576064,1128350300,777016651,4673356,624583461,1663369331,707668538,1551049984,620786469,7546227,1112080476,1330201165,1297040174,1296189696,777211716,5066563,1395543881,1291866969,1397703763,1398362926,1297040128,1145979213,1297040174,1145914112,1163412782,1551049984,620786469,1113340515,1430995777,774528080,1663369258]},{"sector":14,"length":512,"data":[1094868026,1347767107,979576064,1128350300,1230001483,1077947972,1663369280,1094868026,1347767107,1128350300,1230001483,1077947972,1663369280,1329814586,1330795598,2764364,1547330341,1262698818,1329811541,1330795598,2764364,624583461,1663369331,790626362,1094859350,1347767107,1110384640,1430995777,1445929040,1128350266,5264715,1297239878,620778561,1094859363,1347767107,7546158,1965371440,1965371392,7677184,1547330341,1262698818,623792213,1663369331,1094868026,1347767107,1128350300,777016651,620786469,1130117731,1381256783,623791183,1663369331,1094868026,1347767107,1313817436,1280266836,7546158,1547330341,1262698818,623792213,1663369331,1094868026,1347767107,1128350300,777016651,620786469,1130117731,1381256783,623791183,1663369331,1094868026,1347767107,1313817436,1280266836,7546158,1547330341,2764330,1547330341,1262698818,710692949,620767790,626801251,1663369331,1094868026,1347767107,7546204,624583461,1663369331,7546170,626815781,1931804787,218133285,544417034,7546144,1547330341,1414418243,776752978,620786469,1113340515,1430995777,1931816528,979576064,1128350300,1548768587,1414418243,776752978,620786469,1113340515,1430995777,1094868048,1347767107,7546158,1262698818,538988629,979576064,620786469,1113340515,1430995777,1931816528,979576064,1313817436,1280266836,7546158,1280659267,1330520132,1279336532,1094930252,1394623828]},{"sector":15,"length":512,"data":[1162692421,676942,1663399205,1966223397,807756581,620786994,627254645,628437552,875570531,1965359221,807756581,1663399218,1966354469,875570432,627254645,628437552,842016099,1931804789,1931812896,-128173568,-1627344381,-20480,11665410,-5242840,0,255,2086492928,1026244156,1253947,917682,-80,-1308621569,-1342175232,-1,11665412,-5242872,11534344,-16777216,16777215,0,168624128,0,402655744,1092923904,1397600256,1397703712,1919243808,1852795251,673199648,1866672451,1769109872,544499815,825768241,960049453,1766662196,1936683619,544499311,1886547779,1667845152,1702063717,1632444516,1769104756,757099617,1869762592,1953654128,1718558841,1667845408,1869836146,1092645990,1914727532,1952999273,1701978227,1987208563,1075864677,1663640360,1668444781,1663988328,825110793,792082464,825177648,2097207,-1559853056,589840390,1936548649,1751347828,157494898,540094001,808400440,925970230,1074178560,1663640360,1886418285,1663988325,825110793,792082464,825177648,-939524041,6,1325400064,1258291288,-1308565752,-1342157824,1127941870,1279870559,1313431365,937798,1704114,-2130701136,16875905,11665415,-2035285995,1124616967,11665413,548405257,-1308622313,-1342173440,402784790,202115341,369624844,219348758,989790738,973078543,271,0,66048,0,131584,0]}],[{"sector":1,"length":512,"data":[230400,0,990118400,2013311488,110592,262656,7602354,671632560,1819047278,1848115241,694971509,539831040,-1308617693,-1342174976,32,-704643072,-698493347,-698493347,93,1342177280,4740161,771752028,7171939,1702389038,1598241536,1162627398,1179535711,-1308609201,-1342175232,139397358,139397374,11665416,-1129316306,1006633073,1397575228,4079175,808866304,168636464,1953701933,543908705,1919252079,2003790950,50334221,808866304,168637232,1852383277,1701274996,1768169586,1701079414,544825888,658736,911343625,221851696,1847602442,1696625775,1735749486,1886593128,543515489,544370534,1769369189,1835954034,225734245,16515082,-16774643,1853190656,1835627565,1919230053,544370546,1375732224,842018870,539822605,1634692198,1735289204,1768910880,1847620718,1814066287,1701077359,658788,911343617,221327408,1847602442,543976565,1852403568,544367988,1769173857,1701670503,168653934,-1308567040,-1342174465,-1,-1,-1,22210,29097984,162334720,1112672495,-1064507253,234885125,303903,787971,244039822,-108331002,-34108593,-1202674445,-883949516,-661863540,-1898410424,1032128,-1342172999,1202648063,-1014237301,-1077899704,78708751,-789068149,-628299565,74698795,-768878452,-268181293,-947135858,-388771593,-802438516,-1064565645,-522989013,-1030817789,1322289836,1187548077,-31145334,91598908]},{"sector":2,"length":512,"pattern":0,"data":[-341118036,1974615046,-1968901267,1946265794,20102833,512433934,872153092,-930370094,-1031072797,-1064385789,-2080863315,292880383,-501415642,16417267,-2129234704,-351272766,1086360796,-276578162,486614544,-339702200,-1950118942,-1962932162,50334262,33948144,1060096,-1064380274,-100663109,-410265970,784698363,1085550591,-1191181637,-896794602,482007694,-1205744383,567102719,1801675088,1713398885,543517801,1663071081,1970434671,3503216,833688279,819671300,814690492,806367309,801714147,797585324,792932202,784281323,860238710,1066677039,1072185261,1104953471,1404982120,2024100904,2046130484,2062383759,2084863000,2093448371,2129100380,-2145288201,-2137685979,-2133294924,1445691767,-1952426523,1465341645,-1915188172,36316]},{"sector":3,"length":512,"data":[30497357,65560,57540616,50266111,512,-1048320,82,1263534351,1163151692,1886339872,824192626,758135097,1344287289,1380013899,1850286149,1092628067,1377856620,1952999273,1699881075,1987208563,484453,8388608,2818090,32,76021759,-2142631936,468768,30,1,0,0,0,-1173995848,328438,33962752,-1273269760,18397705,550314445,544501582,1970237029,1830840423,1919905125,539829369,768642560,-1903165415,-994488128,1476342528,-67025730,-1865701901,1406897405,2999169,-846407165,-461323637,-1962626801,-1947806734,1323946446,738102094,-1898435608,-203714875,-577831771,12518919,-1376374015,1096341,-1783813141,904597682,280139181,-1783810325,1005260978,280139181,-1783800341,1592463538,280139181,-1783799829,141693106,1257099684,-126618508,-617363149,1951067601,-774647355,-999011603,-611986479,-305064076,-775982006,117145811,-305067150,-1392216758,-787434859,-1886769453,-109051551,863335434,49906651,-305059212,1922921546,1257099555,-741237644,1951067601,-774647397,74795757,280139181,-75443247,773223170,24231818,1457031852,-215222389,-216070626,-346153052,1257099648,-1783823243,-741273422,1913191296,1257099738,-1783823243,-741273422,1914174336,1257099722,-1783823243,-741273422,14672769,-1125392506,-2134375764,-12844843,-1956937355,281248747,-1850949581,61673443,-1866428733,19306413,-335945187]},{"sector":4,"length":512,"data":[-1023169045,-1896174190,-69170222,1406665645,-980528979,-1070342770,-930359157,-393490293,-125046645,33555403,328714,0,134678016,131337,84148992,6,0,151521024,218893066,0,1694498874,1912605441,16779012,-2109075983,1980440589,175178251,-229761023,108533251,1649348619,1627526810,-1484780794,-1844764215,-469692405,221449023,930313494,185270350,27648523,185218050,-51706621,89074689,-99735541,7097705,-633200230,2038696870,2038827840,957030802,382881800,805569699,34289419,1829478729,268438282,565105792,142283265,318872434,1054736140,67895691,203748638,1494745349,1856443904,17304580,-1160050420,168559152,-1375007743,202113515,17632257,235712186,17778689,-1159000052,17894401,201396868,541815828,202721335,816870647,-1158995656,-872343784,420217112,-1156822156,-1223943644,34357982,1567973377,18680834,201399868,24499999,201400332,1561067809,201401047,604766499,201416053,638320933,-685306879,671875445,19467265,714533132,737955084,1476943214,604056588,19825453,201403984,145098031,806157923,402721710,889979185,-418885520,-2093598208,924058030,1798835201,786900,-1526701055,977010955,1857722888,-1677640856,1024196924,2027197665,140340798,20909199,1975140388,1092125708,-1168304127,1202979142,1568002312,-1677637524,1242300745,201422295,1309409611,-1173531647,1347420495,1314134017,741343703]},{"sector":5,"length":512,"data":[840433665,201421877,68420411,552416257,-1844761023,385331716,202244607,785256450,168633353,337446407,1291925028,1329864787,22020,1769173605,908095087,692267040,2037411651,1769083904,544499815,825768241,3736877,1293956266,1869767529,342257523,1914585248,256647280,1702063717,411062628,1765504097,757099617,-1471000544,1946972193,1311121529,1093599597,-1521673108,1694987208,896954930,-721341426,1262768971,-804568248,143081,8389027,22879740,977338755,540486236,17326127,17324565,-1570620671,16778544,141625192,146887424,-1811676411,-1777827064,159660608,5648131,1483294255,799489795,1533059082,1044151389,574307627,-771995215,2127812604,32759292,142472260,16793344,739574702,2890526,1162627398,19926665,827017283,6041503,774793506,-1509937565,3060855,1615536908,-15730478,168818447,966810721,168769849,-1946139040,543517801,1869376609,-2072747677,1635023556,1633816930,620760932,1381061456,13428742,57832,-1207026908,-1994162683,-1962559986,-1476335606,376569889,235127180,-1047657030,353669649,369300779,637594372,452823,1532582407,1446888280,1431800320,512302598,-1014233073,1376260358,67977040,-1157101290,-1190922240,634257407,1560747866,-1488232865,761359150,659969896,1701317573,-855171443,1764549670,774856542,-1014299392,855642299,787740626,-728836093,-628374615,1622689561,512438314,-1558509245,-1588365980,653731850]},{"sector":6,"length":512,"data":[-1559346326,-940031869,671353606,-18683799,-1583314317,-19142447,805372099,1472462928,866896179,305051903,-1509949262,109850573,1049167006,34538652,-1508938455,1393533967,-1240529702,-2069449713,-1710291441,-402352113,-190242170,-1811180026,623511556,330303528,325952916,765987754,755649032,79433662,1074060175,-972419759,604316678,-2063278069,-502889054,1654655492,514135052,258291904,1160299527,118589447,369625032,-871914199,773789959,1090756608,1357402368,1493725696,5900127,82565376,-116603773,508973251,-849149768,505488424,-1994776825,-696069066,1577330858,-1153165833,859834972,-427812142,30310401,1833173432,18222055,318851862,1023750324,58004998,-336027648,146712,-4520589,-1157370881,520782474,-1304250112,83867136,1460037125,2081810517,16678926,1962475344,-350288380,-1960899070,604331511,1398172298,-919341517,1340697,-1027831032,636215179,1946339062,-1001090040,-1014127428,1293947733,658312504,-1340967168,104862994,-2084361976,847288827,-117229802,-526185237,-850100220,183934141,453806080,-402426880,-964493228,83949572,-922024334,-1611988363,1963010972,1375900713,1351307605,801965511,-12287940,-1962314408,201504984,-1778843157,1502460162,113541980,202647784,307911936,1659375311,1577593435,844574659,-1960774976,1238497198,1199005528,335577885,376766345,343218493,-1588589803,270466940,122842264,13441771,637957152,-352105078,892874249]},{"sector":7,"length":512,"data":[1361970293,-947713260,-131243004,1343452301,637869849,65733947,86329646,256444828,672721695,208861667,681579297,52823822,851116669,549471981,113657613,-1325398822,1468006485,-376745466,81272457,81606280,83805416,186404392,-402295315,5046310,28370956,-396752782,1594294533,115189072,1510606585,106184816,149903709,1401546048,-1723842751,1076639036,7812352,1504972659,-1239298580,920924676,192159248,617267515,5375860,134443538,516108308,-108847354,21634044,362021556,-1031135443,1353298408,-1401744128,-1811851894,-336064076,160498248,1193214081,-118262455,408863,-91532544,-645200098,-218359120,721647022,1260392665,123456395,633353033,1095707980,-678739788,671787354,-1740812203,1385365594,-133801896,771768858,-2144953324,41228861,1342226827,1427827603,-5838767,676981131,41098373,-1446467093,-1443305413,1901928960,-1157617736,786436,1707278773,-2134444527,201327989,-616657538,178436,-1006698264,1460011328,81018564,639048715,1073757571,276101121,1912945190,21314242,375,-347650055,-1022926871,81659535,-1835803853,922157360,93521122,1980365443,-1607958523,65746882,1095905285,1349894155,1960526336,1963177273,175931405,1973747756,-348717307,585842948,1948976914,303043076,17528075,-1823125486,-1477717453,44432644,163800334,553915392,11543988,1965373478,-1067121398,74711296,242598970,1331975,-1845398529,-478852798]},{"sector":8,"length":512,"data":[197822294,1946292461,1048792371,-1976863247,105136536,1018376196,1008599716,919768368,-404016125,1048596744,1111950557,1228144680,-1163047089,727187455,715001,1499463188,-1930886285,-896839424,1252263562,1963815936,720249606,-1570897596,1118372639,984156423,1086927618,1734613584,178298193,1156987757,301993735,41731155,-352232728,1947012648,101503657,201736718,1746576553,185470490,626278688,275076098,1548882916,549453856,123275122,2120113503,-104519926,-1938684590,-2120089850,1267728828,-1034944194,-2007433593,1124394119,1346435971,-790064544,-291897856,-1995829832,1125403938,-617758488,1969562815,538101521,382080045,-1508243286,1727744,243812608,1149895898,1992374793,-1967052258,-1863265655,286553216,21632266,-833323948,138800245,939796480,141756492,-1068235478,92983690,-2036456431,135322601,486915188,-2066510078,1440517953,-167110539,1493573486,-2133305053,-352173525,1959922188,1241530632,-126498050,1426064104,2059608481,-888569206,960400812,1929147624,1215450021,1573104164,309669942,1083199608,-44373951,21332595,233568336,168972290,1191474368,737536833,1141311225,633486173,886810928,1962963488,1972773412,-1475934963,608371696,1312294527,-1727629917,1424690288,640054676,713728651,734328335,786727099,673974923,39125798,-970271013,1304106,1074539017,1380985204,-1070450508,377623949,-972714286,-805301754,-125101268,-1476044710,-399767610,-947127117]},{"sector":9,"length":512,"data":[276957576,-1461153770,-1132120836,766689285,348178514,-788499468,285540483,-400657152,9179517,918726911,339805423,2145912134,185401689,2773807,1478820133,1740422437,1511662848,807756645,1963074895,223275548,926744642,-392148469,-1993589987,-1330489928,-2012499456,8061610,-1020452936,-2146745205,1023944962,58064995,95226552,-1874780662,-68425640,1426078281,-1207601912,1095761968,29314881,192594968,1946228000,-180453348,40965574,205302272,389809276,1638925950,-72701908,-1425641296,-1348075032,1704659828,-309327020,-1062005104,-1541984250,391013769,-402410767,192337731,34823170,1007443029,738360333,173490182,-401821694,-888931497,-1890900720,952828196,95327546,-1107284385,159990573,369557438,1231564314,1652356268,-1500532713,-1629963345,-1777252916,1006596841,18056709,184626141,1107296256,1476398081,1929383169,-1761604095,3841,268545536,285327360,302107136,318891008,167772320,754979842,38076823,7405869,19792384,19858075,19923671,19989273,62914627,59769138,1668172055,1701999215,496661603,-2009893125,369757691,6041893,1684084881,1852383353,1948881267,392455581,1126402858,1814897693,335839855,1634231072,1869881372,1712034080,1495796161,1311754816,1428176681,661606510,130435989,1634084210,1768169540,215733607,1542407505,1111691776,2099978777,1383364962,2059408152,543912744,1667330163,1369380709,-748007142,1933645344,43778331]},{"sector":10,"length":512,"data":[540157208,1684302184,-1409651099,470096535,-1317770890,453318930,-1795515275,436543029,-1328362723,656360438,1970239263,356241772,671901026,1784773632,291600001,762212113,454414799,553718751,174941549,822936255,493176166,877289795,539258478,1142166541,541346643,1903453550,1805997426,694599233,503712899,1396856147,-1191150764,1397965168,206456649,640314053,51864207,762196093,-2098626413,1955138061,1975025906,-2126242952,84109571,1729887153,-1588967904,836260929,1749233451,1809547748,1389006536,1879661434,2043908198,1970544916,1893018289,1960618555,755117614,1536567350,1532836481,102985819,375220264,-974364306,790191460,1565918534,1060009938,673775648,1393584721,795439216,2047200944,1993456583,1281570049,1165006268,-347135968,319087962,673071231,624175475,1726222612,828858738,1957014382,-1439873419,76887606,1189746467,205682793,-1166863380,21643404,-584167378,772036227,-1238560188,-1175554701,-1682453129,1695384300,2032072206,1112474861,1413153341,-1868516231,476673998,846493039,980566390,1930591576,1664531456,-1238646155,238974062,-1404413934,985760024,322924810,-1974730731,357900635,232971382,85399191,261604,131328,1900838,1966393,2031969,17965196,27721760,2266145,31850496,33882147,36831268,39321637,15728678,2556523,2622082,1141637782,628277505,-1046469583,1103181349,-2091847431,1732666120,243953525,1807966721]},{"sector":11,"length":512,"data":[611804019,-2017365016,-897817472,750242463,167986512,1846306389,752153700,-369080800,-1761119147,111558400,-895180478,1816948494,1915912480,1953067639,540044847,270665240,1676181892,1098085221,2019801479,-480043688,-1346767451,1445859878,694496364,-49477293,1212366379,1226884676,-1536799662,873844490,1387491956,-1188860295,2202734,-1178049791,1839751268,1983799624,1763399586,-277806492,750213177,1025873154,508040717,1227870429,1651864363,2627629,-2096700187,1868304770,-762748269,1961719909,-890565836,-184187534,1970428475,1031863084,1092773376,788551870,631245014,293235059,-898274716,807619900,988377316,-307897141,-512742840,1465778434,699370340,-882266377,-1184058588,1886040685,1095382132,1183967592,-380369386,1114597930,-770696639,454521446,1634255685,-244928280,1859694402,403250283,269304531,-1015717271,-351631871,96567580,177147907,709175568,734335416,2024765696,616935463,-401026529,118423646,486551553,1140863233,889273088,1711289925,935591937,939622400,973180160,-200369664,1006749400,167888128,839057796,-1305594584,-1736713711,1853396339,-1912081402,3813669,1036092384,370229935,1409944876,269247845,1752482805,1880010768,-1586465778,1868851169,406529361,-1025638362,1915224261,576995066,468130314,1444488113,1819233304,-873108107,627393411,634822440,1998692147,-737828721,-1029608589,-400293344,1751333918,2115054086,500945890,1796400189,870691730]},{"sector":12,"length":512,"data":[275985944,-426299824,-1844374051,285322542,304844847,2122184310,-2061199609,441616419,855781019,-1012397799,242184832,-181124736,633438495,1334323714,1610628376,-2105771639,1138915457,-1871605964,1065472,-318749910,-218086400,-251640576,-8783223,561053711,1023428609,1325418753,1245709569,4915508,4981104,609026476,5143296,5177818,560,36765776,52232273,53870674,55312467,5568624,555484146,-1235122669,1627438752,57162754,1979718682,3005193,-2113644509,612403803,828798323,551983465,-319853114,755027605,682508841,-190560179,1830774421,300229381,-1399389551,1865157616,-757574392,738789880,45091338,874841905,-1325451995,790170376,-1173436106,1411324136,227866707,-1872622514,-1447176864,1210924754,-928049760,184075779,-8037612,543245585,205850740,542577429,1640638177,1081371765,724318404,750264900,1453909163,712795341,1463386965,230817798,1143960439,1750299503,780558693,1835888451,479627249,-132693869,-2113691718,-2101981875,270015744,1502215637,1461188726,-1249254474,-361604247,-617959261,301083284,172008783,-310947217,276674733,1864806476,302175430,-270724294,-1772868031,1365798517,-201249649,-1731749779,-903118048,1394118357,-1117710238,1177683538,1099173983,-97044926,1634867340,1151218019,1752389252,1704182898,990628203,1301749804,1618564687,-937535931,298128970,1869825344,-1649674097,1596817813,1531249975,-1006435514,1982632248]},{"sector":13,"length":512,"data":[487353676,1309791792,1279609028,2022596432,1538159713,-2073008504,481297064,-2075385341,-882220172,-397118145,253352022,-2118604515,1129517937,1229213249,-1927972918,-1626791925,-1805030200,1680324688,1669955955,1768323826,497098872,-464226963,426342310,379040481,-2140739737,1844091339,439352947,99184089,48171867,-2005973975,1870209074,-1297999243,1948153778,-480026128,1136601328,528971265,-2101247710,-1022885884,18220545,327679,142099729,-1922780325,958751785,-1507496446,549552934,136577731,1632636532,553830770,566922761,508936989,-251650810,129694347,-1948611072,35589,1972044381,105745156,-1979157110,2106263893,-401967560,-1393628341,1562314525,10628662,-1274696832,773967202,183639689,378264462,332956162,134223497,-1942794240,-2116998199,1930428666,-1744783096,-1948069002,251284442,-68973801,-351387648,-930328509,-1064511485,12113963,1065691466,106038790,402689215,772254624,924845627,-1274251444,39470408,-385351392,-1202712567,119462037,672565848,-1274182912,-12838606,378343541,818,-1377296626,113653253,-1006695696,-887190482,704975231,117819706,331584320,-889300473,1409355444,-1916600781,-1274132938,-785839545,994439225,207900163,-402422086,155188995,-1959672576,-1556741561,1200227791,-2058813948,-828229952,-753922800,149509,1023791365,443682808,956759590,643973134,238683847,1007157240,692256526,-150061561,638528511,1002181637,-2009724849]},{"sector":14,"length":512,"data":[1463468046,906384016,145495689,1252919307,135333929,1963526320,11667461,1941235880,537246217,82151654,503361001,1186209422,448025954,-1489165011,-988698800,-1828656124,-1998061074,-1274914371,44904,1207482385,-1928991581,-1555038202,9111571,-276694016,-130350848,1287325811,-383840768,354718877,-1954083189,17206907,-1596241072,-922874493,1944520680,-1157340656,13167729,-2090859398,-385856069,-165669515,1006930470,238895106,175435836,-402587974,541856762,484976365,974371333,-1070365059,-1409265584,385876115,-402268952,1005065496,42002436,1057463784,-1088633947,16217583,107969408,-1605371645,-218296848,225836206,-420020136,-352029931,-352246290,-2145251755,1966735741,-2097149381,1194725063,727135743,-150113033,-2082597728,125108990,18546458,-968424624,666501125,1604129792,208864655,-1174154264,684391742,-991362284,236109568,314532679,-754070144,914968490,45092333,1077422516,1946172604,178333188,-1511456966,-359942610,-981248948,297057051,1363225786,1975519751,1988871769,-1294199808,977156867,1176793870,-939427781,1049182274,63222502,-1315633409,-605677303,569096960,-487899133,7651339,113647496,1073876497,-1559985501,-716135054,-1107296156,1180631040,-1172585240,921174486,-351095805,-1802469218,259330556,-1226273909,1096305174,233505571,1363295872,-1173982153,51455458,-1240649643,1169819551,-720451826,-1964166410,-1949564928,-1962986813,1208339998,65271624]},{"sector":15,"length":512,"data":[-2128575551,100860114,-1996028498,-1962407146,-1476300336,855824872,-1928920842,-2096728002,196675782,-216530903,1149965220,-33544928,318826705,-1140472698,1889740295,31461632,95486560,-930420525,-1979703540,354780897,443685600,-755487970,436973828,132123880,-2111306831,-980754221,1107327772,-1031948976,-2147304929,-66931710,856535235,226726107,1547700405,378365617,1253312565,-1032713392,-1141139750,-400490495,510991002,-1171781038,-70314314,37087322,1895936476,378210175,1376257162,-972937240,-1832714145,-264760311,2031388939,67823642,22872011,235865734,214278145,-401739330,1119492709,-1598756862,-1185868028,651231240,553140224,1095698293,1913190787,540836338,-2143158068,1948254844,33075218,62499374,-347143390,1086337782,-1017533911,1944294632,-1601962343,-1023297984,2080452283,-190772490,1930058762,-1593711361,237260802,915082936,82116640,-1156701634,1609040198,1251350549,370480149,-1222028779,504711701,1247025685,1578441749,-1969670891,437594133,-1576768491,74323336,219035595,1992024177,23407361,554967402,554331686,289061742,1879048451,244048946,-828373553,-1948125435,-1940569144,103543287,-1399520141,69469282,73574964,237634649,-2110224341,-402601160,694400507,448478465,-1011604733,1856045256,-1155853000,280498190,95591889,-826585330,1430053,-1437495001,-1173172992,-487129024,-22839296,-617413113,365806004,-1064561294,-670955973,856519951,10495680]}]],[[{"sector":1,"length":512,"data":[529551360,-1593321333,-1161624813,220369936,1435340475,1309147747,-1591016664,-1873410048,1342894612,-1912233698,-1037250856,155844609,1124074270,-494877813,1514193411,41206331,1431838554,1033518416,1405288472,-1971060460,-315440114,-637005053,252307665,1096536971,378090257,1983251572,2028421775,74456580,-401211311,-1813499903,58374905,-1925457176,1584988665,-963937688,-1358886725,-1429088718,-1488769286,-1508884218,1048641163,-401975495,-2781184,188582694,-786437121,352191471,-956888203,219051091,-2130570494,-351272985,-1022949884,1465275008,319211014,906297614,33883421,-1863841723,-350910139,1126542291,1309492311,-2096991946,671106023,-99880808,121382750,-1601151393,856025732,629830143,-502217482,1366580337,-250346858,-205456429,-1954011478,1482229128,-241105300,-1017675579,353552504,-1545482105,-2077328450,408045801,-2025368413,691548702,-1560013818,-133692088,443910457,-1269607856,-1162851579,263458216,95883345,-175346200,168667582,-1527578216,856645864,167772352,1642615466,-1031034096,898325163,-1739110585,257681488,1515916895,2005449048,-52565815,-1656650081,1011304153,-806250359,-1761287435,385233670,1961101861,-2096021504,17706246,237966979,226502144,1532574736,-2037108799,46069483,-1714307328,495403776,1962834408,136330008,1963867710,645988106,160695494,168356612,1174932008,-638823198,1611349635,2129158664,901973774,1966080001,17480203,1963831272,15788291]},{"sector":2,"length":512,"data":[1347588719,-1470967245,-852920312,624492128,-2016414863,48937285,107642888,-1560086855,1364397610,391119747,-1219347431,1336476684,-1559989218,9308044,-1878129568,-1956947708,-38672175,1857958083,-1227463679,1699119433,1871226995,1314017622,216156322,74248321,1847593712,-386784252,-142082646,1888237115,2086096361,309463210,209138956,135593991,-151120920,326437060,134199902,221122503,-1293388090,-1457329155,1259431264,780369701,508253258,216751947,1697122582,201409490,1521001472,-498966951,503759746,12552967,-25785455,-145740924,-1473112452,823560490,137693198,238264320,1345151165,-2146120216,91546941,-117054774,4367413,-34333947,1599628628,1697604958,53238213,587870885,470550281,-399924677,271472160,104546511,-595589710,1482208223,170418729,63093395,2080798797,-459998638,1396097799,912216851,1465599332,-1983716554,1333923711,-1583601656,99541518,-1401256264,-1272439032,542134529,1364381575,-567435433,33428339,1347952208,-466434938,-1174110045,-1686110062,1499003970,-989963681,-656222461,168704601,769728176,-1246201843,585182944,1174536700,787998639,97326730,7864938,-1459173400,101206533,-1676768772,-1768027384,-1325003923,1310958086,1527330822,981764228,1497136137,1210793481,1024022568,346939,-4683260,-1960422401,255469085,50331763,1526727352,-1996419863,1393077046,9262423,145956352,145360630,-1405192928,1912959720,-398901193,846464219]},{"sector":3,"length":512,"data":[379260136,85430305,-1106991384,1091310592,-347202700,1007126552,92280125,17829456,90105923,1353501043,-347926016,-1605349693,509448,43130505,-1922430801,1015043894,1501918255,1948386609,166804999,-1555575338,104460880,-1592691777,-788201152,54739936,-400609832,1407910016,30565945,173366792,454901797,1803797642,1396903820,-1155127127,859796408,-220015962,858456875,721676629,1074334215,889967111,889861460,73203716,-1956946028,-1962106561,-1951358972,-1979145706,-133651426,-1674444605,44631947,-16485120,298455710,-1918297995,1728135797,1343154966,1579156400,-1796669516,-2134484992,1476464738,1438906819,139422033,225050627,-402034803,141754921,-503312920,-101318336,780731883,1566135217,-2105530685,-1845461408,1173809989,832569539,-3610608,645939826,-284516352,145596752,100779563,1817708715,1923975492,-629374941,158581514,170270323,1010795404,133637656,-483592447,769812360,1661272211,-1861571929,817598723,360678369,-2083904422,1694695764,645815041,1476543881,20727778,72714563,1292127233,1012525830,235304194,1340819456,-395049156,-462157764,152176188,1024624788,242549820,742427553,-1943128246,-651481507,175442464,1207314000,-2056946174,-2113329488,1946290952,637710341,223882723,889418768,-960274620,280117510,386351681,1468773304,-1592621884,1610590640,-1081665250,-74913021,11112508,-1153425220,-402549272,1048773133,-97938090,-1693427688,24975443]},{"sector":4,"length":512,"data":[-2032071147,158605333,-2147441131,1691560510,1838544,1634936696,-1023210408,1952601680,138034200,-2146732704,-972739972,658505732,24314566,-487897530,-1188947874,1104185938,45370498,187304818,-2013262872,499908762,-1017226518,7569468,1631325184,2050767218,-551275145,106115563,-1929297833,940127038,1372091413,-1274601902,-1973087420,1706641858,5199412,1482250752,-1912513141,1128465221,-685342676,125831775,1915765339,2000239624,-131060732,-48886560,110042968,-1060080217,-335563772,1410072840,209797374,1448236325,810812082,982786196,83852264,1946689057,1468629517,1858417182,-1266085141,242487316,1095240408,-1319471802,1178216026,470406217,1162236102,242001443,1162364483,956459274,1077390100,-148500620,38223428,-936879584,272966273,630424064,-351449847,525350801,1954743866,-1064259069,1516173444,1448582493,145440395,290966018,539383784,31360512,131712606,1560754607,-1808952092,570447909,719854468,-390591997,41091404,-352172473,-1564465942,1194199204,144719497,5791582,1342825217,92284935,1744653800,512577875,163121464,125845266,455664209,1532576249,893997691,137969896,-2094370303,228262268,498737197,537663451,296419360,1613499819,-796238830,48760395,609545213,-1403758068,-904465176,726788178,-1525761260,162983540,623118926,1324876260,1014560963,1947010372,1009381677,5338122,33692709,-617406862,-1977185984,-1014824099,1211699204,-919352767]},{"sector":5,"length":512,"data":[641927439,-137719750,-1708132126,-969536350,-1591685626,1021295104,154941016,339489396,829697042,-2146667252,145753861,977674441,844149952,1092074505,-769326259,-38073574,122237588,1883840585,839652568,874529033,3050986,990425857,1007318237,-863341265,-336065107,-2143281398,1444851488,-1489075373,1147151858,1381047888,8738135,12115456,-1943941789,131795931,1499094877,1486095647,-1523152440,673089800,135435403,-511506290,1086339600,973632004,-529071804,-336612336,526277624,1878560256,-1674486808,716059,-1869682563,-15966462,1323836532,167895249,-1573359334,100144498,-102194934,-152565492,83562536,-838658840,183541764,350164036,1391529611,70061570,237634607,347079395,1286930197,438357328,-640555005,6037130,1896452352,-1577353028,431275008,-33232094,1656982219,662413824,-1576494942,226693416,-1476175966,71372800,108569153,321731,815337448,1440198123,-636092890,516161449,1577063243,-1929346626,-1190499010,673579136,-1341545230,87696909,1198789805,653326059,83398,864723067,-1915604023,1344676406,-549407992,1039708758,1111818239,171786512,1004670980,1323690752,1372293666,1999242300,-957093042,5063236,538050578,-1991838347,1795221814,-1545855356,-2101738654,199754541,530128878,-223944432,1634553901,1963329684,457508129,645988359,-1610480280,-503083569,1048700405,-1924136314,-1172278008,-1058536378,236193261,1946235399,134676230,-326337557]},{"sector":6,"length":512,"data":[1445619032,2049461142,177497384,848115727,304089965,1286804093,537596471,93471604,113734826,7607620,-277530997,92808943,-1543257348,-1627457301,1499434080,-419187710,386171064,234296808,683374568,27055636,-1324150750,95133697,-1920332254,605106874,-1528197395,-1185677056,705023394,13468065,-1123608971,1025261572,-1548745258,1946093923,1046952459,-1470182170,-1682919983,610279760,155522701,68846181,-628413441,-2103433101,512577320,877021176,197966466,-1141463540,1158509524,1167102881,329449707,-402240987,311828246,155442277,5442317,703773214,-1950092574,1367934799,-918286847,-2096345206,38311161,17106804,-589036346,-1967115436,155665732,1025879357,86548738,84163872,-2073477861,1024881682,-1975709339,1024212528,548026176,855998525,306678697,1948061704,1407317921,-1817096110,511029,222766276,1515975158,-1807695101,-772234385,1526991234,235554563,680069737,174790342,917792707,1399362860,1535754970,160056322,-388287661,46858546,-387014697,1168310567,506262581,-2147472138,-1023987710,-277605888,-1293418074,-269810521,1954550545,-1796883957,329192370,-138377789,973603890,430893354,839260550,1296111249,-1811887106,915218776,-930472444,1622419357,-1337850544,120960035,-1945778831,113443141,-1928329785,507434262,521050504,-1339546188,509006628,-893182271,505683615,1140858531,716635,-843643208,-1728347345,-15760768,-1145632840,271187968,-341536494]},{"sector":7,"length":512,"data":[905270504,1964357273,388507144,1460016897,135659704,2141750056,-248505484,1224737091,67811852,878433512,-302402838,-2135421868,805315654,1152769041,1404454321,28856754,-1690954197,-130686092,-605355520,-13412777,-108792269,-139247612,50772417,419107824,225627084,35056081,331354176,1927574491,-1949922555,814219743,868233988,-1017159973,-2013176178,1443110,1227276428,1963408129,12142362,6533136,-1359807424,-2128212363,1970827069,2105747189,17188624,75744249,1387795774,-919356160,-1941897290,-1595408206,1247000789,-1529499465,-1978269359,-2078928895,-6428459,378341746,-896465862,2013492558,-1509928635,-152546730,-2126464279,635965065,475970048,-1950422550,-715044850,-1332942656,-1273722333,-1374453147,1918513279,1590926172,-1577962813,-1979684029,-1031574872,-1258648830,92809224,1537681776,1888635155,7282601,613083728,1681575166,-1270975487,337754944,-678746185,147146535,-806667522,1948173044,202900169,-1725954618,1330448168,321277182,-346576568,-1308445533,-691599353,478579099,318849794,235825761,282726414,733612307,-275892653,-2147382525,-1158555133,2145911662,-1710819601,178454286,767570899,-1461170139,1492208936,167774370,-1007598568,229686870,969606398,101910654,1160774854,989864286,-166997356,561304960,-2014350360,-866041609,-219479496,851342704,-2065434625,-32136704,-1950131939,-1001116362,71205646,119442077,-1609599907,-284038970,1899300550,-397913462]},{"sector":8,"length":512,"data":[-1021181356,-1122426870,-1825141333,91495940,1544829622,287215058,932163721,520249228,1448220950,13148424,700093470,-1172387810,1990119162,945286848,-1466127424,1343845760,-1554462837,570966019,-13740024,1321265928,-1336387580,218491651,174940183,-227546885,-415064018,-986776625,1380062486,-989127372,189641928,-287828466,-231610368,-114846640,355251403,-788340272,-805134323,-1949431058,716460753,-2129289216,-1962427159,-771444287,1355156192,-523041272,1522665681,1168156562,-1598347696,276102917,11571265,623305652,638536192,94451337,-1557735284,94619808,915088984,132025862,-468500198,28379921,-374308636,-118822142,940041048,234011344,-2076854826,-1276750589,-1106449429,234160768,-1174003480,-338492850,1616101427,-2065148428,-782934779,-475051151,2141531141,-1911262689,858607647,11663294,-1441754564,1376438147,686297484,1183525887,-1425647094,1521199932,-1938882216,1444939386,1575722814,-52012965,27912550,1635138934,-1427600478,-352750075,671732408,1970736503,-1489322434,1677987330,73727684,1678575342,652895291,41486146,749996800,-352151878,1947569199,468445897,909050197,-956137868,-577992186,-1090331132,-1137696570,-387287320,-1539178781,1575324654,168297666,259197527,3743744,-2081649835,641412332,108464147,-384852978,1804270992,889656157,-2113917682,30063289,-1091799064,221323388,-1185416053,-1956988116,1776553690,2080800387,-929624946,-1977489366,242419098]},{"sector":9,"length":512,"data":[1812873331,81147668,42646141,-1677333311,904433594,-27399956,-1098776464,1790905688,-2147453786,-370651121,1476817668,-335656727,-991209469,-1964439548,279450436,1347818101,-1363494144,1592384313,269700224,-1545049088,574917379,1946568251,44374548,448862882,-1986325366,478668822,-1895215836,-1289353465,571892373,-1566629190,-1070390764,637740065,1676174090,313840420,1948964950,121634471,-1920484345,309779878,2113043713,2103665502,2119566118,-1508674556,1149049449,-306576259,159189629,1702250621,-51757546,2130780287,-1207565596,1949969279,-1333671905,91559539,58027560,1882729146,-387398495,1412234545,-1812556967,18904978,218854547,-390761208,994967936,154644715,1837123090,889636613,-1191182323,302227674,-1954434927,2051690620,118308414,-1774450906,-1398077598,708120235,-939372148,1495271043,1143133185,237243905,540180970,1293554631,320607207,1116279582,266863991,-2102381199,1732548806,1936074289,1422583814,338887516,1219696179,-466724315,784386565,-283941760,1090647016,402669642,255262478,1346392846,1983964159,97894305,741544012,-1067493144,-1958892544,544343767,1709708376,-1752212483,-1606136255,1653683317,-2130131834,-276757920,-2490312,-1166707900,48826322,32106197,1059160972,-410114558,481756803,18422784,381290101,-373299199,140675595,1292706490,-397098759,-1198893770,2054178701,528613377,-2091446960,548997319,1591154688,578063190,1593457896,157310299]},{"sector":10,"length":512,"data":[707155124,833227497,-402372097,-1807554186,108004930,-378927570,-569114135,99098249,2005655179,1803554354,1397978602,1542030568,1680320513,1961491688,339733486,1529820898,374281537,184957701,1148585427,1464934822,1748417144,-421744053,2701828,1496479538,2145919979,952202474,-452526592,-1995211259,865018678,1269437365,-960830844,27920441,1159022582,614935072,939015921,840695864,-819529756,1342353669,-259261941,1644185387,643242788,-771028366,336004725,1377202831,2005487962,346062810,4646950,1716525544,-1030727350,-208971290,29609099,-1172327040,-397278630,-396754688,-164370878,573281586,405698350,-464641608,1368124165,2139304266,115042852,114164006,-8787499,1062294358,1506070696,348347995,465371404,1448498005,308829280,537091584,-1040292970,15101160,-1950130176,507184734,108138042,1071169723,-115742464,-1006563143,-619974196,-1957556363,343081936,-702016263,922098667,-1530361131,1779136788,1351052008,-102565996,-475603317,1676441572,-2012838119,1942569254,1492546562,-522603893,-1242014205,197335104,1525132514,-1211956338,100654568,-389858464,108330991,185214381,73635100,-1929048096,398924118,-390826111,1449059705,371215039,-1438645155,514472624,-1951745620,1698574327,-1404696280,-1957758103,345267966,941363677,151078725,1947708000,-118773245,-1012268880,-1125930488,-1941717249,-1425586676,1082202738,125386257,309681210,1158118280,463526953,294418490]},{"sector":11,"length":512,"pattern":0,"data":[1593996295,-2027793578,-1803472734,-452635807,-525072829,-1988590955,956566990,1107264269,1413370945,-2096014712,-970448260,337905158,183173228,1000367952,1357396200,1613136031,-1635841682,1143436120,-8383249,859642229,-1957276915,-15406882,1414502465,1348165348,-534312922,-149540885,-240850853,1895818932,-493808546,-193533852,1230770,302584175,-1720526847,1447633652,1297340247,-20479288,-1674485925,-1957229452,189044892,69694815,276077377,-471013285,1251558599,-2949108,-785898486,170280007,-1220887162,-2146309123,-473230920,322705035,1837131633,-726508826,-28289460,-385400481,-376888488,-1193303708,875630198,221356811,152387961,378080576,222327874,192234116,91465019,864829160,177541552,436941579,222319401,-1054142690,-92024037,657394336,201552446,1566858,1351899330,-32470082,671129274,-1947891949,113466355,-1593369008,-1947698856,402788952,-386069964,-1274872355,1591942460,84367451,-61465636,-1692730354,-65340396,-64983756,-1126761434,926088236,-16656896,67110676,436211456,805315840,1174420224,1543524608,-2013239552,-1644129536,-1275025152,-905920768,-536816384,385936128,406257907,418781388,441063838,685054566,697379142,705898945,832711214,843526713,855651054,873673728,881931348,887633074,296704,536872712,39]},{"sector":12,"length":512,"data":[1493447401,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1767986944,1713402740,1948283503,1965057384,544367987,1663070068,1936682856,1852776549,1718558821,1931501856,1864397925,1751326822,1701013871,168636019,1124076045,1128877896,794501189,1564105539,1768908899,1567843683,1311726368,794501213,1528847699,979063855,1848402781,1528847726,1954047348,218762589,1127153674,1667054171,1667854184,1394635621,1768121712,1936025958,1819042080,1650554735,1797285228,779319653,1717912608,1953264993,544434464,168644185,538988079,538976288,538976288,544162848,544501614,1886611812,544825708,1768908899,544433507,543452769,1952522303,1684956448,543584032,1836020336,1931506800,1852404340,168636007,538989359,538976288,538976288,1701991456,1663071329,1667854184,1701519461,1629516665,1633886323,1931502963,1769172581,1702259060,789187886,1564105556,1852714083,538976288,1634100548,544500853,1768908899,1948280163,543367279,1702127201,1852711026,1667592992,1935961711,1702103565,538997880,538976288,1344282656,1886220146,1953702004,1735289202,544175136,1886611812,226058604,1158286602]},{"sector":13,"length":512,"pattern":0,"data":[1380930130,1163281740,1936269388,1952805664,544175136,1936090735,1864397925,1701519462,1937055865,1881174629,1936942450,1763734373,1751326830,1701013871,168636019,1224739341,1818326638,1931502697,1668573559,1852776552,1836016416,1684955501,1852402720,1159736933,1667592312,543450484,1836216166,537529658,2105376,1229932611,540689731,1635151465,543451500,1768908899,1931502947,1668573559,2037588072,2019652718,2017796142,1952671088,1713398885,980251247,1531129632,1751342394,1701013871,658803,1229932611,540689731,1868787273,1667592818,1769218164,1970234733,2037588084,2019652718,1159733294,1667592312,543450484,1836216166,744707104,1864396398,978591858,1852714083,1124076045,1128877896,1411398213,1868918121,1679848565,1969317477,1847620716,1763734639,1886593134,1718182757,543450473,544370472,1634100580,695495797,1869112096,1936024425,658734,1229932611,540689731,2037149295,1701736224,1869770784,544501869,1769108595,1629513582,2003790956,539911269,1701869637,1684370531,1919895072,168639085,538976288,1330135808,977617737,1902473760,1701996917,1397563507,1397703725,1919252000,1852795251,808334368,544370464,1702125932,168636018,16777216]},{"sector":14,"length":512,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,28376064,567095476,192873276,-402359877,-5242281,100814569,-1151008072,96075775,248744704,-855298113,1036273441,-1206023386,-1020591872,-2096811101,1049166535,109839663,-1106836175,1017905281,-385649395,792461624,540819828,154988660,-1346376588,4030468,574365813,582091893,800195563,1006930602,986936333,-1442548542,1022552902,1187476527,1018938603,31582212,-402538565,-5242405,-1409166615,1006758376,1009022015,1010267203,1013806158,1014068308,-385649325,1069220048,28698627,-402538565,-5242449,-1157519639,-1528299131,29342465,-1157521688,-1729625610,-369119231,62849423,1006930433,1174631738,540804234,154931828,222039668,792463988,1185547892,-353696630,92799152,17039233,1105789812,57981951,-1342087448,22407679,78317254,-13702912,977011850,-1975123083,1947024388,1949252686,1948269642,1946762310,78553666,1006930502,1178105132,809239690,960246130,-528274057,78488079,1006930502,-385649872,960298736,-370605194,78487806,-167769414,-2145613086,-1023275037,1174711714,-1140927511,-253230152,-369119232,113639655,-385809236,1048641216,1946223788,78553115,-1576997400,62784686,3964929,76155508,-2013209112,-236239356,-1191115841,-1365245824,1957622276,66829067,-1342132504,10873343,-402346053,1048576163,1963001003]},{"sector":15,"length":512,"pattern":0,"data":[17022761,1538392756,45359565,567088522,4030535,45353076,567094450,45411563,567106994,1068630708,1048584653,1946158253,-852708307,-1439266783,-854871036,31490849,1962985603,-852708327,-1439287263,-1997900796,-33248714,1963240718,78553312,146015467,62857677,-1405190143,57934084,-2147465752,91488317,-351636306,-1308445450,-350106361,-1979534115,-1272853040,-854740478,-1308445663,-2128491254,-1962867729,-850611001,1381453857,-13434188,-92270198,-855280640,-185907423,-1017618598,1007048531,1008431713,738490234,1007938336,-1005620608,-1962594498,738144984,637874974,1594294666,50011]}],[{"sector":1,"length":512,"pattern":0,"data":[18635341,26,11796512,53411839,128,50069520,30,1]},{"sector":2,"length":512,"data":[0,0,0,0,-1192457387,-1209532380,-1202301164,-397405679,-998038104,-314128894,-330906064,-330920704,-330920624,617146448,-2147171197,1912990846,108461845,-402360577,-998047377,1958742788,-373282013,129499485,-555200512,46433037,98580223,1342521528,-2095596568,565707972,20965632,1156400838,15484614,15615687,-330920704,-330920624,611641424,-167459709,1954607686,-1878604281,99287053,227542726,228112385,227981392,94824528,-1559968637,-1073017452,129506933,2129154048,46433037,94385919,1342522552,-2095621144,28837060,14674176,116147911,-330920521,-330920624,3127376,588965968,-1962490749,-1834750394,-62470387,1988820992,-941174276,56386,-2080618753,2080963710,-599355923,71732560,108461904,-2096658200,1183385284,1958743034,81167,28867445,-1377284096,46433042,-2066689,787013238,79987469,16533191,-58815744,1938548689,1962281948,1541953031,46433056,-2080618753,2080963710,-1003028508,88651781,118667344,377808976,-1207516029,-1924136958,-397345210,-998044892,-28931580,-153580648,34128263,539755636,1183450091,-28931842,74733884,-1049276868,17057479,-25264128,-385649319,-1070858425,304801872,1577239683,1575324511,-326412861,-402652488,-11136242,1182991438,2122514950,913571844,-1962516853,792494135,2088823157,-478855423,16664263,-27358464,-1207966767,-357038648,837308421,79987478,-2080487681,2081160830]},{"sector":3,"length":512,"data":[112868,-1070923029,1575324510,-326412861,-402645832,1448547002,16533191,-330905856,1187446785,721420776,-129594944,-637303,-16401354,922682998,1996424634,-1204355324,99530757,366930000,-1928543101,-11472826,669516918,79987459,292929547,1357530765,-402229505,-998046954,1958742788,-260636913,-2094824472,45613764,49998080,88882819,-11635456,-135730570,46433057,-1947175169,-386233360,-998039062,1975925506,1960262404,505904,194242640,-16595837,-1207583178,-397408774,-998042256,-260636924,-2094843928,1996423876,590276842,-1207778173,-1511456752,74907394,1358055053,227817215,-1774780642,-260636915,-2096945432,-1073017660,1996430709,-297366266,-1808335024,922689037,1996426648,50981098,185386115,-15174464,-437718922,46433058,-387287297,-998038820,243714,-956148759,65094,-1995598175,-1734215098,-196703987,89407107,-2096466688,347198,-1259797643,-28931327,1006520063,58126918,-1962823191,1178201670,-385648898,2122514854,57805564,-1962828311,126547038,-1947842936,126548574,-1964751224,1178134086,-2092337948,348734,1183455348,-1964758300,-315955634,-397360853,-998039002,2112770,1586178676,705137396,922702052,1586169264,1342671610,95303423,-1280257,-1207587786,-397408938,-998042524,-62456050,-2131075445,359991871,-2081667329,347198,1285622644,-330942203,1575551862,-195130623,1963605888,-398000363,88882819,-1593084928,1178142028,-385648920]},{"sector":4,"length":512,"data":[1183514944,-28952078,1183516789,-28952082,1183518834,-28952078,1183524726,-28952082,129507189,317214720,46433034,1223444107,-432603312,334424069,-16464765,32111686,-297366783,1979598393,-230257912,1929266745,-297366768,1996375609,-230257891,1979598393,505877,164882512,-1962752893,1346955334,99104511,1191165931,-196673542,-2080454935,1930099838,-195130497,1183319946,-94467100,1183319946,-465138970,1961248312,1379828563,410255365,719734410,-464614684,-1054085846,554231888,1023591555,880017440,-1963696501,1357130247,95434495,-1963303285,922701831,1183516078,64105470,1444148806,-11513096,-1207588298,-397408906,-998042820,-62456048,-112897,1191180870,-230257676,1946043961,-8656637,738084491,-163184174,-2080877039,1980365950,505882,153086032,-16595837,-1207574986,-397408770,-998042884,-1592530172,1178144148,-385649166,1178205591,-385649170,1996488079,548333808,-16595837,-1511462282,46433056,16547459,922686069,79168926,-1041739770,79987474,183222315,1342572728,-2095926296,1599996612,-1017256565,-1192457387,1273495568,-1841397745,527695885,133187271,227713463,1183432746,-263811598,-263811760,3127376,509274192,-16333693,-1070922122,74907472,-2095013400,1183385284,-1841397506,494141453,133187271,227713463,-1913502071,-1924075450,-1202655162,-397410257,-998040028,-25263354,-1205832704,-397410297,-998045619,74907394,94516991,1342573496,-2095962136]},{"sector":5,"length":512,"data":[45614788,721611520,1575324608,-326412861,-1142374349,209125134,-16091393,1996425334,74907398,-2095035928,-1073018172,129507444,115888128,46433032,-15829249,-1207589834,-397408751,-998043168,243718,-1070923029,-1957313699,178412,1443788264,1627276999,-2096370710,1946222206,-26312443,1996433168,456452350,-1962752893,126420062,-478887925,-1962516853,-388891066,50624139,-1962440444,-388891066,1575324510,-326412861,-402650952,1586171438,-2012771836,792524870,758916724,129507956,-2098704384,46433031,94779135,1342576568,-2096013336,79168708,166219776,46433037,-1996208501,1586231878,21465850,-153580648,34128263,1586170996,21465850,2108824,1586169835,21465850,4275608,-1394015371,4406528,2095645557,4472065,1279080308,-385649408,1312620920,-385649408,129499345,317214720,46433031,-362753,-1207573450,-397408730,-998043412,309254,211216464,-352140157,1309067083,-2097151739,348222,113706612,1360,1342539960,1342535352,-2095297048,1723335876,1454919685,1072189445,79987484,1342203064,1342535352,-2096876568,1689781444,1454919680,635981829,79987460,49956483,-1963303285,-129595385,58011452,1023357929,-385649619,703135981,1342621695,-2097151739,347710,113706612,1358,1342539960,1342535352,-2095323672,1723335876,1454919685,-672641019,79987483,1342202808,1342535352,-2096903192,1673004228,-1953043712,2139159134,410270978,1342179256]},{"sector":6,"length":512,"data":[-2096744216,922682052,465044928,367546374,-8525552,100288139,1183383555,-60912644,1183319946,1958742782,2083535892,2117680132,-25264068,-2147060689,1965948542,-62485749,1183402056,-11736582,1342179256,-2096763672,1996423876,-1472790780,102742021,264693840,-1207516029,-397410299,-998044816,702466,88876791,-1946394997,-1744336184,808304899,88908544,-335788289,1376176020,-385875707,113770242,66900,-1946224151,1438866917,213445771,204007424,1586189911,138380038,129506942,-2098704384,46433029,96614143,1342582200,-2096144408,314049732,46196992,1183432747,-62486022,-955954013,128582,1586188779,-1948003850,411763830,1946173312,-62456001,50101891,129507966,988303360,46433029,94779135,1342583224,-2096162840,79168708,-1041739776,46433034,-772383093,74877923,1586167947,-1948003844,8980598,-1946794241,1183516254,2114402806,-774337728,74877923,126490763,1022641800,1006924847,-7375571,1586231878,-1948003850,9110646,-772114805,140413926,-1962655607,-472779170,-16484725,-48109520,-352140157,-62485581,-163149504,1371019243,1586188288,-1948003850,822020214,-2096953368,1191118020,-159480842,-1957265662,-472779170,95467519,1342584248,1342640824,-2096219672,1354237636,-404205568,46433047,-772383093,141986787,1586167945,-1948003850,948111478,-1196722944,-397410297,-998046631,-1607008510,104380421,238479440,-1207647101,-1746337791,-163133695,-2048327679]},{"sector":7,"length":512,"data":[-129594112,-161576112,2123097041,-399376632,-998040528,1975520004,-129567126,-1956350960,-472779170,-1962377589,-1175955919,46433049,1082841227,-28931841,74788668,1560168134,1560182400,1988826996,65458678,889129078,-2097043736,76088004,-351911752,-160003307,1979967185,-399180024,-998047345,-1207662334,-1957689787,-472779170,-16220533,418703409,-16464765,2122577478,780075766,-772383093,142511075,-35114497,46433024,58048523,-1946198295,-422447498,-16222717,21620788,-1996307325,104642564,2122561771,58458876,-2097110551,1946221182,10021123,1090143883,-163149504,-1191819521,-397410294,-998041910,-161576190,1988879313,-1962899192,-472779170,-2096597365,343212088,1342179256,-2096939800,922682052,1236796832,-18814714,95827711,1342590392,1342640824,-2096310808,196609732,1586188288,-1948003850,838797438,-2097057816,1988822212,65458678,478873718,1946173312,-96010485,1357395199,46433275,100302467,1586172541,-1948003850,411764854,1946173312,-9377533,89013891,-2094828288,348222,1488460917,1991790592,971526149,79987456,1342199992,1342527160,-2097140760,-1070922556,-443850914,-1957313699,-390056980,1586170162,25133060,-2146732742,1962934911,112645,-1070923029,-1957313699,178412,-1207365144,-11534273,2145911926,79987481,201213577,-1962445632,105286360,565708680,1996443648,426043396,-1996176253,-1072955834,-661977228,-2012854646,1575324423,-326412861,-402652488]},{"sector":8,"length":512,"data":[1996425422,400484356,84067459,-397410299,-998042218,-28931838,1342469887,-1961388568,-443810234,-1957313699,440556,-16211480,-1310194570,46433047,1208239619,-939637111,129606,1325336299,-96010242,83525251,1586169983,775913726,1555623029,1996443648,420407300,-1996176253,-1072956346,800591989,1996443648,419096580,-1996176253,1586232390,775913726,2122519157,125042940,1178190731,-1207601156,48955393,-443826133,-1957313699,1226988,1443375592,227556992,-969247744,-1928597690,-1924075962,-397349306,-998041534,-293699580,-1205701376,-397410297,-998047379,-499712254,105953285,189458512,-1207647101,-397410270,-998045964,105286914,6219856,-956119933,219216966,219168384,-1205701350,-397410297,-998047435,-499712254,106215429,185788496,-1207647101,-397410270,-998046020,-28915966,334168064,-16490869,1988822086,-62455812,126354570,-1946269953,1178142278,-1947894530,130417758,-443851264,-1957313699,309484,1443330536,-1108806101,-28932096,227556992,1007318016,-402230006,1183318188,-25263874,187397384,-1977909514,1352203846,-2097104664,-1202847036,-397410272,-998047571,571394,129500139,-1628942336,46433024,2122369515,561319422,-1728166262,9168976,-2147302269,888894,1575486324,702464,7858256,-352140157,-25264057,-1205766886,-397410297,-998047643,-499712254,106477573,172157008,-1207647101,-397410270,-1377106452,-1962647925,-969193465,1183489150,-397371138]},{"sector":9,"length":512,"data":[-998047687,-28931582,219186312,-10753722,-1996202357,-443851209,-1957313699,964844,-972640792,-1928793274,-1924074938,-397348282,1183454926,-1947981070,1438866917,247000203,109897728,1089685190,49563335,-163133696,1183645697,-129595132,1358055053,1358055053,-1961452056,1438866917,582544523,107014145,-402360577,-998041816,108461826,-2095636504,1996423876,814124292,669536511,79987477,-1928956161,1358880390,-2095769112,-2037578556,-397344976,-998047477,-2109306622,-18970995,16640080,-1996307325,1996456006,814124418,1726501119,79987457,-1920960769,1358880390,-2097063704,-2037578556,-1924071714,-397365178,-998042414,-2075751164,112720,814124368,451432703,113541911,510967819,1342179256,-2080425752,1996423876,-1573454076,106805253,152234064,-385432445,1183645843,-672640848,46433024,-13728119,1352812173,-394103041,-998042494,784237316,1349779711,-8358145,1005093494,79987457,578076683,1342179256,-2080446232,922682052,1996424646,814124294,1673023743,-1108848634,147096328,-2037575445,-1924071714,1358901382,-2081254680,1183646916,-2037559120,-397345058,233509930,-18970995,814124368,1961382143,79987698,1350846093,-2095685144,-1073020220,2078868341,1575324671,-326412861,-402651464,1996424470,338094084,-1996307325,1174666822,1183401988,-1961366532,126549086,1023035016,1008039004,1007776826,-15895505,1183579214,-28377090,-545931253,1090274955,-1017256565,871140181,80799936]},{"sector":10,"length":512,"data":[1342193592,-402360577,-998042306,1975520004,2799633,74907472,-2095763992,-1073019708,28837236,721611520,1438866880,45673611,77391872,1342189240,-402229505,-998042358,1975520004,2799671,108461904,-2095777304,1183384772,1958743038,74907427,-2095872024,1295844036,-1961527552,1204223582,1586179585,38258430,-27358422,214982,-1017256565,-1192457387,1206386708,1996445188,324462596,50513027,1183384646,108462068,-2095888408,1174602436,-297367290,1342189240,-402360577,-998042432,-230258428,108380171,-1980479861,783872582,1996443648,346482694,-1996176253,-1072960442,1183516277,-330921490,1342188216,-402229505,-998042526,-263812860,58048523,-1962893591,1178201158,1347646448,1358579341,-2095926808,1183515844,105262064,-1996208637,283899974,-1947181429,76216438,1191118728,-263782408,972179083,-395118522,-957325685,1183514631,-330945552,-1947318783,1183445062,-96039444,108461904,-2095961624,716702916,1996443648,334555142,-1996176253,-1072959418,1177235316,-230292500,-336050551,-262239472,-1963428213,-16283644,1191180358,-196703248,1928873529,-262239256,-1962932282,1183445062,105286638,1183531243,-263833108,1183520371,105262064,-1996208637,1183578182,-1206588430,1491861503,737166987,1174662214,-129594894,972310155,-411830202,-1947181429,76216438,1183516552,1183400176,4176118,-159973552,-2095880728,1183384772,1975520240,3061929,108461904,-2095875096,1183384772,-296842256]},{"sector":11,"length":512,"data":[1975597897,-958887163,-1070923769,1575324510,-390057021,922682042,-1880617578,46433039,817139907,37495245,-1070398093,-1077194746,915079787,-148176894,268500609,12452722,-678495728,228508801,370177019,39512095,-397361101,-4717333,-1960719028,-754667066,-1556723488,2059077240,395064838,922674307,-1207670903,911278078,-150313079,-1992929072,-1992948121,-1992947609,50754598,37128695,734235648,-1260652578,908184906,112467596,-1074002154,-1598485818,869214989,380302272,-1005679841,-16588023,64809169,855788520,4778221,922689302,922683093,922683091,1005061841,32002285,-1590770943,-661777655,905970616,108398279,-397405222,1357382076,1048655364,-690615866,1347946357,-904462538,16758793,1981218640,158470,-852164424,-1608611551,-1576629242,-1205924346,-625335040,371313938,-700546273,913571849,165154444,165678732,112461454,741772070,-637090560,869960713,520042203,91425238,2045320982,113587713,-628356642,905970619,165027583,109977366,-1960442188,-486527986,868322878,1031808767,-1187744768,-1833041907,1957098246,2147465483,-1359822797,-437575307,520560134,-1111492725,-1408978682,225591596,-1399660334,91373868,-341130742,-1155590418,-1484783612,-1195440451,567100416,-1024062862,-2147126144,1074183567,-1092126389,-490796574,13101065,-1089871170,-1343747614,-1957313792,-339135508,-326413030,-352321095,-326413038,12146518,1426647809,1465314443,1359020473,511035658]},{"sector":12,"length":512,"data":[-1089812802,2145913606,165854720,-402004801,1048641654,-690615866,385811573,-457307700,165986057,-1107271192,-457242140,6809609,184595944,1477539008,1968235530,75399947,-955943680,16712774,1476399336,125166602,-1274788213,1596050764,-1950130850,-485894130,178951,165027583,-1609120482,620804102,-2145443379,450110,-1608643212,382011103,632555232,-1021369907,175372091,227233615,-771754269,1002697451,-2096204809,92996847,1946305803,-350355470,-1957313554,16562412,42854480,115621507,-16485376,-1207507946,-397410049,-443874693,45663069,-31790848,735873881,990540504,1913055262,-1864956,-1070378527,16647145,-1175047338,-466485182,-533549828,-192873502,-401771435,28901292,1021857792,112642,110084958,817104618,-1230822963,113158,695468604,112461454,738627110,-653882368,-1715457274,864026809,-1364266241,1195899765,114769545,-218103879,-1949173842,114641,-1912569410,-1408846818,-76275652,-143390404,1869876540,1802813450,1017925191,1021867040,1021604873,173831181,1012430016,1009021986,1107522652,-919345941,1547480129,574421620,-788331404,-1047800853,-787224111,-898301528,-1404173845,729025852,661962762,-1166794180,57957436,871164738,1017921993,1023046748,50623522,-1948521519,334090689,1963043025,379055058,-784430817,1205273350,-687609903,-18710462,-997465557,-1962486877,385549272,1065956871,918897475,-1431566633,-92946422,-1273065930,8502790]},{"sector":13,"length":512,"data":[-1070398485,540847274,154991476,222099316,-1073054604,-1992918924,1313030975,1948269740,1946762465,1947024605,1958742626,1948400734,1952201767,-454317565,-1404974797,-93037508,108274236,-1426891600,1555091947,-1426855471,581961331,1321593770,1947024556,1958742574,1948400682,1952201911,-320099837,-1404974797,-93037508,108274236,-1426891600,1555093995,-1426855471,581998195,869133226,521579200,1991,116008703,518818645,112461454,740199206,868453888,871773120,-17921,242539275,4096038,108265472,-1371099406,-947127691,1191060544,-422445429,-402650695,-1957691228,10414278,101111203,-1960900834,869829583,-481730570,906267430,110233147,1448153205,110280535,-218102087,1499357095,-1993996940,-1404878017,1975519914,651879162,1562316681,-1957363517,509040364,72780551,-1391858498,276087355,208967232,-1178586217,-1359806465,-336857205,-1956749418,46292453,-326413056,74907479,201313256,-1843366720,-1070335349,-218103879,1238497198,-2130705733,-704002498,-16484906,-1274427370,1596050752,-1034033781,106102786,67156305,145493639,602427473,110058250,-1940322132,1958743002,-1017444605,1374273931,359792891,-443826125,-126631075,1763408,-1947979176,1942183397,976903,-1711276104,-1017256565,32039986,-1180515584,1977879046,-1237417950,208798470,208871996,74588220,116065712,41292604,-323284048,-1550264570,-1966930258,16247748,-2081649835,1448543468,1443133067,-2097052184]},{"sector":14,"length":512,"data":[-125107516,1342719629,1443264255,-2096956952,1183385284,-396929284,-998047269,-62485756,-443850914,-1957313699,82609132,180246103,1340626439,46433025,1183709323,1996443654,118142980,46196816,-1996045181,179895366,-396931065,-998047329,-62485756,-443850914,-1957313699,-1957210388,1149896310,1954719750,1967171688,38061924,27787264,279448436,1284200308,604801284,604114174,105154799,-276693365,-947845374,-617412702,-1475912566,-1471384312,-165776124,1131741445,118161025,-25097100,108267282,119733889,-2013911947,1950353085,112925,75402577,-2014817449,113541895,-352321095,-18370,537283712,1448303851,1526750184,105182811,-1948879864,72649484,-1992111573,39160596,39094602,1364271331,1392801023,-2096673304,-1957099836,1451951228,991266820,868120001,71731904,-1070392085,113084406,-1176210400,1347485698,-1444392112,147096326,-930365389,1583337963,-1957313699,1988843244,33601540,140044368,-2116121767,-2130246933,185049795,-2146732864,-955775412,33555015,1283460331,1204225030,-1929379582,76087623,-956021623,580,12803422,1458342741,74877783,-2130164549,1946618622,138853138,118685313,1220217204,587104520,-1958185721,49250814,-1563983609,105182727,-164072180,863305989,-1073018997,1149836148,-956004092,33555012,148935,105676802,285591042,-352321096,12079892,-1008185342,190536455,-1996196672,869526279,1566465984,-326412861,1988843350,-2114024698]},{"sector":15,"length":512,"data":[-2130246929,-167271737,594808837,1552603955,-1115163129,393494534,1632342,75400024,856454144,-1996126016,76087877,1594115209,12803422,-2081649835,1448542956,2117730091,722040068,1709723840,-1873417472,-1979418997,-930412988,37487396,-1040827787,-1962052344,48988638,-1568147961,678691079,1143669899,-28931836,478068747,74776400,705121418,-739749395,113541893,1962821177,105676807,-16608,-1996209013,38061828,-947191808,-443850914,28885853,32002048,-1957313792,49054700,46028375,-1979766009,149683838,-112953,147227647,138556985,1156977778,-244022522,-10688426,1073923203,-347610508,2122551524,74776836,65783691,1593722507,1575324511,-1879047486,459873118,464591741,467999709,473963534,-1192457387,-1075314319,861361913,-129594944,-1946466680,-1985214858,1183319670,1958742782,-125926650,-1962509056,-1561724858,139115268,1480335404,618071415,-1341986033,-771510016,-79297824,-759038249,-79263512,-774337640,-1476448541,1451891448,113150,-352050200,-1983892558,1183445062,-297367050,1224492681,-336312695,-28931426,108342588,83644032,725389803,1317013109,-2014641668,125116476,50089600,1023376617,-2146994909,-377422770,1317076849,1793657084,-28407041,1965750656,56027151,393854987,1317066999,267060476,842066304,-163148819,-150992197,-1983839261,1055520326,-196687873,921239552,-28407041,1965750656,52619276,343523339,-335544392,820609039,1183575346]}]],[[{"sector":1,"length":512,"data":[703476,-1056709641,-369867127,1183514381,1970027774,-61964282,1008921360,-2147060410,-350159794,1968061464,-45187066,1007610640,-2147060404,-351994546,-45187068,-19142392,1023297162,-385649308,1765540238,-2014772363,1970617345,25487619,58021948,1006732265,-385649288,1866203522,-1662450827,1952660481,1953709082,1953381415,1953512529,1950694496,1950825479,12314883,-402606615,-1098055036,118947471,28921770,32237824,184715240,-1944947201,1975520192,-1090052596,243992739,-756479831,1317754625,839377908,1974399680,727273217,-372275207,1508377021,-129594622,-62458197,855864336,1055501248,-62458114,-402295504,971702828,-167628824,1964571974,-12138960,1095943,861013782,-1749119534,311038,-1191010328,-1098055664,861470354,310994,-972910616,989762438,-352319047,-12138984,1095943,-768407786,-23937395,-402651970,79233648,-1883337472,21490174,-2131867905,-1975452594,537722438,-2081387624,2130769022,-955812845,455750,1732053739,-955943680,128070,-24134003,-1149185,1465316470,-167217409,1946484038,-1206452470,138838792,-16192758,-2096583146,-2096625594,1190529732,242516220,16023171,-11073419,-2096581610,-24968508,-149981849,8453190,-11073419,-2096582634,118883012,759005222,-2142829195,-1191051954,-1336410113,1336865280,-2013713575,11528655,1090276992,184174278,1187395051,82511871,671041222,-2130950410,1187451252,-973077776,-1305415098,-11140527]},{"sector":2,"length":512,"data":[-957131128,-351208890,-62458354,-2147191680,-972882610,-167183802,1947270214,16443397,-303558933,-62458368,-1727826880,-768408853,1090275062,-771027084,1317014397,-654900739,-150941053,-193035302,-955810560,128070,1719665899,-661915652,91609611,15746759,-344027904,1317668630,-1947389190,904459382,-45681151,-485592062,1031808518,1325823024,805684774,-167711935,1950415942,-45681103,-972327935,-953290170,127046,1190535403,192152060,737298118,32523975,-166728960,1946352710,-230242807,-263796960,1183514625,734079990,41807942,1460060211,-62458287,-1962445556,-400510264,374341808,-226587385,-386904437,-162004858,1946745926,-62458355,-1962445564,-399461688,1599668368,1810386951,1190549504,125043964,548587659,-385844248,1988885513,1988734216,1988870920,-796152568,1988727469,1190576904,141828348,-1895830552,-1007121470,-1946166296,1975520248,-1010790909,-1732049122,73304919,2013417471,-12612854,856000519,113467328,1347637841,-2080832536,1499071684,-49913,-370415243,-141878301,1475890689,-1406730445,201312488,200794872,91512831,-506169,434357247,1475890689,-1031078093,201305320,200794872,91512831,-506169,1476248575,2146831251,1977289482,1976699654,-1843729662,-235417037,-1829636205,805622663,58079548,-1426110974,-347159925,-819242536,1606679623,1575324510,-1957363517,82609132,990142091,1913043742,151042053,1190603499,1954545672,176063304,857371648]},{"sector":3,"length":512,"data":[-1194226743,567099905,1190611826,1962934794,105251598,2030589459,369145896,-1992889351,1183448662,-1194226692,567099906,319178243,226035798,-1946268021,12123222,-350106302,106335192,-1979167093,1119095366,91365837,113092480,-145233411,-2081649835,1586170092,-1155646716,-1207471610,-369555200,1048704833,-690615866,385811573,-2013918776,1948255933,1107474443,-779368141,-546168371,113084406,-1955695488,119408214,1183432755,-62486018,-1957275652,-1980593158,1317795942,-1338449144,1974399498,14608458,1979754557,49054534,12246155,36191490,-2135293069,-1948112128,385518548,139365127,1946827948,1962621708,-186471911,-352312600,990752874,-402426373,-1331036137,-62456054,216589291,1591929600,-1201738913,-941031428,1364414707,-903098485,-1957621021,1085539422,1918443981,-28966643,108513339,-1957143719,-2086681606,2122516676,527761662,-1274776674,-165745911,1074183559,1586170740,440369158,-336067723,12122380,-1962480868,1177288262,-127497220,1323917150,139365366,91605259,1122615691,106335222,567099572,162792563,-1072962325,-2013863819,1950353085,-2133161206,58006079,-103814152,-350486344,-1588002615,-1002764568,-1003813261,-503326473,-85213133,9961,489,1458342741,-1107009909,1547241082,1259172614,17793099,1980259385,140282115,1575324510,-326412861,1317754710,-386301180,2059080311,1501190,-1914171533,-402296320,91422732,-342245325,1566465792,-2143223613,-61604127]},{"sector":4,"length":512,"data":[-1962379381,-13432225,-1014291477,1963042907,2005619522,140479238,913628731,-335596725,1418563596,1943223294,1928332257,27831587,-24383372,1942043464,1928332067,-1378841837,-562822744,33931779,-1980265728,-454295996,-1956921205,1200162375,434895112,-28538533,-117241484,-1991720661,66661125,142576121,-628308341,1464976376,16926710,-756522124,-1946252544,1946265604,1237854979,2005614913,1962281732,1942881100,-1161809143,820248560,118898667,145531174,1948254269,-2147436010,108187707,-126489903,-92069141,-786599416,1220709346,-1056714613,-1070398861,-1037839625,3074130,-2096270502,91549946,-352317256,468449762,1462489227,71796996,-1962377335,-1991636361,-234667500,-129849,1594521481,-796146855,67258358,-1958080652,994968695,956658390,913571415,-1940827326,-1312387362,1978192644,268482563,67258358,-972879244,112467595,-1014054101,1253365899,1532568013,-1031073678,67258358,-1991637900,-336003497,1472461057,990410635,58002039,-1392085109,1962933821,620661512,-336591874,-1957736462,12804087,-1947432107,-1931572265,-1950314792,-1070398338,-218103879,-9073234,-1190756725,-1359806465,-114568713,1183579783,29816580,-1543343104,-202780343,-204926043,-1946973276,12803578,-1947432107,-1948349481,-24443274,-1064380276,-4603853,-139529473,75402193,27838347,1235485300,-1510741551,-1527527149,-91491445,-1957313699,-1932030996,-1950314792,-1070398338,-218103879,1238497198,1576700817]},{"sector":5,"length":512,"data":[-1957363517,-2091428116,1187384044,1183567350,-146372604,175383868,108275260,-872921402,1187384555,1187433466,1187398905,1452033272,-163148300,-1947056503,92997246,-1962779253,1435173965,141921030,1426750859,1576165119,2123061244,-1996125944,1300824669,106268932,-1895271031,74582597,149681715,-1091351064,92995585,-2096335479,1583286980,-1017256565,-2081649835,-1957295892,-167050122,909706876,209651387,112068295,-4718583,1542167039,1342177720,1347469355,-80549802,-1995914109,1451882566,-49670,-801436555,1183385717,-28931588,45625323,-1070903296,-396996528,-997983476,-62486264,1006524041,91617350,1962563131,1354771216,-362753,-396953482,-997983508,-62485752,1593726603,-1017256565,1458342741,75402071,1569392011,72190722,-1962519157,2106263669,1461832970,-1996063093,39684357,-1996206711,1971914325,172330760,-164428686,-2081945365,114418,1971914123,-1956749556,12803557,1475119957,503611019,870288135,-17984,-146690318,105286361,-1359807605,1946499151,-1946209534,-443850809,-1957313699,119429100,855932555,-17984,-146690318,1183469529,-1359807226,1946499143,-339725564,-54031614,1575324511,-1957363517,73305068,200004491,440164652,1090782323,-1975318648,1975519751,-1017277713,-1947432107,865666118,1573006274,-1957326653,-18196,-1957362197,-1950338068,-1038185528,117145865,-2096204789,34193926,-1996208501,855827207,1575324608,-1957363517,73305068,567099060]},{"sector":6,"length":512,"data":[15835113,518818645,1451970480,1426713348,-1340150645,139889486,567095220,567089844,108351036,-1962649973,-527825330,-1622138419,-1899852720,-1261204518,1478610202,-383821666,-1957301920,72780780,-851246920,-1962577375,260638302,15813609,-1947432107,1183515734,-851594234,-1962577375,126421086,15807465,-1259566251,1426451263,1085598859,-1962647925,1048644174,-690615866,385811573,-987887160,567084630,-1962577377,126422110,15795177,619,0,0,0,0,0,1377850189,1412263541,543518057,1919052108,544830049,1866670125,1769109872,544499815,539583272,809056561,1766662188,1936683619,544499311,1886547779,1766195224,544433516,1886220131,543519329,674639,1830842190,1919905125,1986076793,1634494817,174419042,1851867904,1713402919,795111017,1852141679,1818846752,538983013,1851867904,1914729511,543449445,1701603686,2105402,543449410,1835888483,543452769,1701734764,1853453088,175661428,1684095488,1836412448,1667854949,1735549216,1852140917,540680308,1836008192,1701994864,1920099616,1629516399,1179590772,1413829446,1866661920,1918988397,1919230053,544370546,1277195361,541412937,1818846720,1025519973,1768292384,540173676,1308631101,543518049,1713399407,1953722985,1818846752,1869881445,1836016416,1701994864,1308631098,543518049,1931503215,1852793701,1768300644,1948280172,1868767343,1918988397,2112101,1769238607,975203951]},{"sector":7,"length":512,"data":[1866661920,1918988397,543649385,1851858944,771760228,1174416942,1936026729,1701994784,1718182944,1701995878,1931506798,1936030313,1866858506,1952542066,1919903264,544091936,1953068915,1763731555,1848582259,1482184765,1867776088,1634541679,1663072622,1634561391,1814914158,543518313,1969713761,1953391981,1866662003,1918988397,1869422693,1713399154,1936026729,794372128,1059072334,1866661920,543452277,544501614,1634760805,1931502702,1852793701,1768300644,1634624876,1931502957,1935745135,544175136,1668571501,1768300648,7631730,1886220099,1936028257,1701344288,1852793632,1953391988,1718558835,1870099488,1818846752,1864397669,1702043762,1864397684,1768300646,779314540,1329790986,1528844365,1635017060,1528847665,1635017060,1528847666,542983215,1564553051,1278171936,794501213,1970158926,1919246957,794501213,679235,1633951776,540107124,538976288,1667592275,1701406313,1869357171,1769234787,1629515375,1847616622,677735777,1864378739,1768300646,544502642,1701603686,539587368,1663070068,1634757999,3040626,1633951776,540172660,538976288,1667592275,1701406313,1869357171,1769234787,1629515375,1847616622,677735777,1864378739,1702043750,1684959075,1818846752,1948283749,1868767343,1918988397,536882789,541339424,538976288,1142956064,1819308905,544438625,1717987684,1852142181,544433507,1679847017,1835623269,1713400929,1634562671,1411395188,544434536,1948283753,1679844712]},{"sector":8,"length":512,"data":[1969317477,536900716,538976288,538976288,1931485216,1769239653,3041134,1093607456,538976288,538976288,1886611780,1937334636,1718182944,1701995878,1936024430,544106784,1229148993,1751326793,1667330657,1936876916,538968110,538987567,538976288,1766072352,1634496627,1814066041,543518313,1651340654,544436837,544370534,1717987684,1852142181,779314531,790634496,1970158926,1919246957,1836008224,1701994864,1852776563,1948285292,1713399144,1953722985,1701868320,1768319331,1847616613,1700949365,1718558834,1852402720,1763734373,1634017390,1713399907,778398825,790634496,538976323,538976288,1936278560,1634166130,544433266,1702060387,543584032,1229148993,1701584969,1919251572,1752637555,1663069797,1634757999,1735289202,1818846752,170816357,544166912,1886220131,543519329,1937007987,543584032,1701603686,1965042803,1998611827,1667525737,1935962721,544106784,1635017060,1851858993,1633951844,540172660,1634886000,1702126957,3044210,1293955121,1634562921,1701340020,539828339,1768189541,1663068014,1634757999,1224762738,1919902574,1952671090,1397703712,1919252000,1852795251,1701729536,1667592312,543450484,543452741,1176528495,6646889,1635151433,543451500,1953068915,757098595,168624160,1701603654,1850679345,1210087788,622883681,1766596708,175334766,1175063808,845507689,1819168544,1632116857,1680154739,1852394528,684901,684837,684837,29477,0]},{"sector":9,"length":512,"data":[0,1931804672,621442341,171910515,556102437,1931804682,621442341,171910515,556102437,1931804682,173567013,1059418917,628303114,2593,1814393637,1931807320,621428517,169944435,168624128,4325412,6881364,9699457,12910765,16056542,17236222,21496103,22872402,23527779,27394434,31326658,38404628,46662272,56034063,60949356,69272533,78382181,81855691,84542712,1931805989,1931804682,1931834149,1931834149,1931804682,168624138,684837,684837,620759565,175318387,628303104,620759667,620759667,620759667,1931807347,1931804682,175318304,175318272,175318272,7546112,684837,2764330,707668572,707668480,175318272,7546112,684837,684837,175318282,628303104,620759667,538976371,1931812896,175318282,2570,333512704,0,5,0,0,0,0,1130299392,1279870559,1313431365,4017990,0,0,0,0,0,0,335544320,-2122219264,257,0,0,0,0,-620756992,158470,0,0,-65536,3744,33691136,201919768,134679564,50271766,-16641523,185597952,185597952,1,0,258,0,514,0,900,0,2013266946,110848,262656,10223794,498352,0,1536,65542,50335744,33947654]},{"sector":10,"length":512,"data":[1162150928,84215109,808781061,20480,538968064,123228208,808452104,122705712,538968064,0,1616906240,1616928864,1886388224,2021161080,526088,134219520,2056,524296,1848117248,694971509,6,-904607200,-904607212,-904607212,20,0,548536447,682622985,673720360,548536325,1219493906,280100865,-2068840433,279969802,269488144,-2122248176,-2122219135,28442637,279969812,269488144,-2105376240,209879682,335720960,269529088,85987344,-2130660864,180793344,0,316216025,4825,40501248,11665426,-1498415090,1312570394,1044861773,1375731774,808464438,539822605,1667331187,1986994283,1818653285,168654703,1375732480,858796086,539822605,1702129257,544367975,1769367908,1646290276,221257849,589834,808466002,755633465,1953459744,1869505824,543713141,1667330163,1868963941,1852121202,1869769078,1852140910,658804,168624380,1912667904,1949134453,543518057,1869771365,33562738,808866304,168636976,1818632237,1769234799,1882023790,1953393007,1886745376,1953656688,1953459744,1634692128,224683364,65546,808466002,755633457,1819635232,1869619308,1702129257,1935745138,1852270963,1953391981,-536868339,251638272,-20480,-1,4642,22806528,54855680,1112671000,-1064507253,234885125,303903,787971,244039822,-108331002,-34108593,-1202674445,-883949516,-661863540,-1898410424,1032128]},{"sector":11,"length":512,"pattern":0,"data":[-1342172999,1202648063,-1014237301,-1077899704,78708751,-789068149,-628299565,74698795,-768878452,-268181293,-947135858,-388771593,-802438516,-1064565645,-522989013,-1030817789,1322289836,1187548077,-31145334,91598908,-341118036,1974615046,-1968901267,1946265794,20102833,512433934,872153092,-930370094,-1031072797,-1064385789,-2080863315,292880383,-501415642,16417267,-2129234704,-351272766,1086360796,-276578162,486614544,-339702200,-1950118942,-1962932162,50334262,33948144,1060096,-1064380274,-100663109,-410265970,784698363,1085550591,-1191181637,-896794602,482007694,-1205744383,567102719,1801675088,1713398885,543517801,1663071081,1970434671,357488,305148034,648024841,11657]},{"sector":12,"length":512,"data":[1431258111,1498567758,0,0,385941505,2097152000,1660947456,218113,-285212672,201326598,1375822592,3,467200,905972736,217600,-1224736768,201326599,-1258277376,1,518400,1023413248,111872,452984832,201326600,1375747328,3,544000,721423360,217600,2130706432,201326600,-1258280192,1,569600,536873984,217600,-486539264,201326600,-1258283008,1,595200,-2097148928,218113,1191182336,201326601,1375830784,3,620800,922749952,217600,-1426063360,201326601,-1258277120,1,646400,587205632,218880,251658240,201326602,1375740672,3,672000,1728056320,218881,1929379840,201326602,1375823616,3,697600,33557504,217600,-687865856,201326602,1593836032,3,723200,67111936,217600,989855744,201326603,1593836544,3,748800,939527168,217600,-1627389952,201326603,-1258276864,1,774400,956304384,217600,50331648,201326604,-1258276608,1,800000,-2147480576,218113,1728053248,201326604,1375830016,3,825600,704646144,218112,-889192448,201326604,1375742464,3,851200,1358957568,217602,-1828716544,201326605,-1258139392,1,902400,754977792,217600,788529152,201326605,1627401472,3,876800,1711279104,217601,-150994944]},{"sector":13,"length":512,"data":[201326605,-1258199552,1,928000,553651200,217600,1526726656,201326606,-1258282752,1,953600,822086656,217600,-1090519040,201326606,-1258278656,1,979200,503319552,222464,587202560,201326607,-520086016,2,1004800,503319552,217600,-2030043136,201326607,-1258073088,1,1030400,603982848,218112,-352321536,201326607,1375740928,3,1056000,1644170240,217601,1325400064,201326608,1560371712,3,1081600,1526729728,111872,2063597568,201326609,-1258275584,1,1094400,1023413248,217600,-452984832,201326608,1375741696,3,1184000,654314496,111872,1124073472,201326610,1375822080,3,1120000,1627393024,111873,1224736768,201326609,1375732480,3,1260800,50334720,111872,1862270976,201326611,1459717376,3,1286400,-2063594496,217601,-754974720,201326611,-1258275840,1,1312000,872418304,217600,922746880,201326612,-1258277888,1,1337600,520096768,217600,-1694498816,201326612,-1258283264,1,1363200,1073744896,111872,-16777216,201326612,1375748096,3,1388800,788532224,217600,1660944384,201326613,1627401984,3,1414400,805309440,218112,721420288,201326614,1375744000,3,1465600,1593838592,217601,-1895825408,201326614,1543593728]},{"sector":14,"length":512,"data":[3,1491200,671091712,218112,-218103808,201326614,1375741952,3,1516800,117443584,221696,1459617792,201326615,-1258289408,1,1542400,117443584,217600,-1157627904,201326615,1459619584,3,1568000,117443584,218112,520093696,201326616,1459715328,3,1593600,2097155072,217601,-2097152000,201326616,-1258274560,1,1619200,-1526723584,218113,-419430400,201326616,1375839488,3,1644800,-2113926144,218113,1258291200,201326617,1375830528,3,1670400,452987904,111872,-1358954496,201326617,1375738624,3,1696000,570428416,217600,318767104,201326618,-1258282496,1,1721600,771755008,217600,1996488704,201326618,-1258279424,1,1747200,687868928,217600,-620756992,201326618,-1258280704,1,1772800,1509952512,219392,117440512,201326620,1375754752,3,1849600,738200576,217600,1795162112,201326620,-1258279936,1,1875200,16780288,111872,-822083584,201326620,1375731968,3,1900800,973081600,217600,855638016,201326621,-1258276352,1,1926400,637537280,218112,-1761607680,201326621,1375741440,3,1952000,637537280,218880,-83886080,201326621,1375980544,3,1171200,-872412160,220675,-1392508928,201326609,1375932672,3,492800]},{"sector":15,"length":512,"data":[285215744,221187,1392508928,201326599,-1258270464,1,1222400,1358957568,238592,1962934272,201326610,-1258270208,1,1248000,1375734784,239104,-654311424,201326610,-1258269184,1,1440000,1442843648,239616,-956301312,201326613,-1258268672,1,1798400,1476398080,240128,1056964608,201326619,-1258064384,1,1824000,1979714560,240131,-1560281088,201326619,-1258109184,1,1977600,-956298240,188674,754974720,201326622,1375913728,3,1990400,-956298240,218114,1593835520,201326622,1459799808,3,1990400,-956298240,219394,1593835520,100663326,16778752,2003200,100664832,5257984,33555968,5326080,67110400,5361408,83887616,6839552,117442048,6847744,100664832,-1056964352,100663326,-50330112,100663360,318767616,100663374,-1325399040,100663375,1560282368,100663400,2097153792,100663400,16778752,2027776,100664832,6085376,33555968,3910912,67110400,3910912,83887616,6839552,117442048,6847744,100664832,553648384,100663327,-218102272,100663359,1627390464,100663371,1627390976,100663371,1560282368,100663400,2097153792,100663400,16778752,2052352,100664832,4803840,33555968,5010688,67110400,5010688,83887616,6839552,117442048,6847744,100664832,-2130706176,100663327,-2063596032,100663351,-1392508416]}],[{"sector":1,"length":512,"data":[100663355,-1392507904,100663355,1560282368,100663400,2097153792,100663400,16778752,2076928,100664832,3502336,33555968,3910912,67110400,3910912,83887616,6839552,117442048,6847744,100664832,-520093440,100663327,-218102272,100663359,1627390464,100663371,1627390976,100663371,1560282368,100663400,2097153792,100663400,16778752,2101504,100664832,4190976,33555968,4975360,67110400,4975360,83887616,6839552,117442048,6847744,100664832,1090519296,100663328,1895826944,100663349,-1392508416,100663355,-1392507904,100663355,1560282368,100663400,2097153792,100663400,16778752,2126080,100664832,4735744,33555968,5010688,67110400,5010688,83887616,6839552,117442048,6847744,100664832,-1593835264,100663328,-1560279552,100663354,922747392,100663356,922747904,100663356,1560282368,100663400,2097153792,100663400,16778752,2150656,100664832,5257984,33555968,5326080,67110400,5361408,83887616,6839552,117442048,6847744,100664832,16777472,100663329,-50330112,100663360,318767616,100663374,-1325399040,100663375,1560282368,100663400,2097153792,100663400,16778752,2175232,100664832,4190976,33555968,5152000,67110400,5222656,83887616,6839552,117442048,6847744,100664832,1627390208,100663329,1895826944,100663349,-1392508416,100663355,-1392507904,100663355]},{"sector":2,"length":512,"data":[1560282368,100663400,2097153792,100663400,16778752,2199808,100664832,5464832,33555968,5532928,67110400,5532928,83887616,6839552,117442048,6847744,100664832,-1056964352,100663329,-50330112,100663360,318767616,100663374,-1325399040,100663375,1560282368,100663400,2097153792,100663400,16778752,2224384,100664832,5464832,33555968,5532928,67110400,5532928,83887616,6839552,117442048,6847744,100664832,553648384,100663330,-50330112,100663360,318767616,100663374,-1325399040,100663375,1560282368,100663400,2097153792,100663400,16778752,2248960,100664832,4190976,33555968,4940032,67110400,4940032,83887616,6839552,117442048,6847744,100664832,-2130706176,100663330,1191183872,100663387,1358955008,100663388,1358955520,100663388,1560282368,100663400,2097153792,100663400,16778752,2273536,100664832,4190976,33555968,4940032,67110400,4940032,83887616,6839552,117442048,6847744,100664832,-520093440,100663330,1191183872,100663387,1358955008,100663388,1358955520,100663388,1560282368,100663400,2097153792,100663400,16778752,2298112,100664832,4803840,33555968,5010688,67110400,5010688,83887616,6839552,117442048,6847744,100664832,1090519296,100663331,-2063596032,100663351,-1392508416,100663355,-1392507904,100663355,1560282368,100663400,2097153792]},{"sector":3,"length":512,"data":[100663400,16778752,2322688,100664832,4803840,33555968,5010688,67110400,5010688,83887616,6839552,117442048,6847744,100664832,-1593835264,100663331,-2063596032,100663351,-1392508416,100663355,-1392507904,100663355,1560282368,100663400,2097153792,100663400,16778752,2347264,100664832,5257984,33555968,5326080,67110400,5361408,83887616,6839552,117442048,6847744,100664832,16777472,100663332,-50330112,100663360,318767616,100663374,-1325399040,100663375,1560282368,100663400,2097153792,100663400,16778752,2371840,100664832,5257984,33555968,5326080,67110400,5361408,83887616,6839552,117442048,6847744,100664832,1627390208,100663332,-50330112,100663360,318767616,100663374,-1325399040,100663375,1560282368,100663400,2097153792,100663400,16778752,2396416,100664832,4395264,33555968,5010688,67110400,5010688,83887616,6839552,117442048,6847744,100664832,-1056964352,100663332,-452983296,100663389,-117440000,100663391,-117439488,100663391,1560282368,100663400,2097153792,100663400,16778752,2420992,100664832,4803840,33555968,5010688,67110400,5010688,83887616,6839552,117442048,6847744,100664832,553648384,100663333,-2063596032,100663351,-1392508416,100663355,-1392507904,100663355,1560282368,100663400,2097153792,100663400,16778752,2445568]},{"sector":4,"length":512,"data":[100664832,4531456,33555968,5010688,67110400,5010688,83887616,6839552,117442048,6847744,100664832,-2130706176,100663333,-1895823872,100663352,922747392,100663356,922747904,100663356,1560282368,100663400,2097153792,100663400,16778752,2470144,100664832,4190976,33555968,4940032,67110400,4940032,83887616,6839552,117442048,6847744,100664832,-520093440,100663333,1895826944,100663349,-1392508416,100663355,-1392507904,100663355,1560282368,100663400,2097153792,100663400,16778752,2494720,100664832,4190976,33555968,4975360,67110400,4975360,83887616,6839552,117442048,6847744,100664832,1090519296,100663334,1895826944,100663349,-1392508416,100663355,-1392507904,100663355,1560282368,100663400,2097153792,100663400,16778752,2519296,100664832,6496512,33555968,6564608,67110400,6564608,83887616,6839552,117442048,6847744,100664832,-1593835264,100663334,1593837056,100663358,1761608192,100663359,1761608704,100663359,1560282368,100663400,2097153792,100663400,16778752,2556160,100664832,4259072,33555968,5116672,67110400,5222656,83887616,6839552,117442048,6847744,100664832,822083840,100663335,1895826944,100663349,-1392508416,100663355,-1392507904,100663355,1560282368,100663400,2097153792,100663400,16778752,2580736,100664832,5257984,33555968]},{"sector":5,"length":512,"data":[5326080,67110400,5361408,83887616,6839552,117442048,6847744,100664832,-1862270720,100663335,-50330112,100663360,318767616,100663374,-1325399040,100663375,1560282368,100663400,2097153792,100663400,16778752,2617600,100664832,4259072,33555968,5116672,67110400,5222656,83887616,6839552,117442048,6847744,100664832,-1056964352,100663335,520095232,100663384,687866368,100663385,687866880,100663385,1560282368,100663400,2097153792,100663400,16778752,2642176,100664832,3502336,33555968,3910912,67110400,3910912,83887616,6839552,117442048,6847744,100664832,-2130706176,100663336,-218102272,100663359,1627390464,100663371,1627390976,100663371,1560282368,100663400,2097153792,100663400,16778752,2666752,100664832,4190976,33555968,4940032,67110400,4940032,83887616,6839552,117442048,6847744,100664832,-520093440,100663336,1895826944,100663349,-1392508416,100663355,-1392507904,100663355,1560282368,100663400,2097153792,100663400,16778752,2629888,100664832,3502336,33555968,3910912,67110400,3910912,83887616,6839552,117442048,6847744,100664832,285212928,100663337,-1291844096,100663385,-1124072960,100663386,-1124072448,100663386,1560282368,100663400,2097153792,100663400,16778752,2703616,100664832,4190976,33555968,4940032,67110400,4940032]},{"sector":6,"length":512,"data":[83887616,6839552,117442048,6847744,100664832,1895825664,100663337,-218102272,100663359,1627390464,100663371,1627390976,100663371,1560282368,100663400,2097153792,100663400,16778752,2728192,100664832,3502336,33555968,3910912,67110400,3910912,83887616,6839552,117442048,6847744,100664832,-788528896,100663337,-1258289664,100663396,-754974208,100663399,-754973696,100663399,1560282368,100663400,-1996486912,100663400,16778752,2752768,100664832,3502336,33555968,3910912,67110400,3910912,83887616,6839552,117442048,6847744,100664832,822083840,100663338,-1090517504,100663397,-754974208,100663399,-754973696,100663399,1560282368,100663400,-1728051456,100663400,16778752,2777344,100664832,3502336,33555968,3910912,67110400,3910912,83887616,6839552,117442048,6847744,100664832,-1862270720,100663338,1291847168,100663369,1962934784,100663372,1962935296,100663372,1560282368,100663400,2097153792,100663400,16778752,2801920,100664832,3638528,33555968,3910912,67110400,3910912,83887616,6839552,117442048,6847744,100664832,-251657984,100663338,1660945920,100663379,1828717056,100663380,1828717568,100663380,1560282368,100663400,2097153792,100663400,16778752,2826496,100664832,4259072,33555968,5116672,67110400,5222656,83887616,6839552,117442048]},{"sector":7,"length":512,"data":[6847744,100664832,1358954752,100663339,1895826944,100663349,-1392508416,100663355,-1392507904,100663355,1560282368,100663400,2097153792,100663400,16778752,2851072,100664832,4803840,33555968,5010688,67110400,5010688,83887616,6839552,117442048,6847744,100664832,-1325399808,100663339,-2063596032,100663351,-1392508416,100663355,-1392507904,100663355,1560282368,100663400,2097153792,100663400,16778752,2875648,100664832,4327168,33555968,5081344,67110400,5081344,83887616,6839552,117442048,6847744,100664832,285212928,100663340,2063599104,100663350,1258291712,100663357,1258292224,100663357,1560282368,100663400,2097153792,100663400,16778752,2900224,100664832,3502336,33555968,3910912,67110400,3910912,83887616,6839552,117442048,6847744,100664832,1895825664,100663340,-218102272,100663359,1627390464,100663371,1627390976,100663371,1560282368,100663400,2097153792,100663400,16778752,2924800,100664832,4463360,33555968,5010688,67110400,5010688,83887616,6839552,117442048,6847744,100664832,-788528896,100663340,-285211136,100663390,-117440000,100663391,-117439488,100663391,1560282368,100663400,2097153792,100663400,16778752,2949376,100664832,6736128,33555968,6804224,67110400,6804224,83887616,6839552,117442048,6858496,100664832,822083840]},{"sector":8,"length":512,"data":[100663341,1895826944,100663349,-1392508416,100663355,-1392507904,100663355,1560282368,100663400,2097153792,100663400,16778752,2973952,100664832,5257984,33555968,5326080,67110400,5361408,83887616,6839552,117442048,6847744,100664832,-1862270720,100663341,-50330112,100663360,318767616,100663374,-1325399040,100663375,1560282368,100663400,2097153792,100663400,16778752,2998528,100664832,4190976,33555968,4940032,67110400,4940032,83887616,6839552,117442048,6847744,100664832,-251657984,100663341,-1962932736,100663382,-1795161600,100663383,-1795161088,100663383,1560282368,100663400,2097153792,100663400,16778752,3023104,100664832,5257984,33555968,5326080,67110400,5361408,83887616,6839552,117442048,6847744,100664832,1358954752,100663342,-50330112,100663360,318767616,100663374,-1325399040,100663375,1560282368,100663400,2097153792,100663400,16778752,3047680,100664832,6324992,33555968,6393088,50333184,6428416,67110400,6393088,117442048,6847744,100664832,-1325399808,100663342,1895826944,100663349,-1392508416,100663355,-1392507904,100663355,1560282368,100663400,2097153792,100663400,16778752,3072256,100664832,4190976,33555968,4940032,67110400,4940032,83887616,6839552,117442048,6847744,100664832,285212928,100663343,1660945920,100663379]},{"sector":9,"length":512,"data":[1828717056,100663380,1828717568,100663380,1560282368,100663400,2097153792,100663400,16778752,3096832,100664832,5257984,33555968,5326080,67110400,5326080,83887616,6839552,117442048,6847744,100664832,1895825664,100663343,1660945920,100663379,1828717056,100663380,1828717568,100663380,1560282368,100663400,2097153792,100663400,16778752,3121408,100664832,4259072,33555968,5116672,67110400,5222656,83887616,6839552,117442048,6847744,100664832,-788528896,100663343,1895826944,100663349,-1392508416,100663355,-1392507904,100663355,1560282368,100663400,2097153792,100663400,16778752,3145984,100664832,5257984,33555968,5326080,67110400,5361408,83887616,6839552,117442048,6847744,100664832,822083840,100663344,-50330112,100663360,318767616,100663374,-1325399040,100663375,1560282368,100663400,2097153792,100663400,16778752,3170560,100664832,5257984,33555968,5326080,67110400,5361408,83887616,6839552,117442048,6847744,100664832,-1862270720,100663344,-50330112,100663360,318767616,100663374,-1325399040,100663375,1560282368,100663400,2097153792,100663400,16778752,3195136,100664832,3502336,33555968,3910912,67110400,3910912,83887616,6839552,117442048,6847744,100664832,-251657984,100663344,-218102272,100663359,1627390464,100663371,1627390976]},{"sector":10,"length":512,"data":[100663371,1560282368,100663400,2097153792,100663400,16778752,3219712,100664832,4803840,33555968,5010688,67110400,5010688,83887616,6839552,117442048,6847744,100664832,1358954752,100663345,-2063596032,100663351,-1392508416,100663355,-1392507904,100663355,1560282368,100663400,2097153792,100663400,16778752,3244288,100664832,4599552,33555968,5010688,67110400,5010688,83887616,6839552,117442048,6847744,100664832,-1325399808,100663345,-1895823872,100663352,922747392,100663356,922747904,100663356,1560282368,100663400,2097153792,100663400,16778752,3268864,100664832,4667648,33555968,5046016,67110400,5046016,83887616,6839552,117442048,6847744,100664832,285212928,100663346,-1728051712,100663353,-1056964096,100663356,-1056963584,100663356,1560282368,100663400,2097153792,100663400,16778752,3293440,100664832,6736128,33555968,6804224,67110400,6804224,83887616,6839552,117442048,6862080,100664832,1895825664,100663346,1895826944,100663349,-1392508416,100663355,-1392507904,100663355,1560282368,100663400,2097153792,100663400,16778752,3318016,100664832,6736128,33555968,6804224,67110400,6804224,83887616,6839552,117442048,6862080,100664832,-788528896,100663346,1895826944,100663349,-1392508416,100663355,-1392507904,100663355,1560282368,100663400]},{"sector":11,"length":512,"data":[2097153792,100663400,16778752,3354880,100664832,5568256,33555968,5636352,67110400,5636352,83887616,6839552,117442048,6847744,100664832,16777472,100663347,1459619328,100663370,654311936,100663375,654312448,100663375,1560282368,100663400,2097153792,100663400,16778752,3367168,100664832,4190976,33555968,4940032,67110400,4940032,83887616,6839552,117442048,6847744,100664832,-1862270720,100663347,1895826944,100663349,-1392508416,100663355,-1392507904,100663355,1560282368,100663400,2097153792,100663400,16778752,3391744,100664832,3502336,33555968,3910912,67110400,3910912,83887616,6839552,117442048,6847744,100664832,-251657984,100663347,-218102272,100663359,1627390464,100663371,1627390976,100663371,1560282368,100663400,2097153792,100663400,16778752,3416320,100664832,4803840,33555968,5010688,67110400,5010688,83887616,6839552,117442048,6847744,100664832,1358954752,100663348,-2063596032,100663351,-1392508416,100663355,-1392507904,100663355,1560282368,100663400,2097153792,100663400,16778752,3440896,100664832,5257984,33555968,5326080,67110400,5361408,83887616,6839552,117442048,6847744,100664832,-1325399808,100663348,-50330112,100663360,318767616,100663374,-1325399040,100663375,1560282368,100663400,2097153792,100663400,16778752]},{"sector":12,"length":512,"data":[3465472,100664832,5464832,33555968,5532928,67110400,5532928,83887616,6839552,117442048,6847744,100664832,285212928,100663349,1895826944,100663349,-1392508416,100663355,-1392507904,100663355,1560282368,100663400,2097153792,100663400,16778752,3490048,100664832,4190976,33555968,4940032,67110400,4940032,83887616,6839552,117442048,6847744,1413742336,1179535705,1660954191,33772545,1801800704,3014656,2949164,33554490,1,11264,0,0,1413742336,1179535705,1660954191,33772033,1801800704,3014656,2949164,33554490,1,11264,0,0,1413742336,1179535705,285222479,16998403,41984,3014656,3080236,50528314,0,15104,0,0,1413742336,1179535705,285222479,16998403,52992,3014656,3080236,50528314,0,15104,0,0,1413742336,1179535705,905979471,16994816,9216,3014656,3080236,33554478,1,11264,0,0,1413742336,1179535705,905979471,16889088,9216,3014656,3080236,33554478,1,11264,0,0,1413742336,1179535705,1023419983,16889088,9216,2883584,3080238,33554490,1,11264,0,0,1413742336,1179535705,1023419983,16994816,9216,2883584,3080238,33554490]},{"sector":13,"length":512,"data":[1,11264,0,0,1413742336,1179535705,721430095,16994816,21248,3014656,3014700,33685562,1,15104,0,0,1413742336,1179535705,721430095,16889088,21248,3014656,3014700,33685562,1,15104,0,0,1413742336,1179535705,536880719,16994816,4604416,3014656,3080236,33751098,1,15104,0,0,1413742336,1179535705,536880719,16889088,4604416,3014656,3080236,33751098,1,15104,0,0,1413742336,1179535705,-2097142193,33772545,1852392448,3014656,2949164,33685562,1,11264,0,0,1413742336,1179535705,-2097142193,33772033,1852392448,3014656,2949164,33685562,1,11264,0,0,1413742336,1179535705,922756687,16994816,611468032,3014656,3080236,33685562,1,15104,0,0,1413742336,1179535705,922756687,16889088,611468032,3014656,3080236,33685562,1,15104,0,0,1413742336,1179535705,587212367,16996096,787206144,2097152,3014700,33751086,1,15104,0,0,1413742336,1179535705,587212367,16994816,7752704,2097152,3014700,33554478,1,15104,0,0,1413742336,1179535705,1728063055,16996097]},{"sector":14,"length":512,"data":[787206144,2097152,3014700,33751086,1,15104,0,0,1413742336,1179535705,1728063055,16994817,7752704,2097152,3014700,33554478,1,15104,0,0,1413742336,1179535705,33564239,33772032,9216,2097152,2949164,33751098,1,15104,0,0,1413742336,1179535705,33564239,33775360,9216,2097152,2949164,33751098,1,15104,0,0,1413742336,1179535705,67118671,16994816,9216,2883584,3080238,33554490,1,11264,0,0,1413742336,1179535705,67118671,16998144,9216,2883584,3080238,33554490,1,11264,0,0,1413742336,1179535705,939533903,16994816,9216,3014656,3080236,33554490,1,11264,0,0,1413742336,1179535705,939533903,16889088,9216,3014656,3080236,33554490,1,11264,0,0,1413742336,1179535705,956311119,16994816,9216,3014656,3080236,33554490,0,11264,0,0,1413742336,1179535705,956311119,16889088,9216,3014656,3080236,33554490,0,11264,0,0,1413742336,1179535705,-2147473841,33772545,1852392448,3014656,2949164,33685562,1,11264,0,0]},{"sector":15,"length":512,"data":[1413742336,1179535705,-2147473841,33772033,1852392448,3014656,2949164,33685562,1,11264,0,0,1413742336,1179535705,704652879,16995328,10439424,2097152,3014700,33751086,1,11264,0,0,1413742336,1179535705,704652879,16994816,6507264,2097152,3014700,33751086,1,11264,0,0,1413742336,1179535705,754984527,16994816,7498496,3014656,2949164,33685550,1,15104,0,0,1413742336,1179535705,754984527,16998656,7498496,3014656,2949164,33685550,1,15104,0,0,1413742336,1179535705,1358964303,16994818,9216,3014656,3080236,33554490,1,11264,0,0,1413742336,1179535705,1358964303,16889090,9216,3014656,3080236,33554490,1,11264,0,0,1413742336,1179535705,1711285839,16889089,7040256,2097152,3014700,33751086,1,15104,0,0,1413742336,1179535705,1711285839,16889089,7040256,2097152,3014700,33751086,1,15104,0,0,1413742336,1179535705,553657935,16994816,17920,2097152,3080236,33751098,1,15104,0,0,1413742336,1179535705,553657935,16889088,17920,2097152,3080236,33751098]}]],[[{"sector":1,"length":512,"data":[1,15104,0,0,1413742336,1179535705,822093391,16994816,5063680,3014656,3014700,33751098,1,15104,0,0,1413742336,1179535705,822093391,16889088,5063680,3014656,3014700,33751098,1,15104,0,0,1413742336,1179535705,503326287,16999680,-185882880,3014656,3080236,33620026,0,11264,0,0,1413742336,1179535705,503326287,16965888,-1364688128,3014656,3080236,33620026,0,11264,0,0,1413742336,1179535705,503326287,16995328,1936868352,3014656,3080236,33620026,0,11264,0,0,1413742336,1179535705,503326287,16994816,1936868352,3014656,3080236,33620026,0,11264,0,0,1413742336,1179535705,1409295951,16889091,608913408,2883584,3080238,33554490,1,11264,0,0,1413742336,1179535705,603989583,33772544,7620096,2097152,3014700,33554478,1,15104,0,0,1413742336,1179535705,603989583,33772032,7620096,2097152,3014700,33554478,1,15104,0,0,1413742336,1179535705,1644176975,33774849,1917560064,2097152,2949164,33751098,1,15104,0,0,1413742336,1179535705,1644176975,33772033]},{"sector":2,"length":512,"data":[7498496,2097152,2949164,33751098,1,15104,0,0,1413742336,1179535705,1526736463,16889088,7557632,3014656,3080236,33554490,1,11264,0,0,1413742336,1179535705,1023419983,16889088,9216,2883584,2949166,33554490,0,11264,0,0,1413742336,1179535705,1023419983,16994816,9216,2883584,2949166,33554490,0,11264,0,0,1413742336,1179535705,1627399759,16994817,-1672328960,2883584,3080238,33554490,1,11264,0,0,1413742336,1179535705,1627399759,16889089,-1672328960,2883584,3080238,33554490,1,11264,0,0,1413742336,1179535705,-872405425,16997891,39168,2883584,3080238,33685562,1,11264,0,0,1413742336,1179535705,-872405425,16994819,1397313024,2883584,3080238,33554490,1,11264,0,0,1413742336,1179535705,654321231,16994816,3034112,3014656,3080236,131118,1,15104,0,0,1413742336,1179535705,654321231,16889088,3034112,3014656,3080236,131118,1,15104,0,0,1413742336,1179535705,1358964303,33793024,23552,2883584,3080238,58,0,11264,0,0]},{"sector":3,"length":512,"data":[1413742336,1179535705,1358964303,33666304,40192,2883584,3080238,58,0,11264,0,0,1413742336,1179535705,1375741519,33793536,23552,2883584,2949166,58,1,11264,0,0,1413742336,1179535705,1375741519,33666304,22272,2883584,2949166,33554490,1,11264,0,0,1413742336,1179535705,50341455,16994816,9216,2883584,3080238,33554490,0,11264,0,0,1413742336,1179535705,50341455,16889088,9216,2883584,3080238,33554490,0,11264,0,0,1413742336,1179535705,-2063587761,33773313,-727144704,3014656,2949164,33685562,1,11264,0,0,1413742336,1179535705,-2063587761,33772033,1852392448,3014656,2949164,33685562,1,11264,0,0,1413742336,1179535705,1006642767,16889088,9216,2883584,3080238,33554490,0,11264,0,0,1413742336,1179535705,872425039,16994816,2379264,2883584,3080238,33554490,0,11264,0,0,1413742336,1179535705,872425039,16889088,2379264,2883584,3080238,33554490,0,11264,0,0,1413742336,1179535705,520103503,16994816,40704,3014656,2949164,33685562]},{"sector":4,"length":512,"data":[1,15104,0,0,1413742336,1179535705,520103503,16889088,40704,3014656,2949164,33685562,1,15104,0,0,1413742336,1179535705,1073751631,16889088,9216,2883584,3080238,33554490,1,11264,0,0,1413742336,1179535705,1073751631,16994816,9216,2883584,3080238,33554490,1,11264,0,0,1413742336,1179535705,788538959,16994816,7498496,2097152,3014700,33685562,1,15104,0,0,1413742336,1179535705,788538959,16998656,7498496,2097152,3014700,33685562,1,15104,0,0,1413742336,1179535705,1442850383,33794048,23552,2883584,3014702,33554490,0,11264,0,0,1413742336,1179535705,1442850383,33666304,40192,2883584,3014702,33554490,0,11264,0,0,1413742336,1179535705,805316175,33772544,8935936,2097152,3014700,33554490,1,15104,0,0,1413742336,1179535705,805316175,33772032,7100928,2097152,3014700,33554490,1,15104,0,0,1413742336,1179535705,1593845327,16994817,1668498688,3014702,2949164,33751098,1,15104,0,0,1413742336,1179535705,1593845327,16997377]},{"sector":5,"length":512,"data":[1668498688,3014702,2949164,33751098,1,15104,0,0,1413742336,1179535705,671098447,33772544,1768246272,3014656,2949164,33685562,1,11264,0,0,1413742336,1179535705,671098447,33772032,1768246272,3014656,2949164,33685562,1,11264,0,0,1413742336,1179535705,117450319,16998912,3072000,2097152,3014702,33751098,1,15104,0,0,1413742336,1179535705,117450319,16889088,3043840,2097152,3014702,33751098,1,15104,0,0,1413742336,1179535705,117450319,16994816,3043840,2097152,3014702,33751098,1,15104,0,0,1413742336,1179535705,117450319,16996096,3072256,2097152,3014702,33751098,1,15104,0,0,1413742336,1179535705,117450319,16995328,3043840,2097152,3014702,33751098,1,15104,0,0,1413742336,1179535705,2097161807,33773313,-726161664,3014656,2949164,33685562,1,11264,0,0,1413742336,1179535705,2097161807,33772033,1852392448,3014656,2949164,33685562,1,11264,0,0,1413742336,1179535705,1090528847,16889088,9216,2883584,3080238,33554490,0,11264,0,0]},{"sector":6,"length":512,"data":[1413742336,1179535705,-1526716849,16995329,7033600,2097152,3014700,33751086,1,15104,0,0,1413742336,1179535705,-1526716849,16994817,7033600,2097152,3014700,33751086,1,15104,0,0,1413742336,1179535705,-2113919409,33772545,1852392448,3014656,2949164,33685562,1,11264,0,0,1413742336,1179535705,-2113919409,33772033,1852392448,3014656,2949164,33685562,1,11264,0,0,1413742336,1179535705,452994639,33666304,20992,2097152,2949164,33554490,1,11264,0,0,1413742336,1179535705,452994639,33772032,20992,2097152,2949164,33554490,1,11264,0,0,1413742336,1179535705,570435151,16889088,1937002496,3014656,3080236,196666,1,15104,0,0,1413742336,1179535705,570435151,16889088,40448,3014656,3080236,196666,1,15104,0,0,1413742336,1179535705,771761743,33772032,7498496,2097152,2949164,33751086,1,15104,0,0,1413742336,1179535705,771761743,33666304,7498496,2097152,2949164,33751086,1,15104,0,0,1413742336,1179535705,687875663,16994816,1917211392,2555950,3014702,33685562]},{"sector":7,"length":512,"data":[1,15104,0,0,1413742336,1179535705,687875663,16889088,1917211392,2555950,3014702,33685562,1,15104,0,0,1413742336,1179535705,1476404815,33794560,9216,2883584,3080238,33554490,0,11264,0,0,1413742336,1179535705,1476404815,33666304,609504768,2883584,3080238,33554490,0,11264,0,0,1413742336,1179535705,1979721295,33794563,9216,2883584,3080238,33554490,0,11264,0,0,1413742336,1179535705,1979721295,33666307,609504768,2883584,3080238,33554490,0,11264,0,0,1413742336,1179535705,1509959247,16994816,5002240,3014656,3080236,33554490,1,15104,0,0,1413742336,1179535705,1509959247,16996608,5002240,3014656,3080236,33554490,1,15104,0,0,1413742336,1179535705,738207311,16994816,39936,2883584,3080238,33554490,1,11264,0,0,1413742336,1179535705,738207311,16889088,39936,2883584,3080238,33554490,1,11264,0,0,1413742336,1179535705,16787023,111872,9216,2883584,3080238,33554490,0,11264,0,0,1413742336,1179535705,16787023,217600]},{"sector":8,"length":512,"data":[9216,2883584,3080238,33554490,0,11264,0,0,1413742336,1179535705,973088335,16994816,779305472,3014656,3080236,33554490,0,11264,0,0,1413742336,1179535705,973088335,16889088,779305472,3014656,3080236,33554490,0,11264,0,0,1413742336,1179535705,637544015,33772544,1852392448,3014656,2949164,33685562,1,11264,0,0,1413742336,1179535705,637544015,33772032,1852392448,3014656,2949164,33685562,1,11264,0,0,1413742336,1179535705,637544015,33773312,-726161664,3014656,2949164,33685562,1,11264,0,0,1413742336,1179535705,-956291505,33666306,608257280,3014656,2949164,33554490,1,11264,0,0,1413742336,1179535705,-956291505,33772034,608913920,2883584,2949166,33554490,1,11264,0,0,1329856256,1413565516,65605,67305985,134678021,202050057,269422093,336794129,404166165,471538201,538910237,606282273,673654309,741026345,808398381,875770417,943142453,1010514489,1077886525,1145258561,1212630597,1280002633,1347374669,1414746705,1482118741,1549490777,1616862813,1145258561,1212630597,1280002633,1347374669,1414746705,1482118741,2088458841,1132428925,1094796629]},{"sector":9,"length":512,"data":[1162035521,1229538629,1161904457,1330594113,1498764623,606360911,1092887588,1314213705,1067951694,-1398035799,-1339940319,-1263291727,-1195919691,-1128547655,-1061175619,-993803583,-926431547,-859059511,-791687475,-724315439,-656943403,-589571367,-522199331,-454827437,-387455259,-320083223,-252711187,-185339151,-117967115,-50595079,-259,1280069443,4543553,33619969,100992003,168364039,235736075,303108111,370480147,437852183,505224219,572596255,639968291,707340327,774712363,842084399,909456435,976828471,1044200507,1111572543,1178944579,1246316615,1313688651,1381060687,1448432723,1515804759,1583176795,1111580767,1178944579,1246316615,1313688651,1381060687,1448432723,1515804759,2122153083,-1868922753,-1891529151,1162167680,-1907799735,-1835888497,1431261007,1431279701,-1633837925,1330200991,-1499093675,-1431721817,-1364349781,-1296977745,-1229605709,-1162233673,-1094861637,-1027489601,-960117565,-892745529,-825373493,-758001457,-690629421,-623257385,-555885349,-488513313,-421141277,-353769241,-286397205,-219025169,-151653133,-84281097,-16909061,1329856511,1413565516,65605,-1718052970,-1650680934,-1583308898,-1515936862,-1448564826,-1381192790,-1313820754,11842482,1061043516,1107312960,1178944579,575162112,639968291,707340327,1263159595,1330531660,100860417,185207048,252579084,353636881,437786390,522067228,1364205856,1431589714,100860417,185207048,252579084,353636881]},{"sector":10,"length":512,"data":[437786390,522067228,1465262368,73029976,16844828,134480129,202115080,134283532,336855297,538713108,1549474836,23027293,320607244,1611923731,1684234849,1751606885,1818978921,-1195919691,1886350957,1920055993,1987409011,2025634679,2088467065,-1094877571,-1027489601,-960117565,-2105442177,-914110265,-859059687,-808549171,-741158448,-673786412,-623257467,-572750117,-522256162,-1996665,1280069443,4543553,33619969,100992003,168364039,235736075,303108111,370480147,437852183,505224219,572596255,639968291,707340327,774712363,842084399,909456435,976828471,1044200507,1111572543,1178944579,1246316615,1313688651,1381060687,1448432723,1515804759,1583176795,1111580767,1178944579,1246316615,1313688651,1381060687,1448432723,1515804759,2122153083,1163477887,1531010113,1162167619,1548306761,1549550939,1431264591,1499289941,606348324,1330200868,-1504817579,-1431748697,572632235,-1296977886,-1229605709,-1162233673,-1094861637,-1027489601,-960117565,-892745529,-825373493,-758001457,-690629421,-623257385,-555885349,-497819425,-421141277,-353769241,-286397205,-219025169,-151653133,-84281097,-16909061,1329856511,1413565516,16842821,-875902520,-808530484,-741158448,-673786412,-1931814440,-572728435,-505356322,31777762,1061043516,1128415552,1195787588,541739336,606282273,673654309,1296845609,1364217678,84148994,168364039,235736075,319950863,404100372,488381210,1397890846]},{"sector":11,"length":512,"data":[861221972,84148994,168364039,235736075,319950863,404100372,488381210,1465261854,72955480,33687322,117703170,185272071,117572107,303170050,505027090,1517230610,39622256,286921227,1561461265,1633705879,1701077858,1768449894,-1684366952,1852664939,1920048540,1987409011,2023726711,2088467065,-1583317379,-1515936862,-1448564826,-2088599168,-1400525910,-1347506921,-1296988496,-1229605709,-1162233673,-1111704695,-1883271490,-1027501888,-16673645,1280069443,4543553,-255,-1,-1,-1,-1,-1,-1,-1,572653567,639968291,707340543,788474923,842084399,909456435,976828471,1044200507,1111572543,1178944579,1246316615,1313688651,1381060687,1448432723,1515804759,1583176795,1111580767,1178944579,1246316615,1313688651,1381060687,1448432723,1515804759,2122153083,1163215743,1094795585,1162167619,1095321929,1094796609,1431261007,1431263573,-1633837925,1330200991,-1504817579,-1431721817,-1364349781,-81,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-497819393,-421141277,-353769241,-286397205,-219025169,-151653133,-84281097,-131845,1129709567,541414209,-2147450848,-1908324966,1166053185,1229538629,-1869640119,-1722838382,1498764623,-1667523943,1100979869,-1521135799,-1465407835,-1398035799,-1330663763,-1263291727,-1195919691,-1128547655,-1061175619,-993803583,-926431547]},{"sector":12,"length":512,"data":[-859059511,-791687475,-724315439,-656943403,-589571367,-522199331,-454827295,-387455259,-320083223,-252711187,-185339151,-117967115,-50595079,-259,1396786005,-2145378235,-1868922880,-1891529151,1162167680,-1907799735,-1835888497,1431279951,-1701226155,-1633837925,1330200991,-1499093675,-1431721817,-1364349781,-1296977745,-1229605709,-1162233673,-1094861637,-1027489601,-960117565,-892745529,-825373493,-758001457,-690629421,-623257385,-555885349,-488513313,-421141277,-353769241,-286397205,-219025169,-151653133,-84281097,-16909061,1129709567,541414209,-2147450848,-1908305766,1166053185,1229538629,-1869640119,-1722838382,1498764623,-1667523943,1100979869,-1521135799,-1465407835,-1398035799,-1330663763,-1263291727,-1195919691,-1128547655,-1061175619,-993803583,-926431547,-859059511,-791687475,-724315439,-656943403,-589571367,-522199331,-454827295,-387455259,-320083223,-252711187,-185339151,-117967115,-50595079,-259,1396786005,-2145378235,1163231232,-1891548863,1162167680,1095321929,-1835907697,1431261007,1431279701,-1633837925,1330200991,-1499093675,-1431721817,-1364349781,-1296977745,-1229605709,-1162233673,-1094861637,-1027489601,-960117565,-892745529,-825373493,-758001457,-690629421,-623257385,-555885349,-488513313,-421141277,-353769241,-286397205,-219025169,-151653133,-84281097,-16909061,1430716415,1163084099,-2147450848,-2071756159,-2004384123,-1937012087,-1869640051,-1802268015,-1734895979,-1667523943,-1600151907]},{"sector":13,"length":512,"data":[-1532779871,-1465407835,-1398035799,-1330663763,-1263291727,-1195919691,-1128547655,-1061175619,-993803583,-926431547,-859059511,-791687475,-724315439,-656943403,-589571367,-522199331,-454827295,-387455259,-320083223,-252711187,-185339151,-117967115,-50595079,-259,1280069443,4543553,33619969,100992003,168364039,235736075,303108111,370480147,437852183,505224219,739180831,1381320788,1328820779,369691225,1936879637,2037938037,243104891,1734631692,-960215790,-825439544,-690695472,-555951400,-421207328,-286463256,-151719184,456610102,-943379965,-808596535,-673852463,-539108391,-404364319,-269620247,-134876175,557410616,-2054980033,-1886549625,-1633905261,-1465605472,-1313952598,-1094927693,-2038136896,-1869706616,-1617062252,-1482316895,-1330664021,-1111771982,-16843073,-16843010,-16843010,-16843010,-16843010,-16843010,-16843010,-16843010,-16843010,-16843010,-16843010,-16843010,-1937587714,-1449616750,-2134656842,-1248358005,1616626344,1354209638,623127907,-25888680,1129709567,541414209,-2147450848,-2071756159,-2004384123,-1937012087,-1869640051,-1802268015,-2137549163,-2071756159,-2004384123,-1937012087,-1869640051,-1819111023,-1332308588,-1263291727,-1195919691,-1128547655,-1061175619,-993803583,-926431547,-859059511,-791687475,-724315439,-656943403,-589571367,-1746936099,-185799702,-168890387,-320083216,-252711187,-185339151,-117967115,-50595079,-259,1280069443,4543553,33619969]},{"sector":14,"length":512,"data":[100992003,168364039,235736075,303108111,370480147,437852183,505224219,572596255,639968291,707340327,774712363,842084399,909456435,976828471,1044200507,1111572543,1178944579,1246316615,1313688651,1381060687,1448432723,1515804759,1583176795,1111580767,1178944579,1246316615,1313688651,1381060687,1448432723,1515804759,2122153083,1163215743,1094795585,1162167619,1095321929,1094796609,1431261007,1431263573,-1638980529,1330200868,-1504817579,-1431748697,572632235,-1296977886,1094825139,-1162233791,606387387,-1027489601,1103480003,-892745663,-825373493,1162101796,1229538629,-623294135,1239276763,1330859999,-431009969,1431693544,-296134315,-219025169,-151653133,-84281097,-16909061,1329856511,1413565516,65605,67305985,134678021,202050057,269422093,336794129,404166165,471538201,538910237,606282273,673654309,741026345,808398381,875770417,943142453,1010514489,1077886525,1162101569,1263159623,1347374668,1431523921,1498961750,1583176794,791175519,1616862761,1162101569,1263159623,1347374668,1431523921,1498961750,1583176794,791175519,1149206057,1111640155,1212432962,1296910408,1212301901,1683252067,1616599892,609508196,1109696084,1381717069,1062486354,-1398035799,-1339940319,-1263291727,-1203617214,-1128547655,-1061215196,-993803583,-935181627,-859059511,1176817357,1212696646,1296911692,-589571367,1423920605,1414812739,1650648660,1616599899,-252711328,-185339151,-117967115]},{"sector":15,"length":512,"data":[-50595079,-259,1280069443,4543553,33619969,100992003,168364039,235736075,303108111,370480147,437852183,505224219,572596255,639968291,707340327,774712363,842084399,909456435,976828471,1044200507,1111572543,1178944579,1246316615,1313688651,1381060687,1448432723,1515804759,1583176795,1111580767,1178944579,1246316615,1313688651,1381060687,1448432723,1515804759,2122153083,1163215743,-1891548863,1162167619,1095321929,-1835907697,1431261007,1431279701,-1638949809,1330200991,-1499093675,-1431721817,-1364349781,-1296977745,1094825139,-1162233791,-1094861637,-1027489601,1103480003,-892745663,-825373493,1171378639,1229538629,-623294135,1239276763,1340166111,-431009969,1431693544,-296134315,-219025169,-151653133,-84281097,-16909061,1329856511,1413565516,65605,67305985,134678021,202050057,269422093,336794129,404166165,471538201,538910237,606282273,673654309,741026345,808398381,875770417,943142453,1010514489,1077886525,1145258561,1212630597,1280002633,1347374669,1414746705,1482118741,791173721,1616862761,1145258561,1212630597,1280002633,1347374669,1414746705,1482118741,791173721,1132428841,1531004249,1162042689,1229538629,1163746121,1548704603,1498764623,610031964,1092918876,1314213705,1062158670,-1398035799,-1339940319,-1263291727,-1203683007,-1128547655,-1061215196,-993803583,-935247419,-859059511,1143262925,1162167620,1229539657,-589571367,1340033501,1330597715]}],[{"sector":1,"length":512,"data":[1347479119,1498764629,-252711335,-185339151,-117967115,-50595079,-259,1280069443,4543553,33619969,100992003,168364039,235736075,303108111,370480147,437852183,505224219,572596255,639968291,707340327,774712363,842084399,909456435,976828471,1044200507,1111572543,1178944579,1246316615,1313688651,1381060687,1448432723,1515804759,1583176795,1111580767,1178944579,1246316615,1313688651,1381060687,1448432723,1515804759,2122153083,1163215743,1564564289,1162167619,1531529545,1532708189,1431264335,1499224405,-1638128548,1330200868,1095650901,-1431748785,572632235,-1296977886,1094825139,-1162233791,606387387,-1027489601,1103480003,-892745663,-825373493,1162101796,1229538629,-623294135,1239276763,1330859999,-431009969,1431654480,-296134315,-219025169,-151653133,-84281097,-16909061,1329856511,1413565516,65605,67305985,134678021,202050057,269422093,336794129,404166165,471538201,538910237,606282273,673654309,741026345,808398381,875770417,943142453,1010514489,1077886525,1145258561,1212630597,1280002633,1347374669,1414746705,1482118741,1549490777,1616862813,1145258561,1212630597,1280002633,1347374669,1414746705,1482118741,2088458841,1132428925,1547781465,1162042177,1229538629,1163615305,1565482076,1498764623,610097501,1092918877,1314213705,1067951694,-1398035799,-1339940319,-1263291727,-1203683007,-1128547655,-1061215196,-993803583,-935247419,-859059511,1143262925]},{"sector":2,"length":512,"data":[1162167620,1229539657,-589571367,1340033501,1330597715,-387389873,1498764629,-252711335,-185339151,-117967115,-50595079,-259,1280069443,4543553,33619969,100992003,168364039,235736075,303108111,370480147,437852183,505224219,572596255,639968291,707340327,774712363,842084399,909456435,976828471,1044200507,1111572543,1178944579,1246316615,1313688651,1381060687,1448432723,1515804759,1583176795,1111580767,1178944579,1246316615,1313688651,1381060687,1448432723,1515804759,2122153083,1163477887,1531010113,1162167619,1548306761,1549550939,1431264591,1499289941,-1638063011,1330200868,-1504817579,-1431748697,572632235,-1296977886,1094825139,-1162233791,606387387,-1027489601,1103480003,-892745663,-825373493,1162101796,1229538629,-623294135,1239276763,1330859999,-430088881,1431693544,-296134315,-219025169,-151653133,-84281097,-16909061,1329856511,1413565516,-536805307,-454827295,-387455259,-320083223,-252711187,-185339151,-117967115,-50595079,16776957,-1182422875,-1431730298,-1398896469,1974513582,2088401014,-2139128195,-1598901887,-1984716127,403968514,707274268,993605420,1363361597,1515672915,1818912862,-1953860754,-1095909492,420811523,724117277,1010445624,1380204606,1532515924,1835755871,-1886489489,379437456,185147239,588713735,859119909,504236593,1279922193,1919116616,-1202690485,96248911,1113671215,-1265330879,-2105303910,-810109530,-858861104,-1727657980,-707472430]},{"sector":3,"length":512,"data":[-976831558,-842282550,-703853112,-623257385,465034459,539238938,875703862,-572537657,1172189339,1313294681,1566347853,1902273632,-1480748688,-1752920673,-1815960682,2071446464,-16672647,1280069443,4543553,-255,-1,-1,-1,-1,-1,-1,-1,572653567,639968291,707340543,788474923,842084399,909456435,976828471,1044200507,1111572543,1178944579,1246316615,1313688651,1381060687,1448432723,1515804759,1583176795,1111580767,1178944579,1246316615,1313688651,1381060687,1448432723,1515804759,2122153083,1163215743,1094795585,1162167619,1095321929,1094796609,1431261007,1431263573,-1638949809,1330200991,-1499181483,-1431721817,-1364349781,-81,1094844415,-18367,-1094844417,-1,1107296255,-191,-1,1162101967,1229538629,-46775,1239285759,1330860031,-431009969,1431655508,-296134315,-219021329,-151653133,-84281097,-131845,1329856511,1413565516,65605,-1718052970,-1650680934,-1583308898,-1515936862,-1448564826,-1381192790,-1313820754,11842482,1061043516,1107312960,1178944579,575162112,639968291,707340327,1263159595,1330531660,100860417,185207048,252579084,353636881,437786390,522067228,1364205856,1431589714,100860417,185207048,252579084,353636881,437786390,522067228,1465262368,73029976,16844828,134480129,202115080,134283532,336855297,538713108,1544821780,23027220,320607244,1611923731]},{"sector":4,"length":512,"data":[1684234849,1751606885,1818978921,-1207893759,16871021,1920032091,1987409011,2025634679,2088467065,129859197,134744071,202116108,-2105442177,344132807,336860185,454788116,538713116,14079264,-623257467,-572750117,-522256162,-1996665,1280069443,4543553,-16843263,-16843010,-16843010,-16843010,-16843010,-16843010,-16843010,-16843010,386466046,741222189,706419222,235210287,1111505933,1212630596,139151945,892613383,1582113803,1885758560,-2072480142,-1937078138,-1549688944,-1230198107,-1078150472,287124252,1565265922,1868915551,-2089192079,-1953921147,-1566531953,-1247041116,-1094993481,320812830,1739809472,1431394131,1768778593,1484619649,1549494358,-1315660649,-1264730705,849029274,-1837412416,1317965229,908266641,403324222,-252645351,1414590704,-252698030,673640688,-252645136,1508962544,-252645286,-252645136,1824637221,2088200814,-252673408,2100883696,-1750690832,983144597,-1297169983,63029680,-1053817585,824189247,336738581,-264026815,1129709567,541414209,1124106272,1094796629,1162035521,1229538629,1161904457,1330614930,1498764623,-1672522417,1100979791,-1521135799,-1465407835,-1398035799,-1330663763,-1263291727,-1203683007,-1128547655,-1061175619,-993803583,-935247419,-859059511,-774910259,1162167761,1229539657,-589571367,1340033501,1330597857,-387389873,1498764629,-252711335,-185339151,-117967115,-50595079,-259,1396786005,-2145378235,1167737600,1094815297,1162167619]},{"sector":5,"length":512,"data":[-1907799735,-1835907775,1431279951,-1701226155,-1638949809,1330200991,-1499093675,-1431721817,-1364349781,-1296977745,1094825139,-1162233791,-1094861637,-1027489601,1103480003,-892745663,-825373493,1171378639,1229538629,-623294135,1239276763,1340166111,-431009969,1431693544,-296134315,-219025169,-151653133,-84281097,-16909061,1129709567,541414209,-2147450848,-1900638054,-763326537,-673655597,-1869639970,-1713204590,1508633315,-1667392871,-1247830371,-1511399210,-1465407835,-1398035799,-1330663763,-1263291727,-1195919691,-1128547655,-1061175619,-993803583,-926431291,-859059511,-774910259,-724315439,-656943543,-589571367,-522199331,-438050079,-387389723,-303306007,-252711187,-185339151,-117967115,-50595079,-259,1396786005,-2145378235,-1868922880,-1883795786,-724315520,-1897998376,-1835888497,-354182686,-1701226005,-1633837923,-522799713,-1499093527,-1431721817,-1364349781,-1296977745,-1229605709,-1162233673,-1094861637,-1027489601,-943340349,-892745529,-825373493,-758001201,-699804461,-623257385,-555885349,-488513313,-421141021,-353769240,-286396949,-219025169,-151653133,-84281097,-16909061,1129709567,541414209,-2147450848,1094796629,1166053185,1229538629,1167016265,1330614930,-1739238065,-1672522417,1100979791,-1521135799,-1465407835,-1398035799,-1330663763,-1263291727,-1203683007,-1128547655,-1061175619,-993803583,-935247419,-859059511,-774910259,1162167761,1229539657,-589571367,1340033501,1330597857,-387389873,1498764629]},{"sector":6,"length":512,"data":[-252711335,-185339151,-117967115,-50595079,-259,1396786005,-2145378235,-1868922880,-1883795786,-724315520,-1897998376,-1835888497,-354182686,-1701209877,-1633837923,-522799713,-1499093527,-1431721817,-1364349781,-1296977745,-1229605709,-1162233673,-1094861637,-1027489601,-943340349,-892745529,-825373493,-758001201,-690629421,-623257385,-555885349,-488513313,-421141021,-353769240,-286396949,-219025169,-151653133,-84281097,-16909061,1129709567,541414209,-2147450848,-1900638054,-763326537,-673655597,-1869639970,-1713204590,-1729369373,-1667392871,-1247830371,-1511399210,-1465407835,-1398035799,-1330663763,-1263291727,-1195919691,-1128547655,-1061175619,-993803583,-926431291,-859059511,-774910259,-724315439,-656943403,-589571367,-522199331,-438050079,-387389723,-303306007,-252711187,-185339151,-117967115,-50595079,-259,1396786005,-2145378235,-1868922880,-1883795786,-724315520,-1897998376,-1835888497,-354182686,-1701209877,-1633837923,-522799713,-1499093527,-1431721817,-1364349781,-1296977745,-1229605709,-1162233673,-1094861637,-1027489601,-943340349,-892745529,-825373493,-758001457,-699804461,-623257385,-555885349,-488513313,-421141021,-353769241,-286397205,-219025169,-151653133,-84281097,-16909061,1430716415,1163084099,-2147450848,-1900638054,-763326537,-673655597,-1869639970,-1713204590,-1729369373,-1667392871,-1247830371,-1511399210,-1465407835,-1398035799,-1330663763,-1263291727,-1195919691,-1128547655,-1061175619,-993803583]},{"sector":7,"length":512,"data":[-926431291,-859059511,-774910259,-724315439,-656943403,-589571367,-522199331,-438050079,-387389723,-303306007,-252711187,-185339151,-117967115,-50595079,-259,1280069443,4543553,33619969,100992003,168364039,235736075,303108111,370480147,437852183,505224219,1886350879,1953722993,2021095029,2088467065,1717920893,1785292903,2121100395,-2105442177,656508035,875506728,976696885,1094728763,1263159620,1532384078,1616797020,-2004384123,656509577,875506728,976696885,1094728763,1263159620,1532384078,1616797020,-1903326069,811150112,693642022,1211318059,593639752,1027420201,1044268870,1497846354,-1891675052,1161306666,1629758551,-1875758495,-1856951710,-1718052974,639802266,-1650699983,1667473310,-1549622880,631678372,-1448564955,-1381192790,774712723,943861299,-1347538631,1482011056,1179600306,1346519875,1280789584,1432313690,-1229613900,-1768572745,-1128547655,-1286779558,1129709567,541414209,-2147450848,-1900638054,-1652518946,-678786349,-1869640051,-1713204847,-1751673451,-1684301159,-1246978403,-1528176426,-1465473372,-1400001880,-1330663752,-1263291727,-1195919691,-1128547655,-1061175875,-993803583,-926497083,-859059511,-774910259,-757869871,-1210591531,-589571367,-522199331,-471604511,-387520811,-303306519,-252715539,-185339151,-117967115,-51643655,-260,1094931782,-2145368749,-1868922880,-1881239882,-1965843072,-1903306870,-1852731249,-1785357854,-1701210217,-1633838181,-522799700,-1499159319]},{"sector":8,"length":512,"data":[-1431787354,-1363628915,-1296977745,-1229605709,-1162233673,-1111638853,-1027489601,-960117565,-892745530,-825373493,-758001201,-690629933,-623265833,-555885349,-488513313,-422190109,-387323674,-571609621,-219025169,-151653133,-84281097,-16974613,1329856511,1413565516,-33488827,-16843010,-16843010,-16843010,-16843010,-16843010,-16843010,-16843010,33488638,421400584,286202911,85989906,638192388,707340327,774712363,554043183,403252002,926233393,1060977465,1195721537,1330465609,1465209681,1599953753,454255457,201461012,909390384,1044134456,1178878528,1313622600,1448366672,1583110744,605381216,1219235350,-2042149048,1401390982,-1937011885,1279937164,1213091404,-1739895992,-1555872872,-2136890973,-1686011520,-2054912869,-2087085691,-1338098301,-1263291727,-1970627942,-1128547655,-1061188211,-993803583,-930181435,-859059511,-1893413171,-1852796785,-1819110767,-589571367,-1528847213,-1785359212,-1751673194,-2105374584,757309343,-1987469152,-1566401123,-1667457378,-259,1280069443,4543553,-16843263,-16843010,-16843010,-16843010,-16843010,-16843010,-16843010,-16843010,268960254,471800094,437391631,184812832,673654282,741026345,120532525,589439238,858855433,993605429,1128349501,1263093573,1397837645,1532581717,1667325789,219421459,842009602,976762420,1111506492,1246250564,1380994636,1515738708,1650482780,236332053,1852928200,1953986159,-2139259787,-2038201727,-1836217209]},{"sector":9,"length":512,"data":[-1633574765,-1364876129,-1262633809,1717920949,1823189607,-1502383507,359361191,-252645354,-1448546064,-252674178,-2054885136,-252645136,-1997475600,-252645239,-252645136,-1903457767,-1802399601,-252668267,-1097338640,-1718042640,-1650680934,2037949346,-1179096728,-1212808163,-1313834118,-1280132166,-266883668,1129709567,541414209,-2130673632,-2054978687,-1987606651,-1920234615,-1852862579,-1785490543,-1718118507,-1650746471,-1583374435,-1516002399,-1448630363,-1381258327,-1330663763,-1263291727,-1195854154,-1128547655,-1061175618,-993803583,-926431291,-859059511,-774910259,-707537967,-573057067,-589571367,-522198819,-454761758,-387389722,-320017686,-252711186,-185273614,-117901578,-50529542,-259,1280069443,4543553,-16843263,-16843010,-16843010,-16843010,-16843010,-16843010,-16843010,-16843010,386466046,741222189,706419222,235210287,1111505933,1212630596,139151945,892613383,1582113803,1885758560,-2072480142,-1937078138,-1549688944,-1230198107,-1078150472,287124252,1565265922,1868915551,-2089192079,-1953921147,-1566531953,-1247041116,-1094993481,320812830,1739809472,1431394131,1768778593,1484226433,1549494358,-1315660650,-1264747857,-1466226534,-1837412441,1955499437,908266611,403324222,-252645351,1414590704,-252698030,690417904,-252645136,1508962544,-252645286,-252645136,1817088293,2080467566,-252673408,2117660912,-1750690832,983144597,-1297206783,62750128,19924239,824189247,336738581,-264026815]},{"sector":10,"length":512,"data":[1129709567,541414209,-2147450848,-1900638054,-763326537,-673655597,-1869640119,-1713204590,-1729369373,-1667392871,-1247895907,-1511399210,-1465473371,-1398035799,-1330663763,-1263291727,-1195919691,-1128547655,-1061175619,-993803583,-926431291,-859059511,-791687475,-724315439,-656943584,-589571367,-522199331,-438050079,-387455259,-554964247,-252711187,-185339151,-117967115,-50595079,-259,1280069443,4543553,33619969,100992003,168364039,235736075,303108111,370480147,437852183,505224219,572596255,639968291,707340327,774712363,842084399,909456435,976828471,1044200507,1111572543,1178944579,1246316615,1313688651,1381060687,1448432723,1515804759,1583176795,1111580767,1178944579,1246316615,1313688651,1381060687,1448432723,1515804759,2122153083,1163215743,1094795585,1162167619,1095323465,1161905473,1431261007,1431259477,609559588,1330200911,-1504817579,-1437646937,572632235,-1296977886,-1229605709,-1162233673,-1094861637,-1027489601,-960117565,-892745529,-825373493,-758001457,-690629421,-623257385,-555885349,-497819425,-421141277,-353769241,-286397205,-219025169,-151653133,-84281097,-16909061,1129709567,541414209,-2147450848,-1903193958,-1988065647,-1937010039,-1869640040,-1718840687,-1734502743,-1667523943,-2036359523,-1516855413,-1465407835,-1398035799,-1330663763,-1263291727,-1195919691,-1128547655,-1061175619,-993803583,-926431547,-859059511,-791687475,-724315439,-656943403,-589571367,-522199331]},{"sector":11,"length":512,"data":[-454827295,-387455259,-320083223,-252711187,-185339151,-117967115,-50595079,-259,1280069443,4543553,33619969,100992003,168364039,235736075,303108111,370480147,437852183,505224219,572596255,639968291,707340327,774712363,842084399,909456435,976828471,1044200507,1111572543,1178944579,1246316615,1313688651,1381060687,1448432723,1515804759,1579757352,1111580767,1178944579,1246316615,1313688651,1381060687,1448432723,1515804759,2116628264,1163477887,1564564289,1162167619,1532707908,1549550941,1432051023,1499289945,610018396,1330200868,1330200917,-1431748779,572632235,-1296977884,-1229605709,-1162233673,-1094861637,-1027489601,-960117565,-892745529,-825373493,-758001457,-690629421,-623257385,-555885349,-497819425,-421141277,-353769241,-286397205,-219025169,-151653133,-84281097,-16909061,1129709567,541414209,-2147450848,-1908305766,1166053185,-1953807035,-1869640051,-1722838382,-1751689843,-1667392871,-1533043043,-1532516699,-1465407835,-1398035799,-1330663763,-1263291727,-1195919691,-1128547655,-1061175619,-993803583,-926431547,-859059511,-791687475,-724315439,-656943403,-589571367,-522199331,-454827295,-387455259,-320083223,-252711187,-185339151,-117967115,-50595079,-259,1280069443,4543553,33619969,100992003,168364039,235736075,303108111,370480147,437852183,505224219,572596255,639968291,707340327,774712363,842084399,909456435,976828471,1044200507,1111572543]},{"sector":12,"length":512,"data":[1178944579,1246316615,1313688651,1381060687,1448432723,1515804759,1583176795,1111580767,1178944579,1246316615,1313688651,1381060687,1448432723,1515804759,2122153083,-2105442177,-2038070141,-1970698105,-1903326069,-1835954033,-1768581997,-1701209961,606348324,1330200868,-1504817579,-1431748697,572632235,-1296977886,-1229605709,-1162233673,-1094861637,-1027489601,-960117565,-892745529,-825373493,-758001457,-690629421,-623257385,-555885349,-497819425,-421141277,-353769241,-286397205,-219025169,-151653133,-84281097,-16909061,1129709567,541414209,-2147450848,-2071756159,-2004384123,-1937012087,-1869640051,-1802268015,-1734895979,-1667523943,1100979869,-1521135799,-1465407835,-1398035799,-1330663763,-1263291727,-1195919691,-1128547655,-1061175619,-993803583,-926431547,-859059511,-791687475,-724315439,-656943403,-589571367,-522199331,-454827295,-387455259,-320083223,-252711187,-185339151,-117967115,-50595079,-259,1280069443,4543553,33619969,100992003,168364039,235736075,303108111,370480147,437852183,505224219,572596255,639968291,707340327,774712363,842084399,909456435,976828471,1044200507,1111572543,1178944579,1246316615,1313688651,1381060687,1448432723,1515804759,1583176795,1111580767,1178944579,1246316615,1313688651,1381060687,1448432723,1515804759,2122153083,1163215743,-2042543807,1162167619,1099778377,1162167695,1430865231,1431279701,1431674011,1335992479,-1499093931,-1431746137,-1364349781]},{"sector":13,"length":512,"data":[-1296977745,-1229605709,-1162233673,-1094861637,-1027489601,-960117565,-892745529,-825373493,-758001457,-690629421,-623257385,-555885349,-488513313,-421141277,-353769241,-286397205,-219025169,-151653133,-84281097,-16909061,1129709567,541414209,1124106272,1094796629,1162053185,1229538629,1167016333,1162822981,-1739238071,-1667541681,-1600170667,-1537912927,1235723941,-1398035799,-1330663763,-1263291727,-1195919691,-1128547655,-1061175619,-993803583,-926431547,-859059511,-791687475,-724315439,-656943403,-589571367,-522199331,-454827295,-387455259,-320083223,-252711187,-185339151,-117967115,-50595079,-259,1280069443,4543553,33619969,100992003,168364039,235736075,303108111,370480147,437852183,505224219,572596255,639968291,707340327,774712363,842084399,909456435,976828471,1044200507,1111572543,1178944579,1246316615,1313688651,1381060687,1448432723,1515804759,1583176795,1111580767,1178944579,1246316615,1313688651,1381060687,1448432723,1515804759,2122153083,-2105442177,-2038070141,-1970698105,-1903326069,-1835954033,-1768581997,-353789801,-320077829,-1231382093,-38232933,-1061307138,-960191550,-1499093816,-1431721817,-525488981,-758067538,-1246454353,-1160136265,-1044398405,-909654589,-842216502,-707538481,-556083242,-1583308898,-471747880,-235934235,-84478477,-589440044,-256855570,-101190414,-387456289,-1560746778,1329856511,1413565516,65605,67305985,134678021,202050057,269422093]},{"sector":14,"length":512,"data":[336794129,404166165,471538201,538910237,606282273,673654309,741026345,808398381,875770417,943142453,1010514489,1077886525,1145258561,1212630597,1280002633,1347374669,1414746705,1482118741,791173721,1616862761,1145258561,1212630597,1280002633,1347374669,1414746705,1482118741,791173721,1132428841,1531004249,1162042689,1229538629,1163746121,1548704603,1498764623,610031964,1092887644,1314213705,1062158670,-1398035799,-1339809247,-1263291727,-1195919691,-1128547655,-1061175619,-993803583,-926431547,-859059511,-791687475,-724315439,-656943403,-589571367,-522199331,-454827437,-387455259,-320083223,-252711187,-185339151,-117967115,-50595079,-259,1280069443,4543553,33619969,100992003,168364039,235736075,303108111,370480147,437852183,505224219,572596255,639968291,707340327,774712363,842084399,909456435,976828471,1044200507,1111572543,1178944579,1246316615,1313688651,1381060687,1448432723,1515804759,1583176795,1111580767,1178944579,1246316615,1313688651,1381060687,1448432723,1515804759,2122153083,1163477887,1564564289,1162167619,1531529545,1532708189,1431264335,1499224405,610018396,1330200868,1095650901,-1431748785,572632235,-1296977884,-1229605709,-1162233673,-1094861637,-1027489601,-960117565,-892745529,-825373493,-758001457,-690629421,-623257385,-555885349,-497819425,-421141277,-353769241,-286397205,-219025169,-151653133,-84281097,-16909061,1129709567,541414209]},{"sector":15,"length":512,"data":[-2147450848,-1908305766,1166053185,1229538629,-1869640119,-1722838382,1498764623,-1667392871,1100979869,-1521135799,-1465407835,-1398035799,-1330663763,-1263291727,-1195919691,-1128547655,-1061175619,-993803583,-926431547,-859059511,-791687475,-724315439,-656943403,-589571367,-522199331,-454827295,-387455259,-320083223,-252711187,-185339151,-117967115,-50595079,-259,1280069443,4543553,-16843263,-16843010,-16843010,-16843010,-16843010,-16843010,-16843010,-16843010,268960254,471800094,437391631,184812832,673654282,741026345,120532525,589439238,858855433,993605429,1128349501,1263093573,1397837645,1532581717,1667325789,219421459,842009602,976762420,1111506492,1246250564,1380994636,1515738708,1650482780,236332053,1768383916,1936682347,2071558005,-2088665219,-1953921147,-1819177075,-1684433003,-1549688931,1751540901,1919839338,2054714996,-2105508228,-252645244,-252645136,-252645136,-252645136,-252645136,-252645136,-252645136,-252645136,-252645136,-252645136,-252645136,-252645136,-1970764048,-1836020084,-1701276012,-1566531940,-1485803100,-1415009882,623191466,-266789459,1129709567,541414209,-2147450848,-2071756159,-2004384123,-1937012087,-1869640051,-1802268015,-1734895979,-1667523943,-2137022819,-2071756159,-2004384123,-1937012087,-1332769139,-1263291727,-1195919691,-1128547655,-1061175619,-993803583,-926431547,-859059511,-791687475,-724315439,-656943403,-589571367,-1864376611,-1802268015,-1734895979]}]],[[{"sector":1,"length":512,"data":[-1667523943,-257974627,-185404688,-118032652,-50595079,-259,1396785996,2105413,33619969,100992003,168364039,235736075,303108111,370480147,437852183,505224219,572596255,639968291,707340327,774712363,842084399,909456435,976828471,1044200507,1650540607,1717920867,1785292903,1852664939,1920036975,1987409011,2054781047,1583176795,1650548831,1717920867,1785292903,1852664939,1920036975,1987409011,2054781047,2122153083,-1566465921,-1499093853,-1431721817,-1364349781,-488513361,-421141277,-353769241,-286397205,-1566465809,-1499093853,-1431721817,-1364349781,-1296977745,-1229605709,-1162233673,-1094861637,-1027489601,-960117565,-892745529,-825373493,-758001457,-690629421,-623257385,-555885349,-488513313,-421141277,-353769241,-286397205,-202247697,-134875661,-84281097,-16909061,1329856511,1413565516,65605,67305985,134678021,202050057,269422093,336794129,404166165,471538201,18816541,1213475855,841699925,173625140,1880430089,2004185970,2088466808,1628180093,1158834020,-892811580,-758067508,-623323436,-488579364,-353835292,-219091220,1362556660,704846647,-875968571,-741224499,-606480427,-471736355,-336992283,-202248211,1765341173,1866408249,1869573999,611287151,724200040,-1752102517,1869588633,-1035814987,1283618677,-1701277044,2125900187,-1987607165,-1821208691,1848717461,1852730990,-1566531940,1852730990,1852745380,1852730990,1856809582,1852730990,-1313971090,-1094927693]},{"sector":2,"length":512,"data":[-2038136898,1852730990,-1905358200,-1651075952,-1516002913,-1347572825,119059120,-1111772069,756921664,-1179074274,-9408829,1396786005,-2145378235,-2105442304,-2037964669,-1970698208,-1903326069,-1852731249,-1768581997,-1701209961,-1886544762,-1835953776,-1499093867,-1431721817,-1364349781,-1296977745,-1229605709,-1162233673,-1094861637,-1027489601,-960117565,-892745529,-825373493,-758001457,-1529490221,-623270235,-1465393957,-1398036001,-1212762707,-960578120,-791687225,-772673297,-722086958,-705038089,-23554410,1329856511,1413565516,65605,67305985,134678021,202050057,269422093,336794129,404166165,471538201,538910237,606282273,673654309,741026345,808398381,875770417,943142453,1010514489,1077886525,1145258561,1212630597,1280002633,1347374669,1414746705,1482118741,1549490777,1616862813,1145258561,1212630597,1280002633,1347374669,1414746705,1482118741,2088458841,-2139128195,-993803583,-926431547,-859059511,-791687475,-724315439,-656943403,-589571367,-2116034851,-2054913150,-2004384067,-1937012087,-1869640051,-1802268015,-1734895979,-1667523943,-1600151907,-1532779871,-1465407835,-1398035799,-1330663763,-1263291727,-1195919691,-1128547655,-524238914,-454827295,-387455259,-320083223,-252711187,-185339151,-117967115,-50595079,-259,1280069443,4543553,33619969,100992003,168364039,235736075,303108111,370480147,437852183,505224219,572596255,639968291,707340327,774712363,842084399,909456435]},{"sector":3,"length":512,"data":[976828471,1044200507,1111572543,1178944579,1246316615,1313688651,1381060687,1448432723,1515804759,1583176795,1111580767,1178944579,1246316615,1313688651,1381060687,1448432723,1515804759,2122153083,-1078034305,-1010646592,-943274556,-875902520,-808530484,-741158448,-673786412,-606414376,-539042340,-471670304,-404298268,-336926232,-269554196,-202182160,-134810124,-67438088,-2088599044,-2021227132,-1953855096,-1886483060,-1819111024,-1751738988,-1684366952,-1616994916,-1549622880,-1482250844,-1414878808,-1347506772,-1280134736,-1212762700,-1145390664,-16925252,1329856511,1413565516,65605,67305985,134678021,202050057,269422093,336794129,404166165,471538201,538910237,606282273,673654309,741026345,808398381,875770417,943142453,1010514489,1077886525,1145258561,1212630597,1280002633,1347374669,1414746705,1482118741,1549490777,1616862813,1145258561,1212630597,1280002633,1347374669,1414746705,1482118741,2088458841,-2139128195,-2071756159,-2004384123,-1937012087,-1869640051,-1802268015,-1734895979,-1667523943,-1600151907,-1532779871,-1465407835,-1398035799,-1330663763,-1263291727,-1195919691,-1128547655,-1061175619,-993803583,-926431547,-859059511,-791687475,-724315439,-656943403,-589571367,-522199331,-454827295,-387455259,-320083223,-252711187,-185339151,-117967115,-50595079,-259,1396786005,-2145378235,-2105442304,-2038070141,-1970698105,-1903326069,-1835954033,-1768581997,-1701209961,-1633837925,-1566465889]},{"sector":4,"length":512,"pattern":0,"data":[-1499093853,-1431721817,-1364349781,-1296977745,-1229605709,-1162233673,-1094861637,-1027489601,-960117565,-892745529,-825373493,-758001457,-690629421,-623257385,-555885349,-488513313,-421141277,-353769241,-286397205,-219025169,-151653133,-84281097,-16909061,1128726527,542261576,16782880,65280,772669984,1532768034,1014774365,993864510,1111818028,538989379,32,1111817984,538989379,-2130704864,16572575,1111817984,538989379,-2130705376,-16777025,1396916804,69214240,16548096,1111817984,538989379,-2130705376,1291845885,1329864787,1700143187,1869181810,540418158,1126777640,1920561263,1952999273,943272224,959524145,1293956153,1869767529,1952870259,1919894304,1766596720,1936614755,1293968485,1919251553,543973737,1917853741,1919250543,1864399220,1766662246,1936683619,544499311,543976513,1751607666,1914729332,1919251301,543450486]},{"sector":5,"length":512,"data":[23485005,65567,40370184,64487423,512,-1048320,82,1263534351,1163151692,1886339872,824192626,758135097,1344287289,1380013899,1850286149,1092628067,1377856620,1952999273,1699881075,1987208563,484453,9043968,41,12976160,94896127,128,80609296,30,1,0,0,0,-1174005320,328655,33962752,-1273269760,18397705,550314445,544501582,1970237029,1830840423,1919905125,539829369,768642560,-1903165415,-994488128,1476342528,-67025730,-1865701901,1406897405,2999169,-846407165,-461323637,-1962626801,-1947806734,1323946446,738102094,-1898435608,-203714875,-577831771,12518919,-1376374015,1096341,-1783813141,904597682,280139181,-1783810325,1005260978,280139181,-1783800341,1592463538,280139181,-1783799829,141693106,1257099684,-126618508,-617363149,1951067601,-774647355,-999011603,-611986479,-305064076,-775982006,117145811,-305067150,-1392216758,-787434859,-1886769453,-109051551,863335434,49906651,-305059212,1922921546,1257099555,-741237644,1951067601,-774647397,74795757,280139181,-75443247,773223170,24231818,1457031852,-215222389,-216070626,-346153052,1257099648,-1783823243,-741273422,1913191296,1257099738,-1783823243,-741273422,1914174336,1257099722,-1783823243,-741273422,14672769,-1125392506,-2134375764,-12844843,-1956937355,281248747,-1850949581,61673443,-1866428733,19306413,-335945187]},{"sector":6,"length":512,"data":[-1023169045,-1896174190,-69170222,1406665645,-980528979,-1070342770,-930359157,-393490293,-125046645,33555403,328714,0,134678016,131337,84148992,6,0,151521024,218893066,0,649330688,13312461,-340721397,1919243785,536871027,808726066,521012766,2062026510,335901496,1275115560,-1205926112,472323,512306744,-1943120296,-1202300410,260656385,89526100,39230238,-164417200,12189491,10810113,-1667482107,268379480,-2146984624,1409347836,1235402778,1323867478,911324196,-1942683647,2114373194,-930348970,-1064380274,1994951456,616039937,1447696462,1280065858,621676374,1090721722,598741250,-1945662790,1487976650,78751904,-805050157,1745234738,-16236542,-1957258978,1243004866,1384295420,1451598593,-1895595613,2073372997,2131329955,-1928069117,-1898279338,8436418,-1589568844,427344,470145163,1212699541,638189570,1991,1242473307,1160170750,723231618,652958936,1107828225,-854643295,1965600272,-1627369456,84363823,-956020176,-2142621434,-402636798,-1101659368,47712129,1343536990,1472069724,540835910,64116,661991173,1057062016,-759553675,33744976,-558216694,-1174275066,703989482,116786693,1359087344,-358051608,19065089,687978559,1073906829,-13492853,-397792275,302072034,235447528,642825991,1946172800,1194285330,678694151,1560285702,1946748659,739148013,1894252874,-1140190331,-381018975,61284001,16574026]},{"sector":7,"length":512,"data":[-1896201944,1241955536,1547600123,-1600830378,-1173899771,1961380819,-986251244,1946229938,1059892440,3954,192355132,-1818697520,-1986527442,-372970748,79104020,582505502,5224997,-1021353088,777015838,1448613573,1076167608,1409996809,182584612,773544536,352323318,1962890830,-822038525,100679324,1963080869,139677711,992922448,-1739039753,785345508,229909958,168100884,-10360576,1250464302,1967663104,614542888,1250730798,-1984117488,-1240370160,-1582038399,-1461106030,-272988149,1146678090,-8722424,12249196,587268103,-385935127,-1101659946,1525172789,1577123858,1454882567,27191468,11142515,-341136384,1918975221,2004499462,-1428159486,224395324,574363252,658244724,-527769995,269746860,1975794182,-1093604362,10545203,1388511344,1564858298,-389850624,65542,1965833344,-1404025331,-83803961,-143390404,219306062,309699,820511024,150637315,-1914174680,20995,378132227,727339516,-29455878,1330035281,602409002,1375268168,-1990901714,-1018037706,436864652,-183959530,-1174384298,-397258950,889869600,102368865,187026362,236062794,11620749,-388889600,190553,254067850,338137092,656932928,-1012236508,179589712,-213240902,1482293328,270577859,-135789085,1090118399,79807233,365299622,-451580668,1414535685,-251214584,345694228,33554704,111021202,347409477,82121050,168101163,-65915704,211359263,966792089,1359919646,-1157661208,106075162]},{"sector":8,"length":512,"data":[103155319,103369329,107677234,1074071102,1363805797,-16818199,-1958049786,-1266548472,11561552,99098814,1397782014,-1291836074,708052126,8764,-209714315,33259521,904403828,1008104192,1965036832,21269010,-2002384377,-2012992886,65750539,-803138556,515398494,1998751238,775294051,440467538,123621936,1452359759,786466384,-1911671157,117442014,-1073042406,-1002826892,-336067210,-351533824,-533025782,32179318,89716993,-1959961088,-951445970,-2141810426,-2109675520,1380975162,-1979818008,-1960283060,335741462,1912712680,-1885339629,-896859751,1942629210,33483011,1996816449,-638103207,272305524,-754324727,2032158212,63015712,1929717954,-1258210043,401089497,1948797182,1141803274,-1024852057,-142495713,-1378841683,823036781,42843978,-2353152,-225716082,799028822,12874,-51740,1455419427,-31463343,-1262056610,906203780,-453638878,129500416,-389510319,827981410,1085079129,-30349167,510937434,92550690,1382096896,-411760728,-341168720,338094309,-532742136,836168701,-32229690,-1057078840,-167047124,-1730619382,65065283,1438813128,191764106,-829744920,729680386,2134682830,1931538547,-1342037760,-220026322,11141296,-1276602072,-37820163,-1992926945,139503670,-1893823434,-19411114,486703185,-152567528,1543151872,56206,995737742,1925389310,-251442937,1107163395,1235491624,-1339579149,1241564199,503799568,48495321,-428665536,-880293077,-885580457]},{"sector":9,"length":512,"data":[520495968,-1914119957,1258332451,455354667,-1230066652,-998962608,635012947,1532961958,192237698,-397935127,-2046820312,-1411121864,-873931541,869413884,2091227,477233157,1229377674,302585576,1352721401,31385616,-790037,1003,1702035210,76203000,275918892,1945438780,604741712,151465055,272368498,-1778343691,-471270261,45681953,1625838336,1543491138,742594440,108275516,45293832,612697337,578661446,95502336,-495639494,1124567110,146533867,-3950256,-343803021,1946779648,-61872121,1321402997,1454829185,118411,-956510613,1740242949,-397246389,-236323698,-1811617542,1254365411,-1375985432,-1608747949,1967462146,-2134537236,977019594,875057875,1493125272,-1082336654,1050633,1974399526,-783923508,618236897,-12582719,-347466057,1163084759,-8198076,-1065351329,1439402779,-399179232,-2142175330,1979436085,115874021,503732220,-2079717113,-1070400442,133987242,643762552,202704266,-867162884,1337113112,1241246952,-1158210735,9862144,-387514368,-528023842,-225834638,-287124342,268469480,1946696704,1954495521,1949121560,25825387,-1338338962,-1358770168,-538706962,-889189909,-2147458036,192152313,-695549442,-175499968,-335857432,1990326,-1444196106,41966615,-703964698,1192593446,1107291133,1471715649,-1343714941,-2097142277,-947158167,57935652,1358911977,-77142016,-1039778071,-347123713,-1744770829,1458175931,-855526149,1381483297,-1497542136,-1165841839]},{"sector":10,"length":512,"data":[889326270,1599747380,20931,16352036,-472839052,57926353,1224854403,-269811712,-1017524214,44237963,63341394,41944971,-1560099965,1589268996,-486866637,-1022748184,-960574339,-1190854584,378208272,-1389475296,772043321,1149969536,1958742814,-501437692,-1735843348,1218232003,134658859,1244531840,-1979665139,675950606,190882318,-1013078808,1257059066,272240716,378202738,378442581,-89993959,1342257187,1343311874,1453983431,492130559,110040760,84542478,1007722777,2129360383,83919098,41222140,-1952922490,-2020884776,1007069601,168798832,-1952867948,219580758,1342341814,-1946530991,508073119,663438,-1978261852,25135623,-1994401654,294257950,-162555362,1969137158,-1315696375,277745679,-1007020248,7291881,1962523392,1175751416,-25152374,1181316109,1649019624,1948256765,-1831485600,-922288092,208930107,247683,-8306413,-227391290,1963475947,1340626183,-29006847,671088727,119431048,23764365,395041067,10528143,-1134472607,336455929,1617167235,21399,1543284400,-1979906584,-239418601,-2141721781,1190790168,-1637681547,350206718,-1863824544,-386342615,-617350856,-1385541568,10832704,2126448116,1312,1974465161,-2132178369,28839905,-754974720,1975748032,198707984,281409232,1426063989,-135737293,-1160975368,18155,1364678265,-1090518087,-225750522,1599710451,-1168233344,-1444327574,2002029052,2012110853,369528541,-2118166966,1426064384,-276694411]},{"sector":11,"length":512,"data":[647430274,-2136820596,-1071510272,1241948885,-1089858072,234925420,113653511,-348039564,120956435,774826752,-754693368,22442758,1024270571,34405892,1929384936,20058068,1007420713,1397753374,1388445777,784347990,-1269401949,1553117495,-2139810168,50987615,645136532,-217744152,-702545781,1298808448,1241609473,1965964362,-2144814075,557770797,90177681,1962962664,-1589621014,80098559,1503669760,-1608086994,-469084332,371529588,705464920,-1799639984,864031306,2023972041,1577357142,1482381658,-1397211024,1945715944,1394951688,317414023,289669127,1140918626,539755874,-1006680952,84171580,-143384528,1015167804,17921085,1022049519,976143148,-1576614843,591657076,-20074239,-2008414560,1451139618,314459654,-1174474240,-1510801326,-1459897661,535382610,-15091465,-398524256,512491233,1212121524,-521833147,41910404,273924952,74799173,1158709284,1244481115,369262911,780877831,1251213340,1962364392,-82450331,1829258728,718053634,1378657106,-396606168,134740604,-2114292473,1378096210,237379209,234885635,1378356839,1543162088,-148993896,1397428784,-1608592502,-1029552898,183644852,1716143296,274371346,-402295482,-1363016765,1587938307,-1020979028,-1168307696,-11286528,175473920,-420883917,-1303779326,845015288,856493825,-1172736961,174869399,1089885417,1135896948,1965560399,1968026723,-92189091,1968220217,1107704582,1363312752,-32511750,-1514666381,-1207798039,-473349374]},{"sector":12,"length":512,"data":[45110904,1119136290,38670206,33609989,-1459561853,681789960,-1270216192,2095650366,1264302593,542162152,-182457866,113724137,620775971,103089720,1342234601,1918468434,-38147867,-1974672526,1463966290,-1556493685,1193878613,120169255,1242415143,-125046133,1478164664,1434473307,984400,61987025,-666367999,-947136885,1930492547,-1535113835,-770969097,54526324,780628675,-1464522710,1049198711,-1993340277,1482330678,-494675317,525691407,96798,-1554613673,-256289156,1979059199,1246530306,-2142036273,-980408694,1712987158,192028507,173049856,108316731,1425655947,721868544,14582777,1420151051,-1633446751,1482401,141826216,-561262333,-160047349,1179688332,1297089786,-380958790,-1346702081,-117036908,2903028,-386715996,-387448264,-1959103748,335842193,-97895,-1106872705,21675781,195428351,1376337558,2651834,-175380401,-11605930,854078835,-398458880,532348032,-390403253,-639041497,1487965171,1448099572,-1206975870,-1888861440,-1609319932,-1687008432,1627898359,1790687893,-2138035706,-131399546,1250559631,1200162558,-1900534911,12794840,-170801648,1242997038,-1044380398,21340974,922684050,-879996889,54838059,-1836175866,-1014769525,-1945072296,-660721976,-762001228,-1742186489,-1557653214,1252000924,-86878959,1615142907,1886545109,1022592488,84436433,89653270,-1014085096,168216358,1330683904,244065795,1053058316,415597222,1042105484,180491294,-2093041531]},{"sector":13,"length":512,"data":[-2123477784,2139411210,-1928687862,-1847882666,-1573663469,648433738,1195836811,439486066,238856329,-1840200886,1028327263,-350491902,-1542322883,1029772040,134893576,142588427,-1174206453,1269023232,-369865752,-1992887634,-1172815647,-935965813,-2047271663,424583424,457308930,1077146469,-1581322940,3139672,-106627029,-1979683608,-486492728,139486011,1592326153,53925893,-1958672249,5433595,-1442792128,41352507,-186454133,-25047317,1966473537,480360985,1396684018,-1186973615,1865286144,537156441,1017907732,839218202,-1023318011,1242181248,-952761848,-1007810554,-385890328,-156151808,1941632883,-219485877,-520097816,-353869564,48484607,516145930,1397858304,-1140850759,634212900,525949787,268503771,1698041894,1160268331,917820298,1947745641,1746141287,-1557262002,-1970731952,89263684,-1559943433,411373912,1110867495,-1590282874,1093181566,387332910,354563955,487011842,678707203,959327178,712195078,1821660208,590030128,-1870389174,1040251523,72942382,1981686815,2063597830,-1006813463,11669582,-961544180,84233990,57133142,-591166232,236501749,158466049,-386546217,71734282,-396972428,-1907296733,481577488,579864650,1243482144,1082914702,-768346588,1008730195,1007711472,1007449126,1007186990,-570418634,1191408958,-398661909,1593876596,1500813884,1010423868,1012233420,1959591936,1960983632,1960918092,1960852552,688137284,-1175307010,306380941,218187008,1009874084]},{"sector":14,"length":512,"data":[1009611942,1811969198,1957444649,1957313573,477227809,1022886464,1007973456,1955620440,9976843,1007121491,-351963952,50414165,133636148,151424087,-1975506601,-972682334,113757189,375477932,17689030,-1601320486,-1427635581,190705,-386602022,-1622342804,116738522,1007926490,-555745280,-1979681308,2105550350,578101505,34735747,-2037120277,-2095614484,306842686,302254352,1241948417,9511396,24570321,-834919708,116855157,1243631936,1869875200,251621051,-349985024,1976318995,218348386,1447592454,-13500067,-475036416,-946929869,50826022,-1534655905,512183114,-1977975945,34503510,-2092722496,-1993997585,672990733,33883715,537200896,-511626551,-33227265,61285769,16247083,570463650,16781850,1447626486,1963103233,-342296051,-1336522731,-434062081,-1205273823,1572494602,517605896,-661733325,268438767,-1944866474,314641934,180071557,200933382,1152123020,9309172,-526385121,1515805528,1600019805,-1961425145,2073208870,73479935,72401180,-1048569081,-256644913,-151662616,-1895821243,-504758594,113542141,736855376,-554923179,569073074,1342850276,772182830,-1894427232,1017775757,1973166240,140935429,777869509,1499074953,269913134,-1871297135,-687844210,503713212,1280661079,1375903820,374362961,1344869407,680470296,-2147216619,557186748,507127715,-283697657,-1127110302,1363346314,-1258488900,-1556682919,921511056,90119817,369451278,90387017,1040540982]},{"sector":15,"length":512,"data":[-1195074969,1795556713,-1455541930,-1946347373,741670919,-1957230658,44046,101376854,-964477756,-119364604,-1374748921,-1219063487,1635975432,-187176721,-2131880215,-224898219,-319619608,1527396622,-371855444,-275436762,720534811,578158912,1519579867,1351336942,1988718256,503851812,38440968,-284608896,1966947456,-689420573,495887346,576329617,923075146,-617349168,-387414337,1946167022,1398221343,1542632424,1411423,38111488,1124452227,1963719555,1274329826,-667661591,212646389,316910098,-987357649,-1929372107,-12269904,536077004,-448756216,-34856530,157104052,-391332437,-154926814,1979110039,-1659351307,-267851581,975325568,-890099788,-1064402784,-397846241,-1494007502,407823220,1376994184,363020292,-1394331054,1377280814,663308367,-2071914232,421201500,1196563774,-1169211280,-1813491802,-788455442,197782369,1638692306,-521599742,2143273969,1711269974,2139680716,-1993665368,79005990,809897668,250498536,2068846855,14912,1609453374,-387080216,24505846,-1077333053,1085749312,25877299,4267578,-1040613120,-385650176,-2142829134,1962999677,-350203655,964707301,-645406456,8045451,285590469,869829446,-1577055552,1463903142,-1269349470,-1559786998,1454440528,-122681658,1744826627,14595073,-1274614958,-1274876965,432309977,419758846,-402106904,1971449218,340322708,-4915347,646483740,1431937563,994385576,38535168,-402278680,1166673238,1925200898,-1733769660]}],[{"sector":1,"length":512,"data":[1048576261,1789567257,101455908,-1677711349,17568129,119803371,-989835252,1477181967,-385792632,-315476475,1426804768,-32673040,1409290766,-1996329088,-380194282,401081578,535628419,-1977935046,1019348304,1860989955,18999585,-1563392,1094561260,84702284,1879361624,-401079097,-897454879,272907348,-1543031865,-2132266078,-382142558,258108657,74783695,368519092,1289954327,-999100471,-395474723,1389963684,-1368042870,2120716898,690307693,-385938468,-1970350104,-1157328046,129718079,-1492670302,-1039723517,1946286244,1963198336,1292402688,1860896770,-1957215071,-1973991914,344271390,1949122072,-2113222945,1435078883,-1432702972,307302978,48934914,-75433438,171996164,1803715547,1968603414,-1341970890,80481000,725883761,-464093434,208297,1455161,1946300320,-930398191,1975597976,-1574648280,-31724764,273934605,-398512446,338423747,-1807076565,-2147143674,1534394873,679518935,-402413757,11398100,-1849729588,109570108,-523222412,-798619390,82373555,-754861308,-1410847536,-366679293,437662974,240466925,282813430,164580480,1074532132,-1412337512,1577288790,-399114046,-1622873220,-2081554352,1265844474,-1031017627,349373361,369683024,-771283899,1218243040,108928010,56525032,542550373,846577698,643254688,144714030,623539707,102402388,-1577053069,710196116,1530136189,705178214,411173414,-437713307,-2113555454,1929547592,2015791359,740852965,393488716,-2009988632]},{"sector":2,"length":512,"data":[-8462920,160567784,1343699479,-353769099,436385508,773908573,-710726651,-351922923,-408005421,-905517066,1470521396,-1781526370,552996866,-358874218,272645248,-2129759183,1514947388,406913645,-385707136,211550815,82510860,871524914,1362155456,-397395539,923929276,-362675350,-1358057312,1476663298,5768584,611638026,-872512640,134341504,705560925,286464057,1133184775,1963085895,132388946,-1979669407,1525351080,-1071371746,-1061123012,31292277,-1340800612,812653578,1075556483,1956510113,-1595341424,-954103020,204895274,1249190593,1131677783,537380036,805780596,1099052404,9777095,999872592,-1977256509,-2146566627,1106641229,1566580216,201634112,168225704,67907846,635854928,-553386190,1815980611,-649893881,19951744,-1608682312,279467687,1327374976,-720894142,879081353,216610272,1696886210,1096599298,-2007186205,191305451,965313548,34341618,86402158,-1484436937,190054483,-1655659211,509381857,67698081,1979746859,-1058766757,1975581824,26807072,973268001,941925528,167962832,-1145012284,2137600620,2030069436,1481974352,1846755698,118361218,1672700021,1842480049,-1878258686,-336109511,-536589744,1861886368,83016723,149624868,-1148171963,-1492887895,47713215,96863118,-951597792,175375932,-1465761689,-28999659,13828613,-66116658,-2009324032,2105547381,343213570,718799631,-1609825740,4295542,-186068256,-99358462,1521348225,-391308104,1830559766]},{"sector":3,"length":512,"data":[-100931096,1298159776,-538246411,-1563899650,50808127,-1846854654,642136325,574428316,600299887,5604238,-1837824858,213281469,-1328223552,-1463892797,-1107294173,1157711948,870818856,-1559125056,55912761,54330171,1834849877,1431455825,1705116080,353247271,1006930688,549758764,1108505613,1045988878,1979369473,-404011517,-1090469399,-510647120,1230114411,-1608380414,1839879429,360011584,1242907398,1225326927,1012334608,-503024164,233423838,872356307,-1566977536,-2136931169,344196619,1941861761,-1010429178,334004254,730432002,252575239,-1575056576,243998720,-1965935832,-2050686269,1108950164,-1056259330,940226258,773113610,336233127,-318109148,-1438376331,410372358,-1584922874,194843237,-1488055289,92804810,-1016195456,1967476285,-402476526,198705544,1346235063,1951662720,-16258570,-1411709511,4843580,108265845,-796212994,1826795,1024858240,292901971,738360448,1833703961,-380630517,1209466583,-1096710028,1816217149,1377501328,-1307179147,1017768708,268465499,1057422856,-1259780521,1952267518,308876788,69942512,407783981,-22996931,950162264,675099480,-1325388427,1965622278,54823508,1301823617,1232537404,780161418,89478976,1395408001,321653109,2047028519,682294877,380245177,-146563096,-2027463167,-804706155,1005126300,190337401,1111178904,-40799147,-1252783582,1168772492,1601508432,290625596,286145749,702222649,289018224,1963932868,291678929,-351858230]},{"sector":4,"length":512,"data":[1958869171,-2055097985,-337077528,220459027,-250675040,1946619448,-382670616,-1673419662,1031947939,-150728637,1142292954,-380158319,-39059275,-1343078063,197208920,-867646519,-2135900453,-1951650351,-217652280,463537060,28492638,1133910184,1956627059,35010570,1510232585,-1996534807,78758666,-985946112,45157237,999867019,-1977125438,1023231851,1952173848,314587125,1963539460,-455284243,-660521936,-971841398,-997545032,136802977,-150941670,553957121,-1033911391,-1627248368,301531493,1010067244,86799364,1009466276,-350718971,-1608510427,337136557,513083415,119739253,50606114,-1259656971,-381275904,29228716,-352253952,183317250,843517438,-388283768,603382863,-427817732,-2143516145,91498495,570759250,-1006746051,-449957881,-629881030,-1425997142,37744875,687702789,1273517020,1541908386,654045871,118743259,1761682091,-274061051,-405500754,-169875166,-2093606507,361043798,-402462255,394978753,1451581468,243890324,1348151943,-136048112,-62970,-2062028171,473351640,-1191230326,186562380,531376164,1464862345,748830347,-468694492,-1956706423,1678454326,458157909,1963541765,-1017620831,1196862214,1526989436,1077303784,-398204082,-400563287,46588857,-1090508448,851005863,-218058752,180955818,169871907,2106347862,-1886780841,617395301,2089601025,1661387658,-1211923996,1009148732,891573924,1468016895,1244039682,246473730,-1852259286,-1583834803,-962292765,-2029481203]},{"sector":5,"length":512,"data":[418097667,162592774,1328422826,1211745512,269796323,-789387932,39044844,218132133,646450600,-1144826199,-1467987868,-402370840,183174170,-348911856,-1161809162,740134576,-400679254,-17596096,-1084806933,1206941,1108273247,-1439032827,278990270,-492131111,-19570692,887303306,123072517,-1419001343,50480061,-1441736694,1023323432,-1797229302,65105156,-396295410,177798809,869305088,-469095504,766510201,1296424182,-1125436502,-1285390666,1008052384,1966448644,1016184323,955253656,-1012596203,-1592646563,-348380396,-437531924,31493858,456332776,-15881876,385867752,283846440,248512744,-1580665310,-5510914,-559824347,-1586227709,806673203,-972248550,1011309317,1864917510,357623,20762196,121394038,54284148,69601654,512429337,36325904,1119376000,-92230832,733770500,-96010240,-2146602234,829686242,1242832387,595870904,983608137,1141470400,-1609758463,-1327889409,-1433247139,-1597820279,-655872748,1206840318,1430398984,836786186,1230178578,-840208048,-688023064,-1831579392,-974600566,-1962863362,-41507648,-2126424753,-1968706299,-488183031,850789096,604170688,-342229254,1857031678,-1129686088,-236411413,-786469991,-1563432706,-382144666,290162745,-1556794619,262467841,-347737922,1713979943,-1027734156,1114326282,-486234043,1761648810,-938549058,-352234520,-402650518,-1106501766,1709720981,16443393,-689368884,94447358,-451967990,1008674044,-2051083016,1597878018]},{"sector":6,"length":512,"data":[338186984,306504894,1715333258,91685692,1925900328,816197770,1140850746,-1207536192,-341097396,80919,-1207405174,-1330953384,705358664,72486005,1342985462,-1601420886,-1863812373,-1939470852,-1207884449,-2129244338,-58807766,1782908606,-373218160,-394067773,1107644783,839808175,1781944853,-1875088800,547945992,79825012,-1849163468,-836354259,207188042,46826645,395582324,700985880,-1439911157,1652228908,759239928,671544040,1548354474,691154948,2007760916,-511675580,-1102124281,-655670118,-1531051104,427128132,1144797220,1527601171,1228217907,-401599788,-919439637,1342645995,1060897820,-2001664907,1008341065,1279049501,339656530,344540703,-1258202224,-28290072,13237953,-1408797549,-143383492,168294891,2001754172,1144187736,1492254476,2035003501,-1699414054,-1516750581,811179078,1171790606,702730492,-1039531392,-950025459,727098374,479005249,-99745275,-1796669475,465590524,619311112,22089981,1583813031,721209321,874852506,-398857224,226512177,854134055,-1144804356,1277840449,-396884720,1211765534,302105483,-320078829,-1873474120,61211912,-463977288,1213471785,-1072600255,61938593,35099658,-14817059,-596856599,1079253121,-2092150852,146997959,750321488,-75011535,-1732868190,126605392,-1165342045,1232387028,-2146369560,-1309998558,-1141141015,260047492,37552089,104637554,27790451,-1194852350,-1196736186,-374661038,163839068,371770204,1274480256,-997587135]},{"sector":7,"length":512,"data":[-1857341510,-1647170630,369300485,369156943,-576722475,345074574,-1634402411,184550401,-1676999672,268436558,1979777043,118099241,170071046,457253908,1142969165,5637199,1936876800,544108393,1126703158,1886339881,1913913465,1952999273,943272224,956640561,540322304,1919117645,1718580079,507551764,1277194354,1936614671,-2142149531,997482776,543973737,1380982829,208675240,639662452,788622670,1293708353,124995749,1987195493,1352663093,1460032083,-1047606989,783875891,-1416101870,109850573,1049175538,-1264179728,-99679729,-1974601713,168756239,638062374,101665385,1344204303,-400167790,-368373243,-1843009525,570820752,333981188,-32295214,138214419,304994469,1344868378,-47829108,645400262,185830436,914564660,176836646,195160064,1228411934,127160845,243336984,-1801315321,118589191,1377371936,53354240,-397344703,7471184,1599670272,1482381831,-998046485,1355020556,512067670,392364216,42082055,674662682,640313382,1363499102,-1153165885,13775708,-427812126,30310401,-1740373576,18253262,332961558,-1325387596,1964377797,418117635,1942773891,-17659,178505106,555792858,-1241468350,1364420351,-2145495211,512354757,914892332,-1819803087,-922025248,-318038924,652419275,1275441380,-396722431,1594294533,109095577,1510606585,1560703737,-1414737063,1145128200,-75284582,170669567,1870083417,-1470516209,847448428,504379108,-1808069772,125092169,1913782354]},{"sector":8,"length":512,"data":[-333938173,520494787,1035501699,637711387,1229133194,11636068,1945913877,1431638023,1220306131,395665,1967736607,-1021314829,1392922711,-100007797,-645200098,-218359120,-651435346,-1957998080,1476877259,-1070349473,-1799205075,-1958693823,1646811863,273700230,1476418280,106480969,-502457608,-2144953270,167909949,32227731,-1679290673,742398699,-1494724267,283741183,41132567,126815211,-398752436,1901929208,-671078472,28654144,33456323,-166607375,209027270,1048972385,335554095,-1006698353,1053054726,470492712,638844951,-134201981,975573108,985821701,21349376,1207501175,1609165639,662701319,-617404878,922194579,160638518,-92076736,-2147125751,65746882,805675009,-1073004206,-620034955,42744180,180749237,-763333332,1060568837,585842982,974456594,303043076,17528075,1200132882,-1477717453,177586219,163800334,553930752,11543988,1965373478,99368970,74711397,671204410,-11335881,9568627,1967735328,-897100061,863300875,138314573,729132440,67519626,-1282354896,809246452,-762511350,-348912842,826179815,175505190,876742817,5197641,-58880,-386323625,1499463178,2146108275,1369707664,109759115,1963815936,598362630,-1570897426,1963791656,-1459026173,869613642,1347820233,173107101,762126496,252134646,41731155,-1172155160,1947012634,104486156,201736718,-2112223083,4259866,2117183,123275122,-1669112481,-116756386,88400226,-1862331280]},{"sector":9,"length":512,"data":[-1577883052,1879572631,-2007433579,940401287,42437158,33089560,-1192326146,1074989581,-398257015,1455620584,100021075,1758169610,167820427,-544528876,-956946965,-1133153278,623412472,321766284,228888688,1996498749,304481298,137693702,-2107063551,53941984,-1559434247,-1200581566,1383989247,251153429,-559377125,1167086824,1928856818,-1615004410,721420700,1378448641,1460031829,83933264,789709005,1968766780,-1193768183,32181250,1945701032,1557552901,-401860863,1516044300,1535755785,134602590,-222285164,1238497198,1557336406,713235783,-16817830,190026260,520088656,2131794186,-351833748,7654682,55429008,942541291,772044085,1879774641,318844260,521771000,1229989381,65733947,161219886,264774985,-102503649,538709106,118417232,41747238,851120148,1192052461,640550598,-615153616,-955157031,540710912,-968670419,1124631208,447588072,243847731,-1977335806,-1053161148,-1054204298,-1526665078,343179448,-1476326895,8158209,-327823618,956332101,139212813,1250232435,-779483862,-1953233526,-1509743613,-1173293728,-1031588091,994162434,-2065926711,410342766,1493628426,1507598115,1116079429,-771093293,339740788,1976237668,-1593694216,-1971797163,-1395973246,-398901619,-2056062118,304378021,912114628,2014475568,774914384,1945911528,147380230,233568336,640843794,-348043516,1157180405,1435526237,1241518168,540297444,539108469,225816586,1124331688,2133069326,-1120767370]},{"sector":10,"length":512,"data":[-351533451,-1804105388,-1554373003,-166778208,1124346820,-489954176,640166922,-1241361149,717630069,-2077619738,-71440342,345048351,1378726464,369557401,1006633231,-385875712,196688,262243,5898364,82090,14286939,1562050652,1577143296,-889157632,218129409,2030068994,943618,2113955621,-452958205,26883,386160216,1868787273,1667592818,-1643003532,-1643511690,622201357,1818304561,-1604034280,1763735888,208958318,308569452,387716884,1702132066,1349918067,1818845474,538337889,1691191616,493581161,-2111635407,1952539503,1725892808,-2143124194,1886593115,1768319325,1645035842,1617323637,1869575200,1830109897,1379086929,1554158965,1729783161,1386872876,1869770784,1835102823,1616022050,308768325,891774318,906783032,771773804,1144521266,1196769861,1531990048,1769104475,1532836527,1923699824,1868651880,-1489880210,238902158,403786285,-785291956,1566405429,538984505,873311161,-1935387872,253166186,1870209048,1998921845,2037678455,2090574480,153100418,-1843584931,1665204225,-1200788113,-2102760403,1711556021,57504367,1701974720,1919513969,2030503040,548538766,2193946,40768176,258359621,538927368,1921198400,506229620,6712185,1965571872,1426222192,1815640417,203331875,711853668,159788647,1867019020,1702064993,-1457501075,1528840449,-1838914463,343089216,-937014810,-1790762983,1731371706,530746125,511009822,-627834719,1151863208,499796278,-1804704460]},{"sector":11,"length":512,"data":[-565700848,-1708309006,511909673,-824362635,1177884524,458332339,1366255386,-561433342,-2093106209,1417962893,2019911823,664605,541598887,1970037110,839332197,-736413654,376730992,1232491073,1919905824,-1670605230,224713722,-687846292,149236869,1918129548,1952668538,244656687,-1167929490,1835488148,925900399,108273485,-1307242508,541989944,313992998,-479759704,-1996240273,874900620,629952288,1780093768,1617257408,1342300907,-393183485,1534330238,1365415251,208084494,31807052,1716665217,699968272,1751348409,1399345205,1953778691,1762558181,-1101787329,828900144,1854488992,55965441,2009006277,862289778,1463452073,1639658785,1339820611,1421965413,1843812976,610216389,1481393529,593046696,1062496025,772677321,1489937669,1813473360,1838333577,638021729,-79050129,1278037336,-1894647988,1224673360,554632253,1949188358,1116809589,237261656,-811441792,1421967661,777060357,872416781,1073743616,1974883393,1946159360,-1878961759,218147544,1073789952,-721416620,-285208832,150995146,738201857,1325404929,1426068481,1430392577,1599824290,-1935402378,1127747872,1852752136,1701868655,2117542254,-2042474467,-323465646,489169697,520197541,503455807,59407391,1836247120,674409065,-1804706553,1819027536,501482523,1774546505,-1838956432,1463752071,-2059201250,761474886,1096128941,1917539858,877314711,1764121971,866059848,2003355,-1488708201,539625313,550588227,627112540]},{"sector":12,"length":512,"data":[488506417,503607399,-1741662426,-1116431903,1158554487,1309157131,84502917,491069534,102074138,-1017639136,1210467797,168014344,682557632,-1430159053,17870593,380310784,385901056,27392,-1895819264,-1694492416,-922740224,-956294400,536907776,553699328,-838852084,-788520192,603986976,620811776,9977,654368565,671149568,-2028932864,1632199103,-660381177,1700969749,-1768901981,1126566999,1974851627,1462249438,-803185879,815541448,1083359484,1191998613,224399726,1667449103,301805928,-292460178,1632645392,-1392543433,674825010,-797957000,-1716719211,1115763228,755053608,1367966724,137504005,973443154,858071046,320239110,1443237920,130884922,538524937,925762833,332683026,1785468506,1027409551,738199298,-2127243457,16792257,2693951,992608364,405537041,8060974,67108911,3276922,3342457,1161232550,-1204228539,-65929159,19840512,20774971,60,3998033,4063583,4129136,4194691,26542080,27459649,29032514,30670915,68,4588011,4653566,4719118,4915757,38535332,40763468,42074190,1395856510,872728261,889465386,-1157482993,52135507,-1895256272,-1732353774,-792768235,68559299,1634266377,2036687397,-1606660044,187847199,-19279311,1209414413,589202567,1029253640,135733370,1867263409,1735148903,1997762216,520129648,2036887624,24330941,1145988123,1685219236,528887927,-1325834705,-2082725879,-1469771232]},{"sector":13,"length":512,"data":[1868974066,387124341,1723314824,-1534565617,1685021480,-1806823125,879125175,-2109163931,-1202514926,-2072489425,1701998418,2102662850,1695343232,1200873848,-649718322,369507193,-337489903,890978174,-1001332797,933467655,502561413,-517358768,-1927668471,-578505440,552534369,-405507211,452990491,395643880,1852131091,1312228214,404913956,1936280924,-529362317,-1648359212,35104987,941110051,1935763579,-697820313,1344649985,-1974720508,1176517930,546358593,1164797816,386955809,888359168,322856960,-1452199985,229572879,-1048496618,50895040,369492419,-1355673599,-1871166191,-2094280452,590479427,549552953,37795779,1969229348,553874185,-1021501113,1459761494,1582453288,1163,-1962713973,1418331980,175934217,-1962773366,91506208,1525584104,1599078411,1575535454,-1677364243,-1645313816,1292568772,29887434,767557867,1295778954,-398064011,569049157,-1739304132,387365130,885015612,-352158454,172047373,889865734,1245236688,1925447680,8382488,-1996428056,1214069270,17256393,-1482482531,17434639,690047508,2062031393,640258849,-771511293,-739564800,-333250556,-1023350972,1291854917,805394509,521018880,-1204152902,1023425056,678568397,78200,-2128645610,1160806626,-1206291456,1158810887,-1274090462,-402126274,303599315,-111386543,-402260044,326420887,-1201236772,-1561799988,82518088,1599222414,-1556887959,1247812731,572300536,-1997976548,387724310,1832279836,102531100]},{"sector":14,"length":512,"data":[896701212,483195676,1414306627,-857072540,947999572,1394401052,512443316,-849279742,1541671527,1152668173,916464901,512425778,44534616,408557348,-397417798,-917419702,1242033671,-100007929,-2130935729,112878452,1954744400,-1168422876,1954809874,136231507,1954881680,137017931,-1169984378,142754102,-1170508665,1955072066,72268339,1955137545,140163627,304313482,140950180,-1172605813,579668082,2126160449,192187912,181946,57999112,-380597574,-1766143781,235595856,-1413166891,357118,-8475338,-1085426493,1668652350,419446800,-1547041523,1158042170,-1574395134,-1564847556,130589490,-347380416,-928651038,-2097099032,612696569,6219791,-1994740038,1137789384,166259840,1160342528,-1603457201,407650895,1978159699,-264240952,-1020542325,-1990836061,-1168752106,-214554166,1270120023,-1497359327,1447435913,223609528,-1802466545,-1957280731,634829330,621709874,648151753,-1940769403,1077106238,42844210,1186206248,1916812296,-1263924730,82513408,134611380,-35795262,-1275061907,587336773,-335631670,1380301318,-940859718,486448530,-946855648,-1060458061,-885542016,1644246707,1372269747,911765760,1129071043,4998220,1095516672,1145586504,1095254600,1146635096,1117782104,1112560472,1145656144,1129530697,25165907,21316,1331124546,1464948548,1897415252,565133487,67422834,204407842,-503043838,-668873661,986699524,-887356388,-686029811,1799403296,-954094350,-1290009572]},{"sector":15,"length":512,"data":[-954465164,-696696831,470031567,470071897,-635436593,69004092,67742748,1147339804,550445164,578634011,973348043,470031467,1728353410,522217540,-1654140128,891028508,68945025,543442027,-828227362,474026784,476789252,-2071847932,1615097604,-568268256,1310841154,587469487,-939256767,68423598,1946424792,70403216,580404069,71979617,67372044,690553887,67634249,688145148,1560832165,1426346244,956584596,889464068,688187466,520093700,1958740001,1327598596,69338180,70894425,565134267,206055172,1998707972,152108867,-88019630,2101593889,269990696,1693647887,-1471545321,558055662,-603437996,-751818422,1846286852,1208511947,1272710344,347014185,1694958773,67974193,-1524551796,809698452,1384383561,76160202,69798947,-415959598,334365717,1221068548,73155598,2068887186,719352796,537185021,606740489,1122443268,1681786104,1122116034,1236,-1553390229,-435921660,-898464704,1580467228,339255856,1308894132,141483299,134678566,587047940,77038736,75502762,1122742527,167912707,-819659260,69541955,1382032677,581648622,1124352837,76714785,69531168,546837233,622010382,544228223,-194229678,-804983032,55781012,629504065,1245771524,-7850112,1064118536,990444296,-1811916392,1111753760,5719040,8683579,4674127,71582785,1431502915,1393906850,358089794,320384150,-1677650098,1292370962,671109892,1279345477,977405260,-1501213629]}]],[[{"sector":1,"length":512,"data":[1225029680,1292162194,995118348,470166222,-1423637498,1027873879,891376644,1225048388,336855126,1480982666,1174751299,1163060500,1329792581,-438546391,1225065991,118277532,1414483462,1078466376,88228166,1398016612,1183333972,854570213,-649787564,843515702,1342656007,105469139,1213859121,1479673285,710478669,1415401560,1414530568,102816475,1415055169,-1287437998,1638223526,1699958396,1805864968,477340868,-861647278,1393053375,1228043007,1227966732,-1785370029,379915333,1113044226,1955267855,1464011325,1708807215,705057542,430206550,1447121671,134894152,-666474731,105938873,110887770,-78622072,201721804,303461150,-330496505,1347179996,964759814,-147430906,201721753,303967463,967181831,1237008727,75560874,860444845,1208745129,62719052,861492780,94831630,50610827,1242056018,187777614,71387838,-1286061309,68246118,132474388,-1408822223,67444682,181613598,1276183623,1461072684,-1429403574,85478919,-154320892,-1422636792,1912885264,336383142,-871627693,285868810,1189536087,-845851387,1141136449,1129252947,615927560,1460027922,-414167290,101141145,122914035,1330446342,732339286,415494,585446745,1833261186,1431297028,2097459989,-939178416,1398080649,1375733359,673524291,1157911044,89634515,2001012302,67504946,105596500,726598661,1406749388,1913193900,1950434134,-1521126394,335813963,1884426324,1225016404,1325685146,369362464,-2075831264]},{"sector":2,"length":512,"data":[698763842,559241367,974326513,1420116736,1141134084,-1539096828,-1138445311,709464100,1881427972,1375999250,-1129998300,-1673131772,88670740,1150244676,1344337360,35672660,184570123,167812430,-1165862590,5507666,1080839179,1415386802,-1961662461,1464010434,-735995612,-1304294650,665199783,-1459452862,-1475285980,-1236563700,1158065956,1342583396,843516745,1309030733,-1004054010,-1658542576,-1675350973,-1689751260,-501310940,270834462,-1239115197,1345100058,-1618505165,-1598924767,-521298140,-810399369,1342470068,411419272,1646571531,-1272661432,1230215122,-857865388,-1592814704,1393640276,-1411512870,505580580,-178584142,1108543981,-1912666852,-12580321,366674824,2092031,688920949,52954021,-1808792808,50856706,1630995232,-2104175338,64231005,1527777599,1246926871,-66848762,-1523975677,-1509690109,1385473795,-1725483005,665350,134426371,741349445,409983001,-39840759,-654104552,-1258088882,-1600126440,420614915,1456472850,1385488406,-469507837,692774147,-368842493,-1526469629,-352064108,-301733885,-268219822,-251397885,-234642135,-201067773,-167554412,-133957885,-100456118,-50070525,-476796413,-536656558,-2105351677,417152003,-519240898,1347555096,235089667,1242306789,53347113,-2127559892,-1090517720,880283672,412419337,104174757,253036036,55202324,453053489,161818897,352782646,106075191,253167110,53037590,102287003,-1801079800,103424267,-1843786725,-403438683]},{"sector":3,"length":512,"data":[-1567348520,-824115197,1356385292,384874320,-59307569,728331031,165873155,1322976118,57805170,1960401679,2130935043,151252137,58459006,537481988,-59435177,1255766531,2030271235,1529442563,2013491203,692166421,404473187,63177613,217093285,61670316,413618912,-502922271,-1543304622,-972839662,419998317,435658528,-1441524592,388034054,335546781,-1676250459,309211142,464079420,-234032381,105520899,-1021919797,1495859203,-1643968488,103369441,61802158,-1801123552,167314216,1392182269,61473674,1744176043,-2045106175,114760035,52860069,53871406,50332222,1142309906,1139491815,1144210479,1148387328,1086538783,1086800087,1088045263,9453771,1091780819,1137382991,1136608195,1108607193,1121206567,1092829918,1157775598,37945669,404505570,441064522,373958976,5783882,54723394,54809925,51138643,1152586936,437932803,675958612,-414646186,1124779075,-1332628970,672421455,524635716,1514622464,-1272314286,-503037119,1495642448,1092550680,1447979414,356405333,-23932852,-2033041115,1124617994,1521484063,143676417,33629968,-2140077070,222261258,-1199568881,1544363605,1611672233,-922678256,1812225113,-1567350775,894522883,536884225,184781107,17517559,-559477503,2099577343,199914540,68356,151760570,658176,-1159986677,202048062,772609536,235602001,1254096907,17099689,269222159,211122689,856424721,1959998545,-1441328325,337094474,337055756]},{"sector":4,"length":512,"data":[1560341422,369822485,196000256,403374103,-350680320,436928678,1864043264,1867649973,1644193380,-1969131005,1090547715,24322095,1124395270,872549287,385354657,805569699,-99912756,1966738198,-64945364,-419618560,1294009598,1167544832,369820182,-51772926,369099798,1325158918,1297221932,-1381031669,563105025,2792205,-1825829065,190674253,322371601,-1760228608,388759630,-382991605,67836308,-380757237,488703243,-103545333,-1895817461,1784697377,4334344,1632580614,1561725862,2030058039,899285044,188919503,-348380927,899285244,1446915072,907470582,1447037718,1664579404,1592402242,369116683,402855492,1298916128,-476499966,1300302881,1538434993,1960026636,-1207164136,604786330,-1827877364,-468966075,1775443789,418319398,206418471,671895045,468301324,204022862,204551206,1311837226,212290822,412355630,204794159,-651031393,1325534374,403452744,923570899,618844934,1495900984,-1827915412,-1163340798,1002766394,184597227,1024131132,-1371665664,1057685739,4197120,1091284666,4328192,-1158986997,4459264,184567307,3829319,-878295029,1269213005,1275912460,-150170391,1565413066,1513039884,-681887232,1544224885,6097664,1591172363,6556416,1567974667,6687488,184575755,12810088,1275816203,805416965,34948808,34144432,27918592,79757674,1112671628,42002571,268812428,-1558245888,201720617,-1912602624,101616576,1341754112,-201459829,12079268]},{"sector":5,"length":512,"pattern":0,"data":[1342190612,-1933341493,-661763880,1099218715,-1967587313,1202648063,-1960901791,-1324201789,-137983228,-741340662,-802432440,735597683,-741156096,-1896872992,382176218,369211074,-1896343872,-796218174,-1387397120,-1975072629,1023288514,-1408928336,178301683,-1304688917,325938549,340787624,851358068,512462081,-1475150706,-483798477,63081235,158147,-8128501,638678271,-203285247,-90963839,376762368,268485249,1079762155,-2095176126,-1877405457,-492747285,-79787113,-2146814325,32559002,754975238,-1157625167,-1896155717,-68711466,-13711989,-1271967704,-1189430464,-896794602,-1163393792,567083292,88932280,-1318887088,-549033043,23707640,1920137216,745828469,-917848576,2135610442,-1974665216,-1605528243,-1236423859,-867319475,55117,-313662899,55441485,424545870,793650254,978190336,1347306830,1716411214,2085515598,34638,-1655795122,-1286690738,-917586354,-548481970,-363986944,5174606,374278991,743383375,58341199,18022479,94830847,80609408,16]},{"sector":6,"length":512,"pattern":0,"data":[23550541,327702,53608480,46662450,1499869184,3352,30,1310721,220594822,234815488,0,57344540,545]},{"sector":7,"length":512,"data":[0,0,0,0,-1192457387,-2014838782,-28915953,1586167808,-1846786,-1207827785,-397409795,1532694410,-2080487681,2081160830,112869,244377680,1575324507,-326412861,-402585416,-2037575854,-11469062,-1729624970,-1923392760,1358887558,1359129273,1527777256,1958742875,-91845358,-1380429570,-169324542,190536463,-385649216,1048576189,1962934953,74907417,1342335160,1527719400,74907483,1526896104,-402611991,-1041757985,1958742792,74907638,1527065064,141889596,-1207666945,116064816,-1207666945,-397409768,1532694258,-17267001,-370671616,-1982297329,-2013856162,1946223547,541560070,-2080487799,1963851390,-121732314,125073918,-17252733,-1206356626,-397409617,-2091184454,1963851390,-121732294,863336958,-2080408855,1946418814,-25263318,-2094762982,1954152062,-25263354,-5802642,-269943178,146299664,-404205568,1183537936,-125400578,-1953502210,1438866917,112782475,240445441,1877694039,-1962516853,1342474807,1527063784,1819590666,1342353848,1342260365,1527710696,1958742875,45332500,106859344,1346373515,1527705576,1975520091,-1459173881,871038978,1342354872,-1962516853,-397393913,1532694228,125157387,738094568,-1961628736,126551646,-1799860160,65556482,-1201972466,-397410303,-10810094,1182991438,2122514950,-2072707068,294531,2025328757,-538423294,28859149,-269987840,1187470092,-352321282,-91845264,-1145483010,2045268226,190536462,-1928170304,1358887558]},{"sector":8,"length":512,"data":[1342357176,1527670760,1975520091,-27358430,1988879313,-1926168826,1358887558,1527651816,46184539,-91845296,-639086338,-1961694461,-472777122,-16353653,-91845328,-68660994,-1201972467,-1202716603,-1924136938,1358887558,-2097012504,1191118532,71732222,2113816121,-91845326,1586188542,-1948003842,822019702,2095643531,190536454,-385649472,-2037514389,55639802,-1204486153,-397409609,-998046712,733014790,937971904,1600019212,-1017256565,-2081649835,-1957297428,1207305822,561319957,18171894,1200231284,-1728175083,74907472,1527211496,1975520091,74907490,-351231000,46446681,96701264,-1957691362,227469552,-1072997541,-961002124,-396996606,1532693888,930398219,-402360577,56298912,1183384646,46774526,74907472,1526922216,44087387,1488976,74907472,-2097063704,1586169540,509694,-402360577,1583026208,-1017256565,-1192457387,-1202716000,-11534314,854066294,1575324417,-1957363517,1055687660,-834763946,108330754,-385691999,1187381438,1187409628,1183659485,-1645719318,1183669006,1317884138,1317884366,803754460,113541902,-1981135221,1183577158,-230258224,1183774251,-228684812,-79656410,1190544008,2081095299,-336188432,-163411377,4472216,1116358005,-661939977,-154902903,33799047,539821428,-1979389184,1033434946,661979214,-1728560502,1586092171,-1148717374,91488771,-352313299,-129857020,5258648,-24966795,723481866,1176955840,2097872515,-163411215,-1982297192,-2013870498]},{"sector":9,"length":512,"data":[1946289083,2108828,1116380139,1787468021,197733108,47096769,1575324510,-326412861,-954405757,2046882374,16008903,-465138432,-229733040,3127633,212265041,-2147040125,1979704446,112645,-1070923029,-1017256565,47201923,-1593543425,-389872944,1967718335,-1547687162,-389872944,-1072955684,28898165,1441852160,-326898549,2930698,1142357840,1183406851,1975520252,-373282043,-11534011,1996424822,84076548,184992899,-16157504,1407777910,-504669429,1342808248,-402360577,1532691519,1342362296,1342808248,1527492584,1958742875,8841475,1342808248,-402360577,1532691838,1342808248,1527496680,-2017011573,-1207957091,-397407840,-1956967504,-1618507048,1944604681,-1073063167,-1598546828,-1712828407,54352651,-1206946304,-397407840,-1956967540,-1618491688,-1598554103,-1142403063,272390912,-1598542731,1911050249,54352651,-1960872448,2139159646,376712734,1224676840,-692580235,1944604674,28859146,-2081927168,79190793,385830913,-1990524092,-1072956858,1996425845,79882492,-13112997,74907472,1526871016,-92864677,1527456744,1358579203,-402360577,1532691361,-386238721,56298256,1183447622,-62485756,1342184965,-402360577,1532693150,1342850701,-231681,1459616374,113541896,-386107649,190514224,-2722624,1709767798,1996446468,170977530,-59310245,1527392744,-1962933832,12803557,-2081649835,1187450604,-1958543118,1183384646,-230257160,1877495888,-2091164917,1946222206,-18427,1183515627]},{"sector":10,"length":512,"data":[1575324662,-1957363517,1586190060,4161540,1996426101,602428166,-346334454,4161605,-397207948,-1956967820,-259324834,1358905482,1526740456,292929546,1342384312,-402360577,1532692922,1191117803,106859270,-397408374,173735958,-1083968,1996424822,161277956,-1956726805,12803557,-2131981483,1952187518,75399174,-1341885137,717446401,1438866880,2122378379,108277508,755269248,28312693,-1070939299,-1957313699,149717484,-62470399,-2037579776,1183448824,106859518,-397408374,173801398,-1961921344,1200227934,-1477947391,-1073062913,1996434549,108462078,1526780904,1975520091,-25755889,-402360577,1532690628,74760203,150752896,-385976577,22743468,1996488262,108462078,1526868200,1975520091,-25755889,-402360577,1532690969,74760203,83644032,-385976577,22743424,1183579718,1996443902,23848966,-1072997541,1996427125,74907646,1526815976,1958742875,-61964284,53131266,-25755824,1527325672,1958742875,53262397,-25755824,1527321576,1958742875,-25755859,1527329768,-1946270207,-11469242,-756545930,190536448,-15764032,1996488310,12838916,-1072997541,1317012596,-2037579268,-11469064,-1545074570,-1956947192,-443810746,-1957313699,1586190060,4161540,2139102324,376781313,1988822922,-1979414522,1149763911,38061569,112640,1586170091,509446,-1956724693,1438866917,-326898549,53655554,74907472,1527016424,-2133292197,91553855,-352041333,1086556936,-352041335,1575324640]},{"sector":11,"length":512,"data":[-326412861,-1610421117,1352139562,-402360577,1532693032,201213577,-15960640,2045248630,1174625032,-1608717564,1352139562,-1979824501,1346372678,1527383016,-28931749,-411713525,-1962654069,1438866917,-1202262901,-11533526,-2098723722,-259302401,135456854,-1072997541,750259828,-396996605,1532692484,91602955,-352110914,-1998039545,-259302401,108461910,1527233000,106859355,453066624,-1956757312,1438866917,1448602763,1342384824,-402360577,-1956905163,-974628872,190536455,-1207012160,1464861484,1527232488,1975520091,-639084789,-259302649,132904707,-13244329,1475382107,-402229505,1532692326,-550773109,-972661245,1586167815,20938758,1581301787,1575324511,-326412861,-16353537,-1763179402,190536703,-15043392,-1847064970,1174493959,108461830,-402360577,1532755761,-352321096,-1950340350,1438866917,1448602763,-2147197301,175374399,973176704,1182991477,1996423684,-23599100,-1012901,1996424310,116451334,-561292453,-1962648021,29755006,20807680,1581301787,1575324511,966787267,1975519747,-1308183536,1948372479,54043144,966983600,-789080061,960397507,175374339,54068934,54042624,129238251,-466476595,-1957363517,250381292,452150982,-1995946357,1317926982,-397323790,1532692398,1324566214,-1996077429,1183577670,-129595132,1358055053,127199312,2122537819,192217342,84428427,-397410274,-1956968314,-443810234,-1957313699,250381292,452150982,-1996208501,1317926982,-397323790,1532692322]},{"sector":12,"length":512,"data":[1341343430,1358055053,123005008,2122537819,192217342,84166283,-397410274,-1956968378,-443810234,12829533,-2081649835,1187450604,-1958542862,1183385158,71732214,-1913108855,1347482182,1527192040,-28931237,-1017256565,-2081649835,1448544492,-1996077429,1988885574,3964932,2088769396,292895233,-1952971638,-1148717352,57934083,1176503424,1342474822,1543235048,208977930,1342260362,1543231976,2020982794,16664262,-2147197301,712245311,973176704,126493813,-1982297192,-2013857698,1946289083,-129594873,99295276,-1979425141,-2009060345,1183055430,1183449604,1996443902,27846662,-1072997541,28837492,23914752,33965699,-2147197301,594882111,98176,1200231796,1877495809,-1073062917,1586172276,41910276,721974528,21031360,-1962641783,126485598,-78583728,1958742619,74907403,-402229505,820708630,-402229505,-1956969108,106824664,-1996535926,-397345210,173800234,-1207142976,-11533510,-1343748490,-10790140,1996424310,77916166,2123062107,75401478,-2147197301,57999423,-1207910167,-1957690564,-571975945,-1956947200,-2012902664,96927302,1069041408,-396996605,1532691684,511033355,-16497013,1178142286,-385649914,1586233148,1342671366,1543160296,-462110710,1102601195,-396996605,1532691640,980795403,-16497013,1178142286,-385649914,1586233104,1342671366,1543149032,-462110710,-16497013,1178142286,-385649914,1586233076,1342671366,1543141864,-462110710,-11136021,1072170614,-10790140]},{"sector":13,"length":512,"data":[-1779956106,1174493956,-28931578,-94836656,1958742619,-28916220,-28931492,-16359797,126355014,57982986,-51735,1776876662,37575428,-1962183424,1204223070,1204182018,1996423171,12773628,-21239461,-443850914,-1957313699,108462060,-402360577,1532692004,-1962654205,1438866917,1996483723,74907398,1527146984,71697243,-1017256565,-2081649835,2122321644,376766470,435373766,1358055053,80537680,1183472475,-2000617742,1183450694,-1956641786,1191117918,-1962440700,1191117918,973587972,-397398096,173799877,-1962183488,1191117918,1544013316,1586170347,71761668,-969996346,-1974996154,1183319622,71732216,-1912977783,1364324942,1527018984,-25263269,-16157440,1810367606,116087557,58721991,1183514643,1575324670,-1957363517,74907628,1527075304,-1017256565,567095476,91423292,1342619699,35504075,145035,-25037013,57806848,-99614530,-998123634,1945832110,-400615920,-1070397894,146008144,-850591816,-1312388319,1222693636,55223094,906185915,-461170804,1737045758,-83964,1737045584,1355872010,107448630,141003062,1176930614,-1980300541,-1946156490,-136434749,-850742053,512505377,118883206,127451132,722120889,-205507633,-1960896854,-486107634,-388890878,333973412,-387108090,521535560,61290239,61159167,61028095,1358133480,-1023344152,234856750,62445710,113718784,248513352,94169168,906500328,110640769,125163222,-13217704,-1207526378,-11534081,486754326]},{"sector":14,"length":512,"data":[12058626,-1994273483,-1945931234,235107334,620804127,-854732614,-2095114719,436286,244070004,244057770,109971122,-1960443002,-989844426,-1945719802,920335322,111681279,521536883,906320361,112199365,62642828,520041984,521537192,59115150,739150630,-1908481280,654259137,1946172800,899380,-217881410,-1190431578,-1070366721,561360626,503768555,-141877497,-1325166657,1093446660,-523104910,1093446802,-1039530638,384756650,310047,59746176,1140897983,175251917,1954595574,-1886420987,2034974723,112508647,-402213697,-1262616377,112508678,-1023365144,871140181,1427827657,28961931,1427303168,1465314443,-352255815,-326413048,28923734,-922070783,-1732370827,127450887,-1107263512,-1228994892,7792646,110640769,74831574,111023871,-1090079042,1642596022,112639488,-402213185,2112356455,1958742788,-469084143,-2096401072,1962935422,71747333,283640063,-469084160,1183516533,-850611196,1566465825,-1441887293,-1157111034,520028162,-987887960,-1207733738,567092480,-1338081249,225705987,61972510,62002885,567092660,-147078369,1330580083,-152892021,-219426305,1945582531,82805518,1158350219,-887806,-1007752419,735873881,990540504,1912846366,-1864956,-1070378527,16656873,-2081649835,1448543468,1443159742,-2096708632,-125107516,1342588557,-1207666945,-397409058,-998045840,-62486266,1342496440,118745175,-1962621821,1600060486,-1017256565,805609,796137,-1947432107]},{"sector":15,"length":512,"data":[-1931572265,-1950314792,-1070398338,-218103879,-9073234,-1190756725,-1359806465,-114568713,1183579783,29816580,-1543343104,-202780343,-204926043,-1946973276,12803578,-1947432107,-1948349481,-24443274,-1064380276,-4603853,-139529473,75402193,27838347,1235485300,-1510741551,-1527527149,-91491445,-1957313699,-1948808212,-1898410786,74877888,856063627,-17984,-772296974,-1493960405,-1071970956,-1946157283,1576700915,-1957363517,-1932030996,-1950314792,-1070398338,-218103879,1238497198,1576700817,28704963,146146027,168082593,-955746844,-16466938,-2129204225,-704210882,1393128918,-69,1527159318,-1272853102,-1957313792,-2091428116,1187384044,1183567350,-146372604,175383868,108275260,-872921402,1187384555,1187433466,1187398905,1452033272,-163148300,-1947056503,92997246,-1962779253,1435173965,141921030,1426750859,1576165119,2123061244,-1996125944,1300824669,106268932,-1895271031,74582597,149681715,-1106966552,92995585,-2096335479,1583286980,-1017256565,1458342741,75402071,1569392011,72190722,-1962519157,2106263669,1461832970,-1996063093,39684357,-1996206711,1971914325,172330760,-164428686,-1108866837,114180,1971914123,-1956749556,12803557,1458342741,75402071,1569392011,72190722,-1962519157,1979648117,142510858,1569588622,567107334,-678683049,2123095950,-1895461880,2123040325,-1996125946,1300824669,106268932,-1895271031,74582597,149681715,-1107009560,92995585,1594652041]}],[{"sector":1,"length":512,"data":[1575324510,-1957363517,73305068,-1945739380,38767623,-1962649716,12803557,-1964209323,112460886,110640769,125163222,-69,-855205354,11833889,-1957313699,2123061228,-1962467836,-1178586145,-1359806465,-1965426879,-74774970,944746226,855798789,1606913023,-1017256565,-1947432107,-745864098,1093405675,74652220,126378244,168266307,-1829800512,-1957313699,552371180,1988843350,-1898935290,1096128,2123218995,-1398017056,343195658,-930350965,-511704656,-1310666233,149934851,-403972029,-1157335413,-1404829697,1946222373,-1946645740,-2147372856,-523106335,-271383631,1960854306,1583322085,-1017256565,-2081649835,1465262316,-1945733493,-1178562864,-1070399472,-203391347,-1073042261,-125102988,28362891,-771235456,-754732576,-532477713,1988880363,-17660,-14308285,-1961593856,-1329034248,132218881,61989074,1126363091,-1813678624,-443851169,-1957313699,-348539668,-326413051,1451965364,-383660796,-1957362966,-1959086868,567084118,272494963,-1829997312,1124567699,175374396,74727228,-243979716,-107871310,-1957308949,72780780,567099828,177641,-1192457387,-397410052,1048773237,1946158270,-1105789180,16758788,40101968,-1017256565,-385875272,861338170,4372982,-1392712654,-69017550,1951790208,-3872755,1342177720,-1207812888,-1017249791,79693455,567095476,-1174173533,37486593,109980020,-1910111354,-1946145786,855878406,12163520,-218156160,-76173650,1049184071,-4652119,-139529473]},{"sector":2,"length":512,"data":[-1076786223,-2118254591,-2044817920,540847107,154991476,222099316,-1073057932,1313303412,1948269740,1946762472,1947024612,1958742620,1948400728,1952201764,-454344189,-1404974797,-93037508,74719804,-739520253,-372129397,27840787,32230005,222080078,-1073075340,574367604,1547483764,-347995276,1103705068,1952201900,1948400890,-338623740,-775844901,-1462692887,-338529023,-1994451305,50570046,-405714985,-2143103229,-500433182,-1515993973,64523011,906434299,1128480649,61421253,-1073042772,-1908999563,-1107065314,65732737,-1398095821,-76275652,-143390404,2087980348,2020917258,1128237366,1017925187,1021408288,1021146121,174224397,1012823232,1009218594,-1442614180,-919345941,1547480129,574421620,1555039860,-773084429,-372155216,108243699,-341171536,1017925317,170816525,1009415360,1018655778,-1442614180,-919343893,1547480129,574421620,1555039860,-638866701,-372155216,-1770804493,-341171536,-1430244403,130490134,654245888,-1957362496,109977324,-1960443002,-1912591330,868234179,-1174457354,-619970561,-2144989580,62,-1359870348,-92950970,608225163,-24426754,163178193,115009536,-389641392,-1482488108,119408131,-1949332705,1609970648,-1960385719,104543748,276104036,-1084795311,112788324,1604842240,91511134,1128237350,178957379,-486902336,260646618,12803359,1458342741,-1962467753,-1094843306,-1036276474,-1774186380,865537140,-17984,-141840654,1603726315,1575324510,1426064066]},{"sector":3,"length":512,"data":[-11015029,-873986954,1958743039,-91516384,-4603853,-139529473,45828561,-1740734208,1977013766,-1709768956,-851397626,-443850975,180829,-1070393998,-1017256565,-397346701,844627994,1575324644,-402164797,-4718578,-443835905,-466435235,-1023409688,168004514,-2145225244,50563134,574360690,540806259,95421554,322701035,330302070,-687553861,58762136,-339440957,-1957363465,-1957210388,414909558,-553746170,-1156418556,-25098726,158598374,-2130305861,1963259646,-2114024632,-2130389265,-167414073,1963722308,17167928,126563189,460636171,-1996209015,38061828,1170670080,-2147352574,-972945844,28840197,1393879808,1342308536,1543047656,1958742875,-351827708,1606431699,1438866782,1465314443,-1962510709,-688946690,1992786180,268826117,-617405580,-167289718,1073975175,-397011084,-2091383220,1946158206,-2000669940,38111493,1149830281,1566465796,396361923,398399403,404690931,407902247,-1957357438,24230124,1459113448,-1983892649,1183381574,108432379,108431788,184436360,-2096728896,2097215614,-129594618,-1157324055,539756062,91707452,-351329065,-1325355006,48288259,-19399866,-1998007615,-1952908474,786682328,389720063,-1174514038,602406913,867363588,-263812672,-1980348791,1183444550,1183402236,-1969296396,758971974,1317013109,-1846868740,108342076,33312384,540837867,1317013365,2095645436,1965243647,-61964281,-9311872,150752896,-1962972439,-108986802,-401640150,-1073020074]},{"sector":4,"length":512,"data":[-654895239,83644032,-377483285,-1947389392,180090438,65271552,-163149375,-939573527,62534,-1962985751,-108986802,-401836758,-1073020126,-4713351,-2146440193,-315477783,-1141619061,-470351862,1183432963,-15865356,1023297162,-2147060372,-351208370,1967537186,-61964282,1008266016,-2147060402,-351208114,1967930382,-45187066,-2147161340,-385286834,1183514331,1969503486,26142979,58026300,1006733289,-385649291,1480327556,-2081881227,1970813953,25356547,58027836,1006738665,1008366691,1009218675,1011971182,1012954224,1007121477,-385649593,-1243021125,42264576,-24134003,1336542998,-385875527,-2014838293,1979648770,197168146,504133056,108510983,108859019,1459737321,-470528373,-222285305,1325495726,-2013713575,29223375,-1962780184,-156501946,1947270214,-1413467389,-151109911,1966144582,36497413,803748331,-45681150,-969902824,-1190658234,118882320,-1915604142,-1090611266,-1612185596,1095938,-23937395,-1093520552,-1880621052,-1819884030,163134206,-971445504,-1190658234,118882320,-1098001869,79625874,40953856,-1929378631,-369193026,1191117127,-61964050,-28931520,-1952964596,-193035280,1947434752,-196688121,183173126,1962960701,-196688123,-1098055679,1996488335,-193527826,1996445526,-45681144,-16092156,-2096722410,-351664058,-2078867704,138838790,180650760,-2130950410,2122518132,141885684,-1978204329,46433030,1969749635,-62458097,141885568,-2045313193,46433030,-2144991466]},{"sector":5,"length":512,"data":[91565373,-45187001,-18175,-234835881,727273390,-372275207,1317011631,1187397884,904596218,134170310,1187382507,1190537215,292847868,49301191,-230242816,38908464,1451818838,-96024845,-166794480,1954610246,-45187068,-96025086,-62458360,-402295792,250282234,-167711256,1950415942,48994563,1190580787,259277052,192795147,33377920,-763111177,-2082801920,2097214590,-196688121,82509825,-134453632,-636757877,1187448181,-1929379600,118942590,855264906,-193557523,-167692824,1946352966,637985550,1949318528,-970567930,-348049403,-62458368,-164531136,1946287430,-230242805,-263796947,552271873,33310454,1187384180,1187458034,-352321040,-62458353,-972459006,-954142138,127046,737560203,-263836735,-1070398851,-162441466,1963785286,-1295480057,11593760,-1928915376,1317794430,8841456,-62458280,-166890488,1963260998,-1295480057,9496624,1342660441,1476422632,83642102,-930412684,2078810290,-66459392,-1391954293,-1022855543,-1391954293,-1834102645,-1022855543,553404150,-337115020,-1950183681,-605502472,200838143,-1912375872,119456704,-1957193533,1342112862,-1962248190,-2012741825,1606431493,1381041859,-303542189,79987456,1023891802,-378142721,467921387,1308751755,-13412360,-924275674,-487060481,1610550263,1187448180,-1006632968,1308695011,-13412360,-1394031990,-487060481,1610550263,1187448180,-1006632968,194205693,185237494,184972763,-352160302,-768372198,-141299209]},{"sector":6,"length":512,"data":[-746089743,960245764,1174537078,-1031034113,1507388238,-62402773,-1956749373,12803557,1458342741,-1107009909,1547240268,1259172614,17793099,1980259385,140282115,1575324510,-326412861,1317754710,-386301180,1287328375,31385603,1441271667,-402296318,91423188,-342245325,1566465792,106102979,67156305,109186695,2078822481,110058483,-1940322686,1958743002,-1017444605,1407828363,-1957363471,-1957210388,1149896310,1954719750,1967171688,38061924,27787264,279448436,1284200308,604801284,604114174,105154799,-276693365,-947845930,-617413258,-1475912566,-1471384312,-165776124,1131741445,81723009,-25097100,108266726,83295873,-2013911947,1950352271,112925,75402577,1810387799,113541891,-352321095,-18370,537283712,1448303851,1526897128,105182811,-1948879864,72649484,-1992111573,39160596,39094602,1364271331,1392801023,-2096942616,-1957099836,1451951228,991266820,868120001,71731904,-1070392085,59738102,-1176210400,1347485698,-1914154160,147096322,-930365389,1583337963,-1957313699,49054700,-13937065,1963228729,1354771209,-352295448,1988857941,105155076,52742283,980746812,1963508214,-2116121843,-167454997,17135239,76228724,-1996209109,-1072955834,-11527042,1284113524,1374497287,-2096977432,1178142404,-2146994946,-1088420276,1150025727,-956004092,580,1600046987,-1017256565,1342177720,-1023409688,-2081649835,1448542956,721737406,-25261569,1187449067,-2080374786]},{"sector":7,"length":512,"data":[909707462,343016982,-2096741130,-396955276,-997982372,-495697918,-1864045753,17071747,-947190667,1183515627,-1956684034,46292453,-2143186944,-61604127,-1962379381,-13432225,-1014291477,1963042907,2005619522,140479238,913628731,-335596725,1418563596,1943223294,1928332257,27831587,-24383372,1942043464,1928332067,-1378841837,-562822744,33931779,-1980265728,-454295996,-1956921205,1200162375,434895112,-28538533,-117241484,-1991720661,66661125,142576121,-628308341,1464976376,16926710,-756522124,-1946252544,1946265604,1237854979,2005614913,1962281732,1942881100,-1161809143,820248560,118898667,109224230,1948254269,-2147436010,108187707,-126489903,-92069141,-786599416,1220709346,-1056714613,-1070398861,-1037839625,3074130,-2096270502,91549946,-352317256,468449762,1462489227,71796996,-1962377335,-1991636361,-234667500,-129849,1594521481,-796146855,67258358,-1958080652,994968695,956658390,913571415,-1940827326,-1312387362,1978192644,268482563,67258358,-972879244,59121291,-1014054101,1253365899,1532568013,-1031073678,67258358,-1991637900,-336003497,1472461057,990410635,58002039,-1392085109,1962933821,620661512,-336591874,-1957736462,12804087,1458342741,-1207667061,-397409792,-1957040070,-689208866,1992524036,1958742789,105676811,38258440,216728064,67521664,16926663,21466368,1149830281,38061828,1566441472,-1957363517,82609132,990142091,1912835358,151042053]},{"sector":8,"length":512,"data":[1190603499,1954545672,176063304,857371648,-1194226743,567099905,1190611826,1962934794,105251598,2030589459,369145896,-1992889351,1183448662,-1194226692,567099906,319178243,226035798,-1946268021,12123222,-350106302,106335192,-1979167093,1119095366,91365837,59746176,-169743875,-2081649835,1586170092,-1927398652,-1207471613,-369555200,1048704459,-690616680,385811573,-2013919590,1948255119,1107474443,-779368141,-546168371,59738102,-1955695488,119408214,1183432755,-62486018,-1957275652,-1980593158,1317795942,-1338449144,1974399498,14608458,1979754557,49054534,12246155,36191490,-2135293069,-1948112128,385518548,139365127,1946827948,1962621708,-186471911,-352312600,990752874,-402426373,-1331036137,-62456054,216589291,1591929600,-1201738913,-2014773252,1364414702,-903098485,-1957621021,1085539422,1918443981,-28966643,108513339,-1957143719,-2086681606,2122516676,527761662,-1274776674,-165745911,1073975175,1586170740,440369158,-336067723,12122380,-1962480868,1177288262,-127497220,-655794338,139365364,91605259,-857095797,106335220,567099572,162792563,-1072962325,-2013863819,1950352271,-2133161206,58006079,-103814152,-350486344,-1588002615,-1002765384,-1003813261,-503326473,-85213133,0,0,541,0,0,0,0,0,1377850189,1412263541,543518057,1919052108,544830049,1866670125,1769109872,544499815,539583272,809056561]},{"sector":9,"length":512,"data":[1766662188,1936683619,544499311,1886547779,1698955288,1702126956,543236211,1701996900,1919906915,1851859065,1818304612,1752440940,1970479205,1919509602,1869898597,1936025970,1684955424,1818846752,1763734373,1953046638,1409286190,1698963567,1702126956,1701736224,544370464,1701998445,1818846752,1629516645,1679844462,1667592809,1769107316,3830629,1414284612,541410642,1566125915,1919179552,979727977,1952542813,1532698728,1986622052,1885157989,1533572193,1563307566,536871005,542715680,538976288,538976288,538976288,1886737184,1936028272,544433523,1836020336,1852404848,1869881447,1852793632,1836214630,1970239776,1851881248,1869881460,1818584096,6648933,538976288,538976288,538976288,538976288,1752440864,1970479205,1919509602,1869898597,3045746,1683693600,1702259058,1634753850,538994804,1884495904,1718182757,544433513,543516788,1701667182,543584032,543516788,1701996900,1919906915,1870209145,1635197045,1948284014,1701060719,1702126956,1308622894,979727471,1702057248,1279607840,1162170964,1969316640,1970235764,779709555,1702249760,1713404274,543517801,543452769,1684174195,1667592809,2037542772,1953068832,544106856,6645876,1667592307,1701406313,1768169572,1952671090,544830063,1819044215,543515168,1701602660,778331508,175318272,4325376,8585346,14549168,19136735,26345800,30933395,1701602628,1713399156,543517801,577971490,2036015167,2121070]},{"sector":10,"length":512,"pattern":33686018,"data":[1701602628,1679844724,1667592809,2037542772,1931813408,1851858978,1818304612,1953046636,1970479219,1919509602,1869898597,1936025970,2036015167,2121070,1701602628,1735289204,779298080,667182,1970365778,1684370025,1918988320,1952804193,1830842981,1769173865,681838,1635151433,543451500,1953068915,757098595,175318304,774766848,167783936,1493203200,704659200,771762734,3014702,2764330,774766638,707668480,-65536,774569983,1141506090,1920232549,1746953573,1713402721,1684960623,544104736,1869771365,1852383346,1970239776,1768169586,1952671090,544830063,1970435187,1920300131,1377840741,1394634357,1148084579,543912809,1914728308,1767993445,667250,3014748,11822,794558522,58,6029312,771764060,3026432,4084,3799,327680,0,0,0,0,0,1180648287,1598377033,1330007625,61,0,0,0,0,0,0,-2130701312,16875905,0,0,0,0,0,486780160,2,0,-65536,536873904,538976288,538976288,673720360,538976296,538976288,538976288,538976288,1210064928,269488144,269488144,269488144,-2079322096,-2071690108,-2071690108,269488260,269488144,-2122219135,16875905,16843009,16843009,16843009,16843009,269484289,269488144,-2105376126,33718914]},{"sector":11,"length":512,"data":[33686018,269484546,2101264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65535,369098752,219677186,202116105,370542599,302842623,127991554,127926272,1,0,258,0,514,0,900,0,1026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65536,512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91095040,0,393216,16778752,1048576,100664835,1157894146]},{"sector":12,"length":512,"pattern":0,"data":[84231493,889521413,5242928,536870912,1481650208,805308423,1347891248,536870919,32,1611137024,1616928864,1879048288,2021161072,134678648,458752,526344,134219776,671612928,1819047278,1577,536870912,329257888,329257888,329257888,0,0,231669760,231673295,0,540,0,0,0,1010572768,1196641614,15934,808466002,755633456,1635021600,1864395619,1718773110,225931116,196618,808466002,755633459,1953392928,1919248229,1986618400,543515753,807434594,150997517,808866304,168638768,1869488173,1852121204,1751610735,1634759456,1713399139,1696625263,1919514222,1701670511,168653934,218168320,16711690,762213746,1701669236,1920099616,2126447,911343618,221392944,1713384714,1952542572,761753193,1852403568,1970479220,1919905904,1869488244,1869357172,1684366433,16779789,808866304,168636720,1970151469,1881173100,1953393007,1629516389,1734964083,1852140910,658804,16777215]},{"sector":13,"length":512,"data":[-1878584343,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899]},{"sector":14,"length":512,"data":[538976331,16843264,4194816,50069864,33685504,1879179265,-50147328,33554434,33554689,157286624,2041,0,0,1,4190224,0,0,0,1,0,0,0,5177344,131087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,514,770,1026,1282,1538,1794,2050,2306,2562,2818,3074,3330,3586,3842,4098,4354,4610,4866,5122,5378,5634,5890,6146,6402,6658,6914,7170,7426,7682,7938,8194,8450,8706,8962,9218,9474,9730,9986,10242,10498,10754,11010,11266,11522,11778,12034,12290,12546,12802,13058,13314,13570,13826,14082,14338,14594,14850,15106,15362,15618,15874,16130,2,0,0,0,0,0,0,0,0,0,256,514,770,1026,1282,1538,1794,2050,2306,2562,2818,3074,3330,3586,3842]},{"sector":15,"length":512,"pattern":0,"data":[4098,4354,4610,4866,5122,5378,5634,5890,6146,6402,6658,6914,7170,7426,7682,7938,8194,8450,8706,8962,9218,9474,9730,9986,10242,10498,10754,11010,11266,11522,11778,12034,12290,12546,12802,13058,13314,13570,13826,14082,14338,14594,14850,15106,15362,15618,15874,16130,2,0,0,0,0,0,0,0,0,0,256,514,770,1026,1282,1538,1794,2050,2306,2562,2818,3074,3330,3586,3842,4098,4354,4610,4866,5122,5378,5634,5890,6146,6402,6658,6914,7170,7426,7682,7938,8194,8450,8706,8962,9218,9474,9730,9986,10242,10498,10754,11010,11266,11522,11778,12034,12290,12546,12802,13058,13314,13570,13826,14082,14338,14594,14850,15106,15362,15618,15874,16130,2]}]],[[{"sector":1,"length":512,"data":[0,0,0,256,514,770,1026,1282,1538,1794,2050,2306,2562,2818,3074,3330,3586,3842,4098,4354,4610,4866,5122,5378,5634,5890,6146,6402,6658,6914,7170,7426,7682,7938,8194,8450,8706,8962,9218,9474,9730,9986,10242,10498,10754,11010,11266,11522,11778,12034,12290,12546,12802,13058,13314,13570,13826,14082,14338,14594,14850,15106,15362,15618,15874,16130,2,0,0,79429632,281143299,-790099341,1191626257,1860895747,-2145391384,2568766,-92068491,-972065281,214790,-402625304,-210566891,-91550997,-972495640,67323654,113640939,855769927,723421915,4253699,53223050,-2147468824,226878,512364404,113640241,-1174142087,216531833,2000584710,259260419,53616266,77399750,77445636,-1610221848,1201668935,-850611197,-1021260511,1946221440,1141880837,-1597824563,799146801,53649411,-1593626462,1570964269,1476838915,113639427,-973077671,224006,57542342,876511232,158663171,-402630424,1105723495,1611056904,-956301309,221702,56795392,56231483,-2081941897,1849589760,427032835]},{"sector":2,"length":512,"data":[-2147247640,17002046,-504688780,57360000,-1090095872,384307931,1849589768,309657859,-401419841,1048578057,1962935111,1191626245,-943521533,168949510,300662546,-972558104,33780998,-150550589,-1089336559,-555216384,1963378183,-1077739261,-756542899,-440446969,130803730,133687386,37491058,20769139,113641589,-134216890,-1007091221,56639107,-2144897792,16987198,-1494743435,127068415,-2147467288,16987198,1508377460,43444227,-2147296280,17002046,512436084,512295735,1621164905,1510357763,-1592363261,100860777,104530788,158794553,-16423192,-352100346,-617364511,53419658,96536262,-1168068351,669517249,1950253062,-428605181,57949824,-385649406,1048772757,1946158549,-683768842,-277610491,-1727672159,125157387,-1962549855,-150610154,-1962552010,-150612194,1141259251,1212315395,-1593615709,1017316821,993951747,141885699,1912604733,571436,54658618,1554129783,97034499,-2147263069,16986942,-1930886283,98017536,54724154,-1572337801,904463199,1845937665,-2000748285,113240082,54986438,23849220,57542342,302825217,-972641048,67323654,-972990231,16996358,56428231,-617414144,53419658,55183047,113704960,525128,55314119,870842368,-943361535,151209990,19458048,113730674,983880,1912675816,1208403822,-402648573,997327122,55051975,132644900,-350391807,1594279432,-1310130173,1007077120,-973069309,604199942,56231623,1777008719,54265543]},{"sector":3,"length":512,"data":[113639442,-955120804,1325619718,-950605056,251870214,1543947776,113708803,5178202,113722347,525116,56362694,1510393608,-352311549,-945099984,151206918,1543947776,113707267,2556762,55183047,113705039,590664,55314119,-2014838784,-955878912,1325619718,993951744,91554051,56362694,859734024,-1116471037,55314119,-1070399487,-1560060768,1541931848,-961908224,16998150,54738560,-385649662,1048641227,1963000664,67168259,-402266181,113640513,855704438,790530779,96582147,96536262,46786564,1554038835,135308035,1073961633,-1609399645,-2069757092,56598546,-2036154114,307740434,-1023062808,1381061456,-1559752543,1285620558,134914819,-1560065375,1218512908,245581827,268879624,-1207959288,312682519,337546248,-1168002808,-202897399,1950253059,-831258365,57949824,-133991422,-1577516565,279118670,1532582408,1397801816,56467793,-617360845,56368778,1738793975,56467715,-235532111,1946221696,-1564410366,1604322150,-155124221,-1979491290,-167549410,56927203,53812875,57679497,512350211,1532560183,966902616,923151107,1678129923,-972000509,17001990,-401491521,113640601,-1023147193,53755520,-2146274047,33781054,-1729624715,-402396164,1843985537,924748548,1914603779,1648263939,292880387,53755520,-402426623,1048576040,1946223470,38070304,-16665368,-1593614330,104530784,225903450,50557601,990077958,1979922694,-617364509,53485194,115672774]},{"sector":4,"length":512,"data":[-1168068351,65537765,1950253059,-428605181,57949824,-385649406,1048772745,1946158841,-79789066,2071199750,-1727597407,125157387,-1962475103,-150535402,-1962477258,-150537442,104417523,1165296474,-1559823967,104334140,964100956,1048582772,1963000635,1547599881,745670659,103418603,-595590308,494225408,990309537,1963154694,1597931540,175440131,117128835,-385452798,-689372967,13363456,57542342,303480577,-972843800,67323654,-973019671,16996614,512416563,113705776,842,55051975,113704968,844,1929257448,1208403915,-402650877,1316158998,55051975,199753743,-950439170,302204934,-33495040,113715570,2360136,1929246184,1007077135,-2147474429,604199998,1105943925,54265543,1048576018,1964114780,-952964274,251870214,1547599872,1064636163,113714155,525116,56376960,-2144308209,151215166,233515380,54265543,1048576009,1947140956,1597931546,410255363,55314119,-1070399487,-1560060768,-1947729080,-402295811,686490291,-1157545496,-2098723061,-957320703,17004294,56237707,-383874749,807307782,115718659,115672774,124932,-398413373,-1581055618,1772290928,10086403,57411270,1729006336,-1912201725,-1912376826,855863326,922104831,54935168,-402033408,-969538901,16991750,117461480,1343124511,57476806,33089625,57345790,1597931608,812974339,57411270,1731627777,1732152067,1729006339,-1912201725,-1912376826,-402427874,520552474,-967831948]},{"sector":5,"length":512,"data":[1493396742,-33439256,1476619014,16999585,-1023184378,-372119087,-1012403354,-2046611552,-1576849402,1654719279,1611040515,56795907,1812383427,552075267,-1580059904,243925860,-315489441,32634689,-33330938,-1610388474,104465260,-562166945,-1598016573,178455404,56664328,-955773789,527878,57254144,-955771741,528902,-1965346048,-1325191394,134855265,-2147449368,226366,1048581492,1946223476,1829160644,-397385469,-27786966,-1023186170,1010729808,91621635,-352117058,1597931535,91488259,-352120386,50642435,-2147271519,16996414,-710734475,97042181,-218100295,-2146243676,16996670,-106755211,116178694,-218100295,-1950132060,-1996276722,46367503,-1593835079,238748509,192348988,1128468361,1128466313,-1007686847,57935558,-1337674752,1393079565,-2013237272,-855410658,74668833,-1023406616,6219859,58203706,-1009158821,1364414620,106387026,1504989982,-855637829,119495457,1946162493,1260807,703273844,305465030,13368897,-1089325794,-890760672,315080448,-352271128,306429702,-402604824,113639596,-352255116,1946600965,1583284739,1482381658,1364247453,1409233490,1962940392,-28091632,2025675,-477952140,1489239679,1499093843,297321304,-841272502,1975520047,1308328196,-745880764,-1152773704,801964033,-1014971402,57491072,-1977518751,-33345770,1103265994,305469064,312346311,512430645,-1832975520,1191626258,334168835,56630923,-2146255425,214846,113640821]},{"sector":6,"length":512,"data":[-1610546361,-2036202644,-2111928046,2091026,1845937859,-2000748285,1304594,54986438,-440417532,518162,-401458753,1405288449,-1957277103,39684869,-1962642037,1435174477,145614856,1049433203,1569395088,74812162,-1962521205,-1729623979,1516173576,-1195156647,567108899,1465274819,190680403,604653450,1978678512,642091542,74721340,192227644,-1090508866,79233063,1537536768,-1017553313,131072,0,256,2,33554432,131073,0,786176,0,16781312,16777760,0,67043328,256,0,16778495,0,100597760,256,0,16779007,0,134152192,-184549120,273,3071,16777216,536936448,65544,70133,1078001408,65545,0,720640,1,-16777216,65547,70186,786176,4661,16781312,3817760,16780288,0,234866688,256,0,16781055,0,268419328,1627390208,786,-2113926145,16777234,536936481,310640651,553779200,186646784,1213952,2163456,8193,0,65552,0,1179392,312213505,-16777213,305463307,268566528,186646784,1213952,2163456,729089,4738,16785668,16781856,34776832,335478784,256,0,16782591,0,369033216,256,0,16783103,0,754909184,257,0,255,0]},{"sector":7,"length":512,"data":[0,-256,255,0,-256,255,0,-256,-1,255,-256,255,0,2573,167772160,606348288,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,1397564452,1397703712,1919243808,1852795251,673199648,1866672451,1769109872,544499815,825768241,960049453,1766662196,1936683619,544499311,1886547779,1667845152,1702063717,1632444516,1769104756,757099617,1869762592,1953654128,1718558841,1667845408,1869836146,1092645990,1914727532,1952999273,1701978227,1987208563,-14654363,18486790,33581056,50363392,67145216,83926528,100724480,117522432,134310912,151097088,167883520,184669696,201456128,218235392,235020288,251802112,268587264,285378304,302167296,318958848,335745280,352540416,369323264,738424832,755201793,771990017,788777217,386135041,1868787273,1667592818,1329864820,1702240339,1869181810,352980334,1970499145,1667851878,1953391977,1835363616,226062959,1850282762,1768710518,1634738276,1701667186,225600884,1866748938,1953459744,1701868320,2036754787,1818846752,1835101797,695412837,1866664461,1851878765,1868963940,1952542066,1229201466,1329810259,1528844365,1986622052,540684645,1769104475,976381302,1528847709,542978351,1563963227,223612170,1986939146,1684630625]},{"sector":8,"length":512,"data":[1769104416,1931502966,1768121712,1633904998,1852795252,1884490253,1718182757,543450473,1986622052,1868832869,1847620453,1696625775,1953720696,1919879693,544434464,762212206,1869440370,1818386806,789187941,1631783437,1953459822,1397310496,1297040203,1869881424,544370464,1836020326,543230477,2004116846,543912559,1986622052,638192997,1850280461,1953654131,1380533792,1679840339,1701540713,543519860,1679847017,1702259058,976299296,220662285,1936607498,544502373,1329808723,1679836238,1701540713,543519860,1679847017,1702259058,976299296,220596749,1380533770,1679840339,1701540713,543519860,543449442,1763734127,1836016494,1769234800,224750690,168634122,1329808723,1679836238,1701540713,543519860,543449442,1763734127,1836016494,1769234800,224750690,1867385610,1701978228,226059361,1917853962,544437093,544829025,544826731,1663070068,1769238127,543520110,539893806,352980270,1953067607,1919950949,1667593327,1919230068,225603442,168632842,1886220099,543519329,1953459809,544367976,1802725732,1702130789,794372128,1059072334,1124732217,1634757999,1735289202,540091680,1667330676,168653675,1931489829,1869898597,1881174898,1948283493,1801675122,858071084,1684632352,695412837,221317645,1769096202,1948280182,1936027769,544370464,1802725732,1702130789,1887007776,168653669,544501614,1886220131,1651078241,168650092,1426722107,1667592814,1919252079,1701601889,1634038304]},{"sector":9,"length":512,"data":[1919230052,544370546,1679847023,1702259058,221390112,1684632330,858071141,1920213036,543908705,168637477,1124732199,1634757999,1696621938,1919906418,225341216,1684632330,858071141,1920213036,543908705,168637477,1801538889,1970479205,1629513074,1936286752,1953785195,1936269413,1936615712,1702130277,1852383332,168652660,543516788,1986622052,1851859045,1752440932,1868832869,1763734127,1818435699,1684370287,219744781,1836008202,1701994864,1869770784,1936942435,1684956448,168649829,1124732174,1634757999,1327523186,34213195,1127090701,1634757999,544433522,543516788,1953394531,1937010277,543584032,544175988,1886350438,1679849840,1936421737,218762542,1229203978,1329810259,1528844365,1986622052,540684645,1769104475,976381302,1528847709,542978351,1563963227,168626701,790634542,538976305,1886220099,1936028257,1701344288,1919510048,1931506803,543515753,1948280431,1679844712,1936421737,1024068910,942612512,1126178848,1634757999,544433522,2037149295,1701344288,1919510048,1696625779,1952999273,1667592992,1936879476,543584032,1751343461,1634890784,221145955,-1928917494,-2129398978,-1023106879,18220545,327679,1954039057,1701080677,1917132900,544370546,118370597,412630669,-1021263485,18220546,327679,1918980110,1159751027,1919906418,238101792,-1136751353,499221272,1381191875,-919382266,-13385330,-1307431240,-1943024384,-1995242746,-1206714050,45224494,109850573]},{"sector":10,"length":512,"data":[1049170699,783815433,-855330286,453413935,423528723,305051667,801965746,318703244,318586505,-1929409560,-1995244794,-1944913602,-1995237626,-401402562,109903769,1049170703,783815437,-855068142,587631663,557746451,872859411,-972419821,605256966,322504391,113704960,660283,-1979768088,-401398466,786956313,4319232,5302353,1599670386,1482381831,-998046485,1355020556,12066390,505531747,141696775,321730185,321848972,-1195157410,12272640,-841862400,31883297,-1207841152,567100417,1140897987,855638459,-2145268270,28836302,-1021194940,567095476,1964377661,418117635,1929380413,-17659,45810667,112640,-1308622663,-100682240,1364414659,1376147285,512354699,914887473,-370666698,1959332610,1978469155,3139589,-1175976981,1510961665,117509864,1959922271,96331779,-998046485,82573574,-111517945,1499269234,46433115,-998046485,1355020552,512447059,-75295951,-402295297,65732652,1929410536,-1151749105,567083008,-997989326,283900166,1962933123,1958820619,11593735,-116996989,1532625778,102679384,33129247,45357941,-854226394,-1031135455,503362024,124985094,22383142,-336059955,184726543,638153929,567088522,-210417337,1472405496,-1957493168,-1962467590,-65359655,58044146,-1957963477,1476877259,-1070349473,1333053707,-1273035234,-2083026112,678756857,1344217549,-402290138,509083738,108207878,1111536888,647766477,1964653952,-339637502,-401682687]},{"sector":11,"length":512,"data":[451674107,-1494724267,1508477951,41099725,-935654421,-398784652,-1962773000,-1021354559,-1157617736,28639236,-98109,-956952204,504132992,876514567,178451,-1006698264,1053054726,-16051411,-2094655628,1962410045,87696912,975570802,24576325,-347650055,-1022926871,322373263,-1835803853,322647799,993458067,167412499,-1031797386,-2147226825,1095905474,74825739,963959563,1963194755,175931405,-16419540,1091781686,-108846357,-2146601721,1965820540,1144454917,283853075,1963719043,175931403,-16419540,1091781686,-338545773,869413799,926351296,-768359661,561301771,11543988,1965373478,1698178570,973370369,638481860,1407714698,1191277567,1967735367,-897100061,863300875,960398157,729088019,67519626,1161438768,-352160511,1966095390,1959922436,-348912892,910065895,141950739,1229537858,65752911,1476394938,183040299,1935237118,-1870664957,-2134209711,1946158716,1959332621,1195985158,1577184071,-922021653,-346160267,-425207,-919403915,1450508043,1359370069,1048824115,1962939193,121959981,-1006078705,1961362044,-166008062,1947010884,121959948,-167349234,1963722564,41731080,-352156952,24832000,552076267,1493660160,1583177479,-998046485,1048836362,1962939193,-385650171,113770260,4921,-1580059709,113709881,660283,1493079528,322799496,1090224963,-119012491,1976172033,168671470,322799497,-387431613,1398194945,-919341517,1979711104,633113352,-337671405]},{"sector":12,"length":512,"data":[46593573,-1128003468,-1014230263,322771179,1024291328,142016551,320191684,116114316,318356676,-75250804,-2146011649,58064894,-1559434247,-4713671,114175,-336005581,16483084,1424491380,80118528,184972024,-352160311,-25125729,1378448641,1460031829,83933264,-12832819,-1962314408,84064472,32190413,1594192889,116087047,-402209661,1516044300,248447467,1543502824,1347928926,855637945,-139529536,1599621585,33260483,1048780149,1962873633,-49898,-1588589707,520033081,-346549471,555679492,857402131,-98103,-1977219468,166396749,1966422062,1300901380,80184067,-131238919,427084043,1962933888,87762437,992871403,-352160507,91506953,-352008317,208861667,-117440896,118358645,41747238,-315488654,1192069670,322111174,-617364736,425088,-2016997003,757076797,-2017049789,1126175549,1560323816,-768353485,322113160,973685898,706639553,-152007999,1954547524,172263956,322799496,1090224963,2095580021,1976499712,142377196,940405760,141756492,-1979167702,139234001,611633419,252134646,1156975733,108269575,1191545382,-2007498261,1125334407,1967192963,4319235,-596260354,-2147007242,-167110539,1149899892,1032292362,-75283693,-402426560,-822214621,1157033077,141889287,268911862,216728180,141873674,322373263,-126498050,1426064104,1460031939,-880081122,1049484083,1525158717,1594192635,82532615,-116996989,1156996547,309669895,1342540326,-62855103]},{"sector":13,"length":512,"data":[-1977219469,-128974523,-1977217557,1958742533,-348043516,1442393077,-768385597,113754163,1053499,1157028659,611655687,-167409114,1963788100,1954588685,2133082883,322635463,1156972554,108334599,322635463,1424687114,268911862,-1960434059,121959941,-166759155,74744004,2145681475,322635463,1156972554,108334599,322635463,686489610,637897510,-167619189,1963788100,-2134444529,-2143091596,113737702,660283,235357430,113706613,660283,1074218230,1380985204,-1070450508,322770573,91431373,323225286,172263980,1482356875,738870470,-1946445336,172263623,-393214741,-619971698,-768408204,1431449010,508711363,1992358528,616729096,-351489009,115509762,-841512161,-92266719,309655562,1945845224,-1966568949,-1977496094,49019105,74580148,82532698,-117128061,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-16777216,0,1014783323,993864510,113704994,8237,537823740,570869536,-956301280,2110726,637978368,-956301280,1528871942,-1106852003,-952337376,1042333702,-1039743189,-398770912,326304978]},{"sector":14,"length":512,"data":[1409286072,639470374,57872186,1526727352,-1996419863,1394618166,512578903,116793399,1965039662,1575529534,-399019515,846464198,1963259880,772208150,91562016,-352022040,772208162,460603680,-2011632818,1966947335,772702213,-398261984,-915208887,1124567212,-1991326741,-970972106,512294919,-1960435661,926321949,792494112,1015034228,-167283678,18886150,-1977200523,-466484921,538969657,547426675,1138807072,651690819,-2132271221,-949556480,18883078,643754752,838944650,-523157276,-1977165821,200094223,1125086409,529213011,1526774760,1128480627,113767138,204834,-1977207829,-466484921,65065280,126494424,-523115470,651690816,-315486326,259311883,-1960422589,5564447,1124758363,-940383677,69214726,1532976384,538971787,-1960828255,-1960827850,-1977604586,-132110306,-1960423229,174343,117376117,1015029792,-1458014976,141885441,539100871,250281986,-1274826672,9758975,-402396328,-1017642736,1364575225,139430438,-921965262,1871514996,34924553,233310323,-101260800,780731883,1509433397,-2144943267,1946157182,-152353533,243319621,-401596370,1114832840,539895424,832655599,29764384,1478504198,540096139,1962949760,-8617949,-955747014,153100806,639560448,1946173315,133637656,292880385,539100871,166395906,-134179864,-335999509,61886474,65601460,-1007134720,2139825751,641632516,92808736,23431206,540385616,38111526,1963015256,1435051530,1300833796]},{"sector":15,"length":512,"data":[1012525830,637957378,-352037495,1946631247,1946696936,1963343076,1434985990,1010690820,-1592888060,641736751,637814153,-351904372,1971922475,1569465860,-165261306,1946223175,-352014332,1207313929,91488770,-1779957072,-165259264,1947206215,6809603,113689439,1342185669,185043750,1343714752,-950578605,153100806,-1325419520,-10426365,1482381919,65733355,-1450170389,326369536,539100871,-2132279296,33089537,539115139,-1458670327,158605312,539100871,-1494745088,-985759744,225771808,539115139,-955878144,153100806,1354979328,168069718,1008235712,-2146732742,1962934652,312837,-957871637,1174500098,1591929670,1381417816,76206218,1912780008,1958742539,780299,32179336,-353679802,1019436634,1007448960,1010397793,607483770,1395780575,1049450246,355999927,1364203380,-1274601902,-1144878491,96075775,-17920,1499079117,22907736,1124287886,645934147,1527209943,1915763907,2000239624,-131060732,1355020739,643256915,637960075,-1073085046,-4979595,113707243,598050,61931444,1610508776,-1017619622,1448236368,76153522,1912742120,-8656838,539887350,1007514632,639530301,97920,317419125,539887350,1007580176,638219578,32384,-347710859,1178216026,169637120,1179677888,638774085,1962952250,76170819,1178216005,1178170624,-156505275,1075850758,-148500620,2097735,-2144991372,1946157182,133637666,410255376,158677564,8290342,-351439616,1962949646]}],[{"sector":1,"length":512,"pattern":0,"data":[2122327559,57948672,-1996100615,-132107978,1482512990,1448562883,539967115,-1073085302,1474826612,-970951424,18924806,312926,1580854111,1593836742,17299238,-953322240,35660294,1478880000,168069718,-400853824,192151594,1929465064,1195788034,-1561662650,80093224,1049184000,1600004132,33597784,-1269823116,-402280193,-1017578142,512577875,163127484,1946630656,-102612220,-1017423551,76173904,896843786,1912670440,24937258,638415930,1050615,2088770932,393543681,1631330316,2050756978,1613499767,-4927350,401082032,-955847683,153100806,-1017619968,2156716,1374164596,-166431488,538979846,116846196,1950425134,116084233,-134091783,-1007107250,222056787,3943796,171714932,-2144983692,1912734333,651899678,-2096931446,-2144992061,225706041,-1977169613,975586057,-503024639,1494039800,1364443995,539494086,774275104,540860192,154941044,742142580,540815732,1015024757,-1341688544,-1069922784,-2144985365,1912668797,650720023,184765834,-1156877111,641925123,125043002,540866786,-1564255399,116793384,1963008046,772702213,-1069932512,781052651,-583327689,792463988,-336002187,183236621,91565884,539889280,516159552,1048793942,1962942507,1360941093,106256210,-561056205,-849149768,198937633,1599932379,1478449498,914957684,512303145,915087403,512630825,1015226411,974156800,973632004,58130756,1174793209,-118756538,-1021354405]},{"sector":2,"length":512,"data":[129,9991,287772930,656408871,65792,438770432,50331687,255,0,656025395,3223299,788543535,50331711,255,-973078528,-16567546,54200006,1030220799,108265472,-352283928,243896440,914958082,-628414720,656145281,-242545803,-2010701920,-352113020,657498177,657792651,1963018040,5171219,54986438,839304704,-4587225,-1874924545,-1960367456,942093598,208994631,657000134,856081952,183173379,657196742,990299680,1049428227,915089156,-768399616,654446219,1039730664,41222143,-4554261,-1084767233,1592267503,-281116183,1946234642,-284754170,1609558802,295347139,54986438,654352644,309653563,-1560279866,113709488,296620446,295700167,-1698758655,-383260655,-1022243398,0,0,-1560266208,1340614672,-1547138048,782438905,308650770,-1559072605,-1599925637,313238290,-1559054685,-2065165902,-4523006,-17307393,657604224,-2095024896,58064890,-2097134872,326500346,-2097117464,192282618,-2097057816,58064890,-1023268120,856052560,-1667411776,-2147440296,12061813,-1667411856,1879091544,-1867510923,-1576069470,413273879,1482360591,-853953341,672309793,53427840,-1978501888,-30928338,825133253,-1999795709,-352112114,791579171,825133059,809402371,208994307,672272010,243843582,149619506,53481098,53612168,302657024,302714368,4319427,1979710083,824085051,25487363,1979710083,840862255,24700931,1979710083]},{"sector":3,"length":512,"data":[824085027,30074883,1979710083,840862231,29288451,1979710083,1370123,1979710083,4188163,272532419,57933864,-1022240838,53550730,-851179336,1025798689,91488256,-351152198,840862232,1141422083,175251917,1946157117,299350531,-675675157,-1174148335,1354961367,53550730,-1577035032,512361259,1357382450,53256704,53550730,-1965088280,-402443746,512417562,954729265,822491648,-971082749,16987142,53550730,53616264,302653066,302718600,53550730,-337710616,839268882,-972589821,16987142,113640939,1476526900,-1337674557,1008848142,-1979550464,860931011,824085211,-1168068349,736625529,2064054246,1946157315,8644867,58343040,-1585679355,1084425085,58768131,-1576056949,1200292671,54436365,765659019,-1965346045,-1325190626,77445728,-135925272,17080070,-2142472960,84113982,-1583266444,54829828,-1962629957,1134694215,222792451,-1174191454,1048641535,1963066234,-1640071149,578028036,77479552,-1172605945,384504456,77479552,-2146470654,117668414,-2001074060,-1174148334,-1017638441,-1957604528,-1337674550,1931595017,299350277,-1023997461,57937920,-1961762375,1482381777,1364414659,-2128078917,-1325137725,-1930702076,-2133326904,-1014767389,924748064,891193603,35556099,958302464,1482381571,1381191875,623097862,-855092550,1532626721,11846488,-58709299,-1174047488,468451327,-1014969346,337545281,672448040,-839384140,-1174047958,65737185,-1006633030,0]},{"sector":4,"length":512,"data":[-1878574615,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899]},{"sector":5,"length":512,"data":[538976331,0,0,65536,4190224,0,0,65794,1744846850,195585,16908800,7340544,50135760,16908288,-536739839,-116826112,7,94371840,0,0,2880,5760,0,65536,0,0,0,0,0,5177344,131087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65536,131584,197120,262656,328192,393728,459264,524800,590336,655872,721408,786944,852480,918016,983552,1049088,1114624,1180160,1245696,1311232,1376768,1442304,1507840,1573376,1638912,1704448,1769984,1835520,1901056,1966592,2032128,2097664,2163200,2228736,2294272,2359808,2425344,2490880,2556416,2621952,2687488,2753024,2818560,2884096,2949632,3015168,3080704,3146240,3211776,3277312,3342848,3408384,3473920,3539456,3604992,3670528,3736064,3801600,3867136,3932672,3998208,4063744,4129280,512,0,0,0,0,0,0,0,0,0,65536,131584,197120,262656,328192,393728,459264]},{"sector":6,"length":512,"data":[524800,590336,655872,721408,786944,852480,918016,983552,1049088,1114624,1180160,1245696,1311232,1376768,1442304,1507840,1573376,1638912,1704448,1769984,1835520,1901056,1966592,2032128,2097664,2163200,2228736,2294272,2359808,2425344,2490880,2556416,2621952,2687488,2753024,2818560,2884096,2949632,3015168,3080704,3146240,3211776,3277312,3342848,3408384,3473920,3539456,3604992,3670528,3736064,3801600,3867136,3932672,3998208,4063744,4129280,512,0,0,0,0,0,0,0,0,0,65536,131584,197120,262656,328192,393728,459264,524800,590336,655872,721408,786944,852480,918016,983552,1049088,1114624,1180160,1245696,1311232,1376768,1442304,1507840,1573376,1638912,1704448,1769984,1835520,1901056,1966592,2032128,2097664,2163200,2228736,2294272,2359808,2425344,2490880,2556416,2621952,2687488,2753024,2818560,2884096,2949632,3015168,3080704,3146240,3211776,3277312,3342848,3408384,3473920,3539456,3604992,3670528,3736064,3801600,3867136,3932672,3998208,4063744]},{"sector":7,"length":512,"data":[4129280,512,0,0,0,0,0,0,0,0,0,65536,131584,197120,262656,328192,393728,459264,524800,590336,655872,721408,786944,852480,918016,983552,1049088,1114624,1180160,1245696,1311232,1376768,1442304,1507840,1573376,1638912,1704448,1769984,1835520,1901056,1966592,2032128,2097664,2163200,2228736,2294272,2359808,2425344,2490880,2556416,2621952,2687488,2753024,2818560,2884096,2949632,3015168,3080704,3146240,3211776,3277312,3342848,3408384,3473920,3539456,3604992,3670528,3736064,3801600,3867136,3932672,3998208,4063744,4129280,512,0,0,0,0,-402455364,192092816,-971268120,67328774,-402619159,113650165,-2130705573,1947832826,-359641,113643381,-402652325,887619709,-336366847,-386233590,113642181,-352058533,-971043321,33774342,344530571,192207627,567099060,-1950727756,857853204,69110491,3991555,50667146,-2147469848,220222,512364404,113640200,-1174142054,82314138,1564377097,259260419,50929290,79562438,79608324,-1610027288,1286865755,550314445,1946221440,1141880837,-960290355,218630,59246278,-1945713152,113639427,-973077615,233990]},{"sector":8,"length":512,"data":[59967174,2080818688,113639427,-973077644,226566,-1560082783,1048576889,1963000590,222199827,208994307,1930147816,-1942060984,1316225283,51265152,-1089506046,-85452795,404471561,-402000664,113707629,893,58656455,2141257728,1980119811,-401180925,1048576104,1946223500,12118041,59522688,-351308799,-2009169695,108265475,-401065025,1048578489,1963000716,420331284,-2146849560,219966,113642101,-352255141,167110659,-1090065469,-1830283319,410566409,1342803176,-401094209,-396752507,225577417,1929380413,1963015394,32241667,1048626169,1963000590,403029775,-402037528,1941899741,157018137,58539651,-401574656,-1998060729,95414277,59522688,-1960020991,-1996288226,-1593604578,104530813,460784502,50562721,990085894,1996689670,-1962490354,1911054595,2097610496,-1008932093,51265152,-1089506047,182982683,159639561,-400982593,113641729,-1962867823,-1996288226,-2096921058,229182,113643381,-402652279,1048577464,1946223500,58695979,58066491,-2036260233,-2096758013,285620995,-971671805,1090751238,-2147478552,17009726,117376628,-706018433,59836102,113689344,-973077623,17010694,59457152,-402295455,183173164,-2147428376,17009726,-768401548,-1979481183,839088910,-235453971,59115009,59311870,973310368,2114157318,-1070349370,-1560049248,2107705392,137536259,137627335,-2036269056,138060547,137889479,-617414656,50863754,800743857,115664904,59653760]},{"sector":9,"length":512,"data":[-2095876864,537150,1048775285,1962936368,2353155,1048584427,1946223502,-1874952015,309657859,378167732,-605551864,-2012807673,-1878604285,113442819,516183635,2005731384,1149904395,1022370826,640644592,1009141642,1006924840,-1272744663,1361169706,-852708270,-1039968223,637753251,1478969225,1503904003,1200170499,1443284521,1532887299,-1070349561,-1560049248,2141259824,137536259,137627335,-2036269056,138060547,137889479,-617414656,50929290,800735665,104130568,59653760,-2146208512,199486,1655769716,-2147081752,233022,1048590196,1946223502,2084470961,343212291,59246334,378159540,669516553,-1878604281,367722499,-401081409,113641293,-402586756,1048576008,1963000716,-970013823,855046,100011659,1963522435,437160724,167346951,-108853900,772175104,218891974,2078977,-1090131522,-1527576819,-972711704,84346374,112869553,1981713159,512312067,512362250,-1746402551,-965053947,17312262,-1253831240,860008712,152996571,137017859,715137485,705086984,37486600,-2144466827,855102,2141278068,58827523,-1576826464,104465290,158598011,956528289,1996718342,58433636,59377208,1894260855,-1908506624,276103683,59391616,-2093779711,229694,300625013,59377406,113694699,-16776310,-352091898,-1945712957,-1279327997,107735064,56311424,-971082496,67328774,113645547,-1090452596,1390942497,1530822662,91553795,56297158,-1965346044,-972879586,16997638]},{"sector":10,"length":512,"data":[-972618054,67569158,-1023101208,-1598016768,732103562,58827016,856173987,152996571,-1170034429,-1209530326,-1908506620,-579600125,-1965345853,-972879842,17162758,-491102031,77391877,59653760,-2132380671,33787454,-1679228043,-163675392,57999365,-2097114647,391230,-241043852,-1072981755,-23001227,1477381,-164169978,-132216059,-2131495163,16977470,104531572,930546457,58106696,-2147092831,16977470,104466036,595002135,-1593608030,2040727017,171868163,57999619,-1593797655,104465912,125240088,58434120,-973008663,17009670,-401034305,1048577389,1962935131,1527170565,1172898819,-1945713151,398393603,89384985,56297158,20113667,57935558,2030487297,855769091,136219355,1611056899,-956301309,134438406,1644611328,-402653181,-982384371,56493767,48758793,-950898175,251878918,16246784,113726578,1180510,1912663272,1577502511,-402643965,393347297,113641707,-385875077,113639557,-953941128,1325626886,-967841024,302217222,58066631,1122697295,58197702,1980155663,-352301309,2013709877,113707011,2556790,113649899,-955710600,654538246,1611056896,-956281085,151215622,1644611328,-402653181,108134529,58066631,1048576079,1946223370,1644611477,855638275,58237120,-402432349,-2106458015,58394310,406749185,57934339,-2130775831,17003582,-521665675,101235456,-1157560088,48760620,1543947777,-617414397,50863754,98698950,98744836,855818984]},{"sector":11,"length":512,"data":[58237120,-1593297245,-1556085898,2023757997,414163459,-33326176,414294720,-401046849,1354957849,-1588440749,1688406070,56795395,-1593298781,849544032,56533256,137667400,137758407,1203240961,137929522,138026636,800743857,42526728,59653760,-2133953535,33787454,-336067724,1688336641,137798403,1482381658,1364414659,-1325172319,-2131626480,41156860,-2052931330,58433539,653705470,512361336,-470416507,1493402531,-1581033381,103482129,104530703,275972995,59508422,422297345,-972847896,67328774,1048596675,1980302200,53853701,1048580075,1946157947,53001733,465437675,-1598016765,-157088904,99204869,-218100295,868440228,2014218953,-2096133885,28902083,58302720,58199610,260639607,126436163,-348044477,-617364497,50929290,117835462,-1168068351,-1075312890,-1908506623,-428605181,59653760,-385649406,1048772816,1946158874,473858825,41156615,-1108801813,18475264,-1727588959,125157387,-1962466655,-150526954,-1962468810,-150528994,104417523,276038518,119160451,-2089454321,654538302,-840208779,939989665,1946384390,1983808333,1551191811,427102780,58211968,-352160497,2017362096,-1452013309,58211968,-349473500,1963539616,2017361936,-1787555325,58211968,-350784220,1965309068,2017361959,-2123099645,58211968,-385649399,228720503,2030451463,-1592953597,977798940,1912830726,10610947,1929567720,-1945713144,-1310129917,402374400,-972929816,17005574,-369426456]},{"sector":12,"length":512,"data":[1048576160,1946223503,1963378395,-617414397,50929290,56624839,113704960,525150,56755911,-85458944,-944147715,151215622,-34609152,113710194,983902,1929241832,2017361945,427101955,1048588523,1947140984,2017361936,-1938552573,1048584427,1963918200,-1945713127,-1279327997,30402584,56311424,-969968384,67328774,532228331,99204608,-217641537,1560725156,512426243,-1992096906,-1979250146,-1174206178,113641222,-402389242,-121438177,58080899,1023964455,57999439,-2096239623,1325626942,658310773,-117345024,-398413373,-1581055974,961020697,1912829446,51879945,58197560,113640819,-1023342836,59639494,1393079552,-2013114648,-1207724770,567100429,-402361509,1405288461,973224680,1526961438,-1664886155,1381061456,503732054,-1151749037,567083008,1023876955,125042709,1946161981,-2140804268,17005630,1048588916,1946223506,-1858174940,611647747,59901638,6612993,59901638,-1824620544,276037891,59653760,-347507711,-1828272589,1089143043,418514630,13368897,-1088884194,-890759089,405913344,-352271128,409255686,-1090470680,-1226303137,-1912158720,350945539,59639494,-1895381502,440205315,-972720896,17010438,1499094623,-1013098405,-1190715898,-373424097,118341381,250127603,101107455,1085342983,856098490,152996571,-15407101,-1985953741,137077507,-1560051807,-617412563,50929290,716849841,-17242104,1342410400,512416563,113640201,-1174338723,113641222,-402389242]},{"sector":13,"length":512,"data":[-1571225921,-1022950514,1969355904,2099153673,415088387,512428011,-943783041,59351064,418514630,13303361,-1575423466,512301301,115874039,1527170560,1405289219,-1957277103,74812189,-1962521205,-1044903851,1009765805,-1960479489,39684869,1930464232,-1606513383,39684887,-1962642037,1435174477,276228104,56297158,116128004,60032710,1516173313,-2134680743,17011774,599263092,-350106267,47107,1446936771,443875587,56034957,-1927721821,-1560061690,-910223039,-7608297,-401001025,-1077674107,2129139657,409911295,-1006667544,1381061456,1929391080,1527170596,1438581763,-10229735,-1494691701,1024619263,-378339326,141885756,56297158,32241664,1499158777,-617364646,50929290,-1928828743,-1207724522,567100433,-336067725,1141749803,57876941,-1608389640,-466484329,1119609041,-2116549885,2080593659,216791043,104531851,58459633,-117314568,1381060803,-397148366,276103191,-872524965,1946164968,2145616647,1398326270,1482250843,1242675395,802020147,74825739,1145961345,-1194095933,29051409,-164639488,12812483,0,0,1028672852,1347241300,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218103808,9226,1337524224,344701696,118413571,509478,-1074143157,1122506757,-21239554,-386387224]},{"sector":14,"length":512,"data":[15204832,-1961457150,28698644,372995186,142021856,104557682,1719014622,12147380,344701440,1517429197,-1089173085,182983027,5695742,113641587,-352255092,11571241,344530571,-779368141,567100084,-401073217,1659436521,427671550,-386015000,108134580,1929441768,-1952646951,185895198,-1274776357,-954086082,1345798,-1170099200,567088267,-104873059,-38541288,-387398663,-99620615,59522688,-2123664383,230206,-1956416752,-1996288226,-956070370,228614,58564864,58066491,-2036253065,-2096758013,252062467,268451075,-941095054,-348687872,59154706,58918403,51447355,-1276639886,-970755584,1627622150,-743448,-2147255034,17009726,-1175777164,990086817,1979911942,9496579,512476152,1051989129,113713613,5257,113755129,895,59311814,-101783552,59522688,-1590987775,104530815,544670582,1912619496,51355933,-972847453,1090751238,-2131473432,17009726,117377140,-672464001,-1007041544,-400987713,-1085211423,-622323767,518544124,1024160509,-395116542,41222460,-1007041544,-1325169759,-1948200188,-1994486840,262217236,-1260876285,47679,-1021369907,721651361,-1325199610,-1948200188,-1994486840,262217236,-1160212989,1085538304,1914642893,51355912,-133986653,419676099,-100893464,1643806915,-360708494,-1878725791,-29234560,-852052798,-49887,-503904652,-1007098889,1990312953,243941379,-1040317573,-503845582,58199690,-503845582,58265227,378135031]},{"sector":15,"length":512,"data":[-559737632,344243732,738627118,375040,1929404392,343981584,738627118,309504,1912623080,2105550401,376781313,106845982,-1090056673,1287197835,530903552,-350975041,431263792,1090789837,-1340830814,344760890,106845982,-1090056673,1287197837,530903552,-350975041,113741836,977474699,344786630,-13909156,1031808764,-117213952,1364596459,1582933747,-336067723,1371550219,-226492231,-504669778,195,0,0,131072,0,256,2,33554432,131073,0,786176,0,16781312,16777760,0,67043328,256,0,16778495,0,100597760,256,0,16779007,0,134152192,256,0,16779519,18353920,201261056,1579520,256,155197441,620757248,280,805309439,16777240,536936448,16779840,0,201261056,256,0,16780543,0,234815488,1493172480,280,-234877953,24,536936464,65550,0,1048320,1,-3670016,65552,0,1179585,411828225,-16777213,413990923,553713664,186646784,1617664,2163200,729089,6321,16785667,32,301989888,256,0,16782335,51958016,352256000,-788528896,792,-234877953,16777240,536936464,418709515,553779200,186646784,1636096,2163456,977346561,0,16785664,0]}]],[[{"sector":1,"length":512,"data":[587137024,256,0,16782847,0,385810432,256,0,16783359,0,436142080,256,0,16784127,35208960,201261056,0,77791488,733188,0,67412738,16784944,0,536854784,256,-939524096,16786431,0,620740864,256,0,16786943,0,553582592,256,0,16854271,0,16711680,0,0,-16777216,16777215,0,-16777216,16777215,0,-16777216,-1,16777215,-16777216,16777215,0,168624128,0,603982336,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,1142969165,1444959055,1769173605,908095087,692267040,2037411651,1751607666,959520884,825045304,540293433,1919117645,1718580079,1866670196,1277194354,1852138345,543450483,1702125901,1818323314,1344285984,1701867378,544830578,1293969007,1869767529,1952870259,1819033888,1734963744,544437352,1702061426,1684371058,369492256,83885825,2017792256,1684956532,1159750757,1919906418,238101792,-1791062777,549552922,369492675,83885825,1632636416,543519602,1869771333,824516722,1049429774,-1048372551,117424925,75542,131228,196784,262319,327871,393493,459112,524691,590252]},{"sector":2,"length":512,"data":[655824,721396,787002,852570,918131,983675,1049229,1114795,1180359,1245947,1311528,1377119,1442711,1508266,1639372,1704942,1967104,2032668,2163806,2229432,2295040,2360648,2426242,19662245,19727814,19793401,19858981,19924562,19990154,2098874,1226245915,1919902574,1952671090,1397703712,1919252000,1852795251,218237453,1850282762,1768710518,1634738276,1701667186,225600884,1866750218,1953459744,1701868320,2036754787,1818846752,1835101797,695412837,1866664461,1851878765,1866866788,1952542066,1229201466,1329810259,1528846672,1986622052,540684645,1769104475,976381302,1528847709,542978351,1565929307,1294949152,1443499357,1850280461,1768710518,1919164516,543520361,1667592307,1667851881,1869182049,168636014,1667592275,1701406313,1919164516,543520361,1936027492,1953459744,1769497888,1864397939,1936269426,1852796448,1835364909,1650554479,539911532,221121037,1851867914,544501614,1263749444,1498435395,544175136,1713402479,544042866,1701716065,1919907700,1919164523,224753257,168631306,1836216134,1769239649,1998612334,1701603688,1886348064,1735289209,220662285,1936607498,544502373,1381322579,1679836483,1701540713,543519860,1679847017,1702259058,976299296,220662285,1936607498,544502373,1196573012,1679840325,1701540713,543519860,1679847017,1702259058,976299296,1296632333,543517537,1701999987]},{"sector":3,"length":512,"data":[1679843616,1701540713,543519860,1763734377,1919251310,543450484,1869901417,1752435213,1919164517,543520361,543452769,543516788,1919905636,544434464,1936682083,168649829,1409944867,1701278305,1768169588,1952803699,1830839668,1646295393,1853169765,1650553717,168650092,1409944860,1701278305,1768169588,1952803699,1965057396,1634956654,224750690,1867385610,1701978228,226059361,1918309642,543519849,1953460848,544498533,1869771365,554306930,1936028240,1851859059,1701519481,1869881465,1852793632,1970170228,539893861,221126702,168632074,2037411651,1869504800,1919248500,1936286752,1953785195,1495801957,1059671599,168638240,2037411651,543649385,1948266789,1801675122,622865523,1702043698,1919906915,1701847155,1920213106,745235297,540222752,1701079411,220820264,168636426,1986622020,2037653605,544433520,1679848047,1701540713,543519860,1701869940,1869488243,1868767348,1952542829,1701601897,221907469,1919833354,1987011429,1650553445,1914725740,543449445,1869771365,1852776562,1769104416,622880118,1767055409,622880100,1948265522,1801675122,221455648,168639242,1701998165,1702260579,1818386802,1920409701,543519849,1869771365,1852776562,1769104416,622880118,1767055409,622880100,1948265522,1801675122,221455648,168629770,2037411651,1869770784,1936942435,1684956448,168649829,1393167653,1129469263,1768169541,1952803699,1646290292,1864393825,1852383346,1886220131,1651078241]},{"sector":4,"length":512,"data":[220554604,1380013066,542393671,1802725732,1702130789,1684103712,544370464,1868787305,1952542829,1701601897,1936607509,1768318581,1852139875,1701650548,2037542765,1444874765,1836412015,1699946597,1818323314,1836404256,544367970,622883689,841297201,222628365,1380013066,542393671,1768187245,1634213985,1869357171,544367991,1634754915,2037672291,1634235424,1330847854,1162039893,1866664461,1852404846,1629513077,1635219822,1495801977,1059671599,1342836061,1936942450,1381253920,541272908,1629515636,1953656674,1862929708,1868767346,1667592818,1752440948,1881174889,1818390386,1629515109,1881171054,1936942450,2037276960,1752461088,1797288549,1948285285,1868767343,1852404846,773875061,773860896,1162545677,1919906418,1701995296,1852404833,1835606119,543516513,1701603686,1142956078,1667986281,544829551,1819044215,1986359840,544502373,1629515636,1819634976,1819306356,1634741605,1663071091,779710575,1162545677,1919906418,1769109280,1735289204,544175136,543516788,1734438249,1768300645,539911532,543516756,2037411683,1869770784,1936942435,1970234144,1847616620,1646294127,1868767333,1701605485,778331508,222104077,544162826,544567161,1752394103,544175136,1953067639,1851859045,1701344367,1969496178,1667853424,543519841,1948280431,544434536,1802725732,794372128,541010254,1376390438,1768186213,1713399662,544042866,1920298867,1679844707,1701540713,543519860,539893806,604638510]},{"sector":5,"length":512,"data":[1918306829,1852404841,1869881447,1918989344,544499047,1802725732,1702130789,773860896,168635936,1886339894,544433513,543516788,1953394531,1937010277,543584032,543518319,1886350438,1679849840,543912809,1629515636,1752461166,221147749,789187850,1263749444,1498435395,1919179552,828733033,1683693626,1702259058,1566390834,825187104,794501213,1528847702,224218415,805965066,825172000,1126178848,1701408879,1852776563,1948285292,1713399144,1953722985,1684632352,1718558821,1701344288,1936286752,168636011,790634555,538976342,1769104726,1936025958,1634235424,1752440948,1852383333,1836216166,1869182049,1936269422,1886348064,543450473,1920102243,1819566949,168636025,790634547,538976333,1668443974,1970085989,761885804,1936941424,1886348064,1937055865,543649385,1869440365,1864399218,779709550,168626701,1701336164,1870099488,1869375008,544829552,1802725732,1970086003,1646294131,1752440933,1634934885,1948280173,778399865,1868106253,1634541685,1886593145,1718182757,1752440953,1634934885,1679844717,1702259058,1919903264,1769104416,540108150,543452769,1986622052,221131365,168637706,1263749444,1498435395,1851876128,544501614,2037411683,1835363616,544830063,1685217635,1296246816,692339779,1986356256,1936024425,235539758,-633434873,-205422310,1397801735,861341266,868323017,305051903,801964210,430245516,430128777,-1307431240,-1943024382,-1994806010,-1206277314,78778926]},{"sector":6,"length":512,"data":[109850573,1049172413,783817147,-855199214,-1593406417,-1623291623,-141301735,429721228,429604489,431556236,431439497,-1929928216,-1994804986,-1206276290,145887790,109850573,1049172421,113711555,168630742,438240966,-620312796,-956301287,169467142,-9967616,432488073,-402646552,1105723438,1357402368,1493725696,1532626783,-2096829608,-1007088444,-1205971376,567108352,1914636062,-818509560,-788100071,-1017618919,-1153171272,-768409600,-427810355,30310401,-851181128,12108577,113476,567136819,-1207841152,567100417,-852446013,369507617,-336067723,146712,-4520589,-1157370881,28835842,47360,-4849486,1397801977,106386769,-1981183150,-2011573474,-400959434,-922025239,-318037132,803734901,-402396416,259129785,17754202,-771072249,-1108868236,-2096829691,-336001340,1516177156,1560834809,-998024359,-2096829694,-1007089468,-1957538992,-2095459554,91619323,-352310040,7858179,1504972659,-855637829,-2082196959,-336001340,-294128,-1053095052,-1326971020,113541888,1510175481,516118619,-108847354,-1273268991,361375234,-1977671219,11659458,1931413022,1435117063,-132002559,45354987,158648587,-854226394,1967736609,-1021314829,1392922711,119470731,447797643,1974399740,1272523523,123456395,868441944,1959332800,520494671,-678739788,1963063683,522308904,92939856,1476418280,1931413022,1085601798,-1675506366,440238118,-1047854475,248447467,-335545368,-397322982,-376701018]},{"sector":7,"length":512,"data":[1931595097,990636802,990344392,41285864,526238091,2603203,-1258289989,-25115903,-166628097,209027270,1049429790,45685206,-16717824,-1000929597,186240830,639071487,-134201981,975573108,638022149,1996571962,1195899137,123726315,-653881405,-1814351079,-583600238,922194713,-92071459,-2147125751,65746882,1378927232,1975520065,1960512260,66683705,2088766837,91565066,434517759,-2094863551,225773561,738884736,922682741,-348055066,200901392,2088766325,91565066,434517759,-768371903,-768366613,922730547,868424153,1959332818,-1339706335,624436736,942017141,74711397,242598970,-402290138,24379219,1229080391,-2024348811,1961692106,1048792371,1962940891,105155115,975581188,41222469,809246443,-771029899,872612980,1048635371,1979652568,1229079048,-347123895,-17917,-386323625,1499463178,2146108275,-896839280,425088,-922022540,1229522548,32196423,185658206,1577285065,-108852757,855799295,1962871753,106386774,-2083966127,1694526,1156984181,141889287,-402490172,451609204,218580214,1156975732,108269063,201802998,2093222005,42133506,2062024939,-402396415,124911648,1566508889,-2096829602,-2080830780,1694526,57804149,-939584279,1694470,-768359680,-954606687,169467142,-23730176,-544765864,-75283687,-402426560,-906100232,230223477,-544765686,-398245095,1455620584,871773011,-98103,-1131739019,-544532025,-956946965,-1006078974,-1944474692]},{"sector":8,"length":512,"data":[1025043395,225574931,1996498749,-1212365816,-339506151,-1682127866,-2084336615,376831995,1979711104,216791299,-1206264925,29229055,-118082816,-75297557,-402426880,-964493228,108197892,41273611,-2137219093,695534078,105993554,12079191,1009765637,158685439,45668491,-349188859,91486465,-346486945,113541894,1560284392,-821957798,-268274,1472421467,-18096,-1359822798,1481232887,-75250849,-2095221503,-15088834,-12773772,1342928383,-15082591,1478083358,520029419,451615171,-25114317,637957375,-352105078,892874249,-1976695691,-947715251,762575108,1959332856,-98279,992347508,772008709,41223483,1950943723,80184069,1928979435,-98292,235042296,2097358343,839283202,227157741,-720976313,868417561,108822747,-955157248,538566535,-968670419,538566535,10938435,870003549,-720467758,155486745,511099194,-259342038,-2147007242,1149899892,-544765942,-75283687,-402426560,-822214532,2088823925,225705992,1929923640,139209224,1284166026,1959332616,121959972,-166955761,1947207492,92939782,1476520775,434079624,1090224963,1105724277,1976172032,121960156,169375104,-1978370826,-2021127612,-2092754465,58015995,-33545240,-152275506,1963919172,121959944,-352160752,1959922188,-653881592,1976237593,190712,106021717,-1962467753,-1915014197,-400957634,91421530,-346486945,113541892,-161627143,1966081860,92939794,1088962896,637957116,1342260618,638446584]},{"sector":9,"length":512,"data":[-1073085046,1095173236,-114559509,861782869,-943705134,270130438,-153406720,1965033284,92939812,218580214,-2136470155,608371572,-586758273,-167769575,1963853636,-586758394,-352318951,121960020,640054544,1156973963,259329287,1954596086,-461356284,-586758273,-167769575,1963853636,-586758394,-352318951,93005352,39160614,218580214,-956952715,1124365440,-947919232,169467142,121959936,-955878130,169467142,121959936,1344894016,842576978,-552170048,1931595033,-435763707,1149905945,1526237962,172279384,-73799636,1149814667,-1878725878,201035496,855995611,1378726610,1381090133,-1057325026,-1031141258,213126948,-494271765,-678748410,-2145443379,1962412794,-79828974,-930477197,567141002,-336010870,1912648706,-346465788,79987460,50169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-16777216,0,255,2086492928,1026244156,-956292549,2764038,243923968,113715744,10786,708118215,113704960,10790,717293255,113728859,1014770371,717555399,113716030,993864391]},{"sector":10,"length":512,"data":[1929698280,-18413,495658579,1930377766,178179,17623387,707737225,-1923786925,-165005538,539635206,-391365003,930219366,1946472424,83945522,116790901,1965042222,77260805,116794091,1950427694,418074139,1027344264,243271029,1124149806,1929728744,126397641,1321462595,707016329,-1996486714,640299806,915217803,1015032375,-2144242641,125051452,707659510,642807041,838944650,537278948,-1592691926,-523163104,-670874813,-400585946,1726677120,706873031,1592459265,21465638,-784276430,651690976,-315486326,259311883,-1960422589,12314655,1128231771,-940383677,53092870,640936704,838944650,-523157276,-1977165821,-773574137,-670875424,839879206,1959332845,642990863,1424498571,175332096,-220052669,706873031,1599930372,537824091,706912554,707016331,707139211,707272330,642827256,44631947,-16485120,-2144722938,410320956,1962934697,570869512,-352320982,61886478,-1796669516,65755136,1476464872,1438906819,1334453841,200094216,-1928497975,501746031,-402099454,-152961011,-1996100615,-131451602,650337625,32384,-347798668,-2134686218,271199758,1929365736,774275138,-1588531414,-970249679,707724801,825658200,3964970,2088772469,141900543,706873031,518717449,4162342,-148498316,1962934535,570869521,-352320982,9693193,-116528136,-1336931605,-385895421,-128450557,-1960421437,1049166975,-2010764762,1703421445,899764225,1166616106,20731906,-1993995659]},{"sector":11,"length":512,"data":[-1993997227,1508574797,108331580,72714534,121393131,138209396,104653940,-2010773899,1038812245,242549820,1076506529,71665958,106794022,-1993987093,-1943665547,642778717,16926710,78644340,-165279253,1946288711,-402477051,643301525,268584950,1743258484,-960274688,2804230,126559824,393592843,1465013072,706873031,-4980727,1625818032,1532649471,-352130216,-1876432125,1946222761,570869523,-402653142,31981961,574522114,242551082,1948254377,570869513,-402653142,1048576175,1963010762,574522125,108331050,706873031,-1017642999,76174928,410304522,192231996,97408,80086389,-402003200,24314575,-487897530,1455642718,-1966044590,46000132,-1073083534,199756660,-352024576,-347716095,-1017226518,208896060,1114792252,1048017468,988536612,-1923676589,-2144682946,74712314,716652173,393483576,508711248,-1973046265,-17470,-1174403655,567148543,-1957144230,1166934365,742605571,1607935616,1019435783,1007186480,738490169,-104597456,1381191875,2139825751,92939782,74825738,149684148,706873031,-4980727,1625818032,1532649470,1431356248,45241938,552076426,-398822910,116850546,1946692142,1966947341,2122327582,1853161473,116789995,1947216430,1966750734,2122327562,1517617152,643492678,1962952250,1958742556,-347781552,1178215954,1178825984,642057354,1962952250,-347781575,772208299,259276842,38270758,125042720,8290342,639792128,1050615,977016948]},{"sector":12,"length":512,"data":[-2144990859,1962934398,1007610637,638022912,973110912,-336002188,825657605,1516173354,1354979421,1049318999,76163631,292864010,1962956776,-905525728,-966917846,-346095612,80109113,-148480256,1962934535,570869549,-352320982,-1974052827,1958742532,2811931,1290275700,1191342849,-347715770,707306218,1191183558,707018377,-1453826210,158597632,-1325419440,-44439547,1364443992,717299341,973081017,1124365319,1497496034,1381024603,-1073085302,149435764,-2094370303,1949958524,133637645,494141456,97408,537663349,292708668,225933884,-796237780,112263092,-335737112,570869510,1509951786,-391330984,376700960,1962955240,772208148,-294379478,707659510,1309242433,-336001301,-1018234879,1364444152,762580284,695468092,628361788,41779238,857633282,1569335003,79921923,3768358,-919401100,1124698662,1946237478,1022943748,-1017423603,113660243,-2145375704,-550883802,913580092,846465340,829697084,209002556,1965046912,1176547335,518766650,41779238,857174529,1300899529,1959332611,244491,20588099,-119404684,1532567612,707306179,707659510,-2147126015,539635214,-353648582,708259469,175430971,58011452,-133305351,792464107,243271029,-130012626,1398152899,707477123,1344632064,1465012510,-164428203,12115598,-1943941789,131795931,1499094877,628381727,707344009,707468937,707344011,707468942,1946172547,1912879632,21248520,-336002185,-347716091,1583085803]},{"sector":13,"length":512,"data":[49951,0,0,0,129,12567,657532674,825623601,828256586,16789874,822084097,3223601,16713216,65536,826408962,788607280,-16580559,0,65536,827719682,788607280,-16580522,0,0,829030400,788607280,-16580545,0,65536,830341122,788607280,-16777139,0,113639424,-973077749,-16578042,4024555,-402295808,2011889786,823266953,823146121,-75375989,192229681,899740043,126126129,-2126255357,1966178043,2064041484,113647665,-352255219,1123778865,-972262095,540098310,50988742,-2128614655,1966167803,1392952844,113647665,-352255221,1794867469,-972589775,16976902,1049428203,915091732,-768397040,823266955,1039712488,-2106195969,-1006633030,-971527517,67328774,993071265,-971868944,-1063059452,-1375287529,-954745321,18329606,397065984,-1159659288,12785629,0,-1560266208,-930336192,-1558703197,1570969641,412132120,-1558668381,-710731610,417375000,-1558647901,1319311683,398631705,-66950680,-385876038,-92012788,-2145028609,199742,484968564,428980736,736630507,5695488,1979710083,20965387,1979710083,34662403,-1849731133,-527439847,428949121,108265777,428934911,-1017122837,567089588,-30260574,138313920,141885443,-1576859486,183173897,50937472,-1576831744,144769801,436600835,807796760,1105773336,-359680,512375669,-1696070904,-359679,512372597]},{"sector":14,"length":512,"data":[-1897397495,-359679,512369525,-588774648,-359679,512366453,-790101239,-359679,350751605,-359680,1072169845,1048822528,1946169920,401062403,136219331,1141422083,611459533,1946157117,401062405,512366827,146277129,1914817860,15626,-407239820,-1174148329,65738727,-1021843526,136219216,5957635,-1979513694,-402454242,94502992,136219139,-715855869,50929290,-1965732376,-402454498,104464440,510919432,51250886,136219137,152995843,438209027,807307288,136219160,-719001597,104469227,125109001,51250886,-972690687,33754630,1152697176,567086768,41222204,1355006858,860099000,136219355,141801731,108143053,-384202822,-617414497,50863754,-1699061583,-572463101,60557047,57933825,-2147449879,84122430,-1633584012,51749635,-1962696261,346165063,222792451,-1962732638,50766599,512416563,1622213385,-402342214,116907430,66752,1048595573,1946485951,79864133,-1157424733,1200293061,51945999,-1576188021,-4586729,-1690402561,326435331,79642240,-2146798590,117751614,-1279655052,-2146309352,33865534,1048578677,1946616731,414431747,-407239701,1354979351,-896839341,162546868,91431373,-350754887,12777225,-1190956016,-779413519,-1017619623,-1152298160,-1014943161,78709760,-930288685,-478095357,549684192,51322505,138891,51453577,-1017619623,106058576,-1171971144,567085181,1482381831,-855591741,16547882,-4586123,-31724545,1103331531]},{"sector":15,"length":512,"pattern":0,"data":[843325064,-1271774018,718141443,-239467149,-1174148329,12845055]}],[{"sector":1,"length":512,"pattern":0,"data":[-1,92258387,1329792439,538976334,8224]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-65536,-1,-1,-1,65535,83886080,85722382,88868148,774832127,774778414,-53714,-65536,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-65536,-1,-1,65535,-1,-1,-1,1392508928,-702640813,1200565764,1200369164,-875865330,1929802529,1929802502,1929802502,1929802502,1929802502,1325822726,1929802514,1929802502,1929802502,1343107334,1448563027,81141389,771752127,-1943126135,788267599,-16482429,-2094117259,1979647615,935669319,1476803780,1979711293,-31995,1448556148,-1929377607,1955400317,1587999498,1976116063,1166747166]},{"sector":4,"length":512,"pattern":0,"data":[1200172550,784370692,637945737,772294027,-1945614455,1200172736,637922058,-1091879484,209699886,38111782,1930706072,-1950350576,-1795215632,141690255,-352311320,2287647,209699886,187613235,158601799,306655534,-343932915,30179331,54888742,1532583774,1398000472,1606692446,1560227340,-13739260,-121436065,319211715,1711756551,-33223161,327684,0,-58656000,1010070957,-402230000,-346685382,1929657362,844125734,1492159460,-13699581,1342600596,-1959332725,91359300,-335544795,68867,138709302,785342040,109260543,-1140850760,-1007156992,-197229778,58064644,1396173816,1448563281,521012766,-200373458,181921796,-922018446,-336067723,378154518,777127894,131466950,-555184120,-2010228223,117954070,1516199455,516119385,1048587782,1946226216,236916276,922693127,-1993472780,-402328546,-1892809577,1913030406,88205330,-1957556878,7923923,-133926310,784539399,109524735,-200896722,520616196,512437955,-75299596,-1207601665,-1007091711,1344193528,240603475,244511,1966894,503524869,-472840946,830462267,108863117,-1962933319,637831991,1128465801,-203274425,-1962275352,1959332620,-213498364,168290469,-922022773,1178993780,-336026125,1499461889,-1021355941,-2118626480,-119895123,1482371021,195]},{"sector":5,"length":512,"pattern":0,"data":[0,0,0,0,0,0,-469042432,-58687628,1349874961,91554364,1357449392,1963015173,-384913403,71042375,279971189,1006976745,-1341819630,87419144,91558204,753471152,1964260357,-384782331,591136035,145753461,1006981865,-1341819614,88729870,91563068,1089015984,1966095365,67076126,145753461,-2147130391,91554559,1508445872,117407749,279971189,1476743145,-986775762,-13722617,1342686494,-1676692397,-987824338,-710791673,645934599,1535051733,1929579240,113651214,-1342175272,-1528262640,772467457,197396166,-1528262656,1355765763,285456467,281926450,1354979419,-1959898543,772079118,131475082,973441574,1360295108,72190758,-503847886,394585,-471664637,-2096829447,1526204103,-389851047,1381172145,-617426381,57999784,1426101225,1048587856,1946159064,-1192260857,569053440,772866744,131481216,-1340705784,1048587777,1947076566,772059148,131481216,-352160752,860888671,-1596420416,136578183,91496280,-346203911,1048587883,1946160068,857624612,-2584896,772048694,201840032,58976384,782033970,130359039,-1895590424,520390406,101396056,281873346,1964052541,28594441,-855242823,-953263856,770566,-14424064,44588376,777001332,131612288,-1207602176,99292160,840171960,-401551909,-128385275,333994842,49923]},{"sector":6,"length":512,"data":[0,0,0,0,0,0,1460011008,12079187,47899,235526847,1007734023,-133991141,1492713963,-1022927013,-2168749,-1959915662,-1979056866,1975519939,32241923,-389850120,393412552,-1928964525,772397622,-1912447861,881536707,121932326,-1017422329,1964025856,10086659,174891566,-1342130096,-12832819,-352160424,1048588012,1946159064,860888609,-1948741952,67110343,8168442,8259212,-844943621,109850119,525862863,-164702741,1074424838,1461594740,-1900006576,-1959855400,-1995978434,771783742,130891401,-885093586,2118027527,1049177600,1492846543,-857006241,1347755526,-1202564781,79106352,-1070395187,-1980049266,-1946125266,-83853818,-852588242,109850119,1499072463,526211163,1948297223,1048587867,1946159064,860888596,-86470976,17579657,17696396,-350267141,62346109,-700547026,343148551,-2144468297,235394622,112659060,-700547026,527765511,508711248,817386758,856739089,-86470976,17575561,17696396,520576507,1532516698,980713640,-666992594,343146503,-1070378978,-1980049266,-1946087362,-83815930,518725464,860903198,-86470976,-784430290,272533767,1049308673,1049167827,1492844818,12787551,0,917504,0,0,0,0,1048587776,1946160047,28899589,-970013952,17542918,1448235347,235282007,839323167,-710922524,787516167,133792906,91602954,1929265640,448024687,2142306736]},{"sector":7,"length":512,"data":[196089485,645017549,578098748,-1237417938,443875595,-1069645010,309598475,113716824,1051586,-1006189010,145752331,777521131,197396166,-694014464,244002311,-108854028,1361409279,-1979351832,477256153,-669087698,1960512007,-57939946,-1993470350,-1945391810,1049177799,65735595,133808179,1516134175,-970040487,765702,1448170435,772152919,195772043,-1959868530,839626046,-710922524,787516167,131695754,131572270,225706920,771817657,131481226,1929144552,1949345804,-38148091,-336067726,-104844541,1583292167,12802905,-1677721600,1347637586,781979572,130359039,-1021408978,-1677478900,-987824338,378088967,1532497093,-1013097895,1347637916,-1959918924,772588318,214242955,520040092,1532495813,1354997082,-1672077742,915218190,1153828220,-695533311,45095604,1587359693,-1017619937,1444827728,-1927344484,-972719050,-1962933948,-1340427050,-1657811710,1482301278,195,521011200,-200373458,-425212,1860708724,186937860,773878985,131475082,131506734,788233448,131475080,1124502574,1049177613,-1574040255,-104657595,1381061571,102651734,1929363432,1595869053,1532582494,1364414552,609551954,1049243376,12127557,785527553,222375620,520040092,123537349,1482381658,1381061583,102651734,1929349096,1595868997,1532582494,105992280,841068629,243937005,-1003614907,-1676852946,-987824338,1493654791,1364447064,509040210,-11081722,520557682,1499094623,781998171,130359039]},{"sector":8,"length":512,"data":[1093583918,520605453,1499094623,-13739941,1275577646,1292800768,1242594560,1779482880,1796281856,1129728,269355008,19,-192153088,-734623442,785812484,80885385,-1945841480,-1948873010,236911584,2143563295,1166681612,1474572814,-1190719994,331284485,141864718,-102611129,367746823,1610058503,671532590,352256270,671532590,-336003058,-98568191,81043758,-768177362,-1948873212,650378208,638811588,184831371,773420233,84807227,921373815,307200814,1532609288,-2094113959,-1022750129,654755374,-1993473522,772107790,83105419,1962932867,-404162331,-388664584,-629998353,1929223912,117228501,118380369,235834158,915226885,1049429262,-1510800032,856119647,777212370,91098761,-1962933570,1099638494,-49916,776078964,90211465,1854179630,1128678917,1541857859,1959922521,777081741,90181259,-1154517943,46006274,777081600,90212235,1962934077,33129235,1128468084,1619475246,-385649403,-303890596,1128487769,41208075,1532614626,240603398,244002311,-1925118706,-1929027530,-217772482,123297701,-1151924653,1049427970,118363292,34247,-2050555903,2,562569,83244685,346439309,1854376750,-49915,-2054613388,1448149004,79531351,571648,1583326451,650609497,-589151421,-396687521,1465255522,-1928917498,-1929044938,772092990,84807307,-1510749949,915275571,-1959918260,-1996157426,-498710980,1583286266,1448170320,1480494423,244002309,1460012286]},{"sector":9,"length":512,"data":[-1341714863,1504375807,-466483361,131440686,-1976635253,168294788,-402426432,-2010187238,1950959365,1375089484,571735,89669261,-108754386,1962884103,1975519789,150897433,-397335437,510851593,-1040265589,1935276242,-2071319019,976096809,1191932933,1499461858,1191544878,1499399147,-24951231,-503155936,1499357110,-970041253,17704710,1048587971,1946160679,1048784426,1946158446,25946139,1460020338,-200373458,19392516,141756255,788529081,83103369,654755374,784531470,202526595,1189671659,1333865986,-343932910,2110007027,227223059,1963129219,1300964931,-2083419390,762642425,-197722322,243871236,-521665292,410147322,-200393938,-402295804,393411463,1928774120,-2094087423,-1022881201,-200373970,1333997060,784533266,83103369,307200814,-1004092662,45683581,227091968,788177640,83103371,-4652173,1300834047,-425214,784531828,118640515,2110006979,244002323,-1993997056,53346893,-2096820722,-922549567,1343064358,-1959897517,-1157300210,-922025982,-1959916172,637862023,1124221321,787735107,84807307,38373670,-922008765,46010996,-2071253504,-1993997042,1128464961,-236829114,-1017619618,307200814,-2094087417,-1022750129,82458253,-1916586869,-1962612170,-1916599692,-1962612170,-1916599180,-1962612170,1354958452,-1047833005,-1946165016,1959332620,178955,594804795,-119389373,-1946171928,1959332620,-1153022451,3866624,1128473716,-919340830,1532952371,-1178338984,-1293418495]},{"sector":10,"length":512,"data":[48989183,-217844989,1150172299,1482382850,-919354376,1532952371,1355020376,240584273,244002311,1049429358,-2054482778,-12779518,225743103,-1862271427,-1115484299,1962934298,650609416,-336010014,123730177,784554073,237452928,-134056704,1048587971,1946226215,1333997063,-1007089134,-1023409688,1444875806,787778554,81016457,-1993419124,-1207643594,-829684528,-527706482,2143563515,-1674146548,8701716,637534208,-1995291253,1442841220,308365,239438630,1178993801,272993062,-396491639,915211122,-1937042276,915210248,-2071259994,-264437758,772764671,1200001,1166616192,2615299,-29551893,125145343,1868939,-2097129752,-689822010,915091194,-1590819630,-695335724,1593565323,516159775,-1202302640,-1959854081,-1106940402,959315970,1946513028,-2071384571,1178993934,-1959857950,-402328562,141819549,788529081,83103369,525883742,195,0,1364414464,102651734,311200593,243871232,1348014901,118359633,820363,235834158,179973,243612462,1191474181,787866183,84819595,-1993410261,118699838,-1923721127,-787178442,-387460633,-33292747,1049177694,-1909583045,-1959919035,546081597,515148544,-1948676608,243871432,-920448199,-655817867,1364414464,512579414,53347660,773011230,322379267,185043758,-1457883968,158695424,-1590769525,-347073739,2147427646,-1590769525,-347073739,244002410,-2094132427,1259838,-2081881227,1359251968,-1929377607,772102174,91490106]},{"sector":11,"length":512,"data":[-336010685,-1947979208,-145619892,101014241,784894720,322506299,724439414,-1961674482,6940865,957254446,856025875,6154432,957229358,-1527514093,-341056935,-1947979209,-145619892,101014241,784894720,322506299,724440182,-1961674482,-2147480127,771763944,322506379,-1070397973,771760872,322506281,-991170301,993430318,1015623187,38046766,1532583519,1595869016,1482381662,-1959897405,51590966,-2071384330,-1017248436,65535,0,2490368,774832127,774778414,-53714,0,0,0,0,0,0,-65498,774778414,774778414,65535,0,0,0,0,0,2490368,774832127,774778414,-53714,0,0,0,0,0,0,-65498,774778414,774778414,65535,0,0,0,0,0,2490368,774832127,774778414,-53714,0,0,0,0,0,0,-65498,774778414,774778414,65535,0,0,0,0,0,0,1191116800,542395983,8224,0,0,0,538976288,538976288,0,0,0,482221203,488381688,491920686,495918436,504110504,508567095,512106100,7904,522715136,526262092,529801090,534519743,534519772,534519772,534519772,534519772,8156,0]},{"sector":12,"length":512,"data":[472062911,475733065,7297,42,851979,2752531,0,0,0,0,1397753374,1448563281,345775757,-987363570,-1960442761,-1960443313,-1993471913,588654102,772437458,361367239,-186056672,126559753,1946157349,-1014803621,784347914,773164195,773166755,773167267,773200035,773200547,773201059,773168291,773168803,773201571,773202083,773202595,773197475,369886919,-953286614,706090502,1204233728,1375730434,-1929373511,-1426911617,650347353,1542092106,180585299,639011630,1200301590,-115454,-1960440203,-1071441337,-953809291,-64953,1244054403,-2091129995,1481706179,19841323,1930828294,109129223,268441116,1976116049,155314435,370581806,1962945085,1028713218,57868303,1023483625,57999375,1023484649,57999376,1023514857,57868321,1023609065,57999393,1023610089,57999394,1023633641,57999395,1023977961,57868329,1023469289,41222185,-953804053,-2146827705,772335337,361498311,-953286656,605427206,-8656640,362193198,371106606,-1743353042,378088981,-12773856,-2096204289,158728186,38258470,-2081849332,633506560,-1185869825,-523042812,14844249,100871920,74651166,268485249,371106606,538347822,103493142,108205594,268495489,724457842,1914051606,74661970,268485249,1081590075,-1932974,79253775,1508037376,1935327747,12747012,14844176,726814960,-2130283583,1913651434,1975526152,1976705813,1213749777]},{"sector":13,"length":512,"data":[-268187605,369542958,-385875946,1482358485,-919867133,788450537,362153671,-953221121,-15362042,1204233983,-343929854,1049308899,-16574954,-1197080786,-1959898347,638985750,1023559563,41222139,-1960421141,992873543,1964354566,1364598325,-1531044082,75468053,-218101575,526277030,-953802635,-261561,362848558,239569190,363766062,575113510,363897134,608667942,-1590814485,-12773988,772765183,1024827041,108396543,38258470,52854792,-769439201,-1813314956,369542958,1526730774,788409577,773168289,773201571,773168801,857088163,581119680,1049308694,-947186144,1360002853,-754973511,-410953248,53407744,1930829318,13074692,514010640,1049177622,-1959913952,1393960470,38243110,1979710525,2139825751,633834276,-1185869825,-523042812,15171929,1191388912,-2130414814,772800711,371211835,41169527,992872939,1997938182,773288999,371328711,-1557200897,-1993468386,773201982,371465865,-1590817045,-1071442398,-953809291,-2146696633,1959928650,520300037,777754347,371201675,371106094,1979711293,-359672,2145977205,103493120,108205594,268495489,724466034,1914051606,74662002,268485249,1618460987,-1932974,79253775,1508037376,1935327747,12747012,14844176,726814960,-2130283583,1913651434,1975526152,1976705845,1213749809,-268187605,371368238,175423523,369542958,-385871594,-953221887,588649990,113716736,136716,235325230,-385873130,1482357993,-919867133]},{"sector":14,"length":512,"data":[788324585,588653217,-1206618688,-1557200897,-1557260900,-953805410,-2146696633,1409074409,605981486,1204233750,1535118338,788313321,370556555,-13697277,-1089095515,1398216419,605981486,-1298059754,1200170517,-1264505328,1200170517,-1230950894,1200170517,1204233754,637534236,1984455,1204233728,637534240,-50182201,-1230950657,1975526165,113716745,1054230,-953280533,571872774,413216256,1191257622,637956898,2377601,784554768,371594891,113716819,5664,570869550,771751958,370949771,-14301301,79253775,1507906304,-268376191,436601646,-2130414826,772800711,773200547,370949769,38243110,1962933821,-180968,-1394015372,1200301568,1958748954,1204233744,-335544830,1200301579,1975526170,9562371,612338470,-14301301,79253775,1507906304,-268376191,575079206,-947846029,992874496,1914051646,778728766,370804283,1635071346,511150374,543132710,440896294,729006395,440911654,-1993998336,959323207,1930829830,547565060,1191257622,641102626,2377601,640609040,201476039,723970944,1200170689,1334388250,243871260,19273248,108208719,608665894,-1071443968,-953284748,-15326714,520300287,1959928650,-13047549,371237166,-936644605,574522158,125108246,369542958,1526730774,788210921,361512579,1947628040,1204233741,780143106,361367239,-251461598,115984683,1174703099,1049308745,976098700,1947569797,1204233744,-1199567870,-1557266424,-420932212,-1993455622]},{"sector":15,"length":512,"data":[-2095739842,57936127,788191465,370017991,-953286656,588649990,113716736,2430476,-1946500887,592004612,772699593,773166754,370542279,-1427570650,776554234,773166755,370542279,-1696006105,1174703098,-1750978999,113716757,2561558,-1946515223,592004612,772699593,773167266,370542279,1927872552,776554234,773167267,370542279,1659437097,1174703098,-1717424567,113716757,2692630,-1946529559,1967736324,-1700647410,113716757,71190,1190804713,-1700581815,113716757,2299414,201770798,-385875434,76282405,-1574024890,-953281125,588649990,113716736,136716,58050851,1190791401,235339566,58018070,1190788329,235339566,-953267946,35001862,-101979904,1229325451,-1574039947,-953281124,51779078,-103290624,-1557247674,-953281124,68556294,-104339200,1229325451,362652206,369542958,-385874922,76282293,242567494,362717742,369542958,-385874666,1229388193,362717998,369542958,-385874410,76282257,-1574024890,-953281121,102110726,-109057792,1229325451,-1574039947,-953281120,118887942,-110368512,-1557247674,-953281120,135665158,113716736,5538,-1946594071,776553988,773169570,370542279,-953286648,1417734,-113514240,-1572961490,343279637,38258470,-953253878,555059718,737215232,-115349047,771754168,362939947,427018299,-1090056698,53351844,773169726,362941953,-1190681357,-85393408,235295224,363118343,-1572994258,-204961003,19793828,1494589958]}]],[[{"sector":1,"length":512,"data":[-953235413,152442374,-120067840,1229325451,-1574039947,-953281108,169219590,-121378560,-1557247674,-953281108,588649990,113716736,726540,-1946637079,776553988,773172642,370542279,-953286621,185994246,-124524288,1229325451,-1574039947,-953281106,202774022,-125835008,-1557247674,-953281106,219551238,-126883584,1229325451,363831854,369542958,-385872618,76281949,242567494,363897390,369542958,-385872362,1229387849,363897646,369542958,771755798,1209375393,362455854,242597923,788529080,773168291,-384459101,-1590757343,-1071442532,-1590815883,-1071442530,-4715659,-1667027201,-1633473003,-133961451,1229325451,363962926,369542958,771755798,1209375393,362455854,242597923,788529080,773168291,-384459101,-1590757415,-1071442532,-1590815883,-1071442530,-4715659,-1667027201,-1633473003,-138680043,1229325451,-1574039947,-953281102,303437318,-139990784,-1557247674,-953281102,320214534,-141039360,1229325451,364093998,369542958,-385871082,76281733,242567494,364159534,369542958,-385870826,1229387633,364159790,369542958,-385870570,76281697,-1574024890,-953281099,353768966,-145757952,1229325451,-1574039947,-953281098,370546182,-147068672,-953267898,102111238,-1230819840,113716757,2168342,787948777,370673351,76218374,-1574024890,-1590815305,-953281098,555095558,-150476544,-953235157,722867718,-151262976,240584274,370196231,771752890,638979745,124912955,1194030154]},{"sector":2,"length":512,"data":[653585223,-802482805,192137787,235798830,737215254,773909449,370021889,-903089661,369926446,370582318,123669995,1204233818,729811458,1594092489,-1494656505,1048784630,1965102614,-101193725,1516199513,123231065,49951,0,0,0,594027273,603268027,8288,0,541148997,538976288,1260440327,1095189793,538982432,550175008,1195712875,875634753,-888987616,1159826208,824197447,52448564,562766059,541344588,538976288,-1423897855,1313819937,538976335,556466208,1195581739,538976321,721428512,18950945,805372161,-16699344,-1,538980400,808460320,808464432,808464432,-13619152,-1,-15597569,-1,-14614529,-1,-1,-1,50331647,-805174782,-16592688,-1,-791621424,-791621424,-791621424,-791621424,-3092272,-1,-1,-1,-1,-1,-1,-1,16777215,134217728,-16775160,-1,0,0,0,0,134217728,134744072,-63480,-1,-16250872,-1,-1,-1,251658239,135138830,-15857656,-1,235800584,-1,-1,-1,150994943,134744072,-16250872,-1,134744072,134744072,134744072,134744072,503842824,-397205746,108201395,1527169768,-1940172821,773876238,638353348,-1559214709,-35118994,-1104252392,210451131,1963063683,41192228,1049431179]},{"sector":3,"length":512,"data":[-13754272,1176662549,-498645178,36169973,-1269622926,-1575957233,-346355755,-1202565052,-4849652,1510171880,784347992,638353348,638469513,638602636,-2146613880,2492222,-2127689611,16978511,154010859,-1202253241,1049493503,-1993474048,1166618117,536436482,-1070397757,-1591295858,-1557266244,-1960442237,771800590,109383305,225820939,772195000,-1945730141,-2052903224,-953746938,-1996440570,244065798,653983934,8130187,-921794258,243871239,-1960441907,771784206,130748041,-821130962,244000263,-1993473776,638046478,17960587,-754022098,244000263,-1993473984,638043406,4329099,-955348690,-953746937,419446790,244065800,133890114,209699886,639658145,-1592900215,-1993990038,536416325,1313817539,538976288,-1957277408,210436724,1963522435,240584212,20876551,-213498333,1963417510,-128360956,-396796221,-1007091077,541148997,538976288,541148997,538976312,541148997,538981425,541148997,541930545,541344588,538976288,1330532173,538976288,541148995,538976288,-396996265,695337626,-1962773365,150569740,1179000693,590364301,1459619769,240211462,571655,1582933747,427056903,-502741117,121536746,57999654,1578429433,1313759065,-117309720,132744131,243915255,1593319532,1371758425,41192278,-108983157,544669702,1996618115,1284198683,-425214,101807193,-1928917417,1090846782,123708915,-1007134370,1314281822,-397521330,-111279689,1381060803,41192278,-1157627975]},{"sector":4,"length":512,"data":[76283903,292864011,-2130555765,1996490489,81174,1418396532,235833604,-32077563,1499094532,1589901400,-1202562726,-4849656,1510037736,-389809832,208863247,985382486,-402492277,-111279773,1381060803,102651479,118365966,-1189057375,-503906291,544214669,-1048328189,-386299128,460455989,1463126855,-1929371463,-217589442,1972068260,2144514,133774989,133735667,1516199455,12802137,0,100663296,101713427,1342703118,1448235347,118359639,-1561852534,146362597,-791530752,1107391456,-1957103134,990182926,-1190955318,-108789761,-1996196353,-1962607082,-2096820722,242614265,84809353,108319243,84805319,1048772609,1962935566,9169155,83771011,-385649408,512426120,146343166,-1892250368,-791530716,185037792,1258517723,1178997763,-1031015966,84807307,85735053,543692427,-1823253754,-850787656,-2091150545,125108223,1150041225,1378937602,-355341615,-355341615,-2091197949,344526818,50486409,-1031580976,-773140209,-773139990,1943208938,518740483,544085563,-2095614118,-1226701626,543692425,543825545,-1173820424,-1014230420,133820139,1499094623,516118619,521032019,855638715,-388877623,1532560127,770847,0,16781313,1364414496,1955288658,1447446018,-1342175047,1979988000,-102611453,76021936,-1607038626,-1576104923,178213,-1191181637,-768475135,631125645,-1192689738,1499094530,1170430043,538984775,1159733280,824197447,1159744820,824197447,1159733300]},{"sector":5,"length":512,"data":[941637959,2105376,1364414551,41192278,1946696835,386983948,113641331,-352246265,1447446115,118378758,-1929377607,-217778626,1577540004,635911821,240518743,571655,123643635,-398822049,896787438,280171188,-75493171,-1204980720,-8388600,85160961,-511705080,167346191,-109049740,84112387,-134021112,118359582,146405255,128250624,32241695,1532583673,12803928,0,0,-16777216,16777215,0,-16777216,16777215,0,-16777216,-1,16777215,-16777216,16777215,0,168624128,0,603982336,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,1142969165,1444959055,1769173605,908095087,692267040,2037411651,1751607666,959520884,825045304,540293433,1919117645,1718580079,1866670196,1277194354,1852138345,543450483,1702125901,1818323314,1344285984,1701867378,544830578,1293969007,1869767529,1952870259,1819033888,1734963744,544437352,1702061426,1684371058,1381191712,-919382266,-13385330,-1307431240,-1943024384,-1993960186,-1205431490,45224494,109850573,1049175709,783820443,-855330286,-1392079825,-1421965018,305051686,801965746,647038604,646921865,-1945769496,-1993962234,-1943631042,-1993955066,-400120002,109839863,1049175713,783820447,-855068142,-1257862097,-1287747290,-972634330,-972419802]},{"sector":6,"length":512,"data":[606539526,650839751,113704960,665293,-1996063512,-400115906,786956313,4319232,5302353,1599670386,1482381831,-998046485,1355020556,12066390,505531747,141696775,650065545,650184332,-1195157410,12272640,-841862400,31883297,-1207841152,567100417,1140897987,855638459,-2145268270,28836302,-1021194940,567095476,1964377661,418117635,1929380413,-17659,45810667,112640,-1308622663,-100682240,1364414659,1376147285,512354699,914892483,-957864248,1959332610,1978469148,2549765,-1326971925,1510502913,117507560,-2096829601,-336001340,1516177156,1560703737,-346530983,147096324,1397801977,-1021408430,-294106,753403253,-402396416,259194999,12278196,841075968,113542116,-2096043015,192217083,125092155,-2097106712,1928922820,1482381827,520494787,1963063683,637711387,567088522,-389903841,102629553,638022431,-855550582,267122721,-922025292,-1977218700,1193397525,-118262455,1347928863,-91532538,-645200098,-218359120,721647022,-880063527,1599604571,197145539,508523721,1085546246,-108800117,-852986623,642785057,1525155210,102651904,-133795041,-851296076,-2144953311,41228861,32227723,-68677937,1427827711,-5838767,-849745525,-352160991,1959279371,-118998265,-1047854475,-1195172003,79364135,-1023298304,1962933888,-2134444527,119409781,650526349,-402652487,113508096,-1086405545,1962871590,1032005143,276101120,1912945190,1161438727,-117344511,-370456761]},{"sector":7,"length":512,"data":[-1883044001,858179846,-141388837,-1826173642,650983159,1980365443,935493637,-1031797781,188830256,184841664,-2093386533,225772537,738884736,922682741,-348051754,133792546,2088766837,91565066,651572991,-2096043199,192220153,738884736,922682741,-1824446762,-1477717453,-1070345677,650721023,198325187,-1272875831,637579301,175449400,23410726,-1002830732,-1977217419,-11278331,1195835763,-478852798,197822294,1295217901,650854019,-1976863488,805570116,21314086,518718069,74788924,74764811,-404016125,650657408,1107850751,1330202946,-1174148273,727187455,-32839431,57891167,1368417771,2088815243,225705990,108316939,1195854153,-346160661,1976109840,166419971,1979709827,197735170,1430025471,860948055,-885095479,326434854,252134646,2093222005,39512066,2062024939,-402396415,124911648,1566508889,-2096829602,-2080830780,2542398,57804149,-939577623,2542342,-768359680,-953758815,170315014,-22026240,-813201320,-75283674,-402426560,-906100232,230223477,-813201142,-398245082,1455620584,871773011,-98103,-1131739019,-544528713,-956946965,-1006078974,-1943626820,1025043395,225574931,1996498749,-1480801272,-339506138,-1950563322,-2084336602,376831995,1979711104,216791299,-1205417053,29229055,-118082816,-75297557,-402426880,-964493228,108197892,41273611,-2137219093,695534078,105993554,12079191,1009765637,158685439,45668491,-349188859,91486465,-346486945]},{"sector":8,"length":512,"data":[113541894,1560284392,-821957798,-268274,1472421467,-18096,-1359822798,1481232887,-75250849,-2095221503,-14240962,-12773772,1342928383,-14234719,1478931230,520029419,451618483,-25114317,637957375,-352105078,892874249,-1976695691,-947715251,762575108,1959332856,-98279,992347508,772008709,41223483,1950943723,80184069,1928979435,-98292,235042296,2097358343,839283202,227157741,-989411769,868417574,108822747,-955157248,539414407,-968670419,539414407,10938435,870003549,-988903214,155486758,511099194,-259342038,-2147007242,1149899892,-813201398,-75283674,-402426560,-822214532,2088823925,225705992,1929923640,139209224,1284166026,1959332616,121959972,-166955761,1947207492,92939782,1476520775,651134856,1090224963,1105724277,1976172032,121960156,169375104,-1978370826,-2021127612,-2092751153,58015995,-33545240,-152275506,1963919172,121959944,-352160752,1959922188,-922317048,1976237606,190712,106021717,-1962467753,-1915014197,-400109762,91421556,-346486945,113541892,-161627143,1966081860,92939794,1525170512,637957116,1342260618,638446584,-1073085046,1095173236,-114559509,100778837,-65258,1158742020,1852142712,543450468,1869771333,824516722,1049429774,-1048367714,100844320,-65258,1343094788,1702064737,1920091424,622883439,-1928917455,-2094153154,-3990079,17044998,33558528,134226944,201346304,385903104,1868787273,1667592818]},{"sector":9,"length":512,"data":[1329864820,1702240339,1869181810,738856302,1663054117,543515759,1701273968,1769104416,544367990,1852727651,1646294127,1852383333,1634301033,1702521196,118099300,1869567008,1851878688,1868767353,1881171300,1936025441,1701868320,1768319331,168649829,1850290439,1768710518,2037588068,2019652718,544108320,1347635524,777601356,542333267,1701080931,1734438944,1919164517,1919252073,235342349,-482439929,-1295941331,49920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65535,0,0,0,0,0,0,0,0,0,16711680,-16777216,0,1014783323,993864510,34,-1492728018,771751982,791744137,858163502,914959919,788279093,781848201,-1677277394,771751982,783222471,-953286656,3055622,113716736,1566257004,1845937966,775715887,795870919,-953275586,1026519558,1465012539,-18090,1625861185,788100361,796200585,-1959897506,858748174,574390491,-738852235,813030154,1027409035,1024422944,175389984,1950157117,155008261]},{"sector":10,"length":512,"data":[80091765,-24426947,105271638,-1527576802,1314806023,-13697097,1227846926,-1048622778,1979648606,1499094964,1929961704,-18413,495658579,1930377766,178179,19130715,-1456043730,1431786286,783359629,-1475938770,1131749422,158394540,-722977678,-399019000,410323205,-1475938770,91562030,-351757080,116796966,1950428840,468405790,1007126574,772175165,782765696,1508393729,-1396346103,1124567086,776912619,782120585,509486,-1390507730,495658542,783365773,792494126,-2144455052,141828668,-1475938770,1416954158,21465638,959374386,1932433926,-1700712942,1138807086,651690819,-1998053493,778693376,781977287,1626013697,21465638,-784276430,651690976,-315486326,259311883,-1960422589,17360927,1128362843,787669571,781977287,887816195,21465638,-784276430,651690976,-466483318,54583505,260712152,-921965262,1396903796,-400585946,1935343709,-498908405,113716978,274076,777740125,781848203,782016814,-1640592594,378220078,-1976684896,-131161570,-1960423229,174343,-13761163,774806022,1962949760,108825,-953284235,36609030,1343154944,-4979792,1476427752,-18349077,784553984,782765696,3926024,-2144459662,-147937242,-1415500208,784739118,782829057,915091032,-2144457045,158597180,-134164248,-335997717,113716753,601756,-1274826672,3598591,1438906456,1334453841,200094216,-1928497975,1307052399,-402099453,-152961010,772205561,783232649,-1017292296]},{"sector":11,"length":512,"data":[8290342,1157854208,-1018824981,643286009,772046731,782253705,637896742,1342268808,783261998,38111526,1963015256,1435051530,1300833796,1012591366,637957378,-352037495,1946631248,1946696936,1963343076,1434985990,1010756356,772764932,1076799905,71665958,106794022,-1993987093,-1943665547,642778701,16926710,78644340,-165279253,1946288711,-402477051,643301648,268584950,-538442892,784555776,796329670,-1960423424,1975520007,1381191704,113716823,601756,61931444,1610570728,-346530982,67152176,-953281932,3054598,80275456,-1673624786,427100462,1946681513,113716759,11932,771971560,781991555,-352160503,-1871910141,1954545833,113716754,11932,771828968,781991555,-1454082807,309608448,-1677277394,-402653138,-2094137103,154049598,11091317,772961282,781977287,1558708224,1048784389,1963536028,8431910,-953281932,3054598,80668672,-1673624786,259328302,1948254377,113716746,11932,771848936,796343936,772764929,781991555,772240640,781977287,-1017642999,-1976674736,1958742532,1966750746,2088775181,108331009,312878,1508379115,1174500102,1591733062,1381417816,-1976643446,105310212,-1073083278,216534132,76033536,1178993131,1583016171,1937784003,1918974988,2004499525,-337697727,1460032317,795295373,1946483328,1648266500,356003375,1364203380,-1274605998,-1144878491,96075775,-17920,1499079117,1569402456,1166945793,742605571,1607935616]},{"sector":12,"length":512,"data":[1354980103,-1475444690,-2144436178,-47273946,1006930478,1007318059,772240685,782765696,48776706,1354979328,861295185,1406284745,168069678,-398297920,963772553,-393485262,-774774063,1912629992,-1948611796,-773664319,6154449,-489611406,1424544209,51802624,-389540909,225574987,-779889405,4319232,-347733134,652958651,-164734064,36612102,-772339084,-1031548169,13730561,108497702,1006930470,-1341688576,-335563775,-953249780,154049542,-1274826752,-43849473,1482250846,-164717373,36612102,-1013120395,-134057827,1019476419,1007186480,738490169,-104597456,1381191875,2139825751,92939782,74825738,1290534836,1064633148,92939847,-453637708,653787968,95683978,54584566,92940024,-1960425657,3336237,-947711373,1976106499,113716977,536220,351010740,-10122714,-1960443216,772533013,781977287,-4980727,-639106128,1532649468,1431356248,45241938,-402355666,1014105248,788425448,782763766,1007514632,639595837,97920,334191221,-1475938770,242487342,175454780,8290342,1178957056,975586795,494207046,997507082,334185798,4602406,776351349,642057354,1962952250,-347781597,133637799,410255376,158677564,8290342,-351439616,1962949646,2122327559,57948672,772205561,782972553,1566203640,915260248,-2094125256,41221948,1377701867,-1205924272,-695519232,1515725261,1381090079,-1976645325,1958742532,1048587836,1946169143,33259535,977011829,775696500]},{"sector":13,"length":512,"data":[216738932,645147964,578039612,510930492,1929294056,-1862224866,-150992198,1976699874,1925251857,-347696882,-120026435,-129628693,-1946615317,-1017554239,1448235344,-2048371117,1156984575,1969094929,16902147,1510393646,771751983,794560199,-953286656,3104262,113716736,12128,923190830,28508463,1929342952,1520643677,1960512047,-10295201,-1557245838,-620089508,45306484,1929335784,1587752513,1977289263,116796982,1963077287,915091003,2088775326,812985599,788481222,-1492728018,771751982,782700160,244002306,-1959907535,774845222,792016523,-386351127,1601371920,794862382,1467341578,794468654,1333126154,-1492715986,141820206,1131875388,-1070464395,-1475938770,208929838,141823036,796003332,729225276,-1590767478,-469094564,-259382923,794730798,393602058,-1590769526,-469094560,-393605771,-4956581,-571995984,1527835642,-1325419426,-86841341,-1677277394,771754286,792135366,1482250752,777408707,172360842,788035008,217990282,1953512480,1952529433,1970093085,-1976676828,537722436,108294204,175399228,-2144463893,70166542,-2144467221,19834638,-29047250,-1017618944,777409360,782835339,1965571968,-1964756385,26077191,675040628,-989985675,691815794,-855767435,594820466,209003068,1174702126,9168963,267070834,1929518056,76033543,126501702,1174702126,784657219,-970062712,-973078204,-208994297,18868294,-1640593106,772860718,783103627,312878,-1677277394]},{"sector":14,"length":512,"data":[-1275066066,1577365759,-100472741,1397801816,512437846,126496425,561324604,3139651,-970059150,-1962933948,-555202829,914959872,283848350,-1388934354,80096814,113716736,601756,162594740,-1041736866,1354979577,-588773493,1009021952,-2146601694,510993148,1174702126,-387235005,1929477096,76033543,126501702,1174702126,-103421117,-970062357,1492647940,1448562883,-1455518930,76164654,326418442,1962958824,113651236,1577135991,312878,1581247327,312878,133637727,846528513,-1677277394,-352320978,777410601,-1073085302,770186868,-401902592,41091352,1179076167,-1573983765,-970051934,776404996,782122633,-1453826210,158597632,-1325419440,-115677179,1364443992,795614861,771754425,74712890,1106829891,-1396483239,1946165992,5498904,-164751755,539928582,-164696716,1093576710,-347207308,32241926,-121417992,1011962819,1009611789,1009349632,639988746,33717632,-617406862,56461862,637846403,1946171776,650720013,641927562,74711354,222099682,1405311833,113651281,773861026,782771840,1948269791,1946762294,1949056050,1965046833,540835852,548407157,-339723706,2105550366,393347330,-1977169613,-922025139,62589812,975586048,-502828031,1495284984,-1573993637,-164745566,19834886,-2144467339,539928590,-403980230,783363725,175430971,58011452,-133239815,792464363,-2144467339,1076799502,1444856824,1048784467,1962946213,1360941095,106256210,-561056205,-849149768]},{"sector":15,"length":512,"data":[198937633,1599932379,1478449498,-1993463436,774808374,782573193,-1556706514,512634414,1015230117,974156800,973632004,58130756,1174793209,-118756538,-1021354405,16792127,3819265,3821569,-1291845374,3846714,1180672,984758963,1313817346,1329791037,4012622,14951,2050650371,3834682,35651840,-1304775936,-2080309190,984809472,16792242,-1291845500,3846714,16792207,3842049,3840000,983564801,15017,32768,984758963,8388864,-1304775936,58,0,16777216,70958848,-751122176,-516235974,1124075578,538988111,2105376,538976256,538976288,32,0,16777216,1392902144,-987343330,118362741,977026701,-768358093,-386631192,-12716938,776107263,988233344,1027241217,141819904,-418986450,-420806598,-1287749586,443876410,-402194898,1048587834,2114009832,113651208,-352306457,3008523,-970062101,3860230,-336317976,1048587961,1946172135,1048587784,1962949352,113716746,15035,-134091783,123412318,1444829123,-1916193967,775578686,985085637,1039400424,1316290559,-415334354,1182073146,1946157117,113651208,-352306457,117321446,-2144453911,54178622,-471333259,-1876759808,-1287749586,108331322,-352257304,-2144432108,70955838,317195637,772205312,988219078,-206772224,1582935531,784555807,988364416,-402295550,65732614,-1023390488,1364598359,1049479475,-986826100,-398805194,-12717182,774862079,988233344]}],[{"sector":1,"length":512,"pattern":0,"data":[1025996033,141885440,-1287749586,141820218,-418986450,-555024326,-586744018,-1214173638,-542953926,-212801478,1582943467,1472421663,860968478,-1791062583,918892090,937966263,-49677,-2144453260,20637502,4011381,772306176,984825472,772305921,988219078,786361088,987825919,985112878,-515996882,108331322,987996974,-1557265173,-135775515,1505684466,-1017176226,777395799,985085637,1946172544,-717320940,3976250,-1398143884,-953222933,138072838,1595891200,-1214173501,1048587834,1963080425,-542953972,117386810,317405917,1048587920,1963145961,-475845111,117386810,12794593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1157627904,538984775,1277173792,538985539,2105376,1381061456,503731799,118365966,464830515,1020739213,281926451,125115196,1025969792,-1272255743,-854543598,284917776,243271540,-352240345,-843009000,2139104789,225835266,365773748,91554216,1025969792,658407426,661913661,1024931469,1025982160,-964490894,658427912,250997565,-717320953,571706,113747187,539347,-117314568,1599997727,1482381658,195]},{"sector":2,"length":512,"data":[874729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,757926413,1919896864,757932133,1852394496,1970151525,1919246957,8250,50331648,0,0,0,161024,66304,82176,0,0,369442048,87887732,-2146798517,460605692,1596915502,-13722622,771907358,40181385,1728482350,-1157165566,1020199523,-2028964592,-2143321894,-663364985,911611,181387315,248346048,-1442662393,1364414671,1431787090,788268574,16979593,85888046,236916225,738653703,1601504258,-1106943256,243990823,-922025432,-890764428,674663170]},{"sector":3,"length":512,"data":[663012866,113708289,19333400,1912701928,406752040,672041729,-485183486,1957622276,54445080,19381761,36179595,227026503,-1331367097,1340713485,739147777,1053033474,-953810685,218104133,-1006551575,1191248702,8436039,738653769,58001410,-1962873111,-1409213898,863289354,678695996,359998524,1958742700,1947483174,1948924955,1915829325,1983462404,-1696028043,-1395072509,192200714,-143322052,18495113,-2147427351,-217961434,18364043,36179595,1017912803,1979441172,739147798,914949122,243859736,1460011560,-840431858,-385392896,-1957298004,-1962862538,184690718,1260352731,1948269740,1946762486,188960498,1259304155,1947483308,854108681,1592844803,-379677205,-1957232791,-1962862538,738338846,199264816,1273722075,1947483308,1948269797,1946762482,1959591662,1960512276,1017924565,1021342752,1021080585,-339250156,189678572,1270838491,1948269740,1946762425,1947483317,-622286159,-337059326,406227878,673090305,1960512258,1017924376,-1442417644,-503136024,406227440,673089793,1977289474,740720645,229702402,-1949332566,721486654,65635279,21858342,1599938311,1532582494,915129176,820511000,-1960713472,1359026230,1493189352,-117238158,403571015,672016641,440305922,739147777,-1007088638,1631372280,2050754162,1596195447,-1396100157,326372668,259268668,192153916,125058364,57939004,1323887425,-706171709,1239452415,121539366,1044063745,762511625,326479447,1364594147]},{"sector":4,"length":512,"data":[-4527956,1509548462,637826398,1593851264,642848116,17370763,-1070411989,-1359827214,-339441063,63175116,915129329,-167050987,909848180,611582223,-486463768,855082768,-2018577728,990672119,1946226486,221678351,1004530433,1946226486,18147331,18167433,915144131,-167050987,401086580,-401640960,175243282,-1073085302,-398002827,914948338,-1006894827,17905211,990672121,1963003190,322341636,-1007137279,-1949748394,184620342,992113910,1946226486,861099804,11659483,179046883,-1442155328,-1946688957,-352252618,1540066284,1472421471,-1958653610,989925182,436277566,18063835,-1053046997,-1007234096,-1861520383,-1527529173,17645195,-1527527285,17907259,-2133602059,91489275,1929247616,-1070442717,18026123,-1359818965,1049300084,243990797,-819265261,-141840654,-1996467736,1593905462,16729542,17776265,18169481,-1017160103,18167435,184559336,-484739877,1229696026,620000430,1916877919,2002402315,-12242425,-478912732,-1950154484,-352252618,252611543,1942891265,319720198,-1009898751,18036283,915080309,-1262288627,-1978610417,-1545325884,1049100572,62128414,243863757,378011939,-1262288609,507415043,-2012164863,-2013192426,-2013192138,-973004522,74246,574521539,276037633,1049232308,281870622,19019306,18888328,1049232052,915013918,378143008,378011937,281870623,-855526205,154977040,28906100,1931492352,1947483146,1947548678,-1010696702,570886329,704716590]},{"sector":5,"length":512,"data":[-1007865139,-7346095,18980953,-1054088142,251529843,100860192,-160235236,-402579038,1455685519,-4528047,1946762321,1931492390,1947024411,1946827799,1947483155,1947548687,-1329034741,13035614,1074053514,1476444136,-1329373607,11986976,-202638366,-854718536,12305168,288787328,255212289,-1962052095,721490702,714958,17643147,17763979,1608764971,-2134378928,-411022988,1958742655,1960512314,868453145,1110898642,1976699650,-1101639411,1609040452,1005084160,-398239482,-1014300622,-1342162456,-9967558,909844656,41222421,1525169840,185134079,-402426661,-1404895214,91602954,-343879808,-12326909,-1012800936,988286384,-385175297,720693,-147926477,185069110,57955008,1493168616,518598660,-14948097,1975519916,45401080,567136394,222094386,646591092,-989986529,18622010,1364403826,1049232308,281870622,-1023517863,18617914,229772405,567083700,45353650,-466476595,19007230,18818696,3270851,36177607,113704960,554,36447872,-1070391556,645978254,528417815,-2130835224,71486,954729332,90761220,-352284952,53921272,19382017,-930436026,-108794574,-1190955393,-1993998209,-486464242,222080013,-492174476,237577976,521011493,453643715,-301595128,151601164,1074552586,1896427529,1094861678,1970762612,1027489600,1381186364,1213220687,1363758411,1091125329,2114535689,-1643551991,-1576229364,-1257658359,2114567692,-1207264247,1829422857,873131788]},{"sector":6,"length":512,"data":[1175071242,67793162,-1861533941,1477112843,145866508,-1157626183,-58718025,-1089899264,448334019,148749056,-506351886,671078659,7661648,-34871208,19074699,1493016296,356418499,-126615551,51636304,-1560211039,1012400405,-1593215927,363004175,-66983935,-2096947479,141886,251597684,915079722,-1937112534,-315489880,217942504,915129089,909836842,175243816,19215931,117379956,-2071330264,-1964506841,-1467709187,705101569,-1092041982,-1006930433,36320907,36189755,-907541132,-1007555585,1979696104,28951547,243290368,-402521556,-1956969503,688007742,1912743966,675166982,-1996196350,-1929238466,624311089,-1978895615,-2013190268,1174480773,-1980830905,1359029566,-386097944,-1427635260,-1054124029,-35010421,708739843,427032578,-1946201880,1308764214,36320827,914989173,-1937112536,-655818328,922731267,1911030314,-1913955841,-1962707736,-1996346826,-1996413642,-385734602,451412923,708217855,1962281730,662997578,58910721,915139700,-167050710,-1974584972,-402577532,796132208,-335612696,708217833,624311042,-1977584639,-402577532,91489112,-335611928,-17635096,915082612,-2071330262,1105723687,-1007782909,-2147268120,578027772,36320907,19215931,994449524,1946232118,662976529,1458795777,1593753576,36320827,-389810825,-58719458,-1946717184,989997622,1946232118,909854445,-428605147,19366968,908850037,-829750742,-1325477143,33220890,-1560212063,262340881,352765697]},{"sector":7,"length":512,"data":[-1023410175,-1153168200,2142830594,36878851,124920269,37240448,504722433,-1912586056,8691928,1975519775,840478722,37921764,37883647,-1342101272,-64559103,-1946289687,1442911542,18167435,17905211,915083381,914948367,996016405,1946228022,15226385,19382266,36314763,1962592744,909860360,-814415595,922705603,-488111574,16902144,705596248,-473421054,-689417977,-102606339,356418499,762642433,771654083,1312126466,18878090,18951818,112977,-1325705752,-76552160,-402652743,-2007368886,-2013192178,-352247506,9955343,-1090859800,937951825,36552444,-2147347992,-126484500,1584667452,443813180,-1317795780,-395169732,-461948612,36896385,76078707,-81270714,-829696277,721563070,-473943090,-299436235,-1395094777,-466472916,-236797181,295819403,18195201,-377238645,1360360961,1509490664,989926817,1946226438,-336535036,-114956285,-11485134,-402579658,710474347,838934278,-389510172,1012400564,-1020627685,-1560213599,-389873399,-806814400,740720893,417987842,624361468,-47257599,-1879196184,-2147408634,-50189274,19382211,-1980165656,-1996347378,-956226290,141830,703090944,705072897,-1058487550,-4462344,1048828907,1946157608,-5249018,-336037912,741769420,396361986,738603521,1359063042,19074699,-310376588,839022338,-100013843,-1070391719,645978254,780076055,36439798,-2147126271,-2147215602,243319583,-167640532,16919558,915106421,-24968662]},{"sector":8,"length":512,"data":[-1955957889,-2013124042,-402577532,915143189,-2071592406,-2077621848,-1991900760,989997622,1979852854,671547150,624311042,-16484863,167847174,1354134720,1492737256,36320907,36189755,-1974462348,-402577532,-930416171,-1467743656,-1467185151,-1054194175,-1952914827,10676680,36189835,1920990851,-101914365,19216011,1954545283,914966021,909836581,192152106,663521870,680298497,-1997542655,-16701564,-402511866,-2071398007,117375400,-219676118,1763576,-1174862103,915079168,909836842,678625832,27821194,-939288506,915140843,909836842,343081512,19367050,-1996926744,1174513796,540863723,154927732,-1205285437,801969792,567086004,-244006902,567085236,-1073021004,146015861,11805133,-1830268477,-108832264,-1341686272,-116135904,-1662387742,788529400,1313424722,1279349843,1110376524,1230194261,788546906,1414744392,5853775,788547631,1380139341,788550479,1060044877,1313419008,1414677843,1448029952,1414746693,1162561874,235012096,-1274606049,1025625392,108271110,-384316486,-2118254146,59828224,-401718593,1953760149,-401717825,1551106957,-401715777,1551106949,-401729601,1148453757,-401724481,1836319605,-401722177,1702101869,-401721409,1718879077,-401719361,1584661341,-401726785,1601504085,1006847464,-385649603,988283235,55961603,240721545,-1358004178,-1712651761,-1358004178,-1846869745,-1358004178,-1981079537,-1358004178,-2115289073,-1978470469,-1073069305,-1974269324,-855460656]},{"sector":9,"length":512,"data":[-269788383,686358704,243281409,-385347665,-2144403617,269463310,788485865,263128822,-1207077631,801982464,1950875709,8448259,240755030,1929445693,16889859,-2113929287,990778857,-1962772799,109990081,1236533292,364388813,17277710,-1560213085,228786443,17933057,1526796195,329499395,-1547138047,2007171699,41788162,-1560213599,329319035,117844737,41919233,-1945991752,352751307,-2027488754,637582342,12459655,-1996333149,-83730146,-1358004178,241042447,1436423,-1163263427,175444623,263128822,-1174047742,1760236221,-1358498258,108273679,386319910,-164692223,1074769670,-970586508,71430,-1962794520,-186521346,401086435,1966947330,34596920,-1528243829,4646912,1914132410,116796971,503844783,141827846,1374208050,-137303817,-1358498258,141824015,451461170,-138352638,-352276449,315996680,-1342060312,-1358498303,74777615,567102644,18028171,1398220749,1978140042,1191545076,1542813003,1464948319,10086483,1582915419,-1014284829,33931523,378217984,723910923,721488150,1342994114,1476435432,19276402,1442908934,-1946711215,1049306827,-1527578359,1504362546,849671006,-1993954624,-134149826,1448543939,-24443106,1947024556,1965308992,222080057,607926132,708578420,826017908,960236402,-970586249,-347659259,-202184675,1111260340,1018434164,208948284,1195130548,347342452,-1066052548,-341130102,1590660027,-836040865,-1946711101,-202512181,643242354,17370763]},{"sector":10,"length":512,"data":[-1070411989,-1359827214,643823499,-1993956109,-1023342274,509040209,1049304838,1043005715,-131399411,-8291214,1987182850,17763979,17894971,237730163,-114622195,915106166,-148176621,17905211,-812969354,1095761547,-222285232,1333090478,17907337,17774219,17761793,17776267,237751947,100729101,1330512141,-56298499,989926305,1963004166,221678354,288786689,252066561,-1996196607,-1593766090,104530191,41222417,363053107,1595930625,-1950131874,-1996419786,16847158,-1593766650,104530189,-1133117167,18038411,914880395,243990799,-836042479,1313855991,1201992701,1049230406,915079441,909836557,-1804205807,-1957691765,721489678,-222285105,289311150,-1266554111,-1172189943,162797538,1187193293,1946762412,1948269819,1455640311,4030502,-391378572,1957622436,1489198835,-1394920509,171716652,-880078989,-620504317,-620504829,-338164840,851660522,121015232,154548993,-386698239,1035007422,-386607896,909836299,-495714039,-336229912,-1073042198,1656019060,427064380,1044146100,1823740788,225721404,339506356,607913844,-1968436107,615534816,1492425960,-1763130230,131001332,1763733057,1836016494,1769234800,543517794,1263750980,1763735909,1818304627,1684104562,1852383353,1818326131,778331500,1631782692,1953459822,1634231072,543516526,1397118274,776297033,1986939172,1684630625,1667329312,1679847282,1852401253,1869182057,1159999086,1937008996,1836016416,1684955501,1852402720]},{"sector":11,"length":512,"data":[539784037,1633903986,544435308,1143821133,1663062863,1634561391,745759854,1684955424,1701995296,1936028769,1667329312,779317106,168626701,1263750980,1528846661,1229279791,1096045390,542985292,1430400859,1514754886,1769160005,542991738,1095577435,1397707331,794501213,1414744392,1566134863,538970637,1313419099,1414677843,790658080,1380275791,1230132307,542983499,1667329371,1634627442,1530750317,1954047348,168648029,538970637,1229279791,1096045390,538987596,1850286112,1818326131,1629516652,2003136032,1886348064,1718558841,1936671776,779707755,538970637,1179992623,1163544915,2053731133,1699946597,1931506548,543521385,1663067759,1634561391,1746953326,1869902697,1646295410,1701209717,168636018,1294934048,1330791233,538976339,538976288,1886611780,1937334636,1819042080,1936671776,544826731,1919115629,221148015,790634506,1414744392,542724687,538976288,1936278560,2036427888,1818304627,1868767340,1851878765,1931506532,1701998452,1852383332,1835363616,779711087,538970637,1397639471,542396997,538976288,1884495904,1718182757,544433513,1952540788,2003136032,2019914784,1870209140,2037653621,1763730800,1852383347,1953654131,1763730533,1819222126,1702109284,221148280,790634506,1380275791,1230132307,538985803,1701860128,1768319331,1948283749,544498024,544695662,1954047348,1702260512,1769109362,544433524,543452271,1954047348,537529646,1667329312,1634627442,538994029]},{"sector":12,"length":512,"data":[1394614304,1768121712,1936025958,1847615776,543518049,544370534,1634541665,544174691,544567161,1634038371,221144436,1948262410,544503909,538976288,538976288,1701860128,1768319331,1663071077,1634561391,544433262,544567161,1953390967,544175136,1868785010,221144178,1426722058,1851859024,1329864804,1092636247,1464816210,1701978195,1819042147,1836016416,1684955501,1159740275,1663058771,1918985580,1868767347,1851878765,1768693860,540763502,1679832902,1819308905,225671521,1836016394,1684955501,1936287776,2037542772,1279336507,927345492,1701602080,544436833,1835888483,543452769,1953720680,997814895,540558880,1918985587,1936025699,1836016416,1684955501,1768425997,1919906931,1176517497,1702043705,1952671084,543236211,1835888483,543452769,1847621986,1700949365,1092631410,1177244748,1663053873,1918985580,1634541683,544174691,1768318308,1769236846,779316847,168626701,543516756,1819045734,1852405615,1918967911,1869815909,1931502957,1768121712,1663069281,1936024687,544106784,1802727236,1830844773,1869767521,1717920800,1953066601,1936617321,604638522,538976340,1866670112,1851878765,1702043748,1634886000,779251572,1816207392,1937207148,1819634976,1819306356,1868767333,1851878765,1763734372,543236206,1919115629,168636015,606941476,1109401657,1751348321,1918988320,1952804193,779317861,1900355616,1635150197,1953391980,544175136,623718693,1852383289,1952539168,1881172067]},{"sector":13,"length":512,"pattern":0,"data":[1919381362,779316577,707004941,538976288,1836667680,543977314,1819305330,1684366177,544825888,1919252069,1768453241,1713399662,1869376623,1735289207,1667329312,1847619442,543518049,1663069807,1634561391,1814062190,778399337,117443085,1970499145,1667851878,544501349,1869440365,1948285298,1953701999,543519343,1919115629,1428172399,1948280179,1142973800,1162564431,1868767321,1851878765,1769414756,1948280948,790652264,1397118274,222648905,1769435914,543712116,1763733364,1701995374,543519585,1767994977,1818386796,1701650533,2037542765,117449774,1868787273,1667592818,1329864820,1702240339,1869181810,168633454,36]},{"sector":14,"length":512,"data":[-1,985152,65562,771751936,728713,218532910,1392954112,516173392,-2144993269,1962934911,295233795,11051054,21465126,-855113032,-2091148241,-1655504188,-888710312,-1,33555201,33554943,23593024,150995456,256,0,0,537001984,20480,66050,-1610584062,260357,131081,0,0,0,-65536,1325400063,1095639119,538985805,8224,1174405120,842093633,2105376,18944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16711680,0,-1207515346,-67108864,-1425110738,113716736,173,-1073297618,771751936,11601607,-1125646336,-1206684923,643039231,975576459,-1207733489,-379912190,-1993473757,1392556598,512578903,-164757310,536918278,-391363723,1014105676,1946530024,98691127,-164751243,536918278,2028471669,774302469,12125942,1310618689,-2010244117,1966947335,243281414,1124139193,1929786856,-2010207035,-1091878137,914959950,-970063697,-1993474041,637582878,915217803,-2144468798,913583932,574390318,-164755340,16824582]},{"sector":15,"length":512,"data":[-1977199499,-466484921,-1425655506,772961024,-788485215,54739936,529213144,-352286488,113716841,65709,-1977196309,-466484921,65065280,260712152,-921965262,1396903796,-400585946,1935343814,-498908351,113716978,196781,-1977207573,-466484921,65065280,126494424,-523115470,651690816,-315486326,259311883,-1960422589,6154271,1124823899,787669571,11339463,1599930372,244002395,-1590820693,-1959919443,771796790,11605643,-1289844178,1355020288,-1459123418,91553794,-1425604818,1015033344,-1457949440,158662657,-1392064722,-352321024,61886478,-1628897356,65755136,1476468200,1438906819,1334453841,200094216,-1928497975,-1712846481,-402099453,-152961010,772205561,12594825,-1017292296,8290342,1157854208,-1018824981,-1190232018,-957870080,776631039,12134016,-1590800145,-970260292,-1174011602,-1959897088,771800118,1962949760,2088775206,158677759,-1392064722,-352319232,1065559583,639202304,67575,-953281931,33598726,-402003200,-336068458,183236877,-1274826672,256255,1472460888,75467558,-1321301714,92808704,23431206,-1063178672,1166616064,20731906,-1993995659,-1993997227,1525352013,108331580,72714534,121393387,138209396,104653940,-2010773899,1055589461,259327036,12230958,1166616128,1569465860,640412422,637826441,1342590348,38270502,-1341885439,638184196,33703926,45090164,1476441320,38270502,-402426864,-1017184125,1191626286,642777089,-1073018997]}]],[[{"sector":1,"length":512,"data":[1397758069,-953264302,151039238,-1325419520,-10754045,1482381919,65733355,-1450164501,309624832,-1392064722,-402653184,-2094137099,151039294,11085429,772961344,11339463,-1159200768,1048784384,1963524269,536914191,-953283980,44294,33875968,1195278382,259326209,-1388412114,125108224,-1392064722,1476397312,777408707,-1073085302,977017460,-2144465547,1962934652,80096774,-402003200,24314738,-538229178,1455642718,785418834,1609041034,168587779,-401836864,-2010251252,1174530820,1525214022,-2143501474,1631325299,2050767986,-551274377,106116331,1111395671,356003329,1364203380,-1274605998,-1144878491,96075775,-17920,1499079117,1569402456,1166945793,742605571,1607935616,1354980103,-1190232018,-2144436224,-50284250,1006930478,1007318059,772240685,12127872,48776706,1354979328,861295185,1406284745,168069678,-398297920,963772700,-393485262,-774774063,1912667624,-1948611796,-773664319,15788241,-489611406,-404172335,51802624,-389540909,225575134,-779889405,13953024,-347733134,-1192666181,-164734208,33601798,-772339084,-1031548169,13730561,108497702,1006930470,-1341688576,-369118207,642121886,3933322,776364148,12125942,639530368,1912818747,637957942,1912689723,1278944814,1915254535,1413162554,-350193915,1278944818,2132311043,1413162502,638614529,2131184699,639400970,2131055675,-2095781118,-922875450,-953240203,100707590,-1274957824,-1338119169,613033473]},{"sector":2,"length":512,"data":[162805483,54584566,76162800,1278944838,637957379,1946244155,96895970,-311047938,-1392064722,-1342175488,-335563775,113716747,589997,-4979792,1593652456,-1017620134,116797084,1963065529,-1648124670,-1007156624,809288697,960235634,808191095,-1007041544,1465013072,109021990,168135206,-1274776128,772402175,11339463,-4980727,-286784592,1532649468,1431356248,45241938,-402355666,1014104434,788407272,12125942,1007514632,639595837,97920,334197109,-1190726098,242487296,175454780,8290342,1180464384,975592683,494207046,1383383050,334185798,4602406,776357237,642057354,1962952250,-347781574,116797095,1950351545,1207379471,1946165250,2122327559,578027520,268957478,1008235520,638154042,32384,250285429,125108284,8290342,-117214150,-1993472277,-134169546,1482512990,585673923,-401050624,376766547,-1190726098,-311156736,-1190726098,158613760,-116987058,1324876267,1405352131,1947024465,1946172461,1946827817,2105550373,510788098,-1977165005,-1014824099,964699652,856519680,160048841,20588099,-119405452,1532562748,777081795,11732678,645934624,1021247673,1010201632,1009939465,1009873964,-2146667232,125116476,977674416,639560640,16940416,-919398542,55413286,192203019,1124074427,1946237478,1022943751,-1017423584,11772462,-1190726098,108331264,-1190232018,-1069932544,781051883,-583335742,792463988,-336002187,200013838,108343100,-1190232018]},{"sector":3,"length":512,"data":[-1007140864,777213470,11943555,1344763136,1465012510,-164428203,12115598,-1943941789,131795931,1499094877,695490591,-1271494354,512306688,-1959919434,771798070,11935374,1946172547,1912879632,21248520,-336002185,-347716091,1583085803,140362527,83886080,143263851,146475169,2248,-2113929088,17331976,16794671,257,8323072,0,0,-2147483648,142737408,788596886,16842836,257,255744,8388608,-1341619712,1211040264,5451520,16843009,1660944384,0,-2113929216,17352456,17199,32768,148113538,4599553,17104898,0,258,131840,117702656,83886080,9,0,0,0,-1,0,0,-1,0,0,-1,-1,0,-1,0,218103808,10,655360,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,542330148,542330692,1936876886,544108393,1126703158,1886339881,1734963833,824210536,758200377,876165425,1667845408,1869836146,1126200422,544240239,1701013836,1684370286,1952533792,1634300517,539828332,1886351952,2037674597,543584032,1919117645,1718580079,1816207476,1769087084,1937008743,1936028192,1702261349,100737124,-65258,1158742020,1852142712,543450468,1869771333]},{"sector":4,"length":512,"data":[824516722,1049429774,-1048376854,100844320,67606,131104,196656,262215,393298,458846,524415,-65385,1410531503,1830842223,544829025,1634886000,1702126957,1377465202,1769304421,543450482,1634886000,1702126957,1768759410,1852404595,1850281575,1768710518,2004033636,1751348329,1986939151,1684630625,2036689696,1685221239,1918980132,1952804193,1981837925,1702194273,1953459744,544106784,1869376609,543450487,1735287154,1632639845,1701667186,544367988,1970037110,1869488229,1818304628,1702326124,1632639844,1701667186,544367988,1970037110,1869488229,1818304628,1702326124,1632636516,543519602,1869771333,824516722,1049429774,-1048507890,-3997468,16979462,33557504,50339840,385888512,1868787273,1667592818,1329864820,1702240339,1869181810,336203118,1679847246,1702259058,1701868320,1768319331,168649829,1634683946,543450468,1702131781,1818324594,1936278560,1917067371,1919252073,1919903264,1769096224,622880118,235539761,-146895609,1858175754,1381191875,-919382266,-13385330,-1307431240,-1943024384,-1995900410,-1207371714,45224494,109850573,1049168130,783812864,-855330286,302418991,272533769,305051657,801965746,150341260,150224521,-1929489944,-1995902458,-1945571266,-1995895290,-402060226,109903654,1049168134,783812868,-855068142,436636719,406751497,721864457,-972419831,604599302,154142407,113704960,657714,-1979750168,-402056130,786956313]},{"sector":5,"length":512,"data":[4319232,5302353,1599670386,1482381831,-998046485,1355020556,12066390,505531747,141696775,153368201,153486988,-1195157410,12272640,-841862400,31883297,-1207841152,567100417,1140897987,855638459,-2145268270,28836302,-1021194940,567095476,1964377661,418117635,1929380413,-17659,45810667,112640,-1308622663,-100682240,1364414659,1376147285,512354699,914884904,-957871827,1959332610,1978469148,2549765,-1326971925,1510502913,117507560,-2096829601,-336001340,1516177156,1560703737,-346530983,147096324,1397801977,673090386,-294135,753403253,-402396416,259194999,12278196,841075968,113542116,-2096043015,192217083,125092155,-2097106712,1928922820,1482381827,520494787,1963063683,637711387,567088522,-389903841,102629553,638022431,-855550582,267122721,-922025292,-1977218700,1193397525,-118262455,1347928863,-91532538,-645200098,-218359120,721647022,-880063527,1599604571,197145539,508523721,1085546246,-108800117,-852986623,642785057,1525155210,102651904,-133795041,-851296076,-2144953311,41228861,32227723,-68677937,1427827711,-5838767,-849745525,-352160991,1959279371,-118998265,-1047854475,-1195172003,79364135,-1023298304,1962933888,-2134444527,119409781,153829005,-402652487,113508096,608093271,1962871561,1032005143,276101120,1912945190,1161438727,-117344511,-370456761,-1883044001,856239622,-141388837,-1828113866,154285815,1980365443,935493637]},{"sector":6,"length":512,"data":[-1031797781,188830256,184841664,-2093386533,225772537,738884736,922682741,-348059333,133792546,2088766837,91565066,154875647,-2096043199,192220153,738884736,922682741,-1824454341,-1477717453,-1070345677,154023679,198325187,-1272875831,637579301,175449400,23410726,-1002830732,-1977217419,-11278331,1195835763,-478852798,197822294,1295217901,154156675,-1976863488,805570116,21314086,518718069,74788924,74764811,-404016125,153960064,1107850751,1330202946,-1174148273,727187455,-32839431,57891167,1368417771,2088815243,225705990,108316939,1195854153,-346160661,1976109840,166419971,1979709827,197735170,1430025471,860948055,809403337,326434825,252134646,2093222005,39512066,2062024939,-402396415,124911648,1566508889,-2096829602,-2080830780,602174,57804149,-939577623,602118,-768359680,-955699039,168374790,-22026240,881297496,-75283703,-402426560,-906100232,230223477,881297674,-398245111,1455620584,871773011,-98103,-1131739019,-544536292,-956946965,-1006078974,-1945567044,1025043395,225574931,1996498749,213697544,-339506167,-256064506,-2084336632,376831995,1979711104,216791299,-1207357277,29229055,-118082816,-75297557,-402426880,-964493228,108197892,41273611,-2137219093,695534078,105993554,12079191,1009765637,158685439,45668491,-349188859,91486465,-346486945,113541894,1560284392,-821957798,-268274,1472421467,-18096,-1359822798]},{"sector":7,"length":512,"data":[1481232887,-75250849,-2095221503,-16181186,-12773772,1342928383,-16174943,1476991006,520029419,451610904,-25114317,637957375,-352105078,892874249,-1976695691,-947715251,762575108,1959332856,-98279,992347508,772008709,41223483,1950943723,80184069,1928979435,-98292,235042296,2097358343,839283202,227157741,705087047,868417545,108822747,-955157248,537474183,-968670419,537474183,10938435,870003549,705595602,155486729,511099194,-259342038,-2147007242,1149899892,881297418,-75283703,-402426560,-822214532,2088823925,225705992,1929923640,139209224,1284166026,1959332616,121959972,-166955761,1947207492,92939782,1476520775,154437512,1090224963,1105724277,1976172032,121960156,169375104,-1978370826,-2021127612,-2092758732,58015995,-33545240,-152275506,1963919172,121959944,-352160752,1959922188,772181768,1976237577,190712,106021717,-1962467753,-1915014197,-402049986,91421556,-346486945,113541892,-161627143,1966081860,92939794,1525170512,637957116,1342260618,638446584,-1073085046,1095173236,-114559509,521061205,-1023392577,-986807884,-973075682,-956297913,-59577,28574443,186565934,55019776,1516199199,-379692967,1342566034,33554944,9,297992203,65536,1092616449,1381060694,773739863,728773,-1979627638,1334512999,341281554,235831236,-1894843361,-401490938,175372671,-1241513799,43575551,12090859,1009765640,-982223361]},{"sector":8,"length":512,"data":[-1962931426,1200296567,-388461036,1153368169,-402190848,1534197875,186565934,373787136,88442918,11051566,-1574027004,1105727939,-1270844927,234991624,4505375,-986828851,-1275065570,646458881,1736966154,11122701,-1945221239,1204228175,-1946113774,240260175,297319967,-1191181384,-4849663,1510088168,-100718615,-385936919,1017905389,1007186957,1006924810,1324578095,1522489283,868823816,-290133806,1962934077,15626,686300533,652929792,297142007,443875332,178206,-1241513799,30730495,-1240929505,47362,-117323288,1610088939,-2069813565,1950175240,638678280,297143937,-1608122364,-1574565754,1995116974,1963496253,243344913,528822,143040806,296723238,-1438818069,638678280,297143937,-1591345120,-1557788538,1256919473,1963502909,243344913,1053110,143040806,297050918,-1002621717,638088456,297143939,1026026242,762644689,-1240563418,1442856977,856217534,-2086656320,-1312227832,65140229,1149904624,-1281219071,1465409041,-970563760,-346087419,-1396484095,-76275652,-143390404,118408014,166255411,512372478,1569198515,576555554,1962998656,2668808,-1358001874,-1948004079,-2095775049,330901447,-1527514112,-1962889496,-120508603,-29995637,1927336905,793086239,1946286464,-1979600857,2105553245,1383335714,-2145227382,108265725,1189867699,2105769707,74778676,988544691,921435315,28373171,119700864,2105551988,276103202,2105737904,74778676,451674035,384564659]},{"sector":9,"length":512,"pattern":0,"data":[19037568,28313205,183237043,35814784,45089909,1166604723,828213289,-1960491637,-470337955,-147563125,793086435,119700864,-768402059,244552,45868023,871626496,33602514,-1992231945,1170682437,-134160339,-47257405,-1241057490,1946158097,-1365234130,71665681,296722734,774194569,297142007,125042704,297050414,775177609,297142007,125042720,296853806,-1019853431,-4514034,-402607361,12842983,66050,-805277694,195842,131081,33554432,33554689,157286624,251660281,512,33685504,1879179265,-117071872,589827,2,16843264,14680576,166726464,33559040,0,0,33685504,-268304383,-266960896,2359305,2,0,345440256,347935914,347935933,347935933,347935952,1174869225,1146377032,20035]},{"sector":10,"length":512,"pattern":0,"data":[25320013,25,10616864,60030975,128,48365584,30,1]},{"sector":11,"length":512,"data":[-397264405,-1017503752,1128348429,1279870276,1381060685,106386515,1393304324,486815496,1728522251,688646150,134969860,-1408633584,1627761418,571401,772384233,903880332,235343440,1325843999,12320820,122218498,1931470312,-1337150458,1478610176,108314634,-385873992,12061050,-2145268425,91566074,783812294,-402190801,1048587694,1979660214,19707916,-1341941272,-850611200,-49887,1776813429,1024846599,41222145,37571563,-352160512,212368,1038811765,1344212510,53760440,-1959472890,79255792,82739968,-215044929,58007462,503363049,-1157226738,12124290,16890368,-385876033,520554230,-1557787278,-1645660973,805419520,1023999209,1903427587,1946158141,343410,236852597,1124120607,-852209222,-145853919,1946157505,1028451144,1098186754,-1155592674,12124290,17873408,-385876033,1914635946,-1260877023,505531710,1102323470,-852209222,426909473,-1123629530,-970522833,-13648890,87898347,-1206749952,-2014773233,768008,-1207402007,2078867466,505864,-1207405079,1877540876,1048585736,1962946491,-400617766,1038814684,-385872200,521013338,800865920,-1207536640,-1947729901,877772290,886115979,886423377,-1957714701,783309271,1957622525,-50689278,1463716167,783400501,-218102343,8567716,-1174404935,1048576274,1979660004,921157381,-4258837,101378303,1436784498,512630325,244004320,-812908542,-108933333,58068992,-787480647,-773729823,534893025,-1458665143]},{"sector":12,"length":512,"data":[922140466,800851702,-2128775681,-784926999,-775844887,-1106343447,-1949826254,-155024943,-1072264906,922139186,436586236,849821321,852100806,1275512448,113704755,-955632562,-164453114,-1559836874,-956301006,20095238,-1727609088,-167772110,-13648890,113642869,-402574257,113640941,234894415,-1140388321,599261696,256227877,112730573,27322368,-1271739718,-954086134,-869087738,1882162,-956199448,3316486,-1660500224,-956301262,3317510,-1241070080,113639470,-1962921295,-1120745930,-13421927,1040228072,-947711095,-1589737214,-1590767310,7071794,125119548,1913192323,1316219875,1007489768,-972524225,-13455098,1007486696,1007056479,604141434,573279,-234876999,-2125498962,-1962931729,849060319,108314635,848889403,914963570,-472829242,1546239,851850891,1007472360,1007776781,1006924826,1174500667,-969504434,-10491598,1325348073,-1022577944,849034883,1006138368,1983027998,314071794,13690880,-385935127,317324460,210888959,1963392899,-1241070075,775684398,591150452,725370484,758932596,12218228,1006678272,1008628272,-2128971975,1931057658,738308545,-774206672,65196514,-1729965613,-340996093,16351454,-770991756,-2134662028,19838526,378228596,-1012125021,783695488,-1170050047,179306497,922140503,849809035,132370219,58044146,1610083138,1048626092,1946234550,-8787936,849548803,-1237417789,292815150,-1946195224,724738846,-1157400614,-745865215,-11867709]},{"sector":13,"length":512,"data":[-369145879,1048641351,1962947249,135522563,851840767,-1207957831,65536301,-85835776,-1171262045,-706138123,-1589738725,-797637838,903808710,-2096305407,53649726,113689202,-1962920481,187866398,1685723,512472436,-620023143,512428917,-538430813,-1726051842,138209330,1049205365,512438955,-620023141,512428149,512307875,602419867,-1954450168,1127389982,-1995957784,-1959613122,993171734,1983027990,-21829373,849155723,848893499,372967798,58143387,-1946247191,724741390,-1993168114,-1993162226,-1590508530,-1073007969,653725044,-930401598,57987595,-1995841303,-1590509042,1049309863,-131386711,57932091,-1962291991,-399336162,1049167798,915092143,-829738329,-1958621397,-1036123138,-1489073870,-1527513806,-1356952580,-1424082126,-1962117326,20103710,20097822,-1959613154,-1959616738,-1959612610,-1959607282,-214783178,32211876,1048637823,1946170847,-1421964496,-1388934350,-1492219086,-53597390,-970545933,1049172485,512438951,507196061,225850009,848895491,849026603,-1658943157,-1658942670,120645682,849690249,849550985,-1492218941,737250098,-91536945,-2019232771,-1958216457,-1522628114,-1558279886,-1490122446,37602098,-1173981952,-1360449499,506109,-2080529687,20095294,-1779891340,171305213,895074126,-1392719565,259268668,192153916,125046076,57948988,-957551702,-1991376891,103990838,-1191149381,28966912,-16639,117573096,-643584910,623097909,-855191622,-1726051551,1977289522]},{"sector":14,"length":512,"data":[-1558279417,-46864334,-1962502680,-1458140198,-10098638,849680011,849809035,849677867,-652309679,-851463115,-930391519,209178939,-402646344,244055530,233517733,849677827,-1404112501,24451644,-1946580151,1177724726,849940107,-213791189,1049186212,512438951,1051997657,-2084363827,20095294,-639040650,623098108,-855189830,-1726051551,1977289522,-1558279417,-55252942,-1962535448,-1458140198,-18487246,-385943832,1287259703,-854936525,144435233,-2144121154,1114905148,-1979122456,11927372,54646667,1946579665,1926576900,3074054,-217585431,-1442139996,-1161434301,448018166,-930340403,-1064380274,-1912403784,33602768,139389179,-385874968,32046122,780911360,1049309863,-175426907,-1458664634,-204657870,1049186212,599274151,256227877,-943513139,-13461242,-1593391105,-402652878,113705265,12953,849428099,-385649663,1048837144,1962947225,1325844214,-4521676,38529279,800917238,-1949797121,-1187862762,512425985,1085551957,512434637,1051997395,512434637,1051997525,1049305549,-1396820649,-1532648146,-1087090246,1454650581,1049305549,-1312934569,-1532648146,-1087056454,1454650449,1286873549,567132210,1381061456,521018966,-1153168200,2142830593,847297027,292692429,1150022283,-1767749616,239373106,-349005918,-31870964,848732872,848758470,1516117840,-1017619623,1823757854,1371406512,1579273524,1444856607,11562164,-852175426,-1021354463,1823757854,1505624240,1579273525,1364247327]},{"sector":15,"length":512,"data":[901666391,877772599,-2147483463,-13126338,113640821,-1409208649,74711100,-135577174,886115977,1482252126,1464934083,-534868434,34507573,735022080,1607568335,-1161617575,521023513,-1258832920,-843042228,49953,-2097092887,20095294,-303496332,-1123617030,-327811281,849811083,848903811,990344448,1915928598,-91503871,849940107,58051115,-1962529559,-1959614698,-1993026786,-1271538930,992070975,1343780040,28954627,-851463168,15649,-972589736,19905798,-1958739477,585650632,-972720890,19905798,512479795,-620023143,-947186315,104579331,192295616,851459723,-819214197,-402652741,1161298917,-2145094401,19905854,96866677,21349901,46629642,46236505,1326246737,849940107,-55643395,1498040135,1705415,1049087787,-117230937,393543435,512447314,-678742829,-4597001,-1274957569,1528941890,990999130,-971147814,3128582,1554627,-1006968344,-1087369798,1040397393,11547857,10217898,800917238,-152930817,-13349114,1323950453,-1589738747,58065202,-1946558487,187865374,-1961069093,-1959608818,724739902,-2118093063,1983313663,-1143852102,921174017,1124395779,-2147283480,3128126,-396950155,-1956706884,922139343,-1753953749,894770827,567099572,-1053088910,-141877387,-1992886593,-1959615170,724739854,-201571890,1049186212,113717927,78499,1428065219,-851528651,1095713,1005068046,-1258311430,237096268,-166533089,199881707,-1589738751,58065458,-956740631]}],[{"sector":1,"length":512,"data":[20307462,113640939,-973064738,3428358,1963150568,-1170830371,77391922,850531883,850661003,-92155645,2071396606,850927243,43903058,-1240560806,-1170830542,1238248242,-399121729,-1101660071,244002619,1323840180,906190336,-896847182,-402472573,-1070464959,810924714,-386556952,712312288,-1962895384,1328723518,-1959838786,-1959611882,1228059662,850791937,371804737,108212924,851183303,-398327808,1541932004,-1023314941,-469797143,1252699141,-1195115550,1475018774,849428099,-385649150,113703060,-352242210,-569981435,113639477,-402574256,880083605,850927243,851064459,-1962797592,-1959610818,-1338852338,-1359807478,1049172597,1049178806,243872442,117387964,1374171832,-401509371,-864812298,-385870664,512489754,99300024,850927243,26011723,849548937,849690249,-1589738557,1400308274,848895627,141941515,849550987,848895625,849026699,141941515,848895627,849026697,848895627,-386403864,-864747182,512448339,-398249317,-141885114,-1559851169,-1522628302,-1492219086,1926114098,-201572086,1049186212,-373083481,1048836048,1996632737,-388287498,378077466,512438984,-620023143,512428661,-75287901,1124168705,851975739,-1950154378,187865878,-1961986606,11817171,758290080,-805109758,372982360,74855112,851973771,-629877957,2112422775,-1957473545,-873968678,-1522628352,-1558804174,-1075291342,1610058496,938212139,849428099,-385649150,512489304,-620023143,512429173,-343723357]},{"sector":2,"length":512,"data":[-1157400821,-1746403327,-1953008384,-1690399753,-81049806,-1269823113,848732160,-396822389,-2084372275,36872510,501810034,-972095497,-1726051534,1977289522,-1558279416,-68664526,6088950,378140555,914961059,24392357,-1489617981,-386304974,378077790,915092146,-2014825819,6940672,1287260852,-400437965,243925709,11875149,378263267,1321087666,52946995,860688010,1049297077,-370593115,1,0,0,0,849548939,849690251,24500795,185497539,-1173719845,-155254783,1960459062,-1492218897,-1328600270,-473953782,1118761479,-143271365,811711171,921706121,921831110,-1558299862,-972721102,540471814,-1007478808,-1962933825,724739854,1358197966,-1573742944,-1957154155,-397258281,1499135947,-1405754689,920715137,540809843,171709811,222040436,154930548,1588857204,-997834740,-1442714709,-606074308,184515968,2105543796,57937407,-1331032656,96905738,53078016,810924626,1525855208,-398258973,1048576832,1962947220,-1077720156,113651386,-402573859,-1073086246,440201443,113640821,-1996474915,858960398,1947024585,1346273287,24379444,-969504434,792444722,-2147438104,3428414,222038389,-1991376523,-1993161162,-1959611378,187865374,-2146142757,3530302,29033845,-1962546432,1127392030,-386565656,1049231066,1049178806,378090170,512438968,-75287909,-2391295,-1946238488,-1240585265,-469824462,-1307690234,-1023315150,851185289,-1959871840,-1959609330,187872830]},{"sector":3,"length":512,"data":[1974399743,-1949201430,-1307669537,-1145157326,-205506002,-1949660250,-1981516293,-1959609330,-1237415473,-1170306254,-1328600270,-1206482166,-544521678,-109793550,-1206482614,-1172403918,-1010814414,1017956659,-1408862954,-352218904,1947876356,1947024392,-348018172,1959332841,-114600184,1610567048,-583106365,74711349,-1006678648,67063178,-902052871,1465265780,66554705,-1577516046,-1037356377,104579331,460534441,849806983,-835991413,91748155,-117182205,-1527561731,1583307260,-1161583373,1307062297,-206312975,-1187819841,-4587265,1118481663,-102757060,860690056,1118625908,-92992196,-2134660529,3061566,238755444,91370971,-1057046478,1460396995,-2142242557,1969166909,-1070446335,-1023402776,447762775,125094155,58044146,-1952562785,731863545,-396386609,1975713793,56073244,-8302599,91502326,1946828160,21349898,1170620685,1598097922,-1202535523,-471334885,-1195156748,-605487076,-1899459340,-1195340072,-795999480,-83754820,-369106968,113701649,-1962856517,-1103800514,-1515901268,-1170099036,567096533,87895667,-1960217344,-1271573218,-1960719042,-1103800514,-1515901263,886422180,567099828,894910091,-1523667778,1840948389,-95688400,894910091,-1523666498,1371776165,-24422825,855592074,-65621779,-1359863325,1464933749,-402290096,92799001,1341623128,1604645697,1224860505,-11731362,1591602006,1354979679,1023467557,1968701504,2041091,1017926595,1023112201,1022850058,1542681632,1918975171]},{"sector":4,"length":512,"data":[2138717190,-1008786430,849428099,-385649663,1048834872,1962947225,809351926,-386931736,20775142,1024357376,91488256,-335607832,-16586527,1428065219,-851528651,886422049,567099828,-1070445388,116793805,1962881713,808565475,1357884392,1493097448,-730591940,1023452648,141819905,1962934333,81373,1347900099,-491040429,734497589,656835,848760458,-58658314,67269632,848536065,1599626073,-967785638,-13462522,976393632,1999803142,-1794718201,132841522,848496170,1244829090,1048584308,1996501653,1959959,848838272,-1610058241,-1784532330,-972690638,3314694,113640939,1476407956,-1169141053,501755977,1307070703,468211966,81152,3999604,-351702016,-1744386330,99352370,848824006,-1017489408,-1974251182,-1335511856,112931,1499144653,50010,0,0,-65536,65535,0,-65536,65535,0,-65536,-1,65535,0,0,-65536,65535,0,658688,0,1092878346,1397600512,1397703712,1919243808,1852795251,673199648,1866672451,1769109872,544499815,825768241,960049453,1766662196,1936683619,544499311,1886547779,1667845152,1702063717,1632444516,1769104756,757099617,1869762592,1953654128,1718558841,1667845408,1869836146,1092645990,1914727532,1952999273,1701978227,1987208563,1344300133,1460032083,-1047606989,783875891,-855592430,604408879,574523665,305051665,801964722]},{"sector":5,"length":512,"data":[288097932,287981193,-1307431240,-1943024380,-1995359226,-1206830530,112333358,109850573,1049170208,1843925278,470191117,440305937,939953169,910067985,226224145,288360076,288243337,-1307431240,-1943024376,-1995357178,-955170242,219241734,-1509505526,113714193,4450,291768007,2112356362,1178503434,198109201,290078345,-1995639064,-401519042,786956313,4319232,5302353,1599670386,1482381831,-998046485,1355020556,12066390,505531747,141696775,290862729,290981516,-1195157410,12272640,-841862400,31883297,-1207841152,567100417,1140897987,855638459,-2145268270,28836302,-1021194940,567095476,1964377661,418117635,1929380413,-17659,45810667,112640,-1308622663,-100682240,1364414659,1376147285,512354699,914887002,-370667169,1959332610,1978469155,3139589,-1175976981,1510961665,117509864,1959922271,96331779,-998046485,82573574,-111517945,1499269234,46433115,-998046485,1355020552,512447059,-75296422,-402295297,65732652,1929410536,-1151749105,567083008,-997989326,283900166,1962933123,1958820619,11593735,-116996989,1532625778,102679384,33129247,45357941,-854226394,-1031135455,503362024,124985094,22383142,-336059955,184726543,638153929,567088522,-210417337,1472405496,-1957493168,-1962467590,-65359655,58044146,-1957963477,1476877259,-1070349473,1333053707,-1273035234,-2083026112,678756857,1344217549,-402290138,509083738,108207878,1111536888]},{"sector":6,"length":512,"data":[647766477,1964653952,-339637502,-401682687,451674107,-1494724267,1508477951,41099725,-935654421,-398784652,-1962773000,-1021354559,-1157617736,28639236,-98109,-956952204,504132992,1564380423,178449,-1006698264,1053054726,-16051882,-2094655628,1962410045,87696912,975570802,24576325,-347650055,-1022926871,291505807,-1835803853,291780343,1681323923,167412497,-1031797386,-2147226825,1095905474,74825739,963959563,1963194755,175931405,-16419540,1091661110,-108846357,-2146601721,1965820540,1832320773,283853073,1963719043,175931403,-16419540,1091661110,-338545773,869413799,1614217152,-768359663,561301771,11543988,1965373478,1698178570,973370369,638481860,1407714698,1191277567,1967735367,-897100061,863300875,1648264013,729088017,67519626,1161438768,-352160511,1966095390,1959922436,-348912892,1597931751,141950737,1229537858,65752911,1476394938,183040299,1935237118,-1870664957,-2134209711,1946158716,1959332621,1195985158,1577184071,-922021653,-346160267,-425207,-919403915,1450508043,1359370069,1048824115,1962938722,121959981,-1006078705,1961362044,-166008062,1947010884,121959948,-167349234,1963722564,41731080,-352156952,24832000,552076267,1493660160,1583177479,-998046485,1048836362,1962938722,-385650171,113770260,4450,-1580059709,113709410,659812,1493079528,291932040,1090224963,-119012491,1976172033,168671470,291932041,-387431613,1398194945]},{"sector":7,"length":512,"data":[-919341517,1979711104,1186761480,-337671407,46593573,-1128003468,-1014230742,322771179,1024291328,142016551,288799940,116114316,286964932,-75250804,-2146011649,58064894,-1559434247,-4714142,114175,-336005581,16483084,1424491380,80118528,184972024,-352160311,-25125729,1378448641,1460031829,83933264,-12832819,-1962314408,84064472,32190413,1594192889,116087047,-402209661,1516044300,248447467,1543502824,1347928926,855637945,-139529536,1599621585,33260483,1048780149,1962873154,-49898,-1588589707,520032610,-346549950,1109327620,857402129,-98103,-1977219468,166396749,1966422062,1300901380,80184067,-131238919,427084043,1962933888,87762437,992871403,-352160507,91506953,-352008317,208861667,-117440896,118358645,41747238,-315488654,1192069670,291243718,-617364736,425088,-2016997003,757076326,-2017049789,1126175078,1560323816,-768353485,291245704,973685898,706639553,-152007999,1954547524,172263956,291932040,1090224963,2095580021,1976499712,142377196,940405760,141756492,-1979167702,139234001,611633419,252134646,1156975733,108269575,1191545382,-2007498261,1125213831,1967192963,4319235,-596260354,-2147007242,-167110539,1149899892,1720158218,-75283695,-402426560,-822214621,1157033077,141889287,268911862,216728180,141873674,291505807,-126498050,1426064104,1460031939,-880081122,1049484083,1525158246,1594192635,82532615,-116996989]},{"sector":8,"length":512,"data":[1156996547,309669895,1342540326,-62855103,-1977219469,-128974523,-1977217557,1958742533,-348043516,1442393077,-768385597,113754163,1053028,1157028659,611655687,-167409114,1963788100,1954588685,2133082883,291768007,1156972554,108334599,291768007,1424687114,268911862,-1960434059,121959941,-166759155,74744004,2145681475,291768007,1156972554,108334599,291768007,686489610,637897510,-167619189,1963788100,-2134444529,-2143091596,113737702,659812,235357430,113706613,659812,1074218230,1380985204,-1070450508,291903117,91431373,292357830,172263980,1482356875,738870470,-1946445336,172263623,-393214741,-619971698,-768408204,1431449010,508711363,1992358528,616729096,-351489009,115509762,-841512161,-92266719,309655562,1945845224,-1966568949,-1977496094,49019105,74580148,82532698,-117128061,369557443,738197771,1073742336,1392509696,1812016128,-318690048,872492544,-1476317439,-385798143,1426141441,-1526648318,738276098,1850283779,1920102243,544498533,542330692,1936876918,225341289,824514058,1919705376,2036621669,1936615712,1819042164,168649829,540091676,1702132066,1986076787,1634494817,543517794,1679847023,225145705,1951630346,1937011297,1818510624,539782761,1768693857,1865246062,1852139890,543450484,1954047348,1768187168,779251572,168626701,1229734981,1683693646,1702259058,1885035834,1567126625,1701603686,1701667182,1110399776,218762589,790634506]},{"sector":9,"length":512,"data":[538976322,1869506377,544433522,761556581,1714251375,543517801,1381253928,693775180,1634231072,1952670066,779317861,1162480141,544500068,1701734764,548538574,1823473683,593849961,1883310605,1684956528,548536333,1538261014,1852402723,1096643429,1131874829,276394095,404795904,1935388672,1953653108,1701734764,1700473949,1768711278,744318318,1768714100,744187246,1701669236,222518643,1818575882,761623653,371241472,1935388672,1953653108,1701734764,1697405789,1768711278,1146971502,1162086925,673211502,1702257011,1818846752,2632037,860338,168641968,1702063689,619634,1450162,1768709040,1230857582,1282345485,242512745,404795904,1935388672,1953653108,1701734764,1697405789,1768711278,1281189230,1867319821,1860982,1581234,1953717168,1819570785,1566928489,1852136236,1852402788,1949064549,1852402799,168643941,1734430803,-1308613531,-1342171104,1635021659,1768715378,1532847470,1684956460,1701734764,168644701,1953068369,1752442912,544698226,2036430689,1634231072,1936025454,538976297,-1979052719,1819305298,1063609185,354464256,1935388672,1953653108,1701734764,1697405789,1768711278,1532847470,1532124479,1952738415,1567914085,1381253979,1851403084,1702131557,224228472,1634030346,963142514,371241472,1935388672,1953653108,1701734764,1697405789,1768711278,1532847470,1951620415,225736805,1918133258,1718840929,2650725,1319090,1869896624,1701734764,1683706973]},{"sector":10,"length":512,"data":[1702259058,1885035834,1567126625,1701603686,1701667182,1918306829,644183145,388018688,593211392,1701734764,223829363,-1928917494,-2129040834,-1023163455,219547391,3407878,3276807,4915208,6619146,7667723,8847372,10027021,11141134,13303823,15138832,16515090,17170451,17629204,1226582529,1818326638,1679844457,1702259058,544370464,1701603686,1835101728,487198053,1701603654,1835101728,1970085989,1646294131,1886593125,1718182757,224683369,1766200074,1763730796,1163010163,1328366657,223956046,1766200586,1126196588,1952540018,544108393,1869771333,352980338,544173908,2037277037,1818846752,1864397669,225338736,1699877898,1696621665,1919906418,980314400,824510989,1126435341,1869508193,1684349044,773878889,541802818,1701603686,1701981485,1701667182,1818846752,520752485,1914728270,544042863,1679847017,1667592809,2037542772,1919903264,1818846752,403311973,1802725700,1819633184,1159736940,1937008996,1936682016,168636020,1953383693,1696627058,1919906418,1309280781,1713403749,224750697,1867385610,1868963956,224685685,-1928917494,-2128793026,-1023323199,219547391,3407893,3604502,4390935,5439512,6422553,8716314,11272219,11206684,11075613,11862046,13303839,13238304,13369377,1261326086,253771566,1701734732,1869575200,1852795936,319425895,543452741,1763731055,1953853550,1818846752,302648677,1919902273,1684349044,673215593]},{"sector":11,"length":512,"data":[692989785,1294344255,544502645,1667592307,544826985,1953719652,1952542313,544108393,1701734764,1836412448,225600866,1867393546,1852121204,1751610735,1869574688,1869881453,1919249696,1948280167,1696621928,1919513710,1768300645,168650092,17435906,1866665738,1852404846,673211765,692989785,1851070783,1701601889,544175136,1852404336,1701650548,1734439795,34213221,621097253,841300529,1851867939,544501614,1735550317,539828325,1701080931,1734438944,1768759397,1952542067,168650851,1049429774,-1048502646,29557034,-16706042,285213951,1702131781,1684366446,1920091424,622883439,-1928917455,-2095072962,46342337,-16706042,234882303,1936875856,1917132901,544370546,118370597,534593165,-1021460093,1465012563,-1956752810,56396548,-1979233141,2089486676,41191946,-402295669,1600058146,1935366490,124931,2013379,-1191181893,11665408,132710326,-504839181,-1677364239,-1645019672,-1308416061,-1342136832,196607,2621618,65456,16711680,1526726656,1044151389,574307627,771751936,542115527,-1993474048,773904910,551298697,-566851282,-1993409504,773866254,541394631,-953286656,2119686,113716736,8265,352765742,777870113,555157191,-953271172,1042356486,113716779,993861915,1448563281,1107296185,194242732,-1993410187,1579228686,244002390,-617406178,1965177984,181663234,-1959758373,540884228,540872564,1024095293,91503881,1963539773,1023723034,1459522374]},{"sector":12,"length":512,"data":[503727697,128250631,-1219600807,251604735,1179197726,1589739337,-1267335414,-396797345,326306579,1409286072,639470374,57872186,1526727352,771826665,542258825,-1923786925,773872158,542181110,-1404865248,1913365480,185067580,954742644,773354763,542181110,-402295520,652937935,1359410734,510935328,773581646,1027344264,-2144467339,18895118,194832451,783074675,-347928696,-1993453890,773867318,771753926,542514825,-1927443674,773872182,1949252736,1015033398,772305954,542181110,643069185,838944650,104410852,309534787,541303086,1128521937,-1960388605,8972319,-953259541,18892038,643885824,838944650,-523157276,-1977165821,200094223,1125086409,529213011,1526794472,1128481139,-953224478,52446470,641002240,838944650,-523157276,-1977165821,-773574137,-670875424,839879206,1959332845,642990863,1575493515,192109312,-220052669,1158072110,1560282144,-1959896225,773866254,773866913,541537931,1226214190,512372256,-1007148981,126559824,1962934953,117386757,-2144460733,427098172,1962934697,113716745,139333,-1336930581,-385895421,-346554144,23062531,-2144418984,136335630,1912617960,645934628,1358372945,542417198,19842603,1478513158,1412860718,1015033376,-402033664,-336068303,300677396,1158072110,1342179616,-4979792,1476433896,1364575224,139430438,-921965262,1871514996,74639369,250087539,-101260800,-1993472277,-132098002,650337625,32384,-347798668]},{"sector":13,"length":512,"data":[784549366,542183040,-3741680,-2144449934,-283094746,1419849296,784739104,542246401,915091032,-2144460716,645201980,-8617938,772371770,541394631,535494665,4162342,-148498060,1962934535,113716754,139333,-1763178005,233568256,1342893049,-4979792,1476396008,643286008,772046731,541671049,637896742,1342268808,542679342,38111526,1963015256,1435051530,1300833796,1012591366,637957378,-352037495,1946631248,1946696936,1963343076,1434985990,1010756356,772764932,1075860129,71665958,106794022,-1993987093,-1943665547,642778701,16926710,78644340,-165279253,1946288711,-402477051,643301697,268584950,283640692,784555777,555747014,-1960423424,1975520007,1381191704,113716823,598085,61931444,1610570728,-346530982,67152199,-953281932,2114822,106358784,1161724718,812976416,1947205801,113716754,8261,771998440,541408899,-1457949431,393480192,1158072110,-402653152,-2094136112,153109822,65733237,-1459583511,309624832,1158072110,-402653152,-2094137018,153109822,11103861,772961344,541394631,199753728,1048784385,1963532357,16820567,-953281164,2114822,114550784,772232936,541408899,-1455590135,309592576,1158072110,-402653152,-2094135623,153109822,-2136398219,772961280,541394631,736624640,1048784390,1963532357,536914191,-953283980,2114822,34465792,540966958,259326241,1161724718,125108256,1158072110,1476397344,777408707,-1073085302]},{"sector":14,"length":512,"data":[977017460,-2144465547,1962934652,80096774,-402003200,24315914,-538229178,1455642718,785418834,-135789430,168587783,-401836864,-2010251252,1174530820,1525214022,-2143501474,1631325299,2050770290,-551272073,106118635,272534871,83525665,1049429108,942547211,1343714325,118379089,-1031117388,-1174405189,-4587515,1512164863,-1959896999,-1909587619,1128465221,-685342676,-1017444513,243281488,780148817,542189184,76164861,175385404,125119804,1359904814,-398065120,-1017643006,1448235344,-768358093,76164691,1114947594,1912675560,-1947979207,-773664280,16640209,-628413326,-489569909,-253177391,-786468352,-388902430,376570087,-938224893,1912659688,-2083192051,-722992943,1174630912,-379864085,777715896,542181110,-150309886,-2083325999,-779943486,2005607936,76162566,125108284,-4980304,1174445801,1006930470,1180726272,1359410734,511016992,55327526,108476018,22297382,992358002,678889292,992361074,544671060,992359147,410780492,992347775,276562260,122436390,477891199,89406246,350945919,-32913789,783644104,541394631,28311558,1038876596,-1977220688,-1271469276,1088747017,-1977159677,992364036,108331852,22297382,-964435340,1976106501,113716973,467013,-4980304,-953283605,153109766,-1274826752,-56694529,1482250846,-164717373,35672326,-1013120395,-134057827,1019476419,1007186480,738490169,-104597456,1381191875,2139825751,92939782,74825738,1290534836]},{"sector":15,"length":512,"data":[1064633148,92939847,-453637708,653787968,95683978,54584566,92940024,-1960425657,3336237,-947711373,1976106499,113716977,532549,351010740,-10122714,-1960443216,772533013,541394631,-4980727,367526832,1532649468,1431356248,45241938,-402355666,1014105534,788387816,542181110,1007514632,639595837,97920,334197109,1359410734,242487328,175454780,8290342,1180464384,975592683,494207046,1383383050,334185798,4602406,776357237,642057354,1962952250,-347781574,116797095,1950359633,1207379471,1946165250,2122327559,578027520,268957478,1008235520,638154042,32384,250285429,125108284,8290342,-117214150,-1993472277,-132099018,1482512990,1381060803,-396995754,777912490,553846471,-953286656,2163974,113716736,8455,1912647144,61025816,1960512033,10545178,-1557238158,-620093179,-1813508748,778138112,169936803,777614811,551624331,1946352515,60894754,1977879073,784894535,169936289,-1975683612,378220264,-75292409,-2046659327,773450729,553850507,554017070,544597002,-1590769526,-469098233,-393603467,1935997571,1824686340,-1268884729,-402149121,283900624,-4956581,-974650448,113716986,598085,-1017620134,551630477,-12811474,267059828,240144926,939571231,567137931,-1021355432,-919383471,168069678,775713984,551566976,-2146470912,74777083,812923452,745811516,758910187,792471156,775692916,-420995468,-1273072899,179998976]}]],[[{"sector":1,"length":512,"data":[199423744,51475922,-1861324095,-1967264954,99350744,32241734,1522633721,1364247385,1448302162,788497896,17908982,-402426530,-953286399,2163462,113716736,8453,117884718,771751969,554239687,-970063872,18931718,1877475763,777876223,169935779,-396397349,1349713762,554017582,1383389962,1407713971,776041215,169936803,775321051,542115574,775648514,541537931,754941056,1153839221,-953274625,2117638,243281408,771891280,551161483,-601453778,915090976,-790028066,-15669002,-1557241998,-620093175,-1590798475,-469098237,-164737163,18894854,205260916,41239415,-164708302,69226758,205261940,201590900,406597490,-796251273,554017070,561374218,-1590759286,-469098233,-930474123,554279214,225829898,1583081610,145817524,-335982616,-1268884720,-402411265,-953222844,153109766,113651200,1509957856,1354979417,76164694,1975519814,1149906680,1008733438,1008301168,1008563297,1311012205,-29062610,1882988556,1631323764,334170740,1359904814,116065312,1343127598,-970063584,1577123396,1397801816,512437846,1065361490,845116712,-402158876,1299448273,74786876,1165149438,108341564,1030933758,574366580,-2010248075,-398244348,762445963,1877479403,772240130,1128662152,-2010249334,-347912700,76033732,21284398,509440,-398003317,-1993473693,-350206154,915090960,-970055594,-953286652,153109766,-1325419520,-396665340,-1017579404,777409360,542252683,574359434]},{"sector":2,"length":512,"data":[-398253707,309461039,21284398,1190365952,771826408,541537929,-1959915285,773871158,771753158,541394631,-4980727,1532889520,1492661224,126570691,1946231016,1965177892,586973197,-2010243467,1128482308,-806819605,772240129,1128662152,-2010249334,-347912700,99350997,312878,1354979576,-1959897513,773870142,-1073085302,1609044852,774141184,555747014,-970039807,-346095612,-970039745,643760132,67575,-953273739,35669254,1479142144,76164694,510967818,1946168808,23914507,1179058803,-370457017,541827630,312878,1049177671,1600004167,33597784,-1269823116,-402280193,-1017579636,512577875,163127573,121253376,-498924428,1532576248,777146563,-1073085302,602421364,774664705,973175939,-148500876,1946161159,2088775198,393543681,1631330316,2050756978,1613499767,-4927350,1038616240,772271095,541394631,1482293257,585673923,-401050624,376766547,1359410734,-311156704,1359410734,158613792,-116987058,1324876267,1405352131,1947024465,1946172461,1946827817,2105550373,510788098,-1977165005,-1014824099,964699652,856519680,160048841,20588099,-119405452,1532562748,777081795,541787846,645934624,1021255761,1010201632,1009939465,1009873964,-2146667232,125116476,977674416,639560640,16940416,-919398542,55413286,192203019,1124074427,1946237478,1022943751,-1017423584,541827630,1359410734,108331296,1359904814,-1069932512,781051883,-583327654,792468084,1358500725]},{"sector":3,"length":512,"data":[-12088786,1928976616,-402355707,-346490415,200013838,108343100,1359904814,-1007140832,777213470,541998723,1344763136,1465012510,-164428203,12115598,-1943941789,131795931,1499094877,695490591,1278642478,512306720,-1959911346,773868598,541990542,1946172547,1912879632,21248520,-336002185,-347716091,1583085803,503759647,113661527,855652277,-1076743223,-2118240522,-534868480,-220207051,1962934333,-225749484,87851046,233309557,-402396416,-346161116,526343908,1464910599,-1090118058,-987351243,-1405677514,57933884,-1426527318,1600003847,-2128166056,490155582,638940471,934624896,-1207601665,-907345919,-1257847258,300678967,775848230,1966549303,113649160,-335595594,1110360832,771771201,2368548,-1372782592,83931661,765953,13393,4097,-503313632,16777269,536870928,921698315,-1593769984,186648584,3600896,16777728,729089,13525,4096,-16777184,-1308607743,-1342175232,33685514,11665412,229638152,130816,77758,134217728,268566784,134263296,176128,262657,524466,-16771664,1,65536,-16771072,1,65536,-16769792,1,65536,-16769280,801701889,1,-16769024,802422785,2,16778496,803864578,-1308605439,-1342042880,-1308622578,-1341889536,14070,33947649,0,-117440512,16842806,335689475,3612727,66048,926168844,11665444,749731853,20395063]},{"sector":4,"length":512,"pattern":0,"data":[16943,738197504,20395063,1261359,9175218,37892016,121811456,-20480,0,23199744,50856448,1112671100,-1064507253,234885125,303903,787971,244039822,-108331002,-34108593,-1202674445,-883949516,-661863540,-1898410424,1032128,-1342172999,1202648063,-1014237301,-1077899704,78708751,-789068149,-628299565,74698795,-768878452,-268181293,-947135858,-388771593,-802438516,-1064565645,-522989013,-1030817789,1322289836,1187548077,-31145334,91598908,-341118036,1974615046,-1968901267,1946265794,20102833,512433934,872153092,-930370094,-1031072797,-1064385789,-2080863315,292880383,-501415642,16417267,-2129234704,-351272766,1086360796,-276578162,486614544,-339702200,-1950118942,-1962932162,50334262,33948144,1060096,-1064380274,-100663109,-410265970,784698363,1085550591,-1191181637,-896794602,482007694,-1205744383,567102719,1801675088,1713398885,543517801,1663071081,1970434671,554096,115160809,801247052,802697165,804138979]},{"sector":5,"length":512,"data":[1313818367,538976340,0,0,385941505,100663296,1291852800,16777254,1095189760,538976288,111904,0,13568,50331904,270930432,8,1,0,0,0,2113929216,-2122209919,-2122212931,126,2113929216,-9217,-6205,126,0,-16880640,947715838,16,0,2084048896,272137470,0,0,-415482856,404285415,60,0,-8504296,404258559,60,0,402653184,1588284,0,-256,-402653185,-1588285,-1,255,1715208192,1013334594,0,-256,-1715208193,-1013334595,-1,503316735,2016549390,-858993460,120,1006632960,1717986918,410916924,24,1056964608,808468275,-261083088,224,2130706432,1667465059,-412654749,49382,0,1020991512,417021159,24,-1065353216,-17239840,-1059000072,128,100794368,-29483506,101588542,2,402653184,404258364,406617624,0,1711276032,1717986918,1711302246,102,2130706432,2078006235,454761243,27,-964952064,-965986208,205024454,31942,0,0,-16843264,254,402653184,404258364,406617624,126,402653184,404258364,404232216,24,402653184,404232216,1014896664,24,0,202899456,1576190,0,0,1613758464,3170558,0]},{"sector":6,"length":512,"data":[0,-1073741824,16695488,0,0,1814560768,2649342,0,0,943198208,-16876420,0,0,2097085952,272119932,0,0,0,0,0,402653184,406600764,402659352,24,1717960704,9318,0,0,0,1828613228,1828613228,108,2081953792,2093007558,-964295162,1579132,0,214352384,-966774760,134,939524096,1983409260,-858993444,118,808452096,24624,0,0,201326592,808464408,405811248,12,805306368,202116120,403442700,48,0,1013317632,6700287,0,0,404226048,1579134,0,0,0,404226048,12312,0,0,254,0,0,0,402653184,24,0,201720320,-1067438056,128,939524096,-691616148,1824966358,56,402653184,404256824,404232216,126,2080374784,403441350,-960470992,254,2080374784,1007027910,-972683770,124,201326592,-865321956,202116350,30,-33554432,-54476608,-972683770,124,939524096,-54476704,-960051514,124,-33554432,201721542,808464408,48,2080374784,2093401798,-960051514,124,2080374784,2126956230,201721350,120,0,1579008,404226048,0,0,1579008,404226048,48]},{"sector":7,"length":512,"data":[0,806882310,202911840,6,0,8257536,32256,0,0,202911840,806882310,96,2080374784,403490502,402659352,24,0,-557398404,-1059266850,124,268435456,-960074696,-960051458,198,-67108864,2087085670,1717986918,252,1006632960,-1061109146,1724039360,60,-134217728,1717986924,1818650214,248,-33554432,2020106854,1717723240,254,-33554432,2020106854,1616928872,240,1006632960,-1061109146,1724303070,58,-973078528,-20527418,-960051514,198,1006632960,404232216,404232216,60,503316480,202116108,-858993652,120,-436207616,2020370022,1717988472,230,-268435456,1616928864,1717723232,254,-973078528,-687931666,-960051514,198,-973078528,-553715994,-960051506,198,2080374784,-960051514,-960051514,124,-67108864,2087085670,1616928864,240,2080374784,-960051514,-556349754,920700,-67108864,2087085670,1717986924,230,2080374784,945866438,-960100852,124,2113929216,404249214,404232216,60,-973078528,-960051514,-960051514,124,-973078528,-960051514,946652870,16,-973078528,-691616058,-285288746,108,-973078528,947678406,-965968840,198,1711276032,1013343846,404232216,60,-33554432,403474118,-960339920,254,1006632960,808464432,808464432,60]},{"sector":8,"length":512,"data":[0,1893777536,101588024,2,1006632960,202116108,202116108,60,1815613440,198,0,0,0,0,0,16711680,405798912,12,0,0,0,209190912,-858993540,118,-536870912,1819828320,1717986918,124,0,-964952064,-960446272,124,469762048,1815874572,-858993460,118,0,-964952064,-960446210,124,469762048,2016424502,808464432,120,0,-864681984,-858993460,2026638460,-536870912,1986814048,1717986918,230,402653184,406323224,404232216,60,100663296,101580806,101058054,1013343750,-536870912,1818648672,1718384760,230,939524096,404232216,404232216,60,0,-18087936,-690563370,198,0,1725693952,1717986918,102,0,-964952064,-960051514,124,0,1725693952,1717986918,-262119300,0,-864681984,-858993460,504106108,0,1994129408,1616928870,240,0,-964952064,-972277664,124,268435456,821833776,909127728,28,0,-859045888,-858993460,118,0,-960102400,1824966342,56,0,-960102400,-19474730,108,0,1824915456,1815623736,198,0,-960102400,-960051514,-133429634,0,-855769088,-966774760,254,234881024,1880627224,404232216,14]},{"sector":9,"length":512,"data":[402653184,404232216,404232216,24,1879048192,236460056,404232216,112,-596246528,0,0,0,0,1815613440,-20527418,0,1006632960,-1061109146,1724039360,7346236,-872415232,-859045888,-858993460,118,403439616,-964952016,-960446210,124,940572672,209191020,-858993540,118,-872415232,209190912,-858993540,118,811597824,209190936,-858993540,118,1815609344,209190968,-858993540,118,0,-964952064,-960446272,7346300,940572672,-964951956,-960446210,124,-973078528,-964952064,-960446210,124,811597824,-964952040,-960446210,124,1711276032,406323200,404232216,60,1008205824,406323302,404232216,60,811597824,406323224,404232216,60,12976128,-965986288,-960037178,198,946616320,-965986288,-960051458,198,1575936,1751279358,1717725304,254,0,921436160,-656900554,110,1040187392,-20132756,-858993460,206,940572672,-964951956,-960051514,124,-973078528,-964952064,-960051514,124,811597824,-964952040,-960051514,124,2016411648,-859045684,-858993460,118,811597824,-859045864,-858993460,118,-973078528,-960102400,-960051514,2014054014,12976128,-960051588,-960051514,124,12976128,-960051514,-960051514,124,404226048,-1061108100,410830528,24]},{"sector":10,"length":512,"data":[1815609344,1626366052,-429891488,252,1711276032,2115517542,404258328,24,-856162304,-859506484,-858993442,198,453902336,2115508248,-669509608,112,806879232,209191008,-858993540,118,403439616,406323248,404232216,60,806879232,-964951968,-960051514,124,806879232,-859045792,-858993460,118,1979711488,1725694172,1717986918,102,14448128,-17373498,-960049442,198,1006632960,4090988,126,0,939524096,3697772,124,0,805306368,808452144,-960053152,124,0,-33554432,-1061109568,0,0,-33554432,101058054,0,-530579456,409757282,-2032377808,4069388,-530579456,409757282,-1697749456,394815,402653184,404226072,1010580504,24,0,1815478272,3566808,0,0,1826095104,14183478,0,289673472,289673540,289673540,289673540,1437226308,1437226410,1437226410,1437226410,-579347030,-579347081,-579347081,-579347081,404232311,404232216,404232216,404232216,404232216,404232216,404232440,404232216,404232216,418912280,404232440,404232216,909522456,909522486,909522678,909522486,54,0,909522686,909522486,54,418906112,404232440,404232216,909522456,116799030,909522678,909522486,909522486,909522486,909522486,909522486,54,117309440,909522678,909522486]},{"sector":11,"length":512,"pattern":-1,"data":[909522486,116799030,254,0,909522432,909522486,254,0,404232192,418912280,248,0,0,0,404232440,404232216,404232216,404232216,31,0,404232192,404232216,255,0,0,0,404232447,404232216,404232216,404232216,404232223,404232216,24,0,255,0,404232192,404232216,404232447,404232216,404232216,404690968,404232223,404232216,909522456,909522486,909522487,909522486,909522486,808924726,63,0,0,809435136,909522487,909522486,909522486,16201270,255,0,0,16711680,909522679,909522486,909522486,808924726,909522487,909522486,54,16711680,255,0,909522432,16201270,909522679,909522486,404232246,16717848,255,0,909522432,909522486,255,0,0,16711680,404232447,404232216,24,0,909522687,909522486,909522486,909522486,63,0,404232192,404690968,31,0,0,404684800,404232223,404232216,24,0,909522495,909522486,909522486,909522486,909522687,909522486,404232246,419371032,404232447,404232216,404232216,404232216,248,0,0,0,404232223,404232216,-232]},{"sector":12,"length":512,"data":[255,0,-1,-1,-252645121,-252645136,-252645136,-252645136,252645360,252645135,252645135,252645135,-241,-1,0,0,0,-596246528,-589768488,118,2013265920,-657666868,-960051508,204,-33554432,-1061108026,-1061109568,192,0,1828585472,1819044972,108,-33554432,405823686,-966774760,254,0,-662831104,-656877352,112,0,1717960704,1717986918,-1067425668,0,417101312,404232216,24,2113929216,1717976088,406611558,126,939524096,-20527508,1824966342,56,939524096,-960051604,1819044972,238,503316480,1040980016,1717986918,60,0,-612499456,8313819,0,0,-612497917,1618932699,192,469762048,2086690864,811622496,28,0,-960051588,-960051514,198,0,65024,-33554178,0,0,2115508224,6168,126,0,101455920,3151884,126,0,1613764620,792624,126,234881024,404232987,404232216,404232216,404232216,404232216,-656926696,28888,0,1572864,1572990,0,0,-596246528,14448128,0,1815609344,14444,0,0,0,0,6168,0,0,0,24,0,202309632,202116108,1013738732,28]},{"sector":13,"length":512,"data":[913047552,909522486,0,0,1715208192,2117212172,0,0,0,2122219008,2122219134,0,0,0,0,0,527872,65536,0,0,0,0,-2119859842,-2120630911,126,-8519680,-1006632997,8323047,0,-16880640,947715838,16,268435456,2097052728,4152,0,-415482856,404285415,60,1008205824,2130706302,3938328,0,402653184,1588284,-16777216,-1,-1010571265,-25,255,1715208192,1013334594,-16777216,-1,-1111647805,-15463,255,840568350,-858993544,120,1715208192,406611558,1579134,0,809448255,-261083088,224,1669267456,1667457919,-1058609305,0,1020991512,417021159,24,-1065353216,-117507872,8437984,0,1041106434,101596926,2,1008205824,404232318,1588350,0,1717986918,1711302246,102,-612433920,461102043,1776411,2080374784,1815634118,946652870,8177164,0,0,16711422,0,410926104,1014896664,32280,1008205824,404232318,1579032,0,404232216,1014896664,24,0,217975832,24,0,1613758464,3170558,0,0,-1061109760,254,0,1814560768,2649342,0,268435456,2088515640,65278,0,2097085952]},{"sector":14,"length":512,"data":[272119932,0,0,0,0,0,1010580504,402659352,24,610690662,0,0,0,1828613228,1828613228,108,-964945896,108839106,410830470,24,-960364544,1714427916,198,1815609344,-596232084,7785676,404226048,12312,0,0,403439616,808464432,792624,0,202119216,403442700,48,0,1023360102,102,0,404226048,1579134,0,0,0,806885400,0,0,254,0,0,0,1579008,0,403441154,-2134876112,0,1815609344,-959002938,3697862,0,410531864,404232216,126,-964952064,806882310,16696928,0,101107324,-972683716,124,470548480,-20157380,1969164,0,-1061109506,-972683524,124,1614282752,-956514112,8177350,0,201770750,808464408,48,-964952064,-964901178,8177350,0,-960051588,201721470,120,402653184,24,6168,0,1579008,404226048,48,403439616,1623220272,792624,0,2113929216,8257536,0,811597824,201722904,6303768,0,214353532,402659352,24,-964952064,-555819322,8175836,0,-965986288,-960037178,198,1727791104,1719428710,16541286,0,-1061001668,1724039360,60]},{"sector":15,"length":512,"data":[1828192256,1717986918,16280678,0,1751279358,1717725304,254,1727922176,1752721506,15753312,0,-1061001668,1724309184,58,-960102400,-956381498,13027014,0,404232252,404232216,60,203292672,202116108,7916748,0,1819043558,1718381688,230,1626341376,1616928864,16672354,0,-687935802,-960051514,198,-423231488,-824246538,13027014,0,-960051588,-960051514,124,1727791104,1618765414,15753312,0,-960051588,-556349754,3708,1727791104,1820092006,15099494,0,1623639676,-960099272,124,2122186752,404232282,3938328,0,-960051514,-960051514,124,-960102400,-960051514,1063020,0,-960051514,1828640470,108,-960102400,2084076742,13027014,0,1717986918,404232252,60,-956432384,1613764748,16697026,0,808464444,808464432,60,-1065353216,473460960,132622,0,202116156,202116108,268435516,13003832,0,0,0,0,0,16711680,792624,0,0,0,2013265920,-859014132,118,1625292800,1718384736,8152678,0,2080374784,-960446266,124,203161600,-865321972,7785676,0,2080374784,-960430394,124,907804672,813445170,7876656,0,1979711488,2093796556,7916556,1625292800,1719037024]}],[{"sector":1,"length":512,"data":[15099494,0,939530264,404232216,60,101056512,101060096,1717962246,60,1717592288,1718384748,230,406323200,404232216,3938328,0,-335544320,-690563330,214,0,1718017024,6710886,0,2080374784,-960051514,124,0,1718017024,1616936038,240,1979711488,2093796556,1969164,0,1719065600,15753312,0,2080374784,-971214650,124,806354944,808516656,1848880,0,-872415232,-858993460,118,0,-960051712,1063020,0,-973078528,-19474746,108,0,946652672,13003832,0,-973078528,2126956230,7867398,0,416087552,16672304,0,404232206,404232304,14,404226048,404232216,1579032,0,404232304,404232206,112,56438,0,0,0,940572672,-20527508,0,1715208192,-1061109566,205285058,120,-872415028,-858993460,118,806882304,-20546560,8177344,268435456,2013293624,-859014132,118,12976128,2081191936,7785676,1610612736,2013272112,-859014132,118,946616320,2081191936,7785676,0,2080374784,-960446266,7867516,1815613440,-20546560,8177344,0,2080374982,-960430394,124,405823488,-20546560,8177344,0,939524198,404232216,60,1715214336,404240384,3938328,1610612736]},{"sector":2,"length":512,"data":[939530288,404232216,60,940572870,-20527508,13027014,946616320,-965986288,-960037178,201326790,1727922200,1752721506,16672354,0,-335544320,-656640458,110,1816002560,-855716660,13552844,268435456,2080402488,-960051514,124,12976128,-960070656,8177350,1610612736,2080380976,-960051514,124,-864538624,-858993664,7785676,1610612736,-872409040,-858993460,118,12976128,-960051712,201752262,12976248,-960051588,-960051514,124,-960102202,-960051514,8177350,402653184,-1060733928,410830528,24,1684813824,1616965728,16574048,0,406611558,410916990,24,1718025216,1868980860,15951462,234881024,404232219,404232318,28888,806882304,2081191936,7785676,201326592,939536408,404232216,60,806882304,-960070656,8177350,201326592,-872402920,-858993460,118,-596246528,1718017024,6710886,14448128,-17373498,-960049442,198,1819032576,8257598,0,939524096,3697772,124,0,808452096,1613770752,8177350,0,0,-1061109506,0,0,117309440,1542,1610612736,1818649568,-1016188904,2034694,1675649024,907701350,104847982,6,402659352,1010580504,24,0,1826122806,54,0,1826095104,14183478,285212672,289673540,289673540,289673540,1437226308,1437226410,1437226410]},{"sector":3,"length":512,"data":[-576039510,-579347081,-579347081,-579347081,404232311,404232216,404232216,404232216,404232216,418912280,404232216,404232216,418912280,404232440,907548696,909522486,922105398,909522486,54,0,909522686,3552822,0,418912504,404232216,909522456,116799030,909522678,909522486,909522486,909522486,909522486,54,117309440,909522678,909522486,909522486,16647926,0,909522432,909522486,254,402653184,404232216,16259320,0,0,0,404232440,404232216,404232216,2037784,0,404232192,404232216,255,0,0,419364864,404232216,404232216,404232216,404232223,1579032,0,16711680,0,404232192,404232216,404232447,404232216,404232216,404690975,404232216,909522456,909522486,909522487,909522486,909522486,4141111,0,0,809435136,909522487,909522486,909522486,16711927,0,0,16711680,909522679,909522486,909522486,909586487,909522486,54,16711680,255,905969664,909522486,922157303,909522486,404232246,16717848,255,905969664,909522486,16725558,0,0,16711680,404232447,1579032,0,922681344,909522486,909522486,909522486,63,402653184,404232216,2037791,0,0,404684800,404232223,1579032,0]},{"sector":4,"length":512,"data":[910098432,909522486,909522486,909522486,909522687,406206006,404232216,419371263,404232216,404232216,404232216,248,0,0,404684800,404232216,-232,-1,-1,16777215,0,-65536,-1,-252645121,-252645136,-252645136,267448560,252645135,252645135,252645135,-241,-1,0,0,0,-656640512,7789784,0,-858993544,-960049960,204,-956432384,-1061109562,12632256,0,-33554432,1819044972,108,-956432384,806891616,16696928,0,2113929216,-656877352,112,0,1717986816,1618765414,192,-596246528,404232216,24,410910720,1717986876,8263740,0,-960074696,1824966398,56,1815609344,1824966342,15625324,0,202911774,1717986878,60,0,-606372352,126,0,-612497917,1618932699,192,807272448,1618894944,1978464,0,-960070656,-960051514,198,-33554432,16646144,65024,0,2115508224,6168,126,405798912,403441164,8257584,0,1613764620,792624,126,454757888,404232216,404232216,404232216,404232216,1893259288,0,0,8257560,24,0,-596246528,14448128,0,946629688,0,0,0,0,6168,0,0,1572864,0]},{"sector":5,"length":512,"data":[202309632,202116108,1013771276,28,909522540,13878,0,1715208192,2117212172,0,0,0,2122219134,32382,0,0,0,134217728,8,1,0,-1518240256,-2120630911,-604012930,-1588225,-16880514,272137470,2084048896,272137470,947664896,282525438,2084048952,276627198,402653240,1588284,-402653440,-1588285,1715208447,1013334594,-1715208448,-1013334595,252121087,-858993539,1717976184,2115517542,1060323096,-261083088,2137227232,-429431965,1020991680,-616765465,-119504872,-2132739842,1041105408,34488062,2117867520,1014896664,1717986840,1711302246,-606372096,454761339,1013005824,-2042861978,124,2122219008,2117867520,406617624,2117867775,404232216,404232192,406617624,202899456,1576190,1613758464,3170558,-1073741824,16695488,1713635328,2385663,1008205824,16777086,-65536,1588350,0,0,1010571264,402659352,610690560,0,-26448896,1819082348,1614682112,410781244,-859439104,-966381544,946616320,1993137270,806885376,0,806882304,202911792,202911744,806882316,1013317632,6700287,404226048,1579134,0,404226048,48,126,0,404226048,403441152,-2134876112,-965986304,946652886,406329344,2115508248,113671168,-26857444,113671168,2093352508,1815878656,504168140,-1061093888,2093352700,-1067436032]},{"sector":6,"length":512,"data":[2093401852,214367744,808464408,-960070656,2093401724,-960070656,2014054014,404226048,404226048,404226048,404226048,403441200,101455920,2113929216,8257536,405823488,1613764620,214334464,402659352,-557417472,2025905886,-965986304,-960051458,1718025216,-60397956,-1067041792,1013366976,1718417408,-127113626,1751318016,-27105160,1751318016,-262117256,-1067041792,979816128,-960051712,-960051458,404241408,1008211992,202120704,2026687500,1818682880,-429495176,1616965632,-26844576,-17906176,-960047362,-152648192,-960049442,-960070656,2093401798,1718025216,-262119300,-960070656,2093926086,1718025230,-429495172,812006400,1013320728,1518239232,1008211992,-960051712,2093401798,-960051712,946652870,-960051712,1828640470,1824966144,-960074696,1717986816,1008212028,-1933115904,-26856936,808467456,1009791024,811646976,33950744,202128384,1007422476,1815613440,198,0,0,202911999,0,2013265920,1993112588,2086723584,-597268890,2080374784,2093400262,2081168384,1993133260,2080374784,2093022918,1617312768,-262119176,1979711488,209505484,1818288376,-429496714,939530240,1008211992,100664832,1717962246,1717624892,-429098900,404240384,1008211992,-335544320,-690563330,-603979776,1717986918,2080374784,2093401798,-603979776,1618765414,1979711728,209505484,-603979746,-262119306,2113929216,-66683712,-63950848,473313328,-872415232,1993133260,-973078528]},{"sector":7,"length":512,"data":[946652870,-973078528,1828640470,-973078528,-965986196,-973078528,108971718,2113929468,2117212236,404229632,236460144,404232192,404232216,404254720,1880627214,14448128,0,940572672,-20527508,-1060733952,209503936,-872362888,1993133260,2081950720,2093022918,2021817344,1993112588,2013316608,1993112588,2014851072,1993112588,2016423936,1993112588,2113929216,209633472,2088926264,2093022918,2080425472,2093022918,2081959936,2093022918,939550208,1008211992,948075520,1008211992,1585152,1008212024,1815660032,-960037178,2087467008,-960037178,-30402560,-20907840,2113929216,2128117272,-865321472,-825438978,2088926208,2093401798,2080425472,2093401798,2081959936,2093401798,8681472,1993133260,-869244928,1993133260,-973027840,108971718,1815660284,946652870,-973027840,2093401798,2115508224,410960064,1684813848,-60399376,1013343744,410916990,-858982376,-959461638,404426439,1893210172,2016417792,1993112588,1575936,1008212024,2081950720,2093401798,-869263360,1993133260,14448128,1717987036,14448128,-824248602,1819032576,8257598,1819031552,8126520,402659328,1046687768,0,12632318,0,395006,1827037952,-865717378,1827037967,-546687366,402659334,406600728,1714618368,3368652,1724645376,13395507,579346944,579347080,1437226376,1437226410,2011002794,2011002845,404232413,404232216,404232216,404289560,-132638696,404289560,909522456]},{"sector":8,"length":512,"data":[909571638,54,909573632,-134217674,404289560,-164219368,909571590,909522486,909522486,-33554378,909571590,-164219338,65030,909522432,65078,-132638720,63512,0,404289536,404232216,7960,404232192,65304,0,404291328,404232216,404234008,24,65280,404232192,404291352,521672728,404234008,909522456,909522742,926299702,16176,1056964608,909522736,-147442122,65280,-16777216,909571840,926299702,909522736,-16777162,65280,-147442176,909571840,-15198154,65280,909522432,65334,-16777216,404291328,24,909573888,909522486,16182,521672704,7960,520093696,404234008,24,909524736,909522486,909573942,-15198154,404291352,404232216,63512,0,404233984,-232,-1,255,-256,-252645121,-252645136,252645360,252645135,-241,255,1979711488,1994180828,-859015168,-859386664,-1060700672,-1061109568,-33554432,1819044972,1623653888,-20553680,2113929216,1893259480,1711276032,2087085670,-596246336,404232216,1008238080,406611558,-965986178,946652926,-965986304,-294884154,202903040,1013343806,2113929216,8313819,2114717184,1618926555,1613766336,506486910,-964952064,-960051514,16646144,16646398,2115508224,2113935384,202911744,2113941528,806882304,2113932312,454757888,404232216,404232216,-656926696,1572976]},{"sector":9,"length":512,"data":[1572990,-596246528,14448128,1819031552,56,0,6168,0,24,202116864,1013771276,909536284,13878,403470336,31792,1006632960,3947580,0,0,-2130699264,16777292,1095189760,538976288,217632,0,2517248,50331904,270930432,8,1,0,0,0,2113929216,-2122209919,-2122212931,126,2113929216,-9217,-6205,126,0,-16880640,947715838,16,0,2084048896,272137470,0,0,-415482856,404285415,60,0,-8504296,404258559,60,0,402653184,1588284,0,-256,-402653185,-1588285,-1,255,1715208192,1013334594,0,-256,-1715208193,-1013334595,-1,503316735,2016549390,-858993460,120,1006632960,1717986918,410916924,24,1056964608,808468275,-261083088,224,2130706432,1667465059,-412654749,49382,0,1020991512,417021159,24,-1065353216,-17239840,-1059000072,128,100794368,-29483506,101588542,2,402653184,404258364,406617624,0,1711276032,1717986918,1711302246,102,2130706432,2078006235,454761243,27,-964952064,-965986208,205024454,31942,0,0,-16843264,254,402653184,404258364,406617624,126,402653184,404258364,404232216]},{"sector":10,"length":512,"data":[24,402653184,404232216,1014896664,24,0,202899456,1576190,0,0,1613758464,3170558,0,0,-1073741824,16695488,0,0,1814560768,2649342,0,0,943198208,-16876420,0,0,2097085952,272119932,0,0,0,0,0,402653184,406600764,402659352,24,1717960704,9318,0,0,0,1828613228,1828613228,108,2081953792,2093007558,-964295162,1579132,0,214352384,-966774760,134,939524096,1983409260,-858993444,118,808452096,24624,0,0,201326592,808464408,405811248,12,805306368,202116120,403442700,48,0,1013317632,6700287,0,0,404226048,1579134,0,0,0,404226048,12312,0,0,254,0,0,0,402653184,24,0,201720320,-1067438056,128,939524096,-691616148,1824966358,56,402653184,404256824,404232216,126,2080374784,403441350,-960470992,254,2080374784,1007027910,-972683770,124,201326592,-865321956,202116350,30,-33554432,-54476608,-972683770,124,939524096,-54476704,-960051514,124,-33554432,201721542,808464408,48,2080374784,2093401798,-960051514]},{"sector":11,"length":512,"data":[124,2080374784,2126956230,201721350,120,0,1579008,404226048,0,0,1579008,404226048,48,0,806882310,202911840,6,0,8257536,32256,0,0,202911840,806882310,96,2080374784,403490502,402659352,24,0,-557398404,-1059266850,124,268435456,-960074696,-960051458,198,-67108864,2087085670,1717986918,252,1006632960,-1061109146,1724039360,60,-134217728,1717986924,1818650214,248,-33554432,2020106854,1717723240,254,-33554432,2020106854,1616928872,240,1006632960,-1061109146,1724303070,58,-973078528,-20527418,-960051514,198,1006632960,404232216,404232216,60,503316480,202116108,-858993652,120,-436207616,2020370022,1717988472,230,-268435456,1616928864,1717723232,254,-973078528,-687931666,-960051514,198,-973078528,-553715994,-960051506,198,2080374784,-960051514,-960051514,124,-67108864,2087085670,1616928864,240,2080374784,-960051514,-556349754,920700,-67108864,2087085670,1717986924,230,2080374784,945866438,-960100852,124,2113929216,404249214,404232216,60,-973078528,-960051514,-960051514,124,-973078528,-960051514,946652870,16,-973078528,-691616058,-285288746,108,-973078528,947678406,-965968840]},{"sector":12,"length":512,"data":[198,1711276032,1013343846,404232216,60,-33554432,403474118,-960339920,254,1006632960,808464432,808464432,60,0,1893777536,101588024,2,1006632960,202116108,202116108,60,1815613440,198,0,0,0,0,0,16711680,405798912,12,0,0,0,209190912,-858993540,118,-536870912,1819828320,1717986918,124,0,-964952064,-960446272,124,469762048,1815874572,-858993460,118,0,-964952064,-960446210,124,469762048,2016424502,808464432,120,0,-864681984,-858993460,2026638460,-536870912,1986814048,1717986918,230,402653184,406323224,404232216,60,100663296,101580806,101058054,1013343750,-536870912,1818648672,1718384760,230,939524096,404232216,404232216,60,0,-18087936,-690563370,198,0,1725693952,1717986918,102,0,-964952064,-960051514,124,0,1725693952,1717986918,-262119300,0,-864681984,-858993460,504106108,0,1994129408,1616928870,240,0,-964952064,-972277664,124,268435456,821833776,909127728,28,0,-859045888,-858993460,118,0,-960102400,1824966342,56,0,-960102400,-19474730,108,0,1824915456,1815623736]},{"sector":13,"length":512,"data":[198,0,-960102400,-960051514,-133429634,0,-855769088,-966774760,254,234881024,1880627224,404232216,14,402653184,404232216,404232216,24,1879048192,236460056,404232216,112,-596246528,0,0,0,0,1815613440,-20527418,0,1006632960,-1061109146,1724039360,7346236,-872415232,-859045888,-858993460,118,403439616,-964952016,-960446210,124,940572672,209191020,-858993540,118,-872415232,209190912,-858993540,118,811597824,209190936,-858993540,118,1815609344,209190968,-858993540,118,0,-964952064,-960446272,7346300,940572672,-964951956,-960446210,124,-973078528,-964952064,-960446210,124,811597824,-964952040,-960446210,124,1711276032,406323200,404232216,60,1008205824,406323302,404232216,60,811597824,406323224,404232216,60,12976128,-965986288,-960037178,198,946616320,-965986288,-960037178,198,1575936,1751279358,1717725304,254,0,921436160,-656900554,110,1040187392,-20132756,-858993460,206,940572672,-964951956,-960051514,124,-973078528,-964952064,-960051514,124,811597824,-964952040,-960051514,124,2016411648,-859045684,-858993460,118,811597824,-859045864,-858993460,118,-973078528,-960102400,-960051514]},{"sector":14,"length":512,"data":[2014054014,12976128,-960051588,-960051514,124,12976128,-960051514,-960051514,124,0,-830734336,-957942050,124,1815609344,1626366052,-429891488,252,2080636928,-690565426,-421079338,16508,0,1824915456,-965986248,0,453902336,2115508248,-669509608,112,806879232,209191008,-858993540,118,403439616,406323248,404232216,60,806879232,-964951968,-960051514,124,806879232,-859045792,-858993460,118,1979711488,1725694172,1717986918,102,14448128,-17373498,-960049442,198,1006632960,4090988,126,0,939524096,3697772,124,0,805306368,808452144,-960053152,124,2080374784,-1297436030,2088938154,0,0,-33554432,101058054,0,-530579456,409757282,-2032377808,4069388,-530579456,409757282,-1697749456,394815,402653184,404226072,1010580504,24,0,1815478272,3566808,0,0,1826095104,14183478,0,289673472,289673540,289673540,289673540,1437226308,1437226410,1437226410,1437226410,-579347030,-579347081,-579347081,-579347081,404232311,404232216,404232216,404232216,404232216,404232216,404232440,404232216,281042968,-960074696,-960051458,198,281443328,-960074696,-960051458,198,268831744,-960074696,-960051458,198,2080374784,-1566401918,2088934050]},{"sector":15,"length":512,"data":[0,909522432,116799030,909522678,909522486,909522486,909522486,909522486,909522486,54,117309440,909522678,909522486,909522486,116799030,254,0,402653184,-1060733928,410830528,24,0,406611558,410916990,24,0,0,404232440,404232216,404232216,404232216,31,0,404232192,404232216,255,0,0,0,404232447,404232216,404232216,404232216,404232223,404232216,24,0,255,0,404232192,404232216,404232447,404232216,1979711512,209191132,-858993540,118,14448128,-960074696,-960051458,198,909522432,808924726,63,0,0,809435136,909522487,909522486,909522486,16201270,255,0,0,16711680,909522679,909522486,909522486,808924726,909522487,909522486,54,16711680,255,0,909522432,16201270,909522679,909522486,54,-964901376,2093401798,198,872415232,1040591896,1717986918,60,-134217728,-161061268,1818650214,248,7092224,1751279358,1717725304,254,12976128,1751279358,1717725304,254,1585152,1751279358,1717725304,254,0,406323200,404232216,60,1575936,404232252,404232216,60,6700032,404232252,404232216,60,6684672,404232252,404232216]}]],[[{"sector":1,"length":512,"data":[60,404232192,404232216,248,0,0,0,404232223,404232216,-232,-1,-1,-1,255,0,-1,-1,404226303,1579032,404232192,6168,1585152,404232252,404232216,60,-256,-1,0,0,3151872,-960051588,-960051514,124,2013265920,-657666868,-960051508,204,7092224,-960051588,-960051514,124,1585152,-960051588,-960051514,124,1979711488,-964951844,-960051514,124,14448128,-960051588,-960051514,124,0,1717960704,1717986918,-1067425668,-536870912,1719427168,1717986918,-262119300,-268435456,1717992544,1618765414,240,3151872,-960051514,-960051514,124,7092224,-960051514,-960051514,124,1585152,-960051514,-960051514,124,403439616,-960102352,-960051514,-133429634,1575936,1717986918,404232252,60,16711680,0,0,0,403439616,48,0,0,0,0,254,0,0,2115508224,6168,126,0,0,0,-16711936,819986432,418133602,-1697749456,394815,2130706432,2078006235,454761243,27,-964952064,-965986208,205024454,31942,0,1572864,1572990,0,0,0,0,7867416,1815609344,14444,0]},{"sector":2,"length":512,"data":[0,12976128,0,0,0,0,0,24,0,941096960,1008211992,0,0,108789760,2080769596,0,0,1715208192,2117212172,0,0,0,2122219008,2122219134,0,0,0,0,0,527872,65536,0,0,0,0,-2119859842,-2120630911,126,-8519680,-1006632997,8323047,0,-16880640,947715838,16,268435456,2097052728,4152,0,-415482856,404285415,60,1008205824,2130706302,3938328,0,402653184,1588284,-16777216,-1,-1010571265,-25,255,1715208192,1013334594,-16777216,-1,-1111647805,-15463,255,840568350,-858993544,120,1715208192,406611558,1579134,0,809448255,-261083088,224,1669267456,1667457919,-1058609305,0,1020991512,417021159,24,-1065353216,-117507872,8437984,0,1041106434,101596926,2,1008205824,404232318,1588350,0,1717986918,1711302246,102,-612433920,461102043,1776411,2080374784,1815634118,946652870,8177164,0,0,16711422,0,410926104,1014896664,32280,1008205824,404232318,1579032,0,404232216,1014896664,24,0,217975832,24,0,1613758464,3170558]},{"sector":3,"length":512,"data":[0,0,-1061109760,254,0,1814560768,2649342,0,268435456,2088515640,65278,0,2097085952,272119932,0,0,0,0,0,1010580504,402659352,24,610690662,0,0,0,1828613228,1828613228,108,-964945896,108839106,410830470,24,-960364544,1714427916,198,1815609344,-596232084,7785676,404226048,12312,0,0,403439616,808464432,792624,0,202119216,403442700,48,0,1023360102,102,0,404226048,1579134,0,0,0,806885400,0,0,254,0,0,0,1579008,0,403441154,-2134876112,0,1815609344,-959002938,3697862,0,410531864,404232216,126,-964952064,806882310,16696928,0,101107324,-972683716,124,470548480,-20157380,1969164,0,-1061109506,-972683524,124,1614282752,-956514112,8177350,0,201770750,808464408,48,-964952064,-964901178,8177350,0,-960051588,201721470,120,402653184,24,6168,0,1579008,404226048,48,403439616,1623220272,792624,0,2113929216,8257536,0,811597824,201722904,6303768,0,214353532,402659352,24,-964952064]},{"sector":4,"length":512,"data":[-555819322,8175836,0,-965986288,-960037178,198,1727791104,1719428710,16541286,0,-1061001668,1724039360,60,1828192256,1717986918,16280678,0,1751279358,1717725304,254,1727922176,1752721506,15753312,0,-1061001668,1724309184,58,-960102400,-956381498,13027014,0,404232252,404232216,60,203292672,202116108,7916748,0,1819043558,1718381688,230,1626341376,1616928864,16672354,0,-687935802,-960051514,198,-423231488,-824246538,13027014,0,-960051588,-960051514,124,1727791104,1618765414,15753312,0,-960051588,-556349754,3708,1727791104,1820092006,15099494,0,1623639676,-960099272,124,2122186752,404232282,3938328,0,-960051514,-960051514,124,-960102400,-960051514,1063020,0,-960051514,1828640470,108,-960102400,2084076742,13027014,0,1717986918,404232252,60,-956432384,1613764748,16697026,0,808464444,808464432,60,-1065353216,473460960,132622,0,202116156,202116108,268435516,13003832,0,0,0,0,0,16711680,792624,0,0,0,2013265920,-859014132,118,1625292800,1718384736,8152678,0,2080374784,-960446266,124,203161600,-865321972,7785676]},{"sector":5,"length":512,"data":[0,2080374784,-960430394,124,907804672,813445170,7876656,0,1979711488,2093796556,7916556,1625292800,1719037024,15099494,0,939530264,404232216,60,101056512,101060096,1717962246,60,1717592288,1718384748,230,406323200,404232216,3938328,0,-335544320,-690563330,214,0,1718017024,6710886,0,2080374784,-960051514,124,0,1718017024,1616936038,240,1979711488,2093796556,1969164,0,1719065600,15753312,0,2080374784,-971214650,124,806354944,808516656,1848880,0,-872415232,-858993460,118,0,-960051712,1063020,0,-973078528,-19474746,108,0,946652672,13003832,0,-973078528,2126956230,7867398,0,416087552,16672304,0,404232206,404232304,14,404226048,404232216,1579032,0,404232304,404232206,112,56438,0,0,0,940572672,-20527508,0,1715208192,-1061109566,205285058,120,-872415028,-858993460,118,806882304,-20546560,8177344,268435456,2013293624,-859014132,118,12976128,2081191936,7785676,1610612736,2013272112,-859014132,118,946616320,2081191936,7785676,0,2080374784,-960446266,7867516,1815613440,-20546560,8177344,0,2080374982]},{"sector":6,"length":512,"data":[-960430394,124,405823488,-20546560,8177344,0,939524198,404232216,60,1715214336,404240384,3938328,1610612736,939530288,404232216,60,940572870,-20527508,13027014,946616320,-965986288,-960037178,201326790,1727922200,1752721506,16672354,0,-335544320,-656640458,110,1816002560,-855716660,13552844,268435456,2080402488,-960051514,124,12976128,-960070656,8177350,1610612736,2080380976,-960051514,124,-864538624,-858993664,7785676,1610612736,-872409040,-858993460,118,12976128,-960051712,201752262,12976248,-960051588,-960051514,124,-960102202,-960051514,8177350,0,2080374784,-420028722,124,1684813824,1616965728,16574048,67108864,-691089796,-421079338,16508,0,943221958,50796,234881024,404232219,404232318,28888,806882304,2081191936,7785676,201326592,939536408,404232216,60,806882304,-960070656,8177350,201326592,-872402920,-858993460,118,-596246528,1718017024,6710886,14448128,-17373498,-960049442,198,1819032576,8257598,0,939524096,3697772,124,0,808452096,1613770752,8177350,0,-1430633416,1152035506,56,0,117309440,1542,1610612736,1818649568,-1016188904,2034694,1675649024,907701350,104847982,6,402659352,1010580504,24]},{"sector":7,"length":512,"data":[0,1826122806,54,0,1826095104,14183478,285212672,289673540,289673540,289673540,1437226308,1437226410,1437226410,-576039510,-579347081,-579347081,-579347081,404232311,404232216,404232216,404232216,404232216,418912280,404232216,-1067438056,-965986288,-960037178,939524294,940623468,-20527508,13027014,101455872,-965986288,-960037178,198,1144520704,-1566399846,3687578,909522432,116799030,909522678,909522486,909522486,909522486,909522486,54,117309440,909522678,909522486,909522486,16647926,0,402653184,-1060733928,410830528,24,1717960704,410916924,1579134,0,0,404232440,404232216,404232216,2037784,0,404232192,404232216,255,0,0,419364864,404232216,404232216,404232216,404232223,1579032,0,16711680,0,404232192,404232216,404232447,1579032,-596246528,2081191936,7785676,14448128,-965986288,-960037178,905969862,909522486,4141111,0,0,809435136,909522487,909522486,909522486,16711927,0,0,16711680,909522679,909522486,909522486,909586487,909522486,54,16711680,255,905969664,909522486,922157303,909522486,54,2093350912,2093401798,198,406061056,1715340844,3958374,0,1717988600,1818650358,939524344,1727922284,1752721506]},{"sector":8,"length":512,"data":[16672354,12976128,1751279358,1717725304,805306622,1727922200,1752721506,16672354,0,939524096,404232216,201326652,406585368,404232216,3938328,6700032,404232252,404232216,60,406585446,404232216,3938328,404232192,404232216,248,0,0,404684800,404232216,-232,-1,-1,16777215,0,-65536,-1,402653439,1579032,404226048,805312536,406585368,404232216,3938328,-256,-1,0,402653184,-964952016,-960051514,8177350,0,-858993544,-960049960,939524300,-964951956,-960051514,8177350,1585152,-960051588,-960051514,124,-596246528,-960070656,8177350,14448128,-960051588,-960051514,124,0,1717986816,1618765414,192,2086691040,1717986918,15753340,1626341376,1717986940,15753340,3151872,-960051514,-960051514,939524220,-960102292,-960051514,8177350,1585152,-960051514,-960051514,124,806882304,-960051712,201752262,1576184,1717986918,404232252,60,255,0,0,403439616,48,0,0,0,16646144,0,0,2115508224,6168,126,0,0,16711680,819986687,418133603,1071279670,1542,-612433920,461102043,1776411,2080374784,1815634118,946652870,8177164,0,8257560,24,0]},{"sector":9,"length":512,"data":[0,0,7867416,946629688,0,0,12976128,0,0,0,0,1572864,0,941096960,1008211992,0,0,204999800,30732,0,1715208192,2117212172,0,0,0,2122219134,32382,0,0,0,134217728,8,1,0,-1518240256,-2120630911,-604012930,-1588225,-16880514,272137470,2084048896,272137470,947664896,282525438,2084048952,276627198,402653240,1588284,-402653440,-1588285,1715208447,1013334594,-1715208448,-1013334595,252121087,-858993539,1717976184,2115517542,1060323096,-261083088,2137227232,-429431965,1020991680,-616765465,-119504872,-2132739842,1041105408,34488062,2117867520,1014896664,1717986840,1711302246,-606372096,454761339,1013005824,-2042861978,124,2122219008,2117867520,406617624,2117867775,404232216,404232192,406617624,202899456,1576190,1613758464,3170558,-1073741824,16695488,1713635328,2385663,1008205824,16777086,-65536,1588350,0,0,1010571264,402659352,610690560,0,-26448896,1819082348,1614682112,410781244,-859439104,-966381544,946616320,1993137270,806885376,0,806882304,202911792,202911744,806882316,1013317632,6700287,404226048,1579134,0,404226048,48,126,0,404226048,403441152,-2134876112]},{"sector":10,"length":512,"data":[-965986304,946652886,406329344,2115508248,113671168,-26857444,113671168,2093352508,1815878656,504168140,-1061093888,2093352700,-1067436032,2093401852,214367744,808464408,-960070656,2093401724,-960070656,2014054014,404226048,404226048,404226048,404226048,403441200,101455920,2113929216,8257536,405823488,1613764620,214334464,402659352,-557417472,2025905886,-965986304,-960051458,1718025216,-60397956,-1067041792,1013366976,1718417408,-127113626,1751318016,-27105160,1751318016,-262117256,-1067041792,979816128,-960051712,-960051458,404241408,1008211992,202120704,2026687500,1818682880,-429495176,1616965632,-26844576,-17906176,-960047362,-152648192,-960049442,-960070656,2093401798,1718025216,-262119300,-960070656,2093926086,1718025230,-429495172,812006400,1013320728,1518239232,1008211992,-960051712,2093401798,-960051712,946652870,-960051712,1828640470,1824966144,-960074696,1717986816,1008212028,-1933115904,-26856936,808467456,1009791024,811646976,33950744,202128384,1007422476,1815613440,198,0,0,202911999,0,2013265920,1993112588,2086723584,-597268890,2080374784,2093400262,2081168384,1993133260,2080374784,2093022918,1617312768,-262119176,1979711488,209505484,1818288376,-429496714,939530240,1008211992,100664832,1717962246,1717624892,-429098900,404240384,1008211992,-335544320,-690563330,-603979776,1717986918,2080374784,2093401798]},{"sector":11,"length":512,"data":[-603979776,1618765414,1979711728,209505484,-603979746,-262119306,2113929216,-66683712,-63950848,473313328,-872415232,1993133260,-973078528,946652870,-973078528,1828640470,-973078528,-965986196,-973078528,108971718,2113929468,2117212236,404229632,236460144,404232192,404232216,404254720,1880627214,14448128,0,940572672,-20527508,-1060733952,209503936,-872362888,1993133260,2081950720,2093022918,2021817344,1993112588,2013316608,1993112588,2014851072,1993112588,2016423936,1993112588,2113929216,209633472,2088926264,2093022918,2080425472,2093022918,2081959936,2093022918,939550208,1008211992,948075520,1008211992,1585152,1008212024,1815660032,-960037178,2087467008,-960037178,-30402560,-20907840,2113929216,-24052206,-865321472,-825438978,2088926208,2093401798,2080425472,2093401798,2081959936,2093401798,8681472,1993133260,-869244928,1993133260,-973027840,108971718,1815660284,946652870,-973027840,2093401798,2080505856,2095503054,1684813952,-60399376,-831768064,-1200822570,1824915456,13003832,404426240,1893210172,2016417792,1993112588,1575936,1008212024,2081950720,2093401798,-869263360,1993133260,14448128,1717987036,14448128,-824248602,1819032576,8257598,1819031552,8126520,402659328,1046687768,-1182695936,-2119845467,126,395006,1827037952,-865717378,1827037967,-546687366,402659334,406600728,1714618368,3368652,1724645376,13395507]},{"sector":12,"length":512,"data":[579346944,579347080,1437226376,1437226410,2011002794,2011002845,404232413,404232216,404232216,404289560,945827864,-956381588,948075520,-956381588,940316672,-956381588,-1652457984,-2120375903,-164219266,909571590,909522486,909522486,-33554378,909571590,-164219338,65030,2115508224,410960064,1013343768,410916990,24,404289536,404232216,7960,404232192,65304,0,404291328,404232216,404234008,24,65280,404232192,404291352,2094822936,2126937606,953972224,-956381588,926299648,16176,1056964608,909522736,-147442122,65280,-16777216,909571840,926299702,909522736,-16777162,65280,-147442176,909571840,2093350966,-964901178,209596416,2026687612,1718417408,-127113482,-25003008,-20906816,-33503744,-20906816,-31969280,-20906816,939524096,1008211992,1008208896,1008211992,1010973696,1008211992,1006659072,1008211992,404232192,63512,0,404233984,-232,-1,255,-256,404232447,404226048,1008218136,1008211992,-256,255,945827840,946652780,-859015168,-859386664,948075520,946652780,939920384,946652780,2094822912,2093401798,953972224,946652780,1711276032,2087085670,2086723776,1618765414,2086727920,-262112154,-969926656,2093401798,8551424,2093401798,-969908224,2093401798,-969926656,108971718,1712852220,1008221286,65280,0,806882304,0]},{"sector":13,"length":512,"data":[0,126,2115508224,2113935384,0,16711680,-466427393,1596651066,-606371962,454761339,1013005824,-2042861978,1572988,1572990,0,202899456,1819031608,56,12976128,0,0,24,406329344,15384,940341248,30732,403470336,31792,1006632960,3947580,0,0,-1258284032,16777330,1095189760,538976288,218144,0,5020928,50331904,270930432,8,-255,-1,-1,-1,2113929471,-2122209919,-2122212931,126,2113929216,-9217,-6205,126,0,-16880640,947715838,16,0,2084048896,272137470,0,0,-415482856,404285415,60,0,-8504296,404258559,60,0,402653184,1588284,0,-256,-402653185,-1588285,-1,255,1715208192,1013334594,0,-256,-1715208193,-1013334595,-1,503316735,2016549390,-858993460,120,1006632960,1717986918,410916924,24,1040187392,808468022,-261083088,224,2113929216,1717993062,-294754714,49388,0,1020991512,417021159,24,-1065353216,-17239840,-1059000072,128,100794368,-29483506,101588542,2,402653184,404258364,406617624,0,1711276032,1717986918,1711302246,102,2130706432,2078006235,454761243,27,-964952064,-965986208]},{"sector":14,"length":512,"data":[205024454,31942,0,0,-16843264,254,402653184,404258364,406617624,126,402653184,404258364,404232216,24,402653184,404232216,1014896664,24,0,202899456,1576190,0,0,1613758464,3170556,0,0,-1073741824,16695488,0,0,1814560768,2649342,0,0,943198208,-16876420,0,0,2097085952,272119932,0,0,0,0,0,402653184,406600764,402659352,24,-960102400,17606,0,0,0,1828613228,1828613228,108,2081953792,2093007558,-964295162,1579132,0,214352384,-966774760,134,939524096,1983409260,-858993444,118,808452096,24624,0,0,201326592,808464408,405811248,12,805306368,202116120,403442700,48,0,1013317632,6700287,0,0,404226048,1579134,0,0,0,404226048,12312,0,0,254,0,0,0,402653184,24,0,201720320,-1067438056,128,939524096,-691616148,1824966358,56,402653184,404256824,404232216,126,2080374784,403441350,-960470992,254,2080374784,1007027910,-972683770,124,201326592,-865321956,202116350,30,-33554432,-54476608]},{"sector":15,"length":512,"data":[-972683770,124,939524096,-54476704,-960051514,124,-33554432,403441350,808464432,48,2080374784,2093401798,-960051514,124,2080374784,2126956230,201721350,120,0,1579008,404226048,0,0,1579008,404226048,48,0,806882310,202911840,6,0,8257536,32256,0,0,202911840,806882310,96,2080374784,403490502,402659352,24,0,-557398404,-1059266850,124,268435456,-960074696,-960051458,198,-67108864,2087085670,1717986918,252,1006632960,-1061109146,1724039360,60,-134217728,1717986924,1818650214,248,-33554432,2020106854,1717723240,254,-33554432,2020106854,1616928872,240,1006632960,-1061109146,1724303070,58,-973078528,-20527418,-960051514,198,1006632960,404232216,404232216,60,503316480,202116108,-858993652,120,-436207616,2020370022,1717988472,230,-268435456,1616928864,1717723232,254,-973078528,-687931666,-960051514,198,-973078528,-553715994,-960051506,198,2080374784,-960051514,-960051514,124,-67108864,2087085670,1616928864,240,2080374784,-960051514,-556349754,920700,-67108864,2087085670,1717986924,246,2080374784,945866438,-960100852,124,2113929216,404249214,404232216,60,-973078528,-960051514]}],[{"sector":1,"length":512,"data":[-960051514,124,-973078528,-960051514,946652870,16,-973078528,-691616058,-285288746,108,-973078528,947678406,-965968840,198,1711276032,1013343846,404232216,60,-33554432,403474118,-960339920,254,1006632960,808464432,808464432,60,0,1893777536,101588024,2,1006632960,202116108,202116108,60,1815613440,198,0,0,0,0,0,16711680,405811200,0,0,0,0,209190912,-858993540,118,-536870912,1819828320,1717986918,124,0,-964952064,-960446272,124,469762048,1815874572,-858993460,118,0,-964952064,-960446210,124,469762048,2016424502,808464432,120,0,-864681984,-858993460,2026638460,-536870912,1986814048,1717986918,230,402653184,406323224,404232216,60,100663296,101580806,101058054,1013343750,-536870912,1818648672,1718384760,230,939524096,404232216,404232216,60,0,-18087936,-690563370,198,0,1725693952,1717986918,102,0,-964952064,-960051514,124,0,1725693952,1717986918,-262119300,0,-864681984,-858993460,504106108,0,1994129408,1616928870,240,0,-964952064,-972277664,124,268435456,821833776,909127728,28,0,-859045888]},{"sector":2,"length":512,"data":[-858993460,118,0,-859045888,2026687692,48,0,-960102400,-19474730,108,0,1824915456,1815623736,198,0,-960102400,-960051514,-133429634,0,-855769088,-966774760,254,234881024,1880627224,404232216,14,402653184,1579032,404232216,24,1879048192,236460056,404232216,112,1979711488,220,0,0,0,1815613440,-20527418,0,1006632960,-1061109146,1724039360,2080771132,-872415232,-859045888,-858993460,118,403439616,-964952016,-960446210,124,940572672,209191020,-858993540,118,-872415232,209190912,-858993540,118,-864550912,-859045768,-858993460,118,403439616,-964952016,-960446272,124,0,-964952064,-960446272,2014058620,939524096,404495898,408451128,60,-973078528,-964952064,-960446210,124,7091712,-960051588,-960051514,124,905969664,-964951956,-960051514,124,1008205824,406323302,404232216,60,3151872,403474174,-960339920,254,281411584,-960074696,-960051458,198,1575936,-1061001668,1724039360,60,1613764608,1617362432,1717723256,254,6303744,1616929008,1717723232,254,6303744,1616928992,1616928864,240,940572672,-964951956,-960051514,124,-973078528,-964952064,-960051514,124,-167772160,1616929890]},{"sector":3,"length":512,"data":[1717723232,254,-335544320,1616930916,1616928864,240,3151872,1623639676,-960099272,124,201326592,-964952040,-972277664,124,12976128,-960051588,-960051514,124,12976128,-960051514,-960051514,124,3958272,408583806,404232216,60,302383104,821833780,909127728,28,-268435456,1886940260,1717756128,254,0,-973078528,-965986196,0,1811939328,-964952008,-960446272,124,806879232,209191008,-858993540,118,403439616,406323248,404232216,60,806879232,-964951968,-960051514,124,806879232,-859045792,-858993460,118,268435456,-960074696,-960051458,506468550,0,209190912,-858993540,506468470,3697664,411879166,-960339920,254,1811939328,-855769032,-966774760,254,-33554432,2020106854,1717723240,506468606,0,-964952064,-960446210,1012936828,0,0,0,0,403439616,-855769040,-966774760,254,3958272,-1061001668,1724039360,60,0,-964952064,-972277664,2014058620,0,1815478272,3566808,0,0,913047552,7091739,0,289673472,289673540,289673540,289673540,1437226308,1437226410,1437226410,1437226410,-579347030,-579347081,-579347081,-579347081,404232311,404232216,404232216,404232216,404232216,404232216,404232440,404232216,3151896,-965986288]},{"sector":4,"length":512,"data":[-960037178,198,7092224,-965986288,-960037178,198,3697664,1751279358,1717725304,254,2080374784,945866438,-960100852,2014058620,909522432,116799030,909522678,909522486,909522486,909522486,909522486,909522486,54,117309440,909522678,909522486,909522486,116799030,254,0,1579008,403474174,-960339920,254,402653184,-855769064,-966774760,254,0,0,404232440,404232216,404232216,404232216,31,0,404232192,404232216,255,0,0,0,404232447,404232216,404232216,404232216,404232223,404232216,24,0,255,0,404232192,404232216,404232447,404232216,8177176,-965986288,-960037178,198,-973078528,209191036,-858993540,118,909522432,808924726,63,0,0,809435136,909522487,909522486,909522486,16201270,255,0,0,16711680,909522679,909522486,909522486,808924726,909522487,909522486,54,16711680,255,0,909522432,16201270,909522679,909522486,54,2093350912,2093401798,198,201326592,1007451660,-858993556,118,-134217728,-161061268,1818650214,248,3697664,1717988600,1818650214,248,27648,1751279358,1717725304,254,486539264,1815874829,-858993460,118,3697664,-17373498]},{"sector":5,"length":512,"data":[-960049442,198,1575936,404232252,404232216,60,6700032,404232252,404232216,60,1711276032,-964952004,-960446210,124,404232192,404232216,248,0,0,0,404232223,404232216,-232,-1,-1,-1,255,0,-1,-1,2113929471,404249214,404232216,2014058556,946616320,-960051712,-960051514,124,-256,-1,0,0,1575936,-960051588,-960051514,124,2013265920,-657666868,-960051508,204,7092224,-960051588,-960051514,124,1575936,-17373498,-960049442,198,403439616,1725694000,1717986918,102,1811939328,1725694008,1717986918,102,3697664,1623246460,-972682184,124,1811939328,-964952008,-972277664,124,3151872,1717987068,1717988476,246,3151872,-960051514,-960051514,124,403439616,1994129456,1616928870,240,7091712,-960051514,-960051514,124,403439616,-960102352,-960051514,-133429634,1575936,1717986918,404232252,60,268435456,821833776,909127728,2014058524,403439616,48,0,0,0,0,126,0,1815478272,216,0,0,0,0,0,1012936704,946601984,0,0,0,2093350912,0,0,0,-964952064,-965986208]},{"sector":6,"length":512,"data":[205024454,31942,0,1579008,404226174,0,0,0,0,2014058496,1815609344,14444,0,0,1819017216,0,0,0,404226048,0,0,0,905969664,-859045780,-858993460,118,3697664,1717987068,1717988476,246,1811939328,1994129464,1616928870,240,0,2088532992,2088533116,0,0,0,0,0,527872,65536,0,0,0,2113929216,-2122209919,2122422717,0,-604013056,-406585345,32511,0,-16843156,272137470,0,940572672,947715708,16,402653184,-404276164,1008212199,0,2117867520,410976255,15384,0,1008205824,6204,-16777216,-1,-406600729,-1,255,1113996288,3958338,-16777216,-1006632961,-1715618407,-61,503316735,2016549390,2026687692,0,1717976064,2115517542,6168,1056964608,808468275,-521113552,0,2137227008,1734566755,12642023,402653184,-415442152,404282172,0,-524255232,-520552712,32960,33554432,-29487610,33951294,0,2117867520,2115508248,6204,1711276032,1717986918,1717960806,0,-606372096,454786011,6939,-964952064,-965986208,205024454,31942,0,-33554432,65278,402653184,404258364,406617624,126]},{"sector":7,"length":512,"data":[2117867520,404232216,6168,402653184,404232216,406617624,0,402653184,403504652,0,0,-27250688,12384,0,0,-20922176,0,0,-26466304,10348,0,940572672,-25396168,254,0,2088566526,1062968,0,0,0,0,402653184,406600764,404226072,0,610690662,0,0,1811939328,1819082348,1819082348,402653184,-1027179496,-2046395200,404257990,0,214352384,-966381544,0,1819031552,-857967048,30412,808452096,24624,0,0,806882304,808464432,3096,805306368,202116120,806882316,0,1711276032,1715273532,0,0,2115508224,6168,0,0,402653184,3151896,0,-33554432,0,0,0,0,6168,33554432,806882310,8437856,0,-825852928,-957942050,31942,402653184,404256824,2115508248,0,113671168,1613764620,65222,2080374784,1007027910,2093352454,0,1008471040,218025068,7692,-33554432,-54476608,2093352454,0,-1067436032,-960037696,31942,-33554432,403441350,808464432,0,-960070656,-960070458,31942,2080374784,2126956230,2014053894,0,404226048,402653184,24,0,6168,806885376,0,403441152,405823536]},{"sector":8,"length":512,"pattern":0,"data":[1548,0,8257536,32256,0,405823488,403441164,24624,2080374784,403490502,404226072,0,-960070656,-589373730,31936,268435456,-960074696,-960051458,0,1718025216,1717992550,64614,1006632960,-1061109146,1013367488,0,1718417408,1717986918,63596,-33554432,2020106854,-26844568,0,1650916864,1617459304,61536,1006632960,-1061109146,979814110,0,-960051712,-960037178,50886,1006632960,404232216,1008211992,0,202120704,-871625716,30924,-436207616,2020371558,-429495188,0,1616965632,1650483296,65126,-973078528,-687931666,-960051514,0,-152648192,-959521026,50886,2080374784,-960051514,2093401798,0,1718025216,1616936038,61536,2080374784,-960051514,209510102,14,1718025216,1718385766,58982,2080374784,945866438,2093401612,0,1518239232,404232216,15384,-973078528,-960051514,2093401798,0,-960051712,1824966342,4152,-973078528,-691616058,1820131030,0,1824966144,1815623736,50886,1711276032,1013343846,1008211992,0,-1933115904,-1033883624,65222,1006632960,808464432,1009791024,0,-524255232,236730480,518,1006632960,202116108,1007422476,268435456,13003832,0,0,0,0,0,805371648,6192]},{"sector":9,"length":512,"data":[209190912,1993133180,0,1616961536,1717988472,31846,0,-964952064,2093400256,0,202120192,-859018180,30412,0,-964952064,2093400318,0,1684813824,1616965728,61536,0,-864681984,209505484,30924,1616961536,1717991020,58982,402653184,406323224,1008211992,0,394752,101058062,1013343750,-536870912,1818648672,-429495176,0,404240384,404232216,15384,0,-18087936,-958998826,0,0,1717987036,26214,0,-964952064,2093401798,0,0,1717987036,-262119300,0,-864681984,209505484,7692,0,1617327836,61536,0,-964952064,2093358192,0,808456192,808464636,7222,0,-859045888,1993133260,0,0,1717986918,6204,0,-960102400,1828640470,0,0,943221958,50796,0,-960102400,108971718,63500,0,806931710,65126,234881024,1880627224,236460056,0,404232192,404226072,6168,1879048192,236460056,1880627224,0,14448128,0,0,0,1815613440,16697030,0,-1033487360,1724039360,2080771132,0,-859045684,1993133260,0,3151884,-1057044868,31942,940572672,209191020,1993133180,0,7077888,-864285576,30412,1815609344,-859045832,1993133260]},{"sector":10,"length":512,"data":[0,3151884,-1061108100,31942,0,1617312768,101465190,60,505034752,2016942108,15384,0,-964951956,2093400318,905969664,-964951956,-960051514,31942,855638016,-964951962,2093401798,0,6700056,404232248,15384,270011392,411879166,-20553168,0,1815613638,-956381498,50886,270011392,-1061001668,1013367488,402653184,1660821552,1651013736,65126,1080045568,1616929008,-26844576,805306368,1625309280,1616928864,61536,940572672,-964951956,2093401798,0,12976128,-960051588,31942,-167772160,1616929890,-26844576,0,1751444480,1616928864,61536,270011392,1892075132,2093401628,0,3151884,477152892,31942,12976128,-960051588,2093401798,0,-960102202,-960051514,31942,406611456,408583806,1008211992,0,808718854,808464636,7222,2013265920,943470128,2117530224,0,1711276032,1715214396,0,1811939328,-964952008,2093400256,0,6303768,-864285576,30412,403439616,406323248,1008211992,0,6303768,-960051588,31942,806879232,-859045792,1993133260,0,1815613440,-956381498,201639622,7,209190912,1993133180,1812401156,-956432328,1647319180,65222,1811939328,-855769032,-26857448,0,1650916864,1651013736,403242598,14,-964952064,2093400318,1847312,0]},{"sector":11,"length":512,"data":[0,0,403439616,-855769040,-26857448,1811939328,1715208248,-1027555134,15462,0,-964952064,2093358192,7346192,905969664,913102956,0,0,913102848,55404,285212672,289673540,289673540,289673540,1437226308,1437226410,1437226410,-576039510,-579347081,-579347081,-579347081,404232311,404232216,404232216,404232216,404232216,418912280,404232216,271587352,-960074696,-960051458,939524096,1815613548,-956381498,50886,3697664,2020107006,-26844568,0,-960070656,-972277664,403733702,909522544,116799030,909522678,909522486,909522486,909522486,909522486,54,117309440,909522678,909522486,909522486,16647926,0,1579008,411879166,-20553168,0,1579008,806931710,65126,0,0,404232440,404232216,404232216,2037784,0,404232192,404232216,255,0,0,419364864,404232216,404232216,404232216,404232223,1579032,0,16711680,0,404232192,404232216,404232447,-971499496,1815613564,-956381498,50886,-872415232,209191032,1993133180,905969664,909522486,4141111,0,0,809435136,909522487,909522486,909522486,16711927,0,0,16711680,909522679,909522486,909522486,909586487,909522486,54,16711680,255,905969664,909522486,922157303,909522486]},{"sector":12,"length":512,"data":[54,-964901376,-964901178,0,209587200,-859018180,30412,-134217728,-161061268,-127113626,-872415232,1828192376,1717986918,63596,7077888,2020107006,-26844568,0,218963200,-859018180,30412,3697664,-17373498,-960049442,201326592,406589464,404232216,15384,6700032,404232252,1008211992,0,3697664,-1057044868,31942,404232192,404232216,248,0,0,404684800,404232216,-232,-1,-1,16777215,0,-65536,-1,2113929471,404249214,1008211992,943197192,-960087956,-960051514,31942,-256,-1,0,402653184,-964943824,-960051514,31942,2013265920,-657666868,-859388212,939524096,-964951956,-960051514,31942,3151872,-17373498,-960049442,0,540022784,1717987036,26214,1811939328,1725694008,1717986918,1811939328,-964952008,-971214650,31942,1811939328,-964952008,2093358192,201326592,1727803416,1820092006,58982,3151872,-960051514,2093401798,0,3151884,1617327836,61536,7091712,-960051514,2093401798,0,3151884,-960051514,-133429634,270011392,1717986918,1008212028,0,808456192,808464636,201858102,403439672,48,0,0,0,32256,0,1815478272,216,0,0,0,0,806359040,946602012,0]},{"sector":13,"length":512,"data":[0,0,31942,0,0,-964952064,-965986208,205024454,31942,404226048,402685440,24,0,0,268435456,7346192,946629688,0,0,1819017216,0,0,0,6168,0,0,1815478272,-859045672,1993133260,1811939328,1727791160,1820092006,58982,1811939328,1994129464,-262119322,0,2080374784,2088533116,124,0,0,0,134217728,8,1,0,-1518240256,-2120630911,-604012930,-1588225,-16880514,272137470,2084048896,272137470,947664896,282525438,940576824,276627068,402653240,1588284,-402653440,-1588285,1715208447,1013334594,-1715208448,-1013334595,252121087,-858993539,1717976184,2115517542,1060323096,-261083088,2137227232,-429431965,1020991680,-616765465,-119504872,-2132739842,1041105408,34488062,2117867520,1014896664,1717986840,1711302246,-606372096,454761339,946028032,-868717460,120,2122219008,2117867520,406617624,2117867775,404232216,404232192,406617624,202899456,1576190,1613758464,3170558,-1073741824,16695488,1713635328,2385663,1008205824,16777086,-65536,1588350,0,0,2021142528,805318704,1819044864,0,-26448896,1819082348,-1065603072,821562488,-859439104,-966381544,946616320,1993137270,-1067425792,0,1613764608,405823584,405823488]},{"sector":14,"length":512,"data":[1613764632,1013317632,6700287,808452096,3158268,0,808452096,96,252,0,808452096,403441152,-2134876112,-960070656,2093401814,812658688,-63950800,214726656,-53714888,214726656,2026638392,1815878656,504168140,-121570304,2026638348,-1067436032,2026687736,214760448,808464408,-859015168,2026687608,-859015168,1880624252,808452096,808452096,808452096,808452096,1613764704,405823680,-67108864,16515072,405823488,1613764620,214726656,805318680,-557417472,2025905886,-864538624,-858981172,1718025216,-60397956,-1067041792,1013366976,1718417408,-127113626,1751318016,-27105160,1751318016,-262117256,-1067041792,1046924992,-858993664,-858993412,808482816,2016423984,202120704,2026687500,1818682880,-429495176,1616965632,-26844576,-17906176,-960047362,-152648192,-960049442,-965986304,946652870,1718025216,-262119300,-859015168,477682892,1718025216,-429495172,1624012800,2026641456,817167360,2016423984,-858993664,-53687092,-858993664,813223116,-960051712,-957415722,1824966144,-965986248,-858993664,2016424056,-1933115904,-26856936,1616934912,2019582048,811646976,33950744,404256768,2014844952,1815613440,198,0,0,405811455,0,2013265920,1993112588,1616961536,-597268868,2013265920,2026684620,202120192,1993133180,2013265920,2025913548,1617704960,-262119184,1979711488,209505484,1818288376,-429496714,1879060480]},{"sector":15,"length":512,"data":[2016423984,201329664,-859042804,1717624952,-429098900,808480768,2016423984,-872415232,-958988546,-134217728,-858993460,2013265920,2026687692,-603979776,1618765414,1979711728,209505484,-603979746,-262117770,2080374784,-133400384,2083524608,406073392,-872415232,1993133260,-872415232,813223116,-973078528,1828650710,-973078528,-965986196,-872415232,209505484,-67108616,-60542824,808459264,472920288,404232192,404232216,808509440,-533712868,14448128,0,1143476224,-25001342,-1067041792,205285056,-872362952,1993133260,2016417792,2025913548,2021947392,1993112588,2013318144,2127330316,818688000,1993133260,2016417792,2026684620,2013265920,2026684620,1010184216,-596627400,2013318144,2025913548,2093770240,2093401798,-865730560,2026687608,1887989760,2016423984,-31978496,-27250676,1815660032,-960037178,2081950720,2093400262,-65532928,-60786592,-1059533824,-20922176,-1059533824,2025898176,13400064,2026687608,2013318144,2026687692,-926626816,-20922176,-926626816,2025898176,2115505152,-66683712,1041763328,2080783456,-964901376,2093401798,-973027840,2093401798,-59192320,808464432,2050036480,406073392,2020368384,2128633968,1824915456,13003832,1010591232,1013342310,2014841856,2127330316,941100032,1008211992,403439616,2026687608,806879232,2127350988,-965986304,416728830,2013265934,1993112588,-29596145,-27256820,3958272,2117078142,-1061093888,-20922120,2013265948]}]],[[{"sector":1,"length":512,"data":[2025913548,28,0,1575936,2117078142,2084333056,2093400262,2080374784,-133400384,1714618424,3368652,1724645376,13395507,579346944,579347080,1437226376,1437226410,-612901974,-612901906,404232430,404232216,404232216,404289560,2081950744,-960037178,2088926208,-960037178,-25637888,-20907840,1624012800,2026641456,-164219344,909571590,909522486,909522486,-33554378,909571590,-164219338,65030,-956426240,-20566004,1572864,2083526780,0,404289536,404232216,7960,404232192,65304,0,404291328,404232216,404234008,24,65280,404232192,404291352,2088551960,-960037178,2021182464,1993112588,926299648,16176,1056964608,909522736,-147442122,65280,-16777216,909571840,926299702,909522736,-16777162,65280,-147442176,909571840,1010958390,1111254630,205392896,1993133180,1717992448,2087085814,-59192320,-60397978,-67056640,-60786592,202185984,1993133180,-434625536,-959521034,2016417792,2016423984,2021947392,2016423984,2021182464,2025913548,404232192,63512,0,404233984,-232,-1,255,-256,404258559,538449944,-702017480,2093401798,-256,255,2081950720,2093401798,-864550912,-1057436424,2088926400,2093401798,-434631680,-959521034,-602403840,-960051482,-600021504,-960051482,2117626880,-66176800,2084072448,2080651328,-65532928,-858194746,-971502592]},{"sector":2,"length":512,"data":[2093401798,-835708928,-1061101328,-959683072,2093401798,-971502592,205416134,-958526344,806894694,813182976,406335536,1575966,0,0,60,13395456,0,0,268435456,7395356,0,8177152,0,946224128,-868717460,1579128,404226174,0,67108864,1819031580,56,26112,0,6144,0,13395456,1993133260,-59713536,-858194746,-831465472,-1061101352,1006632960,3947580,0,0,-385868800,16777368,1095189760,538976288,220192,0,7524608,50331904,270930432,8,1,0,0,0,2113929216,-2122209919,-2122212931,126,2113929216,-9217,-6205,126,0,-16880640,947715838,16,0,2084048896,272137470,0,0,-415482856,404285415,60,0,-8504296,404258559,60,0,402653184,1588284,0,-256,-402653185,-1588285,-1,255,1715208192,1013334594,0,-256,-1715208193,-1013334595,-1,503316735,2016549390,-858993460,120,1006632960,1717986918,410916924,24,1056964608,808468275,-261083088,224,2130706432,1667465059,-412654749,49382,0,1020991512,417021159,24,-1065353216,-17239840,-1059000072,128,100794368,-29483506,101588542,2,402653184]},{"sector":3,"length":512,"data":[404258364,406617624,0,1711276032,1717986918,1711302246,102,2130706432,2078006235,454761243,27,-964952064,-965986208,205024454,31942,0,0,-16843264,254,402653184,404258364,406617624,126,402653184,404258364,404232216,24,402653184,404232216,1014896664,24,0,202899456,1576190,0,0,1613758464,3170558,0,0,-1073741824,16695488,0,0,1814560768,2649342,0,0,943198208,-16876420,0,0,2097085952,272119932,0,0,0,0,0,402653184,406600764,402659352,24,1717960704,9318,0,0,0,1828613228,1828613228,108,2081953792,2093007558,-964295162,1579132,0,214352384,-966774760,134,939524096,1983409260,-858993444,118,808452096,24624,0,0,201326592,808464408,405811248,12,805306368,202116120,403442700,48,0,1013317632,6700287,0,0,404226048,1579134,0,0,0,404226048,12312,0,0,254,0,0,0,402653184,24,0,201720320,-1067438056,128,939524096,-691616148,1824966358,56,402653184,404256824,404232216,126,2080374784]},{"sector":4,"length":512,"data":[403441350,-960470992,254,2080374784,1007027910,-972683770,124,201326592,-865321956,202116350,30,-33554432,-54476608,-972683770,124,939524096,-54476704,-960051514,124,-33554432,201721542,808464408,48,2080374784,2093401798,-960051514,124,2080374784,2126956230,201721350,120,0,1579008,404226048,0,0,1579008,404226048,48,0,806882310,202911840,6,0,8257536,32256,0,0,202911840,806882310,96,2080374784,403490502,402659352,24,0,-557398404,-1059266850,124,268435456,-960074696,-960051458,198,-67108864,2087085670,1717986918,252,1006632960,-1061109146,1724039360,60,-134217728,1717986924,1818650214,248,-33554432,2020106854,1717723240,254,-33554432,2020106854,1616928872,240,1006632960,-1061109146,1724303070,58,-973078528,-20527418,-960051514,198,1006632960,404232216,404232216,60,503316480,202116108,-858993652,120,-436207616,2020370022,1717988472,230,-268435456,1616928864,1717723232,254,-973078528,-687931666,-960051514,198,-973078528,-553715994,-960051506,198,2080374784,-960051514,-960051514,124,-67108864,2087085670,1616928864,240,2080374784,-960051514,-556349754,920700,-67108864]},{"sector":5,"length":512,"data":[2087085670,1717986924,230,2080374784,945866438,-960100852,124,2113929216,404249214,404232216,60,-973078528,-960051514,-960051514,124,-973078528,-960051514,946652870,16,-973078528,-691616058,-285288746,108,-973078528,947678406,-965968840,198,1711276032,1013343846,404232216,60,-33554432,403474118,-960339920,254,1006632960,808464432,808464432,60,0,1893777536,101588024,2,1006632960,202116108,202116108,60,1815613440,198,0,0,0,0,0,16711680,405798912,12,0,0,0,209190912,-858993540,118,-536870912,1819828320,1717986918,124,0,-964952064,-960446272,124,469762048,1815874572,-858993460,118,0,-964952064,-960446210,124,469762048,2016424502,808464432,120,0,-864681984,-858993460,2026638460,-536870912,1986814048,1717986918,230,402653184,406323224,404232216,60,100663296,101580806,101058054,1013343750,-536870912,1818648672,1718384760,230,939524096,404232216,404232216,60,0,-18087936,-690563370,198,0,1725693952,1717986918,102,0,-964952064,-960051514,124,0,1725693952,1717986918,-262119300,0,-864681984,-858993460,504106108,0]},{"sector":6,"length":512,"data":[1994129408,1616928870,240,0,-964952064,-972277664,124,268435456,821833776,909127728,28,0,-859045888,-858993460,118,0,-960102400,1824966342,56,0,-960102400,-19474730,108,0,1824915456,1815623736,198,0,-960102400,-960051514,-133429634,0,-855769088,-966774760,254,234881024,1880627224,404232216,14,402653184,404232216,404232216,24,1879048192,236460056,404232216,112,-596246528,0,0,0,0,1815613440,-20527418,0,1006632960,-1061109146,1724039360,7346236,-872415232,-859045888,-858993460,118,403439616,-964952016,-960446210,124,940572672,209191020,-858993540,118,1979711488,209191132,-858993540,118,811597824,209190936,-858993540,118,281042944,-960074696,-960051458,198,0,-964952064,-960446272,7346300,940572672,-964951956,-960446210,124,7092224,1751279358,1717725304,254,811597824,-964952040,-960446210,124,1575936,404232252,404232216,60,7092224,-960051588,-960051514,124,811597824,406323224,404232216,60,14448128,-960074696,-960051458,198,-965986304,-960074696,-960051458,198,1575936,1751279358,1717725304,254,268831744,-960074696,-960051458,198,1585152]},{"sector":7,"length":512,"data":[1751279358,1717725304,254,940572672,-964951956,-960051514,124,1979711488,-964951844,-960051514,124,811597824,-964952040,-960051514,124,3151872,-960051514,-960051514,124,811597824,-859045864,-858993460,118,1585152,404232252,404232216,60,14448128,-960051588,-960051514,124,12976128,-960051514,-960051514,124,404226048,-1061108100,410830528,24,1815609344,1626366052,-429891488,252,1585152,-960051514,-960051514,124,-856162304,-859506484,-858993442,198,3151872,-960051588,-960051514,124,806879232,209191008,-858993540,118,403439616,406323248,404232216,60,806879232,-964951968,-960051514,124,806879232,-859045792,-858993460,118,1979711488,1725694172,1717986918,102,14448128,-17373498,-960049442,198,1006632960,4090988,126,0,939524096,3697772,124,0,805306368,808452144,-960053152,124,1585152,-960051588,-960051514,124,0,-33554432,101058054,0,-530579456,409757282,-2032377808,4069388,-530579456,409757282,-1697749456,394815,402653184,404226072,1010580504,24,0,1815478272,3566808,0,0,1826095104,14183478,0,289673472,289673540,289673540,289673540,1437226308,1437226410,1437226410,1437226410,-579347030]},{"sector":8,"length":512,"data":[-579347081,-579347081,-579347081,404232311,404232216,404232216,404232216,404232216,404232216,404232440,404232216,404232216,418912280,404232440,404232216,909522456,909522486,909522678,909522486,54,0,909522686,909522486,54,418906112,404232440,404232216,909522456,116799030,909522678,909522486,909522486,909522486,909522486,909522486,54,117309440,909522678,909522486,909522486,116799030,254,0,909522432,909522486,254,0,404232192,418912280,248,0,0,0,404232440,404232216,404232216,404232216,31,0,404232192,404232216,255,0,0,0,404232447,404232216,404232216,404232216,404232223,404232216,24,0,255,0,404232192,404232216,404232447,404232216,404232216,404690968,404232223,404232216,909522456,909522486,909522487,909522486,909522486,808924726,63,0,0,809435136,909522487,909522486,909522486,16201270,255,0,0,16711680,909522679,909522486,909522486,808924726,909522487,909522486,54,16711680,255,0,909522432,16201270,909522679,909522486,404232246,16717848,255,0,909522432,909522486,255,0,0,16711680,404232447,404232216,24]},{"sector":9,"length":512,"data":[0,909522687,909522486,909522486,909522486,63,0,404232192,404690968,31,0,0,404684800,404232223,404232216,24,0,909522495,909522486,909522486,909522486,909522687,909522486,404232246,419371032,404232447,404232216,404232216,404232216,248,0,0,0,404232223,404232216,-232,-1,-1,-1,255,0,-1,-1,-252645121,-252645136,-252645136,-252645136,252645360,252645135,252645135,252645135,-241,-1,0,0,0,-596246528,-589768488,118,2013265920,-657666868,-960051508,204,-33554432,-1061108026,-1061109568,192,0,1828585472,1819044972,108,-33554432,405823686,-966774760,254,0,-662831104,-656877352,112,0,1717960704,1717986918,-1067425668,0,417101312,404232216,24,2113929216,1717976088,406611558,126,939524096,-20527508,1824966342,56,939524096,-960051604,1819044972,238,503316480,1040980016,1717986918,60,0,-612499456,8313819,0,0,-612497917,1618932699,192,469762048,2086690864,811622496,28,0,-960051588,-960051514,198,0,65024,-33554178,0,0,2115508224,6168,126,0]},{"sector":10,"length":512,"data":[101455920,3151884,126,0,1613764620,792624,126,234881024,404232987,404232216,404232216,404232216,404232216,-656926696,28888,0,1572864,1572990,0,0,-596246528,14448128,0,1815609344,14444,0,0,0,0,6168,0,0,0,24,0,202309632,202116108,1013738732,28,913047552,909522486,0,0,1715208192,2117212172,0,0,0,2122219008,2122219134,0,0,0,0,0,527872,65536,0,0,0,0,-2119859842,-2120630911,126,-8519680,-1006632997,8323047,0,-16880640,947715838,16,268435456,2097052728,4152,0,-415482856,404285415,60,1008205824,2130706302,3938328,0,402653184,1588284,-16777216,-1,-1010571265,-25,255,1715208192,1013334594,-16777216,-1,-1111647805,-15463,255,840568350,-858993544,120,1715208192,406611558,1579134,0,809448255,-261083088,224,1669267456,1667457919,-1058609305,0,1020991512,417021159,24,-1065353216,-117507872,8437984,0,1041106434,101596926,2,1008205824,404232318,1588350,0,1717986918,1711302246,102,-612433920]},{"sector":11,"length":512,"data":[461102043,1776411,2080374784,1815634118,946652870,8177164,0,0,16711422,0,410926104,1014896664,32280,1008205824,404232318,1579032,0,404232216,1014896664,24,0,217975832,24,0,1613758464,3170558,0,0,-1061109760,254,0,1814560768,2649342,0,268435456,2088515640,65278,0,2097085952,272119932,0,0,0,0,0,1010580504,402659352,24,610690662,0,0,0,1828613228,1828613228,108,-964945896,108839106,410830470,24,-960364544,1714427916,198,1815609344,-596232084,7785676,404226048,12312,0,0,403439616,808464432,792624,0,202119216,403442700,48,0,1023360102,102,0,404226048,1579134,0,0,0,806885400,0,0,254,0,0,0,1579008,0,403441154,-2134876112,0,1815609344,-959002938,3697862,0,410531864,404232216,126,-964952064,806882310,16696928,0,101107324,-972683716,124,470548480,-20157380,1969164,0,-1061109506,-972683524,124,1614282752,-956514112,8177350,0,201770750,808464408,48,-964952064,-964901178,8177350]},{"sector":12,"length":512,"data":[0,-960051588,201721470,120,402653184,24,6168,0,1579008,404226048,48,403439616,1623220272,792624,0,2113929216,8257536,0,811597824,201722904,6303768,0,214353532,402659352,24,-964952064,-555819322,8175836,0,-965986288,-960037178,198,1727791104,1719428710,16541286,0,-1061001668,1724039360,60,1828192256,1717986918,16280678,0,1751279358,1717725304,254,1727922176,1752721506,15753312,0,-1061001668,1724309184,58,-960102400,-956381498,13027014,0,404232252,404232216,60,203292672,202116108,7916748,0,1819043558,1718381688,230,1626341376,1616928864,16672354,0,-687935802,-960051514,198,-423231488,-824246538,13027014,0,-960051588,-960051514,124,1727791104,1618765414,15753312,0,-960051588,-556349754,3708,1727791104,1820092006,15099494,0,1623639676,-960099272,124,2122186752,404232282,3938328,0,-960051514,-960051514,124,-960102400,-960051514,1063020,0,-960051514,1828640470,108,-960102400,2084076742,13027014,0,1717986918,404232252,60,-956432384,1613764748,16697026,0,808464444,808464432,60,-1065353216,473460960,132622,0,202116156]},{"sector":13,"length":512,"data":[202116108,268435516,13003832,0,0,0,0,0,16711680,792624,0,0,0,2013265920,-859014132,118,1625292800,1718384736,8152678,0,2080374784,-960446266,124,203161600,-865321972,7785676,0,2080374784,-960430394,124,907804672,813445170,7876656,0,1979711488,2093796556,7916556,1625292800,1719037024,15099494,0,939530264,404232216,60,101056512,101060096,1717962246,60,1717592288,1718384748,230,406323200,404232216,3938328,0,-335544320,-690563330,214,0,1718017024,6710886,0,2080374784,-960051514,124,0,1718017024,1616936038,240,1979711488,2093796556,1969164,0,1719065600,15753312,0,2080374784,-971214650,124,806354944,808516656,1848880,0,-872415232,-858993460,118,0,-960051712,1063020,0,-973078528,-19474746,108,0,946652672,13003832,0,-973078528,2126956230,7867398,0,416087552,16672304,0,404232206,404232304,14,404226048,404232216,1579032,0,404232304,404232206,112,56438,0,0,0,940572672,-20527508,0,1715208192,-1061109566,205285058,120,-872415028,-858993460,118]},{"sector":14,"length":512,"data":[806882304,-20546560,8177344,268435456,2013293624,-859014132,118,-596246528,2081191936,7785676,1610612736,2013272112,-859014132,805306486,940621920,-20527508,13027014,0,2080374784,-960446266,7867516,1815613440,-20546560,8177344,7092224,1751279358,1717725304,254,405823488,-20546560,8177344,1575936,404232252,404232216,939524156,-964951956,-960051514,8177350,1610612736,939530288,404232216,1979711548,940572892,-20527508,13027014,-965986304,-965986288,-960037178,201326790,1727922200,1752721506,16672354,101455872,-965986288,-960037178,805306566,1727922200,1752721506,16672354,268435456,2080402488,-960051514,124,-596246528,-960070656,8177350,1610612736,2080380976,-960051514,402653308,-960102352,-960051514,8177350,1610612736,-872409040,-858993460,805306486,406585368,404232216,3938328,14448128,-960051588,-960051514,124,-960102202,-960051514,8177350,402653184,-1060733928,410830528,24,1684813824,1616965728,16574048,1585152,-960051514,-960051514,124,1718025216,1868980860,15951462,1575936,-960051588,-960051514,124,806882304,2081191936,7785676,201326592,939536408,404232216,60,806882304,-960070656,8177350,201326592,-872402920,-858993460,118,-596246528,1718017024,6710886,14448128,-17373498,-960049442,198,1819032576,8257598]},{"sector":15,"length":512,"data":[0,939524096,3697772,124,0,808452096,1613770752,8177350,1585152,-960051588,-960051514,124,0,117309440,1542,1610612736,1818649568,-1016188904,2034694,1675649024,907701350,104847982,6,402659352,1010580504,24,0,1826122806,54,0,1826095104,14183478,285212672,289673540,289673540,289673540,1437226308,1437226410,1437226410,-576039510,-579347081,-579347081,-579347081,404232311,404232216,404232216,404232216,404232216,418912280,404232216,404232216,418912280,404232440,907548696,909522486,922105398,909522486,54,0,909522686,3552822,0,418912504,404232216,909522456,116799030,909522678,909522486,909522486,909522486,909522486,54,117309440,909522678,909522486,909522486,16647926,0,909522432,909522486,254,402653184,404232216,16259320,0,0,0,404232440,404232216,404232216,2037784,0,404232192,404232216,255,0,0,419364864,404232216,404232216,404232216,404232223,1579032,0,16711680,0,404232192,404232216,404232447,404232216,404232216,404690975,404232216,909522456,909522486,909522487,909522486,909522486,4141111,0,0,809435136,909522487,909522486,909522486,16711927,0,0]}],[{"sector":1,"length":512,"data":[16711680,909522679,909522486,909522486,909586487,909522486,54,16711680,255,905969664,909522486,922157303,909522486,404232246,16717848,255,905969664,909522486,16725558,0,0,16711680,404232447,1579032,0,922681344,909522486,909522486,909522486,63,402653184,404232216,2037791,0,0,404684800,404232223,1579032,0,910098432,909522486,909522486,909522486,909522687,406206006,404232216,419371263,404232216,404232216,404232216,248,0,0,404684800,404232216,-232,-1,-1,16777215,0,-65536,-1,-252645121,-252645136,-252645136,267448560,252645135,252645135,252645135,-241,-1,0,0,0,-656640512,7789784,0,-858993544,-960049960,204,-956432384,-1061109562,12632256,0,-33554432,1819044972,108,-956432384,806891616,16696928,0,2113929216,-656877352,112,0,1717986816,1618765414,192,-596246528,404232216,24,410910720,1717986876,8263740,0,-960074696,1824966398,56,1815609344,1824966342,15625324,0,202911774,1717986878,60,0,-606372352,126,0,-612497917,1618932699,192,807272448,1618894944,1978464,0,-960070656,-960051514]},{"sector":2,"length":512,"data":[198,-33554432,16646144,65024,0,2115508224,6168,126,405798912,403441164,8257584,0,1613764620,792624,126,454757888,404232216,404232216,404232216,404232216,1893259288,0,0,8257560,24,0,-596246528,14448128,0,946629688,0,0,0,0,6168,0,0,1572864,0,202309632,202116108,1013771276,28,909522540,13878,0,1715208192,2117212172,0,0,0,2122219134,32382,0,0,0,134217728,8,1,0,-1518240256,-2120630911,-604012930,-1588225,-16880514,272137470,2084048896,272137470,947664896,282525438,2084048952,276627198,402653240,1588284,-402653440,-1588285,1715208447,1013334594,-1715208448,-1013334595,252121087,-858993539,1717976184,2115517542,1060323096,-261083088,2137227232,-429431965,1020991680,-616765465,-119504872,-2132739842,1041105408,34488062,2117867520,1014896664,1717986840,1711302246,-606372096,454761339,1013005824,-2042861978,124,2122219008,2117867520,406617624,2117867775,404232216,404232192,406617624,202899456,1576190,1613758464,3170558,-1073741824,16695488,1713635328,2385663,1008205824,16777086,-65536,1588350,0,0,1010571264,402659352,610690560,0]},{"sector":3,"length":512,"data":[-26448896,1819082348,1614682112,410781244,-859439104,-966381544,946616320,1993137270,806885376,0,806882304,202911792,202911744,806882316,1013317632,6700287,404226048,1579134,0,404226048,48,126,0,404226048,403441152,-2134876112,-965986304,946652886,406329344,2115508248,113671168,-26857444,113671168,2093352508,1815878656,504168140,-1061093888,2093352700,-1067436032,2093401852,214367744,808464408,-960070656,2093401724,-960070656,2014054014,404226048,404226048,404226048,404226048,403441200,101455920,2113929216,8257536,405823488,1613764620,214334464,402659352,-557417472,2025905886,-965986304,-960051458,1718025216,-60397956,-1067041792,1013366976,1718417408,-127113626,1751318016,-27105160,1751318016,-262117256,-1067041792,979816128,-960051712,-960051458,404241408,1008211992,202120704,2026687500,1818682880,-429495176,1616965632,-26844576,-17906176,-960047362,-152648192,-960049442,-960070656,2093401798,1718025216,-262119300,-960070656,2093926086,1718025230,-429495172,812006400,1013320728,1518239232,1008211992,-960051712,2093401798,-960051712,946652870,-960051712,1828640470,1824966144,-960074696,1717986816,1008212028,-1933115904,-26856936,808467456,1009791024,811646976,33950744,202128384,1007422476,1815613440,198,0,0,202911999,0,2013265920,1993112588,2086723584,-597268890]},{"sector":4,"length":512,"data":[2080374784,2093400262,2081168384,1993133260,2080374784,2093022918,1617312768,-262119176,1979711488,209505484,1818288376,-429496714,939530240,1008211992,100664832,1717962246,1717624892,-429098900,404240384,1008211992,-335544320,-690563330,-603979776,1717986918,2080374784,2093401798,-603979776,1618765414,1979711728,209505484,-603979746,-262119306,2113929216,-66683712,-63950848,473313328,-872415232,1993133260,-973078528,946652870,-973078528,1828640470,-973078528,-965986196,-973078528,108971718,2113929468,2117212236,404229632,236460144,404232192,404232216,404254720,1880627214,14448128,0,940572672,-20527508,-1060733952,209503936,-872362888,1993133260,2081950720,2093022918,2021817344,1993112588,2027714048,1993112588,2014851072,1993112588,945827840,-956381588,2113929216,209633472,2088926264,2093022918,-25003008,-20907840,2081959936,2093022918,1008208896,1008211992,948075520,946652780,1585152,1008212024,953972224,-956381588,948075520,-956381588,-30402560,-20907840,942694400,-956381588,-31969280,-20907840,2088926208,2093401798,2094822912,2093401798,2081959936,2093401798,-971502592,2093401798,-869244928,1993133260,1008218112,1008211992,953972224,946652780,-973027840,2093401798,2115508224,410960064,1684813848,-60399376,-971493376,2093401798,-858982400,-959461638,941100231,946652780,2016417792,1993112588,1575936,1008212024,2081950720,2093401798]},{"sector":5,"length":512,"data":[-869263360,1993133260,14448128,1717987036,14448128,-824248602,1819032576,8257598,1819031552,8126520,402659328,1046687768,941109248,946652780,0,395006,1827037952,-865717378,1827037967,-546687366,402659334,406600728,1714618368,3368652,1724645376,13395507,579346944,579347080,1437226376,1437226410,2011002794,2011002845,404232413,404232216,404232216,404289560,-132638696,404289560,909522456,909571638,54,909573632,-134217674,404289560,-164219368,909571590,909522486,909522486,-33554378,909571590,-164219338,65030,909522432,65078,-132638720,63512,0,404289536,404232216,7960,404232192,65304,0,404291328,404232216,404234008,24,65280,404232192,404291352,521672728,404234008,909522456,909522742,926299702,16176,1056964608,909522736,-147442122,65280,-16777216,909571840,926299702,909522736,-16777162,65280,-147442176,909571840,-15198154,65280,909522432,65334,-16777216,404291328,24,909573888,909522486,16182,521672704,7960,520093696,404234008,24,909524736,909522486,909573942,-15198154,404291352,404232216,63512,0,404233984,-232,-1,255,-256,-252645121,-252645136,252645360,252645135,-241,255,1979711488,1994180828,-859015168,-859386664,-1060700672,-1061109568]},{"sector":6,"length":512,"data":[-33554432,1819044972,1623653888,-20553680,2113929216,1893259480,1711276032,2087085670,-596246336,404232216,1008238080,406611558,-965986178,946652926,-965986304,-294884154,202903040,1013343806,2113929216,8313819,2114717184,1618926555,1613766336,506486910,-964952064,-960051514,16646144,16646398,2115508224,2113935384,202911744,2113941528,806882304,2113932312,454757888,404232216,404232216,-656926696,1572976,1572990,-596246528,14448128,1819031552,56,0,6168,0,24,202116864,1013771276,909536284,13878,403470336,31792,1006632960,3947580,0,0,486546432,16777407,1095189760,538976288,220960,0,10028288,50331904,270930432,8,1,0,0,0,2113929216,-2122209919,-2122212931,126,2113929216,-9217,-6205,126,0,-16880640,947715838,16,0,2084048896,272137470,0,0,-415482856,404285415,60,0,-8504296,404258559,60,0,402653184,1588284,0,-256,-402653185,-1588285,-1,255,1715208192,1013334594,0,-256,-1715208193,-1013334595,-1,503316735,2016549390,-858993460,120,1006632960,1717986918,410916924,24,1056964608,808468275,-261083088,224,2130706432,1667465059,-412654749,49382]},{"sector":7,"length":512,"data":[0,1020991512,417021159,24,-1065353216,-17239840,-1059000072,128,100794368,-29483506,101588542,2,402653184,404258364,406617624,0,1711276032,1717986918,1711302246,102,2130706432,2078006235,454761243,27,-964952064,-965986208,205024454,31942,0,0,-16843264,254,402653184,404258364,406617624,126,402653184,404258364,404232216,24,402653184,404232216,1014896664,24,0,202899456,1576190,0,0,1613758464,3170558,0,0,-1073741824,16695488,0,0,1814560768,2649342,0,0,943198208,-16876420,0,0,2097085952,272119932,0,0,0,0,0,402653184,406600764,402659352,24,1717960704,9318,0,0,0,1828613228,1828613228,108,2081953792,2093007558,-964295162,1579132,0,214352384,-966774760,134,939524096,1983409260,-858993444,118,808452096,24624,0,0,201326592,808464408,405811248,12,805306368,202116120,403442700,48,0,1013317632,6700287,0,0,404226048,1579134,0,0,0,404226048,12312,0,0,254,0,0,0,402653184,24]},{"sector":8,"length":512,"data":[0,201720320,-1067438056,128,939524096,-691616148,1824966358,56,402653184,404256824,404232216,126,2080374784,403441350,-960470992,254,2080374784,1007027910,-972683770,124,201326592,-865321956,202116350,30,-33554432,-54476608,-972683770,124,939524096,-54476704,-960051514,124,-33554432,201721542,808464408,48,2080374784,2093401798,-960051514,124,2080374784,2126956230,201721350,120,0,1579008,404226048,0,0,1579008,404226048,48,0,806882310,202911840,6,0,8257536,32256,0,0,202911840,806882310,96,2080374784,403490502,402659352,24,0,-557398404,-1059266850,124,268435456,-960074696,-960051458,198,-67108864,2087085670,1717986918,252,1006632960,-1061109146,1724039360,60,-134217728,1717986924,1818650214,248,-33554432,2020106854,1717723240,254,-33554432,2020106854,1616928872,240,1006632960,-1061109146,1724303070,58,-973078528,-20527418,-960051514,198,1006632960,404232216,404232216,60,503316480,202116108,-858993652,120,-436207616,2020370022,1717988472,230,-268435456,1616928864,1717723232,254,-973078528,-687931666,-960051514,198,-973078528,-553715994,-960051506,198]},{"sector":9,"length":512,"data":[2080374784,-960051514,-960051514,124,-67108864,2087085670,1616928864,240,2080374784,-960051514,-556349754,920700,-67108864,2087085670,1717986924,230,2080374784,945866438,-960100852,124,2113929216,404249214,404232216,60,-973078528,-960051514,-960051514,124,-973078528,-960051514,946652870,16,-973078528,-691616058,-285288746,108,-973078528,947678406,-965968840,198,1711276032,1013343846,404232216,60,-33554432,403474118,-960339920,254,1006632960,808464432,808464432,60,0,1893777536,101588024,2,1006632960,202116108,202116108,60,1815613440,198,0,0,0,0,0,16711680,405798912,12,0,0,0,209190912,-858993540,118,-536870912,1819828320,1717986918,124,0,-964952064,-960446272,124,469762048,1815874572,-858993460,118,0,-964952064,-960446210,124,469762048,2016424502,808464432,120,0,-864681984,-858993460,2026638460,-536870912,1986814048,1717986918,230,402653184,406323224,404232216,60,100663296,101580806,101058054,1013343750,-536870912,1818648672,1718384760,230,939524096,404232216,404232216,60,0,-18087936,-690563370,198,0,1725693952,1717986918,102]},{"sector":10,"length":512,"data":[0,-964952064,-960051514,124,0,1725693952,1717986918,-262119300,0,-864681984,-858993460,504106108,0,1994129408,1616928870,240,0,-964952064,-972277664,124,268435456,821833776,909127728,28,0,-859045888,-858993460,118,0,-960102400,1824966342,56,0,-960102400,-19474730,108,0,1824915456,1815623736,198,0,-960102400,-960051514,-133429634,0,-855769088,-966774760,254,234881024,1880627224,404232216,14,402653184,404232216,404232216,24,1879048192,236460056,404232216,112,-596246528,0,0,0,0,1815613440,-20527418,0,1006632960,-1061109146,1724039360,7346236,-872415232,-859045888,-858993460,118,403439616,-964952016,-960446210,124,940572672,209191020,-858993540,118,-965986304,-965986288,-960037178,198,811597824,209190936,-858993540,118,0,-606348417,454761339,27,0,-964952064,-960446272,7346300,940572672,-964951956,-960446210,124,-973078528,-964952064,-960446210,124,811597824,-964952040,-960446210,124,1711276032,406323200,404232216,60,1008205824,406323302,404232216,60,0,0,0,-16711936,101455872,-965986288,-960037178,198]},{"sector":11,"length":512,"data":[-964952064,-965986208,205024454,31942,1575936,1751279358,1717725304,254,1585152,1751279358,1717725304,254,7092224,1751279358,1717725304,254,940572672,-964951956,-960051514,124,12976128,1751279358,1717725304,254,6684672,404232252,404232216,60,2016411648,-859045684,-858993460,118,811597824,-859045864,-858993460,118,0,-964901376,2093401798,198,7092224,-960051588,-960051514,124,12976128,-960051514,-960051514,124,404226048,-1061108100,410830528,24,1815609344,1626366052,-429891488,252,1585152,-960051514,-960051514,124,7092224,-960051514,-960051514,124,453902336,2115508248,-669509608,112,404226048,1579032,404232192,6168,403439616,48,0,0,806879232,-964951968,-960051514,124,806879232,-859045792,-858993460,118,12976128,0,0,0,0,0,0,7867416,108789760,2080769596,0,0,16711680,0,0,0,6700032,404232252,404232216,60,0,-33554432,-1061109568,0,0,-33554432,101058054,0,-530579456,409757282,-2032377808,4069388,-530579456,409757282,-1697749456,394815,819986432,418133730,-1697749456,394815,0,1815478272,3566808,0]},{"sector":12,"length":512,"data":[0,1826095104,14183478,0,289673472,289673540,289673540,289673540,1437226308,1437226410,1437226410,1437226410,-579347030,-579347081,-579347081,-579347081,404232311,404232216,404232216,404232216,404232216,404232216,404232440,404232216,404232216,418912280,404232440,404232216,909522456,909522486,909522678,909522486,54,0,909522686,909522486,54,418906112,404232440,404232216,909522456,116799030,909522678,909522486,909522486,909522486,909522486,909522486,54,117309440,909522678,909522486,909522486,116799030,254,0,909522432,909522486,254,0,404232192,418912280,248,0,0,0,404232440,404232216,404232216,404232216,31,0,404232192,404232216,255,0,0,0,404232447,404232216,404232216,404232216,404232223,404232216,24,0,255,0,404232192,404232216,404232447,404232216,404232216,404690968,404232223,404232216,909522456,909522486,909522487,909522486,909522486,808924726,63,0,0,809435136,909522487,909522486,909522486,16201270,255,0,0,16711680,909522679,909522486,909522486,808924726,909522487,909522486,54,16711680,255,0,909522432,16201270,909522679,909522486]},{"sector":13,"length":512,"data":[404232246,16717848,255,0,909522432,909522486,255,0,0,16711680,404232447,404232216,24,0,909522687,909522486,909522486,909522486,63,0,404232192,404690968,31,0,0,404684800,404232223,404232216,24,0,909522495,909522486,909522486,909522486,909522687,909522486,404232246,419371032,404232447,404232216,404232216,404232216,248,0,0,0,404232223,404232216,-232,-1,-1,-1,255,0,-1,-1,-252645121,-252645136,-252645136,-252645136,252645360,252645135,252645135,252645135,-241,-1,0,0,0,-596246528,-589768488,118,2013265920,-657666868,-960051508,204,-33554432,-1061108026,-1061109568,192,0,1828585472,1819044972,108,-33554432,405823686,-966774760,254,0,-662831104,-656877352,112,0,1717960704,1717986918,-1067425668,0,417101312,404232216,24,2113929216,1717976088,406611558,126,939524096,-20527508,1824966342,56,939524096,-960051604,1819044972,238,503316480,1040980016,1717986918,60,0,-612499456,8313819,0,0,-612497917,1618932699,192,469762048,2086690864,811622496,28]},{"sector":14,"length":512,"data":[0,-960051588,-960051514,198,0,65024,-33554178,0,0,2115508224,6168,126,0,101455920,3151884,126,0,1613764620,792624,126,234881024,404232987,404232216,404232216,404232216,404232216,-656926696,28888,0,1572864,1572990,0,0,-596246528,14448128,0,1815609344,14444,0,0,0,0,6168,0,0,0,24,0,202309632,202116108,1013738732,28,913047552,909522486,0,0,1715208192,2117212172,0,0,0,2122219008,2122219134,0,0,0,0,0,527872,65536,0,0,0,0,-2119859842,-2120630911,126,-8519680,-1006632997,8323047,0,-16880640,947715838,16,268435456,2097052728,4152,0,-415482856,404285415,60,1008205824,2130706302,3938328,0,402653184,1588284,-16777216,-1,-1010571265,-25,255,1715208192,1013334594,-16777216,-1,-1111647805,-15463,255,840568350,-858993544,120,1715208192,406611558,1579134,0,809448255,-261083088,224,1669267456,1667457919,-1058609305,0,1020991512,417021159,24,-1065353216,-117507872]},{"sector":15,"length":512,"data":[8437984,0,1041106434,101596926,2,1008205824,404232318,1588350,0,1717986918,1711302246,102,-612433920,461102043,1776411,2080374784,1815634118,946652870,8177164,0,0,16711422,0,410926104,1014896664,32280,1008205824,404232318,1579032,0,404232216,1014896664,24,0,217975832,24,0,1613758464,3170558,0,0,-1061109760,254,0,1814560768,2649342,0,268435456,2088515640,65278,0,2097085952,272119932,0,0,0,0,0,1010580504,402659352,24,610690662,0,0,0,1828613228,1828613228,108,-964945896,108839106,410830470,24,-960364544,1714427916,198,1815609344,-596232084,7785676,404226048,12312,0,0,403439616,808464432,792624,0,202119216,403442700,48,0,1023360102,102,0,404226048,1579134,0,0,0,806885400,0,0,254,0,0,0,1579008,0,403441154,-2134876112,0,1815609344,-959002938,3697862,0,410531864,404232216,126,-964952064,806882310,16696928,0,101107324,-972683716,124,470548480,-20157380,1969164,0]}]],[[{"sector":1,"length":512,"data":[-1061109506,-972683524,124,1614282752,-956514112,8177350,0,201770750,808464408,48,-964952064,-964901178,8177350,0,-960051588,201721470,120,402653184,24,6168,0,1579008,404226048,48,403439616,1623220272,792624,0,2113929216,8257536,0,811597824,201722904,6303768,0,214353532,402659352,24,-964952064,-555819322,8175836,0,-965986288,-960037178,198,1727791104,1719428710,16541286,0,-1061001668,1724039360,60,1828192256,1717986918,16280678,0,1751279358,1717725304,254,1727922176,1752721506,15753312,0,-1061001668,1724309184,58,-960102400,-956381498,13027014,0,404232252,404232216,60,203292672,202116108,7916748,0,1819043558,1718381688,230,1626341376,1616928864,16672354,0,-687935802,-960051514,198,-423231488,-824246538,13027014,0,-960051588,-960051514,124,1727791104,1618765414,15753312,0,-960051588,-556349754,3708,1727791104,1820092006,15099494,0,1623639676,-960099272,124,2122186752,404232282,3938328,0,-960051514,-960051514,124,-960102400,-960051514,1063020,0,-960051514,1828640470,108,-960102400,2084076742,13027014,0,1717986918,404232252]},{"sector":2,"length":512,"data":[60,-956432384,1613764748,16697026,0,808464444,808464432,60,-1065353216,473460960,132622,0,202116156,202116108,268435516,13003832,0,0,0,0,0,16711680,792624,0,0,0,2013265920,-859014132,118,1625292800,1718384736,8152678,0,2080374784,-960446266,124,203161600,-865321972,7785676,0,2080374784,-960430394,124,907804672,813445170,7876656,0,1979711488,2093796556,7916556,1625292800,1719037024,15099494,0,939530264,404232216,60,101056512,101060096,1717962246,60,1717592288,1718384748,230,406323200,404232216,3938328,0,-335544320,-690563330,214,0,1718017024,6710886,0,2080374784,-960051514,124,0,1718017024,1616936038,240,1979711488,2093796556,1969164,0,1719065600,15753312,0,2080374784,-971214650,124,806354944,808516656,1848880,0,-872415232,-858993460,118,0,-960051712,1063020,0,-973078528,-19474746,108,0,946652672,13003832,0,-973078528,2126956230,7867398,0,416087552,16672304,0,404232206,404232304,14,404226048,404232216,1579032,0,404232304,404232206,112,56438]},{"sector":3,"length":512,"data":[0,0,0,940572672,-20527508,0,1715208192,-1061109566,205285058,120,-872415028,-858993460,118,806882304,-20546560,8177344,268435456,2013293624,-859014132,939524214,940623468,-20527508,13027014,1610612736,2013272112,-859014132,118,-612433920,461102043,1776411,0,2080374784,-960446266,7867516,1815613440,-20546560,8177344,0,2080374982,-960430394,124,405823488,-20546560,8177344,0,939524198,404232216,60,1715214336,404240384,3938328,0,0,0,419365119,940574220,-20527508,13027014,-964952064,-965986208,205024454,201358534,1727922200,1752721506,16672354,1585152,1751279358,1717725304,939524350,1727922284,1752721506,16672354,268435456,2080402488,-960051514,124,1727922374,1752721506,16672354,6684672,404232252,404232216,60,-864538624,-858993664,7785676,1610612736,-872409040,-858993460,118,0,-960070458,13008070,7092224,-960051588,-960051514,124,-960102202,-960051514,8177350,402653184,-1060733928,410830528,24,1684813824,1616965728,16574048,1585152,-960051514,-960051514,939524220,-960102292,-960051514,8177350,234881024,404232219,404232318,28888,404232192,24,404232216,403439616,48,0,0,806882304,-960070656,8177350]},{"sector":4,"length":512,"data":[201326592,-872402920,-858993460,118,198,0,0,0,0,0,7867416,204999800,30732,0,16711680,0,0,1006632960,406585446,404232216,3938328,0,0,-1061109506,0,0,117309440,1542,1610612736,1818649568,-1016188904,2034694,1675649024,907701350,104847982,819986438,418133731,1071279670,1542,0,1826122806,54,0,1826095104,14183478,285212672,289673540,289673540,289673540,1437226308,1437226410,1437226410,-576039510,-579347081,-579347081,-579347081,404232311,404232216,404232216,404232216,404232216,418912280,404232216,404232216,418912280,404232440,907548696,909522486,922105398,909522486,54,0,909522686,3552822,0,418912504,404232216,909522456,116799030,909522678,909522486,909522486,909522486,909522486,54,117309440,909522678,909522486,909522486,16647926,0,909522432,909522486,254,402653184,404232216,16259320,0,0,0,404232440,404232216,404232216,2037784,0,404232192,404232216,255,0,0,419364864,404232216,404232216,404232216,404232223,1579032,0,16711680,0,404232192,404232216,404232447,404232216,404232216,404690975,404232216,909522456,909522486]},{"sector":5,"length":512,"data":[909522487,909522486,909522486,4141111,0,0,809435136,909522487,909522486,909522486,16711927,0,0,16711680,909522679,909522486,909522486,909586487,909522486,54,16711680,255,905969664,909522486,922157303,909522486,404232246,16717848,255,905969664,909522486,16725558,0,0,16711680,404232447,1579032,0,922681344,909522486,909522486,909522486,63,402653184,404232216,2037791,0,0,404684800,404232223,1579032,0,910098432,909522486,909522486,909522486,909522687,406206006,404232216,419371263,404232216,404232216,404232216,248,0,0,404684800,404232216,-232,-1,-1,16777215,0,-65536,-1,-252645121,-252645136,-252645136,267448560,252645135,252645135,252645135,-241,-1,0,0,0,-656640512,7789784,0,-858993544,-960049960,204,-956432384,-1061109562,12632256,0,-33554432,1819044972,108,-956432384,806891616,16696928,0,2113929216,-656877352,112,0,1717986816,1618765414,192,-596246528,404232216,24,410910720,1717986876,8263740,0,-960074696,1824966398,56,1815609344,1824966342,15625324,0,202911774,1717986878,60]},{"sector":6,"length":512,"data":[0,-606372352,126,0,-612497917,1618932699,192,807272448,1618894944,1978464,0,-960070656,-960051514,198,-33554432,16646144,65024,0,2115508224,6168,126,405798912,403441164,8257584,0,1613764620,792624,126,454757888,404232216,404232216,404232216,404232216,1893259288,0,0,8257560,24,0,-596246528,14448128,0,946629688,0,0,0,0,6168,0,0,1572864,0,202309632,202116108,1013771276,28,909522540,13878,0,1715208192,2117212172,0,0,0,2122219134,32382,0,0,0,134217728,8,1,0,-1518240256,-2120630911,-604012930,-1588225,-16880514,272137470,2084048896,272137470,947664896,282525438,2084048952,276627198,402653240,1588284,-402653440,-1588285,1715208447,1013334594,-1715208448,-1013334595,252121087,-858993539,1717976184,2115517542,1060323096,-261083088,2137227232,-429431965,1020991680,-616765465,-119504872,-2132739842,1041105408,34488062,2117867520,1014896664,1717986840,1711302246,-606372096,454761339,1013005824,-2042861978,124,2122219008,2117867520,406617624,2117867775,404232216,404232192,406617624,202899456,1576190,1613758464,3170558,-1073741824]},{"sector":7,"length":512,"data":[16695488,1713635328,2385663,1008205824,16777086,-65536,1588350,0,0,1010571264,402659352,610690560,0,-26448896,1819082348,1614682112,410781244,-859439104,-966381544,946616320,1993137270,806885376,0,806882304,202911792,202911744,806882316,1013317632,6700287,404226048,1579134,0,404226048,48,126,0,404226048,403441152,-2134876112,-965986304,946652886,406329344,2115508248,113671168,-26857444,113671168,2093352508,1815878656,504168140,-1061093888,2093352700,-1067436032,2093401852,214367744,808464408,-960070656,2093401724,-960070656,2014054014,404226048,404226048,404226048,404226048,403441200,101455920,2113929216,8257536,405823488,1613764620,214334464,402659352,-557417472,2025905886,-965986304,-960051458,1718025216,-60397956,-1067041792,1013366976,1718417408,-127113626,1751318016,-27105160,1751318016,-262117256,-1067041792,979816128,-960051712,-960051458,404241408,1008211992,202120704,2026687500,1818682880,-429495176,1616965632,-26844576,-17906176,-960047362,-152648192,-960049442,-960070656,2093401798,1718025216,-262119300,-960070656,2093926086,1718025230,-429495172,812006400,1013320728,1518239232,1008211992,-960051712,2093401798,-960051712,946652870,-960051712,1828640470,1824966144,-960074696,1717986816,1008212028,-1933115904,-26856936,808467456,1009791024,811646976]},{"sector":8,"length":512,"data":[33950744,202128384,1007422476,1815613440,198,0,0,202911999,0,2013265920,1993112588,2086723584,-597268890,2080374784,2093400262,2081168384,1993133260,2080374784,2093022918,1617312768,-262119176,1979711488,209505484,1818288376,-429496714,939530240,1008211992,100664832,1717962246,1717624892,-429098900,404240384,1008211992,-335544320,-690563330,-603979776,1717986918,2080374784,2093401798,-603979776,1618765414,1979711728,209505484,-603979746,-262119306,2113929216,-66683712,-63950848,473313328,-872415232,1993133260,-973078528,946652870,-973078528,1828640470,-973078528,-965986196,-973078528,108971718,2113929468,2117212236,404229632,236460144,404232192,404232216,404254720,1880627214,14448128,0,940572672,-20527508,-1060733952,209503936,-872362888,1993133260,2081950720,2093022918,2021817344,1993112588,948075520,-956381588,2014851072,1993112588,-606372096,454761339,2113929216,209633472,2088926264,2093022918,2080425472,2093022918,2081959936,2093022918,939550208,1008211992,948075520,1008211992,0,16711680,940316927,-956381588,1013005824,-2042861978,-30402436,-20907840,-31969280,-20906816,-29083648,-20906816,2088926208,2093401798,-33503744,-20906816,1006659072,1008211992,8681472,1993133260,-869244928,1993133260,2093350912,-964901178,948075520,946652780,-973027840,2093401798,2115508224,410960064,1684813848]},{"sector":9,"length":512,"data":[-60399376,-969908224,2093401798,8551424,2093401798,404426240,1893210172,404232192,404226048,806882328,0,2081950720,2093401798,-869263360,1993133260,12976128,0,0,202899456,940341368,30732,65280,0,1015119360,1008211992,0,12632318,0,395006,1827037952,-865717378,1827037967,-546687366,1681056006,1596651066,1714618498,3368652,1724645376,13395507,579346944,579347080,1437226376,1437226410,2011002794,2011002845,404232413,404232216,404232216,404289560,-132638696,404289560,909522456,909571638,54,909573632,-134217674,404289560,-164219368,909571590,909522486,909522486,-33554378,909571590,-164219338,65030,909522432,65078,-132638720,63512,0,404289536,404232216,7960,404232192,65304,0,404291328,404232216,404234008,24,65280,404232192,404291352,521672728,404234008,909522456,909522742,926299702,16176,1056964608,909522736,-147442122,65280,-16777216,909571840,926299702,909522736,-16777162,65280,-147442176,909571840,-15198154,65280,909522432,65334,-16777216,404291328,24,909573888,909522486,16182,521672704,7960,520093696,404234008,24,909524736,909522486,909573942,-15198154,404291352,404232216,63512,0,404233984,-232,-1,255]},{"sector":10,"length":512,"data":[-256,-252645121,-252645136,252645360,252645135,-241,255,1979711488,1994180828,-859015168,-859386664,-1060700672,-1061109568,-33554432,1819044972,1623653888,-20553680,2113929216,1893259480,1711276032,2087085670,-596246336,404232216,1008238080,406611558,-965986178,946652926,-965986304,-294884154,202903040,1013343806,2113929216,8313819,2114717184,1618926555,1613766336,506486910,-964952064,-960051514,16646144,16646398,2115508224,2113935384,202911744,2113941528,806882304,2113932312,454757888,404232216,404232216,-656926696,1572976,1572990,-596246528,14448128,1819031552,56,0,6168,0,24,202116864,1013771276,909536284,13878,403470336,31792,1006632960,3947580,0,0,1358961664,16777445,1095189760,538976288,221472,0,12531968,50331904,270930432,8,1,0,0,0,2113929216,-2122209919,-2122212931,126,2113929216,-9217,-6205,126,0,-16880640,947715838,16,0,2084048896,272137470,0,0,-415482856,404285415,60,0,-8504296,404258559,60,0,402653184,1588284,0,-256,-402653185,-1588285,-1,255,1715208192,1013334594,0,-256,-1715208193,-1013334595,-1,503316735,2016549390,-858993460]},{"sector":11,"length":512,"data":[120,1006632960,1717986918,410916924,24,1056964608,808468275,-261083088,224,2130706432,1667465059,-412654749,49382,0,1020991512,417021159,24,-1065353216,-17239840,-1059000072,128,100794368,-29483506,101588542,2,402653184,404258364,406617624,0,1711276032,1717986918,1711302246,102,2130706432,2078006235,454761243,27,-964952064,-965986208,205024454,31942,0,0,-16843264,254,402653184,404258364,406617624,126,402653184,404258364,404232216,24,402653184,404232216,1014896664,24,0,202899456,1576190,0,0,1613758464,3170558,0,0,-1073741824,16695488,0,0,1814560768,2649342,0,0,943198208,-16876420,0,0,2097085952,272119932,0,0,0,0,0,402653184,406600764,402659352,24,1717960704,9318,0,0,0,1828613228,1828613228,108,2081953792,2093007558,-964295162,1579132,0,214352384,-966774760,134,939524096,1983409260,-858993444,118,808452096,24624,0,0,201326592,808464408,405811248,12,805306368,202116120,403442700,48,0,1013317632,6700287,0,0,404226048,1579134]},{"sector":12,"length":512,"data":[0,0,0,404226048,12312,0,0,254,0,0,0,402653184,24,0,201720320,-1067438056,128,939524096,-691616148,1824966358,56,402653184,404256824,404232216,126,2080374784,403441350,-960470992,254,2080374784,1007027910,-972683770,124,201326592,-865321956,202116350,30,-33554432,-54476608,-972683770,124,939524096,-54476704,-960051514,124,-33554432,201721542,808464408,48,2080374784,2093401798,-960051514,124,2080374784,2126956230,201721350,120,0,1579008,404226048,0,0,1579008,404226048,48,0,806882310,202911840,6,0,8257536,32256,0,0,202911840,806882310,96,2080374784,403490502,402659352,24,0,-557398404,-1059266850,124,268435456,-960074696,-960051458,198,-67108864,2087085670,1717986918,252,1006632960,-1061109146,1724039360,60,-134217728,1717986924,1818650214,248,-33554432,2020106854,1717723240,254,-33554432,2020106854,1616928872,240,1006632960,-1061109146,1724303070,58,-973078528,-20527418,-960051514,198,1006632960,404232216,404232216,60,503316480,202116108,-858993652,120,-436207616,2020370022,1717988472]},{"sector":13,"length":512,"data":[230,-268435456,1616928864,1717723232,254,-973078528,-687931666,-960051514,198,-973078528,-553715994,-960051506,198,2080374784,-960051514,-960051514,124,-67108864,2087085670,1616928864,240,2080374784,-960051514,-556349754,920700,-67108864,2087085670,1717986924,230,2080374784,945866438,-960100852,124,2113929216,404249214,404232216,60,-973078528,-960051514,-960051514,124,-973078528,-960051514,946652870,16,-973078528,-691616058,-285288746,108,-973078528,947678406,-965968840,198,1711276032,1013343846,404232216,60,-33554432,403474118,-960339920,254,1006632960,808464432,808464432,60,0,1893777536,101588024,2,1006632960,202116108,202116108,60,1815613440,198,0,0,0,0,0,16711680,405798912,12,0,0,0,209190912,-858993540,118,-536870912,1819828320,1717986918,124,0,-964952064,-960446272,124,469762048,1815874572,-858993460,118,0,-964952064,-960446210,124,469762048,2016424502,808464432,120,0,-864681984,-858993460,2026638460,-536870912,1986814048,1717986918,230,402653184,406323224,404232216,60,100663296,101580806,101058054,1013343750,-536870912,1818648672,1718384760]},{"sector":14,"length":512,"data":[230,939524096,404232216,404232216,60,0,-18087936,-690563370,198,0,1725693952,1717986918,102,0,-964952064,-960051514,124,0,1725693952,1717986918,-262119300,0,-864681984,-858993460,504106108,0,1994129408,1616928870,240,0,-964952064,-972277664,124,268435456,821833776,909127728,28,0,-859045888,-858993460,118,0,-960102400,1824966342,56,0,-960102400,-19474730,108,0,1824915456,1815623736,198,0,-960102400,-960051514,-133429634,0,-855769088,-966774760,254,234881024,1880627224,404232216,14,402653184,404232216,404232216,24,1879048192,236460056,404232216,112,-596246528,0,0,0,0,1815613440,-20527418,0,1006632960,-1061109146,1724039360,7346236,-872415232,-859045888,-858993460,118,403439616,-964952016,-960446210,124,940572672,209191020,-858993540,118,-872415232,209190912,-858993540,118,811597824,209190936,-858993540,118,1815609344,209190968,-858993540,118,0,-964952064,-960446272,7346300,940572672,-964951956,-960446210,124,-973078528,-964952064,-960446210,124,811597824,-964952040,-960446210,124,1711276032,406323200,404232216]},{"sector":15,"length":512,"data":[60,1008205824,406323302,404232216,60,811597824,406323224,404232216,60,12976128,-965986288,-960037178,198,946616320,-965986288,-960037178,198,1575936,1751279358,1717725304,254,0,921436160,-656900554,110,1040187392,-20132756,-858993460,206,940572672,-964951956,-960051514,124,-973078528,-964952064,-960051514,124,811597824,-964952040,-960051514,124,2016411648,-859045684,-858993460,118,811597824,-859045864,-858993460,118,-973078528,-960102400,-960051514,2014054014,12976128,-960051588,-960051514,124,12976128,-960051514,-960051514,124,0,-964952064,-957950258,124,1815609344,1626366052,-429891488,252,2080636928,-690565426,-421079338,16508,-856162304,-859506484,-858993442,198,453902336,2115508248,-669509608,112,806879232,209191008,-858993540,118,403439616,406323248,404232216,60,806879232,-964951968,-960051514,124,806879232,-859045792,-858993460,118,1979711488,1725694172,1717986918,102,14448128,-17373498,-960049442,198,1006632960,4090988,126,0,939524096,3697772,124,0,805306368,808452144,-960053152,124,0,-33554432,-1061109568,0,0,-33554432,101058054,0,-530579456,409757282,-2032377808]}],[{"sector":1,"length":512,"data":[4069388,-530579456,409757282,-1697749456,394815,402653184,404226072,1010580504,24,0,1815478272,3566808,0,0,-964901376,2093401798,198,289673472,289673540,289673540,289673540,1437226308,1437226410,1437226410,1437226410,-579347030,-579347081,-579347081,-579347081,404232311,404232216,404232216,404232216,404232216,404232216,404232440,404232216,404232216,418912280,404232440,404232216,909522456,909522486,909522678,909522486,54,0,909522686,909522486,54,418906112,404232440,404232216,909522456,116799030,909522678,909522486,909522486,909522486,909522486,909522486,54,117309440,909522678,909522486,909522486,116799030,254,0,909522432,909522486,254,0,404232192,418912280,248,0,0,0,404232440,404232216,404232216,404232216,31,0,404232192,404232216,255,0,0,0,404232447,404232216,404232216,404232216,404232223,404232216,24,0,255,0,404232192,404232216,404232447,404232216,404232216,404690968,404232223,404232216,909522456,909522486,909522487,909522486,909522486,808924726,63,0,0,809435136,909522487,909522486,909522486,16201270,255,0,0,16711680,909522679]},{"sector":2,"length":512,"data":[909522486,909522486,808924726,909522487,909522486,54,16711680,255,0,909522432,16201270,909522679,909522486,404232246,16717848,255,0,909522432,909522486,255,0,0,16711680,404232447,404232216,24,0,909522687,909522486,909522486,909522486,63,0,404232192,404690968,31,0,0,404684800,404232223,404232216,24,0,909522495,909522486,909522486,909522486,909522687,909522486,404232246,419371032,404232447,404232216,404232216,404232216,248,0,0,0,404232223,404232216,-232,-1,-1,-1,255,0,-1,-1,-252645121,-252645136,-252645136,-252645136,252645360,252645135,252645135,252645135,-241,-1,0,0,0,-596246528,-589768488,118,2013265920,-657666868,-960051508,204,-33554432,-1061108026,-1061109568,192,0,1828585472,1819044972,108,-33554432,405823686,-966774760,254,0,-662831104,-656877352,112,0,1717960704,1717986918,-1067425668,0,417101312,404232216,24,2113929216,1717976088,406611558,126,939524096,-20527508,1824966342,56,939524096,-960051604,1819044972,238,503316480,1040980016,1717986918]},{"sector":3,"length":512,"data":[60,0,-612499456,8313819,0,0,-612497917,1618932699,192,469762048,2086690864,811622496,28,0,-960051588,-960051514,198,0,65024,-33554178,0,0,2115508224,6168,126,0,101455920,3151884,126,0,1613764620,792624,126,234881024,404232987,404232216,404232216,404232216,404232216,-656926696,28888,0,1572864,1572990,0,0,-596246528,14448128,0,1815609344,14444,0,0,0,0,6168,0,0,0,24,0,202309632,202116108,1013738732,28,913047552,909522486,0,0,1715208192,2117212172,0,0,0,2122219008,2122219134,0,0,0,0,0,527872,65536,0,0,0,0,-2119859842,-2120630911,126,-8519680,-1006632997,8323047,0,-16880640,947715838,16,268435456,2097052728,4152,0,-415482856,404285415,60,1008205824,2130706302,3938328,0,402653184,1588284,-16777216,-1,-1010571265,-25,255,1715208192,1013334594,-16777216,-1,-1111647805,-15463,255,840568350,-858993544,120,1715208192,406611558,1579134]},{"sector":4,"length":512,"data":[0,809448255,-261083088,224,1669267456,1667457919,-1058609305,0,1020991512,417021159,24,-1065353216,-117507872,8437984,0,1041106434,101596926,2,1008205824,404232318,1588350,0,1717986918,1711302246,102,-612433920,461102043,1776411,2080374784,1815634118,946652870,8177164,0,0,16711422,0,410926104,1014896664,32280,1008205824,404232318,1579032,0,404232216,1014896664,24,0,217975832,24,0,1613758464,3170558,0,0,-1061109760,254,0,1814560768,2649342,0,268435456,2088515640,65278,0,2097085952,272119932,0,0,0,0,0,1010580504,402659352,24,610690662,0,0,0,1828613228,1828613228,108,-964945896,108839106,410830470,24,-960364544,1714427916,198,1815609344,-596232084,7785676,404226048,12312,0,0,403439616,808464432,792624,0,202119216,403442700,48,0,1023360102,102,0,404226048,1579134,0,0,0,806885400,0,0,254,0,0,0,1579008,0,403441154,-2134876112,0,1815609344,-959002938,3697862,0,410531864]},{"sector":5,"length":512,"data":[404232216,126,-964952064,806882310,16696928,0,101107324,-972683716,124,470548480,-20157380,1969164,0,-1061109506,-972683524,124,1614282752,-956514112,8177350,0,201770750,808464408,48,-964952064,-964901178,8177350,0,-960051588,201721470,120,402653184,24,6168,0,1579008,404226048,48,403439616,1623220272,792624,0,2113929216,8257536,0,811597824,201722904,6303768,0,214353532,402659352,24,-964952064,-555819322,8175836,0,-965986288,-960037178,198,1727791104,1719428710,16541286,0,-1061001668,1724039360,60,1828192256,1717986918,16280678,0,1751279358,1717725304,254,1727922176,1752721506,15753312,0,-1061001668,1724309184,58,-960102400,-956381498,13027014,0,404232252,404232216,60,203292672,202116108,7916748,0,1819043558,1718381688,230,1626341376,1616928864,16672354,0,-687935802,-960051514,198,-423231488,-824246538,13027014,0,-960051588,-960051514,124,1727791104,1618765414,15753312,0,-960051588,-556349754,3708,1727791104,1820092006,15099494,0,1623639676,-960099272,124,2122186752,404232282,3938328,0,-960051514,-960051514,124]},{"sector":6,"length":512,"data":[-960102400,-960051514,1063020,0,-960051514,1828640470,108,-960102400,2084076742,13027014,0,1717986918,404232252,60,-956432384,1613764748,16697026,0,808464444,808464432,60,-1065353216,473460960,132622,0,202116156,202116108,268435516,13003832,0,0,0,0,0,16711680,792624,0,0,0,2013265920,-859014132,118,1625292800,1718384736,8152678,0,2080374784,-960446266,124,203161600,-865321972,7785676,0,2080374784,-960430394,124,907804672,813445170,7876656,0,1979711488,2093796556,7916556,1625292800,1719037024,15099494,0,939530264,404232216,60,101056512,101060096,1717962246,60,1717592288,1718384748,230,406323200,404232216,3938328,0,-335544320,-690563330,214,0,1718017024,6710886,0,2080374784,-960051514,124,0,1718017024,1616936038,240,1979711488,2093796556,1969164,0,1719065600,15753312,0,2080374784,-971214650,124,806354944,808516656,1848880,0,-872415232,-858993460,118,0,-960051712,1063020,0,-973078528,-19474746,108,0,946652672,13003832,0,-973078528,2126956230,7867398,0,416087552]},{"sector":7,"length":512,"data":[16672304,0,404232206,404232304,14,404226048,404232216,1579032,0,404232304,404232206,112,56438,0,0,0,940572672,-20527508,0,1715208192,-1061109566,205285058,120,-872415028,-858993460,118,806882304,-20546560,8177344,268435456,2013293624,-859014132,118,12976128,2081191936,7785676,1610612736,2013272112,-859014132,118,946616320,2081191936,7785676,0,2080374784,-960446266,7867516,1815613440,-20546560,8177344,0,2080374982,-960430394,124,405823488,-20546560,8177344,0,939524198,404232216,60,1715214336,404240384,3938328,1610612736,939530288,404232216,60,940572870,-20527508,13027014,946616320,-965986288,-960037178,201326790,1727922200,1752721506,16672354,0,-335544320,-656640458,110,1816002560,-855716660,13552844,268435456,2080402488,-960051514,124,12976128,-960070656,8177350,1610612736,2080380976,-960051514,124,-864538624,-858993664,7785676,1610612736,-872409040,-858993460,118,12976128,-960051712,201752262,12976248,-960051588,-960051514,124,-960102202,-960051514,8177350,0,2080374784,-420028722,124,1684813824,1616965728,16574048,67108864,-691089796,-421079338,16508,1718025216,1868980860,15951462,234881024]},{"sector":8,"length":512,"data":[404232219,404232318,28888,806882304,2081191936,7785676,201326592,939536408,404232216,60,806882304,-960070656,8177350,201326592,-872402920,-858993460,118,-596246528,1718017024,6710886,14448128,-17373498,-960049442,198,1819032576,8257598,0,939524096,3697772,124,0,808452096,1613770752,8177350,0,0,-1061109506,0,0,117309440,1542,1610612736,1818649568,-1016188904,2034694,1675649024,907701350,104847982,6,402659352,1010580504,24,0,1826122806,54,0,2093350912,2093401798,285212870,289673540,289673540,289673540,1437226308,1437226410,1437226410,-576039510,-579347081,-579347081,-579347081,404232311,404232216,404232216,404232216,404232216,418912280,404232216,404232216,418912280,404232440,907548696,909522486,922105398,909522486,54,0,909522686,3552822,0,418912504,404232216,909522456,116799030,909522678,909522486,909522486,909522486,909522486,54,117309440,909522678,909522486,909522486,16647926,0,909522432,909522486,254,402653184,404232216,16259320,0,0,0,404232440,404232216,404232216,2037784,0,404232192,404232216,255,0,0,419364864,404232216,404232216,404232216,404232223]},{"sector":9,"length":512,"data":[1579032,0,16711680,0,404232192,404232216,404232447,404232216,404232216,404690975,404232216,909522456,909522486,909522487,909522486,909522486,4141111,0,0,809435136,909522487,909522486,909522486,16711927,0,0,16711680,909522679,909522486,909522486,909586487,909522486,54,16711680,255,905969664,909522486,922157303,909522486,404232246,16717848,255,905969664,909522486,16725558,0,0,16711680,404232447,1579032,0,922681344,909522486,909522486,909522486,63,402653184,404232216,2037791,0,0,404684800,404232223,1579032,0,910098432,909522486,909522486,909522486,909522687,406206006,404232216,419371263,404232216,404232216,404232216,248,0,0,404684800,404232216,-232,-1,-1,16777215,0,-65536,-1,-252645121,-252645136,-252645136,267448560,252645135,252645135,252645135,-241,-1,0,0,0,-656640512,7789784,0,-858993544,-960049960,204,-956432384,-1061109562,12632256,0,-33554432,1819044972,108,-956432384,806891616,16696928,0,2113929216,-656877352,112,0,1717986816,1618765414,192,-596246528,404232216,24,410910720]},{"sector":10,"length":512,"data":[1717986876,8263740,0,-960074696,1824966398,56,1815609344,1824966342,15625324,0,202911774,1717986878,60,0,-606372352,126,0,-612497917,1618932699,192,807272448,1618894944,1978464,0,-960070656,-960051514,198,-33554432,16646144,65024,0,2115508224,6168,126,405798912,403441164,8257584,0,1613764620,792624,126,454757888,404232216,404232216,404232216,404232216,1893259288,0,0,8257560,24,0,-596246528,14448128,0,946629688,0,0,0,0,6168,0,0,1572864,0,202309632,202116108,1013771276,28,909522540,13878,0,1715208192,2117212172,0,0,0,2122219134,32382,0,0,0,134217728,8,1,0,-1518240256,-2120630911,-604012930,-1588225,-16880514,272137470,2084048896,272137470,947664896,282525438,2084048952,276627198,402653240,1588284,-402653440,-1588285,1715208447,1013334594,-1715208448,-1013334595,252121087,-858993539,1717976184,2115517542,1060323096,-261083088,2137227232,-429431965,1020991680,-616765465,-119504872,-2132739842,1041105408,34488062,2117867520,1014896664,1717986840,1711302246,-606372096,454761339,1013005824,-2042861978]},{"sector":11,"length":512,"data":[124,2122219008,2117867520,406617624,2117867775,404232216,404232192,406617624,202899456,1576190,1613758464,3170558,-1073741824,16695488,1713635328,2385663,1008205824,16777086,-65536,1588350,0,0,1010571264,402659352,610690560,0,-26448896,1819082348,1614682112,410781244,-859439104,-966381544,946616320,1993137270,806885376,0,806882304,202911792,202911744,806882316,1013317632,6700287,404226048,1579134,0,404226048,48,126,0,404226048,403441152,-2134876112,-965986304,946652886,406329344,2115508248,113671168,-26857444,113671168,2093352508,1815878656,504168140,-1061093888,2093352700,-1067436032,2093401852,214367744,808464408,-960070656,2093401724,-960070656,2014054014,404226048,404226048,404226048,404226048,403441200,101455920,2113929216,8257536,405823488,1613764620,214334464,402659352,-557417472,2025905886,-965986304,-960051458,1718025216,-60397956,-1067041792,1013366976,1718417408,-127113626,1751318016,-27105160,1751318016,-262117256,-1067041792,979816128,-960051712,-960051458,404241408,1008211992,202120704,2026687500,1818682880,-429495176,1616965632,-26844576,-17906176,-960047362,-152648192,-960049442,-960070656,2093401798,1718025216,-262119300,-960070656,2093926086,1718025230,-429495172,812006400,1013320728,1518239232,1008211992,-960051712,2093401798]},{"sector":12,"length":512,"data":[-960051712,946652870,-960051712,1828640470,1824966144,-960074696,1717986816,1008212028,-1933115904,-26856936,808467456,1009791024,811646976,33950744,202128384,1007422476,1815613440,198,0,0,202911999,0,2013265920,1993112588,2086723584,-597268890,2080374784,2093400262,2081168384,1993133260,2080374784,2093022918,1617312768,-262119176,1979711488,209505484,1818288376,-429496714,939530240,1008211992,100664832,1717962246,1717624892,-429098900,404240384,1008211992,-335544320,-690563330,-603979776,1717986918,2080374784,2093401798,-603979776,1618765414,1979711728,209505484,-603979746,-262119306,2113929216,-66683712,-63950848,473313328,-872415232,1993133260,-973078528,946652870,-973078528,1828640470,-973078528,-965986196,-973078528,108971718,2113929468,2117212236,404229632,236460144,404232192,404232216,404254720,1880627214,14448128,0,940572672,-20527508,-1060733952,209503936,-872362888,1993133260,2081950720,2093022918,2021817344,1993112588,2013316608,1993112588,2014851072,1993112588,2016423936,1993112588,2113929216,209633472,2088926264,2093022918,2080425472,2093022918,2081959936,2093022918,939550208,1008211992,948075520,1008211992,1585152,1008212024,1815660032,-960037178,2087467008,-960037178,-30402560,-20907840,2113929216,-24052206,-865321472,-825438978,2088926208,2093401798,2080425472,2093401798,2081959936,2093401798]},{"sector":13,"length":512,"data":[8681472,1993133260,-869244928,1993133260,-973027840,108971718,1815660284,946652870,-973027840,2093401798,2080505856,2095503054,1684813952,-60399376,-831768064,-1200822570,-858982400,-959461638,404426439,1893210172,2016417792,1993112588,1575936,1008212024,2081950720,2093401798,-869263360,1993133260,14448128,1717987036,14448128,-824248602,1819032576,8257598,1819031552,8126520,402659328,1046687768,0,12632318,0,395006,1827037952,-865717378,1827037967,-546687366,402659334,406600728,1714618368,3368652,2093350912,-964901178,579346944,579347080,1437226376,1437226410,2011002794,2011002845,404232413,404232216,404232216,404289560,-132638696,404289560,909522456,909571638,54,909573632,-134217674,404289560,-164219368,909571590,909522486,909522486,-33554378,909571590,-164219338,65030,909522432,65078,-132638720,63512,0,404289536,404232216,7960,404232192,65304,0,404291328,404232216,404234008,24,65280,404232192,404291352,521672728,404234008,909522456,909522742,926299702,16176,1056964608,909522736,-147442122,65280,-16777216,909571840,926299702,909522736,-16777162,65280,-147442176,909571840,-15198154,65280,909522432,65334,-16777216,404291328,24,909573888,909522486,16182,521672704,7960,520093696,404234008]},{"sector":14,"length":512,"data":[24,909524736,909522486,909573942,-15198154,404291352,404232216,63512,0,404233984,-232,-1,255,-256,-252645121,-252645136,252645360,252645135,-241,255,1979711488,1994180828,-859015168,-859386664,-1060700672,-1061109568,-33554432,1819044972,1623653888,-20553680,2113929216,1893259480,1711276032,2087085670,-596246336,404232216,1008238080,406611558,-965986178,946652926,-965986304,-294884154,202903040,1013343806,2113929216,8313819,2114717184,1618926555,1613766336,506486910,-964952064,-960051514,16646144,16646398,2115508224,2113935384,202911744,2113941528,806882304,2113932312,454757888,404232216,404232216,-656926696,1572976,1572990,-596246528,14448128,1819031552,56,0,6168,0,24,202116864,1013771276,909536284,13878,403470336,31792,1006632960,3947580,0,0,1292504320,1869767529,1952870259,760433952,542330692,539578920,1095189792,1936278560,2036427888,1852786208,1766203508,168650092,1142969165,1444959055,1769173605,908095087,692267040,2037411651,1751607666,959520884,825045304,540293433,1919117645,1718580079,1866670196,1277194354,1852138345,543450483,1702125901,1818323314,1344285984,1701867378,544830578,1293969007,1869767529,1952870259,1819033888,1734963744,544437352,1702061426,1684371058,6688,0,0]},{"sector":15,"length":512,"data":[-1,1474560,1195704353,538977345,8224,-1993474048,771756574,1312396,1397791947,516238878,1200226322,1997552642,1997028401,1431458086,-1744415145,-422449013,-661731188,33658111,771817485,1187525,117655433,1516068702,-955454631,16778055,1204225515,528548611,-878880677,11731924,1638640,11338692,327914,14746574,590110,13370304,1376521,11666370,65775,19465178,65836,19334092,65834,19399626,65835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16777217,0,0,0,0,21302018,70778880,707406336,1768444960,1936269427,1886339872,1734963833,673215592,824191331,758396985,809056561,1667845408,1869836146,706770022,10794,62652416,0,0,0,101632,27648,76544,1140850688,1681818655,74277997,76940438,-972440326,-1022749431,-787754741,956756742,-871931129,-1693973497,-1945612792,-653678839,-1627113461,-66782204,-66782204,-50004732,990194180,1174747909,-1039813371,-66782203,1392891140,-66782202,-16777212,234881023,134744077,-16250880,-16776961]}]],[[{"sector":1,"length":512,"data":[319824127,318903042,318903042,318903042,721556226,-1957510208,-1207931882,-90436595,23849198,1726540866,-997832191,23062766,1525214274,12559105,235911242,22014190,1256778818,-997832191,21227758,-1549931454,1048576193,1946157361,1408643853,583761,20647560,-1017488551,-335295302,-1576984344,-167051086,-274594956,-322260480,184625570,-1576831754,96010540,868528640,-1014326053,-85397766,-68402688,-1383626678,1962281728,-360216572,-421379328,162650507,-1014313294,-622268678,-68402688,-511211446,1962281728,512198660,-421379327,363977099,9705098,-1014305542,74584124,183181324,20655672,-167050123,-1062071180,10741998,-2021069758,-167051060,-2021129100,1140523273,-645148958,378149297,-319160172,-2147449624,-1963325718,2062085827,-68402688,-1282963382,1962281728,-259553276,-421379328,777044893,604059296,1946762255,1946369029,-1017579263,78132932,-164314074,1610909446,-964612492,-58719168,-2093255665,-58703674,-2127334384,-2147401530,712249852,-2143238525,578032380,-2143238525,443814908,104918657,1996749952,-5576695,-964623246,-1070463808,-388896559,1355018243,1139033060,1464976216,1048587859,1946157361,-913550804,1824250254,-737688064,-634894394,280171188,-16117555,1824197236,-1274558976,-1171765306,-402652738,-346358114,1824196179,126365184,-2010249724,1609050183,-1899983617,-1899459368,96895936,-1342132801,431598083,1202057984,-207354703,1005487013,-216419926]},{"sector":2,"length":512,"data":[78727077,-1935281244,-958886200,335579654,664977459,19571201,19440192,117517218,-125059021,1824195761,121735168,-502741117,11313912,-1017553061,-661733325,772018336,20063882,-159390592,33851142,816320372,-1263514507,1947204736,-351816694,1949345798,1356116029,1493118952,-16663725,20004480,-1291684864,133988356,-5039756,1996749952,-2147372270,78142,78840436,1946065896,-1996311806,-956224226,-16699642,1405311999,-1900006626,-153515048,134514438,-947239307,540827684,12256629,-163976418,17073926,1048588917,1996686409,-27334637,95424114,41089082,-667224062,-670956942,-16071682,507119732,41026693,-1014244558,272417834,-1006763403,-1980004833,1526775070,-326412861,142510675,443875082,-584393078,1960786499,1007727377,-167284209,41181380,512285490,113639654,1527709871,255640413,124911792,1966130422,-1575964670,-960298778,58374,11470534,-1070349553,1048631438,1957954659,-2029586700,-311098876,71902858,-1945868640,1407094478,813039370,-478093276,-1966929377,-2115776261,168235235,66879739,-1444411529,-351898883,-868317138,-583104512,-2133292544,-1009770269,-1009728560,1979972736,31686678,-1022750684,-845020660,-1572847616,1077936334,1526779810,-1996508989,-1576999898,-1348337431,-1286356224,1913601027,1623520774,-2008350347,1526785310,-326412861,-661733325,116839600,1946289287,951365634,1963221766,1183470436,182727176,-2146404928,1417090299,-13449334]},{"sector":3,"length":512,"data":[-863533010,1212803840,-2010249355,-352264898,1967654463,-1940434662,-1931964736,-1950314808,13418482,-218101575,1604601765,1210116953,646585717,65537097,1149904637,1977289267,-336124924,1976303110,772279298,117496994,1438866779,1183509643,1931492360,1946369132,1007625322,-1956482301,65438707,19760264,-661733325,71902858,-1596159405,367527011,138840829,1081610284,246879604,20004480,-1224576000,1959329296,-32983290,-2144766520,74778619,13057672,1049153534,1589117116,66813953,1911031927,-1207733252,-939654968,-403245066,12952136,-2000462501,1560326174,419070147,-75495051,-2012974320,-402572522,-225707212,7255179,1931541120,-1021801981,-1950147446,-84767805,7572608,553287683,7115915,7255179,-13490829,-92266360,1343387072,9705098,-1062053652,-59774738,-68238198,1726541507,-997833988,-2000421906,-1408335868,-68287744,419070147,-41940619,-2012974320,-402572522,-1957168436,-1947038725,855666356,63276736,-202780176,-204353115,1472421796,-1946973434,7126010,122257658,-1961784573,-1064566151,-1014047860,-1070344050,-133970554,-202780335,-204353115,1507561124,-92210901,-1977780800,-67901403,-1810462128,-1302795264,-420942144,-289110277,1078445190,351004130,-689429110,-756486405,-997833989,-997831954,-320716729,-1006936313,-2144971951,225777727,41910310,-2012843248,-352240882,79921925,1499195618,1476013032,-1960379509,1857325877,1166681600,-268199934,-1543256189]},{"sector":4,"length":512,"data":[-1017123614,-74755497,898311930,7572608,1821674243,1857325824,1166681600,-268199934,56986150,-92265336,1343387072,9705098,-1062053652,-78124818,-336673654,1323888136,-997833989,80184302,1599782882,1364706299,-410912117,-242515969,-1920275150,775422066,208929073,1964572547,1224638727,1224832084,28373899,134245563,101189441,2039152812,-1933538300,-1899786533,-202780200,-204353115,-1899983196,174021083,1471314422,1397838342,-1064380276,855665851,122156745,-967019519,-1979578553,2139817551,74943234,-372125302,-774789645,-980769549,-248788342,-92268661,-1673890368,9705098,1946724588,-980747525,613073074,-1810462128,-1302795264,-1628901696,-289110278,-1763130234,-499104006,-299847451,1358597352,9705098,-342009620,-2145088986,74827002,393478460,1976498816,1946565636,-285565938,1123707112,-1645296506,1187284554,-2082807232,-75429693,57868428,1358916329,9705098,1189632236,-1408829702,913572096,11273926,19701762,-301913694,-1292226328,15704258,-301944158,955917544,1963012366,-1597197803,664928554,317255169,-1597328646,681705771,1499196929,-1017182374,-74755753,-315428213,7507082,7386251,-1510741551,-1527524911,1438867289,1183509643,71064840,-466480265,-259268399,27632895,-940799147,12912710,1381090141,-555199657,1962871553,-1158630351,96141328,-1945056000,-1610564898,96000654,63879681,-386991460,-2042431071,-2002915644,-1275360763,-1158564859,281870352]},{"sector":5,"length":512,"data":[300473998,-74753032,-1191154498,-207355806,1499094949,1465012675,26208262,930414347,-1902116678,63879898,-1677720648,1592323834,-997833991,1458064110,-16205575,-112203538,-289110462,-1292285720,251836612,-113252114,-289110462,-1962571107,7127027,-896745332,-661732722,4359306,4359482,-2071326091,-2059796411,141885509,8094858,8095034,-1543478599,-1912101389,-1241271846,11386371,12076660,-1664830975,-219615494,-997833992,-997831954,1090054376,-301898614,1123606760,1257161862,-1325868824,73697796,-120592146,-289110462,-1292318488,-1979273010,-301930714,1123597544,-1645296506,-980761422,-1360518006,-285565704,1123592424,-1645296506,1187284554,1946238016,-1964645638,-1106726463,-827195167,-1964497782,-285565704,1123583208,-1645296506,1187284554,1946565696,-1964645638,-1978027583,-1107268586,613023923,-1661442840,1592323834,-997833992,-2041930258,-499104060,-1978758423,13417984,-1810462052,145288192,-1963263116,-1967082811,-130553820,-1810462128,-1302795264,719908544,-289110280,1078379654,548464098,-285729560,1358436584,9705098,-392341268,698415117,115928577,-1597852936,955121842,1963012366,-1597197806,-219676377,-286724361,-1597328649,1609433384,868440410,20226303,322731812,220990583,-466483080,-1114900477,-1581055593,-1993998035,19898631,38242598,-1899262781,21281731,-1898214205,20757443,-58655805,-2144963856,460847868,508973308,254133386,-1948200704,-1899459344,-1349189672]},{"sector":6,"length":512,"data":[1482563329,-94871857,925826862,335314945,-1557203593,-469106382,942540661,1963012390,-1974054867,-259286844,20226094,976125732,1912728964,518443472,117317390,-1963196092,-16698074,520209812,-469084066,-469105035,20226606,788176028,20389631,772175005,21237502,1448104399,-1899394018,-1123120167,-389184000,1048639529,1946157361,-1209467900,1482563575,251539033,785318212,24782394,-147056523,1455100023,1958742612,1963342858,34322693,-154203726,-58667056,1006925078,772109317,24522495,520040092,-1993473674,771849502,25101964,-1014051956,-821986373,0,0,0,0,1195706893,1698963521,1701013878,1769096224,544367990,1936876886,544108393,825306674,221851694,1886339850,1734963833,673215592,1293953347,1869767529,1952870259,1919894304,1634889584,1852795252,943272224,959524148,168636473,2037411651,1751607666,1126703220,1112088617,959520845,825046584,221722681,1919897610,1852795252,1866670195,1769109872,544499815,539575080,1819764040,762606693,1801675088,543453793,539914051,926431537,168626701,544165412,541148997,1685217640,1701994871,1952801824,1702126437,604638564,1868767297,1864399216,1752440934,1195712613,1698963521,1701013878,1769096224,544367990,1847620457,1763734639,1635021678,1684368492,218762542,541139978,2037411683,543584032,543516788,541148997,1769366852,1142973795,1702259058,1936269426,1768251936,1763731310]},{"sector":7,"length":512,"data":[1635021678,1684368492,218762542,1866671114,1851878765,1768693860,1881171310,1835102817,1919251557,168639091,538970637,1314211360,1482177859,1869881388,1634231072,543516526,542395977,541607474,1668183398,1852795252,1836412448,779248994,538970637,1752639520,543519333,1763727448,808984691,1919448096,1751610735,541476384,1635280232,1768121700,543973741,1818455657,1986622325,168634725,1866861069,2019893362,1819307361,538983013,1230390596,1161643331,1176518983,1027821141,168641345,1428425229,1735289203,1717920800,1953264993,1818326560,1864394101,1128407142,1769166116,1965057902,544367987,1768318308,543450478,1970037110,1718558821,609769504,1868963912,1852383346,1920099700,544501877,541607474,1668183398,1852795252,1818321696,221148012,1968055306,1919246957,1935765536,543450483,1176530804,541281877,1763734377,1818326638,539911273,1701139232,1635280160,1701605485,1868718368,221144438,1849762826,1701344367,1919950962,1634887535,1634213997,1868767347,1869771886,1718558828,1701344288,1414416672,1212559904,1853187616,1869182051,1970151534,1919246957,1124732206,1869508193,1867260020,1159750753,1142964551,1667855973,1917067365,1919252073,604638510,1868767297,1864399216,1752440934,1195712613,1698963521,1701013878,1769096224,544367990,1629516649,1634038380,1814067556,1701077359,168636004,1461979661,1768845921,555837294,1699880992,1667329136,543649385,1864396385,1663067244]},{"sector":8,"length":512,"data":[544829551,1948280431,1159751016,1142964551,1667855973,1917067365,1919252073,604638510,623098108,-854492230,-803304671,-762853620,-2096308212,34394118,33621703,401080851,-1169721599,1894256005,-855002110,-1173769183,567086496,567095476,-930357114,1187525,856706956,239569344,52427137,-1557260173,1200095236,16351501,-2130283517,1963133689,239585029,213385324,-269958272,-390630912,-1075314281,-1171426303,-922874034,-75388812,544560214,-1174287896,-1703735380,168775354,-1953270300,-955461602,-485698937,-804879601,65733132,-402535960,12058776,-1596420608,-1574042489,-2002779851,916598276,-1977912319,-1610331866,-266075037,-1947030552,-2046771954,-206837555,-661733333,-508034804,109574667,-1557266368,-930348745,4327047,20554542,-2029220936,771800070,-1946061149,-1106868280,-1557202176,1235222904,883043844,-1899262975,839153115,-401551900,162791807,-854731078,-1894872031,-1961980927,304006401,239585024,1334578384,-1010814192,280171188,-1015017267,12108796,-841272550,1964653584,133922829,-75496076,-1576831736,-809303759,1187525,-401442875,1223163950,-389467647,222036035,1017913716,-1393265338,-277523140,1968061612,1128049898,870901109,4122624,2049345582,-1009224959,-24387957,-1064380276,1947024556,1918974989,2004499462,-1428216830,-208933141,540847299,154991476,-1018235020,1948269740,1946762491,1950170359,-617364493,-456071286,-456071984,-2010192688,1007611271,1009087024]},{"sector":9,"length":512,"pattern":0,"data":[738621241,-337638864,1916877836,2001091607,171387923,-2143048480,-764280069,1921055872,-1010005501,-116451654,246921923,57985290,-1945185862,-1948741944,-1995648994,-2096311657,34394118,214965899,215123911,109252336,-1023275824,-1064386509,-1138834394,197168128,856454360,2049346267,-842823167,-1010824657,24782474,801965744,1414986625,-466480779,34339201,124914039,57987594,-1022756224,-617350476,-620031795,-2144985484,410452543,-2144991374,1930101119,-803304689,-762853620,-2096110836,34394118,129585859,-1948568832,185389719,-1274514222,1126288649,1525736003,-24437053,-1064380276,-5173840,-1325551886,-218123949,2097036206,-8552151,-210413229,788430208,1195896181,1015084939,-1944881907,-1948741944,-955461602,235721351,-804879602,-65076724,195]},{"sector":10,"length":512,"data":[6183501,15401197,64,405929983,-425981952,212140032,64,0,0,0,0,0,0,0,0,102400,212140097,226,230,234,240,107282474,212144562,212144566,212144570,212144574,212144578,212144582,212144586,212144590,212144594,212144598,212144602,212144606,212144610,212144614,212144618,212144622,212144626,212144630,212144634,212144638,212144642,212144646,212144650,212144654,212144658,212144662,212144666,212144670,212144674,212145722,212146141,212146158,212146177,212146189,212146206,212146215,212146246,212146251,212146327,212146853,212146866,212146922,212146976,212146996,212147016,212147039,212147071,212147154,212147163,212147173,212147202,212147223,212147254,212147279,212147342,212147359,212147370,212147394,212147697,212148239,212148818,212150645,212150689,212150757,212150882,212150887,212151227,212151243,212151270,212151284,212157459,212158596,212161418,212161473,212161987,212162089,212163385,212163428,736,738,212173059,212173129,212173411,212173419,212173525,212182501,212182545,212182596,212182601,212182618,212182635,212182652,212182669,212182686,212182703,212182720,212182737,212182754,212182771,212182788,212182830,212182835,212183005,212183099,212183130,212183517]},{"sector":11,"length":512,"pattern":0,"data":[212183556,212183940,212184101,212184165,212184207,212184241,960,977,1025,1030,1035,1040,1056,107282704,107282881,107282924,107283083,107283153,107283226,107285666,107285870,107286044,107286139,107286173,107286252,107286506,107286651,107286691,212184900,107287303,1269,212185266,212185299,212185317,107294790,107294913,1462,12649411,12649457,1886,2114,212185556,212185558,212185564,212185566,212185572,212185574,212185580,212185588,212185590,212185596,212185598,212185604,212185606,212185612,212185614,212185620,212185622,212185628,212185636,212185644,212185646,212185652,212185654,212185682,212185704,212185818,212185838,107296666,107300675,107301036,2278,12651530,12651651,12651729,107305157,107305777,12651978,12652166,2574,212185880,212186762,212186916,212186956,212186969,2754,2758,2762,2766,2770,2774,2778,2782,2786,2790,2794,2798,2802,12652233,12652249,12652268,12652273,12652553,12652632,12652651,12652687,12652718,12652763,12652955,12653026,12653378,12653485,12653523,12653557,12653643,212187101,212187106,212187123,212187140,212187157,212187174,212187182,212187288]},{"sector":12,"length":512,"data":[65535,5029888,1296367742,1482184781,15478872,1380141389,1179603791,1480925268,1145979216,1293960261,1380928837,1095573593,1162297678,942874706,-28618,-1073741824,8257612,1481461028,811096152,-869335250,-1157212406,-1014042624,-381779674,1967338495,116862490,133310,12063093,-1961439756,-503235112,45614453,118935028,-13712545,708654,0,0,0,168636676,860704069,1462711864,1868852841,1763734391,1919251566,1701011814,1767990816,1701999980,1159733294,942886221,1769414710,1914727532,1767992677,1718558830,168636006,36,0,0,0,270,293,482,-1155640474,-611450880,1929641088,-1965346032,48480732,-526385362,1533419264,-117328693,-466421781,149554935,41222145,1048576436,1963067646,46432259,1962949835,-33110516,113639432,-347799542,1963015267,-96566488,-2029059832,1048772766,251660494,771790213,151404160,-1954279679,-33110528,113639688,-349962230,1963080794,-33110405,243270152,-2097084161,17365566,-2144463243,17368638,1048776308,251660494,-2147482235,-32964826,657094,-12681147,594804744,149554935,1047855105,1912963560,-368147705,854262024,149563011,-33110274,113639688,-148635638,17361414,-2095352832,-32970202,-1325753264,-1333467633,-343546368,-2141676288,17366590,-872939403,1012124665,-1610189568,-1276573440,1963015168,456267,1064567049,182984447,-144305806]},{"sector":13,"length":512,"data":[67681286,1962934272,-534839546,-2144833014,34144270,150933120,-368642302,1962934536,-29458415,175440392,1912928744,-368147702,12255496,-1269503232,1827404034,1668612668,150996726,-1018879,1913317406,116876817,264380,108265472,182722303,645978482,-2130900736,-49742042,150879872,-2145815294,589630,646124149,-1661073174,-435179270,-436162428,-1660884091,-150994501,17361414,-1676839936,-436162310,-436031356,15441285,-1261741064,15464705,16182265,0,252618767,520040105,-1458632000,1459599567,16017357,0,0,0,0,0,0,0,53019409,0,0,0,1716736102,116862545,2099434,8750351,1912686056,-668987526,268379494,1714290688,143918603,-1328012785,1718675072,369168174,778438828,-1273102065,-1071640824,68966,571441152,54192832,683147448,-671084800,1032243,-919378224,-1949228529,-1194226468,-661782520,81903974,13241993,283754854,13373064,13577864,-1912551240,-1327264816,-1200560640,-661782336,-527515506,1727588494,1483103065,68479171,1728019177,146297680,650153472,2958976,-388788995,-661977990,-1912581960,-1899983144,-1897886000,-427773720,-1071640720,-121498,571441151,63105728,254672896,154672641,265822223,-745613278,-1912602440,-1899983144,-1326936352,-2089753088,-32970202,1526985448,1354979430,1486639443,1343225637,-388789091,-661978082,6999179]},{"sector":14,"length":512,"data":[1778385000,26624,6815850,1744857600,6946816,1358981715,6816362,1744857648,6946816,1711548776,-368147505,-144310008,34126854,1946157056,-368642293,1962942472,1501187,-1017619623,1714347956,146540279,2,95688308,-575380757,116876846,133308,74711040,1357579956,116876846,526524,91553792,1962954984,-422465475,-144298396,134790150,1962934272,3926021,-997578635,1714315494,146540279,8,652739957,-1340902144,778364671,-1140394138,2056,-402426624,-1007157231,520040018,190450354,-134056768,1371797955,1692715307,-85982684,50009,0,0,7340040,243478266,-853538622,16054817,1,385921384,16787085,771753448,82849535,788175952,149556867,-2124009920,-2146911218,-1342177280,-1333467633,-343546368,-1017602816,0,0,0,-368642258,1946157320,788475397,-13759788,564270,0,0,0,0,0,-1661337600,1955069056,-1996718037,-58701196,777614528,146605814,-1660521208,-1607532754,645934600,787941565,146605814,-387156960,-403964038,-368642258,1946157320,243478238,-1660811070,-1957358131,1486639340,621168263,1174995456,-815966202,-326412899,47134,-190719858,107381512,-815980546,116876846,16779452,-1552678912,116876846,33556668,-1753939968,-1608581330,1348901896,1065559638,-1926662392,637882422,772246374,637831526,71797606,1149855278]},{"sector":15,"length":512,"data":[1200301572,1149840904,-1931572472,650546894,-1694144640,-1655151010,-100662582,-368642258,1946157320,646131209,-386004758,862387926,650153664,27042662,-1540423890,-1676840184,74732348,58020412,-1644250648,714,0,0,0,-2137391104,-402634698,1708064769,149563011,571646,258392206,1712873143,637854657,13246089,283885926,-870414298,1049110016,1586168015,13154324,1183563918,48988944,-1962440410,-343733178,126428674,-2096609653,-1993997589,-1223727609,76244964,48988964,-1962440410,-1553653690,1183516884,-693934820,608602888,148415333,1697138315,1695079075,148637383,-1989869368,-2096570850,1634075332,-1905959578,1695079446,148776587,1711050984,148119182,-704213403,646866184,-1905981224,-1022830034,788322536,183512831,0,0,-889191960,252059232,-1666707552,-100655896,1929100776,890280466,-1360527288,267951612,127995817,-1648140001,1358228473,1460018771,-117577642,-368147666,-1269620728,26631,-1306591457,-1072997622,-2094135691,-553063898,-1896873800,1048651456,1127481321,1714296693,146540279,131072,-75429003,91611649,-839646792,123690518,-1017619681,-368642258,251674632,1358967173,-919383981,-1444357325,461508604,-617398016,268499329,129241719,-1306591442,1975520010,2078822885,1543234300,-1340176082,1499158538,116862659,4196586,3376399,861098320,-59840311,16351553,528944912,772256768,179445503,-378159093]}],[{"sector":1,"length":512,"data":[-1338080466,-2079391734,-1959919606,-401952754,-69010378,-1017620133,571422,-478095218,38243320,-1056669814,-406846232,50377476,12787651,0,0,0,2139,1891328000,21543169,-1207957318,-13743616,1627930654,-882324029,0,0,0,2553,0,0,0,0,0,0,0,0,0,0,0,1048576,0,0,0,0,0,0,0,0,262144,64,0,0,0,0,0,0,0,0,12652544,0,0,0,0,65535,0,-256,0,0,0,256,0,0,0,0,0,0,0,0,0,1024,0,0,0,0,0,0,0,0,0,16777216,1380141389,1179603791,538976340,538976288,538976288,860704069,874526264,540619822,538976288,538976288,161742848,-1957492243,-2082221608,108201211,-1744883976,-883226226,646014510,-16840516,-147914753,17361414,847515392,-2127627776,-2146909682,773967104,149556867,778069600,180502155,1049479054,179899650,520039936,1634077400,771798504,657094,-104597468,116862659,67818,10388751,649727790,252053738]},{"sector":2,"length":512,"pattern":-1,"data":[771789699,148641420,-567899858,11626504,2526487,-30545919,-1609586673,-386261498,1500707022,1746882666,-1458634560,-535393179,646538504,1483344098,646669591,1939474660,1694517336,148903566,-500790427,-1709673976,4732176,1928959208,243478052,771819754,657094,-401151163,-970000095,603982342,-366574802,-1833239032,-855002112,646131233,532613354,262213383,378416809,-1959917348,-1022829018,-1007041543,-1325753264,-1333467633,-343546368,-1017602816,0,0,0,0,0,0,12652192,12652391,12652372,12652461,12652472,12652846,12653139,12653285,12653480,12653519,12653553,12653673,12649452,788067560,180891391,788040936,180629247,-352851480,19402483,-872661784]},{"sector":3,"length":512,"data":[-1,-1,-1,-1,1296370189,909652813,1769099296,1701603702,543450471,1919250543,1869182049,1919230062,544370546,544765987,1141509421,1952670053,1952544361,1296375909,909652813,1684955424,1852785440,1970170228,1126703205,1919885353,1113944608,544501615,539574824,1864385320,692199538,606093088,1296370189,909652813,1851072570,1868785010,1634887030,543517794,1986622064,1734700137,1864393829,1634887024,1852795252,1920099616,589329007,757102712,1701998624,1159754611,1380275278,544175136,1868719474,220492911,1296909578,540424243,544432488,1702126948,1684370531,1920099616,589329007,1763735672,1851859054,1886413088,1633905004,1852795252,1952516621,1835363616,544830063,1919181921,544437093,2021161080,2021161018,1411395192,1768759407,1768778094,1948280186,1663067496,1668178280,1862929765,1633951846,1814061428,745763695,1296909600,540424243,544432488,1953259880,2032165989,544372079,1886220131,1919251573,1175063854,1830842991,543519343,1868983913,1952542066,745434985,1701147424,1701344288,1095062048,776293700,542398548,1701603686,218762542,544166922,1953719666,544502369,1920298873,1836016416,1702131056,1881156722,1936942450,1414415648,607015493,1296370189,909652813,1095582752,1718968864,544367974,1948283753,1931505519,1819042157,1092624430,1142973540,544108093,1918988320,1952804193,1629516389,1914725486,1869570661,220474996,1296909578]},{"sector":4,"length":512,"data":[976631859,1095582752,1685024032,1869488229,1970479220,1919905904,778331508,1917853728,544437093,1163152965,1869881426,1650815520,779382639,2021160996,1296370189,909652813,1851072570,1701601889,544175136,1918989427,1850024052,1668178280,1293968485,543515759,1684957527,544438127,543520100,1646292852,543519585,1869440365,1646295410,543908705,1819044198,604638510,1296370189,909652813,1851072570,1701601889,544175136,1918989427,1850024052,1668178280,1293968485,543515759,1684957527,544438127,543520100,1763733364,1818326638,1881171049,543716449,538970637,538976288,1886593056,1718182757,1952539497,544108393,544370534,860704069,221132344,9226,0,0,0,0,0,0,0,0,1778384896,-1066918064,1755909888,-1592852176,1962934333,540967700,175505152,104759397,-2062614263,79167491,-291281664,512320776,146278640,1723895296,408860431,-132216476,-473864702,512304644,-1050279734,-2010771221,637586462,13581960,1695833739,149831299,-1205832448,-1064435512,-2096085365,-1993997589,205949703,637725571,1183516553,48988936,1711769894,-1947945201,-1553719226,1183515376,-224173028,608602882,49587044,1680361099,-1962740061,-1553724346,1183515388,-22846456,512320514,146277114,1723895296,-1313088717,-473864704,512304644,-1050279734,-2010771221,637586462,13581960,16785037,-1912551240,-354186288,12060432,102654054]},{"sector":5,"length":512,"data":[117440616,-661731188,149856550,-266433754,113649160,1426131198,-1566448560,568591106,-1341979742,-425597440,-427773919,25225328,1029241717,359989248,-1191182147,633274471,84329984,113651715,-349306106,81243,-54584459,50110720,1191258600,-402456927,-1212350174,15776000,-352267073,146737,-1464003723,4372737,-1962815041,14149827,-352180801,212249,-339932299,3782913,-352180801,6864137,-1090498887,113639580,-971242747,-16579066,-1064380276,-1897348213,-854608896,50635280,-855637064,83933712,28837811,-99562221,1946215912,101071611,975729667,1963132166,4241647,113760398,114,1894158256,11534571,-454528538,-419516416,-5532,854913024,50634980,-1594224435,-1578761470,-436010080,-436162527,520576368,263217510,11568358,15435238,-266432978,109981186,-1909587214,771945510,49688206,-132739538,646655490,1355743994,-768388527,-150992199,-2010118927,818053125,1510036872,1354979417,179917393,-137219328,1958743025,-286764539,-1031775489,1192593456,-1017620134,858927408,926299444,1111570744,1178944579,1381061456,-1311732740,-740652276,266568683,90474378,-2142829176,-310573847,1482381658,195,0,0,27813092,484974196,-424824832,1012982884,1006924671,-1341985920,-397370368,-1364197369,-1655151386,-919383613,44590308,-1017513248,102696479,103089695,123405913,102696479,102696479,102696479,91687996,-806811790]},{"sector":6,"length":512,"data":[1720693761,1711677131,-326408608,147374438,134596748,98078208,-1064435704,417907046,352267879,380997,123823616,1741383199,-1893907002,-1746363197,1364171266,258342984,-1050230601,1717895904,-1005668593,237724936,728041674,1711853070,1172883459,1718066435,1729383817,1918406,147104195,147457579,147719723,147201675,147332651,-1072971005,11043855,917966694,258345156,147472055,309655355,-1173395674,-215764,1930100735,-147108248,258403957,147207863,147338811,79264374,-1223727616,688441918,688440846,990431758,897847287,-52458752,-910749850,881682023,-3915,-1922668545,-1000132,1744044031,1738876518,309648,1740649318,-260141722,-1419352077,258379879,1730606007,-55243647,16777215,-838402300,1718035976,-55245685,637534207,1718087680,1729381769,1918406,1170630595,-118781923,755549857,-390001664,-872011006,327552776,-1880581120,-18431,1213198490,39249920,-15079011,24963228,-1711275589,4738967,1105777104,-1040802558,8654593,1723526143,-1003047153,-1223727608,990431806,-2125564681,-2114977566,637822922,76244583,-843,-134273537,1959803750,-147108345,770435445,-2123946418,46372,-67174400,-16611352,1728630286,1918406,-524677274,-1676840181,-1711205912,4738996,-1660822552,1170630595,-118781411,1894154416,147096422,1153918567,805308452,-930349054,-1912600571,-803205160,151561062,264254310,537907234,-14326056,1711276047]},{"sector":7,"length":512,"data":[151782923,1725440527,605421839,17786377,252259358,154408448,907935759,-436162551,-1328585104,1718675072,1744858763,-1139343072,-1061682944,1725468160,604373263,17786377,252259342,154404352,906887183,-668987639,1727004709,1711869091,252250273,146329634,-2133291520,-50320090,-1912569672,257124056,627496992,4095,512452199,-268377215,264440678,1718081570,1728333451,37784422,-1223727513,-478146978,1686136824,1727857944,-1956223141,1734739014,1729102095,138840934,17786726,1009432,258411606,1779326464,1996449536,-10066156,11538550,-882478874,-427773702,97029232,-661782520,142779224,141168268,-1609607834,378316815,-1989801876,1711828518,1912996111,17786376,252213262,142476800,-2146566129,-803205368,140551014,634920975,-1553534976,862324836,-803074112,1725440015,1048357,101410304,571410700,17786584,1711875094,740163855,369102601,985396,-368495074,19401020,-1912581960,8435928,-1070350194,-1061625714,-1897361920,1711725590,114828939,686588774,1726778214,-1989754829,-1989794746,-1989795770,-1989796794,-1587210170,-1989801754,-256371642,1183409675,1187472912,36700172,-436162560,654271856,-1325791102,1483794048,142779237,1621190245,-803074296,-1912600392,757498072,-2135360256,265850368,627496992,4095,101410405,571410532,258303704,141694465,17786214,1695053854,141861222,-1223727515,-2146926562,-2140669725,-49997724,369102693,258279550]},{"sector":8,"length":512,"pattern":-1,"data":[142614016,1747910501,378430728,1717897324,141436555,134596748,98078208,-1064435704,-1592809201,11558246,654274790,31983746,862374656,-52001829,83322662,181,251920384,637579397,-1257965721,4,-2062613504,1730543777,146081015,0,-1836773628,-144235008,832772,67108864,8619279,-1956223194,46364,909836288,1769212102,258372978,237751991,360057034,-1056717181,-1956248858,-293378306,1744043280,1738876518,79297680,-1070373376,1052184422,-406779702,1718088450,1720739755,258392971,147209911,1728243649,-1872254106,268436838,1718026240,1720739755,1048581,-1419352320,90607719,4096,1739286119,-972651632,109249544,1711540426,-339491957,250]},{"sector":9,"length":512,"data":[0,0,0,0,1392566504,1465274961,47134,-164374386,1778390207,146035456,179445503,2375003,-1051703694,79234280,-1223727616,1718042816,306513037,754974720,141689856,-1055916283,-939324696,64616280,82428360,-214175485,-1036315021,-796192140,-16141229,1527427614,74760203,-1384820910,1959922522,-16075768,-351620578,533105651,1499094623,1659424603,12066304,1406701056,520030388,995822258,1023898563,74645540,-1014288661,-1261401264,-1306591479,1958742794,213144094,179445503,208977931,-1050223993,-628420381,-820029350,-16075686,1477095966,-820002765,503321832,-1912602440,-15878952,-1274367458,-1306591478,1439637258,1190587531,24379913,12803579,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2137260032,1215633148,26654,1946500127,1963342917,646014522,-16840516,113770495,16779618,150879872,-970689535,1157630470]},{"sector":10,"length":512,"data":[853702,54427736,326434569,151207552,-972589824,603982342,113640939,525402125,788475549,-1023996944,661979137,150879872,-1281023,1913314334,116876851,-2147481412,561315840,149554935,896860161,657094,-2117276892,1979908351,168216262,113657088,-347013107,378360506,99287592,2014743890,-930328574,162846862,1515725261,-352321095,168216222,113657088,525860877,-13722467,1342959646,47134,45668494,243399168,8390850,1478610207,207,0,116876794,67818,-2090530444,134791694,1707829197,150879872,-1274841855,-1939485824,1695079446,148776585,385921384,16787085,-1609586673,1771707910,251707668,1694542722,148119180,-704213915,185375240,82444288,251658251,1778418050,-1066918064,1755909888,1694957696,148903564,-500790939,391670280,-467235995,922707208,-10155818,-2012687306,-2147071194,125099772,1211584666,-1710888192,4734056,-535392667,646669576,-58717982,-2145422080,1074154302,278534260,-369080267,12061428,-33110427,-2090532856,17361422,-51771925,520140810,262213383,378430889,-1956312868,-888611290,-33110427,-966459128,603982342,-366574747,-2135622136,267901419,267587571,267587607,267587571,267587571,267587571,267587571,0,512306688,-1943138392,-888165882,1381061456,102651734,516239100,1200230312,1930247170,-523134945,51351230,352268016,-1474378450,30179343,117655433,1516134175,-883401895,-2135686224]},{"sector":11,"length":512,"data":[870706169,784595136,262946432,176492288,117321216,-761655380,-1022581481,-703577595,-1961859312,1343269392,243254358,772114982,269223482,1016591,-772764776,-1795215642,-1070395379,-1329375138,-947866621,4679,2139222763,1962935826,96937492,-953810907,15467077,71681830,-1070399488,-1274826557,306694016,1354956800,12101647,-2081911296,1963070079,-1868471029,92874240,-1017599729,-2135686224,1198023,1358031616,6858767,-2086072576,1963201151,-794728985,92874248,148021605,38111526,256955115,26792,2139334927,-931854830,149332325,-1207596762,251991168,82362624,38111526,150774117,71665958,1399236331,6858767,-2086072576,1963332223,-1956223711,1711838238,268485505,1713766400,-1956307575,-2046205410,1569269499,1722355460,61915995,1204256948,-352321518,-65296,65535,0,0,0,0,0,-1040842752,-2145881025,410256124,1946418304,184320019,-58716556,-351702005,777676290,287977215,-2124000666,65506,-222687488,-2096926201,-92075838,786592522,379785062,-646770414,252232950,771755141,377633383,1979711505,772467656,545405543,1979711505,1717200572,1716610643,106325586,6856719,1688276736,146935427,252955905,788176032,287973119,225616143,-1039730844,1962934536,295710434,-2090558447,-32980442,127995805,1516658278,1533434214,714,1426063360,261942411,26784,-58679025,505902465,520093800]},{"sector":12,"length":512,"data":[75171574,443817760,-1039236252,-1592851448,1347145117,1183275164,33563910,1476806153,1717882717,146540279,65536,1780358772,116793152,520618107,-2127684747,1169726,773551328,299449985,309653504,1048798766,1946161623,-1650389239,788475485,-1592847913,-53518947,-477897077,-289315313,-2132898300,251743103,1711305349,1713797003,-1050222965,-611449621,504358531,242533718,-972302196,5604367,1725860694,-1064999251,3376143,1726516070,1712385473,1711596993,1724954383,-2123961853,167772413,209915648,126445056,71797165,-351878269,-1945155122,-1419378654,1589963685,-2079334853,-1989804023,79987463,1586497515,1149855263,-1070373362,-872895642,-116996989,1398152907,240144722,1110871327,536918797,855638458,1811986633,-2112937523,-661979129,567099060,1515804920,-887136677,0,327422826,328864644,328864666,328864666,325129057,325129057,325129057,325129057,328340370,-1869610005,1365679248,26630,116860423,67818,-58715276,1712222994,1741469199,620703335,1250381,1499858688,788475549,1713771280,144195201,1048576,1711795060,-13722279,-1173155810,602603521,1048667686,2200,-780926960,-2094659349,584766,653969268,146935427,567084864,-878880410,-1609608624,-1912602438,-17694,-10223180,185250334,1678603456,-1139899546,267912200,-883402079,1358490617,12099599,-1260352000,520053762,-1073018190,1717832820,146548355,-1592788741,-335951016]},{"sector":13,"length":512,"pattern":0,"data":[-1609608967,-1912602440,-2090441504,-49759194,-851246920,1971338287,106058529,-851242824,512320559,-1939600718,1678423046,-1139899546,133693960,-1592829094,268028760,13326497,0,771751936,338636543,520040092,627446835,-8388609,6856719,1688276736,149554935,242483201,456292,108265993,3430,-1592852352,17780943,109024,42209112,-120850176,203]},{"sector":14,"length":512,"pattern":0,"data":[]},{"sector":15,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65535,37376,65535,37376,65535,33280,65535,37376,65535,35072,65535,37376,1023,61952,67174399,37376,65535,39424,65535,37376,65535,37376,4095,37387,-2147467265,37387,65535,37386,65535,37388,65535,13603328,65535,0,65535,0,65535,0,65535,0,65535,0,65535,0,65535,39424,65535,37376,65535,37376,65535,37376,65535,37376,65535,37376,65535,37376]},{"sector":7,"length":512,"pattern":0,"data":[65535,37376,65535,37376,65535,37376,65535,37376,65535,37376,65535,37376,65535,37376,65535,39424,65535,37376,65535,39424,65535,37376,65535,0,65535,0,65535,0,65535,0,65535,0,65535,0,0,0,4718736,36352,4718765,36352,4718803,36352,4718879,36352,4718900,36352,4718921,36352,4718950,36352,4718980,36352,4719024,36352,4719067,36352,4719126,36352,4719148,36352,4719170,36352,4719192,36352,4719226,36352,4719296,36352,4719339,36352,4719360,36352,0,0,4726468,60928,0,0,4731056,60928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4722580,60928,4722589,60928,0,0,0,0,0,0,4722598,60928]},{"sector":8,"length":512,"pattern":0,"data":[0,0,4722607,60928,0,0,0,0,0,0,4722630,60928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4728091,60928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4722639,60928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4718592,60928]},{"sector":9,"length":512,"pattern":0,"data":[]},{"sector":10,"length":512,"pattern":0,"data":[]},{"sector":11,"length":512,"pattern":0,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65535,37376,65535,37376,65535,39424,65535,37376,0,0,0,0,0,0,268435456,8192,0,0,0,0,0,0,65535]},{"sector":12,"length":512,"pattern":0,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268435456,8192,0,0,0,0,0,0,4718765,60928,-268369936]},{"sector":13,"length":512,"pattern":0,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65536,0,0,0,131072,0,0,0,196608,0,0,0,262144,0,0,0,327680,0,0,0,393216,0,0,0,458752,0,0,0,0,0,-1]},{"sector":14,"length":512,"pattern":0,"data":[0,0,0,0,0,0,552861696,553066740,567288106,590881329,597173060,606151642,614868075,8436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65535,0,0,0,0,0,0,0,0,0,0,0,0,0,4194304,64,0,4092,0,1,0,-65536,64520,0,1,32768,0,168427520,-738194934,202167508,-671085556,-2088249128,-1962900863,33589897,-1006631420,50449608,-973076731,-804729142,-737488375,-636627445,-569385970,76011532,75564163,1154,76088459,67175562,67437571,1031,80348358,67765454,67765460,67830996,437781718]},{"sector":15,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]},{"sector":10,"length":512,"pattern":0,"data":[]},{"sector":11,"length":512,"pattern":0,"data":[]},{"sector":12,"length":512,"pattern":0,"data":[]},{"sector":13,"length":512,"pattern":0,"data":[]},{"sector":14,"length":512,"pattern":0,"data":[]},{"sector":15,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":-1,"data":[0,0,0,-16776961,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,16777215,0,0,0]},{"sector":2,"length":512,"pattern":0,"data":[-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,16777215,0,0,1048576,4194336,16777344,67109376]},{"sector":3,"length":512,"data":[0,0,0,0,0,0,0,0,0,0,0,0,16842752,0,0,0,0,0,0,0,1354585446,-1109553664,-309460800,-1912569667,780887493,-1173419838,1114768373,1951857792,281903944,-1037137563,48392,283492710,637710525,-1674691738,1714320641,-135481585,33557574,-327308,1996429430,-553877476,1352279668,-2097133513,1566966980,-1989816474,1711850030,-336808177,-1223727402,646145516,1794050242,236513639,1013488378,-998047672,1717396996,207,0,0,258364774,1190653111,1946157582,-385848827,12258798,112640,671287274,1716872705,-387139825,393351492,34490103,1778742272,231532801,-1207959109,132775937,1711351811,1724868189,-1223727531,239532012,91488258,-1410792854,142508813,-2129562296,855442558,2122386034,1999833348,854124803,1912762088,1717396996,1711434447,-1151965613,-1105330048,-611450880,-155775130,82231654,1779145705,1711303168,-1223727531,244716,-369098312,19399431,6946922,258364774,79424695,112640,671287274,1716872705,-135481585,134726,90834292,-1156762135,28835845,50850304,6947112,1432748138,-323547290,34752247,394596096,441092,-369098312,19399431,258364774,1190653111,1946157582,-385390075,129699066,112640,671287274,-2015656191,-2015655973,-2015655973,-1864661029]},{"sector":4,"length":512,"data":[258364774,141225143,1449546598,503349435,-1912602434,-1223727397,-423532810,183167236,-1207957317,132775937,1711351811,-1223727531,1711893228,-1151965613,-1105330048,-611450880,-155775130,82231654,-1635031449,2376,1283704423,16777222,-1156927511,28835849,50850304,1432748328,-323547290,-253162902,703232,-369098312,19399431,258364774,191556791,-1157571863,28835851,50850304,1432748328,-323547290,-991359894,834304,-369098312,19399431,258364774,225111223,-2097107223,1190593220,251658770,-1157422715,28835853,50850304,1432748328,-323547290,1399197290,-2135206298,12459520,1725664768,1727444751,251979457,191288096,428085211,1583750922,-998024346,237299714,1566967666,1711588483,965583,-369098312,19399431,258364774,258665655,1449546598,503349435,-1912602434,-1223727397,-423532810,165341444,-1207955525,132775937,1778460675,1711303168,-1223727531,1096684,-369098312,19399431,258364774,297528503,112640,671287274,1716741633,8436566,48670,1725664848,1727444751,1728374465,1218349926,1728053257,-660894874,-2097151994,-348443413,-380107660,258345336,-2080481609,1731070187,1566383243,-1996488701,525925982,1533435494,184668355,922886402,1711426818,-536696574,1642352642,15401195,1642466316,15401195,-215744277,1642357222,58048680,-104638216,64491,122029536,98567648,120260064,120457009,98567648,98567648,98567648,173540832]},{"sector":5,"length":512,"data":[98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,145885362,145885362,98568370,98568851,98567648,98567648,98567648,98568827,98567648,98568703,98567648,98568868,98567648,98567648,98567648,98568846,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98764256,179178153,98567648,98567648,98567648,183503539,191630125,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,195757536,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,99288633,98567751,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,98567648,109708913,115672778,98567648,98567648,106956368,112723620,98568714,169544209,98567936,98567648,98567648,98567648,98567648,98567648,1449546598,-1912600389,408849371,-1996168255,-1962880482,-339666850,-734099452,207522560]},{"sector":6,"length":512,"data":[-1996168255,-1962878434,-339669922,-599881724,5290752,-953760882,4102,14203648,1988877198,-1222866424,786682112,59811839,-2096769559,-1201143098,-2083826176,-2091515194,-1157229458,-611450672,-1961593205,1719734366,-1979908336,1586168924,39618828,-1105426085,-561119016,855596938,48480767,-1912588098,931882718,1711830665,-1995379007,1583746166,1566989158,1711588483,113714895,196626,141986118,637892841,1181383,-253034492,141986118,-388287661,24323662,-823436308,141986118,-388287661,1939351102,-346297087,-1974316099,-164495020,-1996306813,-617412490,1931879912,1532685313,1381213419,838947978,46564342,856192649,638380251,-318671976,-1964287142,141986118,29053523,637069312,1525547379,-8984229,141986118,113491,1931863528,-379851007,1381236580,838947978,46564342,-1157073271,-873988095,-301894875,1240030042,-1974316033,-164495020,-1996306813,29034614,632350720,1525612915,-13702821,141986118,1066743,505115650,520142952,-1139900058,4194312,1583750912,1566989158,1711588483,-84608171,-369163287,-1343619406,116860670,134217744,101648756,141986118,-369169431,-148439398,4102,-385649400,1347551581,378217990,-121962480,1187220992,-74834806,-2143755392,292827387,1964571520,113414,-1157553687,468254720,1988707841,-2132833784,-2096119557,-478150469,512239303,-1866987456,1101211280,117145608,-478147212,1090224320,-75492492,-1961331328,1101211140]},{"sector":7,"length":512,"data":[46564104,-351766903,637831690,1174946210,-1979156855,541494239,16573057,2080701059,-2095090643,561254650,-92063364,1946975296,675711749,1183526379,-1205277916,-661782320,-659013397,-338129408,474385209,-478145045,1190887623,-478091916,50036743,-75440780,114848771,572243,-661929074,637853889,-1056908637,-2010774293,-1207903170,-661782312,-1957361829,141986796,-1962123637,-1958866834,-342847488,-326412986,1946675072,67076158,1183516021,-2144015604,91555327,-351254901,117407786,1183516021,-2145326328,91554559,-351910261,83853334,1183516021,-2146637020,-2010726193,-351761858,230722304,17760257,1476877808,-40441510,-1990567929,1583744094,1617320806,-1207673205,132775936,-385800189,-148439762,4102,1065619208,105932289,-1912538949,639404739,158080648,-1977841082,-119308037,1830717478,1988707849,-326413048,1813940774,620462089,129697394,15788288,-2146965632,1131675903,1948318592,570130542,-8361612,1711699203,-351517045,100630574,-1956247947,602607686,1963392896,1183540742,-2145850616,108332287,608602982,-813691413,1049110208,15403322,-2134865050,242557691,1832812582,494190601,-385874501,-2144993134,-1022792386,334168695,1832812582,192268041,-337641691,17655302,260046848,-75448288,-2140769246,1635001339,1965095808,1048585752,1958742381,1048585738,1946159469,1711729410,-219,67076223,-1989802379,971705414,1963327360,1183409670,-2144408816,108332799]},{"sector":8,"length":512,"data":[138840422,-8379413,1711699200,-352041335,83853336,-1989802379,233514054,650170240,165166728,-1989803797,1711758784,-61937320,141460317,1586038531,1717069316,1717266014,73304928,-369098568,19399431,654041577,1050359,-193722368,-1991888369,501811318,243476220,1174536208,654031593,1052291,-1326889471,67240187,202047238,-242,-1,-1,-1,-1,-1,1145192703,1291798598,-1,-1,1694498815,-2145613242,410203131,-1976696649,-2146818657,208994299,269386022,772276224,59811839,-1141152279,-2128216060,50335782,503916287,-381288432,146537287,652995328,1050359,57935872,-1140976663,-622133232,-352313157,4242389,-2135174933,1187769088,-1157073271,-611450872,-1055105397,512296163,1586168018,82559260,13909640,637587643,1050359,-1014104063,-345242763,12319756,274629892,-201522828,-79763092,141986118,-1912600389,475958235,-1996168255,-1962880482,-339665826,-734099452,13679360,268891942,-1912602368,1828943299,-1141109525,1585775616,-50236400,32075251,1988708091,-1151967736,-611450872,-1054843253,512296163,1586168018,82559264,13909640,-1912549189,116860635,65552,-345111691,12319756,274629892,-201522828,-87889554,141986118,146495070,-1948545536,-473882530,-769750780,543066880,-2012943423,-1157573570,-611450672,268891942,1962934528,216755971,67156988,1947229829,1878260993,-1946516503,-31780]},{"sector":9,"length":512,"data":[-2093604236,477429567,302434086,1711277568,1717266014,79987549,-326412954,305594150,45934848,268891942,1946157824,45629697,273086208,41157632,-1959341833,117519927,1962933891,116860428,196624,54591860,-97850888,0,0,0,209587200,-611906356,-611853433,-611853433,6968678,1432775403,1693123178,57300326,1432772331,1491797098,90854758,1432769259,1290471018,124409190,1432766187,720044138,23745894,1432757483,518718058,57300326,1432754411,317391978,90854758,1432751339,116065898,124409190,-326434581,-1150921882,2,-611904533,-611853433,-611853433,-323547290,862344038,508978907,-1912569666,48862,-155775130,82231654,513575783,1248,-2097127935,1190593221,251658766,1728110469,-1229320346,2236,-645787890,753697537,1714220419,1716676176,1713921675,1714177675,1727815305,1711294089,1713397387,1713653387,1712376769,-1980217719,-527632802,-1050229876,-393473824,744393062,675711334,-2037684633,2376,-1735694745,1752,908651395,609717094,609651046,1468753462,1451845152,-1956235744,-1989796777,1714822230,1712871307,907564681,341281638,341215590,1468753462,1451845136,-1956235760,-1989800873,-457569194,-1223727612,1451845330,47620,139888998,-1089509785,8336,1732404736,2134153,-1989738496,2248860,1718026240,114862217,-2090401792,448640,1516644352,-998025114,-1956223230,608414,-1149212928]},{"sector":10,"length":512,"data":[1645,-1819996416,-144283904,572550,524288,-1819996416,-1223727616,-343732130,274630918,-1223727536,-1050274698,1183515878,76113668,-1958526178,-1989736378,1128472068,1728857739,622724233,1183448319,258365452,-2114036041,251724027,-2130697342,771817707,1562151783,3088,-1157341559,-1050279936,-1956182813,583323,140413184,1718031339,10296459,-1996488704,-1050278818,1586041067,1717462536,46433115,-815375002,-1912581957,138995931,-1912569669,-10622501,1589055334,216761104,1343250057,1991708518,-423533036,104708100,503613799,12075843,76113664,-1958526178,-1989735354,1128472068,-1862316055,1449546598,-1157436285,-611450752,1711276222,1727444751,-385554751,1348927224,-62485658,205949286,-129594522,138840422,-196703386,71731558,-981247898,-2082108668,-773255995,-90413314,1779302506,251357184,258364774,1716579511,-1151965613,-1105330048,-611450880,-155775130,82231654,-1006780439,-611853433,-326412954,-1066917526,1705578240,-1036600817,-2112944632,258277492,146945722,427953927,-1173396224,168346166,1278479,918163301,251988162,-369141373,-639106906,508488520,-1912569665,-1956223521,-1979100098,82493652,81838438,713525607,1728053249,19699592,-1989738496,78471,-1752668416,308,218236262,1717895168,155729547,-725122714,1728053289,520587622,-1746402325,46433105,-815375002,-326412954,-202824342,-1957337346,-383358228,1432813290,711650443,1727980009]},{"sector":11,"length":512,"data":[-1223727531,1242906092,795477364,-385953303,1566973298,1432801126,862645387,1727971817,1793887061,-21436068,-611853433,-611853433,1399214182,-1912569672,47320,-1061744794,81838438,-2138347929,2376,-1089509785,8344,258369280,576236727,1258291200,546867559,-2097152000,1718036677,114862217,1533411328,-998025114,-2091031038,-1458625340,520593679,-611856538,-611853433,-611853433,1349145958,1432758507,585847146,1382700390,1432755435,384521066,1416254822,1432752363,183194986,1449809254,1432749291,-326412438,1449546598,8437278,12508814,-1223727616,-423532810,46498564,-2013515799,-1864661029,23745894,-323547290,1449546598,8437278,12508814,-1223727616,-423532810,-1956223228,608414,-2084149504,1612,-1635031295,1248,-2097127935,-303496507,251,102654054,1354276879,-1143435776,-1014103784,-1912569671,12630753,862382734,-803205157,1725112847,-1050224501,1730549480,8717559,16777216,1718318336,807319311,258369282,912069815,1728053250,1018629990,143965,808878848,-771030782,1730547316,-1794848922,0,0,1560578407,566,-2116345841,1727004899,-880550141,1718036071,8723593,1711276032,219603137,-1184497561,1024,1722509052,1048581,-118038016,1734637803,1712556902,37361289,1042188646,1718035970,8721547,-2130706432,1727004898,-1050229877,-1050277152,1718032104,1719796877,1677869731,33617767,1250234112,-2090376192]},{"sector":12,"length":512,"data":[1586168328,1176406288,273580290,1719730432,1711144720,1478396774,378234377,1734607440,139691878,1209436518,378234370,1734607444,206800742,1276545382,537917442,-618524709,520593679,-104636058,1348923627,1382437734,-1609628130,-1912581960,8436696,-1061624946,1726516736,-2023309261,1711424006,1316274187,545482596,208044541,512491263,-478084538,1577648896,512452108,-1587150274,1734607418,1694730598,1478396774,378234377,1734607432,139692390,1276545894,1718051842,252466057,571463712,1174861784,1962999810,-1592788735,1516642055,1483103078,1716676291,65409,1282605072,344811111,-92183025,524288,1348877942,537875302,-268425768,-1956223194,-268425984,344811111,-544512497,182698342,384549222,182632806,384483686,641913643,-1744504985,192151554,-210417085,1483103078,1724078694,1712120769,91676459,-338982042,-1014929685,4096,1727726438,728167171,1722906571,-722745037,535318630,-2090441472,323646,12063604,-524196352,-200897264,1718051844,268431779,-1017616896,-368642203,251674632,-1023409788,1365659750,8436070,1734606848,-1929082010,-4,76113511,153741,1726734848,-1017616807,1365659750,8436070,1718026240,1485636747,1677721602,76113511,-883,1726735103,-1017616807,-336186538,29251076,52488192,209048075,81822858,81822918,-1017186304,82093184,1946462462,-460554235,-1470234364,-117279483,243907,-369098565,19399431,1614187862]},{"sector":13,"length":512,"data":[1443228420,77608589,1359143400,527749643,-511457142,-2096766205,-69070650,91554984,-352074520,205846282,57999361,-117247000,1455644249,73414285,-1923742229,-402350026,-771030358,-1974393996,65110984,-964491805,-1459887600,-402098940,-655883576,-402199805,-2098723928,1582954499,-1017185853,1614187862,1443228420,77608589,184709608,1363440850,-511457142,-2096766205,-69070650,206340953,207913224,609286031,1488993472,1283523957,-1475870708,-2096860128,-1474294708,-2096335608,-1460204444,-2096860156,-1475343284,-2096860144,-113243060,-1923693730,-352034762,915232261,401081504,1959922434,-1185918685,27787268,1038616693,55437314,501745387,49801219,-804206973,-119020824,-1017226920,1455644409,82572851,114262,184672744,-972524334,320132,-104636680,1448133470,-1511518288,-336186369,-1336520694,-6166513,184549822,-972393262,320132,81822918,1482619136,915232451,99288160,-1607037610,27060228,276091403,309585,-402477080,-964492663,1509286416,1455644409,-1912655017,-385589194,1465254085,915275571,-1159134096,861361664,-2143908353,11528452,-13412522,76560013,1442882793,114519,78657165,1442879721,114519,79705741,1442876649,114519,80754317,1442873577,-1912655017,-385589194,1465254053,915275571,-1696005008,861361664,-2143908353,9431300,-13412522,76560013,1442874601,114519,78657165,1465285099,-1929379393,-352010186,-1084795282,915210241]},{"sector":14,"length":512,"data":[1676346576,1614187862,9300228,1882623318,8775940,-2143908522,1451158276,76560013,-1923713045,-352014282,915232368,1777009856,-801731242,1717758724,1381066320,-402186746,-1240530774,-2147163491,17097397,309645835,-15965055,54839038,-2130671616,33557580,-18318613,1719003907,1381066320,-402186746,-1240530822,-2147163491,17097397,343200267,-15965055,172279806,1082654720,206340360,1223361536,-352079896,1348884291,106058086,1206388510,1959922432,207913235,1153892095,1149763587,206340354,552272384,804087,-1979354110,350945860,1287065446,-1240504562,425617,1143663616,38011398,-133894494,1499879943,1583306854,-1023086944,-464105136,-536475640,1614187780,309508,-469756696,-519698224,-1338602236,243972,1577059560,-1463592871,-402426879,-964493107,-488058864,1617347570,1958350598,91422988,107751043,1812396028,1946158086,2088855065,16776968,1712289024,-284772593,1149855236,1814463240,-1377240314,205846273,1232404484,1715921767,205846353,57933856,-389993626,1499857791,1717902194,146540279,256,-1956239500,-805083439,16417126,1979777024,205846296,292882432,1074545911,1715565824,107220539,-890755465,205846272,57933856,-390003866,-639106645,206340865,239897345,-523042384,107808264,-1017027065,183091558,-2096119421,-645140255,-369098056,19399431,-1157626952,132775936,1342253059,239897425,-523042384,102813942,-1173420435,1929383028,1958350602]},{"sector":15,"length":512,"data":[57868556,1493222120,1381024600,804087,1696166913,-1140394138,16777224,856519680,239373248,-1174368243,99287064,201339368,1482354180,-145600317,16780356,1717901684,146540279,65536,-1070396044,219038859,414843040,-402265344,-81526778,-1017619730,240946003,1855436303,616794630,1724078851,1716676177,509044310,1812395782,1946157318,1812395792,1946157574,-27203579,-335811605,243530472,-2096953748,-150860724,527428,1575491700,205846272,57933856,1723935590,-1956188021,-402233282,-1587150349,520554088,1583767398,1499880038,1716545219,1716676177,-145267114,1051716,635967604,205846272,57933856,1723935590,107493003,-386364570,646119867,1727792748,1717462623,1717134938,-1956199592,1284204036,1715561992,16777402,205846272,712311040,68058243,-1167715470,131072,1726075238,-804206399,-1061067032,104556049,158663928,-133773466,4,862372608,205846482,-445382528,1709298022,-1140394138,16777224,-338922496,205846484,359989504,68058243,-781841806,-1070378776,1491128678,71600486,205846467,-193724288,116876901,2236,-562823167,-2125404437,-100725660,116876901,2236,1517617153,861033318,15591643,1555500902,-1749676274,1149896326,1149955588,-1240470011,-1979285865,267257412,110008246,-301448054,-301382518,490624,1157039989,1946222604,344680216,435805,121932288,344680430,439901,172263936,1533434606,1157088088,1946222604]}],[{"sector":1,"length":512,"data":[239373215,417734668,15401195,-435927926,-352261350,88377856,15407846,1149894891,-350558714,-1962874112,1074531908,15407334,1149894891,-350558712,-1979651328,451283268,15401195,1381221208,804087,-1979354108,216729664,-1962918168,-1240527268,-335114601,1405311834,205846354,74711552,585826442,1392517864,252599435,109483958,-620012564,1418334324,-253591547,1418379818,-253591551,1532674562,-1957211453,-1240527236,-301566315,108321546,-1902791153,1516235782,1365659843,1466324582,8435718,-386088818,-479725557,29488931,1728410624,-1872255962,-135671450,1946157505,-1524209915,-781807513,1718088681,-1872255706,1717528071,1482253918,1716741827,106391126,-1912540997,-661952829,265880422,1711322498,1716545099,-1050218357,-1050276632,996543723,1929785350,-144234985,34052,131072,1730546292,-2060154010,0,-268376447,-2123999642,1048774,1715496448,779600699,1727564646,1712121793,103810619,1730549619,8717559,33554432,638219264,1015768679,133,15171840,-147101968,1483129972,-478061722,-1022685185,191254118,1713534162,963825979,1975682406,-226138617,99292020,1978828134,-259299828,191253094,-347969806,-768383485,728122982,-247765264,-1956247949,32242126,1600522232,1533435494,1727458243,1465017936,-1666707706,8435962,-2144943986,537164558,-1912581960,12630208,1049487502,-466484128,116876901,67772,108265472,-335247430,-2015043446,15401195]},{"sector":2,"length":512,"data":[283165030,15404262,14942443,15401195,14999686,1727848582,1722508971,1717944371,146540279,1,28969076,-1050219516,15405280,31719659,15401195,31776902,-1419321210,74464909,1717953586,146540279,1,-2084960652,-527766524,15434724,-1050279701,216404192,15401195,15401700,-528088853,-528088348,1722509052,-1070373205,116876901,67772,141819904,-335281222,283165030,15401195,15401956,-528088853,-528088092,1049471846,-466484096,116876901,67772,108265472,-335248966,-2115706742,15401195,283165030,15404262,82051307,15401195,82108550,1727848582,1722508971,1717944371,146540279,1,96077940,-1050219516,15405280,98828523,15401195,98885766,-1419321210,76562061,1717953586,146540279,1,-2101737868,-527766524,15434468,-1050279701,216404192,15401195,15402724,-528088853,-528087324,1722509052,-1070373205,116876901,67772,141819904,-335280198,283165030,15401195,15402980,-528088853,-528087068,1049471846,-466484048,116876901,67772,108265472,-335246406,-1947934582,15401195,283165030,15456486,-991690517,15401195,-991633274,1727848582,1722508971,1717944371,146540279,1,-960886668,-1050219516,15405280,-958136085,15401195,-958078842,-1419321210,79707789,1717953586,146540279,1,-1984297356,-527766524,15436260,-1050279701,-656011040,15401195,15452388,-528088853,-528037660]},{"sector":3,"length":512,"data":[1722509052,-1070373205,116876901,67772,141819904,-335230278,283165030,15401195,15452900,-528088853,-528037148,1049471846,-466484016,116876901,67772,108265472,-335246662,-1964711798,15401195,283165030,15456486,-857472789,15401195,-857415546,1727848582,1722508971,1717944371,146540279,1,-826668940,-1050219516,15405280,-823918357,15401195,-823861114,-1419321210,216449074,81921734,-352261376,-958863872,320262,116876901,2236,1517551617,77610637,206405926,862322944,-432754496,-352261352,-350559232,-2046760192,-350559008,-2046760192,-1223727392,-457165872,-352261350,-524196352,-1039440368,1722509052,-1070373205,417748144,15401195,15407844,-528088853,15407844,-528088853,261991270,1717503913,-1017616806,258364774,1349184695,12609567,812165391,-2086596863,-83465178,-1039730843,1962934536,100433935,243467637,1778648684,-274929389,-2079333366,-2124021598,16777187,-249133056,-233404412,83665412,83693192,83699328,-29980609,-15824636,-14253308,258392068,1712869047,1711595969,-1989752061,1678049550,286328518,1048798720,1946158328,-1240504810,1678045982,515051366,-949612270,325638,1711276032,265991695,1913123770,147030790,1724461926,-199314673,1711895300,83365513,83041928,243763779,84845061,85559178,1728387490,610075787,-167772155,134541574,67437428,86287104,-49891825,1690893828,286328322,85538550,646497534]},{"sector":4,"length":512,"data":[-466483962,83756546,-167717760,-2012934602,839190310,393956,13926405,34006208,-1576730842,646448393,258213128,286328502,86255351,283296102,57069579,1711603990,84547209,-66669041,103441412,-2079387375,653721730,-1050278620,-804581150,1724549990,238773840,477496932,84582758,47718,-75300863,1711503112,996598481,-402294838,141752939,-1037663387,216792584,1678654310,1711633158,107220619,-1047832474,1725008742,-149886271,1678058550,286328320,82912906,169773926,-876517883,408848644,485212518,84414091,84282890,84358794,82974346,-815375002,-815375002,915231062,146343008,205846272,-2079390208,-1578631165,281445368,1582952418,195,0,0,1131676220,258367590,1718084791,117204361,117473384,41028924,627445168,255,1159004007,1354,1569416807,-2006501636,-2090394557,184421477,1728410816,17583491,-1017027065,-138211408,1979711426,-1342065627,1681820416,1714850566,113414,855638457,1812395986,1946159110,178691,207979367,280019966,206406503,-1023950079,91553729,-1696001872,-1223727616,62580991,1137141542,-402653174,-1956248642,-91527482,1725051750,3196919,309592064,47718,-144310270,4295,1711502336,820570833,643331065,193422951,80213862,1946157056,1711386635,1265947147,1206583984,1678654310,-1341884922,255650565,107753146,-1341885696,640740102,193554023,1725401958,180983,192151552]},{"sector":5,"length":512,"data":[1711493608,107495051,-386358552,1730544424,1711948681,637954209,1133078119,-1010814452,-146697,279970932,258365163,367591351,1049323011,1730545256,209402214,-1023995276,141885442,2072209190,846462986,820710064,1133209382,48883722,179307636,116859627,67180,145753205,-1023994133,158597122,1711464936,887682951,1814463480,-1070399994,-140505149,1962885058,856731655,16116214,-4780186,637710312,-1223727513,-1276638085,1718035970,1730556927,247654,637534208,239322983,-144310272,16578,1715107072,862373515,-164403502,1348882790,1727536872,326367035,-1989777626,638645060,1284073063,1730548979,1711997286,1717069382,1718075651,1713638441,-338594471,15775863,862380174,1721132736,191285251,1711437001,1716545097,1712122049,1712122305,796129083,1724943206,1712120513,103810619,1734609523,-2062251162,0,-268377471,637651587,1418290791,1730547891,229734,1711276048,1715889728,-1015627461,627464294,4095,1435199079,-1989724420,191238210,637891839,53044839,1730566502,-1341230199,-147102199,-1070463113,-1989777626,-1012855029,-12598537,-1070464139,-1022316349,-146697,279970932,258361835,116916151,67180,112198772,-1779942933,244016641,1730545252,1930115942,-351948796,1812890406,1843921158,-1989728767,-1956246973,637954110,2072602215,46331660,-402230272,-924319374,-1010814218,-146697,279970932,258356459,1307115447,1049323009,1730545256]},{"sector":6,"length":512,"data":[-401980533,527761723,107742967,393478145,180983,1005062516,-142121471,-2080993560,-33133530,-1329348558,-1023950070,74776575,921374896,-4780186,283361638,-1956193909,16967883,1748929382,-117217786,1133209382,15591434,1730549109,1711997798,107220537,-270005134,-163190784,-1329348558,196133642,-3999805,-1341885185,1715071760,1728034575,-1961827391,-880056615,1711324136,107495051,653853542,172198759,1962977000,1718035992,962988803,1913021454,11069455,-386431130,-1070402053,-1022709565,-138212432,1962934210,-351227900,150700837,-2021643917,1912669506,-2134887910,17121983,-880078731,98818867,-502217853,1821344763,-960297980,-16432505,-1329394256,-1023950068,74776575,720048304,1929968515,1703110446,-1350516980,1912669506,1729459482,1074548099,-617362549,-1014823453,-2080644592,-83596121,-960249806,344711,-1329394000,1084343052,24461317,88122176,1074150339,1718076165,408794895,82035046,-1008794778,258369318,1711829943,637855425,1929602663,1718035972,1724058507,-1223727531,-326932756,525363716,251707496,-1173396055,34128438,2011695987,-998021381,1717396996,-998021425,-380933628,59718,0,1614187862,1443228420,77608589,-247666607,259314187,-511457142,-2096766205,-69070650,-101621784,1455644249,73414285,-1923742229,1359257654,200349160,-1977715502,65110984,-964491805,-2114199024,-8450972,158664872,91489448,-2146677631,1582954752,915232451]},{"sector":7,"length":512,"data":[1542128736,1882623318,1448405764,75511437,-1923723797,-352022474,915232326,1072366768,-1070166698,1446570756,80754317,-1923730965,-352034762,915232358,1609237616,-2143908522,1448667908,76560013,-1923722773,-352014282,915232330,1139475648,-801731242,1463610116,1365659750,119408210,200311272,621704402,1283522815,-1996161012,1609108036,205846512,108266496,-385203062,258404434,1728990391,-1236462453,-335544314,1475363305,1365659750,119408210,200295912,-2129955630,50334796,-385661816,1157099558,1946288140,54823430,1727011305,239908623,1293192039,1702,121907948,-385661950,61442,0,675684587,678504181,681191662,696133922,683878595,699935139,653600501,653601227,1348871925,861103703,-270472961,116876901,2236,762576897,695521803,-2090411894,71043040,29295474,1724090880,15786881,-1050279936,778503147,647140351,1727528960,1483104091,1533475267,-1017616801,1449545830,1382437734,1432770406,-387151002,1717956494,146540279,65536,18646031,1614187878,1976699652,258369304,8953526,-1972961280,9051780,-2006515712,-689367995,-1098881280,135,-276492543,258369280,8820406,-2124021760,61666,-92051968,-1887170784,-92051968,1717793856,1953561219,-92182999,128,1672207,16417638,12092687,1728226280,-1632235674,136,-2098652442,-384113152,-1914175340,1686202114,-10023874,494142632,141887656,1045201767,116066316]},{"sector":8,"length":512,"data":[1045201767,1084755980,-2123954316,-2146681268,1283548928,16780343,1508404971,258369282,8953526,1718026240,1732131981,136266888,512002151,138,206537063,602604800,1728197608,-1632235674,136,1015899751,76048190,-2071435489,35358,1333880576,1711472652,-1640339645,137,862323570,-1635227685,136,1727529195,1717528157,1717266010,-1017616802,1717397241,1717200479,1717462619,1449575256,1614187878,-2037881084,134,-2004433305,0,-1987656089,33554432,-2021210521,16777216,1583749350,1716938435,73414285,-2038003609,1728053248,8947398,1728053248,9012934,1728249856,8881862,1711341568,1449575262,1614187878,-2037881084,134,-2004433305,0,-1987656089,33554432,-2021210521,16777216,1724079718,915236438,-2006514592,34438,-2033817856,136,-2033817856,137,-2033817855,135,1712907777,1449575262,1466323046,-1922674330,1711562806,-1190666109,-503906288,1744341862,1044155750,126576231,244070,635961344,1717134849,1717069407,1449575262,1365661542,-1922674586,1711562806,-1190666109,-503906288,1744341862,1044155750,206042983,393479168,1200318055,45704712,-402653184,1483079912,1600543078,1724079718,-430938536,-352261352,-1070373376,15407844,-527826709,15407844,-528088853,1449578475,1466323046,-1922674330,839147574,-528120128,28927492,-402653184,1499857060,1483104102,616783462,-1677444089,67896100,-402296163]},{"sector":9,"length":512,"pattern":755707147,"data":[65792568,-1008063256,71042852,-1660738404,635962738,-402396182,1724115481,1716545110,73414285,1740649318,8423048,-2006515712,33158,-2037881088,130,-2088335257,1728053248,8816264,-2006515712,34694,-2037881088,136,-1987671961,1728053248,-1970894490,-1342177280,-363141105,1558712240,1717069546,1348911966,-1240504729,34438,-1090051072,-403242992,1727564646,-966278312,34694,-966328320,34950,-2006515712,35214,-1989777664,35462,49920,359077143,359798050,360518957,361239864,330044272,337384419,348787887,343282929,755707147,755707147,755707147,755707147,755705488,755705596,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707632,755707147,755707750,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,365178123,364647883,882128002,364129547,366554379,366089696,755707147,755707147,365178123,364653845,755707147,364129547,366554379,366089696]},{"sector":10,"length":512,"data":[755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755701059,755701139,755701071,755701150,755701083,755701161,755700597,755700659,755700714,755700771,755700916,755700949,755700984,755700861,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,755707147,626000906,626459860,628556811,629015766,632095745,632554499,633013253,633472007,633930950,634389706,634848462,635307143,635765891,636224641,636683394,637142155,637600905,638059658,-1475404206,1746882666,-1458634560,16841345,-628682637,-13704239,-2027265897,531173338,1717945178,146540279,1,1365652084,1227110,1731067904,1552749627,1946157100,1727259145,1356498777,-628680213,778560465,1586304255,-2030043092,257517274,-1017503831,1532025479,-1458578805,1961450015,-144284415,572422,251658496,-352155003,42330598,0,0,773401945,1996684163,-2090440935,1727925349,-1223727533,-13735973,758144276,1533411328,1718027891,17583491,264833987,-2130659196,251724026,503361666,1784702470,1466310480,1365661286,1711277753,356542,75268864,-2096204800,-169731898,1583765862,-335978650,-1990629788,344523852,283820390,1711428745,108824927,-1223727513,-1050272675,1483080931]},{"sector":11,"length":512,"data":[138709320,-1995422583,1552484956,-339646958,207390736,-971744120,-962982588,-393079484,1080557707,-617412863,637959307,70976907,1144723570,-401377534,-947715442,-118693372,611617127,123823644,2089534239,72100614,199481847,-402289882,-947715458,-940187132,1092,-102831111,1711677123,525363808,-155775130,1883096715,758084101,2017265008,858223360,72124361,1744839400,856097088,108825563,1023773478,57803008,-2097006104,-253623097,123823864,-335953121,3574264,1348863494,1449547622,-66647958,147227494,604059832,-1223727368,1722115832,1722115749,1717462693,123233887,1711677123,1717003857,525363798,91274854,112787456,75268864,993948672,993686036,896991828,100677179,-1461189772,20998399,72125191,637959307,125048121,-503003261,1713105910,1724626703,100852161,-412611041,20473902,41287462,415663051,1727641570,1717528158,-1021376679,796250635,116876901,2236,41222208,1048626169,1975518798,1279164663,108265734,-351908448,113676367,-469760436,105751136,-2138029333,-788115906,105776838,-117279744,508776643,520142952,149563011,1946331359,-368147707,-823648248,34348806,1717919974,146540279,4194304,-617412491,-402628424,1482359078,1397801976,1031066123,1007046306,1444115966,251713640,141986721,-197361564,-433687202,1717957732,146540279,4194304,-767816844,113644405,-352254388,1020998412,-1207536175,-806879136,-111650048,1976699843]},{"sector":12,"length":512,"data":[101752855,12609566,-134405089,537455110,201487360,-1007149310,1342574754,12609566,-366574817,44621576,243467636,-400553750,203359797,1486022146,1397801976,116876901,2236,947191824,1717960498,146540279,65537,-2135489931,105776838,-144284416,572422,1946173440,6338566,-1207936536,1407713380,-1567431680,-1833433584,4777984,12802139,0,0,0,257315664,47272,113698958,-1201141958,1172832388,1757643008,-729348096,8763398,-2130692120,134244547,-402205561,-1458569348,-883401890,-889191960,501764944,1757643008,-729348096,-1017619706,233329488,-2117011968,536897731,1527174279,-1957575848,132219848,-1962678079,112856,-1017519917,0,-326937242,-1223727614,-1169004820,-628227968,1711276218,1725085455,-2147163455,1987334140,1955069056,-144283859,572546,256,-2146208768,242737916,1927347328,-2084556279,-352252338,1516671048,-1962752893,-384472340,258465166,146977466,1912668160,-490641898,89831948,1410743142,1725658368,1712384705,-150674751,33558086,1718030196,146572023,4194304,24444928,8317179,-2091227398,1566966468,1379716966,295951,-1502260420,1085952614,-1223727616,-490641710,-1972940028,6042,216236800,1527577475,-2039129498,-2079370692,1399193638,173968230,82035046,106824550,1711441896,1770131291,-2123995137,572554,524288,-10819328,-2097715609,2236,4096,-11893745,176062822]},{"sector":13,"length":512,"data":[61440,-12680689,1348916203,1365660518,1466324582,-910749850,18118,83654,-67075909,-108936306,-2029027328,258343282,1713004215,1727444751,1711596481,-1047798269,1732829393,252724025,1728140674,253248313,1728138626,276008294,1929480936,21921796,27387905,295695,536956544,1938646631,24242200,1317012595,-1998061055,75697921,21921792,-1956223200,611458,-1956223232,1718030451,1729657739,-525301402,1728053248,-390559386,1728053248,343116646,2072733287,-1989777636,58544,-1989777664,60600,14727168,266338319,-1207904891,983272,-880472088,-960403968,147243272,283558246,309562215,147308902,1711851457,1729161153,-166036597,251855174,251702149,83982010,-144229773,584322,1962942464,21921796,-2097780984,2304,-2147191806,-166723250,1947730246,-1971099881,2282,-1568643296,2304,21922045,53209120,-387853978,-781787257,-149756951,1946157505,1738893060,-202780272,1738892903,21427856,-165710816,1946681670,-1568446712,2282,21427935,1728607248,151030400,-402522112,1600520937,1499881062,1483103078,-2097125750,-2092954034,184421990,-2096597788,-2084630938,-1023340978,33572550,1381217259,-506332516,-1962379078,21427935,-1962773503,-388824098,1190527072,225772033,142604929,1818694263,-336207294,2080014603,1728411400,-169721234,-1660924952,1961450330,-144283649,572546,8192,1729131520,-2146992512,-2140731019,1975518334]},{"sector":14,"length":512,"data":[-121374462,2122344387,275976452,75399271,1728673295,491136,-1007091083,-464469000,4622433,1642465292,860930904,4622016,-1017617946,1313758566,1728482151,1642333833,-2132483962,202163334,-528064026,-997818140,1642525476,16795334,-385039229,1466367739,1348884070,-2090380954,584890,-2079391744,1718026323,-323307761,1711276040,1711597505,-2140682357,108285247,1514111079,-2090453131,1718030528,55555855,81903974,1727040358,-2090340093,1946812799,-667195890,1409551,266222438,1711280002,-2140682613,91511359,-336032922,1499920573,1583765606,12803942,-771017193,1470237812,1426507270,-2065267706,-1007041544,1215615499,-435792222,1430159493,896893958,158662716,106380928,-349539057,1963080753,1463713828,494338054,512416563,-472840617,225827595,-2137522386,-2096729548,-335671194,273580804,1426507265,-1007123194,-1545026567,8436459,1717953166,146540279,128,1407714164,147096542,1583766362,1617320806,-1207542038,0,0,-1475404208,1354276879,-1193767424,-393346880,-1912569672,-87889696,106235590,1443284480,113704710,-385939881,233367097,14149632,266188264,531173281,508611416,-1061642225,-1193767424,-527564496,149554935,1316225040,822527844,113246228,-1912588104,1048651456,-536870890,-953809035,5638,1048651456,-536870786,-953809035,32262,1048651456,-536870642,-953809035,69126,1048651456,-536870474,-953809035,112134,-1592850496]},{"sector":15,"length":512,"data":[-389851105,719847428,1399243520,-1096806570,-426901496,-427571572,-1956223752,-1050279332,-1973155645,-1050278052,57018571,1587613635,1724078950,-1147138221,-477232912,-1050259354,1734610152,-2061726874,0,14909798,1728053232,-14326184,1711276047,-1592802557,-389850266,1724579841,1716610640,-65141161,-1912553288,15775960,-1201225586,-1073741824,150996726,1712289026,116899891,2099434,-1587149708,-1083832168,256,637538489,612460135,189,1048320,1718035968,12387337,1191182336,268436838,1967718400,-668987426,534258191,1717528071,-1017616807,8415262,2066120735,-400564476,1355481089,-1197469922,-661782336,-1912524616,-368642080,1946161160,-368642218,1962950664,113730638,-536865743,3717126,-2128166770,5694,638023104,1443527,-2128158720,32318,638023104,8259271,-2128158720,69182,638023104,17696455,-2128158720,112190,638023104,28706503,252174336,-1017634911,195,0,0,0,934295456,938489808,960510064,974141952,991967872,994065200,997210960,1106262992,1133527872,1154499760,1180714384,1219512080,1276136368,1290947728,1319587490,-611853433,-326410138,1593606396,-1240524173,1089373172,-2140859790,17368126,-167570060,278200110,-882809289,1962911037,491177484,-957158524,-343925434,80265452,-971225464,1703157062,1193727,-954710385,4166,-611855381,1918662,-2015655997,-2015655973,-1864661029]}]],[[{"sector":1,"length":512,"data":[658448011,-1995906111,1187385438,-2090532835,-16189378,-960298636,-1015014074,-611853433,147104101,-1056178131,1183384296,427026452,-972011895,-1023402682,-611853433,-611853433,1467276043,147104101,-1056178131,-1019542808,770199410,-1672187367,-1949158406,1711684110,681588363,1107297471,1015281411,51279103,-784645385,-962726798,-343597754,313117,38061824,1386020864,1511450088,-10151566,-1995900410,1187386454,-960298979,-343335610,491177721,-940315769,-956301564,-343401146,-2015655959,-2015655973,-2015655973,-1864661029,1918662,104349315,-1585180927,-1240504832,1027488760,-1568469209,974535424,-1602023674,-1223727616,-1223727413,48480730,-1608645786,-12614872,9012239,258408195,658474423,-406718325,1040410114,-108853724,-164530945,1937096901,990044609,1802699343,258407068,-251447369,1711466177,102774275,-218102599,-1524210073,261984359,571463712,-611859496,1712324794,218947777,1718026343,1720739755,1718075907,1720739755,1718075907,1720739755,1718075907,261121963,571463712,-97729576,-100400521,58131772,-956345623,-343204538,491177708,-957944957,-343270074,-1864661024,1918662,104470075,10060559,-625537178,-1194095770,-2026307585,-2062604116,-473890675,503539202,-90429280,-12777593,1938034687,251618560,-771028742,394856309,-100204699,-919378424,-1539404954,-1989777624,1718081292,81218697,-122220698,1334298931,54452994,104555969,91556040,-935425691,48742664]},{"sector":2,"length":512,"data":[540935014,48873734,-871487131,-33572856,-919348853,258369318,1930110906,1730560257,-2090465503,1951076551,-336993532,65248753,-1021979160,491177629,-956765309,-343532218,-2015655950,-2015655973,-2015655973,-1864661029,1085276340,-1021557111,-611853433,-611853433,1918662,-130120859,1383399176,104470075,258364019,-1956193609,1730715710,-6341501,11682420,682399622,1979710080,-74750403,1711597505,682114563,1040410213,258345288,658454199,1711466177,103036419,-1191179078,1718026244,-1872255706,1967780355,1187431413,-102006755,-2095233338,1187443691,-303330019,1918662,-130120859,-2079326456,372965491,1936918074,-625537178,-1606513818,1015244584,1668611999,-1752760398,-92264276,1717466367,-423496821,906192388,1717905576,155727363,1052184422,-406771905,1040410114,12256804,309520,-1389992345,1718063207,1720739755,1718076163,1720739755,1718076163,1720739755,1718076163,1234200491,537909877,-668856360,491177667,-956699776,-343728826,491177715,-2014450802,-2015655973,-2015655973,-1864661029,-2078456122,-2015655997,-2015655973,-1864661029,-2078456122,-2015655997,-2015655973,-1864661029,-98661531,274630920,1918662,-1864661053,1914056168,-1223727592,512452338,-1956173664,-1056787620,1586037483,491177488,-611859712,1186402150,-524196314,-1223727612,-133994753,-1956250980,-1995900402,862326862,-1956229386,1177067550,-1287879833,653817087,1714915687,1728235395,45302923,637724865,1711769959]},{"sector":3,"length":512,"data":[-503134333,1187421662,-2017263587,-1864661029,1009990656,1005599776,-611853433,-611853433,1936917564,1918662,-256503962,-13699581,-2026127196,-2015655973,-2015655973,-1864661029,-2012856160,-2017256378,-2015655973,-1864661029,1186402150,-524196314,-1223727612,-133994753,-2028626455,-2015655973,-2015655973,-1864661029,1186402150,-524196314,-1223727612,-133994753,1712684520,74888975,1186402150,-524196316,-268212732,-971658775,-342942394,169,1016806540,1031093600,1050295711,1060912907,1069956938,1076707351,125242428,334104690,-1274992632,1617349519,-323547290,-1061810330,352267879,3952709,-882809344,279012965,1166632713,1170630416,1740832797,2109149030,-406755802,258369284,1711293879,512489475,-256375230,1725468160,-1184434637,256,-1385797636,-234936986,1718091775,-493852757,-1587124752,-880080748,218349955,1718026343,1720739755,1048581,1744036352,1169624934,-524196314,-131373564,8227175,-1223727513,-1050270595,1718027495,71677711,1794638694,-1100603640,296,1738892903,-1520015472,-1100574617,192,1738892903,-1520015472,-1100574617,280,1738892903,-1520015472,1730580583,284968902,1204250406,1711276282,387256,-1989777664,-966324155,-1023402683,103588198,-268425882,1718091775,1729381769,1918406,333179075,-1061744794,48284006,-1223727515,1695073310,147463723,-836883611,-1023187448,1166632551,1170630420,-1195180003,-1064435432,147104101,-905565339,103507208]},{"sector":4,"length":512,"data":[-2045835058,1717895200,-1003047153,258368776,147472055,-1173395674,-215764,1930100735,-147108243,1717956213,-969492721,909862152,1987446984,1694500025,1052184422,694487242,1695073806,147459625,-2079328453,-544538571,-1223727364,-1922668599,-1002188,1718091775,-256033651,-201326593,-1524210073,79269991,-1070373376,2123196007,1718088688,1720739755,653506319,-1257471641,-4,-10157056,638111238,344680039,-843,14844415,491177712,1451845120,-1587166444,2951366,48808204,-872010907,327552776,8435712,-4669298,293398783,-1912530760,-11081280,-1912569672,113600,-1206841112,-1064435432,-12418289,-2011347258,1717944299,-1003047153,258368776,147472055,1500837691,-1912530760,14844352,1741324784,1718035972,-55245685,637534207,996603903,1309111504,-378144965,642659307,-1255898777,0,-393413633,513464462,1694574602,147721983,1918662,-524677274,-1207078133,-661782448,-1912569672,280291520,491177667,-2114327670,1929445625,15775781,258392206,1730605495,-1256944794,0,14844262,1744830448,341150054,491112039,-966278400,-1014293179,1740644367,272992614,491112039,-2135375104,1740672512,2109149030,-406755802,258369284,1711293879,268236803,1730592801,1711769958,251971459,1730594849,1711769958,251971459,1730596897,1711769958,251971459,1730598945,1711769958,1711589251,1730592819,1711769958,637847427,126445159,80184166,653271311,126445159]},{"sector":5,"length":512,"data":[80184166,653795599,126445159,80184166,491112039,-2135375104,1740672512,1974931302,-423533018,258369284,1711293879,1744629763,263005798,1718075427,588229926,644245448,-803008595,-1389992345,1742217999,1739400806,1739400806,263005798,1718087715,588229926,1170630648,1707278365,1728372897,1695565193,1728373409,1729643913,1918406,1095875,-779370354,-532774043,846465028,-532774043,712265732,-1223727515,-1190862794,1730543624,-184236186,0,0,-949590234,324868,0,1181089792,-1989811998,-2096832482,-2079389445,-75300726,-2088497328,571648,-206106778,80176934,757,637552640,-184236441,5,-498702706,-1223727385,-949541133,62724,203423744,-949541306,62724,277872640,-949541306,62724,203816960,-949541306,62724,204210176,-949541306,62724,204603392,-949541306,62724,204996608,-949541306,62724,205389824,-949541306,62724,205783040,-499219611,846491652,-499219611,712265732,-1223727515,-1190862282,1730543624,-184236186,0,0,-949590234,324868,0,1181089792,-1989811998,-2096831978,-2079362822,-92077942,-2088497328,571648,-222883994,80176934,757,637552640,-184236441,5,-498702706,-1223727385,-949541134,62724,206176256,-949541306,62724,206569472,-949541306,62724,206962688,-949541306,62724,207355904,-949541306,62724,207749120]},{"sector":6,"length":512,"data":[-949541306,62724,208142336,-949541306,62724,208535552,-949541306,62724,208928768,491112039,49920,0,1118847536,-611892720,-611853433,-611853433,1918662,678626108,66106895,-1526780170,-611892768,-611853433,-611853433,-611853433,658316859,-473952137,79921154,-1021550968,-1893906746,1187445227,-202667235,-611853433,1186402150,-524196314,-1223727612,-133994753,1991708518,-423533020,-1223727612,57017414,29473008,283165030,1739400807,-1872254106,937674891,658312763,-1956236681,1711678494,644333619,1975519917,1742767657,664778880,1962868736,1718035997,847451275,-1039440174,1739286119,-1070373232,-1009289911,-1558362426,1187445227,-202667235,-611853433,-611853433,1991708518,-423533020,-1223727612,57017414,644245488,1724418989,1024518337,1500840385,238769891,1366763325,1712324792,-1956196213,1426465822,1728079805,1722623590,-2131184113,-14180419,-1070450316,1730594059,-1157330586,-1039964601,-1989777626,1715976964,1730593283,-1157330586,-1039964601,-1989777626,1967766276,537877958,-668856360,491177667,1576659875,-1961015610,-611848981,-611853433,-611853433,1918662,762511932,104470075,258354547,-490614089,369321474,-2090391392,460652346,1991708518,-423533020,-1223727612,57017438,255650035,491177667,-956699761,-343728826,-2015655949,-2015655973,-2015655973,-1864661029,1918662,104470075,16810767,-222883994,-1042904218,57017062,-2094489546,-2079326404]},{"sector":7,"length":512,"data":[-940179222,-846917696,38570752,721611201,258112715,-1677672828,48480762,1694653575,147590697,1018629990,996539139,1963509822,66792204,-1989868932,-351745986,66792197,-406781316,1040410114,-1167718880,16,-4662477,-2023282947,560408071,-524677369,181653515,-100440325,-1645775543,1702166282,-351562264,-996055712,201338120,990046401,1699967683,755549857,-390001664,103507202,-638121780,158581051,-668214901,1913343208,-1946510276,-1223727407,39619388,996539139,1929955390,1727736600,102764171,1695281640,147340939,-83673975,-935425691,-388330744,141691550,1187431325,99321629,491177629,39619464,-1996297279,-370470818,-2095233338,-611851285,-611853433,-611853433,-611853433,309789244,1187383922,1187381276,183173149,-1860352314,1187382507,-2017226979,-1864661029,124912188,-1893906746,-402610455,-2112942942,-1956249441,1946172658,-24418722,1991708518,-423533020,-1223727612,57017414,644245488,-661952851,-1389992345,-1539929242,-1072994776,191235445,-1961265957,1711684110,1718080051,1976966203,996566792,1946474052,-287161836,478766695,-1989777410,-972751292,-352314042,491177536,1715137441,642168591,81838438,-4780186,1761084262,1711734912,681844363,76244583,1718036211,-2090465399,1718027463,83051659,-1989777626,-947689977,491177476,-611859712,-611853433,-611853433,-611853433,259457596,983635058,273058054,1918662,-973031447,-376496826,20709552,258367860]},{"sector":8,"length":512,"data":[1713784503,1711595713,1728034575,-2140604413,243992320,862324282,915105499,-1956239200,1730716694,-6407037,1730553204,-2090459255,1718026951,651822219,126445159,80184166,1149986407,1730544858,1711769958,1124386691,-1603939870,1183320314,491177500,1716251392,611759887,82231654,1186402150,-268212732,117473384,-1389992345,1742244710,-1951586714,1711684110,-1956195789,1730716734,-686015642,1718028405,81216571,-498988684,491177710,-1995969632,1187386454,-2017263587,-1864661029,1918662,1920139836,104470075,258372211,-490614089,369321474,-2090391392,1618280250,2125926246,-406755804,-1223727612,57017438,-10017029,1730544247,1730557951,2008485734,-423533049,1718035972,89110287,653329254,1337331559,-396925436,1600523254,980572249,-1039730843,1946161160,1854625053,-1223727608,1317627593,138840324,1187431261,451645213,-2095233338,1716524267,-1956200397,191949047,-1989728680,-1989728753,-1866268089,1199589168,1197492096,-611853433,-611853433,-611853433,1918662,71090430,-1240528269,787874800,1190962431,-1893906746,1187398635,1038844701,-402651464,1730546474,46284673,1730602613,163713,-941787904,7238,-402651464,-1956246770,177793271,-402243423,233507586,84295841,1183383574,491177488,637780736,-998046144,-611859708,-611853433,-611853433,104470075,258385011,-490614089,369321474,-2090391392,-1837826246,1991708518,-423533020,-1223727612,57017414,-10017040,1730544246]},{"sector":9,"length":512,"data":[1730557695,622208,640369780,-1956248000,57042428,1711885374,165996630,-1956225434,1718036222,209172239,82231654,258369318,1711949751,1730605059,156218895,1466323558,1711980008,257582687,1728017282,1084356491,-388434170,1449527898,1711908328,-2140723618,1946159486,-24418793,1710525286,1278608230,-396925431,1583745482,104867331,654216038,-1223727513,-1050278025,1730544870,1203179366,-268212731,-1240504538,1466303567,1711956456,-1593216162,132646464,-15275766,-385879880,1730546174,637945743,138907495,1096550,503513088,1730545216,641401995,638028135,994347879,-1989728766,1730544199,70993035,1200187174,-1956174332,638204740,172460391,1204250406,637713676,239585127,-1866268672,108134972,-1893906746,258369515,1713659575,1711596481,71743247,1758987110,637993088,193685095,16351590,1979715584,491177478,1715399574,108382475,1918662,-2090454037,1005061315,1714057728,-2090405749,803735491,1713271296,-135726965,478052352,1007645696,-972655616,-342418106,19195912,1877476331,38594561,-2015655997,-2015655973,-1864661029,1449546342,1730565990,1946237824,-972525000,-107471546,637577705,-1223727513,-1050278589,1730544864,1404505958,-1039964669,1723925350,268435517,1711765248,-369573589,1187381378,-335961571,-1956174213,65536339,1718710792,653440783,-1223727513,-990509757,-1055951424,-1956248864,1730715710,45564987,1187383154,-335967715,-1956174261,-92208301,124928000]},{"sector":10,"length":512,"data":[-1793243450,1715071993,-2123968253,1048514,-356424192,1740768012,45564987,1187383158,-335965411,1740778267,766968835,-1050276864,1730546912,1404505958,-1039964669,-134151704,1583767398,-2017240474,-2015655973,-1864661029,2012691302,1711322136,996602115,1711765495,11596075,728112619,-352210703,1711387670,996604163,1711765502,11598123,728106475,-1023299335,-611853433,-611853433,-611853433,-477898357,-373201405,467887874,-1956223194,1718035975,1730545287,1711769958,1711589251,1711588995,-1947896503,638772171,638028391,637961831,1711769703,-498702777,491177710,-611859712,-611853433,-611853433,-611853433,108265788,1918662,1187392491,-58682851,-352160768,57081120,1716479737,1315369219,1725533030,1711467457,1946221443,-293378552,-276601341,-2082895101,-1050278941,1743979241,1738876518,1036749712,141885441,63341414,63406950,-1540986893,-1006858137,-611853433,1464947302,-796170746,105266819,-1085770496,-946994920,105135755,-1962621053,-2096741874,-410974993,1049169916,1713768006,1962950019,82805738,-220011148,-1962621053,1711686158,1711677601,3145733,-930912768,1722508903,1048581,1727455744,1174845199,105161478,104992395,48349513,-1050230485,57021664,1499400130,-2017240474,-2015655973,-1864661029,1464946790,-2013318394,184960574,-1205832449,-1064435432,104992395,48349513,-410912469,243994620,862324290,-475306304,133882370,1483102559,-2015655997,-2015655973,-1864661029]},{"sector":11,"length":512,"data":[1918662,-2079391428,1081540667,1186402150,-524196314,-1223727612,-133994753,-54919246,1008634624,-1043649786,258343657,664766390,192201274,283165030,1718084490,-2138019925,1967719619,658350565,-1021819255,-1893906746,-611845653,-611853433,-611853433,-611853433,1613150735,108134406,-1541585210,20734955,192022644,-1893906746,-1545054229,1716710379,642168591,81838438,-4780186,1761084262,-1207500672,1730544640,-2090465399,-1240530233,1208375302,126445350,46629734,637943969,1711769959,-1207777405,1730543616,-2090465399,12059335,-1989728768,-947689977,491177474,-611859712,-611853433,-611853433,-611853433,1148649788,1996553091,29255226,-1962934272,1711684110,681590411,-1220770969,1175024895,1187444450,619414813,-1224423577,-949551104,177988,343312640,-100204699,491177480,-402003200,82570010,-1893906746,-1864661053,1300254016,1310739724,1293176432,1294290202,1187400997,-1173422051,417830,154940275,-1240517261,787874800,1289790719,-1996078943,485168198,1066694,-92268821,-972655616,-342090426,16482315,1187382900,15440925,491177667,-956699740,-342942394,-1864661005,681524864,1713796352,-1996082015,258342982,-1050216265,1586172136,1200174600,-524196328,-133995004,16745318,1139278708,681549828,-1022343544,-611853433,-611853433,-611853433,106438202,-1240499597,65454579,728808576,175404289,1719563739,642168591,1711683235,1711595713,7780111,104085129,1727005542]},{"sector":12,"length":512,"data":[1635055115,-1956223194,1383415814,283689318,1963049277,-1223727543,721829902,-57973023,1040410213,-1956247220,-1042183465,1743979241,1738876518,-2134078832,115540961,-1540986893,-1142386585,-225745403,50591208,-1023000538,-1709357370,-963636501,-342024890,1187418123,82551581,93907088,-2015655997,-1864661029,246812518,-617413032,-2021260880,3943280,-1014821772,-227194616,-1692580154,-1956302869,-2096567746,-1081532185,-1956238478,1714123967,102774411,-1956223194,15106358,67156464,644245491,-1047500891,1585972203,-611859696,1946221440,-1625408997,975270952,1929795614,-1040240112,11535331,728795014,208928828,491177667,1480491164,-193724154,-1659025722,1187442411,-1950154723,-490641711,1020496656,1952675586,783945538,1912669792,8415259,-1956239865,1711565846,106698377,1712346761,-1995380031,132847702,1544960870,-969837306,1006640454,252212225,106966714,254536448,106968762,1713629952,106698299,-1173417355,17195062,1613675023,1187381254,183173149,-1541585210,1187382507,12816157,0,-1587152228,2951366,48808204,-872010907,1925397256,258368855,147340983,147235173,-473839829,1925393154,39584056,-16040825,1015612020,-937557659,49004808,-870448795,-1958966520,-339672484,33601538,538348390,309510,67725094,1274610618,-123865483,-339632701,-388434174,-1796538262,-668249187,1526728936,-389838221,1707802625,1695074977,147195435,990046401,-402099517,57803938]},{"sector":13,"length":512,"data":[-1023091480,-889191960,-962501293,201338120,1694689473,147588651,1694687425,147201675,-937546907,1992506120,1632259,1527095016,-2015655997,-2015655973,-2015655973,-1864661029,-889191960,12473939,33602060,537824102,1710922758,1052184422,79366344,-2056837632,1978710356,1006316294,-1947045129,512189919,731711688,1992502239,1945582387,310063,1418028838,141881529,-147064021,485225074,643299996,-1185643161,721843696,1928805371,-550806542,-1660941848,-847789269,-1866245282,1365659750,1449546342,-620013722,12026895,996539139,252233790,721464451,-1956228101,1711679542,79361927,1718035968,1739654283,-1872254106,-634654205,1448865653,-423494005,-251435518,-1223727515,721995790,243885515,-888993592,258395947,-406717513,-30710270,-203425946,-1524210073,-1956212633,1711679542,1048762,-1043625216,1718026985,-1872253658,1739286119,-33610352,1740768102,-1872254106,1740768102,-1872254106,1740768102,-1872254106,1591178569,112660326,-1956248006,1730715670,-58569589,1962932611,1926118155,1741368071,-58569591,1726510408,1717462623,1717134938,-1587166376,2951366,48808204,-872010907,1942170376,1406727945,65591435,-389850365,1707802625,755549857,-390001664,103507202,-1956312884,1695074846,147201579,-339668874,-605532158,42077954,1539541760,-1866218749,104470075,258348403,1348915895,681615718,-1875082393,1951950591,-960235518,-108847802,-2015655997,-2015655973,-2015655973,-1864661029]},{"sector":14,"length":512,"data":[1711391160,1209065665,1739286119,512452240,258344484,658312887,-1223727513,658328884,1718026240,1739797645,1738876518,-394966640,-2015655997,-2015655973,-2015655973,-1864661029,-1389992345,1716876608,1024518337,1282736577,1712324795,1725675279,1024374543,258369319,1028471991,-1056964569,57017063,1728455742,1739400806,-1419352176,57053287,-1419352125,57053287,-1419352125,57053287,-1419352125,1967755367,-668987448,-1009245681,-1558362426,-611859463,-611853433,-611853433,-611853433,-58634138,477564844,141462357,2125926246,-406755820,273023236,1186402150,-133994992,-1017616803,520645150,-570031771,1049322760,-410842916,1166763768,121997825,147374438,-1223727515,1711857214,-705955837,-611853433,238777059,-2029050051,1718026383,258387238,-1050224457,-1956245272,474412792,174158849,-1049201216,-1115682577,1962878879,-1043887252,57017063,-2096749506,1953824763,1975568374,48480607,39467879,-1855564173,-1310816410,1744477188,-423546365,906192386,1743980064,1738876518,-1956209264,1237879795,537894005,-668856360,-611859464,-611853433,-611853433,104349315,1535381249,1027488512,142806823,-1946221824,-349749315,1187445140,1038846749,491177721,-2026443894,-2015655973,-1864661029,1712324795,218947777,1718026343,1720739755,1718076163,1720739755,1718076163,1720739755,1718076163,1234200491,-13728497,-668987400,-1009245681,16445313,-947846025,-8191750,-341936635,-2015656028,-2015655973,-1864661029]},{"sector":15,"length":512,"data":[-1040992753,-1956248602,1714123964,1711678625,-1050228597,57019112,-108960063,4194304,728106611,-956078399,-813434212,1718036071,-1587136375,1730545184,-2009560730,1697160990,621341345,-2076639200,141896562,265822223,-1013065694,728925321,47206,-161103872,34144262,862327157,116876736,2099434,1717896564,-2130143071,233832679,-1100611481,4096,16825190,280559616,1718035968,1721697417,1229178371,-1326713995,0,1716670803,-1665125546,915105530,191244720,638612726,205914983,460571451,-1956223194,-1645483210,-796141525,-402587464,-1019495853,-1039989133,-1660752903,1516136184,1724078937,871140192,1727700160,699414155,267783014,637585028,205914983,-1956223194,-167025098,1586229621,264452880,1694543490,1695074977,147195435,990046401,-2004742205,915105280,-1956238928,1694900238,1052184422,1718028486,649673869,206474087,-885299997,-880082314,1730599211,1393315369,-1956223194,-880736674,1730545767,1454837606,-1956185074,-524196158,-1023187442,1739286119,353936,1728053264,-1872254106,268436838,1718026240,1720739755,1048581,-1419352320,1730580583,1421283174,-958263210,1451845414,-620012786,1730546292,-348746906,518757774,540945254,49266950,-968980123,-336028408,1586208017,-388486384,-2096168637,1038679837,1634138370,1717593795,-1956184269,-1677320170,258369018,147207863,-937522331,1995651848,1718036043,-1302021617,91425776,-351998333,1962871788,1996176178]}],[{"sector":1,"length":512,"data":[1718036019,-1167803889,91360240,-351998077,309740,-1956223194,654096964,1149724263,1730608306,-1169913498,-498118916,-1917391897,-907281284,-1869573987,1717959324,-969492721,512451848,-214234936,1730547830,1689915238,1930162354,82739973,-1956254485,1695073822,147207817,1015899751,734759858,-1920593970,48873728,-1338602650,1718036009,-66691445,-1956223194,-1020566009,-1050263438,1730547432,1930053179,651201333,240551783,1418290982,1730547782,1712080639,1718075443,1737516971,-1872254106,1739286119,-1419352176,-1058893721,-2090451733,-1193144121,-1956236053,1718036182,1730545547,1714850662,91616779,-1338602650,1718036009,1711693451,-696978885,1925393254,-389978404,996615694,-780989882,-392325141,1634074884,1716938435,284918615,258349171,699670199,252181379,-1157627006,-1956184058,699817244,-1587216384,728041674,-1056389626,-1019542808,-661978509,1711277241,1086568207,76375655,4677,67120384,-16447374,183025935,-473839613,-1193737468,-1058537215,264244151,1711315332,-1043810545,1732314345,1292668262,18,1744538470,194809190,4095,-268377215,-1061744794,182501734,210593383,-886348232,250200422,-949590234,7,-1989728768,1730544727,638209929,206539111,-1989777626,-1070397857,-2090444954,1744572103,1083205547,-4654622,1739286527,-1671469424,-1274609670,915105321,191244720,1711764982,699416201,-1956244757,1718036190,191248011,653489654,998860391,32241821]},{"sector":2,"length":512,"data":[1717528313,1399243614,1449546342,1717959324,155721355,-1329364634,1711276073,699414155,1962281830,-1956174286,1730546758,1963607611,1718035996,1730549387,-15496858,-1658211314,1451976486,16955396,-340338968,-561289537,-1956223194,-1647711434,1516658278,12802918,1484806198,1348884619,417382758,-1912581960,8435928,-1050222450,778508520,272962815,1711276120,1399243608,-1729603994,-949525504,26018371,-402603032,-1209532111,-2123930623,17499259,1734611826,-1073593401,46655489,-402432280,-504888474,23553027,1583743603,264461158,8435872,65593486,-878637312,1357402982,66250752,1724078950,474385232,1014352139,947242507,1614711141,113730825,17500514,51052417,-8316301,544342784,1644611429,1694564361,-1139900058,65544,103213056,-1996488514,-1833034634,-1017616887,-335544391,1716545272,512452177,-1184496096,2,-1223727513,281860,-1073020928,1734609524,50644838,0,-2123962654,1048771,1717134848,1348911960,-949525423,1694498819,1678336673,71534951,106733926,-1989777564,146671171,246812416,-2142697896,19624124,1734608757,-352187517,147227450,1734667746,184843137,1680634369,67863399,-331447451,-2062614520,1734606853,1695550339,-1740734106,268435464,-2146667520,19620670,1734608245,1493699459,1724078182,1716545109,1716676177,-256244137,-1581085184,1734608448,25854856,1734606848,25920454,1711276032,862385715,-768383233,1153853284,1677724219]},{"sector":3,"length":512,"data":[994362983,1734672139,205210823,1734672383,238765254,-966302465,998212,1711476712,1962932355,53667845,1734612203,184843137,1695248897,149700227,-402427392,-2090466372,-1031731513,-1334639616,1717528071,1717134938,-1017289128,1382436966,1432770406,1449526865,-1912530760,-966302528,25965444,1677721600,75202919,-2112945909,-2140864502,-16186562,15041807,-1606513818,780887592,244000932,862324282,1015244754,-2079326313,1483079877,-2063702172,101379,1682990592,865372263,397,-2067372188,101939,1734606848,864339814,399,0,-949590172,26424196,0,-1956184064,-1056794812,1734607592,-1758231415,1728053249,79105894,-524196201,-619976702,-1989777564,26817412,1732116480,-716928154,-1072994816,1732119669,-716928154,-1072994812,1732127860,-716928154,1718051840,-1892449143,1040187393,1149986407,1734608085,864323942,403,-1937741980,101939,-2140733184,2665658,259325952,-1937741980,101939,1734607360,1711344515,1108395651,746917705,79987711,1566988551,1516658534,1724078182,1716610640,106391122,1711276216,-1206853439,1734607536,864323942,397,-949590172,26293124,0,1717895168,1711839393,268435517,1712813056,1711678625,262149,-629676032,-1989777564,26293124,1734606848,-1791785786,1,1725336422,12582707,50784268,-490650,1734616436,-1793882882,1677721601,-2071370137,103987,1718051840,-1707897719,-2097151999]},{"sector":4,"length":512,"data":[57018566,131263425,1516658534,1483102566,-966302525,26620804,-1023410176,1365659750,1716672358,1734659723,-1760852794,1,-1223727515,185134142,1717007615,1678043073,1296007271,1734608756,1968848768,-947165627,82362726,-1956158400,1734607703,98179,1734614645,-1760852738,1677721601,864323943,408,-1802934428,105011,80118528,1065379684,51082330,-524196158,-125082108,1717218795,1717134943,1449575256,1365661542,-1956248034,-1922668594,26741692,-1609629696,915236359,-1475409564,1358111,1738928999,1713309584,1717528153,1399243614,1466324582,106058064,-1912569665,-74750265,-1175047322,1734606912,171394294,1697215489,151207552,1679914495,1152782183,1734610487,204954763,-1240504476,1712011092,-387151008,1634130866,309715978,113673062,133744866,1717066074,1717462623,-58670245,-102140797,1382477291,-18330,1734672383,184843137,1695052289,151207552,-1978698241,-1240504618,258369490,664765118,1516634112,1382453443,1711691366,-2006490029,1678654276,994362983,-92208886,192315392,124978236,1283483492,1711409723,-1041058033,1730545902,-1257993370,0,216580454,-1912530754,974031814,258361606,-423497289,906192386,258353312,1711428791,-2093697265,628424702,1711467201,184739521,1243247826,637723329,478897767,48939414,216777062,1958951782,1976699661,1976110054,-1157647940,1533444095,1284007780,1734609723,205214857,1717462535,1348911962,1683116390]},{"sector":5,"length":512,"data":[-2067306905,101427,0,1718051840,-1875671865,1,1677721600,-2067306905,103475,0,1718051840,-1741454137,1,1711276032,-356398797,-1193160440,-523042814,1141401444,-372175045,16775809,1730559092,-1794864282,0,-524677274,-402296055,652935261,216580454,1958886246,5236765,112720,-524164909,140993538,1477065540,-1989777564,25965444,-964493312,-2092875260,-1519254279,1678831235,994375271,427097866,-2088081564,395,1149790052,1734609723,25920510,-964493312,1499879952,-775727002,45633761,-136260864,543646928,-1206961340,-523042815,1141401444,-372175045,1399243608,1716933222,102766219,-969000091,1681879816,76244583,80184250,1963065513,79259371,1711276032,-2123966325,4194499,1044079872,275974342,996566884,141933084,-2096840317,-487914297,216580454,1717200478,-1201224869,-1,1348924139,1711298024,702037635,-397773824,1508376758,27453441,1717917542,-1036077297,-406755830,-947821052,3312,1712866955,-1961828159,1718052035,1694648201,1711981217,-1928273727,1678590470,1200186983,-389978618,407275792,1712124091,-1017616801,1399214182,1466324582,915105361,1717896740,155729547,-590904986,1711276073,41147,6338816,-1956223132,-1050239484,996543720,1124431299,636219106,-669087386,-1019517399,230671,1690317670,126445159,80184166,1718051907,1721631883,-502470463,1049191904,1717111180,1717462623,-1017616805]},{"sector":6,"length":512,"data":[1382436966,-2090510490,584766,9405455,-1223727515,185134142,-2105274369,-406755840,-2140707836,125062463,1065379684,1718646106,-1050228853,1734608104,1471614822,46301955,2139318116,1148518401,1382436966,81838438,81969510,1724908390,1048325,-389978624,-356424180,103507468,728115672,1714018326,343130683,80176743,2743429,0,1715496448,-328023493,1483102822,1065379684,51147866,-1050261310,-1956248352,1719856120,1717200479,1348911960,1699829350,151273088,1698264065,151338624,1714516993,244053555,1718036285,1963243279,10047,-670684314,1360425513,1728054457,-2063284378,10716,0,-270385050,-689813927,1717462617,1348911960,-4692399,1711276032,702023211,80176743,2743429,0,116876544,526570,2982927,-230784667,1980104712,244016420,-373225230,-1061657080,1711276032,702023211,80176743,2743429,0,-499096064,1483102703,195,0,1630691633,1663983956,1668571985,1676305313,1630626097,1630626097,1630626097,1630626097,1648255338,1730105450,1293221678,24832,1048626115,1963010915,1679178511,-972066261,2843398,-1023409736,-1070362189,-1833698837,-202653645,727924352,-972459007,19620614,-1023409736,-1070361677,-1609565717,-1912569672,1708864480,246878054,-1050277652,1734608097,1951218048,-2140707831,-2062591431,1734607007,96643,1734611061,1979930937,-1956158455,-633666727,1734614387,257571200,1677753988]},{"sector":7,"length":512,"data":[54627175,-373201344,1925710596,-507419024,1723591428,-1962612287,-507418943,1682980868,21072231,1367959396,1718051843,1426604487,1679835725,1103586919,538976268,1994009376,1303399222,25585508,82428262,1724515137,1678041537,1677822055,21088103,1734606848,1677941129,1103586919,8,1718051840,803271,-1207959552,-346357759,-1143764210,-771030863,-1329921164,264254208,-1609579615,-1912569672,-1223727392,-1050261046,1734608097,251744569,1677738629,2038523495,1112364296,881135392,1718051840,537688449,253763616,1677731461,21088103,1734606848,138528614,0,-949590172,3137,266862592,112640,-1592796365,-1145031741,-152371022,1399214182,1717916006,-335104241,-524196344,-2140707836,1869896248,947939172,1684567373,24675175,1682601216,-1223727513,1715667800,1711596481,-1821976573,2021877604,829751297,1734644582,1734609802,1734609032,1090734987,1208051556,-919378429,-1989777564,1718051851,1678003081,1267295847,1718051848,-351515767,1718052000,55097103,-507419071,-1056741884,947939172,1720350042,1717266009,1048822616,251734880,-402649212,-1073020870,820239,727713479,28835841,-1009044992,-1070366029,1614709699,-2079391701,1156055055,264243968,-956298108,2842630,112640,-1279009998,-1010814078,727858816,428150529,116876544,2099434,623887,-368147611,-2031607800,117401042,28838576,-1009044992,-1070366029,1648263363,-2079391701,-2090532811,700478]},{"sector":8,"length":512,"data":[3245071,1694512104,179322499,176492289,264243968,855643012,185002944,159715264,646145280,-388036374,-10104259,-1207259122,-617480191,864203715,-1070349376,-368642203,251666440,-1207958652,-617480191,195,1655971598,-1014095411,-402619969,12062567,2215244,771751936,1253119,195,1157627904,1482181965,3168344,102651479,861032787,-1579643200,-1073020514,-1064425612,-1912602440,1359832,12121995,2472193,1973875708,244000280,775946258,1377932,319719726,1532582400,1600003847,-1205924157,599407872,1914817792,-1193768119,567100416,-1023983502,980680832,-1186723912,567083008,-12832654,45624437,1948228,-855636295,1025471009,443875334,1916547,-1961659099,-1912594162,521046977,-851528704,16824353,1052023019,-1514659379,1030213119,12092506,-1903004415,780397507,392183427,-1023315197,1397773854,521032273,-1274994502,-1105081079,-466485066,-628417843,382534068,-466481291,-751101235,-293342604,-351505407,-840682775,-855526378,1526101270,1582848857,49951,1936028240,1851859059,1701519481,1752637561,1914728037,2036621669,170798638,1296376845,909652813,1953459744,1936615712,1819042164,757097573,1668180256,1701999215,1142977635,1981829967,1769173605,221146735,604638474,1229785613,1397707331,542393935,1634760773,1684366446,1835355424,544830063,1634623821,544367975,540424243,1919243808,1852795251,875443232,1124732217,1920561263,1952999273]},{"sector":9,"length":512,"data":[1667845408,1869836146,1126200422,1869640303,1769234802,824209007,741750841,960049440,218762548,538977290,1767994945,1818386796,2019893349,1684955504,1830839397,1919905125,539893881,539893806,539893806,539893806,538976302,538976288,168641099,1159989773,1851879544,543450468,1869440365,1931508082,1769370213,544433507,1986096757,1634494817,778398818,218762528,538977290,793594188,542330181,1936876918,544108393,539893806,539893806,539893806,539893806,539893806,539893806,538976302,221261360,1411391498,1818326127,1886938400,1701080673,1701650532,2037542765,1734438944,773878629,773860896,773860896,773860896,538976288,168636448,1983979552,1634494817,543517794,1634760805,1684366446,1835363616,544830063,1701273968,539893875,539893806,539893806,538976288,537529648,1953453088,1746955361,1818521185,773878629,773860896,773860896,773860896,773860896,773860896,773860896,538979872,807411744,538970637,1769235265,1746953590,1818521185,538997605,539893806,539893806,539893806,539893806,539893806,539893806,538976302,221257760,1344282634,543516513,1835102822,1702043749,1852140903,773857396,773860896,773860896,773860896,773860896,773860896,1330520096,538985806,168626701,1411391524,1818326127,1886418208,1830842981,1919905125,1986076793,1634494817,543517794,773860896,773860896,773860896,538976288,1260396576,537529666,1918979104,1953719655]},{"sector":10,"length":512,"data":[1886410016,1293972069,1919905125,1816273017,543908719,1767994977,1818386796,773857381,538979872,538976288,222448416,1428168714,1919250544,1835363616,544830063,1918989427,1735289204,1684300064,1936942450,773860896,773860896,773860896,538976288,538976288,168626701,1296909604,540424243,1667462515,1718842213,2037148789,1936615712,1819042164,221144165,604638474,860704069,1092630072,1986622563,168636005,1159989773,942886221,1850286134,1769235297,221144438,604638474,860704069,1226847800,1952670062,778401385,2017790477,1684955504,1830839397,1919905125,1633951865,1763729780,1852383347,1701012321,1651078003,1965057388,1818850414,1296909600,540424243,1914729321,1667312997,1635150196,778331508,168626701,1296909604,540424243,1763734377,1967202414,1830842228,778396783,1461979661,1702127973,1866670187,1668248176,1869837157,1970479218,1919905904,1936269428,1634624800,1684368482,604638510,1953064279,1126198117,1869770863,1936942435,1931506287,1869639797,1763734642,1768169587,1818386803,221144165,1700209674,1801811049,1886339872,1701015410,1919906675,544434464,1667329641,1936942435,1701601897,1953396000,1159752809,942886221,1936269366,761623072,1769235297,1702125942,168636004,1227098637,1818326638,1881171049,1835102817,1919251557,1701868320,1768319331,221144165,1213932554,1852784973,1936269405,544104736,1635151465,543451500,1634886000,1702126957,1852776562,1768453152]},{"sector":11,"length":512,"data":[1634541683,1852401763,168636005,1227098637,1718973294,1768122726,544501349,1869440365,1713404274,1428189807,544424525,1981837935,1970565737,1210084449,221135181,604638474,1701273936,1634879008,1109419373,543519585,1919181889,544437093,1969906785,1684370547,604638510,1886413133,543649385,1768383826,1919251571,1684291872,1936942450,1784963360,1702130549,168636004,2053722916,1718558821,1886938400,1701080673,1701650532,2037542765,1869574176,1684086892,1953723754,221144165,1096229898,1313427026,1327512135,1869182064,1330782318,1919885389,1296126496,1952801824,1702126437,1769414756,1852401780,1734438944,1919295589,778399073,168626701,1380013860,1196312910,1296375866,909652813,1936615712,1819042164,1998611557,1869116521,1629516917,1296649248,841888544,1836016416,1769234800,543517794,1701273936,1634879008,168650093,1461979661,1229869633,540690254,1919251285,1701868320,1768319331,1914725477,1701277281,1986994291,1634497125,168636016,1461979661,1229869633,540690254,1953064279,1126198117,1869770863,1936942435,1847620207,1763734639,1635021678,1684368492,218762542,1296376842,909652813,1953459744,1936615712,1819042164,757097573,1936615712,1768318581,1852139875,1701650548,2037542765,218762542,1296376842,909652813,1953459744,1936615712,1819042164,757097573,1668180256,1701999215,1142977635,1981829967,1769173605,221146735,604638474,860704069,1847604792,1763734639,1635021678]},{"sector":12,"length":512,"data":[1684368492,1763716384,1919902574,1952671090,1667329312,1701734760,1887007776,168636005,1461979661,1229869633,540690254,1650552405,1948280172,1702043759,1634738292,1713399143,1701667186,1935761952,1684086885,1936028260,1160588659,1965052749,1635148142,1650551913,221144428,604638474,860704069,1629500984,1634038380,1763735908,1635021678,1684368492,218762542,1296376842,909652813,1953459744,1936615712,1819042164,757097573,1397577760,1851878688,1919248225,1953459744,1701998624,1953391987,218762542,1096229898,1313427026,1411398215,544434536,1936876918,544108393,1210082927,1296387401,1398362926,2036428064,1969316640,1663067507,1818652271,1937007465,1953068832,1296375912,909652813,168430894,1296909604,540424243,544501614,1953721961,1701604449,539828324,1701344367,2019893362,1684955504,1830839397,1919905125,1634541689,1701273966,1701060722,1952671092,221144165,604638474,1314013527,977751625,808469792,1634738224,1713399143,1701667186,1684300064,1936942450,1953459744,1667592736,1701670255,1684366446,168430894,1296909604,540424243,1986622052,1847620197,1763734639,1635021678,1684368492,604638510,860704069,1092630072,1986622563,168636005,1296909604,540424243,1667329609,1702259060,604638510,1634760773,1684366446,1835363616,544830063,1635017060,544434464,1667329641,1936942435,1701601897,1953396000,1159752809,942886221,1936269366,761623072,1769235297,1702125942,168636004]},{"sector":13,"length":512,"data":[1296909604,540424243,1763734377,1967202414,1830842228,778396783,1428425229,1818386798,1869881445,1952669984,1952544361,1296375909,909652813,604638510,1650552405,1948280172,1701060719,1952669997,1952544361,1296375909,909652813,544432416,1933725013,1701994784,1768251936,1881171822,1769369458,543450468,1851853325,1919889252,1397572896,544434464,1852400994,1937055847,221144165,1851073546,1701601889,544175136,1667329136,1296375909,909652813,544106784,1869903169,1685024032,168636005,1768249124,543909236,1919971139,1936024431,544370547,1886418291,544502383,1696625513,1818386798,221144165,1700209674,1801811049,1886339872,1701015410,1919906675,1886745376,1953656688,544434464,1634953572,1684368482,604638510,1650552405,1948280172,1852121199,1701601889,1768249120,543909236,1919971139,1936024431,544370547,1886418291,225735279,1851073546,1701601889,544175136,1634953572,543517794,1953064279,1126198117,1869770863,1936942435,1931506287,1869639797,168653938,1768249124,543909236,1919971139,1936024431,544370547,544501614,1953721961,1701604449,168636004,1768249124,543909236,1919971139,1936024431,544370547,1763734377,1667457390,1769173861,543517794,1769238133,1296375916,909652813,544434464,1630365042,1986622563,1684370529,604638510,1852994900,1852776563,544370464,543581807,860704069,1696609848,1851879544,543450468,1869440365,1931508082,1869639797,221148274,1158286602]},{"sector":14,"length":512,"data":[942886221,1331372086,545005646,541476431,1430331516,542986068,1329420123,545005646,1179598167,168648006,538970637,2082491983,1179012896,1092647968,156193877,1769235265,1702125942,1919885427,1937077024,1684956528,1296375923,909652813,1163412782,1986356256,543515497,1986622052,221016677,538976266,538976288,538976288,538976288,538976288,544370441,1667329136,1763734373,1852383348,1953849632,1869422703,221144420,1461723146,542003005,1179590780,1409878342,1936618101,544108320,1864397423,1461741158,1702127973,1868767339,1668248176,1869837157,1970479218,1919905904,168636020,1634620708,543517794,1948282740,544109173,860704069,1327511096,539828302,1953460848,1702126437,1869422692,1931502948,2004117103,543519329,1701997665,544826465,1852732786,778530409,168626701,1986939172,1684630625,1918988320,1952804193,757101157,1296376864,909652813,1953459744,1936615712,1819042164,757097573,1869770784,1952671092,1830839397,543515759,1952870259,1701994871,1919705376,2036621669,1853190688,1735289198,218762542,1296376842,909652813,1953459744,1936615712,1819042164,757097573,1702057248,1701978226,1936029041,543450484,1919902305,168636020,2361869,0,-1899328482,24165082,567085492,102679327,-1945690537,-1160212792,-2144992753,-16186562,10913039,147104038,638320685,147719723,637724865,147588651,-1090199359,96010754,14149632,-1274947910,-1339962103,-1042009536]},{"sector":15,"length":512,"data":[-322960184,808455428,-2013108033,-2042149115,1191545028,147104038,-1056178131,79233768,43695872,637576424,755549345,723913728,-1056387578,723911400,-1190605818,-843120636,8906754,146841894,-1090517831,2062025472,-90102272,309512,-402443329,-2094661523,-16189378,-1591340684,1723795704,11462659,-970979898,-1169686203,162791994,-2094652979,584766,820523892,115917225,-1190945089,921174020,-1456871424,-1090066239,79234004,2615296,149725478,-402388289,1170604144,1908033537,-855002109,520576801,167772611,-402627584,-400093181,1355481089,1448235347,-783355509,-52743450,-1959865805,-150049396,1977289457,1975520008,-350179324,-1288698876,1191544833,-293354869,-1965195518,68101314,1191544880,1532582494,825279320,892613426,959985462,1145258561,31999557,1397803776,-1946398127,834000,-338437493,772793219,247105418,-2092497528,-327351063,1482381658,195,0,0,0,862347366,-13408522,-2094580319,17184830,112722805,48283904,-1560280059,113641024,-973068129,19623942,12804454,0,156830024,2481,1862270976,1717989230,1869903201,1852783991,1718566263,993996646,1074740495,1208960015,34557199,67109632,83887104,512,0,0,0,1465012224,2011757598,1899922177,343146767,259196662,-401574648,-1073024866,700058741,20310281,-385798167,116785461,251727731,771756933,-1912597087,-38737704]}]],[[{"sector":1,"length":512,"data":[-1929528344,-371683640,116785319,1946292083,1732150120,846528783,1417518,116906126,67818,-661731188,1082639,-1444937457,-2079391743,-1984299002,14805260,-402587464,896790565,-385233990,1048772819,1963003753,1946600979,28901135,-267655167,-390456461,12183817,258686595,-1207012095,-152567550,-1173982225,-1528231362,1929836032,829686799,-402521928,27848673,364512885,9300235,258817667,-1207077631,-890764799,-1173195793,2045446840,-402521416,91484093,-351607110,-387698068,-997527631,20833330,-972720896,-15764474,1912603197,-1313189876,-855002103,36526113,-1948200704,815107064,-855002097,1950253089,125042703,-1274450758,-1205744375,1927807488,1946265839,174438940,58000040,-1274376518,-2145268471,1012798,968492916,-855002101,1516183329,2092614488,-855002101,-1158485215,162794705,-970579507,-970584827,638189893,604128710,-678692565,162799366,-773119539,918443603,375055,184577512,-2143914807,17789710,1912617192,1736951599,-2097151729,242681083,259196662,-2145553150,34566926,-75296277,-166955256,68121350,243272309,-352055437,-1017422147,259198592,1475799816,-1899262970,1004221379,1963940751,1337953037,1375491599,1582933747,1128467060,1963785091,32242150,-1017182216,-61844650,-919348853,1191545382,-126607300,-193722052,92939855,561253692,494144060,427040828,359926076,-885309113,1094510455,1513883250,537657975,-347732856,1583044824,195]},{"sector":2,"length":512,"pattern":0,"data":[212149424,212147914,212147997,212147997,212147997,212147997,212147997,212147997,212147997,212147997,212147997,212147997,212148070,212148180,212148294,212148378,212147722,212148424,212148697,212148840,212148895,212149176,212149339,212149053,212148476,212149345,212148999,212149260,212149273,0,0,0,0,0,0,0,0,0,0,0,16777216,84148994,151521030,2826,0,855040,989710,6416,320344593,1507348,354156544,6934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,514,0,0,0,0,0,0,0,0,0,0,0,67239936,0,0,0,0,0,0,0,0,0,0,0,0,1026]},{"sector":3,"length":512,"pattern":0,"data":[0,0,0,134348800,0,0,0,0,0,0,0,0,0,0,0,0,-16773114,65280,0,0,0,0,0,0,0,0,0,0,0,537001984,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,17694720,1073676289,-1073766400,-4096]},{"sector":4,"length":512,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1006583808,-872364032,-738144256,-603924480,-2147426304,-2013232128,-1879012352,-1744792576,-469722112,-335484928,212145680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1325420111,1090537030,5198933,1296126534,1330789701,1297040205,1397051984,1380275795,1163087682,-256,-1,16777215,0,0,0,0,0,0,0,0,0,0,0,0,0,1095586560,1094800466,1094910034,1296255043,16798032,0,0,0,1,0,0,218103808,0,-16777216,16777215,0,0,17170432,0,0,262,0,17170432,0,0,-268378096,1213419348,541147721,16771072,1127428336,1095781711,8391761,1396988656,-268369959,1869903201,124651235]},{"sector":5,"length":512,"data":[135792446,104400851,101975536,107087211,137758479,179832938,145819293,96404874,-1943139030,773282838,392046217,-1911017032,2526672,1431458568,-1962533289,61716716,1586223246,-1950118398,-953808290,3655,637534392,638601097,870342,771885496,-401123933,57873249,-1710986775,212184422,1525220211,12060164,650153472,183246591,-385649913,12059731,650153712,-1560281439,-1746401702,61716639,12114062,-387412480,-857206867,277538831,1930624488,-2123995891,561166,-385874944,-1075314105,1958743015,1975519779,-851397611,1975520103,-2123995881,561166,-385875840,1717895719,143658627,35514632,-1515354214,1694987532,-1139899546,12066824,1785380353,298712883,1785397121,886031,255065216,1694500487,47187654,869787649,230671,1712341224,298696755,43366,108265728,950373,1223164169,39750419,1586217870,2143561226,-1703745518,-1274829080,-1474900734,772174856,385222342,-144284415,235442182,251659400,-402546043,-2062601335,28835861,1914031592,1959922446,-2123995894,572430,-402653183,99094954,-144284259,235442182,251659400,771846789,112660326,-1050273983,-1956246816,-339646760,-1023187446,1879049574,57016320,772170758,515247974,-1050268158,57019619,1048587971,1963005681,353798,-402652928,57019965,353987,-402652928,-1553581856,90572332,4095,216580454,103850854,1975520102,-2090441462,67670030,-402585879,-1050265130]},{"sector":6,"length":512,"data":[-266073368,-2147467930,58064896,780140728,390137403,-1557261453,-2144463039,18300478,1717897077,143658627,104541728,326309695,390046510,1027506222,125108503,243492453,-400553840,1717933562,143656695,296974,-1394015372,-1949636608,116876901,-2012346224,-2062614524,-2081947493,-144284315,235442182,251659400,-402617723,1717898159,143656695,296974,7963919,1710540264,-1878591642,76025352,-352095232,2062061672,-144284314,235442182,251659400,1711298181,-219627469,520054072,-966456600,589574,-366574747,-161087992,34144262,-2140862860,34144014,151101541,150905445,175440444,-12681115,494141448,20712683,-966457227,603982342,546967531,251658247,1694618754,149556867,47105,-2090411890,561214,-2144466827,18282046,-970061451,18281990,1727173096,5049,397196800,113510,-2056912896,1946718238,344665614,212187166,162846862,-2095111731,-781843770,1726210787,143656695,296974,23299343,-1874951322,57933832,-1662663448,220719354,865371624,-1195340096,-1050279936,1522012384,-2023348731,1711297542,-1207394141,-1050279936,465047776,-2023348730,1711301638,-1207393117,-527564607,283165030,638436024,-1140422810,-1553570816,-1044902928,-524196352,299612176,109536806,1717829932,638703523,27002567,-953810256,105990,229304320,-392671768,-392359928,862325969,1343409600,391487790,1711292165,84338881,995754049,1695183824,-1878097050,15270920]},{"sector":7,"length":512,"data":[39750655,1586217870,1204233738,771756046,639063457,772818825,385236608,-2021323007,212187136,364560526,-1514660348,-1260876276,522308873,-1912602440,-243078952,150996726,-1171426303,116786387,1963067648,83671555,212187166,162846862,-2145443379,17367358,649727605,-1514660347,-1260876276,522308873,-2147196742,17366590,1048585076,1963067646,79280654,212187166,162846862,-1172364851,116851787,67818,951714676,-1514660348,-1260876276,522308873,520601651,1532648799,1544982062,646655511,1724585822,-72,920643839,-401742360,12117085,-1159992448,149620640,-352239942,216447491,212187166,162846862,-350281267,102654174,-1380016113,-1947824637,-1899524873,212189151,1019201422,115932182,-401939711,98763009,-352243992,61716726,-2140809074,-16186818,-161144204,17367046,-2140860300,590398,-2140859788,34144270,1717897963,143658625,1024,20873317,108396297,17221221,-2144468983,34835518,-2094129035,18279742,-2144462732,18280766,-2140860300,17368382,-2140862348,17368126,-966456203,17368582,17221221,635961353,1067525640,104539671,628496193,1027506214,175374615,390177062,390046502,-1557785621,-2144987327,18300478,1717897077,143658627,577693728,-130120859,863371016,71204965,1031012617,87982181,896794889,104349315,1695315201,-1878097562,4194312,1695607552,-1878097050,-966455288,17368070,788483561,754990723,1695183872,-1878097562]},{"sector":8,"length":512,"data":[131080,127995648,1354981663,540847191,154991476,-919341196,460590396,393480764,326377532,259262780,1918975041,2004499462,-1428216830,853666732,1482664640,509634243,-1911773768,-1393062952,1725478415,614446607,-10000622,296787244,-2124021760,1229520764,-2062596025,-2124021736,1129513852,-2062594495,-970063860,18281734,-385366397,-2124020084,1329679676,-1405389746,-2062598852,1048577650,251663140,-402232955,-2112944524,-771029406,106726671,251658813,1023825282,-2029059841,-1553725874,-1553660358,113641664,-369159388,-964491704,1027386372,1105730421,797052678,265423622,1023814021,-2029060033,-524220894,1688429578,113651243,-1207888143,365791232,326483979,-1410846288,-1327461745,-1885018064,58056714,1694893033,-1878097562,16777224,113651200,-385870095,1017906672,1837371208,1951415551,-659157230,-1615458458,1734808100,-1331876609,1006632977,-1014689968,1048798469,268372216,-402278011,-2112944619,-771029582,95192335,-214007762,175374614,-402649415,-2062612932,-1553660518,-1645672200,1048587781,251729726,1308985732,252023784,184910210,-1207601966,451641344,1929396285,4241413,4002027,-1475840128,604926991,-1207702544,1717927936,143658627,1101213216,113651223,-385804482,1017906516,-2144701123,1254718,87852303,252004328,184890754,797249490,16661765,86542095,1487037504,621200902,636092179,2088855045,1112820991,-2129431217,1414464380,-2140861323,537443598,-385431933]},{"sector":9,"length":512,"data":[-2140863224,-16187074,83133711,-1090326909,96016067,262599424,1694819717,151062214,82241794,321273472,-746254592,1027386372,80512271,-524217651,-388461818,-2112944863,-771029826,79201551,252706877,990163330,-1962772797,67044803,1727791141,12311347,-473864704,281248004,-339646965,-1014929916,1023,14909798,1006632956,-1962773800,-1557247805,-1052765042,-1553725208,113641020,-369159386,-2124020620,1480674620,1678538068,107744899,80118536,-2147196951,1255230,72123663,255671468,1711555973,1307099187,998379268,265423620,1023686021,-2112946160,3998766,663162625,-524196348,-1553570806,113641060,-369159385,-2090531808,-16189378,67929359,382254926,-218102087,-8056922,1015113219,1162760014,-29653745,84330085,-964493047,66251012,-515996826,-2062549226,1017906142,-679145667,65202179,63996431,-4144393,63472911,108384779,-2079342581,-509410370,-485062378,62843158,-8617626,1330466638,-2124012171,1163264892,-2062597544,2088829854,255935495,1694733701,-1139900058,131080,164004608,1711509481,1162820737,209015629,67552869,-964493047,58386692,1329365350,1968459337,-2090441459,1074314254,-385563005,-2124020892,1179668284,210046787,113651200,-2097080589,1307116742,1015113219,808599887,-2124014987,1381237884,276123713,243361381,2236,-964493296,53143816,1329365350,1968194390,75268114,772568393,385287878,96895745,1711476713,1213152385]},{"sector":10,"length":512,"data":[-2062614455,-970063860,18281478,-385628541,-2124021000,1381257020,-477819136,113651202,-2097080584,-504822842,1228701954,1283788622,46564096,255671468,771933573,389889664,-1148973311,46589954,45384207,-2079337973,12058629,1024650112,-2029027328,262668296,-266072460,12059627,-2090441344,537432078,390046510,1023854126,-1914109673,1048798466,268372216,-402491003,-2112945532,-771030414,40666383,-2079342581,238879334,1602686720,212187906,55106446,-2116514880,-1961488189,-123509497,38988040,20873317,-2062549239,-1957821890,381468638,-218102855,1695118758,151062214,36890880,-1077939317,309526,-2062571789,-966458854,17367302,-402514967,-2096168420,54329866,1024488960,-2112945922,-469106178,33064207,-1962870227,-440434472,-2062549226,2088763882,-2062598657,1055392226,-612233470,265423617,771872133,385040000,-1190497279,1709703188,-1014690046,-1176467967,-440467450,263123478,-2013153916,253158791,384507563,1711387625,1397570689,393563721,1409580161,-2096073389,1717896902,146548353,-262145,1711379433,1174371457,255677261,-2097054331,512557766,719918014,2088855041,1297044223,1714385981,1392475265,1950174529,1329365275,-2127989683,256721212,771838341,384632519,-964493311,21948675,-1929197949,-384594914,-964493071,-266433278,15198483,113651278,100734706,1049429774,196679374,-1493959680,562302727,1015041537,428085024,809271297,17990159,257571968,771820423]},{"sector":11,"length":512,"data":[384960198,16312576,255671424,1694513029,151142016,-410710017,-561297920,-1189692225,-1494024189,-966456971,17367558,-1962877975,381665267,-218102599,-1014689882,113665280,-385873662,-2124021564,1230503804,-2062598834,-964493138,639536386,-1872958700,255671468,-402612859,-1578528857,1015113216,808997449,1672463,872709249,277155634,-2123995904,572430,-2097135616,2129331910,-641773936,571670,-2079349005,2088763400,-2062614273,-970063778,18281990,-1919917845,-351066082,1511951622,-1409225965,1148534076,-524217651,-389510394,-771030887,-1053084043,-1240518030,-2147382977,1965948796,-389510385,309461121,242602507,175292731,-2147301501,25756679,-1047848725,243361381,16779408,-387252224,243361381,16779408,1713307648,1399243617,862343270,-617388352,1958742700,-1408046284,225820682,-1014278042,283885926,-336014453,1915763755,2000239644,1714433048,-144254205,195,1728738784,-1692627610,-338164890,-1957140786,-339646781,-103576816,1405311846,-1396690095,829734922,-768353485,-352317255,-1073042427,1094460532,1178339954,1093409655,183175684,292696124,225917244,-141348820,-2084371487,-342687534,1502869976,1460061019,372784836,1605366524,-2140814585,17368126,1082383,1094615854,125108247,1090963246,-1015021545,67552869,-966459383,17368326,50775653,-2144468983,18282302,-966446476,17367814,1027506222,125042967,1057408814,771751959,389955200,772240385,390137543]},{"sector":12,"length":512,"data":[-966426624,1358957830,444261,-1023395328,106432198,973522690,1694499334,146802375,-966459390,603982342,-1070373181,1201890862,-1553584617,-1557260477,-1557260469,1714296653,383860355,-398035713,-2112934518,-1050279670,1714293480,383852171,264448870,771815814,515313510,996546369,1025668035,-2112946112,-266010394,-2090441217,537432078,390177582,1057372974,75697943,1067658752,-617388521,-1223727570,186072838,1712551104,-1156915007,-1050279932,45813987,742123520,1714295154,390274697,183026022,390964014,1711317225,-4194267,-1072994561,1714295157,1057404687,-524196329,45835786,1711276032,-4194267,-1072994561,-18320780,787509803,1126074726,-389978601,1302539786,103493143,-654895297,182501734,1958742886,2451030,1728053184,712294411,179046,-890765312,787116587,1193183590,-389978601,1268985354,100871703,1077745485,773943808,390006331,-1590812301,53352269,773278470,773275555,1696022947,-1878097050,132849672,243492453,772016272,1696022945,772329635,1696022433,-402074973,784531457,-1546641781,201376641,390177070,50522305,-995924541,-895261432,1067527688,48808215,-1553612029,-1590818618,-1553620016,-2124085048,575494,48808204,147628901,-1223727570,-2119970754,1712062663,1711466433,102776323,915105326,-1050273981,57019118,772154422,246878054,149100365,1915998440,-117217759,915105326,-1050273977,57019118,772154422,246878054,98768715,1915990248]},{"sector":13,"length":512,"data":[1717945089,143658627,1727458052,1699898960,1091182219,2996326,-470417408,-1278178458,106471432,57074678,2013619906,1711276075,6553605,-2147129856,1711276048,524293,2013619712,1711276033,1516689547,113465446,106577536,1712879100,1397310904,1053044289,1713772452,125109563,243492453,117508284,-104811325,-2112940595,-1977221100,44565831,689167,243361381,2236,1707278337,-1740734106,268435464,1695773696,-1140394138,520,1694987520,150210247,1354956864,1465274707,-1609628130,1717959324,146540279,512,1085825397,-840921600,633899794,255590415,-507424395,1691979270,921145,-1590803083,-1553721515,-1064435698,319193956,1074069760,1436757504,871772951,16824831,-1146788109,12124159,-2094936750,393543675,-27292890,-611387853,1912822787,1015038730,-2081196710,-1656749244,520593679,1532583519,503759704,777082455,396181188,-1581375730,243991,262599676,1694501509,-1139900058,1048584,1600018688,1354958623,1894130864,15401195,826044900,427023,-2062601412,1717895178,146542209,131072,1381090136,253644883,1470107560,1705578270,180491915,521069198,-401137222,-75300670,1082396671,2668800,-401147462,-12779279,813961215,1727695616,1695171979,144483174,715351652,391102225,1711276216,-1206853439,-1989802704,-678755771,-402651719,-12779344,1837436927,10217472,388634253,-2097122840,1148518395,1711276216,-1928273727,772091910,389391206]},{"sector":14,"length":512,"data":[-1929377095,-401132778,-12779375,-1926925057,772091910,389350971,1714297461,389627523,772895744,389652838,-1667013019,-1553570808,451612970,1711276216,-1206853439,1713767728,4982407,-1667013019,-1553570808,786960682,-1592828160,1478469903,-1017554341,-851639624,377622305,-1193768192,567100416,426511,1082180343,12060789,-1155412674,-2084306945,91553787,-851574600,62440225,253873476,989856898,-1207733055,-1195114497,567100418,295439,57983291,-1006633032,253625936,12695712,12116110,-2116514304,-16776154,1048784511,268375895,771754629,391724675,444862463,787197952,391849610,1461634094,126428695,38258470,-970551152,865076295,-138375488,269019654,1711895552,638101665,4236134,150996726,1678734337,338927974,1958742886,-1553586683,-1592852412,-1017641185,-268369959,0,777016070,718282436,1161789734,1803882313,2139170304,255939330,-1207934587,801981184,-2062581700,280494166,774884675,718544521,-704213970,1048651306,1866661916,1475855,507412774,259026176,637537157,2113153,-2079362719,11796518,-736166098,33570090,1148175,38861697,623887,-734101202,1946223658,772322311,718544639,-1022928040,382534068,1410063,252509312,-1275064699,605474050,251870211,-117439867,-1262225213,773967152,1008165027,1007514378,1997107715,184320005,-1007156622,-2144418823,18281534,-2094133132,18279742,-2140862092,-16186562,-1161625227,-896854912]},{"sector":15,"length":512,"pattern":0,"data":[-1055931773,280233194,-1055704934,1958742784,371797737,-1014098091,-1044840653,-1948742144,866448375,1692438208,12459657,773753188,1048667137,12648514,-1989933707,1677738526,4603521,91553985,1176406372,-1070373376,-1064376180,-1962930759,180404163,-1425881213,-503134333,-425515270,1053044232,1705711458,146935425,567084032,10545347,10192143,-268388346,643022990,-534495616,830803794,-1173412352,48244006,-953282446,1536518,113716968,-268494988,-1960437525,652225310,-1042273631,-1023211808,512306760,-1557260430,1381046132,364150962,-2112941107,-58720249,293867376,-1266568704,252955925,-2147469182,-2062585604,254148657,-534436166,772829699,392693447,-953229312,-15242746,639167463,-533848437,-533880538,50782401,-1993455421,773285918,1511484067,-1022928039,1448549894,1053044305,521017220,-1189640002,-201588728,1600018854,-2062612705,-970063866,18321414,195]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1979711488,1880581652,672627223,-267154413,638828051,65300]},{"sector":10,"length":512,"data":[0,0,0,0,0,0,0,0,0,1617297408,772214524,1049954046,1958284917,321437185,-216752961,384541734,-2084978637,755023617,1958324979,345816577,-216848193,315466790,84076737,-64684029,104768511,-402474264,-1712848095,61532172,116876901,2236,91488257,-351741720,-144284399,17349638,251658240,-402652284,1441270254,8316928,-402609688,-617414137,771754425,1048819595,-2096909336,-203291965,-1929359896,-401319882,1382417316,12630630,-1192755200,1715627530,15792769,-227409920,-622306714,207808515,-402374168,786957458,108259333,1711721704,-1588542623,-524220866,123987976,1189610355,-545243897,-1017580682,104767824,-402071359,57870301,1023881448,-210309248,-1202666664,988340224,-400329977,460457856,1052118830,-2144463784,68442118,1485162286,1222639636,1518700846,-402396396,-1017641219,-180453330,-2062614250,870842569,-1031598324,224454656,12288783,-400685472,1064435894,-1896873800,868257496,-2147434506,-63962951,-2062571533,-164429670,-2135302514,-661934848,82559405,4047619,1024619248,225703936,13172353,3999604,1937969142,870244864,-1176596746,-1951596416,-339628584,1036190468,175304704,1945632829,-62619387,-421363712,801969076,-896804724,50653633,-268419647,4000114,-2130414600,-1937768254,-1043625024,-1056766743,1928331325,-134202103,-1014954893,330596352,254685133,341327542]},{"sector":11,"length":512,"data":[1476821038,-953285612,1333381,-2050543888,-134278054,-1017051361,-561056205,-67075911,-1948742739,-356405808,-2117074172,1928331514,16417052,-2129234952,1946208510,650153488,1978220416,2139170337,1971322113,-1294867943,1370112,28446834,1912606184,-394218999,41025542,-1007107079,332204212,-1064561038,1928331325,-1042314481,-1023212309,267911229,-1023409789,1750385656,1112088677,1699749965,1852797810,1126198369,1970302319,544367988,1769169218,-2144467357,18281790,7308559,116876901,2236,628424705,-852158280,1036028961,1467348480,1962998659,-2147434670,-1342168903,-1359807415,-2128198283,1967997501,-167724994,-13385586,780132793,-230541664,1361868206,1110949463,503324345,-1494016242,1968791327,-1240518934,773085246,341313152,-2050544124,-167766952,1518716718,134086420,-957866301,1749579017,-2128625664,962591550,-2141817552,794819134,1048596341,1966039031,-180453304,1098199135,1609973376,-2143652041,828372542,1048580215,1999724536,-2144701943,912259390,-953277582,-15429114,1696263111,-1140394138,16777224,772699136,345114311,-953237505,1348614,1455628256,-2144467369,18282558,8291343,-334880582,141950780,-334879558,1853161276,-388957148,-527794164,-1064435536,-1189150530,-1390018548,255069988,375687718,974120064,-498371132,-1014213907,-907542094,-389546496,1700397252,-1140394138,16777224,126160640,646587904,132849152,619463234,853576446,653079232,503385738]},{"sector":12,"length":512,"data":[-804462208,-18231063,-1948135231,-402541864,-939655028,1594358242,1397801822,512579414,-164424820,-314671058,343146774,71204965,208929033,87982181,74711305,331226765,1068896046,1552190254,25767443,158646283,771933827,-352188544,1532911591,1397801816,-1514660270,-1965519348,-964492972,-1072976638,-661973644,-1392498712,16827265,-667160718,434695031,535948032,-1017619622,45240915,-2130703384,989921515,1526036163,-1051475109,-2144466709,-30604633,43452462,1724078893,12150353,771751937,25294439,1006633005,1731089780,755073526,1946288128,-2140721653,2949537,954925568,-2114558162,11521,775189532,25294439,536870957,1731070836,755081600,-350224384,-161010146,2949505,326374400,-1173395666,2949553,124977920,243492453,-503248752,-1017551202,71204965,1265893641,87982181,1131675913,-130120859,997588744,-351865042,1962938134,-536823758,184738536,-1960545061,-1056555498,12060898,16417264,-1174178944,-924286976,1960512258,67120394,-227294661,1711275960,-1022822237,658310855,-2140864512,17368126,8553487,87982181,-2079391479,-2090532744,-16189378,7242767,-351865042,1962938134,-123640474,1042189064,149143814,158581563,-133773467,-335544568,-1042773171,280561899,-2013909504,1962093826,-2123995894,561166,771751938,755142528,-438156542,-1014900597,-339670016,79259144,1728053248,1028463753,-2013265881,-30957681,-2094555249,-337509141,658310855]},{"sector":13,"length":512,"data":[1707278340,-1878097562,65544,1710484224,151273088,679743233,1048601857,251726085,771825284,384501495,1551171647,84295329,-390004733,4241666,-524171221,-1223727606,-1155056330,-1243086840,-138152191,-148015617,1962936515,1048587786,251729645,-1962926716,-3964456,-31135741,-339617653,478766856,2572149,-2021091840,1184245663,-503054331,1026984386,12183847,104335047,-2090532863,-16189378,-1587209100,-390002440,309512,-2010195149,773252487,-350311665,67388182,862384354,-1177406474,254672902,384513699,-1976677773,857138564,148947419,-130120859,91553544,1979973251,19064854,181239,-1007195019,125042689,444206,-1962933971,149668312,1964804455,10047,-1618507626,-661940697,67093377,1123910120,-1985224122,-1188610794,-1100611581,3,1963232103,10047,478897998,2572149,1036200704,242548740,-320683125,1695080641,-351733597,1717945088,143658625,16384,-949619733,-16189434,-1947538433,-1190773218,-886374144,-164694477,-349371769,-164741515,338494087,-2140856715,17368126,1344527,87982181,-2079391479,-2144468982,18279742,1606927,42464814,175444013,104734265,117376117,-2010249666,1177420700,-1950883261,512241374,-2084360702,17184830,258360180,658323127,104730251,-1056718461,-1070398743,770235187,-205261056,-1961003521,149668312,1964804455,10047,-1618507626,-661940697,67093377,1190959592,-503054331,1026984403,1364247335]},{"sector":14,"length":512,"data":[-1949042862,869829587,149668288,771753145,755140362,43458606,-203275475,-477898613,1482250999,1381060803,79286835,-388287744,-754188340,-503054331,1524272116,1405311065,-634660725,772336577,755142528,-473873663,1926773512,516119535,-617359218,-1437253759,862336629,-919378186,1711435658,191291857,1711699401,33554617,-779393536,1725432492,184120649,1712420315,-1945834815,2143454168,58778243,149682626,-1946124102,-121502760,102679327,532676712,1760965478,856154112,-1043690497,1727202017,1713927591,-561056205,4341377,460709888,-507393397,1074674436,1745909248,-2095120384,134801934,150083209,-117314568,1371741959,872061982,98078418,-611581824,772336577,755154816,-1958316800,-1962892770,-2130665458,251855865,1090519429,-2024680969,-956260338,-16735738,-50529025,-1609660420,-50529280,-50529028,-50529028,-1575056900,-650421504,-1031730315,-2143485824,-1901431057,198741208,84374994,-123928448,-107150613,-926721761,503316488,1466324582,-930327706,-1922639730,1716445238,1718075443,-50838135,-1989777491,1034812485,-2062614527,862322922,206595776,-1763247608,15401195,16824934,-336855040,-1979651328,-331192608,1718083718,-126502385,-1956223232,1449589837,1946565479,258369319,1728732855,209096038,1726206310,-387779837,11558502,1727764198,1715496536,1913190531,9824684,-1173395865,1711339629,1716610640,-964467114,79652354,1711276032,66234,-617388544,-54512794]},{"sector":15,"length":512,"data":[-930388307,-536155770,585893748,180933317,1715627736,-52071089,-1379912858,1943550822,-472816062,-1223727513,862330372,852265673,803432420,1724943206,1248252163,16417126,1912602625,-4561402,1711276032,326291499,-1956232602,1049454282,-2140721918,1711343372,1727521344,1717134942,-11933352,-339725466,28861958,1711276032,1717528155,-1010229410,1716938270,-1940691369,-1311207736,12079361,1494601176,12157455,251839222,-1979660668,-164403474,-1093140040,365772438,11502095,575075943,-1501294846,1190553344,-2062598110,1718026397,1718843021,163145297,1728053248,38177638,-55962,1718026495,90093327,148947302,182698342,1725432678,-389978549,-339646964,4023820,1929379841,-75405758,160,1030109554,160,-1201273229,160,-294554,1979711488,-4495866,1711276032,393402411,1365656422,37653862,-880056787,118259815,-499096063,1733912311,1954547446,-964467176,1967744519,-346462590,1019513358,1007580291,-351308672,-27695589,1015877581,-373162241,-1201209565,1,1600543590,-1021354394,-339725466,1426464499,-1960776573,20834540,16941583,-1165990098,11522,-1484517631,-2140721664,2949818,-2062614528,1617297640,-1898476292,-930912569,571903,1727266187,-1899000661,-2093052473,-490641874,869961224,67156470,-2086312205,-276626706,12188932,-768383484,-29062298,-1014938,1483100262,-524196179,1713810704,-2062613189,258343106,258398390,1711300275]}]],[[{"sector":1,"length":512,"data":[1711329923,1725740559,6206223,13796198,281592166,-659157146,1588793190,-763140608,-1240504832,-1290836260,-2090467234,-1050279726,-276623160,-55975420,351961958,1634097266,-2123997082,57594,1714975232,15727233,796327936,-946942068,780353165,-423497077,870223368,67156470,-1918540045,1731101502,-1055886707,-561116954,12187187,1727265796,1714779303,-2140721567,2949770,-998047488,133979424,-762985697,1634082420,-2123997082,60922,1712419328,15727233,142016512,-301533650,-881524435,1731092838,755147392,-335675392,240525001,1513524511,-1072976620,-389999244,2009217800,-389960437,1925331720,82573804,-119084115,113450846,1364612894,-1858157522,-1105261033,146347925,-1493959680,526343769,-2144419065,1544254,2720783,-1202565114,-1064374272,-96567258,376776703,-327122758,242484392,2080818990,786432023,394135239,1482354687,-2144419065,1544254,3834895,-130120859,846528264,-130121371,2094268424,-123640535,309512,-1645683917,31687674,329589,-336469500,113730833,-63240,243361381,16779408,12779520,0,1465013072,-268388346,-1004093298,-1930624962,-268419648,13534479,1144881446,-981135547,2105615872,256658434,637582213,1476689281,-1316679870,2105615872,256854278,637577093,1393065344,10388751,638371715,-947714677,2112770,3703823,251658301,1023444100,-2062548993,-1004142586,-538246531,-2096788698,816318151,-661924492,-787422333]},{"sector":2,"length":512,"pattern":0,"data":[-773074453,-1459944469,-1950059488,46629637,-1142163453,-2096788698,136643271,109317888,1036264960,646975211,637683083,212942219,-1064378157,809404718,109850189,12078386,520039936,-75412176,460517632,776667315,1480504847,109063700,772019288,341345735,-1993412608,-132883811,133759467,1482381919,195,0,0,0,1380273473,1312899913,1195724064,1163023425,542327886,809717321,925904695,808532271,892481332,808532271,892350261,808532271,825241398,3291439,1381061456,102651734,12066574,-54489360,817823539,629810766,258079872,-2147480958,-2029028612,-461373437,-8304673,-2096168704,984350769,-2116323872,256788478,-352320893,-1092930604,-217887161,251673728,-1090513788,146407413,262599424,-2097150588,-471136061,-117314568,1583292167,1482381658,195,0,0,65555,59391,0,65536,-503381298,18743296,0,16,0,0,46924490,47186638,47448786,47710934,47973082,-269155618,109117440,17956864,146800653,2248,147849216,2264,281018368,0,282066944,61429,92340224,786956,79955136,80479432,0,0,81003728,81528024,54554642,7,1048576,0,2248,0,2264,0,80479432,0,81528024,118255634,1136,2097152]},{"sector":3,"length":512,"data":[47055566,47055566,47055566,47055566,0,46924488,0,47973080,80479436,80479436,80479436,80479436,35446784,0,524288,79955136,80479432,81003728,81528024,57344,18743296,1048576,46269120,46531268,46793416,47055564,47317712,47579860,47842008,48104156,61311,0,65536,-276888890,0,0,30015489,17756143,0,524288,147849216,148375752,47579136,48104142,82899023,0,786432,48104156,47842008,47579860,47317712,47055820,46793416,82894926,0,786432,47973086,47710938,47448790,47186642,46924494,46662346,82894926,0,786432,47973086,47710938,47448790,47186642,46924494,46662346,51929154,0,262144,113772224,114820816,26495,18808832,1048576,46269120,46531268,46793416,47055564,47317712,47579860,47842008,48104156,57345,18743296,1048576,46269120,46531268,46793416,47055564,47317712,47579860,47842008,48104156,18800641,1548,3735552,46269120,46531268,46793416,47055564,47317712,47579860,47842008,48104156,1216,1220,1224,1228,1232,1236,1240,1244,2240,0,2248,0,2256,0,2264,0,4288,0,0]},{"sector":4,"length":512,"data":[0,-269479728,983040,67305985,46137401,46400194,46662342,46924490,47186638,47448786,47710934,47973082,79692510,79953920,80216064,80478208,80740352,81002496,81264640,81526784,146800640,0,147324928,0,147849216,0,148373504,0,281018368,0,0,0,282066944,0,0,0,0,0,0,1048832,268435456,1073741824,1462697984,1462720303,1463899987,1463899969,1415993204,1716545054,249870095,1074692895,1239941458,-2096401662,-28164058,-402576664,-1587150396,1214665290,520406147,1724079206,1716676177,509044310,521032550,1912929155,-617388541,-71889050,283885926,41278219,862376951,1074198482,1962934610,-1223727564,1717306422,101627663,1717035868,1585801043,1729262596,1518146815,1929379922,-751081907,-1956248717,1734043347,1991708518,-337845758,-1223727567,1717305910,101627663,1713627996,1585801043,1729262596,1652364543,1929379922,-751081959,-1956248717,1734043347,917966694,-1956192798,-111450430,-1956243477,-1956223032,1911030854,1074137350,-1047828910,147096422,1600528376,1516658278,516118886,116858638,152128,803734900,1713171202,1962932355,1074198294,1946159186,36431875,1379927799,57933828,-402499608,-1021377082,1449546086,212187166,862378126,-1223727424,1717305910,101627663,1728897884,138806118,-1223727513,536142390,1499881062]},{"sector":5,"length":512,"data":[1716545219,105997907,365791412,477413387,117440616,150250278,47974,258342928,-1050228553,-1201272095,8,1717134855,-1017616805,1399214182,1465274726,-1069628410,1036265051,1228796,-1185170754,-1494024187,499073141,1539292672,1714910630,268435643,258352640,3016374,283165030,2924838,-1950143642,-1956904394,-480508402,1547265567,1712944396,1712079873,1913144361,-402426097,1594295882,1717134942,-1017616805,1348924651,1365660518,-1006217386,-1101282242,146365384,-1493959680,-524593547,-1960406785,-1081924065,1962868736,258352711,298935,992362211,1996489359,-507419081,-2020923900,723910662,637535367,165635,4006514,639465440,165675,-659091610,12812646,1711279872,1711596481,1208,95217664,1717460743,1717266009,1617347416,251704552,-1207916670,801981200,1380064905,1380189836,520028340,1185108546,1209960786,-16206766,1716666910,-473385201,-1962298275,1109327825,1958742866,-1962101640,1109327858,1958742866,1724287852,1712382145,1711458435,1712382657,-7295,191234048,-75405606,16777216,-2090466190,-1050275640,57019105,507209433,91640394,1243515238,-651467182,-2096816664,38944782,258381803,1543648951,246878054,367221766,-1956180556,520029782,-1072999870,1718029172,-499730673,1634138347,-117322301,1354981734,-851246920,1484799023,165135,-1007041544,-490650,-1964505740,-402396416,1724055878,1716741712,106391122,1544077158,-1167720448]},{"sector":6,"length":512,"data":[8,1711489512,60289,-1050279920,12061419,650153472,150216329,1717528071,1717266010,1348911960,1382437734,-1083832745,23560,309862,199753728,-343841277,15728640,82559334,1539718795,-524302450,-1960406785,-1658116547,283639814,-1660869115,19267588,-402651491,1594295566,1533434470,1724078182,106194528,-1912602440,-846678848,-190634475,258344712,862381239,46098130,1728053340,1337397094,264833796,1728087428,934743910,1446733415,1728738564,917966694,1894511330,-1956223088,-1947728810,1837240066,1716545024,1717003859,6031551,41478144,947019622,472606311,1711699492,862372611,57042907,90579996,1023,-67099290,-1050214401,-661976344,-1050258842,263459050,1380065023,-1072997786,317399156,-1050258842,179572970,1380065023,-1072997786,-2090464140,-2014639932,1717331704,-2090417311,1727596740,-1017026980,1365660240,258365030,1543648951,246878054,300112902,-1956181324,520029782,1718047298,-499730673,-1223727377,1717307446,202290959,-1273896100,1451976458,1109327622,258369362,-270387529,1499881062,1724078170,1718038098,1321014411,-402653102,1516634199,777152195,344680039,5394109,9693184,1724078694,4023890,2113929472,12215819,-402652672,166395951,47718,-1125646335,-1017485824,1030115942,65536,-1167717506,131072,-352297752,12215817,-402652928,1516634367,-1956223037,1718029406,1711824387,728161015,1712355032,1718082083,1913413179]},{"sector":7,"length":512,"data":[-621320698,1730931704,207522662,593906534,-621320486,1742340966,207498086,1580951143,1711699464,-335946957,-604543479,1577281127,1724119304,1718082295,1712086667,-635214261,1725626214,1718082051,1728863787,140393318,862324338,619444699,1742468966,140378982,1943550822,351009027,1742403430,207522662,593906534,-621320486,-119930010,1716610755,-1956223150,1718029406,1711824387,1231473547,1725626214,728156707,-650418472,1718029938,1930190395,-1956223178,753600606,1451976295,57042700,728107094,-645175599,1742220134,207502182,-1956244109,728131545,996543582,-352160813,-628398589,-134091783,1499880038,1716610755,-1956223150,-1956246434,1716152011,-144258557,-903649582,1725008742,996594475,1729000144,139869030,1718040694,-351773045,996566830,125175894,1586194023,1713433352,1718081931,1712082475,1718082039,1711820291,242468923,1725533030,58186299,-103117978,1727529451,-1017551270,1466323302,1723872102,1718082355,72333071,1718040803,1732228879,72825702,-220068748,1718036715,-351510645,258369292,1718042551,1963218747,-1956223220,1718028359,-502511869,-1020565784,1717528312,1727644505,-1017551265,1365659750,1466324582,1543683942,1718026240,72333071,1718032355,1731704591,112660326,1962359654,18671671,-487552154,146761454,1728053340,1337397094,1729618692,934743910,-1223727513,-147102202,-1125641612,-259299840,1727590114,1717462623,-1017616807,1717528313,1717134942,1348911960]},{"sector":8,"length":512,"data":[1365660518,1466324582,1728112872,207522150,1317627495,-1989777656,-1083833274,23560,1711345896,6030011,258369280,-486257737,258369382,1718033335,1728856971,138609510,1177249383,-503023860,1733094376,138816358,1131551604,-1956228250,-1956223032,1718027331,1728863883,140378982,1711295976,-1956223141,1718029382,1997292331,1713140237,1541987975,-208968192,1718027755,-133676151,1583767398,1533434214,-104638362,1499881318,1483103078,1717003971,6031551,5957632,1544470374,2129133568,-1017158144,1466324582,1728066792,207522150,1317627495,-1989777656,-1083833274,23554,1711299816,-1017223585,-1083811994,23554,1711284200,6033087,4450304,1724079974,247424599,1728053340,934743910,1711277032,1348911967,-2090380442,1946158207,258369308,1718034103,38188815,1729661287,1728201609,-133935105,1483103078,1533475267,1724078182,1716741712,1718083467,1728857739,464981862,1960786790,963012359,-277476285,-1223727513,-1989737917,1183409950,814311170,41126247,71827303,1483103078,113716931,-16884784,-1023406872,-804862162,-386073509,1724055553,1364682326,1712104894,-6527,-1050279936,-2124020506,6017222,12543488,-1182744576,115867650,1600542976,1724079718,-1207558560,-661779291,-1956200306,2287814,-389575834,-784269275,-768176663,-125324197,365799439,91400463,1634082567,1713309635,1348911969,1096531,1711795088,414929744,-2021027840,-1050256428,-2021125912,-1484235818]},{"sector":9,"length":512,"data":[-1886823463,1717263314,1146536792,676025161,100,-268369944,1329804080,1363234893,0,0,0,0,65536,-234881024,65536,-234881024,0,0,0,0,1543634944,23554,1544051720,1544814592,32799556,1544444964,0,0,0,1544838196,0,0,0,1545886788,0,0,0,1546935380,0,0,0,1547983972,0,0,0,1549032564,0,0,0,1550081156,0,0,0,1551129748,0,0,0,1552178340,0,0,0,1553226932,0,0,0,1554275524,0,0,0,1555324116,0,0,0,1556372708,0,0,0,1557421300,0,0,0,1558469892,0,0,0,1559518484,0,0,0,1560567076,0,0,0,1561615668,0,0,0,1562664260,0,0,0,1563712852,0,0,0,1564761444,0,0,0,1565810036,0,0,0,1566858628,0,0,0,1567907220,0,0,0,1568955812,0,0,0,1570004404,0,0]},{"sector":10,"length":512,"data":[0,1571052996,0,0,0,1572101588,0,0,0,1573150180,0,0,0,1574198772,0,0,0,1575247364,0,0,0,1576295956,0,0,0,1577344548,0,0,0,1578393140,0,0,0,1579441732,0,0,0,1580490324,0,0,0,1581538916,0,0,0,1582587508,0,0,0,1583636100,0,0,0,1584684692,0,0,0,1585733284,0,0,0,1586781876,0,0,0,1587830468,0,0,0,1588879060,0,0,0,1589927652,0,0,0,1590976244,0,0,0,1592024836,0,0,0,1593073428,0,0,0,1594122020,0,0,0,1595170612,0,0,0,1596219204,0,0,0,1597267796,0,0,0,1598316388,0,0,0,1599364980,0,0,0,1600413572,0,0,0,1601462164,0,0,0,1602510756,0,0,0,1603559348,0,0]},{"sector":11,"length":512,"data":[0,1604607940,0,0,0,1605656532,0,0,0,1606705124,0,0,0,1607753716,0,0,0,1608802308,0,0,0,1609850900,0,0,0,1610899492,0,0,0,1611948084,0,0,0,1612996676,0,0,0,1614045268,0,0,0,1615093860,0,0,0,1616142452,0,0,0,1617191044,0,0,0,1618239636,0,0,0,1619288228,0,0,0,1620336820,0,0,0,1621385412,0,0,0,1622434004,0,0,0,1623482596,0,0,0,1624531188,0,0,0,1625579780,0,0,0,1626628372,0,0,0,1627676964,0,0,0,1628725556,0,0,0,1629774148,0,0,0,1630822740,0,0,0,1631871332,0,0,0,1632919924,0,0,0,1633968516,0,0,0,1635017108,0,0,0,1636065700,0,0,0,1637114292,0,0]},{"sector":12,"length":512,"data":[0,1638162884,0,0,0,1639211476,0,0,0,1640260068,0,0,0,1641308660,0,0,0,1642357252,0,0,0,1643405844,0,0,0,1644454436,0,0,0,1645503028,0,0,0,1646551620,0,0,0,1647600212,0,0,0,1648648804,0,0,0,1649697396,0,0,0,1650745988,0,0,0,1651794580,0,0,0,1652843172,0,0,0,1653891764,0,0,0,1654940356,0,0,0,1655988948,0,0,0,1657037540,0,0,0,1658086132,0,0,0,1659134724,0,0,0,1660183316,0,0,0,1661231908,0,0,0,1662280500,0,0,0,1663329092,0,0,0,1664377684,0,0,0,1665426276,0,0,0,1666474868,0,0,0,1667523460,0,0,0,1668572052,0,0,0,1669620644,0,0,0,1670669236,0,0]},{"sector":13,"length":512,"data":[0,1671717828,0,0,0,1672766420,0,0,0,1673815012,0,0,0,1674863604,0,0,0,1675912196,0,0,0,1676960788,0,0,0,1678009380,0,0,0,1679057972,0,0,0,1680106564,0,0,0,1681155156,0,0,0,1682203748,0,0,0,1683252340,0,0,0,1684300932,0,0,0,1685349524,0,0,0,1686398116,0,0,0,1687446708,0,0,0,1688495300,0,0,0,1689543892,0,0,0,1690592484,0,0,0,1691641076,0,0,0,1692689668,0,0,0,1693738260,0,0,0,1694786852,0,0,0,1695835444,0,0,0,1696884036,0,0,0,1697932628,0,0,0,1698981220,0,0,0,1700029812,0,0,0,1701078404,0,0,0,1702126996,0,0,0,1703175588,0,0,0,1704224180,0,0]},{"sector":14,"length":512,"data":[0,1705272772,0,0,0,1706321364,0,0,0,1707369956,0,0,0,1708418548,0,0,0,1709467140,0,0,0,1710515732,0,0,0,1711564324,0,0,0,1712612916,0,0,0,1713661508,0,0,0,1714710100,0,0,0,1715758692,0,0,0,1716807284,0,0,0,1717855876,0,0,0,1718904468,0,0,0,1719953060,0,0,0,1721001652,0,0,0,1722050244,0,0,0,1723098836,0,0,0,1724147428,0,0,0,1725196020,0,0,0,1726244612,0,0,0,1727293204,0,0,0,1728341796,0,0,0,1729390388,0,0,0,1730438980,0,0,0,1731487572,0,0,0,1732536164,0,0,0,1733584756,0,0,0,1734633348,0,0,0,1735681940,0,0,0,1736730532,0,0,0,1737779124,0,0]},{"sector":15,"length":512,"data":[0,1738827716,0,0,0,1739876308,0,0,0,1740924900,0,0,0,1741973492,0,0,0,1743022084,0,0,0,1744070676,0,0,0,1745119268,0,0,0,1746167860,0,0,0,1747216452,0,0,0,1748265044,0,0,0,1749313636,0,0,0,1750362228,0,0,0,1751410820,0,0,0,1752459412,0,0,0,1753508004,0,0,0,1754556596,0,0,0,1755605188,0,0,0,1756653780,0,0,0,1757702372,0,0,0,1758750964,0,0,0,1759799556,0,0,0,1760848148,0,0,0,1761896740,0,0,0,1762945332,0,0,0,1763993924,0,0,0,1765042516,0,0,0,1766091108,0,0,0,1767139700,0,0,0,1768188292,0,0,0,1769236884,0,0,0,1770285476,0,0,0,1771334068,0,0]}],[{"sector":1,"length":512,"data":[0,1772382660,0,0,0,1773431252,0,0,0,1774479844,0,0,0,1775528436,0,0,0,1776577028,0,0,0,1777625620,0,0,0,1778674212,0,0,0,1779722804,0,0,0,1780771396,0,0,0,1781819988,0,0,0,1782868580,0,0,0,1783917172,0,0,0,1784965764,0,0,0,1786014356,0,0,0,1787062948,0,0,0,1788111540,0,0,0,1789160132,0,0,0,1790208724,0,0,0,1791257316,0,0,0,1792305908,0,0,0,1793354500,0,0,0,1794403092,0,0,0,1795451684,0,0,0,1796500276,0,0,0,1797548868,0,0,0,1798597460,0,0,0,1799646052,0,0,0,1800694644,0,0,0,1801743236,0,0,0,1802791828,0,0,0,1803840420,0,0,0,1804889012,0,0]},{"sector":2,"length":512,"data":[0,1805937604,0,0,0,1806986196,0,0,0,1808034788,0,0,0,1809083380,0,0,0,1810131972,0,0,0,1811180564,0,0,0,1812229156,0,0,0,1813277748,0,0,0,1814326340,0,0,0,1815374932,0,0,0,1816423524,0,0,0,1817472116,0,0,0,1818520708,0,0,0,1819569300,0,0,0,1820617892,0,0,0,1821666484,0,0,0,1822715076,0,0,0,1823763668,0,0,0,1824812260,0,0,0,1825860852,0,0,0,1826909444,0,0,0,1827958036,0,0,0,1829006628,0,0,0,1830055220,0,0,0,1831103812,0,0,0,1832152404,0,0,0,1833200996,0,0,0,1834249588,0,0,0,1835298180,0,0,0,1836346772,0,0,0,1837395364,0,0,0,1838443956,0,0]},{"sector":3,"length":512,"data":[0,1839492548,0,0,0,1840541140,0,0,0,1841589732,0,0,0,1842638324,0,0,0,1843686916,0,0,0,1844735508,0,0,0,1845784100,0,0,0,1846832692,0,0,0,1847881284,0,0,0,1848929876,0,0,0,1849978468,0,0,0,1851027060,0,0,0,1852075652,0,0,0,1853124244,0,0,0,1854172836,0,0,0,1855221428,0,0,0,1856270020,0,0,0,1857318612,0,0,0,1858367204,0,0,0,1859415796,0,0,0,1860464388,0,0,0,1861512980,0,0,0,1862561572,0,0,0,1863610164,0,0,0,1864658756,0,0,0,1865707348,0,0,0,1866755940,0,0,0,1867804532,0,0,0,1868853124,0,0,0,1869901716,0,0,0,1870950308,0,0,0,1871998900,0,0]},{"sector":4,"length":512,"data":[0,1873047492,0,0,0,1874096084,0,0,0,1875144676,0,0,0,1876193268,0,0,0,1877241860,0,0,0,1878290452,0,0,0,1879339044,0,0,0,1880387636,0,0,0,1881436228,0,0,0,1882484820,0,0,0,1883533412,0,0,0,1884582004,0,0,0,1885630596,0,0,0,1886679188,0,0,0,1887727780,0,0,0,1888776372,0,0,0,1889824964,0,0,0,1890873556,0,0,0,1891922148,0,0,0,1892970740,0,0,0,1894019332,0,0,0,1895067924,0,0,0,1896116516,0,0,0,1897165108,0,0,0,1898213700,0,0,0,1899262292,0,0,0,1900310884,0,0,0,1901359476,0,0,0,1902408068,0,0,0,1903456660,0,0,0,1904505252,0,0,0,1905553844,0,0]},{"sector":5,"length":512,"data":[0,1906602436,0,0,0,1907651028,0,0,0,1908699620,0,0,0,1909748212,0,0,0,1910796804,0,0,0,1911845396,0,0,0,1912893988,0,0,0,1913942580,0,0,0,1914991172,0,0,0,1916039764,0,0,0,1917088356,0,0,0,1918136948,0,0,0,1919185540,0,0,0,1920234132,0,0,0,1921282724,0,0,0,1922331316,0,0,0,1923379908,0,0,0,1924428500,0,0,0,1925477092,0,0,0,1926525684,0,0,0,1927574276,0,0,0,1928622868,0,0,0,1929671460,0,0,0,1930720052,0,0,0,1931768644,0,0,0,1932817236,0,0,0,1933865828,0,0,0,1934914420,0,0,0,1935963012,0,0,0,1937011604,0,0,0,1938060196,0,0,0,1939108788,0,0]},{"sector":6,"length":512,"data":[0,1940157380,0,0,0,1941205972,0,0,0,1942254564,0,0,0,1943303156,0,0,0,1944351748,0,0,0,1945400340,0,0,0,1946448932,0,0,0,1947497524,0,0,0,1948546116,0,0,0,1949594708,0,0,0,1950643300,0,0,0,1951691892,0,0,0,1952740484,0,0,0,1953789076,0,0,0,1954837668,0,0,0,1955886260,0,0,0,1956934852,0,0,0,1957983444,0,0,0,1959032036,0,0,0,1960080628,0,0,0,1961129220,0,0,0,1962177812,0,0,0,1963226404,0,0,0,1964274996,0,0,0,1965323588,0,0,0,1966372180,0,0,0,1967420772,0,0,0,1968469364,0,0,0,1969517956,0,0,0,1970566548,0,0,0,1971615140,0,0,0,1972663732,0,0]},{"sector":7,"length":512,"data":[0,1973712324,0,0,0,1974760916,0,0,0,1975809508,0,0,0,1976858100,0,0,0,1977906692,0,0,0,1978955284,0,0,0,1980003876,0,0,0,1981052468,0,0,0,1982101060,0,0,0,1983149652,0,0,0,1984198244,0,0,0,1985246836,0,0,0,1986295428,0,0,0,1987344020,0,0,0,1988392612,0,0,0,1989441204,0,0,0,1990489796,0,0,0,1991538388,0,0,0,1992586980,0,0,0,1993635572,0,0,0,1994684164,0,0,0,1995732756,0,0,0,1996781348,0,0,0,1997829940,0,0,0,1998878532,0,0,0,1999927124,0,0,0,2000975716,0,0,0,2002024308,0,0,0,2003072900,0,0,0,2004121492,0,0,0,2005170084,0,0,0,2006218676,0,0]},{"sector":8,"length":512,"data":[0,2007267268,0,0,0,2008315860,0,0,0,2009364452,0,0,0,2010413044,0,0,0,2011461636,0,0,0,2012510228,0,0,0,2013558820,0,0,0,2014607412,0,0,0,2015656004,0,0,0,2016704596,0,0,0,2017753188,0,0,0,2018801780,0,0,0,2019850372,0,0,0,2020898964,0,0,0,2021947556,0,0,0,2022996148,0,0,0,2024044740,0,0,0,2025093332,0,0,0,2026141924,0,0,0,2027190516,0,0,0,2028239108,0,0,0,2029287700,0,0,0,2030336292,0,0,0,2031384884,0,0,0,2032433476,0,0,0,2033482068,0,0,0,2034530660,0,0,0,2035579252,0,0,0,2036627844,0,0,0,2037676436,0,0,0,2038725028,0,0,0,2039773620,0,0]},{"sector":9,"length":512,"pattern":-1,"data":[0,2040822212,0,0,0,2041870804,0,0,0,2042919396,0,0,0,2043967988,0,0,0,2045016580,0,0,0,2046065172,0,0,0,2047113764,0,0,0,2048162356,0,0,0,2049210948,0,0,0,2050259540,0,0,0,2051308132,0,0,0,2052356724,0,0,0,2053405316,0,0,0,2054453908,0,0,0,2055502500,0,0,0,2056551092,0,0,0,2057599684,0,0,0,2058648276,0,0,0,2059696868,0,0,0,2060745460,0,0,0,2061794052,0,0,0,2062842644,0,0,0,2063891236,0,0,0,2064939828,0,0,0,2065988420,0,0,0,2067029006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},{"sector":10,"length":512,"pattern":-1,"data":[]},{"sector":11,"length":512,"data":[-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1399214182,1449546342,1677768806,-1150943232,0]},{"sector":12,"length":512,"data":[1711339706,-1173298495,-1100611512,31588,251843304,771815298,1586194023,-1989778172,-1962327010,1711684126,11704,1726215680,146002059,-167356256,-1039964445,729285990,-1150943232,0,5290598,-2090467328,-1863840570,-1249767678,1718038016,1694785163,1209960806,855173129,543799398,1731067904,73304934,-725384858,1694498822,1344178534,3193353,283296102,-402642758,-1201274223,4224,47974,-1167720448,88,214336358,251805416,771777410,1586194023,-1989778172,1711885342,524472,12281344,1711276032,4282,-964467200,34990092,1731083378,73304934,512321125,-1201272488,376,47974,-1167720448,8,214336358,771878632,1586194023,-1989778172,1695110174,151273088,-402426879,1583743687,1533434470,1724078182,1711677024,8086718,-964467200,1718038028,1879590599,771751979,1183016551,1731069960,75402086,1726974822,2846910,-33331712,147293030,1711277254,-1380401101,-524196349,-268212732,106436234,1725641574,2846905,1718038016,-1600322421,1728053371,71403878,571750,786956288,-117217574,-889306266,1891555701,17090091,103063910,71600486,-1911773768,-544512320,1727867750,681590409,-1585196865,378209854,-1037367748,-100204699,96937480,-953807872,581,104349315,1695314945,151273088,637826049,-2097003127,862323911,-18240,104468107,1727265865,-74750293,-1930022042,-423532858,-964598268,33744,309350]},{"sector":13,"length":512,"data":[243990528,-503970246,-1561802613,-133994791,1725926246,-1989739221,-1087855554,862356432,974031808,48349446,1722509043,862387083,1724288246,1711597249,-2083469695,-1201274880,8,104468107,-930356746,1725522152,-1956186109,-47487265,-1472296602,-2083471576,-18330,244056063,-507443654,-1419316478,1727761254,-963840461,82231654,-792297114,1711276163,4280,974031616,-1948125690,-652482360,1727529830,8086718,375040,1711343848,-502479229,547448567,-1553570554,297273492,-1093104125,12058632,-1077899776,-1520039764,-1608080026,-1574565709,280889521,146063104,-1519999642,146513958,146383398,1634082567,1716545219,1717266003,-805836717,-2124012686,285212923,787378688,1183409767,1718038024,-402366839,1731067925,-133789338,1483103078,-2090441277,67670030,1727130617,106391121,-1912401473,-1223727417,-930388230,-2124002970,16777209,638416384,1712294247,638642625,105842791,258369318,1711556534,638640321,38243175,1602840358,-876517886,-2006505968,1730544735,1711767432,-2096051519,762577146,-88666266,-425626,1979711743,-1989728755,-373201393,140977680,1730545231,637820808,125798503,281788774,1602840358,-893295102,1600522000,1724078438,1716938321,1718038103,772296331,2123064935,1718038020,-353880437,1711764183,1717462623,1600570201,1499881062,-919383613,1725051750,103036555,106434186,268482662,-1150943232,1,1926165736,-74750435,-1989777618,2074121532]},{"sector":14,"length":512,"pattern":0,"data":[1113980928,268482897,1507304680,-723385230,1717945177,143658627,-185861884]},{"sector":15,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]},{"sector":10,"length":512,"pattern":0,"data":[]},{"sector":11,"length":512,"pattern":0,"data":[]},{"sector":12,"length":512,"pattern":0,"data":[]},{"sector":13,"length":512,"pattern":0,"data":[]},{"sector":14,"length":512,"pattern":0,"data":[]},{"sector":15,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"data":[0,0,0,0,0,0,0,0,1721499648,-118949280,116320265,-402627352,1083834695,-402234064,1139279543,258368777,149161655,114860902,115082951,537854040,-14326056,1711276047,102761995,116433766,-1912401480,645932736,1727856685,1107736335,1958742790,182501658,47974,1726480384,512321196,124978728,243492453,1711540368,-1195139743,-1064434927,-402452040,2025391869,-1148013567,-320339960,53065734,-1190728472,-1833695232,-402648901,1706559195,115075078,-1275068231,4766618,-1207514392,-890763675,47366,-121924940,112846848,-402412104,12125881,-1148013568,-1461190576,34191366,-1190745880,-1833693184,-402630469,-1313339753,110618624,-1275002695,18922386,-1207531800,-2031616000,47366,-1195664716,108390400,-402653000,12125813,-1148013568,1692926144,12695558,-1190763288,-1699479552,-402577221,-1044904365,106162176,-1275068231,19970962,-1207549208,1122501549,47366,-927231308,103933952,-1062153677,-1275068231,17873810,637936360,-2147006522,509634243,61716486,-1514612594,1707118092,151273088,-2095942400,17184830,1050741620,1007037190,-794614266,-1406080861,183026022,1048798758,1962874593,-1956239859,1712775454,-2045787349,1030096093,32768,992872311,1981235462,258352647,390137527,637724865,-1546648061,84076737,-390004481,-1043821816,-390001952,105030410,740199270,-1014929914,4194303,384549222]},{"sector":2,"length":512,"data":[50723723,-1950153984,-524196144,29058572,-402653184,-2112902447,-1989802879,1711677470,64385,-2112946159,1399258973,-1912401480,18398912,344532554,39618854,283885926,73173030,88393254,1153836690,-2010742778,1533413244,243814,-1056768000,1712120001,-1989748733,-1106893794,-678756112,1015621199,39618854,283885926,73173030,88393254,1153836690,-2010742778,-1514666116,-1077899764,-1587117104,1728906788,-53835008,90614630,4096,862385890,212188918,82231654,-792297114,1711276163,102776459,-401604423,-2112900371,-792788011,-1223727485,1711684614,1712120001,1701300355,151273088,-1417408767,943620865,7602438,-804353242,264833955,637609860,771899008,92540672,778069505,246812518,-1050268158,1731071208,771916088,91488256,-404097822,-397384192,-2123989267,4194499,-1014929920,65536,1722459624,1483129659,11895311,216056166,1727040358,4194488,45835776,-402653184,-2112902759,1731068059,-1927509658,41934,-1989777618,-1546482404,1731067904,-1927509658,41942,-1989777618,-1545958116,1731067904,-1929084570,41938,4096,-2123995346,-1546220284,536870912,1731067904,-1929084570,41946,12288,-1956227226,12150523,-402653120,1600565757,1724091238,218951361,-1419378073,1727921957,1048581,1722508800,1048581,1722508800,1048581,1722508800,281510753,1073743206,256442368,-335607675,-966316499,3015297,1717895168,143658625,131072]},{"sector":3,"length":512,"data":[-990486170,218330416,-1419378176,1727921957,1048581,-2062595840,862387929,67156416,-804377818,-492083549,-164403460,1712104894,1711597249,-2083469695,-1956249600,1711677502,805357441,12124160,-1318852592,38502927,-1091161242,-1050276699,-2124020506,9687238,1049323008,-2124020192,3145927,1108249344,417548550,12150353,1711276048,268486529,719847424,310513585,-387819262,6797414,-1956249600,-1190779874,-792787968,1048601987,251726084,-2097119100,17184830,7832591,917966694,-1050278340,-830272282,-969185689,6522127,-801731802,267783075,721442948,1716545230,1048585809,1946168834,258354738,771886774,216580454,-2127010002,11778,-186514316,1731074539,-1929082010,41934,1711302413,-389978453,1717134860,1712319320,-1956223143,-1050270716,1483082984,90614630,4096,1722447182,201353021,-400657152,426967413,90623531,131072,90614630,4096,1727362382,33554477,1732077056,251662336,637582723,771899008,-1283191040,778069504,246812518,-1050268158,1731071208,771916088,91488256,-1779829534,-397384192,-2123989879,1048771,1048601856,1946224900,-1014929913,65536,1722300904,1483129659,-1050256014,-1956246304,12084976,1711276048,443,-1490032640,-1956231822,6753731,-1050257818,-164754194,271385220,326458982,-1091161242,-1050276699,-2124020506,9687238,621013760,1466367997,1727761254,1048761,-1346639872,-1419354266,-947691162,778562308]},{"sector":4,"length":512,"data":[42059367,46,243361381,2192,1634074626,15718,611450896,15718,1081278481,11622,1717895184,144180739,90614630,1048576,103507557,652937368,-1956227482,-289315088,-2064241140,1948265730,33557777,-66650267,631989768,1583807999,1583744235,90614630,4096,1283788617,-164403458,1712104894,1711597249,-2083469695,-1956249600,-1014929669,4096,-401604423,124956445,-24834230,1695017981,-1878097050,520553480,1707303270,149554935,1081344008,-1609609114,-1912553032,243492320,856688874,1725468352,1694515361,145269606,799237732,1725991956,-1206853439,-1553591241,-1380450240,1708690947,150091403,252243649,-111647071,-161145149,17367046,-1070391692,-1609574258,-1912553032,-524196128,339523600,1141278566,-1553570816,-1592847309,1348911903,-2144447642,18280766,-488094347,-1014929798,32768,12812646,1694499072,151273088,1711764481,50049,-1947729919,-1019517274,-1201266062,65536,113510,-1964507136,1695642277,-1742829210,113665288,1711343878,-1017616805,243361381,2192,-336003070,238,-119308205,638552358,637687689,637814664,1527080840,-404207165,-1966915073,82493652,81969554,-326479421,-1073422143,-805108499,1361290,-1672428711,-1655652301,11098268,-1206880896,-1655672832,11098268,-1660652432,-1660752904,1355503865,12256851,-104624400,-381779674,1967338495,-2144929737,1191175230,-2144981388,1392501822,-2144983436,1157620798]},{"sector":5,"length":512,"pattern":0,"data":[-2144985484,1124066366,-1897392524,15616,615517813,-1056928280,119866600,343296,-883401977,99154512,-1072956672,-760165544,587209960,-1340771136,2418754,208977955,1023422184,74711106,-1006633032,1405337651,3860560,1958749019,1692832517,-1017445968,703090771,-1071424768,-426572428,1526837344,911555,91537443,-466460444,-214845,-4632125,-1469782785,-1845829375,-1185823911,1692729343,-85982296,-1329374831,321550,-1023389659,15429862,1910767851,-344922429,-1979651328,-1015945532,1381061456,515444916,870003456,-389772590,-796196902,-989931005,783348706,-722933878,-1976585985,-3282717,1482381658,195,0,0,-1409525936,-1330921077,-1411151360,1605091979,-61815976,268428161,-1951677685,-1017599038,-1962570970,-1867304,-268425969,39160614,1716741827,-1050224501,-473884949,1727761154,1399243611,1725467494,-2129859647,-1056702493,-74775837,12802918,0,0,277875744,204213286,204999730,205786174,206572618,207359062,208145506,208931950,273027136,273813580,274600024,275386468,1717936143,-534857969,258368772,81925815,-1175047322,-510786775,1711294648,-1055858495,-490667037,571651,76244782,11477109,1718051840,-2131426167,1677721602,-184236441,645,-1956172146,-1357875964,1734606848,-234583706,1153853284,1183712754,109955810,1717833472,1677789347,17630918,-1012854802,12781318]},{"sector":6,"length":512,"data":[772166502,334497478,-949604862,1307142,1694498816,-267991194,4,1533413120,106129091,1048798821,1963001072,1478411279,-1956239870,1717895519,82845321,-1017420281,1688299014,1812395782,1962936326,62613039,-402653184,-1989762415,1929799710,-2090441462,67670030,1711330281,64385,-781058031,1725432678,64385,1651900672,-1223727570,1712805150,1711596481,1231472779,1724580710,16777277,1713206016,50167,192217089,12711782,1962934528,1713433355,49655,393543681,1724615526,-15487,-2124021760,-16776989,-886348033,1723935590,107486857,82362726,1426456878,1812890391,1541933062,-2147435776,116876901,67772,410255360,381279027,-1946799360,184985220,-1710918464,107294836,-270383546,116876901,2236,343146497,45734707,267793152,114459830,1697674394,-203274746,855648441,-2068443146,1956251262,1174824240,-1022888990,-1956274161,-1911897546,-164403482,1358957241,-897526133,150897536,-695532174,-1274484096,1913900296,1071742999,276089098,-1190249938,277221297,243805696,166441401,-1290836380,-1324281290,-1937225985,-956431079,84849800,784130649,-1190742513,48284081,82813768,702822,12058624,76113666,336973,1727455744,2745,1688299008,-796170746,283820390,1293716327,1316,4060151,42733313,1694478336,360810599,1711276049,1711695009,-1050226549,-1956179734,86265116,-1014824960,1039398660,-1945173760,-5242878,-2121767068]},{"sector":7,"length":512,"data":[4383,-1592807454,195,0,0,1650811940,1684301685,1835885824,3553331,0,1346371768,11600049,1346437408,12648641,1346371880,5767689,1342242816,51446545,1346437128,53019433,1346437152,53019433,1346437136,61408169,1343291392,61604780,1343291392,5243821,1342242816,4720229,1342177280,212143269,1343291392,405870641,1343291392,-1945756064,-1160212792,12104132,253873469,-1962927998,47320,1085986958,805419272,-851178312,-851528671,-1205736671,-661782528,-852137800,197168161,-2021388349,-851201024,-209306264,113737333,140052544,783945574,-1593177924,-1557264320,1117893056,-1029493240,-502886735,-1895877886,855826462,24165366,-939990144,-939524345,583,280518,-1845147706,-1895413818,477126,-1191087941,146407752,1140897792,-1071710418,212187313,-661733234,-1095643713,230273492,-661934848,60289,-930370223,-1378841683,-1071710418,-371041871,-1017045241,0,0,0,1399214182,-1197469946,-527564607,1218537061,-804952567,1677721641,217752422,1723872102,1387583627,-1064558131,81838438,1724056422,1713553539,1714016419,-527646669,81838438,218236262,-1553596416,-1592841772,1717265927,1364247384,102651734,-1956265844,-1911897546,-1949921576,1111395831,-2135294963,1017927424,360976141,252328960,1006636932,159649568,251673600,-1442839676,-970529566,1348403205,16729286,8513921,-248784393,567107764]},{"sector":8,"length":512,"data":[-1997470888,520617796,1482251871,509019843,-385971449,123731868,195,0,0,-1609628064,-164380621,246812462,-922014206,18646031,-1665790162,-620024317,-164748940,70058631,686294388,773122817,755140598,-1056148208,-745862941,16761473,1174505704,1708225865,149692043,-2079335669,-745864990,56943246,1124074270,-1604000882,56885248,1124074270,54428516,661979136,192174652,-1912552728,503538915,-398262269,-494010185,41572,52332900,371811328,-10223613,-1946156274,1968848098,-17473,-850263880,-294111,8946703,-27292890,52872078,1912603422,-2144976005,1509949502,996535925,1963519006,1692634731,204427,1048601667,1952055296,19284737,-1946156258,503523011,-1052573693,1085802219,1692438016,1253001,243361381,-2147481412,-617414656,-333543579,1692634632,204291,1048601667,-1671823360,-1660935448,-477226380,-333543067,503538696,1682112515,81539,-402295808,-420806649,1627889935,1716545219,1717878835,1677721763,303974,144926308,-1553570816,1483079692,1448170435,-1173822527,-164364289,-1903391954,1959332627,46564116,-260706502,-327955909,-24391285,-352129149,-359453,-801425292,-940097162,427098114,-953230709,18058885,46629632,-1883424210,-2130283501,-352256054,113183,-1902803154,1977236243,-3505916,1304576,-415587861,-745862796,16761473,1577059560,197352281,-1910934336,113665248,1682767872,204425,50735460]},{"sector":9,"length":512,"data":[251618304,99287043,-333543067,1692634632,1734,113730637,1,51808612,506029056,-10223613,1677722382,329414,113730560,6,113731172,8,1717829632,788167,0,-966466930,1509949446,17221476,1677724160,198343,-966524928,1286,101107556,1677721600,134661990,541938432,-949591008,536873990,-1944051680,-10107936,1913317406,14411833,-402637080,-161152766,34144262,-10145164,1930092574,1661388331,-75497429,-970886000,19620614,2523237,1717959945,143658625,8192,1717897963,143658625,2048,1347618499,257381969,12696480,-1956256882,1695199774,179570318,302419044,109850131,-1993468071,639063838,-109047925,327421931,-352747520,5276943,24611622,55021094,-722739573,41910566,-2062577520,-2144993222,261096575,-1962921595,-1967115269,1537355461,132375,-1989879805,638783518,652871110,939607495,1703683603,63406851,1678150702,1049177623,183179106,243361381,134219920,-1592852480,1482251871,516097883,240340998,1744876575,637992960,179445503,-1984704349,-2118921698,1929513211,-2124012022,561166,1526726672,-1021376680,1746798772,-14745600,520794654,503821507,520093800,179445503,1958742815,-121374462,182997955,1539541760,48780227,1371757312,-1070358513,-1960387789,-1912017906,1048601825,1951203328,1048601608,1968832512,1048798246,1962934273,503538704,996409347,1929380614,60908548,235103232]},{"sector":10,"length":512,"pattern":1414747219,"data":[1681981443,16000,264795482,12802465,0,0,0,0,1024,0,0,-1912362568,61454528,-1175100184,-1833697240,-402650949,-1397164717,-179050493,-1275066183,1096594,-1191886104,1122503845,47605,414948020,-181278720,-401824328,12186929,-1148013568,552075296,61454581,146725006,212187136,-1061175154,1722115767,-945805659,-979229001,1097399,1723320511,648373925,649580448,-1665675870,-669610962,646524599,1727707098,369168174,778483648,-937557745,-1071640649,29918054,-356507121,1620092,-1912594248,-1899983144,-1897886000,-1071640600,-121498,571441151,-1197806912,254676133,-1211097599,-669610450,646655671,537901018,-668856360,50077,0,0,0]},{"sector":11,"length":512,"pattern":1414747219,"data":[]},{"sector":12,"length":512,"pattern":1414747219,"data":[]},{"sector":13,"length":512,"pattern":1414747219,"data":[]},{"sector":14,"length":512,"pattern":0,"data":[1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219,1414747219]},{"sector":15,"length":512,"data":[17740,0,262146,0,32800,5,3,0,0,0,4096,42,1336,0,113,0,196,3,268,0,0,0,288,298,0,0,309,333,1643,0,1644,0,104448,2,120874,52,0,0,0,0,0,0,0,0,0,0,0,0,50331676,6664,0,8261,1,2,0,4652,8192,8213,3,2,0,42,16384,4101,5,1,0,65536,131072,196608,262144,327680,1634683910,6899812,50397184,-469565439,18,0,106752,112128,323328,335360,335360,-436205824,323223815,23199751,118146305,17014528,461765,-1962868432,67118858,1611205633,386006784,117720579,16941056,2558476,323748099,122554139,2557816,168820995,28639247,459482,1342244702,-117438701,194117890,89194503,118658049,17201408,463700,1426130183,989857554,194380035,17039399,2295832,30212170,524881,1476527560,-1325398258,324534534,128319495,117938433,16992768,527258,-1711143450,-234879231,173736192,16908327,103093020]}]],[[{"sector":1,"length":512,"data":[460759,1543571109,1493174035,194904323,12582919,654974977,-536804864,-2113681139,1375733509,299892996,82116615,118628353,17181440,463648,1610679998,83896083,907224065,1677823744,-1459325694,67118852,1393042433,134341632,117602306,17221120,2560868,321388805,10551359,25559313,459374,671154665,-1107294200,107479557,114819079,655583233,-1409219840,268564485,117718787,17191936,463724,-335411263,-385874159,321913094,57147399,118207233,17233152,463668,-1224670343,-1795160309,184025346,129171463,118700033,17305344,465400,989921970,-1325398261,322699525,134610951,119143425,16968192,461693,-1660878112,-67107065,94372098,51642375,655548417,1073807872,654329107,1627391757,230686978,144703495,118833153,34404608,458752,-2113863118,1392510733,239272195,182910983,118948609,17653504,463684,-1006498455,-50329841,432275725,247398407,117900289,17660160,465221,134285430,1090520853,419954957,16908327,228004680,462817,-2013196848,1577060121,201916672,16908327,174196426,461716,-889124164,67118870,1208552449,-519848701,654641155,201393664,1376001290,1980001028,-1660649980,150996740,416022797,221315079,117951489,17084672,462541,1308688915,1426065165,256835845,17039399,13634064,28115238,459512,-805238757,-905967852,412090636,243859463,118706177,17134080,462737]},{"sector":2,"length":512,"data":[302056753,-1459615985,378667273,33685543,257823251,2559869,169083142,96142055,102303185,103941676,93257735,655348737,1409352192,1225285651,-654309623,332726534,25100295,655136769,402720256,-519907574,-687487998,319162629,-922745082,135790852,133627911,118790145,17418240,463704,1493240197,1828718358,408486156,32768007,118299137,17188864,2560026,303759874,256577322,16973863,3740444,228330584,16908327,20449820,2557216,136052997,80675565,102696395,460347,1543571925,536872979,102629646,1507335,655089665,536937728,-234792440,-167387390,117842949,17104896,462304,536938847,33564438,387145729,118163978,17565952,2562080,320864514,228723806,126025735,655646977,553779712,-351352302,788530958,237109507,123666439,655385346,1677788160,1057634579,1846241290,-419428597,321126668,63438855,118400513,17555968,464871,1744896253,637536012,367526153,16908327,173871976,461711,671157487,100673299,-636344318,-150018546,1175403022,118445839,17252608,463913,-369032777,33564428,1074277377,654627841,-1409220096,-654224631,-285210876,95158531,233504775,117681153,17545984,464814,1862339038,-83884282,363856136,16908327,211489584,462591,-251592074,486541069,334561543,16908327,212931380,462832,-201191896,33564433,1141290241,118190858,17516800,464757,2013332369]},{"sector":3,"length":512,"pattern":0,"data":[-939522290,360186120,240058375,118700033,17213696,2560954,322699522,204736128,129171463,118782977,17506048,530236,-67039833,-1962932473,205324544,16908327,8460800,2556085,436470018,29425803,16908327,3478320,458831,-134152034,33564441,-1793459199,67584]},{"sector":4,"length":512,"data":[13312205,1465253889,397800,271944448,1174405130,-1070368140,1347420266,1783844944,406191872,-855638008,16798496,549749504,1618264075,321142155,344522752,675121979,-1996488685,-91538684,135794059,-507445248,607488778,-67108856,1622779379,-1107296256,2316,41146,373063680,-1206029312,-2,6967634,6948714,1375824464,1612762451,-2097151744,1515789508,-639483290,-1017225224,-839193607,16829216,-1957210624,1255485,993299200,1081406987,-850001814,16799776,147096320,460701707,-1100964708,2592,12722381,-1654587391,12656845,41156609,1956446669,1778412054,-849981440,16799264,281314048,57982987,-1676612616,173784672,550305792,65730,1610194273,550355806,65739,552097622,-1962934268,1255485,993299200,1433728523,-850001814,16799776,147096320,460701707,-1100964708,2699,12722381,-1654587391,12656845,41156609,1956446669,536897558,6946816,550327888,65623,185648259,-1676511808,180731488,550305792,65730,-335962783,1583347713,-887042621,1442840832,61073495,-1070399488,321404299,75956224,608013115,-956301293,-50428,-1072955393,6950004,1428213072,-2097151744,1583286468,-887042621,-1962934016,659509,-2079373824,205,141227571,1448498774,-16684458,530485,1394658560,-2097151744,-1073012540,11502607,361299968,2084,534691,16824576,1375469568,-1928033463,1452,210351631]},{"sector":5,"length":512,"data":[-486539255,1032540460,2084,1921726979,1253445380,1722086154,1946700299,48873742,191276531,-511506358,1503982339,-502480253,-2125899308,41209,-843614464,16778016,1757426432,128,1347440720,-16749997,530485,1394658560,-2097151744,-1073012540,898321524,4900,378139395,321402251,-217907200,898303625,2084,227277451,2572,-1056718461,-201587991,1220555685,1620876483,719038,-1038037760,1627390208,-1054814819,1946157312,-1660826366,-1667490837,188464736,550305792,65730,550346081,65729,30212724,-164405091,12460237,550305793,65739,168836491,256311296,46980,-1663356160,192790112,550305792,65730,1620876641,758462,-1038037760,1627390208,16824733,1375469568,-1928033463,1452,210351631,-486539255,1921732975,1253445380,1119293194,-2084502776,1182076923,12853453,1936982017,-1765908324,-855638005,16826912,-1667407616,194690656,550305792,65730,1620876641,761534,-1038037760,1627390208,-1100964707,2995,12722381,-1654587391,1620892467,767934,-1038037760,1627390208,-2091301987,-1847456574,-108967591,160,-9402609,267124735,-977379172,-855638005,16826912,-1013096192,13312205,80216065,-930414592,16841089,-2096168960,319,76006283,909453,-1043232000,1342377186,216711428,1381061456,1794930061,23746048,1629539666,-2097151744,1499074756,-21079973,1358954495,1783779667,1778870784]},{"sector":6,"length":512,"data":[23746048,550326353,65632,1511834755,1347967833,-1957539501,64940225,6946816,1397817706,1579208018,-2097151744,1499075780,537876571,-551415841,1375501707,-1400040309,251658245,151816630,-922025984,-1667490955,299941472,550305792,65730,550346081,65729,30212724,1718449309,4245495,-1957604783,1254461,943491840,1921726979,74646276,172668431,191276275,242485322,-217912895,1242261157,65110792,-2091277069,-824046398,-1957602982,1254453,859081472,2055942659,75170564,172668431,191276275,242485322,-217912895,1242261157,65110792,-2091277069,-824046398,-551547047,-908123633,1620876483,1188030,-1038037760,1627390208,-1054814819,1946157312,-1660826366,3088589,-1664942079,1438539932,-855637998,16826912,-845324032,16826656,-855477248,550345985,65583,-887042621,1778385152,-855053567,16829216,-2097124864,1946166332,-1957670092,18927043,989856000,1968920771,1620876324,1217726,-1038037760,1627390208,-1054814819,1946157312,-1660826366,-839503008,16825888,16824576,-108986368,160,961093494,232819996,-294322176,550326611,65539,-389969072,-492,-346334888,-1017579303,13312205,-396361727,584,-2089913759,1260605,1702100992,1962997891,655288581,-125632512,-385518335,12020,1963456643,-97851131,-125566977,-385518324,-1131,1963128963,491448581,-125632512,-385518323,-1266,1963915395,-90576635,-125566977]},{"sector":7,"length":512,"data":[-385518333,212,1963325571,18868485,-125632512,-385518316,-842,550355960,65739,1252513,537758464,-402653165,456,863293963,6967377,1397752170,1579208018,-2097151744,1498944708,460701707,-1100964708,4972,12722381,-1654587391,12656845,41156609,1084031437,-842808862,16829216,-1957211392,1266749,-1960901888,-620015525,-2081028236,1681,1968922372,-561294568,136600619,-75371567,160,-16354469,1268773,25067520,-756732,1267749,-887042816,1459618048,325074315,1066074112,325330431,550305792,65739,37849446,637493081,4968,13312205,-957874175,-1946157062,1257525,-1675571968,-1962934016,1258549,-1675571968,-134217472,-1869573949,13312205,-2124021759,1476598909,-2090459787,1963004029,1279099670,-16777197,-2090463884,1711352909,18630087,-104597504,-887042621,-2097151744,-1923650324,-855366532,16813344,550330112,65667,323749319,-65536,-949551105,1476598853,324017547,-2124021760,1711341539,-1206887031,33,8659149,96927745,4940,0,8790221,-1923743743,-855366540,16813600,-998023680,-339478420,4,-887042816,-1677721344,127469055,550305792,65737,943555485,19,-1070397835,-1007028685,3271870,16824320,-1007157248,13312205,13107201,480313344,-1056964589,1161366752,-922258680,323233279,28835840,-922746880,195,13312205,-1007157247,13312205]},{"sector":8,"length":512,"pattern":0,"data":[-796196863,435950891,-490668032,-132840702,-1962934247,49938]},{"sector":9,"length":512,"data":[0,0,0,0,-1,0,0,0,1734430815,1952794469,1702521171,1919181889,1767990816,543450476,1226862191,542397262,1684955496,1595958636,1684107084,1381984584,1836413797,1297506149,1124076810,1684829551,544483182,1801678700,1936607520,1668178292,1969365093,1919247974,1296916256,1381978695,1836413797,1297506149,1593838858,1701273936,1400137031,1097169513,544367716,1818845542,1864393829,1313415278,1746949203,1818521185,1298079845,1599227725,1886614867,1600417381,218778966,1970225920,661546092,1853169780,1801678700,1936607520,1668178292,1969365093,1919247974,1296916256,1398755911,1701868405,1449092206,854605,1869376577,1769234787,1713401455,1970039137,1277191538,1214538095,1850302313,1931506803,544235886,1634683999,1600735332,1953721929,1701015137,1953066569,1886220099,1702126956,1090522378,1668246636,1869182049,1634082926,1920298089,1297490021,1867259953,1766351969,1936607583,1281302644,1214538095,1850302313,1851880563,1850303843,1866691689,1701605485,218785140,1394614272,1953653108,538976288,1852132384,174617703,169869325,169869325,169869325,538968077,1918989395,538976372,1699487776,1752459118,536874250,587205898,541676357,1159929888,218781761,544165376,1953721929,1701015137,1952539680,1852383329,1112364320,854643,762212174,1869768026,1634493984,1595962215,1281647681,1214538095,1850302313,1851880563]},{"sector":10,"length":512,"pattern":538976288,"data":[1950967139,218787173,1682005760,1634684004,1600735332,1953721929,1701015137,1835365449,1684103712,1936607520,1886999668,1696800869,1763735649,1696800878,218789988,1682005760,1634684004,1600735332,1953721929,1701015137,1835365449,1852394528,1847620459,807433327,1684349728,854648,1936943437,1746953317,543449445,1702126948,1869182051,1096753262,1867277412,1766351969,1936607583,1668178292,1702119781,854637,1684291935,1684107084,1230989640,1635021678,1231381358,544040308,1684107084,1230989640,1635021678,543515502,1987011169,1095573605,1313431384,1348424787,1397049153,1953459744,1886745376,1953656688,589325413,175662181,1281294349,1214538095,1850302313,1851880563,1850303843,1866691689,1701605485,1847616884,1852383343,1851880563,1814062435,175403881,1281294349,1214538095,1850302313,1851880563,1850303843,1866691689,1701605485,1696621940,2037544046,544434464,1769152560,589325690,174682981,1281294349,1214538095,1850302313,1851880563,1850303843,1866691689,1701605485,1696621940,2037544046,544434464,1769152560,589325690,174679141,1281294349,1214538095,1850302313,1851880563,1850303843,1866691689,1701605485,1696621940,1769108590,1847620453,1931506799,1702130287,1696800868,1042311539,1684349728,854633,543450191,1702060355,1852383276,1851880563,1864394083,1819436406,589328481,543781733,1095050048,1701584984,1159929966,218781763,538976256]},{"sector":11,"length":512,"data":[538976288,538976288,538976288,1768187171,1159938080,1814059073,589327973,173556549,1229520909,1701716035,1632641143,589325671,544760677,544503151,1914725999,1701277281,1224740106,1394623305,1953653108,543649385,544695662,1701273936,1667572512,1948265592,1701601889,1920234272,544498549,544501614,1953525093,854649,541280585,1969906785,1684370547,1936615712,1701978228,1869881443,1864380448,1701716082,1769152615,589325690,174682981,1229520909,1986994243,1818653285,1852405615,1769152615,1663067514,1953396079,1734438944,1696800869,218789987,1836008192,1702131056,1867260004,1766351969,1936607583,1297506164,1718960735,2053722975,1718558821,1595944992,1684107084,1230989640,1635021678,1231381358,1131702638,1819307375,174421093,1281294349,1214538095,1850302313,1851880563,1850303843,1866691689,1701605485,1411409268,1601203557,1147096406,1600222305,1634038337,1953853216,1851880563,1735289188,1090522378,1668246636,1869182049,1634082926,1920298089,1297490021,1867259953,1766351969,1936607583,1281302644,1214538095,1850302313,1851880563,1850303843,1866691689,1701605485,218785140,1819033856,1952539503,544108393,1818845542,543519349,1684107084,1230989640,544502638,1885433459,1867276064,1766351969,1936607583,1668178292,1768835429,1836008308,1952803952,854629,1869376577,1769234787,1713401455,1970039137,1277191538,1214538095,1850302313,1142977651,1919120229,1595961449,1684107084]},{"sector":12,"length":512,"data":[1230989640,1635021678,1231381358,1131702638,1819307375,174421093,1631977485,1730178153,544698226,1684107084,1230989640,1635021678,543515502,1668506980,1718968864,1816207462,1633906540,1867277684,1766351969,1936607583,1668178292,1885424997,1970435155,854627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1684107084,1230989640,1635021678,543515502,1819631974,1852776564,1734438944,1769414757]},{"sector":13,"length":512,"data":[807430260,1414351136,1634683999,1600735332,1953721929,1885424991,2053722975,854629,1330795077,538982994,1684107084,1230989640,1635021678,543515502,1819631974,1852776564,1852796448,1936615725,1668178292,1634738277,218785127,1953449728,544104736,1953721961,1701015137,1734438944,1634082917,544500853,589327983,544760677,1293958462,1230985281,1599361870,1162297680,1852383315,1444962592,854605,1096040774,1380261964,978472786,1867259936,1766351969,1936607583,1668178292,1297506149,1953719620,544829298,1819042147,1998611557,543716457,542655045,1967333437,1297506162,1851869279,174419044,13,1949,0,1835776,1,1684107084,538995016,0,1440,0,0,0,0,0,4832,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1684107084,1346005320,1232304488,1450144878,1713387064,1936484705,544175136,544235885,1937336432,1734438944,1970151525,1919246957,1145381664,1852383320,1881173876,543516513,1651340654,589328997,173556037,1866661901,1852075125,1881175079,1751348321,909661728,1380404557,218771744,1970225920,661546092,1634738292,543712116,1295398998,542263117,218784049,1684620288,1953459744,1852401184,1634738276]},{"sector":14,"length":512,"data":[543712116,1953721961,1952675186,544108393,1212948529,1937331039,1769096031,1633905012,1850302316,218788969,1684620288,1953459744,1852401184,1634738276,543712116,1953721961,1952675186,544108393,1212948530,1937331039,1769096031,1633905012,1850302316,218788969,1970225920,661546092,1634738292,543712116,1295398998,542263117,854578,1819635523,1948741220,1952542752,1444964451,1296905784,840979015,854625,543451460,544501614,1684957542,1952542752,1763731555,1920234350,1769235317,857763439,1598573600,1601403219,1953067587,1818321769,1768835423,854644,543451460,544501614,1684957542,1952542752,1763731555,1920234350,1769235317,874540655,1598573600,1601403219,1953067587,1818321769,1768835423,854644,543451460,544501614,1684957542,1952542752,1763731555,1920234350,1769235317,891317871,1598573600,1601403219,1953067587,1818321769,1768835423,854644,543451460,544501614,1684957542,1952542752,1763731555,1920234350,1769235317,908095087,1598573600,1601403219,1953067587,1818321769,1768835423,854644,543451460,544501614,1684957542,1952542752,1763731555,1920234350,1769235317,924872303,1598573600,1601403219,1953067587,1818321769,1768835423,854644,543451460,544501614,1684957542,1952542752,1763731555,1920234350,1769235317,941649519,1598573600,1601403219,1953067587,1818321769,1768835423,854644,543451460,544501614,1684957542,1952542752,1763731555,1920234350]},{"sector":15,"length":512,"data":[1769235317,958426735,1598573600,1601403219,1953067587,1818321769,1768835423,854644,543451460,544501614,1684957542,1952542752,1763731555,1920234350,1769235317,824209007,1212948528,1937331039,1769096031,1633905012,1850302316,218788969,1684620288,1953459744,1852401184,1634738276,543712116,1953721961,1952675186,544108393,1277178161,2035507016,1917017971,1667855465,1230990433,175401326,1766064141,1869488228,1768300660,1881171054,1751348321,1936615712,1668641396,1852795252,540160288,1398753356,1130328953,1769236850,1600938339,1953066569,1140854026,1847616617,1713402991,543452777,1668571504,1852383336,1970435187,1869182051,540614766,1398753356,1130328953,1769236850,1600938339,1953066569,1140854026,1847616617,1713402991,543452777,1668571504,1852383336,1970435187,1869182051,808525934,1598573600,1601403219,1953067587,1818321769,1768835423,854644,543451460,544501614,1684957542,1952542752,1763731555,1920234350,1769235317,824209007,1212948529,1937331039,1769096031,1633905012,1850302316,218788969,1684620288,1953459744,1852401184,1634738276,543712116,1953721961,1952675186,544108393,1277178417,2035507016,1917017971,1667855465,1230990433,175401326,1766064141,1869488228,1768300660,1881171054,1751348321,1936615712,1668641396,1852795252,540225824,1398753356,1130328953,1769236850,1600938339,1953066569,1140854026,1847616617,1713402991,543452777,1668571504,1852383336,1970435187]}],[{"sector":1,"length":512,"data":[1869182051,875634798,1598573600,1601403219,1953067587,1818321769,1768835423,854644,543451460,544501614,1684957542,1952542752,1763731555,1920234350,1769235317,824209007,1212948533,1937331039,1769096031,1633905012,1850302316,218788969,1634683904,979978340,1919501856,1428190323,1881162317,543516513,589329257,743981381,1768453152,1936269427,1634628896,1885692771,1818386804,854629,1684107084,540698952,1869376577,1702125923,1986348127,1600480105,1096761923,543253874,1818845542,1869881459,1819042080,1952539503,540549221,1702132066,854643,1684107084,540698952,1802465096,1986348127,1600480105,1987208531,543515497,1818845542,1869881459,1869572128,1681989739,1936607588,1668178292,1702119781,854637,1684107084,540698952,1802465096,1986348127,1600480105,1987208531,543515497,1818845542,1869881459,1869572128,1700012139,1816622195,1818321519,1295398998,218787173,1634683904,979978340,1869563936,1698979691,1701013878,1919243103,1701013878,1767990816,1948283756,1869095023,1142975343,1196249935,1850302290,1851880563,1147102563,1667855973,854629,1684107084,540698952,1769173825,1147104871,1667855973,945184613,1632657206,544433511,1818845542,1852776563,1734438944,1970151525,1919246957,1095050016,854616,1684107084,540698952,1802465096,909661791,1734430815,1634082917,544435305,1881173615,543516513,1651340654,589328997,173556037,13,0,0]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"data":[13312205,13107201,1465253888,209552211,-1675922432,-524394340,-855638005,16826912,-845324032,16826656,-855477248,1435213057,138578696,990701761,1252357,1527411456,-3580321,1261605,272796416,65597,1026126848,512,-1667489164,201965152,550305792,65730,550346081,65729,30212724,272811933,512,37339187,1111033205,-1675922428,1035886748,-855638004,16826912,-845324032,16826656,-855477248,1116445953,15624,-2096168944,203,167772221,-1115549952,50331648,4000834,251662336,45703,-17664,898367487,2576,1282732859,990397067,1148586054,-885322101,-242535052,1997030971,-1959622157,72255434,1979709827,1620876315,813246,-1038037760,1627390208,-1054814819,1946157312,-1660826366,1250496905,-1994659068,445187186,317396617,168826249,1518927872,1177716996,-1991375756,1031996502,2588,-1087343616,2092,1622786099,-218103808,6338987,-1396768768,-218103799,136356266,6946816,1428213072,-2097151744,736626884,855638016,1542998208,-1010213281,-1661408263,-1732353892,-855638004,16826912,-845324032,16826656,-855477248,-1070359295,550361323,65739,3272,50087367,-1962934272,659509,259343872,-356622180,-855638004,16826912,261972224,218500,1049316864,-461107385,1325400064,990922379,1937051719,-1962391925,207487960,-1962389621,207029201,460838971,-1100964708,3354,12722381,-1654587391]},{"sector":6,"length":512,"data":[12656845,41156609,1000145357,-1675921455,1321099420,-855638003,16826912,-845324032,16826656,-855477248,-1053057791,-1667490954,226672224,550305792,65730,550346081,65729,30212724,1960393629,-1962444973,-9115145,1364262911,-1962391925,1620839502,901310,-1038037760,1627390208,138906525,-1676914805,233946720,550305792,65730,1482268001,192201019,443800123,1451872299,-1961628916,1178274887,-1995737588,116067398,17581963,126553158,1962932355,74483971,334038665,872415231,1342794432,1347440720,23724394,5447885,-998047743,264244000,177796,403031808,10,16777232,661525,336955648,-1996488694,531477,136356608,898301952,2576,-1056407925,1313213679,-1995944309,1317795917,-196245236,-1946661493,-195230759,216777035,990702017,-2125630257,65785,-1675922944,582901916,-855638002,16826912,-845324032,16826656,-855477248,-1182753535,2316,-1675922432,1136550044,-855638002,16826912,-845324032,16826656,-855477248,1300471041,-108330244,1301007163,-195195912,-645189004,1124920257,-1995643967,-651429795,2012503337,1620876315,948414,-1038037760,1627390208,-1054814819,1946157312,-1660826366,33312131,130792,188925440,71993600,-2146637375,593081,460717824,-1100964708,3750,12722381,-1654587391,12656845,41156609,-23264819,593025,1975127808,124977660,-1400044407,-2097151995,2037515515,50610934,1116426868]},{"sector":7,"length":512,"data":[65045252,-150673277,734759896,83461064,1116233586,1725442826,-1962386807,658445,-2082895104,-343735325,1004271364,1997501656,-2083847415,-936704831,-668269333,176802563,138589967,-1240479741,-939324862,434887475,168562059,-1048379392,-52329725,-1989801335,-888993702,1518918451,202213642,-352321526,173705239,168562059,176750592,168566017,-617414656,140151142,-59393521,2105675520,-1946157058,-2062596554,-409,658593,268371200,-390004736,1975520012,1620876315,970174,-1038037760,1627390208,-1054814819,1946157312,-1660826366,530595,473795328,-1107296248,2092,634042,6338816,-1070399488,41157176,-964477439,-186498556,205005,-1014300671,12180275,-1090519039,3552,-1182774788,2316,-1828621056,1972307081,-108948735,160,96986999,2588,-1,-917979085,1620876483,987838,-1038037760,1627390208,-1054814819,1946157312,-1660826366,-839503008,16825888,1620876288,1003454,-1038037760,1627390208,-1054814819,1946157312,-1660826366,-1667483413,261209696,550305792,65730,550346081,65729,30212724,-1675891811,-725720932,-855638001,16826912,-845324032,16826656,-855477248,861969665,-1105146378,-855637760,16829216,1398232576,336956241,-2097151990,356191426,2584,480338038,687865864,660485,402991360,1778384906,540409600,-855638008,16799776,147096320,1416937483,1342270016,136328703,550305792,65620]},{"sector":8,"length":512,"data":[185386115,-2126678848,661509,1048576,404029696,16777226,660501,471173376,-1560281080,2080,361467883,2580,169084291,-1962147840,470100930,1493172232,-1017225381,-1100964708,4122,12722381,-1654587391,12656845,41156609,1620902349,550368819,65726,13312205,861929473,2149824,1023411712,778,96930418,4924,0,196669,-1635447040,-1207959547,393220,-66,-1876898305,1929380096,1620876315,1292990,-1038037760,1627390208,-1054814819,1946157312,-1660826366,123765263,-1202323456,393220,9445581,1935540225,1620876315,1299902,-1038037760,1627390208,-1054814819,1946157312,-1660826366,120619535,-541589504,-2130706418,-949615044,125108487,67533952,-1202752508,5340,1711684737,1946224583,1620876315,1307070,-1038037760,1627390208,-1054814819,1946157312,-1660826366,2088777589,1946420230,1620876315,1321406,-1038037760,1627390208,-1054814819,1946157312,-1660826366,1418531701,1673069830,721420336,100976330,105679336,243713,-4325370,-838860801,16814112,-1675922688,1639866524,-855637996,16826912,-845324032,16826656,-855477248,-2112905983,1670,243798,550305798,65680,-1675922594,2092851356,-855637996,16826912,-845324032,16826656,-855477248,-2112905983,1622,2614968,104628480,1963017016,2088765301,1950876678,1059371087,1015087104,21182470,-1675922315,-1732353892,-855637996,16826912]},{"sector":9,"length":512,"data":[-845324032,16826656,-855477248,729128193,67533952,-1675922360,-792829796,-855637996,16826912,-845324032,16826656,-855477248,125148417,105170790,-1198485501,7046,104628582,-2062600821,158,101088385,491107855,9471247,1418395648,361300486,4948,2550200,104628480,2122319752,-1667490956,352894560,550305792,65730,550346081,65729,30212724,-1635446883,1711276035,67533953,460588033,-1100964708,5440,12722381,-1654587391,12656845,41156609,261947853,226437,108822528,460616710,-1100964708,5496,12722381,-1654587391,12656845,41156609,261947853,216197,14215424,1958215680,1711276073,-1962525567,-1675922379,-1329700708,-855637995,16826912,-845324032,16826656,-855477248,-2062574335,218,101088385,491107855,-1667490956,367574624,550305792,65730,550346081,65729,30212724,-1350234211,-1962934272,-1996356012,1266709,1036040192,1015087104,-2146990074,-1675922306,549347484,-855637994,16826912,-845324032,16826656,-855477248,2054528257,108822886,1946419460,1620876315,1464766,-1038037760,1627390208,-1054814819,1946157312,-1660826366,2088785013,1953760774,1620876315,1479358,-1038037760,1627390208,-1054814819,1946157312,-1660826366,1418539125,361302022,4952,105690639,-1983249657,1268749,106204416,107985159,-903151616,33965254,105679337,105170435,-1095200761,1711276054,-1962525567,-1467674819]},{"sector":10,"length":512,"data":[-2130706432,-1928984964,256969343,39557,105679616,1611499778,-2130706413,-1053948292,258343656,33413,108822784,37849394,-1921485479,-1996159404,1270805,1678114560,-1191182317,1717,80136747,1284106502,1153827078,-1919941370,-1992948140,1271829,113948928,-903151616,822494406,105679337,384022578,1015087104,-2013099514,646254401,-2147483647,17041020,18580751,2088828928,-1223752442,-2062613438,269,17188038,105170438,-2031532537,-1207959551,9161,104628582,460602763,-1100964708,5835,12722381,-1654587391,12656845,41156609,261947853,53381,108822784,176131334,-1675922351,62808220,-855637993,16826912,-845324032,16826656,-855477248,-2062574335,165,33967243,325062025,-1132396544,38150,48808192,-1675922330,1019109532,-855637993,16826912,-845324032,16826656,-855477248,1903533313,-1727611775,-1996488704,1951990337,1620876315,1537470,-1038037760,1627390208,-1054814819,1946157312,-1660826366,1418545013,361301254,4964,325322239,-1246167040,721420294,100976330,105679337,105170433,-1802661883,40198,1746241792,-1191182317,1738,-2067346901,38918,-1937118976,39174,605337600,1015087104,-2013099514,-1675922367,-1363255140,-855637993,16826912,-845324032,16826656,-855477248,1567988993,67533953,21137921,-1667490956,401063520,550305792,65730,550346081,65729,30212724,-2127137379,254215804]},{"sector":11,"length":512,"data":[1946436279,1620876315,1581246,-1038037760,1627390208,-1054814819,1946157312,-1660826366,1153830773,-972685050,1174799940,688276678,1032020294,4924,-444330240,1778384897,26241024,-850264064,16804896,214205184,568905867,-1560281084,4892,320869769,-1606615040,1929379840,1620876320,1595838,-1038037760,1627390208,-1054814819,1946157312,-1660826366,105961,178176,146341888,-855638016,16816928,808814848,-1207959533,2,5305,-1692349184,-1996488448,1258549,1778412032,-1491022584,-2097151744,-1073018684,-1667489675,412139104,550305792,65730,550346081,65729,30212724,21031325,614662144,-2097151981,681772224,-1207959533,65702,2097342,-1876898560,1929380096,1620876320,1625278,-1038037760,1627390208,-1054814819,1946157312,-1660826366,66025,1077250304,-1207959533,65631,511166,-1876898560,1929380096,1620876320,1640638,-1038037760,1627390208,-1054814819,1946157312,-1660826366,51689,1144359168,-1207959533,1376263,3130558,-1876898560,1929380096,1620876320,1656254,-1038037760,1627390208,-1054814819,1946157312,-1660826366,37353,1211468032,-1593835501,4892,320867723,1307049984,201326562,-395873070,128,6967377,23724138,1914752336,-2097151744,-1073016636,1495168344,-1100964708,6536,12722381,-1654587391,12656845,41156609,-342031923,-1396813763,-855638013,16806176,1935235072,1620876317,1688766]},{"sector":12,"length":512,"data":[-1038037760,1627390208,-1054814819,1946157312,-1660826366,-499117845,52481421,-402652928,-8806,-1100954632,12788,550354995,65726,13312205,-1338179583,1912602624,12008726,259457024,1946221187,939902730,-16777197,-1006632961,13312205,-326959103,2089637740,550306852,65677,-2095002273,1711276288,35407303,2209880,550305792,65668,474330895,1265827,1170695680,1717043996,1066439,2209792,550305792,65668,8790221,-1923743743,-855366540,16813600,-998023680,2209900,79560704,-855638009,16793888,841072384,-164429824,550359603,65715,841487753,1232207872,-164422677,841487755,566165504,-855637966,16823328,672499968,1912602674,808815404,-855637997,16817440,-1642017536,-1962934016,-1175286792,8,-1073042180,-492173964,-1329599496,-341118176,840679353,-164429824,550359603,65715,841487753,1450311680,-164422677,841487755,465502208,-855637966,16823328,672499968,1912602674,840154937,548929536,-1994383328,71796999,146403979,-67108864,1958742700,-136140285,3281854,10676224,-1166934016,73192,-390893056,81,518565099,-2097151998,578027583,-1031071861,57985,-356384769,-56052,-805109760,71808783,10472,113738496,-1007101461,13312205,1508376577,1912602624,13953038,124911616,2280,-3934208,1263653,-887042816,1610612992,898365579,4916,10297549,550305793,65694]},{"sector":13,"length":512,"data":[199,1086783488,4,139495680,-955484023,33558592,6946816,-1507799728,-2097151744,-1017050940,13312205,1465253889,-1946252463,1257525,-1558131456,1946157312,-51344614,2233,1957098240,808815377,-855637997,16819232,-119114496,1509491179,-842834337,16829216,133654016,91554720,17793382,49924,13312205,42663937,1704099,79856384,77791883,-2097151974,42665154,1703075,79856384,435688841,12189696,721420289,550355920,65739,-1957473961,1703997,-1042838784,-490666774,-2082501872,-754774045,-144254157,-2147482553,1465258356,-1190494323,8,1604776956,-1960545186,-1958769702,-8165673,-1048309761,-1962934272,-1998385,-1056964353,-947187473,50653121,-1580995591,6652,990699713,-1652420616,-2097152000,1065357551,255161668,1208043447,990175425,1395226055,283885906,990964417,1952144090,1203179276,81838339,-351250547,2010332012,281510763,-1014245497,1575733035,-339652013,283820304,1532680763,-947657868,-1056470256,-1051586328,-1036316438,-1961462438,-2117104833,16777185,284147968,-406730869,-336002300,284132316,1967406976,1203179299,-524204031,1975991044,1203179287,81838339,735753999,283820483,50651841,32241875,1599691769,-887042621,-1962934016,1705021,49920,539575080,2037411651,1751607666,1229791348,1397707331,542393935,1886547779,824192046,3160377,1684107084,26952,1684107084,1396336968,1130328953]},{"sector":14,"length":512,"pattern":0,"data":[1769236850,1600938339,1953066569,1767982624,29548,0,1275068416,1279345487,1330398976,4997442]},{"sector":15,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[246775,-1007221131,158662660,-164373709,-343932488,51002636,99091571,28885760,-617364736,12121651,1461961472,942894697,1867259958,1766351969,1986348064,543515497,1700145184,1869181810,774971502,10544,1634683914,1600735332,21120068]},{"sector":7,"length":512,"pattern":0,"data":[15227469,17,5111840,37093375,128,30933008,30,1]},{"sector":8,"length":512,"data":[1397751808,861341266,868323017,305051903,801964210,657036,540297,-1307431240,-1943024382,-1996484090,-1207955394,78778926,109850573,1049165858,783810592,-855199214,101092399,71207168,148432896,132748,16009,1967756,1851017,-1945573400,-1996483066,-1207954370,145887790,109850573,1049165866,113705000,168624191,8914630,1141294884,-956301312,167790086,115861504,2899593,-1995975960,-402640834,786956313,4319232,5302353,1599670386,1482381831,-998046485,1355020556,12066390,505531747,141696775,3683977,3802764,-1195157410,12272640,-841862400,31883297,-1207841152,567100417,1140897987,855638459,-2145268270,28836302,-1021194940,567095476,1964377661,418117635,1929380413,-17659,45810667,112640,-1308622663,-100682240,1364414659,1376147285,512354699,914882620,-957874111,1959332610,1978469148,2549765,-1326971925,1510502913,117507560,-2096829601,-336001340,1516177156,1560703737,-346530983,147096324,1397801977,1008634706,-294144,753403253,-402396416,259194999,12278196,841075968,113542116,-2096043015,192217083,125092155,-2097106712,1928922820,1482381827,520494787,1963063683,637711387,567088522,-389903841,102629553,638022431,-855550582,267122721,-922025292,-1977218700,1193397525,-118262455,1347928863,-91532538,-645200098,-218359120,721647022,-880063527,1599604571,197145539,508523721,1085546246,-108800117,-852986623]},{"sector":9,"length":512,"data":[642785057,1525155210,102651904,-133795041,-851296076,-2144953311,41228861,32227723,-68677937,1427827711,-5838767,-849745525,-352160991,1959279371,-118998265,-1047854475,-1195172003,79364135,-1023298304,1962933888,-2134444527,119409781,4144781,-402652487,113508096,943637591,1962871552,1032005143,276101120,1912945190,1161438727,-117344511,-370456761,-1883044001,855654918,-141388837,-1828698570,4601591,1980365443,935493637,-1031797781,188830256,184841664,-2093386533,225772537,738884736,922682741,-348061617,133792546,2088766837,91565066,5191423,-2096043199,192220153,738884736,922682741,-1824456625,-1477717453,-1070345677,4339455,198325187,-1272875831,637579301,175449400,23410726,-1002830732,-1977217419,-11278331,1195835763,-478852798,197822294,1295217901,4472451,-1976863488,805570116,21314086,518718069,74788924,74764811,-404016125,4275840,1107850751,1330202946,-1174148273,727187455,-32839431,57891167,1368417771,2088815243,225705990,108316939,1195854153,-346160661,1976109840,166419971,1979709827,197735170,1430025471,860948055,1144947657,326434816,252134646,2093222005,39512066,2062024939,-402396415,124911648,1566508889,-2096829602,-2080830780,17470,57804149,-939577623,17414,-768359680,-956283743,167790086,-22026240,1216841816,-75283712,-402426560,-906100232,230223477,1216841994,-398245120,1455620584,871773011,-98103]},{"sector":10,"length":512,"data":[-1131739019,-544538580,-956946965,-1006078974,-1946152772,1025043395,225574931,1996498749,482133000,-339506176,12370950,-2084336640,376831995,1979711104,216791299,-1207941981,29229055,-118082816,-75297557,-402426880,-964493228,108197892,41273611,-2137219093,695534078,105993554,12079191,1009765637,158685439,45668491,-349188859,91486465,-346486945,113541894,1560284392,-821957798,-268274,1472421467,-18096,-1359822798,1481232887,-75250849,-2095221503,-16766914,-12773772,1342928383,-16759647,1476405278,520029419,451608616,-25114317,637957375,-352105078,892874249,-1976695691,-947715251,762575108,1959332856,-98279,992347508,772008709,41223483,1950943723,80184069,1928979435,-98292,235042296,2097358343,839283202,227157741,1040631367,868417536,108822747,-955157248,536889479,-968670419,536889479,10938435,870003549,1041139922,155486720,511099194,-259342038,-2147007242,1149899892,1216841738,-75283712,-402426560,-822214532,2088823925,225705992,1929923640,139209224,1284166026,1959332616,121959972,-166955761,1947207492,92939782,1476520775,4753288,1090224963,1105724277,1976172032,121960156,169375104,-1978370826,-2021127612,-2092761016,58015995,-33545240,-152275506,1963919172,121959944,-352160752,1959922188,1107726088,1976237568,190712,106021717,-1962467753,-1915014197,-402634690,91421556,-346486945,113541892,-161627143,1966081860]},{"sector":11,"length":512,"data":[92939794,1525170512,637957116,1342260618,638446584,-1073085046,1095173236,-114559509,117424981,67350,131100,196656,19660866,19726421,19792008,19857609,1226244351,1919902574,1952671090,1397703712,1919252000,1852795251,1226115597,1718973294,1768122726,544501349,1869440365,168655218,1851867926,544501614,1684957542,1936026912,1701273971,906628467,1986948931,1937011301,1480928800,1697128517,1969448312,1818386804,1713383781,1936026729,544175136,1634625890,1713404274,1634562671,168636020,1162086925,1110590808,1528843849,1986622052,1564094821,1952542811,1767715176,1953853550,1818846765,1532698725,1986622052,1564095077,1952542811,1868378728,1970304117,1768303988,224224620,956960010,1852383264,762606960,1701603686,1394614304,1768121712,1936025958,1701344288,1480928800,1768300613,1948280172,1700929647,1852793632,1953654134,221144165,538982666,1886680431,1714254965,543517801,1701860128,1768319331,1948283749,1646290280,1918987881,1768300665,1948280172,1700929647,1701995296,1684370529,235539758,574524679,1539408134,117424897,264214,327712,393260,458819,524368,589922,655491,786579,1091502249,1936024419,1701060723,1684367726,1176111629,543517801,1852727651,1646294127,1868767333,1919252078,224683380,1766199306,1847616876,1713402991,1684960623,1175783949,543517801,1634038371,1852795252,1920099616,168653423,2020165156,1936749869]},{"sector":12,"length":512,"data":[1701146144,543450468,1633820717,1931502963,1701668709,673215598,695756136,1850282810,1768710518,1634738276,1701667186,225600884,1850284298,1717990771,1701405545,1679848558,543912809,1667330163,487198053,1701603654,1835101728,1970085989,1646294131,1886593125,1718182757,224683369,-1928917494,-2130214338,-1023349311,135661057,2097154,2818051,3538948,4587525,5308422,6029327,7602194,8323071,1818838542,1869488229,1868963956,241462901,1752457552,1953459744,1970234912,1410557038,1830842223,544829025,1852141679,1818846752,1091466085,1936024419,1701060723,1684367726,1850281504,1768710518,1634213988,1701602414,1986939163,1684630625,1769104416,1931502966,1768121712,1633904998,1852795252,544165389,1701998445,1818846752,1158771557,1852142712,543450468,1869771333,824516722,1049429774,-1048508300,46334134,-16706042,234882303,1936875856,1917132901,544370546,118370597,154091149,-1021460093,512503326,-1070399488,29931600,113694862,-402652802,1048576018,1962869118,249358339,1286914098,550314445,-2147480600,-16679362,266863476,2045297408,-402099210,113702799,-1006698114,512634398,-2118254592,29931520,-1077899770,-919403634,-1993944525,-402466250,3998099,644117760,63848065,208995256,637570536,25036486,8514047,102650704,-108832938,-1205832447,-661782072,-1962688322,-1948742908,-661781948,-927403125,-1077899775,-488111728,-1205933295,-661782072,-1962686274]},{"sector":13,"length":512,"data":[-1948742908,-661781948,-927403125,-1077899775,-1024982559,123625233,1029200671,-2005663744,1962934077,-1591324632,-1557789990,-1943665954,-972890082,509083652,-1912485702,55747546,-402435398,639570426,25036486,-1021376513,-402423110,-2128211478,788759102,638022657,58853119,12840427,-5177186,-1308622081,-1342167040,255,65280,1566244864,725499004,2243389,-953286656,685062,243871232,-1993471234,772472870,184694409,243871484,-953283993,682246,113716736,2684,1829160750,771751946,188286663,-953262757,2081110790,113716796,725486397,1057408814,1362836747,-1185523886,-1404960769,1963693032,243871481,1449003842,1108249390,-2133118197,41230908,-620047370,76230773,1948269885,1025522959,154995316,1023767613,443877693,1178404038,1364655755,119408198,1493673203,-4764066,1108279086,1229342987,173982079,1605662207,333994330,-1206684917,643039231,975576459,-1207733489,-379912190,-1993473757,1393194550,512578903,-164754818,537556230,-391363723,1014107043,1946879976,188278839,-164751243,537556230,-806877835,774302474,175441654,1310618689,-2010244117,1966947335,243281414,1124141685,1930140904,-2010207035,-1091878137,914959950,-970061205,-1993474041,638220830,915217803,-2144466306,913583932,574390318,-164755340,17462534,-1977199499,-466484921,1728461102,772961034,-787847263,54739936,529213144,-352286488,113716841,68201,-1977196309,-466484921]},{"sector":14,"length":512,"data":[65065280,260712152,-921965262,1396903796,-400585946,1935343880,-498908351,113716978,199273,-1977207573,-466484921,65065280,126494424,-523115470,651690816,-315486326,259311883,-1960422589,6154271,1124823899,787669571,174655175,1599930372,244002395,-1590818201,-1959916951,772434742,174921355,1864272430,1355020298,-1459123418,91553794,1728511790,1015033354,-1457949440,158662657,1762051886,-352321014,61886478,-521601100,65755136,1476485096,243281603,-402126219,611450939,1965457454,777058058,722106529,100740806,777521782,175650443,3964974,837290356,351008769,772926457,174655175,-1336934391,-385895421,-128450409,642864579,839405450,1959332845,158305549,1929671400,976904,-335939870,780742150,1509427836,-2144943267,1946157182,-152353533,-2144419003,269120782,1929365224,645934666,1357843061,175677742,19842603,1477080582,2016840494,1015033354,774272256,989822080,-953284235,151677190,639625984,1946173315,133637657,309657601,1762051886,-352321014,9889801,-116528136,-1336931605,-385895421,-128450557,-1960421437,-1993472897,638217534,-2010774136,776995173,638221473,1476543881,175440188,72714534,105744678,37509867,-1993996683,1357579349,-395049156,-462157764,108332604,72714278,71057131,-1590816907,641731190,637814153,-351904372,1971922475,1301030404,-165261306,1946223175,-352014332,1207313929,91488770,1105724080,-165259263,1947206215]},{"sector":15,"length":512,"data":[17885187,-970013857,738310,126559824,410370059,1465013072,1762051886,-1275066102,-402411265,1516240731,1206605915,1946419369,113716754,2665,772167400,174669443,-1456442103,309596160,1762051886,-402653174,-2094136382,151677246,11082101,773288968,174655175,-790102016,1048784388,1963526761,-385619198,11075717,772961408,174655175,1189609472,1048784385,1963526761,1073785198,-953281932,682246,17557504,1765704494,1467287818,1946222761,113716757,2665,-402205720,-2094135466,151677246,11091317,772961282,174655175,-1175977984,1048784390,1963526761,8431910,-953281932,682246,103540736,1765704494,259328266,1948254377,113716746,2665,771886568,189021824,772764929,174669443,772240640,174655175,-1017642999,-1976674736,1958742532,1966750746,2088775181,108331009,312878,182979051,1174500104,1591733062,1381417816,-1976643446,133687300,-1073083278,216534132,76033536,1178993131,1583016171,1937784003,1918974988,2004499525,-337697727,1460032317,187973261,1946483328,792628484,356003339,1364203380,-1274605998,-1144878491,96075775,-17920,1499079117,1569402456,1166945793,742605571,1607935616,1354980103,1963884590,-2144436214,-49646298,1006930478,1007318059,772240685,175443584,48776706,1354979328,861295185,1406284745,168069678,-398297920,963772700,-393485262,-774774063,1912667624,-1948611796,-773664319,15788241,-489611406,-404172335]}],[{"sector":1,"length":512,"data":[51802624,-389540909,225575134,-779889405,13953024,-347733134,-1192666181,-164734208,34239750,-772339084,-1031548169,13730561,108497702,1006930470,-1341688576,-369118207,642121886,3933322,776364148,175441654,639530368,1912818747,637957942,1912689723,1278944814,1915254535,1413162554,-350193915,1278944818,2132311043,1413162502,638614529,2131184699,639400970,2131055675,-2095781118,-922875450,-953240203,101345542,-1274957824,-1338119169,613033473,162805483,54584566,76162800,1278944838,637957379,1946244155,96895970,-311047938,1762051886,-1342175478,-335563775,113716747,592489,-4979792,1593614056,-1017620134,116797084,1963068021,-1648124670,-1007156624,809288697,960235634,808191095,-1007041544,1465013072,109021990,168135206,-1274776128,1011674111,1195341059,-1274705370,1088747017,-1977157629,-167398395,-134004508,1191545382,764094023,1929392872,63406866,-243939074,1762051886,-1275066358,638905343,-1325439606,361440770,-953283605,151677190,-1325419520,-65673213,1482381919,1381322947,771928662,-1092090742,-398691835,-164692521,134903046,1027345780,-2144985227,1962934654,773057393,175441654,1007580176,638219578,32384,-347710347,1178216028,169702656,1179808960,638839621,1962952250,-1976678843,975586564,980746310,-1477753530,1963390510,259276810,38270758,125042720,8290342,639792128,1050615,977016948,-2144990859,1962934398,1007610637,638022912]},{"sector":2,"length":512,"data":[973110912,-336002188,914959878,1593313912,-1017619110,1448235344,-1427614125,-953262592,730886,113716736,2857,721864494,-402653173,410124461,187147054,443865866,1912643816,698560110,1960512011,9693197,-1557241486,-620098773,-1959896715,-2096429794,578028283,187146542,1198908426,-1590769526,-469103831,-393593483,722897710,33260299,-377093515,-1959912981,772482838,168503713,-1977584156,731983560,1977879051,-2081912298,74671354,124568193,-4956581,-790100048,1527835642,-1325419426,-87693309,1762051886,1509951754,-1916577703,772474166,1962884227,504359682,521031762,-1959264072,1478610390,1371742042,784937810,-1073085302,-2144453516,721982,-75493516,1006925057,1009808442,-349408210,1949121548,1949252646,1949187106,-35198946,11804274,703121,-770972937,-1056763531,1183911538,-661996053,1174793208,-117314568,1499120011,1381060803,-396995754,-164692091,1577128260,31982453,113716737,2855,688310062,771751947,187369159,-953286656,732422,113651200,-1291777276,-9443327,-1557242510,-620098777,1659395956,777024255,168503715,-1286441765,-11278334,-1557249678,-620098773,-164743563,34239494,-1959904395,-2146800842,1965883260,-12270032,113716782,2676,1947107374,-1959919094,772472334,184559243,37129006,-154081013,1929318632,765668959,1977289227,664874583,1977879051,116797007,1946225268,1997290504,839021891,116797120,1946421877,1946958860]},{"sector":3,"length":512,"data":[1913390088,1998076975,785418795,168503713,-1977518620,731983600,1977879051,784894487,168504737,-1978829340,-1268884504,-402083585,283900239,-4956581,1156055984,113716985,592489,67552814,1499070475,1448133464,1174702638,-126500854,-29062610,1882988556,1631328628,1832656244,776873077,217990282,1953512480,1952529414,773057290,175443584,772205316,175378048,1153838593,1482555646,1448300739,1981713198,675250186,-466460811,-773322870,1011708929,-33262296,1011184324,-33131223,1950184140,1965177891,76033548,-1947712698,-349343232,40888335,-2010249357,-1975302652,76033543,-991214778,772048942,83142,-1962932282,1676166899,914959873,283839083,2050394926,80096778,113716736,592489,78708660,1961384798,1354979576,-1959897517,-1979025890,1965177863,803750689,772960768,83142,-398003317,-1993473758,-351638730,915090960,-970061190,-953286652,151677190,-1325419520,-396665335,-1017579469,-402158768,611582240,225780284,1965227136,76033566,-347913402,30402792,-2010249357,-1975302652,76033543,-706002106,772140025,-134216506,1464910680,1049308758,-1976694154,1958742532,6285331,-970054539,17515526,80096862,1072389888,80096862,-148480256,1962934535,113716786,133737,1448618475,168069678,-400657216,192151597,1929473256,1195788034,787082054,772435874,1191183558,1799260462,1482645002,1946288297,-4960247,-1930951248,1405311223,958303569,637195]},{"sector":4,"length":512,"data":[1946630702,-119389436,-1017423551,-1976675760,1958742532,19130424,-2094125966,1949958524,133637646,510918672,24936494,202863872,1918975008,2004499473,-1973408755,-1325419312,-146937850,-953284629,151677190,-1017619968,2287788,1407719540,773223680,175441654,787313696,175441654,1309242433,-336001301,-1018234879,1364444152,762580284,695468092,628361788,41779238,857633282,1569335003,79921923,3768358,-919401100,1124698662,1946237478,1022943748,-1017423603,-970043053,537554694,1965457454,540860170,154941044,742142580,540815732,1015024757,-1341688544,-1069922784,-2144985365,1912668797,650720023,184765834,-1156877111,641925123,125043002,540866786,784554841,772435874,175441654,772175105,175443584,-339723744,2116980199,1960655626,1966029850,777058579,-385923190,91421144,-773323638,250304761,1007414264,772175151,175443584,516159552,-2094116010,684606,508569461,1431786065,-1896467706,1660991710,-611573299,1560795915,525949535,774468696,175126153,1914603822,915090954,-1909585296,-2096467426,276037692,141689914,1996571706,99350787,-336902586,526277624,-1064558909,-1866540914,29932289,512476046,102629378,26263071,26019526,3976192,1944595828,1009086979,-972458660,101638,31274633,158677564,26019526,-583628544,1965964289,-1928935720,-773062911,-1093735508,-507575920,4031233,113659764,-1107230158,-1985216031,1006775862,-399543296,661783338]},{"sector":5,"length":512,"data":[175463484,1962949760,805750505,977010690,1015024245,-958696192,143366,-764072388,36767430,-1395922175,1048627435,1946223152,772734754,775850754,-583628030,3976193,-471330444,1007120898,-1442286546,-1398083605,-2132087894,16921150,1048591221,1963000368,-1172655052,567083573,-507883852,-18175,561127885,38405878,-352160496,-1956859880,1325542974,772210602,805750274,113639426,-352320975,-1925283691,158662401,-1107193665,837288323,826179586,192151810,-1107172929,568852872,-1174344958,12059024,1914817853,31433477,-420933397,582622977,45475843,-385744407,-1128660519,1751298,-551646381,-851463167,-344827103,45891201,-646620595,84067489,3997727,627012368,78774240,1364386003,-796175536,11585843,31399563,567100084,1482378866,-997828007,378267857,-802487616,8452737,-226086797,-1096686895,1958742786,15368454,-1982856446,-2096971754,-355266622,50470333,2010332117,46833933,46925323,47318539,-1172369941,619184894,24176898,1946241257,-10622717,184733857,1026127040,-277544704,1397772626,855703738,-1962823479,-1274945762,1914817858,1498962903,-1073338022,-1036090622,-881524734,1048828723,1946157762,1186602817,31057923,-1273035234,45464074,-1212276275,-8617982,-1394183168,477245484,208800316,120348452,275909180,208867388,-472783919,-472783919,-538191862,234847360,-578306187,46141067,-1957216332,503439166,-768353394,-840987821,1595890465]},{"sector":6,"length":512,"data":[-1427569037,11004160,46284419,-1589218304,1364329172,-796175536,11585843,31399563,567100084,1482415986,-1128637863,45922818,-1275067207,512447295,567083487,-352160933,-1136751762,46047490,-1064385789,-13827802,1963115022,-1170426664,-919404063,1332879821,-1962789981,-1274888178,1049319232,-1910635981,1406284763,567140235,1918836571,1975597874,1396618255,36904587,594682317,-1021370533,-1957478732,-855493858,1528066593,-507887180,1914817793,1790582538,14280707,650323691,48963212,-384399066,47874,567105972,503506878,-1912485702,56533978,-402432326,522125491,1031848735,1191408640,-1431504661,-92946422,1017969859,-402295795,-160169974,-133350322,-1007091339,24444988,1947024579,1948269819,1946762487,1949056243,1950039279,1948990699,1946828007,-1019396893,3976272,-341179532,-1017599240,508581406,1048585735,1358888960,11540340,567108532,443942,-1993933056,-1945971146,-660396328,-1960421374,-1912416202,915089118,1015218902,974222336,973632004,58130756,-2096698375,-353697082,526276856,285393859,983218,1342578352,1448235347,-1157985449,-628227640,93045390,-1962779253,1300956277,141920774,-1962322550,-1243084163,1516134372,123231065,3261215,1769650,-80,-1308621569,-1342175232,-1,11665412,-5242872,11534344,-5242872,16777215,0,168624128,0,335546880,1092923904,1397600256,1397703712,1919243808,1852795251,673199648]},{"sector":7,"length":512,"data":[1866672451,1769109872,544499815,825768241,960049453,1766662196,1936683619,544499311,1886547779,1667845152,1702063717,1632444516,1769104756,757099617,1869762592,1953654128,1718558841,1667845408,1869836146,1092645990,1914727532,1952999273,1701978227,1987208563,1965057125,-2113883648,775073792,1480928820,1110310981,806473,5308594,33657008,1325445632,31567872,-1308622079,-1342143488,-1308622587,-1342167552,11,268435456,186646912,0,-2079326208,73728,65535,16711680,131072,1,16711680,196608,1,16711680,262144,1,16711680,327680,1,16711680,393216,1,16711680,458752,1,16711680,524288,1,184483840,693,47972354,131073,0,48693250,65537,655360,1,16711680,786432,1,16711680,19660800,1,16711680,59965440,20644097,-1509712638,61800707,16908288,-1157383168,33619971,63176705,955,-872415232,17021699,14565167,27656370,-80,2384,23592960,33948010,1112670750,-1064507253,234885125,303903,787971,244039822,-108331002,-34108593,-1202674445,-883949516,-661863540,-1898410424,1032128,-1342172999,1202648063,-1014237301,-1077899704,78708751,-789068149,-628299565,74698795,-768878452,-268181293,-947135858,-388771593,-802438516,-1064565645,-522989013,-1030817789]},{"sector":8,"length":512,"pattern":0,"data":[1322289836,1187548077,-31145334,91598908,-341118036,1974615046,-1968901267,1946265794,20102833,512433934,872153092,-930370094,-1031072797,-1064385789,-2080863315,292880383,-501415642,16417267,-2129234704,-351272766,1086360796,-276578162,486614544,-339702200,-1950118942,-1962932162,50334262,33948144,1060096,-1064380274,-100663109,-410265970,784698363,1085550591,-1191181637,-896794602,482007694,-1205744383,567102719,1801675088,1713398885,543517801,1663071081,1970434671,750704,161352026,166398424,168495608,408226361,461380096,7243]},{"sector":9,"length":512,"pattern":0,"data":[14309965,37,16318496,76546047,128,72876048,30,1]},{"sector":10,"length":512,"data":[0,0,0,0,-1192457387,803733672,-2141825253,101332798,1048577909,1947601464,1354771219,1342470840,-2096960792,28837060,47966464,309462727,1187451242,-956301064,130630,-1207847191,-1957691345,-472777122,-16353653,943646768,-1996176253,-1072956858,-661966988,-1962932282,-472777122,-16353653,-129594576,-1174911233,-369688496,-2104627061,-397344936,-998034006,-94467324,-349239354,-27358430,1988879313,-1959723258,1191180358,5290488,-259266057,-10976627,897640528,-955988861,64582,28842731,-1070903296,38922320,721732739,38005184,88737478,-62455809,-771858805,108956643,-1377291777,46433077,1929135673,17754371,-771858805,108956643,1979920779,792494332,1149948789,1357130241,-2095951384,-467008828,1946174269,-385649122,1060962446,1033860096,-1401683903,1946174013,9693443,88803014,-962401281,347654,113679339,-335608497,-27358316,1988879313,-1959752954,1082850398,1357130242,-2095970840,1111229124,179839349,1586188288,-1948003842,9111158,100419075,-397410301,-998042646,88646404,-956344599,-16430074,-956346647,-16429818,-939571479,-65900026,-12719818,-11485141,-402366410,-998047369,-13768444,1946176573,5127572,1413338484,1037595648,57999447,-1191216151,-1957690296,-472777122,-1962510709,-62520576,803754048,79987476,1065408651,-1195805440,-1957691382,-472777122,-1962510709,-62520576,1810387008,79987475,-385530205]},{"sector":11,"length":512,"data":[1191182039,71732222,2113816121,-27358427,1988879313,-2145875194,58011455,-2080465687,1946351742,-30938877,-11485141,-385589706,2122579454,175375096,-11485141,-385588682,1048837614,1962870086,1275512327,116129541,88475335,1048772610,1979647304,1208403718,-2147458043,346942,1048595829,1962935628,267565126,1485213008,417878271,79987477,16664263,-1206392064,1448087538,-2096588312,-1073019708,113640821,-64181,1586232902,-1948003842,184891575,-2133035530,346942,113640821,-2130770612,346942,1048582004,1962935628,1295941639,158597125,-1202667477,1525220452,1329496317,393478149,89013888,-955747328,-1626476538,-954340597,906883078,-2146047220,347710,113707124,912920048,113706731,187174384,1353205389,-10975603,173205584,1593685481,1575324511,-326412861,-402652488,2122520610,561316102,16664263,-16520448,2122579526,813502718,-771858805,414711779,493807621,-352140157,75400166,-15764480,1354237046,1508397061,79987485,922684139,1307051290,46433053,-1017256565,-1192457387,-806879218,-967420137,-1191185338,-11532968,-907541386,79987483,200427145,-400001600,-11530834,-1866988426,-222801916,-35106801,147096371,-1202667477,-397406222,-997982357,112644,-1207877911,-11532965,-1914173834,79987483,201213577,-399673920,-11530894,-1866987914,-222801916,-1041739761,147096371,-1202667477,-397406222,-997982417,-227082492,-2095419416,-1175780668,1183432747]},{"sector":12,"length":512,"data":[-96040452,-893301,259523151,-1947050357,-1962410233,705137368,-16127004,-773262730,46433052,1950412939,-27358343,2013417471,-27358449,134154123,126539915,166454314,-385976577,-998040404,1090030338,-147118988,1187386996,1448542452,-231681,1589181046,1374179333,180650780,33179267,16537219,1996460779,74907398,1342481592,1343222456,-2093801496,-1070921532,267565136,-24254384,-16464765,-840371594,46433049,-369199361,1586233170,38797310,1586171768,-16282626,-1965520121,-337368569,-25755895,-2095303704,-125107516,-2144766656,1946219646,1354771213,1342486200,-2080487704,1996424388,428271858,-16595837,2112421494,46433049,166445099,-16484609,2145977974,-1956684033,1438866917,-1070338933,1461076456,108432214,-2096464245,1946160254,205949716,1178322435,-1962246396,-956101562,2114471483,-339727574,1204259635,-150961479,1980105705,1346387986,-146356597,1946551273,1346387986,233838335,184861827,-1948879424,1325337670,1975520012,-18224,-1017290914,-1192457387,-605552612,-263797227,91273471,74907472,-2095458328,1183384772,1975520228,196929573,74907472,1342476472,1343222456,-2093872152,-1070921532,267565136,-42342320,-385563517,1941439483,1996443653,429844486,-1996176253,-1072955834,-2081935755,1996443659,76593158,267565136,835905616,721994883,-222801728,1088966671,79987709,-385976577,-998041472,62515458,-150961480,1342523438,-2094164504,1956840132,1958742802]},{"sector":13,"length":512,"data":[8566805,88616695,763422800,-1560099709,-1073016202,-1070917515,80918608,-50468784,-16464765,1038673014,46433048,-1070877973,-1981397367,1183443014,-96040460,1358579341,721766561,-11474874,-2101812106,-395380992,309593603,55699536,17351811,1183705158,1218531572,-431609083,-25755824,-150961480,100918894,-397405578,-998046929,-431619832,15236739,2122526837,712311014,15761024,-1070920332,79083600,-58595248,-16464765,-401443786,-998036268,1983315714,751495186,-385694589,1996488557,-394854426,-2096221208,1183384772,-163133454,65732608,-1946794241,1178202694,-1206223370,-11534335,1996486262,-159973402,-387418369,-997982699,1975519754,-230257701,1962296889,1354771217,1224099467,232581200,-1996176253,1996486214,-394854410,309606143,-2096938776,1183385284,-159973400,-1673473,-401443274,-998046931,-431585018,15236739,-1073019019,-1506443,-96039426,88645968,1357399595,-1192986881,1861681282,1946551272,1357402130,147096322,-1914157567,-1588530106,1177224520,1996443878,8567038,65433335,1343387142,-2097008920,1174472900,-2000672026,1183377990,112878,-1981004151,1183445574,-62486024,736511627,-1957627834,1177282630,1239961842,79987469,-637303,1342522934,-2096284696,1183384772,1996443894,-428408840,-887041,854124662,180651005,1903476746,15746758,-1207666945,-397408906,-998041388,-227082492,-11485141,-401443786,-998047071,108461830,1342537912,-2095532056]},{"sector":14,"length":512,"data":[1996424388,1354771448,309737215,-2096986904,-1967651132,-1645719547,46433048,-887041,922740854,786961012,113541890,-1554807,1996486774,1983315942,35383314,-1996045181,-135666106,-431584259,1357661739,736642699,-397345722,-998044516,-163149564,88487679,210692176,-1996176253,-11471290,1996483702,-59310106,-387418369,-997983099,1958742538,-263797151,74907392,1342542520,-2095568920,1996424388,1354771452,309606143,-2097023768,1996424900,94156806,403368016,-16464765,-1070863242,1983315792,30926866,-1207516029,-397408858,-998041616,-59310334,-1542401,-401443786,-998047359,-398030586,-370379009,1191182160,-230257668,2130462265,-62470377,1191116801,-398029838,2096252473,-230258425,-1161530,-1946663169,1178201158,-954564872,129094,-1947449601,1178199622,-1962246932,1183443014,-364460308,-293699329,-385649408,2122382950,57999594,-956408343,-1593774010,1178142024,956661224,243066438,1342497464,1342549688,-2095620120,1996424388,95598596,391309392,-1962621821,1346955334,-11485141,-401443786,-998047459,108461830,1342553272,-2095631384,1183515844,726681830,922702016,-18345354,113541888,1342555832,-2095638552,-85392700,1575324668,-326412861,-402652488,-950660714,65094,-16742423,-2135423370,1183535104,1346387972,309466879,184992899,-2122550080,-65899970,-1961528010,1077937222,749922384,-1962752893,73305072,82118,89079424,-1205832704,-1957689906,1077937222]},{"sector":15,"length":512,"data":[26994768,184861827,-1962117696,1204159582,1586167810,-1962410230,1077937222,745990224,184730755,-2146994752,347966,1586173045,175540996,76219647,1182861193,-16743932,1183579718,139394824,57982987,-1946194711,-1956708794,1438866917,-1070338933,-1961825816,1178142790,721714950,-1960383552,1177224774,8567048,508619255,-1962641665,141490113,503596547,175958096,-1962228605,1177224774,1438866696,-1070338933,-2146390552,346686,1183534196,105261832,2113929789,8566849,50753271,-397409210,-998047682,97499138,368240720,-1207778173,1861681282,71697160,2418768,-352140157,105286429,-1190770945,-369688446,1342457347,-2097148440,1183515332,105265416,-1017257090,871140181,273213632,88948352,-1961921536,939459678,1342559416,-2095733784,1183515844,1346387972,1342561208,-2095737880,-1017314108,-1192457387,401080326,106859280,-1979300097,1357130247,-2096619032,1183318724,73305084,-1979431169,1374497295,-386251127,-998045686,-28932094,1962559034,-62486003,1996375608,112655,2122321387,-1116405506,65781803,-1946157128,1438866917,-1070338933,-351288856,71761667,-1979425141,-151049697,134995335,1183575925,1438866692,45673611,262203392,74907478,-2080386840,1183384260,108461828,-2080389912,1458242244,-2147203329,74776639,1709948971,-1962522881,529138782,-2013855958,1946684381,74907415,-2080400152,1183384260,-2133292034,24379455,71731528,-1979294069,-151049697,134995335]}]],[[{"sector":1,"length":512,"data":[1996429172,-8919034,-1996307325,-661914042,1946173312,1183401985,73304838,-1979287925,1946630148,705137307,-1965126684,736963087,-443851071,-1957313699,309484,-15791640,988284022,46433279,-16497015,786957942,46433279,1586191083,71761668,1962950528,-373282043,1191116932,73304838,-14016630,199067638,-15240184,48759926,46433279,-1946270071,4161752,-1991769740,1586168902,706710022,-578291969,393480203,-402229505,-997982499,-28931838,1065408651,1208054784,-1962522999,126486110,-397351894,-998046046,73304834,-316010614,-62486191,-2096721432,1178206916,-385649156,1586233212,705137156,106859492,-316010614,-443825877,-1957313699,440556,-15838744,-1712847754,46433065,1208239619,-939637111,129606,1325336299,-96010242,83525251,1586169983,775913726,1555623029,1996443648,731703300,-1996176253,-1072956346,800591989,1996443648,730392580,-1996176253,1586232390,775913726,2122519157,125042940,1178190731,-1207601156,49020927,-443826133,-1957313699,19052780,-15869464,719848566,46433030,-402229505,-998046175,74907394,-13597043,682420304,-16464765,-2037578122,-397345058,-998037346,814124292,-186101505,46433024,-1920842103,1358880390,-2097092888,1183384260,-2106130560,-13597043,22014032,-16464765,-2037546890,-397345058,-998047423,-561607420,1183666430,1474842800,79987496,1350846093,1342177720,-13597043,732227664,184992899,-15436608,922682486]},{"sector":2,"length":512,"data":[-541588396,-1377284091,113541906,-1929345303,-397365178,-998047542,780568834,-1572434433,-2106130608,-2094525976,-1098709820,1946222382,-2139685050,-394103041,-998047442,1958742788,1547108120,108461828,-13597043,98941008,308471888,-351746941,-561607408,-2037559042,-397344976,-998047085,-1337553660,-561607344,-1008185090,-1928467673,1358880390,-13597043,41281616,-1929067389,-397376442,-998036736,1958742786,1575324552,-326412861,-402651464,1996426406,669968388,-1996307325,1174666822,1183401988,-1961366532,126549086,1023035016,1008039004,1007776826,-15895505,1183579214,-28377090,-545931253,1090274955,-1017256565,871140181,207677632,1342193592,-402360577,-998037076,1975520004,2799633,74907472,-2094425112,-1073019708,-4717196,721611775,1438866880,45673611,204269568,1342189240,-402229505,-998037128,1975520004,2799671,108461904,-2094438424,1183384772,1958743038,74907427,-2094575640,1295844036,-1961527552,1204223582,1586179585,38258430,-27358422,214982,-1017256565,-1192457387,-672661484,1996445195,656336900,50513027,1183384646,108462068,-2094592024,1174602436,-297367290,1342189240,-402360577,-998037202,-230258428,108380171,-1980479861,783872582,1996443648,689235974,-1996176253,-1072960442,1183516277,-330921490,1342188216,-402229505,-998037296,-263812860,58048523,-1962893591,1178201158,1347646448,1358579341,-2094641688,1183515844,105262064,-1996208637,283899974,-1947181429]},{"sector":3,"length":512,"data":[76216438,1191118728,-263782408,972179083,-395118522,-957325685,1183514631,-330945552,-1947318783,1183445062,-96039444,108461904,-2094676504,716702916,1996443648,677308422,-1996176253,-1072959418,1177235316,-230292500,-336050551,-262239472,-1963428213,-16283644,1191180358,-196703248,1928873529,-262239256,-1962932282,1183445062,105286638,1183531243,-263833108,1183520371,105262064,-1996208637,1183578182,-1206588430,1491861503,737166987,1174662214,-129594894,972310155,-411830202,-1947181429,76216438,1183516552,1183400176,4176118,-159973552,-2094541848,1183384772,1975520240,3061929,108461904,-2094536216,1183384772,-296842256,1975597897,-958887163,-1070923769,1575324510,-326412861,1206435891,108461834,72890111,-16484609,-1207675338,-397408779,-998043744,1262387210,192151557,-16353537,1206387830,-16126990,1996424822,-198121468,-1207647101,-397408769,-998043784,-1866244862,-1523661,792625929,159121418,956793505,2081042182,125870341,512428779,-472839633,121014155,-1957326653,309484,1460262376,105840470,-2096857461,1946158718,140413740,2013417471,140413711,134154123,126539915,166454314,-402098433,-998043820,-2081387774,91553790,1963654787,378386,1979711107,75380997,28854132,-2092635392,-1217131010,1946812035,-2000254198,1325352709,-5707002,-947190154,621037099,137166855,1356396288,-2096952344,-259324732,2144342,-396943792,-998046898,704512776,2062091894]},{"sector":4,"length":512,"data":[1589652479,1575324511,-326412861,938000435,142016265,-1207535873,-11534335,1508377718,147096333,1963345465,142016272,1342670008,-2094719000,1967129796,-18427,-1070923029,-1957313699,-1760130068,127246599,-1017256565,-1947432107,-2002582458,105286407,-1962440029,-1834808762,138840839,-955805533,495110,-1794717952,-956301305,497414,-1811495424,-443875321,-1957313699,509040364,-1912135940,906463774,126629515,906264203,126750347,1241929355,1017916899,-1435863539,1979179082,-1070380766,914962090,-2026502260,906464782,126750251,-1794244298,377697799,-150993001,912976848,126750347,-1794244298,377697799,1375733655,-2011788490,244004359,-1959393392,-1274572258,-1960719041,-1901906232,1525844743,-1569341429,1963228731,204663721,113653249,-335607916,1022653592,1016493066,1368159497,1177274251,468228,721422521,1992965064,734694146,-215961391,1894341034,1583292415,-1017256565,-1947432107,-469105594,1631325557,2050754162,539755127,-1962516737,12803557,-1192457387,-538443762,-1589739513,494206983,15877831,-129579208,1183650428,1183666418,1944604914,79987492,127993542,-1875443713,-1908998382,74907410,-1946179096,1438866917,45673611,127985664,74877782,76161771,-397351894,-998047627,1958742786,46564101,76156651,-397351894,-997982314,1174702082,1962949760,71732185,1575324510,-326412861,-402651976,-346683550,-62485969,-397351894,-998047687,1958742786,71729926,-1961235710]},{"sector":5,"length":512,"data":[216729206,-1408999797,74778424,384549771,1962949760,71761903,-1979425141,-62486521,-982138870,-1956724693,1438866917,683207819,118810624,185050785,1963436038,-431569117,1183671040,1183666420,1183666392,-269987610,113541923,-1545582965,1183516582,128492538,-1962432863,-1995986922,1451883590,-60898050,4161574,-2144991371,1946157439,71731737,1996961830,1194862091,-1207602687,149684223,50087555,-1070868501,-1017256565,-1192457387,-1545076734,105286406,-1946270071,1178141766,-15174402,1586232910,705137406,1793609956,46433279,-478822389,-1946269953,1177224774,1946265854,-18427,-1070923029,-1017256565,-1947432107,1178272838,-1962705146,-443873722,-1957313699,71732204,2080785979,105286403,-1017256565,1458342741,1317740119,-1003625716,1992624254,-661849084,1963607611,1928805124,-202780407,-1542098011,-947186965,-1053047253,-1047793805,66585416,-1527513616,1583292412,-1017256565,1475119957,75416828,-1979169142,1317734502,-471215862,1940648706,-1956664831,12803557,-1192457387,-605552634,-2091493627,2080507518,108954374,-1207599600,1475084287,1187444267,1586168062,71761668,-1952970870,1962871800,-578423273,91488523,-350206579,-1949857022,-578423048,175472651,16678528,-963917452,-8183317,-2096791751,65745135,962064259,-461502850,-150583669,-1949891602,-28915984,1588587519,1575324511,-1957326653,509040364,108461831,-2095010840,-1958739260,74877912,-880038660,-234455413,-1913227858]},{"sector":6,"length":512,"data":[1583349572,-1017256565,1458342741,-16310697,-2115500426,46433056,-1948742848,-1392769930,158646282,2123090827,1957622278,-12284430,-443851169,-1957313699,-61384980,-1962641781,-1095039362,629844999,-528033977,1977629399,1977879049,-18192,-469104917,-1070336140,-443851169,-1957313699,8698092,-955983384,64582,-8616307,-1912715639,1358920838,-402229505,-998047555,1975520004,-25755888,-402360577,-998047571,1958742788,-61964284,-25755896,-2095058968,1174471364,-25755650,-402229505,-998047268,1975520004,-25755888,-402360577,-998047284,1958742788,-61964284,-25755900,-2095071256,1174471364,-25755650,-402229505,-998047473,1975520004,-25755888,-402360577,-998047489,1958742788,-61964284,-25755902,-2095083544,1174471364,-25755650,-402229505,-998047617,1975520004,-25755888,-402360577,-998047633,1958742788,-61964284,2089192705,1996443903,519890952,-1946401141,1438866917,45673611,66906112,-1430759849,1996443655,-24713212,-1962621821,2088781552,57999615,-16484725,1996424310,516483078,-1962621821,73280478,-972652917,1996423169,521332742,-1962752893,33129416,1581301787,1575324511,-326412861,-402651976,1448543146,1308915339,1342680248,-947126645,770199616,79987710,1015083147,-1192659712,1464862638,-2080498712,-661977916,1962950528,775782405,-24444300,108461911,-2095161880,1996424388,515041286,-1962752893,33129416,1581301787,1575324511,-326412861,-402651976,1448543050]},{"sector":7,"length":512,"data":[1308915339,1342681784,-1962851187,-840411144,79987709,1015083147,-1192659712,1464862646,-2080523288,-259324732,108461911,-2095183384,-561314620,1577312043,509446,-402229505,-998039980,-2084009214,-1071971847,-1956684224,1438866917,-1070338933,-1962742296,130418270,108461824,-402360577,-997982325,1958742788,108461853,-2095177752,1174471364,108461830,-402360577,-997982449,-18428,-1070923029,-1957313699,309484,1459793384,129546326,74907472,-2080557080,-259324732,1946172544,21269766,-1962654071,-1202846602,-1924134982,-125107900,-48830377,-1962621821,3965168,1996482933,108461828,-2095227416,-544537404,50617899,130418270,108461824,-2095208472,-930413884,453114243,1600012480,-1017256565,567095476,41091644,-1665195827,37128963,-2114508032,1913651454,268484099,-2116579590,-82534716,521539699,855767016,1994936512,1291827204,-461168179,646526718,-1992947260,-1962295258,-754667066,-1556723488,-150795842,145033,-567557236,1253366775,-1942609459,369767710,-926942201,346077453,-1070346453,521579251,369114088,59959327,855769576,1446445037,1412890378,1379335946,-427759606,14870608,-1912365896,243928,-1039743178,1343911433,-402555928,-4717571,385830912,817105346,933437901,889239562,512303565,109840931,521013797,-1171980104,567089556,243998486,786631906,171247246,741772070,-469318400,869960716,520042203,91426016,1307123478,113587713,-628355864,905970619]},{"sector":8,"length":512,"data":[216014591,109977366,-1960441291,-486527986,868322870,1031808767,-1188269056,381550604,1957098250,2147465483,-1359822797,-437577355,520560134,1052768139,-1852265462,1958805164,-492156927,-1155590409,-1484783612,-1195439554,567100416,-1024062862,-2147126144,1074413199,-1092126389,-323023636,10676236,-1089672002,-1964503828,-1957313792,233750252,-401740097,-323092355,216973068,-352291608,-326413053,-1089671490,1726483694,216972800,-401805633,-1175977876,1958742784,75399947,-955943680,16712774,-1157623879,-2013921275,1946225214,-851528700,-220052703,-1962932248,1286865990,243999181,132320482,-16776517,504160286,170071749,-853213000,1048583969,1946159712,1637883405,1645659402,-853167094,1002643233,1326085111,-485651633,-338558986,-147078158,-276623757,184912644,-227278267,-286581249,-1957363517,16562412,41674832,174472835,-16485376,-1207278058,-397410049,-443874711,45663069,-27531008,735873881,990540504,1913284638,-1864956,-373279775,861339205,4372982,-1392712654,-69017550,1951790208,-5314547,1342177720,-1207816984,-1017249791,174720655,939524794,1946826518,889622057,109979146,109838380,-1070396838,-2147436135,-1359806669,1207661998,1480493383,-18166,-772296974,29348235,8502784,171253390,1948269740,1946762491,1947024631,1958742639,-1404156053,-395042756,-462157508,1551109436,1484046346,611590716,57957436,870640450,1017921993,1023046748,50623522,-1949045807]},{"sector":9,"length":512,"data":[334090689,1963043025,1308748746,1947024556,1958742571,1948400679,1952201914,-320126461,-1404974797,-93037508,74719804,-605302525,-372129397,27840787,-1746152843,1049173782,-687666606,65524039,-18710313,-997465557,-1962257245,385549272,1065956871,918897475,-1431565736,-92946422,906002878,171253390,-1070398485,540847274,154991476,222099316,2145977205,1975519744,-1871058173,1128237366,1017925187,1021015072,1020752905,174224397,1012823232,1009218594,-1442614180,-919345941,1547480129,574421620,1555039860,-773084429,-372155216,108243699,-341171536,1017925317,170816525,1009415360,1018655778,-1442614180,-919343893,1547480129,574421620,1555039860,-638866701,-372155216,-1770804493,-341171536,-1430244403,130490134,654245888,-1957361046,512644588,-919401931,-376716917,-1958086261,184560694,-1911524106,1048585926,1946157056,1169093126,1174042030,-31178601,-439222901,521585923,638807,1593869800,-41169013,780793859,119409238,-164372850,-2129403063,1950563132,8292613,-1431550651,-92946422,1317662178,1562318336,-1017256565,1458342741,-1962467753,-155319210,-1036276468,-1774186380,865537140,-17984,-141840654,1603726315,1575324510,1426064066,-11015029,-873986954,1958743039,-91516396,-4603853,-139529473,45828561,-851397632,-443850975,180829,100913291,896666052,163448377,251995507,-657371136,-388824143,512481676,-886371787,-1014054653,1253365899,1918378445,1223697424]},{"sector":10,"length":512,"data":[-1794523485,163851915,163845633,-372798525,326302609,-443826125,-126631075,1632336,1575324504,-402164797,-4718578,-443835905,-466435235,-1023409688,168442530,-2145159708,51001150,574360946,540806515,95421810,1016072171,-1342015981,174897939,799250647,-997539062,-1957300245,283935724,1988843095,-16636,-2096741130,-1746336907,105182720,-385649600,-397016946,-998045910,-1946645758,-2031386146,-754732790,-775713797,-774372381,713526243,-62486261,73197654,-1979530109,1352140612,-2096075288,-1073020220,2122535804,1349779708,1342865592,1358055053,-2095617560,1183646916,-28931596,2139150475,276061438,1342866104,1358055053,-2095641112,65733828,-1191293185,-11534326,1996488310,397601020,-1928936317,-397348282,-998040970,1958742786,-16637,410822,1600046987,-1017256565,-2081649835,1448543468,722110142,-1877611521,-2096741130,-397014156,-998046086,24395778,147227463,194917945,-947132813,-443850914,-1957313699,49054700,261023830,-166989685,-11136908,1996424822,70707204,-351878013,-1070886909,1575324510,-1957326653,149717996,1988843095,176065284,-150583669,1183385702,-62486018,425603,2122516084,108331016,199868459,1173786625,1702169606,-343810165,61934214,-1014236205,-670833711,-2013862959,1963002662,-62458036,544539135,1459386111,-1744353910,308865104,-1996045181,-12715962,733836543,108459986,-1878997527,2013416959,-1962636789,-2012872931,-1878201593,-1744532905]},{"sector":11,"length":512,"data":[28239952,-167459709,1965033029,1325352595,105248508,-1958710008,-2031386145,-754732790,-775713797,-774372381,646444771,1551106315,1308567019,-1978959870,-14841084,-351827963,-1973972980,-397371388,-998047384,105248260,1179874592,-2080616705,1946221694,41780041,-1949338624,1177223749,600382460,-62520383,1358579337,-399114410,-998041478,-96040186,-268237567,704398889,-873790907,1459386111,-1744353910,296282192,-1996045181,-12715962,688092415,1183579206,-62510082,-1862322967,-443850914,-1957313699,149717996,-1900128681,105286922,1459373705,-2096902168,-125107516,1342588557,1443133183,-2096805912,1183385284,-396929288,-998046664,-129594620,-443850914,-1957313699,49054700,74877782,-2043820405,-754732790,-775386120,-775879712,187041248,-151107959,1954743876,105182726,-1207471040,-1997930497,1157009408,108265990,537283712,1283517931,1586168070,-81297154,201737462,-561307019,176614273,-70057039,-472792181,-472786941,187074550,1443460353,-2097031192,99287748,-1996209013,-27358460,-16615425,1149895796,-397371385,-998043672,38045958,91537419,1979711293,41714457,-1341819904,-1878791392,1141379248,38061830,2129199104,1291817215,-14906622,705137156,-443851036,-1957313699,149717996,1988843095,121932294,-96040552,-2043820405,-754732790,-775386120,-775879712,187041248,-151501175,1954743876,105182726,-2146732992,-1205860788,283770879,1157009409,-277544698,33967232,-284793728]},{"sector":12,"length":512,"data":[1149878315,-1980200190,1157037182,1601506310,-343810421,61934214,-1014236205,-670833711,-2013862959,1963002662,-1895923386,-2130283510,1963628286,-92864717,-2095800856,-1073020220,117386613,-25097596,108333710,-351407432,-1632071676,71600402,1586168969,38258680,130417152,-1878463743,13297750,-167590781,1963460164,-2116121831,-1324710165,-1946430717,65262019,-152841768,17507975,1015763060,-1962640341,-1992293308,-128021756,1208108939,184697993,1460895487,-16485121,-1880556938,113541903,-335788407,1586204698,1049097978,259268618,1342177976,1347469355,208988243,-1962359677,1183450204,-351827964,29331479,1355254528,1342457485,-386238721,-998043822,-62486266,1962704441,-18093821,704923274,-1956684060,-1866244635,1458342741,-167479669,1954743876,105182749,-15240184,1508377716,46433040,-150576000,76136491,-1996209015,1566442052,-1957326653,49054700,71732054,-1324710355,-1946627325,65065416,98619841,1183386406,33601790,271640656,-1962752893,1200161886,1958742788,105873423,-27358456,149447,-1877480702,-2147197301,-1962670513,-1992229306,1586168903,38258686,1586167809,-1946973436,126420036,149447,-443851264,-1957313699,183272428,1988843095,106859272,1033373578,678690913,1946186301,7814411,-1070918540,-1878995479,1187446571,28901884,-61437440,29302763,-62470653,-1863324926,-352253505,-940076812,1064632322,184193,-1291917437,105316224,-2147066229,913571903]},{"sector":13,"length":512,"data":[846514443,1033373578,-629931989,1946182205,7617811,-947186315,1975517353,13598990,-1865225408,11126667,721777856,-1866011703,-2147430527,1451802603,-28407300,1342284984,74907479,-2096400408,1183385284,2109737978,-9508605,-1996732790,117376580,-963966332,-1324710355,-1946627325,65065416,98619841,1183386406,-1950340360,126416990,38046104,280519,-1983894784,71600388,-1996863862,-963967164,-443850914,-1957313699,82609132,74877782,176424703,177143425,1187448949,-351407362,-25063412,611650198,-1627502905,105182738,-1961265908,-2031386146,-754732790,-775713797,-774372381,646444771,74711307,904642603,-2043820405,-754732790,-775386120,-775879712,187041248,-1946401143,1149894214,-1962637052,12123230,38242562,-972929911,1283457287,28836358,-443851264,-1957313699,49054700,75400022,-2124712960,177079934,2122385268,1963628038,106859382,-1744353398,294971472,184730755,-1956350784,-2043869626,-754732790,-775386120,-775879712,187041248,-113015,1273497206,46433024,-956408181,1204224007,-1962934270,-208992674,76136491,-352041079,1586204714,75464966,125046258,-1643872383,-1978108654,1352140615,-2096023064,-1073020220,1996425588,583686,1577239683,-1017256565,-2081649835,1448543468,721712779,105155327,37487396,1156990581,427100166,-343810421,61934214,-1014236205,-670833711,-2013862959,1946225446,721718055,1183384644,2126515196,1962889243,121932292,1072189592]},{"sector":14,"length":512,"data":[113541900,1962690107,105676807,-16608,-1996209013,38061828,-947191808,-443850914,-1957313699,23378156,1475681768,108432214,-23165299,-1962023261,-693958586,71731981,-955397469,909318,-569981184,-385875955,1015022204,-385649627,113705560,69090,-761020373,231645965,-1559372637,-626848304,232301325,-1559376733,-727511608,-335100147,-2147475443,1966080380,113722940,3149292,1015034859,-15895253,-955395578,907270,-1876759808,1965046912,-767655155,359989261,232261375,117379051,166399432,1965898880,-737738799,76170765,-169324392,46433031,-394936309,233355350,124184656,-1962621821,-398556176,209518605,231999231,-150083423,233350104,1965964416,-637075677,-1202305523,-397406750,-998045892,-2081387772,909886,113707645,69090,232394495,1033372810,846463046,1946177085,6831413,1815945332,-955878144,34459654,-801209600,91553805,1967930496,1015039489,-384076544,113705352,69072,113763307,1052112,113761259,527824,76207083,-1668904552,4537854,1195182708,1023767552,158662744,231606015,-23296381,-1668904160,6499838,1979716925,18147587,781434883,686598143,232136331,-559865973,-2096658163,34461190,-1878955543,232523519,231212743,179830784,2145931264,46433025,-1878961687,-352319304,117412080,117378508,1048776142,1962937818,-469317879,-352321267,113741831,3556,232392447,232916679,1048772612,1963462096,8972547]},{"sector":15,"length":512,"data":[-794574805,-62486259,233309753,-392091788,-62486259,232013443,-955681792,911366,-1877808384,233320067,233349381,41795595,-391921621,-704216307,280494605,-1552384,46433024,1342192312,-2096902168,2122515140,578027772,232013443,-1961528320,86899782,233349888,41795595,-391921621,-1878529267,233309895,780337152,-1207693866,-397410288,-998047554,-14685950,-385871688,-1070858449,31647824,-1862325527,-352321096,-1224765197,-1175912804,-15079166,231751299,-1962707968,-24424762,4030535,1031800180,-1946847963,1355164615,-303540706,113541891,1015084939,-385649664,1048837500,1962937822,-903967911,105379341,-1202752480,1307312127,666118296,681453726,682109086,682108852,682109096,664545448,667822024,682109096,682109070,682108848,680011944,232799875,-2095877120,908862,512430197,1207307722,-1217060858,-347732757,-559837031,-1956684275,-1866244635,-2081649835,1448548588,168066691,117376116,1048776156,1946291664,-801209593,376770573,232136331,1468729227,-62486270,-2080483703,68015622,1048783595,1946160604,-702641391,-1995994355,1187511366,-352321282,512462862,126553558,-62486119,-2080483703,34461190,231227011,-1962052608,1175190598,-1962576642,48956486,-358367189,-432633075,-599882995,712310797,16678531,2122523773,393546244,1177355462,-1946401141,-654836138,-150941053,-62486054,-939633015,129094,1187448299,-1929379592,-125048762,1459910399,-100609]}],[{"sector":1,"length":512,"data":[-907477898,147096332,232406659,1461810176,-2096331800,243991236,-936702494,-336310647,80121861,-1047837136,2143292233,-196179467,231607947,76023178,125094155,58483004,1176513664,-8552377,-2081852160,908350,-761195403,-670692595,-2096401395,1962997886,112645,-1070923029,45279312,1577239683,1575324511,-1957326653,283935724,2122536535,343146500,-1593835074,1183387094,-94466824,232130179,9562370,231751299,-1961396976,-1962027490,39291655,-1980217719,109312598,-352055850,512462869,126553558,-1979955575,1586296902,-704216070,1048773133,1963986384,-129594611,1979336203,195082260,2122516971,158662908,-1995724872,1586296902,-129594374,-1980082549,1451881030,972434420,1947064886,-502363364,-1878070515,-893244,-2144931258,359923775,2127444806,-1863455984,-228670394,653412095,1962950528,-398554125,-2080494835,906302,-396949643,-998047458,1996445186,-126418950,-2097057816,1048774340,1946160596,65558279,46433025,-443850914,-1957313699,82609132,-1995581791,2122579526,108291844,1191476867,28312693,-1070988565,-2080618872,907838,113706613,396770,16547456,1048776052,1962937826,-502872314,-16776947,-15872458,-15867338,922682486,1996426726,-870907906,180650763,16547456,1048777332,1962937800,-432603381,-837353715,46433035,231227011,-2095942656,909886,922684277,385813990,-998044718,-704216318,113707021,3562,185455265,1947064326,-25755885]},{"sector":2,"length":512,"data":[198448895,184730755,-1207601984,48955393,-397361109,-443875064,-1957313699,1048794860,1962937824,-903967953,38797069,1183452792,-13137148,704940039,-1878266908,74907475,-2081067032,1967129796,-536412409,-1878660339,232654591,-1866244770,-2081649835,1448542956,232799875,-1958120192,-167050122,367739518,231356159,233584383,-2081081368,1967129796,-536412412,1321634573,377405451,231349899,2013417471,233611483,134168459,-467008120,1048829163,1962937824,71731975,232654337,-443850914,-1957313699,49054700,1988843095,-532774136,1349845005,922688747,1589906890,126494212,-639086440,79987700,-16485056,-15867898,-963967930,1958742862,-903967971,38797069,1589957752,126494212,231349899,134168459,-467008120,1048826603,1962937824,138840839,232654337,-443850914,-1957313699,183272428,915101271,-1070920218,-1979955575,1048836678,1966083564,-637126376,957510669,1947061254,-469354234,-955878131,537783302,-398554368,1038636557,46433033,737691273,75377656,232013443,-2145880832,326446396,233586307,-1408469712,-1645719400,46433278,-2080878849,806218814,-16053388,1048774526,1946160596,75399961,-16354304,1609103942,-365001984,108265485,-386119937,1048772714,1962937812,-1612163290,46433278,294531,2122516852,57999610,-2097138200,911934,2122516852,57999612,-16761368,1444870262,-2080451608,1048774340,1946160596,-335100147,1459625997,-2080480792,1599996612,-1017256565]},{"sector":3,"length":512,"data":[231882371,-1207602176,65732651,1342185656,-2080503832,-1866267964,1342189752,-2080506904,1048773316,1963986410,-834764009,108265485,-352298824,2025361412,-571977728,46433277,-1957326653,82609132,1988843095,-28915962,1015021569,-1961921238,-1962027490,-704216257,-347733491,1015058504,-955878099,-442,-2130760890,897331260,2134457472,-633456336,-2146732787,108343356,233572039,76152880,-774927464,65130977,65130959,820609992,-2142832245,92024892,2117680256,-28931103,-125046793,-1996202357,1590070079,1575324511,-1957326653,49054700,196001366,-352039286,-2142859262,175374396,-160101318,-352321096,-1070886909,1575324510,-1957326653,49054700,176602710,194907787,-2096741130,-1070918027,-2013117303,1149830724,-972781308,-1946220732,-1878201402,-964442485,1975597832,1589652443,-1017256565,-1947432107,507184222,108137020,-116850504,1051986923,91365837,171870150,-288429824,-2081649835,1586169068,1008614148,-1207602678,720046336,542455,-2092403584,1946159742,-1949748454,1107409105,1265770957,34227959,51279104,1444087366,-1205307128,-335997440,-27883210,-1946401143,1107474641,1174610381,139858694,1317735801,-61436930,-851312456,-1948718303,1317733974,172395016,567100084,-1484782222,-369292738,-1957302681,82609132,2122907442,105286654,1187432587,11075836,-1458539136,125124608,196413174,-972786304,-1954481082,52692054,1035257610,309535181,1962934845,12711689,-385649663]},{"sector":4,"length":512,"data":[-369557343,-1953239521,83895745,1963262013,-851528695,285259809,1187440875,12059133,-165556924,74744002,1090276992,1090275062,-706149516,105286400,1946288297,239901,-919402124,567099572,-1275019287,-1960719042,12059734,-350106301,1190563943,58032380,-1459574807,57999362,-1191141399,-779354113,-851311944,-1915095263,1068826454,-1073012275,2122323316,259332863,-779363849,-851311944,-1261882591,857853248,-1194226743,567099904,-963614485,-1962869434,-1528297394,139364608,-112906,1190594421,1962934790,-18776061,-1274784117,1931595068,-312874749,-28903789,-150505985,132678,1051996277,1183457741,167977990,1452015174,-851594236,-1814400479,33375990,1190597749,1946157320,29982733,-1207675253,567100161,1190575986,1031094524,-1207675253,567100160,-919420533,1946157349,-149901054,525894,-914357388,1008614176,-1274383862,-1205744322,-974579712,-61994242,-2013148800,-1962262897,1575324611,-339135805,171024860,-1054617353,-2136422093,-914357387,-1957313791,49054700,990142091,1913273374,12122374,861727497,139365312,-2013899293,1963067966,139365198,-1274653045,1931595071,-351685628,1049097790,930381834,171878272,-61384965,-91491701,635685003,1015025076,-2147126006,67780239,1959017132,1964653593,1049591815,99287562,-498662008,734497771,-379691070,-108794801,-2146995199,-344716740,-2013862165,1950353982,1140897816,-1023991347,158662688,-1258334579,1914817855,-351620908]},{"sector":5,"length":512,"data":[-12138964,-11105024,567099316,-1072970894,2122520948,527696136,-1946157127,1107409105,28910029,-8486912,-1341688822,106334989,1451988715,-2137724154,1963655038,12512219,-2081649835,1586170092,1008614148,-1207471606,-369555200,-2013860913,1948256830,1107474443,-779368141,-344841779,171870198,-1955695488,119408214,1183432755,-62486018,-1957275652,-1980593158,1317795942,-1336614136,1974399498,13953098,1979754557,49054536,12246155,36191490,-2135293069,-1948112128,385518548,139365127,1946827948,1962621708,-186471911,-352312344,990752865,-402426373,-1331036136,-62456054,233366507,1591929600,-346690721,-373279931,1397810877,735021905,-1961827382,1085539422,225583565,201213441,1493595328,-91531173,147096515,162792563,-2013913365,1950353982,106859275,1964654464,216791043,469809401,1183516395,-62510082,1593337483,-353244833,185093771,-1962576439,-354031167,-1274653045,1931595072,-351685628,1975520228,1049097952,175390730,1065409163,-133991142,-1191587861,-907338752,174629209,108250171,-654851029,-1070341633,-1957299477,73305068,74767115,33443712,-1017256565,1458342741,196524887,1962950531,-1207493079,1944584197,855995649,619420096,-1543625664,-1197274186,80188939,-964493311,-29047036,915013630,1317735356,-1898411004,649408,-443851169,-823540899,-93044480,-2080448128,-227283207,-66947189,-1459713107,1212314625,359907643,-268185461,1946265773,96600884,-141885438]},{"sector":6,"length":512,"data":[-335657847,1962839014,-1980169460,-1054081460,-351958712,-17235195,-963903924,-779298164,91541819,-1004631002,41912587,113649347,1023544266,628424702,-268173685,1946265773,1224641522,-1116487365,-268185461,1946265773,96601058,-141885438,-335657847,138906598,74760203,351000718,-904987098,-1945013237,1003982040,637891783,197140110,-1125435509,856061835,7006400,225756731,1077936420,6219928,1308495220,1894654,1318454644,-1936069810,1003588824,637826241,-1962163037,38242567,-1013333965,-28996783,57934248,1095354411,2147465793,-971621594,-788236789,-1946847766,1925579713,1925317397,601028365,-389665854,141885452,-355347721,-1070340747,1364378457,1946164712,-24422632,-234622837,-16890681,108497407,-684992885,-27948726,-1017489064,-768389037,1347572254,1342177720,266870534,147096320,536869507,41179994,12833291,1458342741,2122516055,947191816,-1962294081,1183516246,125126660,1912624104,-1958155481,1208620086,-147123852,1149963636,205949186,3860566,-2093976738,-25099066,74648084,108384779,-1711276104,-628417045,-787496061,-754732581,-850873109,-1830194655,1418265737,339118338,130036490,-443851169,1317782365,972524300,208929356,-2130393469,1963595006,1072429554,470014603,-745850510,-147078770,507053685,645073342,-787496061,-773074469,1005310443,50951671,171287001,-1064380373,567102132,-147124878,378078325,-2020472386,-1009677564,-1947432107,-1931572265]},{"sector":7,"length":512,"data":[-1950314792,-1070398338,-218103879,-9073234,-1190756725,-1359806465,-114568713,1183579783,29816580,-1543343104,-202780343,-204926043,-1946973276,12803578,-1947432107,-1948349481,-24443274,-1064380276,-4603853,-139529473,75402193,27838347,1235485300,-1510741551,-1527527149,-91491445,-1957313699,-1948808212,-1898410786,74877888,856063627,-17984,-772296974,-1493960405,-1071970956,-1946157283,1576700915,-1957363517,-1932030996,-1950314792,-1070398338,-218103879,1238497198,1576700817,-1957363517,-1286121748,139365121,855918219,184124370,-1952906891,1609107070,-1957363710,-1286121748,38332672,-1947432107,507184222,293407292,2080439171,1049097740,91504650,-352321096,-1950338302,12803557,-2081649835,1448543468,-1962379637,2122515582,679411718,954974251,-371529642,-1996307325,1967193158,75381005,96922228,71731968,1183457003,1191545084,-294385092,1946570495,38600681,478925432,126485759,-806624214,-443850914,-1957313699,116163564,1996445271,-13178876,-1962752893,108462072,-2081607704,-259325244,1460041471,1342177720,-402360577,-997988356,-96040696,1443264255,-2081582104,2117665988,721778170,-1878725696,1593835448,1575324511,-1957326653,250381292,1183667799,-1913091084,1183385670,105236222,71732034,-1996208759,38127365,1183678463,1996443656,1374181126,113542126,1308618891,705394690,-14840896,-351827963,727158795,-974630720,79987689,1600046731,-1017256565,1458342741,75402071]},{"sector":8,"length":512,"data":[1569392011,72190722,-1962519157,2106263669,1461832970,-1996063093,39684357,-1996206711,1971914325,172330760,-164428686,31983851,114406,1971914123,-1956749556,12803557,1458342741,75402071,1569392011,72190722,-1962519157,1979648117,142510858,1569588622,567107334,-678683049,2123095950,-1895461880,2123040325,-1996125946,1300824669,106268932,-1895271031,74582597,149681715,-1092246552,92995585,1594652041,1575324510,-1957363517,2123061228,-1962467836,-1178586145,-1359806465,-1965426879,-74774970,944746226,855798789,1606913023,-1017256565,1475119957,2123040542,-1178586364,-1359806465,1339684673,-49920374,944221938,855929861,-1962742848,-1956643641,12803557,-1947432107,-1931572265,-1950314792,2123040374,-1949857020,249759822,41157032,-372160092,-921459213,-208952077,-1017251189,-1962258805,1451951174,142510854,-66642345,1958742675,184124179,-771027339,766511737,-2082736214,-621346606,865269643,1958742994,-1812859134,-2020412937,1009779923,67270201,-1031034329,-495598837,-1404107384,1149764998,21270015,-227358917,-1956749480,12803557,-1947432107,1102316630,-2048319027,-1957363484,-1957709844,149619798,-1209234603,139889486,567089844,1968111488,72780550,-1979298165,-383660569,58468,0,0,0,0,1377850189,1412263541,543518057,1919052108,544830049,1866670125,1769109872,544499815,539583272,943208753,1766662188,1936683619,544499311,1886547779]},{"sector":9,"length":512,"data":[1766195217,1932027244,1869488169,1868963956,543452789,1124081722,1634757999,1735289202,1818846752,2126693,1684955424,1867776032,1634541679,1663072622,1634561391,1814914158,543518313,1969713761,1953391981,1866662003,543452277,544501614,1634760805,1931502702,1852793701,1768300644,1634624876,1931502957,1935745135,544175136,1668571501,1768300648,7631730,544173908,2037277037,1818846752,1835101797,684901,1635151433,543451500,1953068915,682083,1970499145,1667851878,1953391977,1836412448,544367970,1713399407,1936026729,1935893872,1836008192,1701994864,2004099187,1768300655,544433516,1931506287,544437349,1713399407,1936026729,1684955424,1936286752,2036427888,1752440947,1768169573,1919247974,1701015141,1700929651,1701148532,1946159726,778921320,1174407690,794501187,1528847681,542982959,1565273947,1278171936,542993986,1565405019,1412389664,794501213,1528847703,1852730927,1528847726,1986622052,1564094821,1952542811,1717383528,1852140649,828730721,538968074,1769104475,976381302,1634753373,1563584628,1701603686,1701667182,1174407730,1110384707,1919179552,828733033,1885035834,828929121,1818846813,1835101797,1528836453,1986622052,1564095077,1952542811,1717383784,1852140649,845507937,536873482,541142816,538976288,1886611780,1937334636,1819176736,1768300665,544502642,543452769,1953718636,1852402720,1713402725,1696625263,543712097,544499059,1679844975,1701209705]},{"sector":10,"length":512,"data":[1668179314,170816357,790634496,538976322,1699749920,1919903346,1629516653,1852400160,544830049,1886220131,1936290401,170815087,790634496,538976323,1766072352,1734701683,1935962721,1701344288,1935762208,1718558821,1952803872,1936876916,536873518,541863712,538976288,1886220099,1936028257,1818846752,1629516645,1396777075,541673795,1954047348,536873518,1112289056,538976366,1937007955,1701344288,2019650848,1836412265,1852793632,1969448307,1702259060,1936289056,1668571501,544433512,1948282740,1931502952,1768121712,1684367718,1836412448,544367970,681583,538976288,538976288,1852402720,170816357,790634496,538976334,1766072352,1634496627,1948283769,1814062440,543518313,1651340654,544436837,1629515375,1396777070,541673795,1886220131,1936290401,170815087,790634496,538976340,1866735648,1847620453,1696625775,1851879544,1635000420,1948283746,1886593135,1936024417,536873518,542584608,538976288,1886220099,1936942450,1998615397,1702127976,1634759456,673211747,1935827316,1684955424,1634759456,695428451,1919903264,1836016416,1769103728,778989427,538968074,1852730927,1394614382,1768121712,1936025958,1701344288,1836412448,544367970,1663067759,1702063727,1769239907,1814062454,1936027241,1634235424,1970086004,1830843507,1751348321,1952866592,1629516389,538968074,538976288,1830821920,1634562921,778593140,1160642570,771769688,4866639,1112099886,1329802752,1110310989]},{"sector":11,"length":512,"data":[771771977,5462355,858927408,926299444,14648,5701698,7209064,12845198,15204568,1868787273,1952542829,1701601897,1769435936,1701340020,1850278003,1920102243,544498533,542330692,1936876918,7237481,1852727651,1864397935,544105840,757101349,7546144,1814065957,1701277295,1752440946,622882401,1869480051,1718182944,1701995878,1936024430,1668179232,1953396079,1684370021,1970208768,1718558836,1835363616,226062959,1699872768,1668184435,1767990816,778331500,1766203424,544433516,543519329,544173940,1717987684,1852142181,1851064436,2003791467,1919230062,7499634,22216969,27656539,33489347,40960585,46334619,52495120,59179869,68551626,70190122,70845492,71500862,-65536,65535,16711680,540689222,684837,1912627826,807731298,978873400,842016032,807739480,677938,1912627826,707395682,539634218,684837,707406378,1931812906,707395594,170535466,707395594,539634218,684837,707406378,1931812906,707395594,170535466,1931804682,707395594,539634218,684837,707406378,1931812906,707395594,170535466,771751946,667182,979645733,620765216,620759667,175318387,544417024,538976288,621441829,168430195,628303104,628303219,167774835,1917124608,544370546,1308622896,1970479215,1713399907,543517801,1679848047,1667592809,2037542772,0,1735540992,1936288800,1869881460,1869357167,1157654382,543384952]},{"sector":12,"length":512,"data":[1836216166,1696625761,1919906418,1684095488,1818846752,1970151525,1919246957,1308622848,1696625775,1735749486,1868767336,1342203250,1768780389,1869181811,1701060718,1684367726,0,1701603654,1769497888,7566451,1936683587,1701064051,1701013878,1852402720,107,1986939136,1684630625,1735549216,1852140917,1409286260,1830842223,544829025,1852141679,1818846752,29541,1867382784,1634759456,1814062435,544499301,1679847023,1667855973,101,1632436224,1629513844,1836410738,7630437,1970496850,1948284012,1814065007,1701278305,1699872768,1920298867,1679844707,1818517861,543908719,1819635575,1668227172,7501155,1852534357,544110447,1869771365,100794482,101385738,103155237,103286311,104531497,106759757,106890846,109119087,109250178,110102148,111347362,111478436,112658102,114034379,114165453,115803878,115934952,116917994,118097673,2426664,2573,0,0,0,0,-1618935808,64736,127533056,0,3801088,794558510,794558522,3014714,794558522,16777274,84148994,151521030,218893066,286265102,353637138,421009174,488381210,555753246,623125282,690497318,757869354,825241390,892613426,959985462,1027357498,1631600446,1701077858,1768449894,1835821930,1903193966,1970566002,2037938038,1566333818,1633705822,1701077858,1768449894,1835821930,1903193966,1970566002,2037938038,2105310074,-2122285186]},{"sector":13,"length":512,"data":[-2054913150,-1987541114,-1920169078,-1852797042,-1785425006,-1718052970,-1650680934,-1583308898,-1515936862,-1448564826,-1381192790,-1313820754,-1246448718,-1179076682,-1111704646,-1044332610,-976960574,-909588538,-842216502,-774844466,-707472430,-640100394,-572728358,-505356322,-437984286,-370612250,-303240214,-235868178,-168496142,-101124106,-33752070,16842750,84148994,151521030,218893066,286265102,353637138,421009174,488381210,555753246,623125282,690497318,757869354,825241390,892613426,959985462,1027357498,1094729534,1162101570,1229473606,1296845642,1364217678,1431589714,1498961750,1566333786,1096834910,1162101570,1229473606,1296845642,1364217678,1431589714,1498961750,2105310042,-2122285186,-2054913150,-1987541114,-1920169078,-1852797042,-1785425006,-1718052970,-1650680934,-1583308898,-1515936862,-1448564826,-1381192790,-1313820754,-1246448718,-1179076682,-1111704646,-1044332610,-976960574,-909588538,-842216502,-774844466,-707472430,-640100394,-572728358,-505356322,-437984286,-370612250,-303240214,-235868178,-168496142,-101124106,-33752070,65534,445448192,60555264,-1325380608,1127942596,1279870559,1313431365,937798,1704114,-2130701136,16875905,11665415,1555038229,1124310026,11665413,-1599078389,21,402784790,202115341,369624844,219348758,1560216082,23552,1077760,17854976,0,33554432,1,33554432,2,-2080374784,3,33554432]},{"sector":14,"length":512,"data":[-1308604924,-1342146560,33554433,11665412,514850932,1970153483,2714732,1819635240,721430892,337846317,352367104,2142208,1107296256,1109082651,1109082651,27,0,548536342,682622985,673720360,548536325,1219493906,280100865,-2068840433,279969802,269488144,-2122248176,-2122219135,28442637,279969812,269488144,-2105376240,209879682,335720960,269529088,85987344,-1895779840,522235904,1296972860,1044268883,911343616,221261872,1931488522,1801675124,1702260512,1869375090,658807,911343619,221458480,1763716362,1734702190,1679848037,1684633193,2036473957,168636448,1375734016,959459382,539822605,544501614,1970237029,1931503719,1701011824,1919903264,1986946336,1852797545,1953391981,-67106291,658688,1970405631,1769221486,1696621933,1919906418,131104,808466002,755633458,1869375008,1852404833,1869619303,544501353,544501614,1684107116,168649829,1375731968,825241654,539822605,1819047278,1768910880,1919251566,1936941344,1835951977,225734245,14155786,851890,-80,-1,-1,6400,22675456,82184192,1112671353,-1064507253,234885125,303903,787971,244039822,-108331002,-34108593,-1202674445,-883949516,-661863540,-1898410424,1032128,-1342172999,1202648063,-1014237301,-1077899704,78708751,-789068149,-628299565,74698795,-768878452,-268181293,-947135858,-388771593,-802438516,-1064565645,-522989013,-1030817789]},{"sector":15,"length":512,"pattern":0,"data":[1322289836,1187548077,-31145334,91598908,-341118036,1974615046,-1968901267,1946265794,20102833,512433934,872153092,-930370094,-1031072797,-1064385789,-2080863315,292880383,-501415642,16417267,-2129234704,-351272766,1086360796,-276578162,486614544,-339702200,-1950118942,-1962932162,50334262,33948144,1060096,-1064380274,-100663109,-410265970,784698363,1085550591,-1191181637,-896794602,482007694,-1205744383,567102719,1801675088,1713398885,543517801,1663071081,1970434671,291952,420168582,1142561173]}]],[[{"sector":1,"length":512,"data":[9984589,65594,197656584,120258559,512,-1048320,82,1263542543,1163151692,1886339872,824192626,758135097,1344287289,1380013899,1850286149,1092628067,1377856620,1952999273,1699881075,1987208563,484453,25690112,112,85983264,255000575,128,229572624,30,1,0,0,0,-1173165640,329506,33962752,-1273269760,18397705,550314445,544501582,1970237029,1830840423,1919905125,539829369,768642560,-1903165403,599347392,1476342529,-67025730,-1865701901,1406897405,3785601,-846407165,-461323637,-1962626801,-739847182,-1949892886,1323946446,738102094,-1898435608,-203714875,268482725,-822181707,-1896026763,-1090123811,-164429568,280663469,-1875318016,280139181,-1783807509,1122701490,280139181,-1783805717,1307250866,280139181,-1783802901,1743458482,280139181,-1783797525,1777012914,280139181,-777779086,-193705235,-919340941,-305013965,-776375222,1257099731,-741230476,1929575296,1257099560,-741232012,410311557,1951067601,-2133601875,208799227,1951067601,-2133601881,2104954107,161450542,869893890,49906651,-305059212,1922266186,1257099555,-741240204,1951067601,-774647407,74795757,280139181,-75443247,773288706,36683658,1457031852,-215222389,-216070626,-379707484,-305004683,-1392216758,-787434859,150700243,-305014414,-1392216758,-787434859,402358483,-305018510,-1392216758,-787434859,-538738221,-337672704]},{"sector":2,"length":512,"data":[65241275,1967844817,-1298813692,-2133602032,275908091,1967844817,-1298813692,-2133602032,1165430011,344951342,435781634,1525220212,-939348737,1006687616,-385649666,-1924071603,-2082471779,-947843097,78716928,-1064506413,-1064385789,-561260404,-753932669,-1899822101,-12822312,-622253708,65241342,1967844817,-1298813692,-2133602032,192022011,1967844817,-1298813692,785633552,35622794,1543437545,-1014764661,-1396690160,-1391533167,-1064385789,19306413,-335945187,-1023169044,-1896174190,-69170222,1406665645,-980528979,-1070342770,-930359157,-393490293,-125046645,83887307,1798,134217728,202050057,25,235732992,303108111,0,353637120,18355990,50331650,394500,0,117440512,185207048,3340,0,16777850,-1192457387,786438,1450496488,1342177720,-402390344,-1962934195,-972766077,25184006,174611688,-1878821440,54454659,873120744,108461827,67348417,627658472,554918656,708739075,175374427,792985776,176166922,-183170394,177998404,789207244,1477087845,-2046785496,346054164,1092836840,-2031090976,-1202331672,68714063,827375659,1435599384,1187448925,-2138333190,-956670463,22899335,2122518015,410126586,-1981223144,443823452,1143172584,-1962905796,1973884499,1168041989,-1941567765,2141651688,1105990241,167938661,-401836955,-1694224705,6134357,-703395487,1938831104,1441493869,-1845336087,242596498,1258780087,-1324895159,-1707007627]},{"sector":3,"length":512,"data":[-1206225490,-2137653249,146283523,-1266450656,-385048985,-1077607894,1541645988,98238464,-2142134270,243941528,-315981801,664977723,22393463,536904350,-396857403,-289447908,806498286,748336,976196587,662001035,1005752327,544582283,100920172,1719756303,729219517,-1963750536,377793027,-1992521848,483256299,-13953908,1989153281,1545558249,-2135621152,-1846869652,9382376,1017290274,-867957109,-1837927167,592526824,-1919556862,235190373,240356911,554574935,1225669754,1199958093,34829,380697670,-1946390794,-2146262544,-1957526471,108497024,-1957919605,1358368747,-236898561,1800529941,-28931724,-1204543796,847922560,2097051161,1425795136,-1014990346,-1865840369,2097252498,1354335274,476616011,961719172,-1652290034,1388082190,235255896,1246370959,1190268535,-29689197,-468348033,1790896369,1928017299,-1821863017,1377131719,-1391906735,1860713581,1484125259,-1806136514,1726485877,85872984,-401516852,-1801888021,1499296427,1339548207,565750364,714394082,-1142811890,84851005,908323626,-1456305126,-1443345901,-2144950004,35717665,124797324,-1956760702,-1866244635,181433856,1895950336,1653196374,689203237,333671038,-33279139,655478284,307034117,1585346699,448758008,-434764428,385839304,971287456,1913128504,1171311588,469858972,99982477,1384574728,-2080059519,750118994,1287738850,544558125,-1980334464,394934913,1386361092,696791424,335827990,-1551308716,-157864675]},{"sector":4,"length":512,"data":[-2000066815,-26834490,773586480,421982499,-2007463370,-1680974504,244189739,-598798708,245239451,1749094044,-929034587,2033686109,722899990,-606071414,-150982984,-661915546,-1742159823,-385042247,-2138378101,938247033,2133002612,1887345884,-85795982,1327360028,359626768,208616066,-1739482547,-632191236,-1474997973,2031384065,361894163,-2017127024,-54323720,-1945703675,1524798468,157116420,-1394937288,524353584,-1728166264,409017149,1040131177,1025139505,-1642396366,1832074593,486880317,13629,854072837,-16389845,-384994328,-739705089,-384236020,2557689,-351865879,138930460,-381666067,208076519,-1369374586,1403782227,1223197282,-1878988931,-402650906,195063579,-1595914010,44060757,3391117,-2127882957,721366100,872938182,-1073206524,-2132989471,-834557655,-1131216498,1732496300,248626606,235146758,-1190778208,-1374776657,-1408321225,168723470,137017655,235828778,202275127,60254222,-385722559,794288158,408224258,1429734401,1013339419,-1861069433,604461056,-402603512,-118937124,-396544378,1302678642,-447978425,240535424,-488110476,214493440,1829847762,-402193272,605966096,-1130840507,10479955,571371178,662336308,-600533910,881915214,1405105346,-1013814037,860614451,1299834892,84393219,-352024856,966642267,3029411,1412179282,-85445653,1441278795,820709735,-303138773,875247147,168312107,1406693082,1244212968,831678743,1258960266,799244845,-320339940]},{"sector":5,"length":512,"data":[1862020972,2066100116,1209160355,686180368,-802184081,-1037955800,317198018,-516403161,-2146434481,-774337738,-424149021,-549275558,1446599320,103055526,839654339,361771712,86321181,7408358,720020736,2082616481,2080648938,-2089174912,1963264554,2122574480,82471912,539505267,1183360014,738234084,20752601,71043188,67907700,-1418394052,-974395889,1107420728,-718962936,483892770,-851537393,168821141,22841739,-1954924290,603921109,-402712403,1116268839,1212741844,2133645524,-531612420,-1744740187,1811951661,-392042838,63373482,1586178216,-164712214,615459244,-659840896,1809029326,-1947719974,-856606408,684684550,-1742305398,-364331404,198499073,131336119,13739988,-559462714,-1422521108,-1415363532,311274300,-527806442,868083888,2126470724,12232428,240341020,57067603,-1010794040,1367575745,1048432360,1937096715,842650044,-330289072,-69105114,-77929312,-265431576,-1728592634,1030452265,436293271,1954509056,-10687647,73067126,1372267154,1345733899,-1491643834,823150343,488765393,-1984159992,1952478811,-1906275232,787540064,638525931,616525808,2112613204,233189386,503767306,-687203318,479247080,1267114022,80020022,1781000192,-178804611,644823136,543957569,543985140,-963529690,-54122998,-1877522395,1210725770,-406894401,-1079698563,734602449,-1673967176,646126529,-1184422809,858096061,235154594,34078259,8488243,171311108,1156085558,-1538331867]},{"sector":6,"length":512,"data":[8308594,-260953060,2045679544,-57210879,-1182730101,905283588,1459386111,-1269795352,888107041,-39253930,2061847163,2021536055,-1015137410,-2091490304,1912929406,-337713242,-266407235,488535204,-2127724108,1094329928,537223006,-402628019,1958963418,-2085223347,1812943324,1315773226,617565736,-1053085424,946595854,-1409285912,-1974935320,-936727474,1317585406,117014692,-176268682,2122318962,-868873812,1183450824,-1665915484,615446016,-1367962859,-424648495,1153889539,-1018925118,421134079,-1179731572,394074030,1362668584,-578875506,-2001465565,-349792111,-1874967591,1318676647,1285228800,-1684947844,-1947431954,-868670410,1911095346,-1817180413,15911161,1933006808,126176078,381525696,-20743040,-1919217548,-99548888,58010534,-234251991,315653254,1152311472,-644564738,121975112,133212308,738602736,600434771,644703241,-1793296363,1223092231,-1322687034,877107450,1352200788,-462115779,1091871762,795994670,63922708,563848106,1974138901,218798352,512465289,284444297,72398900,567513147,18067054,-2143803223,108354977,1042982946,1048622773,-1985374036,1391476735,12563818,-1600094004,655772122,1211282675,1246317638,-1957420302,-1466780086,1244623690,1291197878,1146245725,-1467461603,798738571,-342115503,1571393611,2038687825,-1538849205,1189806464,641758338,-1204755202,-469442112,-1543191199,1392952973,538589824,-1555884401,-2088242361,-397144014,-1890428829,2046926024,160680081]},{"sector":7,"length":512,"data":[25823728,27066624,-1940239221,1103178588,-120301913,-841050974,1283727903,-634845030,1141676784,652740373,-2003727747,246606770,-563641812,563079168,-1955790709,-422448010,311313094,23723715,-1329652388,-1676763128,764149805,206342920,1996445362,63581447,-1848514553,1400676616,376179851,-165784706,-502135,770703366,179935666,83490560,-161561552,638690184,286525320,-194067840,-1609427182,603935897,1830822816,72602179,557574235,1122255916,1371947567,1973713536,291386348,1572764684,604283903,67478421,-1995495517,1525222819,941733631,-2002501621,703313435,-991772275,386190713,595064435,-998771704,-2027356896,1665870084,-2039878910,-1258550788,-593612752,1032525109,1882564112,-778662928,-1035760921,1049242750,1861892116,955812774,-699917687,1454283274,223089384,-1029254358,-931391578,-1344053628,-1674313496,1164992980,-1354524012,-346842988,-1289440227,1381123409,-1290671942,1562912885,205860577,789748,-1855729944,-569893148,1748650472,533265464,-1302801509,488793631,-1830285660,506409540,1461125501,1831359583,1316456644,527589191,-1184707321,-131340225,-628001339,-1804569489,523539516,-88896887,632507208,-1290361820,-1705705223,66778803,-1286912974,66605341,-2062354765,-2002192717,1408956595,-1561855821,-1275826126,-1288795265,-1287273861,1946500215,513994592,503323816,1972602078,1616135717,1614842711,-11998387,152500342,-1605801120,770002199,1912572112,1615126083]},{"sector":8,"length":512,"data":[1621385382,946888748,-349794072,-2001162483,-396347144,1097735632,-1134869760,-153188020,950165979,1059329610,-1667051513,-689417568,-587594211,1832984008,-593683200,-1508989781,-1542547173,-1625450994,850829390,331984177,633978239,245894826,626370929,-973667334,-400030840,1118577246,1966292217,245895740,945045406,-385337468,-1667172447,1411968042,-501404184,127245357,1044531758,-349864728,-394677712,905854755,1749453406,1114207299,1074413571,481093642,1525406528,-352294168,-2107946923,-1381810377,692005179,-2095367295,84469765,-2143739925,-394139010,-8656557,-838346887,-1609970677,76291072,1863672357,-1168375472,269515841,1609040060,934434400,1100317072,-1300168256,-195907556,475392013,1064518068,1278318364,-1011413353,60533315,-1174275095,296373871,1589445098,-653137842,1515997185,-130337601,-559581023,1500113,-759693536,881101400,736373385,-1940893239,351073991,-1957947368,1383565800,33847,-96040585,201086601,1914598866,4209925,393430250,-31743234,604381470,25750014,1569852670,-200608243,-337187840,1913031242,-760334700,1694945341,-110805564,-1475430868,310460670,101819897,1835953384,387186751,1109800180,-1368259016,-1597180334,401768132,555163774,-2126493655,621432099,1419429896,234841065,239089930,1387543478,-217576213,-1598420299,1387793997,941287656,2146804946,-1776168575,94425525,11280144,-702910232,-1878726128,1917672090,1295425843,1105931103]},{"sector":9,"length":512,"data":[993951888,613040392,1468113847,1271975029,1578705384,1066644937,1333985508,1374376864,408567219,1470779226,-1743241039,-390796457,-401282149,-969201229,-1002469241,-736827309,908228840,1575286657,929285974,2017907319,-92782819,2014960966,432482522,-1952269960,692578318,1524927529,913417444,596567059,1338583917,-1557918926,1388282840,-1463929015,1613359703,371875653,189090117,-1258322836,-1811641516,1723350436,-563006421,734445364,-1323422780,-1948767389,-1834080377,1996477761,695449850,1560425207,841696970,418132680,34027101,1406418390,552856267,1098150768,269778152,1431203326,331053584,1039845674,1787969602,2122552436,192347902,1954877510,1563062373,-2068999345,194671949,687354430,1865659435,-1893995689,1953704644,232334294,-1705704163,-1547214548,248091351,215704611,745597780,662182486,149331794,320321948,1016860060,-392367727,-1115936872,-444187830,1042377860,1143804800,-739737539,-434569193,1154818103,-1142484639,521673546,1493952800,491346827,1329382489,1219288270,1863778508,393107876,1616466573,-292343205,674075174,967126425,522146890,1361680173,623710478,51284260,1241648361,964177221,-236525239,802689281,-2095438926,320949436,167889271,286880852,-2002553593,-2105964360,1859595188,-1048002927,-2008461290,1856777087,-1769425637,1680547046,-2112713970,-2146136067,1578363649,-1586715496,2115110319,134772020,9220177,-1844967701,1247999785,2135347853,878891106]},{"sector":10,"length":512,"data":[-1195927530,-1207004896,1375739588,992000163,981632440,122213048,1421326357,-1205868286,1928680013,399533240,305915012,981580744,-316351045,-1998512369,1224927315,-1574824642,-1792407523,-352310040,-1729829851,162730731,1405618763,-1672997345,296292328,-1407356113,-2047606764,-497491992,1763224621,1012322311,-655863080,-1777252844,1961365194,-2010594488,-1808142266,-119894088,1473450971,-621356431,922262746,909568730,920443559,-321252634,-878919382,-1813510639,1898315832,-621406444,-621402687,-631910664,-2033182484,-1056807305,169294904,809832284,803244081,1043832600,-57357973,1435240665,-2138312701,-2088991548,-2089319381,791549248,-2093600782,351178172,-569607642,-854812399,-1103426416,-2133718474,1808563866,-1233121226,587022355,1147203190,715131465,1862429602,-265620916,-1943383020,837986323,-1962019114,158616964,88246514,1922346249,1096921865,-154210421,-1811876767,-768177277,-229846798,1106123010,135325854,134224828,941138538,839943688,-251586296,-1355151178,-88656583,1225239177,1979982862,1368064646,344269291,648157290,326372930,508505886,504643861,538073064,448492471,1584325479,2016309563,1303708705,613760106,928889615,-402201144,122911440,-2012508659,-397177676,1407927570,-2010865291,808263047,622999497,300754412,1257543530,673442597,575354629,-440014781,438904964,-2130706942,-1167842765,1157428488,907374036,-201321882,1433790641,-1347325048,16405029,1392026493]},{"sector":11,"length":512,"data":[1930522600,374937009,-1213234766,551413762,-1545320252,-953198078,-159735552,-1132400637,599033881,-2138868729,2079202421,131006222,-687475999,-362928386,1443097340,-1109969893,-1166932746,-164543130,-159699033,-287864371,-20246881,-632275830,-88353143,-884819030,18581136,775972213,1930843557,3035989,-694231650,-811715945,-1698138978,-1629617041,275095260,-916453936,764419096,-382913150,-295960113,1077545862,1409322101,1831382249,-1339666750,-746237464,270116868,197096102,-31166706,-49349618,1960856847,1496406256,1140090957,-1928068801,-2103905720,1907102940,-1590678398,1226587981,-384036305,677701172,-39021534,-582688512,-2120842255,501982470,-1133311637,-521743223,-1199185692,-706119598,-591282176,-1345963198,2113320239,1128432643,767218557,-2137522127,999879924,-1044417080,-1149405,84320884,-1533764492,-704254011,-126483966,1867350134,-2021341686,201654659,1137730816,1950742483,578364464,854863488,-1843500980,871652813,-684554327,1400952706,1420830441,-1539807618,418119352,441107644,-2059395616,1409593094,1661897448,-31467258,20257257,140542,-1984081432,948708178,1111123983,-397197240,239871738,908268066,499443734,-602329255,1091603876,274883089,1046752521,1932548308,-494051820,-1538586831,233186782,1148470833,-663441944,275468557,1459033281,544658960,1726484702,1410067213,-402227992,-1549462003,-449657865,1365819296,-1544990089,-495982286,1967682890,637826403]},{"sector":12,"length":512,"data":[-1150344890,1429209284,12353654,6649437,-485649299,991031848,1921062284,1824571443,-950994200,1868232710,-818149960,1328527465,-2143263602,357040958,116795252,1950374650,1705262624,-201326664,36081281,-969483158,330843288,65754158,897000147,272650410,1531512368,393100099,271229673,-161242826,-3717785,575411338,-1829711615,-1109120425,1326000189,362879000,-1959102203,120354133,-1954910149,-953846358,-83884931,1015515890,-260666487,16770689,162632128,-2138511661,-2114803974,44143067,1846534258,78710053,-1991253805,-259303397,52955208,-219745162,-2097088373,1727445168,-1963457552,-2054635900,259621748,1963505928,604158472,171904659,624429686,199872,-1979522863,-317867124,-561397501,427263355,142158780,146646511,-759297926,175846230,-1074290125,394014978,394363075,414306859,292008680,-1786150018,365754240,-796191294,-1521810960,-1055780590,-1977111290,-527772450,405197354,-955246400,1258470895,1266830183,299849604,1444039622,-451796022,-445618704,16253680,65471080,-2054491010,-1628110139,-1808563098,-1127971515,-15702492,70291124,-1560090612,-2071375145,-650750584,1439181111,697427999,688448906,-1965545000,-1796887929,1863570924,-2067379381,-2086591376,423526432,1079184756,2122321022,108331254,-26488222,-109387226,-2143690187,-162389320,1291755207,-971175416,-223246464,-403800445,-126614286,1067914493,-1809222401,-26822745,-1108579182,70998857,-193494904]},{"sector":13,"length":512,"data":[-1200253320,39920096,1455474983,1279303408,-44876304,-348927308,444026722,1459708604,-1074718715,1963297534,905765089,-1628009892,-49260617,-251068144,32390812,100298361,1401067652,182558898,-178414390,-737869547,17819925,1634991775,-1995964095,-1875236333,-764144888,1251592930,1489276459,100461421,66610486,1954924286,-1328478873,91620725,91719111,2081131007,530741765,2081782533,478765077,1568703967,2072249497,75629775,1569326216,-2027599036,-335175382,-957471220,-1741273595,1603240029,1990045236,-231844884,1860420921,940444705,1248109592,632815452,-1803459796,479658164,-448585480,-1987872896,1491568686,513928705,1008164072,142859273,958589163,-653725172,-1086102509,-1308454424,1083183135,-27924213,2055563188,187718403,567569696,159634829,-2121148019,-1811431564,-1895122827,-1574726869,-394923393,224657541,994745376,-176328916,929761437,1545696619,-1457886401,1731329,963773513,635739789,-2043485185,1386367021,72373835,-1042545030,706167674,45424349,401146751,-286445804,103398292,-2113796993,-957456777,-1055355776,-295702993,967571980,1315608613,-1926952667,1881951738,125978362,569066631,-668436853,-264074514,1316853015,1299417224,-397993020,1000496549,654145293,1179407056,1105786019,1030848854,1488109440,-1021217760,-20503232,-411957101,-1192930539,-1882566632,-1016281027,1370983075,107175656,1546087403,-2068020344,603980675,-2088584063,209092520,1342227128]},{"sector":14,"length":512,"data":[-611590073,1005277315,-1479423048,13940927,1143442511,308057423,13970938,584480621,538617118,-1394081551,-1034528951,1686472963,-981221628,-400139766,-1698071677,-433511392,-1528020342,705091460,-1612503580,1880597284,736504624,75556189,-330920474,1551558736,-433355960,-1440691081,1392923625,1563394497,205856047,1598369574,790315238,789724390,2122533628,795347174,-946524164,-965425087,733843219,2011891307,-1805520138,1563919136,839146807,922803767,-347054793,-1595426749,-256355361,1460224256,-1604625900,15809363,-2076673791,113713851,-768713986,1141474675,753635423,1526374976,-392098236,-541553831,1947218712,-2087476190,-612433836,707743578,-349542626,842815063,538830425,-497783,-396527695,-1591733055,-2081929473,-1776752514,-1962758158,-221472500,-233271062,-102665216,-637436556,-436172255,-2004157817,-1956809596,-83105186,1963678949,-1534395381,1988371162,634292237,740574095,-545815464,660151524,189685369,192547839,1834257152,621640511,-1962852406,573144125,1737164058,1596144459,-2137731564,68716711,524988299,51712277,1842911115,35384622,330549787,-195589367,1920161630,344232989,1460185589,-1712713451,-145291499,849943301,1778789931,-534316465,1561189403,1561158656,820531264,2078429504,1050895453,-88594969,575481534,1895468619,50779785,729189368,1370763397,1884170698,1482525262,-503970528,1983054890,1055751870,1597029021,939266186,1130431075,1242584656]},{"sector":15,"length":512,"data":[-2022267320,-1149370032,1863463234,-1477837577,870774145,6124338,210544449,688184434,688237208,1869424905,-1322943483,2017559161,-381053113,1561328595,1447374241,1798883626,-1390917594,81550706,-114319328,-993504678,1350563512,453596492,262211106,527496956,89848481,-2131492797,-195115792,67602982,1380057152,-967281599,-956172218,820771525,1561455548,-1172013820,1649145250,-1664553662,-482804113,-596261446,1275794826,768863215,705696508,33977340,-974396525,-1369638853,-1706397099,1861447874,1812652167,1620568147,65597558,644147288,-1845256128,645195978,-702368123,582386978,1313153736,1947122210,2112311556,-1973526254,-899808619,1143395445,1393918423,937972800,-1174262784,6134352,150995041,4241603,113760398,305397874,-2144004680,-1943941772,1958939584,536876559,201332605,-850439240,59925,2109800447,428084818,126698240,1847364856,147323478,-200926428,187269376,637820612,383139712,1052340062,511982705,-1073756559,-2116287770,1142308480,57843720,-335670718,-740521212,-1844999630,283875156,-1744649438,-101054915,1023482976,1215561788,780137521,113255471,120576650,-105316079,-579404015,-1675759006,64342765,52588934,67107446,-1013259506,503933184,547023657,1661047017,20184985,1231647501,1852982881,20648318,765796763,1058095730,1083851581,1208814463,1227743775,134722305,-2145071243,688852748,218187933,110568202,535817158,521667566,-2132808953]}],[{"sector":1,"length":512,"data":[-377422258,6698534,-377487818,-2068315873,2025345027,13338502,-425665176,-554229248,-284986931,-252295541,101306371,1290473988,-172478967,-341755265,-467203547,55582298,1731134214,1755577463,106791427,1524802548,-1751885333,557394750,1059269757,-2147466005,803944417,1946177085,5193101,-16108408,1144017469,1040116488,1035736403,-1995240105,140054012,-462749887,-1273874895,302209277,34028796,-27235266,-291046152,437847805,-2013898112,1946441329,6196001,179364480,758117926,-1163197984,554863446,1560769825,-1002050766,438888589,486551597,544483309,544645515,1202212799,-2110901322,-375123804,179895645,-195544781,2056358748,-1056755256,1343472704,-486129792,1364327732,-1075104705,540929660,1610769408,284866717,-532247216,1422387280,-818827049,679971040,-519379756,925258506,1409999370,1510662922,1132484005,1127933038,-2075979520,1125655151,994061094,1988867120,-590602232,998295294,-1963018464,1913161649,-1006104084,-713832096,-234008060,1442923602,1247674894,-1425863078,940465839,245000534,-1504244219,235277929,-1274605992,-2141647283,-1799530508,1728812863,244799709,239940616,235474522,238343003,224136714,-1055866527,72761043,1183696208,-230258180,-1275832692,-1071769997,2122321891,947126276,1996423456,176701710,157204636,71731806,355642628,1948568062,547497607,-987565473,2001655684,853665849,-397393341,-1915602482,222104386,1231172361,-2012201911,-152007784]},{"sector":2,"length":512,"data":[-385629308,1241518283,3147160,494126651,1270681213,819679230,-100617193,-402160120,-459595933,814017567,216596784,1848283137,179770484,-257563899,1512108196,1952548757,1585953311,821046396,-2081157516,378610496,738248220,527472354,519594356,87130195,959283284,-1571517583,1945798229,1408821064,-1774445845,328933669,437789980,406458492,-107681708,2028822878,709825728,1968064078,102824928,-845156235,127727730,459421388,-394068356,1021310080,204926722,-799346713,65996946,522120625,105377128,83159095,-517973267,-1070076617,375385491,1378170871,629804903,937994418,269970441,1277001700,-612848382,-1559161687,-336555768,-402417656,615315434,1656615595,121898063,-338633724,-1191159188,-627036815,1314579520,1317074936,553733020,-136871174,-134824337,-93386490,594515034,345389937,128750011,1847373288,-1143540091,1843942100,378263636,1902728898,-1237410045,1357697283,465101877,1360147712,991973640,-1301453796,-1058150655,-1174454823,-928548226,57559041,427497218,1663733809,1950563585,24701305,1025778144,-1041498114,971508155,1591326851,-1217332045,1183516166,-298714983,104400902,217582967,1211113528,1996426327,-401603822,-94308684,-2129462749,104434222,1054135353,-171477703,1791681721,-245660153,179899883,-119502911,-235417045,-1870652365,1343293547,236271121,658699013,1002589785,-1120548577,409665685,-413892301,-398625277,1023648341,238680150,540645542]},{"sector":3,"length":512,"data":[1368538937,1693125295,313295435,398301228,-1503245727,1030045534,-745386413,812398195,7096733,66596879,1515096520,-1830268658,-285674953,-397660894,838399420,-2081864433,-568141058,300438560,-384130361,-1545339278,144509577,137369637,1396571968,960301180,1913487104,1929344697,549745355,103870994,957579605,-343875807,-400368717,1446587571,-1129048937,1939016541,-391822577,-1272577675,-2009832833,173309728,189234979,-2007206653,1088968322,975315768,-1217592250,-1883696384,-1559882963,-1935395874,434927456,-629726454,318831223,872056266,-289846168,1906013187,272106498,888804732,226429133,2052676204,229558723,1096098164,-1576270239,1289388115,421137948,-1441061844,-1441068874,-194494163,-712346048,522090825,-2014060212,-2090525079,-1469753896,931017538,1678052498,123402381,-464749933,781439421,-988973700,329273940,1695688344,390084423,1452076260,-455041810,173443973,-1979890560,938406998,101077086,-1830404989,720064752,-1422411877,-300547088,-329526013,1935647915,555363071,1589910162,-497571086,-1111316795,191515604,-473613245,545071989,-1630953157,-2108400383,167833698,1244544788,1247115298,-571473305,1242059569,-970586004,269097735,-383285103,-384171522,-2094530057,746055180,1325335007,1318050281,1895435151,818279898,-1950678922,1183446102,206997992,736881388,-1977161616,-1703870137,65685481,29917416,-2144606199,549288063,11127669,1484250383,1229996262,-1645660678]},{"sector":4,"length":512,"data":[533987932,-1023391051,1038363167,1024654919,89600075,88948054,1074698596,15936116,-1403956221,15002049,58979329,218159337,-554982444,-1439365568,-1164299008,-1774906645,-348840558,-18560858,-2110752536,-1207111375,-1072688874,-1200496463,184896872,1980173056,1960140150,292881249,167643012,-1861256575,-964467613,653346119,-1991177647,-8806077,1894355082,1474615295,385549012,1967680064,273104969,-40092900,-1870494414,1446266853,-984377160,635641962,113191921,-392916419,1036059090,-918084562,-1611108121,1304654317,1184957509,1307899732,1215816525,-1460134495,1965047024,-2078583035,-1796916652,699969207,-57766576,-750258605,-654062402,-1047747,377719476,-149401874,176949860,-2042889610,1102598638,1252085584,-344170488,1414308287,1218574059,-251296232,-335196511,-419082079,-1302244703,1419895301,1073863941,1040143888,-462159865,204760125,-721062651,-553264323,-3882179,1453441285,-252135642,822469667,-1682430720,-154128712,1355824580,1601639590,-1672009215,310246121,160952955,-632126570,-1193171677,-609688538,251941108,-1976622789,-1593455306,-301605583,-587246981,-1473869811,134364670,-1711075287,136382472,-24115196,1352078057,-1190391297,-1744301821,319447515,606531984,-1106700532,-1823294248,1905396787,1402010768,-269579288,85917640,1778576225,177092121,-390179840,-1588055471,-1377230344,1482630144,-519546628,-203581790,-207148294,-1762226696,-1723232941,-416802058,1023181969]},{"sector":5,"length":512,"data":[-738556734,-162626379,1341948680,1016300337,1066234379,-1773835084,1008303962,1022915514,-131107949,-133304628,1209618982,1911275519,1818193230,162755064,471915974,1930910589,568163661,-85631533,-1300508205,-2144516902,866839389,1252360859,1569037455,1939880648,-700774575,1530638875,-910085514,-2068133963,-835429197,1081452267,-1693752463,1623809838,1524963701,190845536,-2141188053,1554207144,654261225,1055508,-1638508752,1145653634,-1125584102,-1895492867,373507501,1224915128,1173437074,-2061174529,-1848563741,-467246036,1632715243,-2010807292,1650112626,1658602738,1765393134,1583022352,670328965,370195704,-1585345832,10795120,-2090113015,1930949758,693070439,-154129936,765790413,-1980816434,1640942125,1758689373,126618209,1562249774,1480126496,-372310184,-1861943467,629503762,2014283161,-167611382,-842985369,-954958220,1381841454,-1727930682,-397222790,-1178014949,1705584,279378561,18538522,203062164,1864019482,-467999004,1927997210,437394150,-367623588,-400896947,152751386,703291951,-1833077547,266111779,-1764677804,-1796234992,832366675,-1728690550,381878705,778758144,1448598418,1560397566,-66918261,-1680862922,232831041,801243504,-1038337980,1977987627,1498141856,910975054,174744943,1780732520,695090,2146018596,10607617,-2071203622,-2080144502,79215087,-2079062810,2079100137,-1178925709,1426451266,761590970,385967144,-773944328,-1838832,-2124749129,38047056]},{"sector":6,"length":512,"data":[477727269,471934190,-300138030,-1140941749,-486105721,-331124452,676248597,-422238386,1928631484,238459958,-6094026,-327253204,1578922756,-2060042260,-364636951,20252220,-270545291,534838313,-1944020637,-2048162749,167820563,1569666347,-1963613297,395251087,861816947,-1759583642,512277635,117933939,-1093443446,-2112740970,1974230407,-7476340,709019620,788347364,-532136636,-1202019744,-290098247,796444043,-1232796751,302310404,1854472224,213434251,-952411418,-1946270368,734501238,1072295956,-233219445,1389428968,-397192984,-397766126,2064183965,449452655,1247025750,439360185,-1555949040,442159415,-593159592,437787158,446921658,442243678,2043078652,341971153,341893923,666167272,24099132,9994537,-699383656,-1205574576,-912911950,-382230209,895759718,900943473,1042329098,-397235160,-2010116443,-96013902,-2049902067,2022562719,-961001320,616627800,-1512051576,-1375798207,-267037895,211403959,939722777,-755048933,-1993265968,-1194056981,1915299426,1484982823,722541200,612652631,151259030,15867136,1861621424,-940536846,1283740262,1309016128,1356114182,1409700358,117837599,85871816,-64761220,-342301662,398023683,1257733124,-1728912398,576007158,-942381858,-1467458810,108332435,1455096076,3340338,2008124184,1962281859,-12284657,-561280349,791398034,82288547,-393489111,604873742,189965118,-1943072078,431641689,1068636546,475683644,-2026857590,619973212]},{"sector":7,"length":512,"data":[-2066088095,26520184,1752621294,-628506370,116517300,-544016133,398179712,-1110887268,365425774,-2088992614,963704742,255030374,730018355,17909773,-129634580,-1881505531,-1995430512,494989831,1958742973,-332148021,683881494,-2064696034,1867247477,604199986,1606032519,-427521728,1327139291,-1739652759,-390791337,-789437684,1586189014,-1811328703,561586475,1251740500,-1833429241,-1119052109,1496579846,-1724358701,59279112,-1948773391,1959825820,-514639,2128472201,-1967728148,265577607,-1347350261,-1928638841,-116719803,190226237,1231716741,-196730210,21646983,-1524443995,1357603066,-1657165026,105388423,1074202938,1443430018,571271248,-2130593200,916738585,-553142263,1983485111,1352037366,486902025,-741177868,-1661457442,-1081869017,1946554992,-2000011759,296773724,564309963,-1636273889,127795702,-2077651926,-918506352,-191946371,-353704609,-1742656365,-1725866621,1374225262,-1433129729,547122037,2042396990,-1252231672,179855601,119551367,1291796309,-1961627807,906953606,-175631383,105292832,388063880,1928651053,-128376566,858512678,1941704164,-1131924005,-1930808676,2096928008,-1760120341,89986315,27571201,-1948091102,-129873988,-1387251677,-972849117,195777163,470289188,-128021514,-805959845,1913075968,-2088628969,-2088466677,-1267360558,-1485566694,1229158004,-949665404,264112007,658901987,-2059007093,-675370522,-1097052358,235130846,416749829,1337512572,2084308434,300182277]},{"sector":8,"length":512,"data":[981874420,-1336600604,-1684763932,-944232902,65988329,-1123734536,-1601646080,1319597893,-1889727441,-1950675714,1082259462,-774761968,524333910,-1244868065,-848649697,-970595588,-821977866,1637080452,-841657099,-842356996,-311123270,-62612588,-1983446103,-1480621864,-1925589941,-2113276206,1568440601,1591298200,-291076323,-1337868216,849476157,1510602956,440975596,560081644,-249490930,511308268,-319744751,-84863023,-478210094,-1767719650,-1446970840,1111332453,211785419,-1081647437,-1607958874,-944943829,178777775,1023512751,-1566205203,500210292,-1415921965,-1455773230,-644590101,-2118912881,-2054427335,436939645,-1054044447,-1603611415,493736723,-489447361,-1624727011,-1241513736,-1473617890,-123406172,-151770620,-559921516,353707819,403846902,1345893130,199764516,1073259789,-123395947,-123375959,-660239542,489417244,893777398,-123396779,1873141096,-932842237,-1622532296,-358933610,-1655638369,123117312,-1014834988,1096163356,-402651631,-762895783,1584701196,-442723017,89039721,-1399752379,-1004503005,-1956808706,403705544,243874152,-928375437,2041345282,-978545625,1445054082,577792551,578618491,-30999824,-2141656394,-2133677612,-558834721,1406878963,1470627839,2101576210,-985456442,1978922027,261763804,1581400068,892485877,987775145,-1073021904,1466554996,-768289187,-834880251,-898366148,-1840104130,-1498078992,1380655442,-1845273327,-2071227772,-2088196370,1574736217,1118716495,510898570]},{"sector":9,"length":512,"data":[1226519829,-565488139,502231168,132645504,1413968914,2098676270,1120041759,-2136600832,1956634119,-283120064,-1430241058,-1066123017,-1331086173,-1393938370,-174392201,-252028361,-1132924678,780970341,-813951076,1283156975,1285870180,2099840747,192303923,940757594,-37259952,-390089665,1592318700,1582721542,-338530312,-717018868,1747413095,1559824985,-1344932403,605392988,-1449553828,-1786496738,546178812,-1610058495,-2081439118,1996381694,923040405,1202593116,1347624575,-1277667686,273159083,113647214,-914980876,729157451,-2075070965,838789246,253780195,-1604797790,1531578107,-352273432,-1018499963,201561222,125044505,252127368,34802293,21469834,341966919,340244295,600136453,169451033,501941169,1239787975,755720371,-793488308,-2099698084,-551215591,-1681238370,1956667189,-1378530910,-1603972532,442018728,1158814264,589137640,-760405240,-384490501,-1575391911,-327154841,1448549723,-1996781336,-12781498,46334288,-2146926976,1265518965,418255290,-1722732872,-310249848,-2067396037,83985287,9899532,2046626294,-1784712700,-371094986,746636876,-2034821141,2041249817,821950717,386317671,-1990313060,268202679,25052675,-2050619386,2037778435,-1993046902,-2089056888,-1966991355,-27733369,-2122707256,-2089909364,1962948285,2064509924,189882456,-2089450117,1181008839,-376102258,-505140655,-330166153,-267950973,-726848578,1404909787,-1695163340,1160823781,1372138284,691274002,420321305]},{"sector":10,"length":512,"data":[109837910,-2103507317,-1991738237,-111246187,1029282527,1070049937,1065975316,868302977,444229889,1082015761,-2088700560,-1442152832,96719857,-821271061,1115817820,-1946408271,-29332336,-768898130,898885644,791735046,1124972675,-2130163669,2141730488,669140086,-804656380,-402426111,704698159,1870234503,-2079107352,351660119,1111516016,-1993428001,-2147437286,777605646,1396912149,297696138,180915024,-939312704,-2087140991,764995665,-1205506093,1043276231,561455500,9276069,925654,-1501262104,-93670118,-1243246539,1421214137,927148505,6124732,1565714999,1565691523,1565676586,-236888750,-1033237760,-138979129,-635341535,-626820515,1676817245,47000384,842065010,735083031,1901926866,56433015,2122681659,-2138716323,-1435758952,259129617,168363895,-1157620184,-1685360085,-1156160483,-1153216419,907000669,-214158368,428323510,1068916168,-1230430189,-2034410403,1367800054,335082975,-119391167,537315467,1317652691,349801458,-2027222526,13670506,349993286,-933983660,-1430711480,-155647928,-397320742,733934594,-1814310438,-1658745823,-632913621,2047530160,-209021807,1444464830,2049584645,1353161734,87395603,91620725,395543751,1165560810,91885777,58463611,-1070918341,-2088729463,1330241796,-2113633148,-1356958589,-1978824695,1347279235,1276897355,-1433435398,1825074354,-92459232,-513924822,848721195,-1751731149,1570148746,1568015766,1570147624,273195670,360383866,-538354308]},{"sector":11,"length":512,"data":[76963222,83304324,867995924,-1638036988,-309113507,1750082977,-2132245043,2060491562,709925693,-1868865730,-1789473892,-994424809,1568675590,92618212,-771873738,8767463,1175224596,106620549,-1993038712,-396832246,1300536386,-697169794,-932373064,-1445450008,-1686518843,-27573020,707421043,-1541143223,1126482069,1526505564,831012644,-1603933054,-1992271105,358187519,12592412,-127803183,-49378814,-1056183027,-2109154023,-1039092138,-343394879,-1067545953,-1996537080,-513971521,-1932456725,1203374055,-2031031451,654369628,-1206467610,1544980796,-869364627,1410795523,1802658166,1744951230,-2147219816,25231010,75399514,192282879,112264463,-1333796654,-1573643512,2048791420,-33097053,-151630685,1342421119,-939982318,1543766275,19159884,73211598,-695069145,-1378486372,-740250025,-397169577,-1665871268,-1709372075,371825180,-1688843863,-152134676,-610732821,310888119,2106734326,1912737935,78946649,-1988747333,927385206,729999581,-1492877608,84585995,1116792997,897798085,-2142828986,1490204455,239361689,-1782564667,-1868541395,-1723415251,1106663049,1125020987,435448849,-2031238570,-2127795597,806758388,48928883,-1727809532,-264336587,-536535338,1477765891,179115539,-1961491528,-2096645110,-1722220334,-523109799,569279493,-1323792128,-2146653903,84384830,-1202122623,-2042712838,13529172,-143265274,1959922678,26571779,-937627018,-249766581,1601235014,39855374,1864312919,-1086517525]},{"sector":12,"length":512,"data":[905616729,36540248,-537359564,1176907524,-502490923,1880816842,-52757030,718931192,251269443,-2046844184,1301988,-597819352,626721953,115655681,66611136,2122554997,-2007583516,2044226666,2103709771,1565320770,2068639304,1889877761,1882768026,-1787803333,-1652037394,1463306591,-68378553,1711213822,1893754680,972820701,299303370,294387425,904648912,544778032,1177303011,-1674928566,325385901,1738892075,-1451322724,547623817,150105085,13349058,-2135915252,1946161982,52658185,922686069,1219030186,1894273812,317420239,564134915,1015027618,1963292168,604524626,814987795,-1828419565,1209561858,102959207,-1575157494,792861501,33567381,-1977772647,292947550,1783537187,-224463874,-1612018908,-343218926,2089026801,556206339,-626026114,-1815080319,-587203880,-922829374,2028539137,1115747476,-67862853,-233688497,-826145403,-1200113536,-236828281,73800654,1073929106,-256757086,1912123911,1650000186,-988678980,2098677027,941003806,408944439,-814559158,372019421,186908928,1072664639,15231476,1783305262,1108921076,-2053431264,-2029976602,1443394628,41871447,1771344529,932039804,1171350769,-1142674696,1972374520,379057775,1935551898,452199954,-576196375,600860973,-317654648,1964799231,653928127,965628109,1047813471,-1498141018,1523097995,1761632667,1619879601,-1719300298,462887777,-1741986811,-1221263007,-956185431,1400369650,1226208242,-1974336639,956246744,-209292065]},{"sector":13,"length":512,"data":[-374437659,-279511443,-1457449294,1443939125,-830208329,1750979851,-497423999,398462557,-427752330,162595071,-1350310189,-92239326,187074560,-253745870,-120356010,-754667083,-1993810720,713295015,-956799245,2101164423,402284526,1029278391,197907463,167447413,-2089284860,1988922046,-2135347069,-1056292895,1998126104,-47980649,-17940469,2047606407,-16037147,-717652725,1715043237,2081959646,571146531,-1802790828,-1618992256,-1308731767,686549016,2013600286,707667225,-1950537994,235146946,-999840567,-204012788,42418751,-113350569,1976206484,155102526,138324693,-640809154,42665534,77951785,-2099053965,-1959083039,-1959066283,-1653021526,1667613430,-1927183640,2116551905,255602370,-231849937,-301862264,1031926408,-511173668,1142380864,-1920466734,-1615529050,1077960709,330937960,790463150,-2019402380,123808230,1568147451,1566376224,2121245220,460788988,2042365949,134128179,134154106,696087205,629614971,1880836489,1214073016,-94237171,956061321,664996396,-1073003358,1084359521,-15178013,317719458,950205116,-1448704978,154039598,137274667,2008811310,-611645906,713733910,1376050796,-318832827,1572715012,1787699656,1782897201,284061439,-185722559,1845905424,332153123,-1467840274,-1188186674,-1962245272,-1553396786,-1977275387,-1963455403,627051653,211943692,661940363,201689870,262336513,1568507306,874115172,118495625,222433919,542187527,305367825,871171285,1632030710]},{"sector":14,"length":512,"data":[-353502059,-4880176,1162931318,-494171379,-536463068,-681040100,196535409,823824677,111158534,-1574556854,604326421,-535606764,-1961735513,636093268,-202710698,616712520,-1119247916,635586852,-1800529502,390666313,373907666,-1526681717,-769428340,2110533206,265988295,-345853441,595678739,1637463829,-470441752,1259594329,277180941,839669056,-175066841,1078328329,656549576,-605552286,1728970516,203325848,77927020,101065379,148486183,604957603,806097336,168954312,-983891805,1134052314,-467507124,-1005572597,606919,-2729806,339478821,103577832,983679291,2147262950,-991362883,-1977156514,1093313031,841514997,171661268,1034288443,-1487215557,-754396260,-684719878,203448425,189373322,-722737066,147999076,32400097,100894377,410420935,8519608,-2037780831,13107064,-352316442,345949205,404168703,-59339928,-2000944607,369064578,222265382,-505955979,219465236,724676,772114061,516365662,111314213,1526859518,848582861,545999385,-811407362,-2059977711,-2085156851,1628373822,1085807221,1966684555,43051011,1891107344,-400356209,300614167,-14606713,836440948,922694532,41609228,-1304929479,-1429236643,-1206698643,-682243687,1803770666,-565962673,85263939,1912953036,113484341,1834487574,-1650516340,-821339972,445154136,1490093520,87460155,264055228,-1098508257,192956504,184899776,-955098943,1489230819,1489307180,100725048,105666759,1566202057]},{"sector":15,"length":512,"data":[1813120672,1489740443,109718796,-1582247862,-864007162,-2137163525,1021002044,1057690192,-1860952832,371022605,403103067,419434331,56302109,1343345336,1348148152,1508426178,2077735124,236981929,-136573365,237309666,-1511649731,1090617397,1194384942,1503741744,1197159075,406109667,892068280,710677035,975910955,1009482325,-282378709,-466927555,-416595669,723211433,-1437719220,726664948,729538130,736897876,586754901,1458514876,1570541916,727539243,-283550368,-1206361557,979577839,730984305,-65828805,-1573503661,772095493,1094352959,1126135812,1057360000,487343441,337256985,656082341,664293916,-2145376482,570826624,-720611313,-962854860,-1958436863,1362180369,141366144,960037120,1972335110,-247234549,-1888182015,1065357987,404001941,2147357824,340088131,337759765,355371838,419763432,297619457,-1990988530,-1426583820,9693187,1431837397,-247503862,1258797121,643538664,77136395,63023003,509601,1527423763,2015120033,1242080139,-2122753274,210896674,-1714549499,1526861915,219088208,268783981,-1004920741,-1627306887,1698965092,1511100243,2016225286,923206944,285699457,19709386,494974595,540818214,-1573027479,3952209,-390143562,-2141190940,-2127691879,19791486,-1458517634,-1459201757,1343368193,-2091514083,71612542,-1790937824,-1661796353,1993825611,-919219501,-386017524,-612294960,-195655399,-482783150,-3003435,1057759008,9497087,4303,-488106831]}]],[[{"sector":1,"length":512,"data":[-773140194,-1966830888,718703330,2046185207,1997140014,-1444883684,-2067064577,-2097081213,1759341333,1818550164,-1517227791,-840372733,1164647710,-1486948431,-30081996,-164299143,848772025,596703486,707959784,-2740323,-99693752,1905410654,649397813,-1411251570,-402338152,-387524830,1383538164,-398176238,-230351393,780529,1464569142,98457352,1448198904,-1284948998,1481967776,-388902695,-1569182323,990270995,1543234993,-1486917404,-897747707,736835821,336440838,1689842548,-668348672,-748164970,1125092677,-1225838619,1242626579,490482442,105810786,-372174848,-751051989,74910066,812826939,-94829060,245593700,-90175910,646018213,624653441,485706213,-2034171068,591746014,1031682174,353138223,1458262005,1448027136,-919534384,480595554,1673788952,-386268349,353037298,490869502,-805240565,874786225,67405288,1696604298,1543838014,270607842,-1925572589,-1525643040,2052664516,740502695,-2049894425,-1864295016,183173886,2009081455,1092108585,1140983821,-2114255162,-1723847676,1721016848,-666592248,1560828065,1427744504,961400877,1584550681,-1019778816,1547983873,62669454,-689845127,-24392577,245695307,214728323,-294518718,1183652509,-1555080754,2001135845,416899326,-1914673312,-1118323537,301250560,-1130159306,-1323965160,1312582793,144839356,-157084416,-930259480,963967512,1186040877,-338951222,147233869,-332629759,1109772017,221997078,6262,2055261329,-529256724]},{"sector":2,"length":512,"data":[-1947450742,1868442590,-2002597158,1998509767,-1547567886,2084766800,2136606283,680542021,680820839,2127073134,-937120232,-922544111,-1903202377,33432622,-2027410965,1460033416,-1956803754,1615858245,39657728,1426869643,141921030,1623217503,-2145701734,509041929,-1996125946,-1994783130,-1994749670,-1614793958,1166617752,168056844,-1710910621,103294293,100698641,817104537,37495245,46340211,247406797,734541451,6324727,57806965,-1896217154,2126807511,-68321137,521539699,1291974632,2131101348,-2093855489,284229348,1579583798,1415185748,-2143631733,-1556723590,-150776744,1125648265,-567557236,1253366775,-1073727960,1422859916,-1074002154,-2135336838,2026843023,-1426898146,83901260,-218102894,855769576,-264830995,1626211412,1424753688,1670176488,-1967652638,-670994290,905970616,1628984398,-391744288,1633173245,385830912,-1308228591,-1202400861,-1995950848,1623244062,-1090089900,253693524,1932966437,1494390787,1469320843,109981411,75385,-989844272,-1940417018,920335322,-870834433,91445138,21883168,-73788106,1673205176,-1059318762,-483520978,868322870,1036845093,-1188269056,12451852,-212553725,-1190431578,-222658561,806974894,115731200,-144570594,-1403725633,-2136174184,1958805121,-492156927,79380983,-1717075968,-2017520383,175277124,914408182,-251300736,2034974737,1470021351,52732351,151036648,1175453834,1486929459,2112357311,-1609142678,1397257238,1242437588,151021168]},{"sector":3,"length":512,"data":[-1175977876,1942270720,141512203,1880621644,-1157623879,-2013921275,135790943,1051985012,-220052623,-1863448600,10269785,-1157169118,517668866,382012444,388311997,202145823,-699073986,-73392627,1425806676,347340817,1945582531,-1957736694,17883917,-338558986,-2096230414,92996847,1158349824,-887806,-1007752419,-544916992,41625084,376258179,377569805,-1916764153,1409444328,-369311709,-1957036453,-1059574820,507246848,1081234690,870449123,59840,861339205,4372982,-1392712654,-69017550,-192923892,-1360494507,-116945409,117582909,110084958,1426343948,372785850,695489745,92758064,109838380,414964,-2131060415,-1359806669,1207661998,1626376519,-1185615298,-772337921,1891619211,-2118239484,-1403154944,7610428,154991543,222099316,2049142644,1313303479,-283908077,1544807425,574380051,3941492,57957531,870640450,186597833,318793722,-739114236,-372129397,-404696813,-898301528,825819627,828161323,834280999,829771756,-1070583333,379055058,1424790815,-783821053,83886311,738124416,-1547400222,-661957394,-486475005,-1992947946,-985447617,-1431521994,-95015066,-1389218129,-670831696,-1256990806,1711308575,2045474724,871868816,-685909057,1653509086,662396558,-1433484614,1555039935,305360115,143656657,2056457843,-1027273438,-684772306,884416810,877837292,-191482663,-1882376989,201836488,69627655,57797717,-399202731,-108271221,1112080449,276100619,351061646]},{"sector":4,"length":512,"data":[608075814,112128666,-810662528,608212805,-771912706,-507182107,-1084801508,1593870345,-812974074,-1980234990,508882990,870223367,1240875008,1015092195,91505467,1157660297,137889349,1317662178,1576933457,805525049,1451961175,1470676484,1740782509,-1774189392,-1835594636,-1947717568,-1762923529,-2063441313,1468334786,-886306368,-1810625281,-91516360,1238497061,-1259725694,1596050752,13667113,1577452288,959803988,1934907398,984357,-787546032,-754732584,-1948676888,63646680,-1899949040,-1663530045,-986156456,1223697424,780899765,20054232,-954661866,1929089513,856344851,1358459769,417915208,118183936,-1845489944,228182024,15262770,-1023409920,173331618,-2145159708,55890238,218110066,74654268,-1341820384,-1878529275,320340028,330302070,-682293573,1439277976,-1006617462,-2084571157,1448543468,726998206,-335554816,1157009429,158630662,2145025323,1951924288,-964475135,875968776,-2082049194,840735085,-249548024,1149896310,-165373945,1043187382,-1177833225,1002954961,1438434232,1273099559,110035718,1283459911,-374923258,126353680,-277544606,1686110737,-276764922,-1962785567,-58816008,202917991,-2116132235,1305182699,-775713797,1617691619,1317533224,-25082319,277042468,1428948558,-2139540619,-1592816267,762691595,1427769087,1964867592,1491253254,-1198521109,101724,76088403,-940024181,33555015,1268254662,-1878463743,-48325422,140837628,906303861,-1957661595,964438844]},{"sector":5,"length":512,"data":[1081715006,1212123967,200597662,1460895487,1891196671,168457078,-346474743,1158123546,1948314066,-490543089,1394469774,69327592,1552615632,-449252348,-1877480697,46631694,1342501969,2003383869,-1863501507,-18119220,83104141,-87102333,103437826,-1191293834,-160448056,-1032338933,-1035477883,1297055759,-32584454,1815019493,-117173735,557876476,2132002585,-755791082,1101596553,-1034026968,-1040187388,-1962988796,52692548,41972796,453330549,-2030204121,2059224620,1129323390,-2063855936,-362572863,373295163,-1075705996,-1211826177,1153893483,810029163,-402561864,134806135,-1635349197,1486398462,-2002270301,2091058182,-1836743435,956550744,2095646352,121405442,1478370694,1486098690,-155075839,-1554479965,63753344,58852238,-863370356,58590012,981861242,1478623390,2088763424,1014312961,204475718,871039084,225782592,-1154087169,-1691676222,1636601890,-2095964142,1962938942,425943829,101706517,-670438592,1965889776,1179126737,73663626,1376253388,-1699195160,257472499,-2006118554,866478,226888829,-150298329,939893720,2040231214,1183584547,-718629846,220871757,516819498,521076664,809909590,846462988,889540157,537225277,1823585085,-920582525,1563295746,1278674456,1964010572,184960513,25749787,2082149615,137645539,148572176,202311688,-2037822765,1161690780,-482538940,84231949,-2096546755,63920256,-1960831101,6499589,-2147478211,-385649152,-1073544940,-1476448621]},{"sector":6,"length":512,"data":[512458036,526620675,-1990684511,964757153,1776878091,-1909157887,2048515128,-515817959,903380923,408021479,-342581750,1484660464,948715094,-1775672943,2022705039,1367869942,81720298,-1067710275,44075041,114559937,661936282,203581409,6194718,-1707183058,-1010036096,154043280,-1073014011,-1120992643,1804470576,-8380542,-1198144784,-405861830,-1367089586,578082674,1799427392,339213,924465315,1095914890,1090816169,535380414,233326591,-2113982487,31595888,-1862325527,-205318119,-23284016,421575144,1878982665,-963968140,843221838,88426494,621281285,-947128971,508610091,535685206,-141847161,2084250504,36633980,1500876224,1484529291,537282550,1076449140,-531764292,-428082052,46920828,1090783984,2078540522,169245712,82617814,2094012664,-709998526,273224564,1967747082,1174727607,1754307051,1123587091,-1034479377,1662055434,-1433333346,117928962,1471760,-1962425166,-2146041257,-352044338,502426922,487677480,-1206199025,250623432,798560656,941239325,225766616,1310985036,-344787708,-1672719848,1486370343,1971829575,612224846,1971518472,755287575,1545416006,1205401542,-621329282,597998924,824097537,-1673097861,-125048789,1098536947,-2112620102,561263349,2007492695,-368964087,429402968,-196179512,810717235,66109778,2143292233,-2145775115,403016280,184846336,1631380425,746587004,1279739424,-8552434,344910215,1112442017,-1633350824,1970100452,42786833]},{"sector":7,"length":512,"data":[1830204120,1620050494,-1942613962,-1105955549,2038997283,-1943771912,-1846936994,1058439936,1059877911,1976039678,-435937698,892955459,707952766,-96072712,-1199095679,166417974,1975488656,1446885385,1703615528,726549763,972454028,477426486,2057158891,-1208852796,23893534,994490676,-351240498,1900450029,-210430646,-30717813,1977290818,518543111,-59177244,66779203,846194936,469157694,30209283,-1433546007,1743535069,652217716,74794758,48955824,345591338,-1455290116,431622,1961642104,-2025901043,-2022259437,72908854,-1358456822,-33056761,-1822419201,174085706,-901246420,453735710,-1810406890,-1760415720,1712932306,611697433,-1675417010,-1567977346,-412594413,1351622157,17345097,105123977,-838324363,38797311,968953464,-13136910,-336033785,-1878276988,-139511725,1077779481,536807285,120456823,1243286354,1113002215,-1424048055,1115616779,1267865067,-488333770,947382360,-1177995260,706123734,-1596233757,-1119909088,1728407516,-1861795108,100792970,1584867156,-1001977769,485183519,73319514,1514203117,1578699901,715437567,1629320289,678793172,1031104527,-49780526,1745512481,-884476856,-87606416,410363944,1295194425,2114327156,102769414,-1302817274,684597368,-393339818,1179977313,36402502,-1053490050,330242277,205426492,-23223124,-129040604,1947437972,-1488309749,-1004977145,-1677322419,1609055516,-1276894711,1793653773,1255346176,-1612163290,2074289980,858323684]},{"sector":8,"length":512,"data":[708175903,284450254,-1951871427,-19719432,228343377,1282031266,-1029505439,737957825,-1205520779,-1643014628,-1866261497,-83087176,1384285437,-1967895396,-1199013881,-1531146235,1490886264,-1981145568,419860046,116498,259336935,1067518097,1757693592,-74430229,-2096300258,234826695,87391280,959479609,1979621155,392237067,509637437,-774927576,100860641,1579206659,-1959728765,-1070577927,2117691429,151526625,-125046793,-578076861,-1099250158,1447301944,-1877127542,1955401730,1963735562,-778434314,-1070886909,679515998,507184216,24270038,151056902,1190603499,1215606792,2125129347,-1692781814,870234577,4941378,34216128,51279104,1444087366,-534218488,-115987412,742864619,35931123,455400485,-28407027,560883645,-958862573,268831300,-1271035384,92774726,468319672,1918151924,125461565,99219834,2110249460,393825803,317403367,-1938723186,856104518,1874857582,-1946527236,-127497742,-480637501,700500,-397791970,-1472397100,-129468928,1543560331,1023541434,57868840,1728086202,785655612,-1406466282,171704320,-80016268,-492168844,2353396,-998874645,386796976,-1901461480,-347257808,370010339,1591932352,-346690721,1391984709,1397812979,735021905,-1458510902,1928835408,327287053,1493579416,-1017816997,1931756403,518719768,312883900,101455910,1377451904,-116593672,132848850,731711111,-1458631393,-215488172,1976109955,-1962555984,203155905,634671569,966911039]},{"sector":9,"length":512,"data":[172220490,692247179,-918368512,1426235737,108250171,-1003799288,-337127177,989513607,1960512398,-31771371,1469474565,-2091496773,697571256,-392100066,27179891,619434856,-1556542229,-2142461158,-946448693,-2097151740,-939425594,-1979711746,-1906945994,-1898411004,-401791808,-1007222775,-838860567,-93044480,-2080448128,-227283207,161675,-1951531920,1946265854,-1053079486,-2020797069,246280426,96600884,-134706069,-420788343,1948254977,-1980169460,1220666700,6686089,-32766485,-1933145332,1003588826,1959854080,512501253,2139706968,-970538238,-443785722,2017264214,322119028,-27178923,-445268648,1197007448,1697644552,-338129404,251536916,1955530299,-678647279,-1907112133,-295611362,-1125435462,263840,989882999,604861638,-1740619775,1591748584,-28442931,-66839320,1313773243,-1942709781,1203865437,-528047322,38213888,-1957575919,-716898287,1237854979,-4570815,1266689663,1448744507,-355400586,-1053294496,359843331,-150113656,734143442,-389648544,141885452,-1058727157,-1017562600,501764434,-1185474469,-266836853,-2058882557,-704642933,-1991583957,1499004501,1347666778,1998508595,142889692,520516162,67112936,-375664,1952143903,-1932391678,1465310364,149816347,1589590104,436207956,1967653958,5498887,1223370610,915090992,-347581266,54196027,204031195,943384662,1935540272,-25053904,1943893531,-183483388,501946368,-1014769013,-773673457,-1259613221,-1746139064,76124905]},{"sector":10,"length":512,"data":[657740937,128664067,620792784,-141882290,1946307641,410337548,-335940928,469973567,-745850510,-171523698,507072104,649650770,49008972,152434115,-945694461,-216286000,225622067,672554003,-2020472816,1825671940,-2121541749,372956855,-1927799293,-9097874,601622029,243792171,-150719034,-150994490,-536000092,-921459203,152741107,-497157454,423625753,-29970037,1523942469,-140392596,1005990810,417290098,761934696,453324656,-1246945856,234577571,-1260606820,1448549521,1744842744,925425533,-2102653893,-1442595237,-1456277278,-1014289863,-1826597152,-385830057,-1603665220,293446016,2080439171,-1531818996,1544883608,-1241467132,-1593264458,1465661298,1259723936,-1063234296,567120389,99614900,1187392528,1988873718,569848535,1007290220,1906274342,216779768,1626458931,239401220,-195654588,666802061,115073415,175999856,-11192608,-60951970,137813361,-1888479119,-395179451,-402068490,1937370839,202651697,1594401609,236085687,-1946920973,94241784,-956414405,-1992161723,520177033,1170670851,394264322,1461258318,368127464,-1037264,192414285,-1889740246,-335151331,274173963,-287180023,-972351843,505341256,1385886933,-153750059,-121770027,-153749547,-559942955,837843326,1979700672,-1911942134,106794501,-558400673,-1927356688,-1944891927,-1543056123,-286719403,-1658852883,1465313920,943742680,2065637837,1262310309,-271103069,1414004807,-1425495042,508677088,-544286836,2102307089]},{"sector":11,"length":512,"data":[1027956224,-1941021182,126617183,1334581920,72846338,1930071830,518184856,-638107215,-1952446967,944704251,855798789,-2100851713,2050193946,672514012,-527818232,-1435908105,-1422519416,-1439041482,1486092939,-586937824,-844405858,-1812138468,334102529,1963653507,2043808526,-1439846390,-620541449,-1829270773,-768579789,-235470227,201327507,80971666,1983462448,1210516482,3010,-1998424637,-2035527931,-12285947,989938829,1925646120,583948530,1158613768,1765807772,-731131075,-1833230080,-1809970345,34043223,921247020,-1945527572,1412694016,-2046912969,-1305839176,-1989155047,-1023256816,42958723,612116597,1449803395,490748801,-1272729517,-1939406824,512298502,-1168419220,1042189361,354356972,759033907,-1313332728,-535852148,175322906,1871490232,-1203277821,-896758613,2126764122,1454043821,-1915813888,-1182043874,942538758,1258779655,-119378496,-1878004743,1309685321,1947861728,-120061097,1344827969,1377718431,-2113868914,-1072933640,-1961123372,1029142038,829882369,1385504517,-473927203,1269826245,-1386837756,-922854948,-220697728,3959969,-1449066433,1516044870,1486772255,-889192199,-1990751069,106401302,1364612949,-1279249581,-1555258576,1216373579,454492156,1582914392,336026975,-872928256,788477643,1364416410,106038128,-1471093710,-398604720,-14736054,68846726,-883205853,103733319,-670365090,-99417083,-689745397,137131453,253003976,134416998,1010369507,-315483695,-756939037]},{"sector":12,"length":512,"data":[-85801942,142016366,-2146295,939459191,-922768152,1952326665,570830459,-1662586029,-1743394719,-140882432,-1947147535,-754494504,-1664403221,-777684378,570160105,-1086291409,-1946945548,2090170352,-420014703,1920710753,1998797580,-2045152761,24511538,1586906190,-1880277925,1630876514,973849183,21359557,1768015969,1594360970,1597180939,460598022,67504726,110058502,-623977737,-1881777408,230179324,-1325004292,13668018,2080422912,122745995,-50651312,-1190788929,16789504,501917170,-1094844167,-2147175673,-2146859972,480513652,-968884093,1976303120,-1961308689,38570772,675999371,-535137264,-1091292415,145491595,129717771,402699264,1578159374,-18091797,-1157626433,226539611,-849935871,208887571,1968113515,-1091764224,-739572061,-1090075970,1031896574,28355157,-175388811,1231955690,1818326638,1684603264,1918988320,1862429044,1635000430,1818361856,1917124709,544370546,1684107116,142634601,1886330983,1952543333,1937339146,1702149760,1766654061,739210099,11727385,1638924580,1365128064,1879084370,-1336601082,-1169955146,1891106834,1767899177,989865403,-1154777909,50364415,-148603129,-1975326991,1642333380,532209802,1642464012,-523977908,1967849489,402187005,717237089,179000,990320477,-797225442,80367486,-516399872,159322601,-222188016,49265269,-266619092,423365144,-259381633,1010267392,-1977778352,520271056,281935338,2031998012,207517958,-75453562,-1014347956]},{"sector":13,"length":512,"data":[-1330400968,235910144,1411539217,181635638,-2043929840,183732737,97225234,-974419436,145346678,-74834805,-1424986864,-1725272677,1451977113,2053175921,2125926075,1069839300,-1972782333,-1961753316,-799600514,28950666,645428992,-1023520954,1972830286,-1295581681,436109312,951898670,930058273,-279346348,209891886,32023552,-1342172611,1377850189,2977397,1835619328,1766596709,1918988898,539828345,1862271043,1769109872,544499815,539583272,3684657,539768940,1919117645,1718580079,507117588,1142898,808334373,188385636,87237894,149748517,158803737,1095110433,823471188,151068726,158597426,1263424768,1314344782,67663392,-859651812,-1040092027,-473835054,-470023972,-956559743,-1454868740,1063750908,155378668,573443718,1558970415,2084199771,1026244156,42216507,1663389979,-2010315518,841888451,923405171,-1302317266,825306378,7537454,942521882,561199150,606516973,622854342,-1272707023,-1529865141,941122559,255129443,92583481,169367269,1230131247,428229893,1275417688,1359300431,53498627,1431585108,54462547,5390925,1547332608,1068630270,783286280,-1022623425,192959025,261882034,2063794175,153618705,-953286400,386299916,788268818,302648969,213471757,119477266,121046800,1929836776,1236796179,495658579,1930377766,1979909123,19130715,303642162,1459630163,555650389,403109433,1131749394,-398458708,1014105992,1946610920,119400503,-1542907787]},{"sector":14,"length":512,"data":[-1259862760,-2144933114,1950420225,468405790,1027352366,103679605,302940400,-2115484927,-1396346105,1125435120,1464778475,130437134,-1988134432,1947344158,-262130035,792494152,570832500,1610680436,1416954183,21465638,959374386,-1195350522,111223155,1128521937,-385034237,8724274,1707895275,677397433,509361472,839879196,157847533,659768079,-925594426,-499891853,1946365170,741616821,-571930105,1563836425,188089259,1560282166,1812093791,-1589802194,151195918,269913021,303991301,-130315246,120737987,159576233,-1459671547,1268703278,1375840537,423428212,-1336930581,16757763,10414272,-402396328,-1017642723,1364575225,1332920648,-1928498424,15206767,141762944,-503312664,116128246,523143470,1498934785,-2144943267,151191678,-152353366,856474437,-3207097,638274162,-272628213,303795280,19842603,1477581062,462687691,2080777850,980526591,528222588,74988326,-148498060,-2116709881,-1770941934,233568256,174943689,-962919525,-933771252,1048380543,-477616423,1694696711,646537985,207635849,20731906,1426655861,105710596,1525350944,108331580,1011936014,2076210183,1946696936,302398692,-105901432,1963211838,1083389711,804467000,724524428,805532938,642791690,16926710,665846900,185184273,-1341819902,2076960770,269299816,10152168,1880156255,315688646,675107584,1397757989,3626834,-391469366,1516240731,-1393862565,11082050,1642121776,771954664,1965244035]},{"sector":15,"length":512,"data":[-1509692670,479232329,16063616,639408745,-2035662825,253213207,175382551,68655146,1048587778,2005860735,-2137579581,-1017610776,-1976674736,851483396,1966750746,1684070669,132686,-1488255828,1174500100,-350352314,1445355231,684755538,-608398104,755790340,822368524,535791662,-1017226520,-2143551488,1631325299,2050767986,-551274377,6305003,-1923676589,949406782,1343714325,805327441,1706297102,-4472182,375295,3671738,1499079117,771841498,-1778367090,742605571,1607935616,1351244551,109054786,1845308879,1111370556,397094253,48776706,1353582268,1915996467,-1252797952,18671682,-466470542,-393515008,-774774063,1912667624,1675266860,-267518924,520202509,369747721,-938224893,-555164666,-721220343,-989802109,57819520,-379864134,1146814648,1795330828,-286207497,-1031548169,-265937151,-2144964089,-1340833753,-369118207,256245918,-2144771980,1971334470,1278944798,1731621379,1413162782,118369921,680017015,84818546,854270071,2082376008,2082373400,503386128,477891199,-352157922,-1866038508,-922875520,109229429,1644611584,1644576235,-1070142684,-167136117,-268222236,-430815634,1950512452,-1526385950,854405746,302330375,494059787,1174216166,-1014992296,41274268,1889387421,1308674,1915763854,2000239624,752902660,-915075536,98306947,74825738,155600599,-687406460,1428587772,939677266,-1477639502,264577794,139918883,-1817637516,599400437,-344907438,622597395]}],[{"sector":1,"length":512,"data":[906916880,-814743030,-347710347,1178216028,-1713569293,2034976338,1158554693,652823366,352586565,960497063,638547008,537020407,-1509460992,-601748402,1930479865,156173426,250285391,226567236,2047046714,-133480854,1575551538,-396995834,858718378,-289095586,130433209,-1067388984,410124461,169452334,-400919333,230968480,231083374,1821632525,224464131,1500843301,1012960046,-2095930850,779944699,-656135007,-1975028465,170461896,459770429,505874920,1968693249,-337017342,-1977414119,656416063,-1073542589,-92068074,-2130414748,1527213250,1162346846,-74258425,1084297451,-2014838005,50355963,1815514524,-12811474,41156608,1377701867,-1205924272,-695519232,421011917,-1021355432,-1647758386,-1489186792,-1636515167,2038435609,821640196,-1178569710,1007479596,1160148013,234882850,-30808034,11804274,703121,-487128338,-1056763608,235667570,-1108654447,-336013174,17057285,-1954085127,-1396476991,-1152310552,967274902,-311113083,163905923,-116987058,-1018234841,-387922952,222056787,702295412,624058462,41779238,1592131586,-1977165005,-1014824099,-298250236,262040333,424559369,-488424922,2136551416,-818521238,1395689746,1530716076,1010221824,1009939465,204567596,58723445,-1341717180,-1069922784,1146232555,393347534,-586986173,-1039460966,122359674,776675403,-934997342,125965842,-415817645,-1675546995,-583331326,326446997,1191203065,-12088786,1929196264,-1624206075,-346489557]},{"sector":2,"length":512,"data":[436987150,1076907547,1398152901,366477981,508569560,1845514833,856053079,-1193373962,1610834688,-619979934,1516199175,1196957529,323216195,354322797,183302128,180362894,974191747,973632004,-780730044,-754620375,-134211349,1444896347,236916230,-1729589241,118522103,141675295,-418578254,67207586,1609435267,-1818950645,218169363,122211850,606278662,-704231871,1443123012,-2094960027,540418419,-970374360,-1557932936,86847952,2026320953,19928020,1936614755,-2045221787,997482907,141320553,1917848345,1803121714,791027813,430533697,124996892,2138190437,-248154622,-2144119034,-1047607039,783875891,802007826,273155724,1049172805,34544454,1343565583,68111887,1611617469,101670415,1141866740,-1709489649,159392998,1074652793,136003085,149458268,621221210,-1566223339,137449997,485425,-954505713,219905286,-972634614,604078875,1802763,461637120,-1566965750,857997111,1080697964,1438713769,460197232,793064,53405696,-397344703,141688912,2187097,-2096886265,1224281284,1448135552,119458334,440000799,-2106182007,1662983032,-1153165933,13775706,-427812202,30310401,189006264,18262986,333515798,1023750324,-838396410,37558378,-1325042944,65767835,-838006085,-1304249947,-2130725376,1460018177,495295061,-2146536813,817954814,100955384,67300127,-1939998837,-883390592,-164408490,1964624179,29148168,-1014186820,-956946965,1309504514,1460528952,1537404947]},{"sector":3,"length":512,"data":[1996498749,101866002,721956893,855344067,924190961,-2103243687,-1977893481,-1175019843,1712098023,1411051682,-123177245,403506802,-1611988432,1963010972,1364546089,1350566797,801965513,1968766780,-1193768183,215564034,-286475304,-1067689587,1568672779,248451674,1659432643,801857115,844134690,57801152,1199005528,-1048542435,376766345,192223549,567845200,270466940,118657620,1959598827,-1792875514,521615540,-2096379595,71623623,-1476908188,536740889,87762437,-653982741,1225366659,-471130353,684793,7676256,41747238,851013644,1192049133,461113030,1610616320,106386769,-1981183150,1209760286,2134280432,-1028108005,-318038962,1694508615,28321280,-396752782,1308754181,-840999161,168069008,1560695898,-238960295,1045688584,1010910048,741699618,1929410357,-2141604849,567144148,272032818,1948172147,-1995967733,302010884,-1360592014,1023811260,469560929,362152628,-1974808830,11659458,403141397,22352115,1223424017,-1862249982,1229397769,536408949,930109379,-1957493168,14260218,-65359648,58044146,-1957963477,-1073259573,-1070380677,-2008985811,-1958693666,1428708055,1082656080,1476418280,106430668,339876600,1031808668,1340698,-1816032510,1364531947,-1494706080,1508477951,-352160996,438421673,-118998103,-1200530142,2556032,-1258289989,1617281793,-956952320,2114745728,461192845,697,-16717812,-1000929597,186349118,2496284,4031238,638612728,-1032714950]},{"sector":4,"length":512,"data":[83258,-117344512,-370456761,-1883044001,857440262,-1828437797,-2076772462,-2096786661,1618348538,-1031797320,84142903,205607472,184837382,-1254525733,881923,175931440,-16419540,1092324662,-586013973,269616653,-1384838894,-1827533842,-1481478732,-301007612,885220609,-1272875831,-1339751712,624436736,283588845,-1002829723,50335349,1946112775,1229099521,1308681077,197822294,1295217901,-251642237,-1976863247,805570116,1010272435,-1926218722,327169746,-404016125,461323904,1110360903,1330596148,251659181,-386323625,1499463178,2146108275,1375325328,109759115,1974721397,32383750,-1290558882,151454495,987816361,449393410,1765369942,762120785,1156972856,2090471175,1011673090,451609054,208932110,1851657734,436995650,436471898,1314056192,124911648,123291664,1885232479,1678702858,57804100,-83946263,-1712083417,-390844414,-2007433579,-2037948224,-75283685,-790068160,-501154304,230223499,1125419274,1011204328,1974590253,538101521,338528019,-1508243258,875776,243812634,1149901692,1992374793,706648304,-1863284031,286553216,1422087690,1976456316,1160789228,1278801416,705196808,-1977553915,50694865,-612201180,-1271394099,-1961949778,-1891528926,-193636900,-167110614,-1865604263,33693017,216728130,141873674,-29619487,1392014794,-1018714283,-1872495764,1049472203,-58529735,1679976562,-1013178820,1966093917,1095792658,1760058488,1166177277,843796481,-1066122656,1095173124]},{"sector":5,"length":512,"data":[-114559509,-1341760188,1060909,872925000,572814624,1971884128,66103309,561980483,1972719232,201890822,1972655339,104408614,-166778229,1124346820,-453542528,-1801246676,39125798,736806442,-399841750,-52066674,-1299118601,201413165,369557401,536871176,3467520,196700,6333511,1507337,7313264,7209260,19734528,1226244250,1919902574,1952671090,1990373897,228732928,824514058,409755936,1684103552,1852383353,1812755571,203318373,1645681687,1936028793,-1033800163,-378770968,-783547872,1802725732,-2067066083,1701667083,347300619,271603970,788549247,1768301891,-1720552089,1746942356,540238879,572037990,2000909173,1953094592,1397563496,875463469,117586304,1397310534,84805707,591206716,13156737,386256331,89129985,100676352,1216348160,1593837312,1979714304,1631789568,-1519423890,1228062393,2070190446,-1972676233,414546968,1768582990,1702365682,-1854897547,1953375177,413538841,1722214052,2048730241,1769109275,465094004,-1301785556,1013539181,1868701869,1643864955,1507157871,911494990,1533350446,-1838911276,778351155,-1037825342,-1027792589,1627505153,1158755678,-1704059784,1678003744,-869977819,-1799257308,46866544,1632636452,418867314,232583201,-892658399,9131607,-1962377728,-1957688763,39684869,-1962652277,103809109,1594389899,473733717,1465715072,177838110,445187465,445192841,444989833,-1983608161,72879173,-1151377910,-1528206277,514540549]},{"sector":6,"length":512,"data":[493306921,1346637252,1320945036,207575084,206570764,805699712,1007039489,170671698,-1877204814,-886230155,824259475,438407987,555229440,-1826602938,139675460,1970562521,-1318643088,573143273,271141805,1821830697,778235013,-437111940,585334358,1211709271,842934238,610409785,1884246828,1943367262,824063575,1563838703,1702114883,-449475294,1286470240,1669668027,434802090,1702261828,1460643728,1629531449,1952035171,-493405926,1143223076,1403284581,878252095,1765127182,1634496627,910324345,1835101801,1652600417,-481290703,919535134,672101189,1948258147,2019893359,1092674665,1090992132,1869103911,-1898024081,627442909,1290998659,2003790956,977294094,891957542,1745630726,1310791265,1232429929,1167160430,94962989,691732670,975315647,239484048,841629257,1096243504,1313804370,558321225,-1079514529,1073849300,1148395586,1194143161,-400822991,1923811497,545358692,1483501173,1628433059,1931110454,-817612419,1095050039,1674931948,2030725883,1396464532,540952628,34806365,-397207870,72416704,1527507876,922242352,-1167254448,1614928631,-752080551,-1917899090,1697798445,942486255,1932034342,1072170793,489834944,419443740,782136338,1866363509,201380384,-1582823152,371241473,-686973168,1146342938,1970239815,1940177288,1713656680,2018211065,1966553268,611537517,1702521262,-2029821668,-1110169083,1799410108,-545095351,672972800,792615228,691949116,783417504,-1488882667]},{"sector":7,"length":512,"data":[-580398273,1903728193,863530987,946606968,1635013408,-944736140,2035556360,1442931568,1661889647,1702415995,250655340,-104238515,966795816,1634948361,1601201511,1229561054,1778731013,398114014,273678100,1663244289,356257025,-1442100964,406723753,-1244197367,-1357576171,723408442,-564734918,1415982678,-2113210257,1634759520,2147378531,1912693815,680948225,1681656369,-1944044256,909587768,690047945,810628423,1295926087,1160802124,1301000274,1570004726,1309788813,-1689498056,944703909,-466040168,-1054845900,1516725198,683522321,-1051186907,-765184799,532046665,17944322,169946802,128974971,1394128006,403324489,-100609427,-1526686303,-1242826176,1150383214,488534943,-452806806,892901219,1365603812,-2097110991,1027849993,572572417,808661080,1643794736,354645618,-802928175,2064154319,148078896,1623407001,-869421427,-679760209,-1726335469,1865868164,456604334,1174143440,1625834758,825504560,-361973227,-330602704,916262574,-474991846,247183926,686168887,-248049876,-1299841781,368797122,-1775766457,-1777801150,1258949176,1794141334,-1369465121,-1423388319,-1251257815,1038532062,-367874621,-515964626,1732381293,665845786,1832991691,912579393,1857883483,-697396546,-1922561182,1969524920,1637777384,-1399523718,681621558,369832791,1498756026,1952388593,-1856692924,-1471942382,1197339181,1779762636,1811170291,352726599,-163318422,456083307,832558240,-717993165,474893300,-922086867]},{"sector":8,"length":512,"data":[84699848,55306221,1765365713,1128410601,1338223164,1635017054,1687354706,1996579905,426342163,644009192,1953722220,924085294,1937125968,172124247,590487774,1872256356,1532154662,-1459671506,854736066,1458736992,-426951095,-1305576628,1511081822,-400882933,243290461,272017664,-83736588,1308829317,-1698886918,-1112954368,-569852623,-2112045631,-620386290,-684591263,-755286026,-36264383,-1362462592,533836759,-868810543,-1220132546,913519193,721659680,-1252991701,1915826793,656594011,154067411,1527100453,200587698,20595646,310104174,-1442365713,-1407379451,720246831,-1330267048,2003389900,1766439309,-1866843187,1811677392,1484647777,1943789376,-1600049832,75069955,-593310856,1417407120,-398524065,-909984715,-916391150,-775596192,-1016077264,-433310161,-590680506,-2011778356,805459534,-109058766,-1190717920,1513113701,1698186951,-154375648,-1372325283,1237629576,993925705,-65717494,3289138,-64485541,1569800250,-701353839,-830173638,892620558,-825322985,841822972,-61924064,1636909288,-1384853103,48067646,-533765597,551671374,1596909134,-525128383,118434230,1897344690,-1385798620,-399591928,422581094,-643177230,-1410383778,826180234,867716489,2003791548,-981157514,1231196192,1936607624,-1586483239,740102003,781346104,-1957071756,977338932,-1059277238,1851909574,69542009,-646092681,-903467118,-1488256466,863767016,1276120270,1127198678,-2125899187,-1901181755,2138789699]},{"sector":9,"length":512,"data":[551506483,-2026622677,575002947,1048461150,-526932132,-520760732,-646258757,-648041002,883758415,875700069,794580137,-1191165908,-143472532,611742596,2070173684,1706776157,2076031804,520399683,1919838566,2006927934,-47527561,942546006,1143913194,-790133884,-463117811,1787707482,-2078793924,64185545,493028457,1476626408,-184084500,494414074,536996044,-436012848,1885626744,-1447077438,-1609596882,2104652357,-623661124,70816693,-277711057,788694956,210438926,811822665,270852168,-197435530,1126313663,1851889602,1636220344,543709303,-607938194,-949275273,1690621585,401571374,1605704410,-1210064963,-1116332231,973577206,1282171248,2019886361,1140684028,1002384499,211500914,1598271804,-1162242025,-1107381080,1379527106,-998936219,-562665993,1383303078,1870623514,1911321825,1911351342,1987402247,-1823071033,-2079860466,1213435502,2037131308,2121115168,637767008,1378982082,1936175745,-348835237,-2062415764,-954271143,-398583802,1963241732,1617066263,1573944079,-1708351035,547980977,788183568,1453463100,1239638797,352605699,1953853221,15753455,672190629,829846772,64897381,-1604117012,7056133,74668394,1734964179,-175410096,-842572950,24380260,1818841823,-1301980995,-316965598,-348997939,-1427372327,1044888836,617324921,1638630272,1813868429,1347480152,-773970745,838378630,-2056427714,1418946004,1683599467,620753975,1327513968,579204286,2127900014,1831991746,-1586677134]},{"sector":10,"length":512,"data":[-77336788,1700925288,737426699,1676441467,1013127919,1193098361,107768980,1637180612,1866627616,133865938,-1601342855,-1879399340,565493568,1044525505,1897098837,1674074946,1132076714,1334463140,-1940114645,1986939136,-1385928364,2037515180,-586708180,563002328,1513226501,-1527491688,-1090456178,-581602974,-667914552,1739089853,508073137,1683844155,1701799100,2014218556,-201037725,1173193837,342178577,-1569738495,-765251688,1743962526,1477537789,524472891,-1823068664,-1282513642,-697368063,-185841776,2082714604,1140352846,1462204640,1934442050,-1085830717,-534441870,-292540059,458432637,862479644,574538313,776187464,-297315507,-920113348,328886469,1112053446,-1845308974,1225073006,539623461,1694899282,163868525,22171648,936320,1313167392,-1759422391,1415070992,281564176,1129318405,402874671,1179666464,1330514108,1646150998,1125141580,273493840,14030862,159393258,-1241241956,69717235,671810780,-814009084,-872109308,-1138159868,73925879,-857406287,706806835,1761920260,1038484523,1862544680,1577368836,70175987,792396955,-964992252,1090825732,849609777,923071256,895419444,2077014020,70650628,77333604,83213519,-1794885832,-563617788,70781444,865469510,959186159,-1325108220,1241802745,872686650,70508091,80479357,-284935162,-704341607,71135492,76347314,1068369136,826359556,1123878142,1078234628,325529,70911045,75234486,81806850,1039074409]},{"sector":11,"length":512,"data":[78578816,-216660766,1560561630,-1257994492,-318445957,71829252,83344730,79037577,75222245,906250516,-284925180,-704340839,71962884,77526861,81790086,-276870346,79365348,82287086,-1459336124,-263384828,-1509685026,-281811964,72230148,1033634912,81331455,-567521517,74384435,1343030431,859696900,-872129276,-554499068,72025169,868418688,1377174528,1012019204,1280459858,1425014866,1683119186,1951558738,5405778,788594796,1075709044,1275113999,-536825856,1127961694,1279870559,1313431365,-146911418,-127795151,-2130701294,117506305,-1709647090,1127109878,201656191,403669107,35013008,151853058,459020,370542627,302846719,1511390978,69964379,33619969,705254295,-234650616,1107562742,-79071159,185344001,1437905036,-2108658136,694971509,757794560,924066592,454237073,1961112608,1560471914,34801174,1697127689,1946485179,1347182920,135205042,268700292,-2130627282,-1441264383,336855378,-1974271614,318903052,-684227040,-62335,153749762,2013839984,-2142356420,-1967636930,1328960103,271387149,1801680608,-1943376096,1869375079,50336375,857502804,81946908,1690199944,1994403433,2036475753,868567328,958466304,713465889,1735722341,337977960,1859809378,1852797486,691861101,83950638,5882111,762213746,649685364,33618084,843402210,442595397,1869618079,1425368689,970106311,1815160577,591461955,1368533593,-664545139,-401932321,-1576959926]},{"sector":12,"length":512,"data":[228085106,318072576,1112674056,-1064507253,268460037,-1558245888,201777668,-1950315008,100663310,1341754112,-201459829,884494500,-1060417536,-1933341472,-661763880,1031963,-1038598471,1202648063,-1068332257,-1324201789,-137983228,12637136,-802432440,724173939,65065938,-1901770512,382176218,369119938,-1896343872,-796218174,44366,-1975072629,1023288514,-1408928336,116108019,-1304690472,325938549,-1317797464,2019766974,512462081,-768344946,-480026583,63081235,-133469757,-1107296125,19272052,-2114723299,1961885946,-1732083434,-351272735,507534300,-1626280061,-342877855,1049335778,-1046999544,32551222,1160636422,-1145327357,-695272715,-419037045,784698363,1085550591,381229755,-1943009792,481994954,-1205744383,-2029695745,-353218509,1181130529,1861160581,946293,-643062924,1093855792,47922,1379511345,1530424889,-482855112,1849065783,1211499270,1005403394,960500980,5952,-2025870784,-62967489,-1203845570,121542206,-214040576,624792381,1800827223,-1682667918,52916,1857346484,817282997,-1195543363,-1720544323,-1619918848,183242354,49022700,-85197076,25229035,-286526741,-420746517,-337712188,60378,-338498602,-339022898,-339547194,-340071490,-340393984,-340857934,-341382230,-341906526,60314,-342692970,-343217266,-343741562,-344265858,-344588288,-345052302,-345576598,-346100894,60250,-346887338,-347411634,-347935930,-348460226,-348782592,-349246670]},{"sector":13,"length":512,"pattern":0,"data":[-349770966,-350295262,60186,-351081706,-351606002,-352130298,-352654594,-352976800,-353441038,-487922175,-622141718,-689307648,-823471382,-957691158,-1091910934,47850,-1293240598,-1427460374,-1561680150,-1695899926,-1763049472,-1897229590,-2031449366,1055671018,15084,854341356,720121580,585901804,451682028,384565248,1626084076,930262508,-1796410253,993671051,17039500,16711680,8392498,1052079]},{"sector":14,"length":512,"pattern":0,"data":[7494221,14,21823520,44105727,128,24248336,30,1]},{"sector":15,"length":512,"data":[1215465,-5177193,0,255,2086492928,1026244156,771760699,1050311,788267008,200329,84330286,771751936,1574599,-953286656,2310,113716736,1566245028,-1509505234,775715840,11011783,-953275586,1023453702,91220027,-4713613,-1960422401,255469085,45613939,602495744,914959873,1465057298,438209877,116796928,1965031441,-1528765,-398691835,930350435,1963300072,116796952,1965031441,86763525,-164747541,1090523398,-347201932,126365211,108346684,286162990,-398262016,-982317592,126365356,1321134915,121014574,130428416,512306688,-1960443882,439782685,1015033344,775320623,1948400768,116796936,1962999825,1200236116,786706945,198201,-1590816141,-523173885,-670874813,-400585946,1777008776,84330286,-352321280,1200236128,1088696833,-670834479,839879206,1959332845,642990863,-957866101,1098078976,-220052669,84330286,-352320768,1200236084,1088696833,-670834479,839354918,1088475620,-1977165821,200094223,1125086409,529213011,1526750696,1128467315,-953224478,67110150,1532976384,51284782,94449152,915090944,-1959919609,771754262,728714,642827256,44631947,772109568,198399,3964974,27859317,772371712,329415,250281986,-1274826672,10414335,-402396328,-1017642723,1364575225,139430438,-921965262,1871514996,38791177,250087539,-101260800,-1993472277,-134211538,650337625,32384,-347798668,784549366,1117824]}]],[[{"sector":1,"length":512,"data":[-3741680,-2144449934,-285208282,346107472,784739072,1181185,915091032,-2144468972,645201980,-8617938,772371770,329415,535494665,4162342,-148498060,1962934535,113716754,131077,-1763178005,233568256,1342893049,-4979792,1476396008,643286008,772046731,605833,637896742,1342268808,1614126,38111526,1963015256,1435051530,1300833796,1012591366,637957378,-352037495,1946631248,1946696936,1963343076,1434985990,1010756356,772764932,1073746593,71665958,106794022,-1993987093,-1943665547,642778701,16926710,78644340,-165279253,1946288711,-402477051,643301556,268584950,-2081946764,784555776,11339462,-1960423424,1975520007,1381191704,113716823,589829,61931444,1610570728,-346530982,-352064766,11112510,772961282,329415,686292992,1048784386,1963524101,8431910,-953281932,1286,26929152,87982894,259328256,1948254377,113716746,5,771799784,11353728,772764929,343683,772240640,329415,-1017642999,-1976674736,1958742532,1966750746,2088775181,108331009,312878,635963883,1174500099,1591733062,1381417816,-1976643446,51570692,-1073083278,216534132,76033536,1178993131,1583016171,1937784003,1918974988,2004499525,-337697727,1460032317,10436237,1946483328,-1707176700,356003328,1364203380,-1274605998,-1144878491,96075775,-17920,1499079117,1569402456,1166945793,742605571,1607935616,1019435783,1007186480,738490169]},{"sector":2,"length":512,"data":[-104597456,1381191875,2139825751,92939782,74825738,166461364,84330286,-1275066112,-402411265,1516240440,1354979419,-1302965675,76164610,1912762344,-9574340,285668910,225708032,527777084,25067558,-344886016,116796947,1947205649,1966750734,2122327562,1551171584,643623750,1962952250,1958742557,-347781550,1178215955,1178957056,1157925422,4602406,1162230389,-164714517,1073746182,-148500620,2097735,-2144991372,1946157182,133637666,410255376,158677564,8290342,-351439616,1962949646,2122327559,57948672,772205561,1324681,1566203640,1397801816,512437846,126484498,561324604,3139651,-970059150,-1962933948,-555202829,914959872,283836423,372673326,80096768,113716736,589829,162594740,1374182238,1354979581,-588773493,1009021952,-2146601694,510993148,1174702126,-387235005,1929477096,76033543,126501702,1174702126,-103421117,-970062357,1492647940,1448562883,306088750,76164608,326418442,1962958824,113651236,1577124013,312878,1581247327,312878,133637727,846528513,84330286,-352321024,777410601,-1073085302,770186868,-401902592,41091352,1179076167,-1573983765,-970063861,776404996,474761,-1453826210,158597632,-1325419440,-55908347,1364443992,10755725,771754425,74712890,1106829891,-1396483239,1946165992,5498904,-164751755,536875270,-164696716,1090523398,-347207308,32241926,-121417992,1011962819,1009611789,1009349632,639988746]},{"sector":3,"length":512,"data":[33717632,-617406862,56461862,637846403,1946171776,650720013,641927562,74711354,222099682,1405311833,113651281,773849099,1123968,1948269791,1946762294,1949056050,1965046833,540835852,548407157,-339723706,2105550366,393347330,-1977169613,-922025139,62589812,975586048,-502828031,1495284984,-1573993637,-164757493,16781574,-2144467339,536875278,-403980230,1715853,175430971,58011452,-133239815,792464363,-2144467339,1073746190,1444856824,1048784467,1962934286,1360941095,106256210,-561056205,-849149768,198937633,1599932379,1478449498,-1993463436,771755062,925321,204901166,512634368,1015218190,974156800,973632004,58130756,1174793209,-118756538,-1021354405,11667189,984612876,219936,524466,65968,1573042,-80,-1308621569,-1342175232,-1,11665412,-5242872,11534344,-16777216,16777215,0,168624128,0,402655744,1092923904,1397600256,1397703712,1919243808,1852795251,673199648,1866672451,1769109872,544499815,825768241,960049453,1766662196,1936683619,544499311,1886547779,1667845152,1702063717,1632444516,1769104756,757099617,1869762592,1953654128,1718558841,1667845408,1869836146,1092645990,1914727532,1952999273,1701978227,1987208563,186672229,11665526,548405257,17351424,147733249,20644097,-502736638,149618952,33554432,149031129,584449,32768,50922496,33751049,151257089,2307]},{"sector":4,"length":512,"data":[67109376,84476681,788549167,1127153750,4796160,4931375,1048754,-16118352,17700358,33568768,67128320,738221568,754999553,771788801,788582657,805376769,822170881,838962945,855758593,872547329,889330433,906120193,386045185,1868787273,1667592818,1329864820,1702240339,1869181810,352980334,1970499145,1667851878,1953391977,1835363616,226062959,1229325834,540689486,1634030386,1701340018,1868963955,543236210,1954047348,1920234272,543649385,1629515369,1818846752,1919885413,1818846752,221148005,1141509386,1145981254,1445944096,794501213,1528847683,542985775,1565077339,1953702432,1735289202,1532698658,1986622052,1532836453,1752457584,1818846813,1835101797,773872485,1566387758,168626701,790634565,-1308561322,-1342175200,1886611780,1937334636,1819042080,1852402720,1310749541,1663063119,1635020399,1852403305,1752440935,1886593125,1718182757,543450473,1769108595,221144942,538985738,4080431,532658,1936278704,2036427888,1852776563,1948285292,1663067496,1953396079,543584032,1701734764,1868767347,1767994478,1735289198,1701344288,1920234272,778530409,540871181,1045311264,136360448,1766109184,1634496627,1814066041,543518313,1651340654,544436837,1752459639,1701344288,1936286752,2036427888,1814062181,1936027241,1258949934,1227825184,548536374,1236271112,1919905383,1948283749,1663067496,543519585,1663067759,1634885992,1919251555,1752637555,1931505253]},{"sector":5,"length":512,"data":[1668440421,1735289192,1919903264,1701344288,1920234272,778530409,540019213,1953702432,1735289202,1394614306,1768121712,1936025958,1701344288,2019914784,1953702004,1735289202,544175136,1684957542,436866350,1683693600,1702259058,1885035834,1567126625,1701603686,1701667182,-1942746611,203469312,1884532736,1718182757,544433513,1768300641,1864394092,1768300658,544433516,1931505524,1668440421,168636008,1229720077,543236198,1752457584,1701667182,544434464,544501614,1667592307,1701406313,1176513636,541347401,1918985587,1936025699,1701344288,2019914784,2037653620,543450480,1948284001,1881171304,1886220146,537529716,1881174639,1684369513,1869768224,1851859053,1701344367,1868767346,1851878765,168636004,1049429774,-1048508140,29557492,-16706042,285213951,1702131781,1684366446,1920091424,622883439,-1928917455,-2096362178,46342337,-16706042,234882303,1936875856,1917132901,544370546,118370597,204553869,-1021460093,106058576,-1899416745,-1191234623,11670062,-1943130163,772259078,129711753,-1307431240,774884610,130352780,-1019311826,305051655,801965234,-720991186,1049177607,783812563,-855199214,109850159,-1993472071,-402147522,-1943076989,772257030,129187465,-788100050,1049177607,-1914173489,109850367,-1993472055,-1207449794,145887790,-1943130163,772267270,131808905,-301545682,772410631,137823942,113716772,2035,-184105170,-402650617,-1993408754,-402137282,770179094]},{"sector":6,"length":512,"data":[1021858048,1493725696,1532626783,-2096829608,-1007088444,-1205971376,567108352,1914636062,914959882,-1943140377,1577576710,12108632,113476,567136819,-1207841152,567100417,-852446013,369507617,-336067723,146712,-4520589,-1157370881,28835842,47360,-4849486,1397801977,106386769,787057490,132849289,-264861650,47769607,477415691,91614475,-352311576,28960771,-396752782,1594294534,-998046485,82573574,-111517945,1499268722,82532443,-116865917,1381191875,-350319826,-294137,753403253,-402396416,259194999,12278196,841075968,113542116,-2096043015,192217083,125092155,-2097106712,1928922820,1482381827,520494787,1963063683,637711387,567088522,-389903841,102629553,638022431,-855550582,267122721,-922025292,-1977218700,1193397525,-118262455,1347928863,-91532538,-645200098,-218359120,721647022,-880063527,1599604571,197145539,508523721,1085546246,-108800117,-852986623,642785057,1525155210,102651904,-133795041,-851296076,-2144953311,41228861,32227723,-68677937,1427827711,-5838767,-849745525,-352160991,1959279371,-118998265,-1047854475,-1195172003,79364135,-1023298304,1962933888,-2134444527,119409781,133054093,-402652487,113508095,1053044311,-16054297,-2094655628,1962410045,87696912,975570802,24576325,-347650055,-1022926871,-251228370,-1814351097,922168978,781387765,133510903,1980365443,935493637,-1031797781,188830256,184841664,-2093189925]},{"sector":7,"length":512,"data":[242549753,738884736,-13760907,1091042870,-108845845,-2146536185,1965820540,922693126,-348059650,200901393,2088766581,108342282,-29950162,865288455,866315218,784348114,133248767,198325187,-1272875831,637579301,175449400,23410726,-1002830732,-1977217419,-11802619,1195835763,-478852798,197822294,1295348973,-214006994,745865223,67519626,1161438768,-352160511,1966095391,1959922436,-348912892,1048588007,1979647984,1229079048,-347123895,-17917,-386323625,1499463167,1743455091,-896839280,425088,-922022540,1229522548,32196423,185658206,1577285065,-108852757,855799295,1962871753,106386750,784937809,133381763,-166497024,1963919172,41731080,-352161304,25880576,585630699,1493660160,1583177479,-998046485,-2094073590,521022,57804149,788474601,133367495,868417536,-207540526,113716743,657397,1493082600,-142112722,-75283705,-402426560,-906100214,230223221,-2021052918,1128466423,-1023280664,-164408490,-25114317,772371967,132103307,686546827,1946339062,-1127993847,-1014233149,322771691,1024356864,158793767,-809712594,-339506169,-1127993849,-1014233165,1979710339,-98281,-336002187,-207409651,-18425,855638461,216791286,1946221443,5564419,-133904765,-922024334,-1695874443,33456284,1431447925,1347880529,-855310152,1493122095,-661976715,-855309640,-117314769,123667827,-2096698535,216532676,-346399488,-401682687,1583087611,-1185916989,-1070399489]},{"sector":8,"length":512,"data":[-772296974,-1017161655,1963064195,1048784417,1962870747,-49895,776998261,772273057,131800831,772139864,131800831,-919397653,1962933888,1300899334,772401923,74790200,55413294,-117127293,200813939,-2145815351,91553790,-351978714,87764483,166396533,-2096794551,-471137081,-2146667783,1979252734,637996546,1912765699,653079046,776408458,132974278,-617364736,425088,-953281675,537393031,776160045,133662662,-1410841824,-617390848,-2010197453,-1979192050,-1053161148,-1054204042,1157034122,359956487,772424842,133662600,1090224963,2145911669,1976499712,142377195,940405760,141756492,-1979167702,139234001,628410635,252134646,1156975733,108269575,1191545382,777519595,133662600,1090224963,1139278709,1976172032,121960155,169440640,-1978305290,-2010248636,1124595591,1967192963,2418691,-344600834,252134646,1156974709,41160711,-771093013,-1892808332,-33033978,-386435638,-1017839614,509019729,868977415,-146895397,-78518265,123667826,-2096829607,-1007089980,121960029,638743856,1095763338,1945909480,1166681606,-336048127,92939789,74760202,-169131705,-1017775829,-1064384372,-1142368114,-401705991,-974650093,-1509505286,-1243086329,54388739,567108276,-2118198386,784937728,152047241,8404608,-1207405312,45481986,772079848,151914182,-402190848,-1960443313,-402059250,-165280735,268938758,971572084,-402190846,-1960443337,-402059250,508953470,243867406,1049168144]},{"sector":9,"length":512,"data":[-617408381,-1559963160,116791425,1946683310,45614637,-17563,-1962932807,-1090056493,567084969,641582151,12066187,-1547490559,-947714137,-1455519486,-1425634297,1048577799,1962871054,-339725564,-2095674612,-1338133480,1914817792,1048596573,1946159374,680573479,681381514,183037234,-2095674622,-2129753320,33548312,128845558,-1173785340,45680914,32499712,-1160213672,12130437,-851463152,-385649887,-1073020613,116792181,1946421166,26142723,58055459,-1274972183,-383660738,703136093,105993985,-930350453,-1064380276,-218359120,1325495726,-1037318261,190798087,1405580480,1343784381,179357835,-1359807093,1979222872,268385541,-578088833,184514944,29755508,29771533,1431783178,402593419,-385619126,-1956839244,-645178883,-203224400,-277500174,-812951727,-645149397,2105550409,24448510,-1324941495,-1956519161,1381651197,402767426,-385971369,1935606262,-108810996,992704001,-349539323,87731221,116794484,1946683310,-400193015,-1002831551,1347949684,734145344,-389544968,41025902,-346373909,1951025691,23128071,-1192496014,128321222,116808192,1946290094,-8722163,128845558,-385649406,116850544,1946421166,-1358495993,-10295033,-1375275438,57934087,-1962890264,-389313579,-379977539,-745799860,1959922523,-1176832243,28377087,567100084,-1226243214,1960518654,-851528627,2013217,87887339,-1207601920,65732613,-402652488,512492227,243992753,243865731,113641647,-1156577100]},{"sector":10,"length":512,"data":[28901378,-402541056,113639773,520226726,113651294,788465932,151862912,-385649409,971570631,113651201,771753903,129042118,592691968,-1173785381,45680539,3401728,-1090015327,854067102,127842816,-1174395672,45680914,1828864,1381221211,-1090014815,384305054,1560659456,-1648737983,256007,-1144824998,1085538305,-1144839731,-919404534,1925397313,-137219318,818053363,82963282,-645181392,-52254120,1019464587,-402427264,-528089056,57835580,1006639080,1007055457,604141434,1021347551,1007055457,604141434,1465107423,-1455504378,853051911,-1491194881,25830919,-1017422073,1407716835,1191473920,1191502665,-104597431,1347880643,-1940762285,-1077899576,1706297231,-4520016,375295,-838860870,-1960425695,-1784467963,46629639,773688102,127344265,-1014040437,772115238,772250019,127207043,1532582402,-1022927016,-1957669370,-1593338570,-1064433769,-2094660214,57999420,638839800,41092154,975570667,91619652,-352139645,1582889445,1286914823,128360494,516104653,-1380049138,-402607608,-1021315340,856209855,-365631278,1979711293,113651216,788465933,151797376,-346065409,1958749133,-402475515,-2144468687,151585854,-2144459404,84476990,-1959916171,772343870,151914182,775416831,151273088,-1196067837,45481994,771818728,151993984,-1207405057,45481994,771814632,151535243,-401079877,-1557266178,-970057729,-16183546,-2144434453,-16183490,45615220,-385894912,1354957005]},{"sector":11,"length":512,"data":[1465012563,-1088551338,-768407362,1038721512,58064895,1023447529,141885443,-1241513032,11003906,-545931229,71204910,-680261367,71204910,-814480119,71204910,-948632823,102665006,-184844023,772306184,128847488,-2118849791,1963522043,243281416,-352188498,-33848922,772306184,128847488,-2120684792,1963522811,243281416,-352057426,16482698,773682441,128845510,19707920,855638459,-385894711,910032593,1073968129,149681643,-1241513032,2353154,1599997727,1482381658,1048587971,1962871054,-1236119535,309503,45861171,-23074816,-389851046,-919339037,-1509505490,45810183,-24385536,-1006731288,861033303,92939986,74767115,1124567078,141869090,74714428,-370456766,1599822482,-1307798589,-1341091584,133645,667058,34414768,34451968,-20480,-1,4750,22151168,42599592,1112670858,-1064507253,234885125,303903,787971,244039822,-108331002,-34108593,-1202674445,-883949516,-661863540,-1898410424,1032128,-1342172999,1202648063,-1014237301,-1077899704,78708751,-789068149,-628299565,74698795,-768878452,-268181293,-947135858,-388771593,-802438516,-1064565645,-522989013,-1030817789,1322289836,1187548077,-31145334,91598908,-341118036,1974615046,-1968901267,1946265794,20102833,512433934,872153092,-930370094,-1031072797,-1064385789,-2080863315,292880383,-501415642,16417267,-2129234704,-351272766,1086360796,-276578162,486614544,-339702200]},{"sector":12,"length":512,"pattern":0,"data":[-1950118942,-1962932162,50334262,33948144,1060096,-1064380274,-100663109,-410265970,784698363,1085550591,-1191181637,-896794602,482007694,-1205744383,567102719,1801675088,1713398885,543517801,1663071081,1970434671,29808]},{"sector":13,"length":512,"data":[-1163222088,-1002743812,-997496461,-1878834131,-1946161115,10664440,25083536,-1952058372,-754667048,64589035,-617393191,17746771,1229736784,1126188372,779251823,960049440,1263542322,1163018583,1668172064,1816207406,1766989932,1937008743,1936020000,1702261349,1953451620,1869505824,543713141,1869440365,-1205569166,1639581952,-853422847,-1946316768,-1102098440,-234683712,-372127093,-2013485581,-1085913353,-1783824128,-352317254,-1783787470,1005260978,280139181,-1783808789,1105924274,280139181,-1783798805,1693126834,280139181,-1783798293,1726681266,280139181,-777779086,-193705235,-919340941,-305013965,-775982006,1257099731,-741228940,393534341,1951067601,-2133601863,192022267,1967844817,-1298813692,785633552,18648970,1946876288,-2082786502,645137145,1951067601,-786468201,-1770763539,-305015855,-778734518,1257099731,-741239692,1929575296,-1081463266,-1968438996,-141863208,-1527516373,-1400312994,-712980478,1979661312,-785126468,74795757,280139181,-75443247,-774737400,74795757,280139181,-75443247,-775785961,74795757,280139181,-478030895,-544866081,-1070353173,16825094,-1948742829,-1949267000,-1947169816,248824,84150786,0,117833728,33622280,67305472,1541,0,134676480,202050057,536907789,1133915625,1702260335,1684370546,16777472,1595981,4194380,65568,1677787135,32506303,746589250,471728606,68326529,251660288,1246894596,805577988]},{"sector":14,"length":512,"data":[688143108,1359234725,1728338948,1912885908,-2012971772,-1828443830,-1459315196,-1274768219,-905658620,654591252,619009563,1361436932,639566930,1912875780,-1778103990,17083652,76171559,699073565,-1842724604,-2038102894,765199569,-1274768238,70125828,68457653,821560563,623191044,70845491,1164117145,-1308347311,951780406,-872132014,67433220,71636025,1023687659,1134494782,2097452113,1171391556,614788100,71765252,622265419,1141132329,72400644,1363513994,72528132,77927671,-1358663169,1996489844,1359084544,67111681,16779290,56169633,235610115,928123663,252379394,-1853879552,233900986,8653581,2007927819,9440000,306315531,186036329,184680976,381344408,9708001,621399596,67412747,-1647310032,184683349,188127233,1108611072,-922342310,1577780847,-211770097,84233506,303371,1647797581,812556610,-649618232,33895000,-1522073344,134417627,1040452674,86251685,-1168427252,554173976,118258597,-1173615864,204264565,1561854217,1208027863,202899723,402742645,235667725,-686879743,269222261,17894401,316103948,18025473,1567953932,18156545,201397772,24499991,201398284,1561067801,201398999,470548763,201416053,504103197,-1172370431,-263385995,1561854240,201400791,587989282,201441445,-1636234204,621585876,203823105,1423399768,672661799,201416053,705429801,522914817,-1408499344,1221618454,781713709,604069237,806093103,-1758393343]},{"sector":15,"length":512,"data":[839647598,-381918452,1846031318,2104833036,20259841,201405964,-1705726512,-1158989776,20518913,201406988,32222779,-872268788,-209518591,738316812,-1895034311,316503306,1194328390,1024068609,1225142389,-681764863,1275855179,-1521677311,1309409627,1338025228,-1341610566,-1157083124,1371322891,-1370345471,1395655147,22294529,1429253818,22425601,-1158981876,22559745,1006721340,29165146,201415624,16969539,-1,-1660810226,537202781,973539853,908330536,542330113,282436,1919243776,1852795251,673199648,1866672451,2032664688,1751607666,959520884,86847800,876172288,1667845408,1869836146,-2126441370,544240158,1852116812,-1570478733,1952520192,1818323259,622865696,1881231394,-1445627610,788604448,-1390646207,124996884,-646827419,104166988,-804839213,1296433410,1480928852,1115684933,21756937,-452983820,268900865,120522531,122095419,122880000,124454751,126027639,128255892,629147576,131073988,132646876,845582976,556297,1326063745,17413848,1061312047,-340897012,20188161,973156620,20450307,1342194188,155681902,1410074612,-8148724,1409437196,1128614981,37359188,1262698805,285298773,1438064705,1163153236,177546323,1175680468,22355713,1058495756,22088705,-1808252148,283648,1074465495,2165328,561905955,143065986,-1929232054,-1778151165,698090504,60818216,-1425536859,-1348139773,269005827,-1598159942,146998164,-838612704,173200387]}],[{"sector":1,"length":512,"data":[-553395453,1242096643,65683497,66388975,66866693,121637121,692717065,318967424,-1526523645,620962012,1831873283,909180934,88802352,105041189,255332152,252005420,70267443,88814395,-1829950193,252005124,510093623,1006979844,805752537,1678134021,841880282,-309768956,875826949,-1672805072,136382133,1292191133,942805510,92432206,-307624373,84422162,101241933,711927106,23359,2084321885,993864510,777793324,640231458,-60901587,1792212182,-672989988,-16687790,-1854980607,1711305309,755391546,34098377,141458154,4140568,296945409,1127891246,1090997839,1345524647,2021184840,235022531,134447016,71051590,1732642115,10223362,169087382,1083296784,-1919415792,169870720,219061528,252611618,1547344901,1334390857,1398362926,-1135391478,1309501441,1095639119,1161429837,1174997888,668419307,19925136,-855566848,-930285031,-768354162,12374670,-83220356,218128568,-1961901938,-855637822,-395742701,-579731323,54428462,-2139879300,-970062232,41772038,1308628155,1360072331,-1054209616,-259325772,760621061,-980762573,506918446,-393608064,-963906422,758907572,-1607575202,87435520,287274108,1697052462,-1858075779,-1312424232,-1765912319,-1571538130,1191541784,-356455673,1968247818,-394434626,16692226,788476496,1954489516,246699531,150996923,-346156899,870958063,79263231,-1202515456,1914591489,381661491,653726228,69209472,541626445,-186497248]},{"sector":2,"length":512,"data":[2106310162,-57065451,259368691,-1760681793,219056649,-1094508798,-6135781,-844169214,-1007083754,1867385357,5451118,1953724784,1679846757,543912809,178418287,1920099592,1699880715,1819281920,543515489,543452769,-1821806043,2030791466,-2013001952,1701345026,1684111982,223372153,2490885,1111049222,544501615,1818845542,477454229,-1206124263,1668172076,-1569756896,1920149408,1685286192,202965102,1996932613,2122579759,16558336,2122320757,292895735,287522934,-899814263,-338544892,-1875095274,808334636,145098566,1359151663,150532194,-392625049,1799847945,67170901,1095125513,137507156,-2101332998,298880512,2025522966,-2134559232,1444820741,1052726038,24188,-971045212,-1961886139,-2005133298,1200224589,-956137324,-201647609,900334201,2081621561,1771636,243860992,278952992,371652476,470156156,326910024,235413014,13796220,75583651,2085754397,1258768803,86030460,287571978,186551164,675857184,32765721,411244550,83929373,10561419,-1830277612,-1340247552,128772097,-1962864106,-423721733,5822333,545230090,-1105693471,2097162398,2130730984,526259917,1150223503,-855506904,-352233447,440896488,1082804296,2081234581,-470286542,739465855,123296256,1342178233,635982162,-665765375,1493193816,1215453274,17152777,-1996251648,545972962,2081762891,-1759242614,17146164,7382067,1958742700,-1742102249,373027563,1946091680,104265497,378061566,1384807503]},{"sector":3,"length":512,"data":[437047859,2427516,2085476693,-1007041544,1086259892,112265921,906684114,-2033546465,1365812457,-853461366,1293165587,1945268355,-2113140957,390287177,-389148325,-1246426130,1123854961,32515011,252576313,147764819,-519501770,167847788,-2052623455,-2076556848,1221327874,-397457859,1095586436,36442196,-260931070,41943152,-855111425,520227645,50028602,20971584,522775294,-801239807,490405122,1041172819,536609128,190973697,1610670111,-720897783,218295201,-117071779,256513795,188759645,1460805104,-264368814,606017241,520580103,29360512,213909632,393627998,-1274374890,-52741353,1776680017,53280855,1486361102,1329814586,1296923424,776228417,-2103482360,1347646878,121455429,255862922,475419204,776291137,-280082110,1030305611,-1715609776,534161845,1395458431,1635022752,757164899,148375804,1397751808,861341266,868323017,305051903,-1509949262,109850573,1049167051,34538697,-753963735,1393545487,-485554982,78045455,-955316721,-402340593,438904231,-1056193781,-1532426236,333252831,-1260973130,768936781,601352,82382827,84149959,113641997,84544077,84478756,184942592,176836613,260106240,1832447262,127160850,430114801,173208839,773331207,16643,1357402408,1493725696,1532626783,-2147465384,-116603773,508973251,-849149768,520560161,-1994751422,-8651466,-1017618940,1142263058,47330186,-427812272,30310401,-616300104,18222073,318788118]},{"sector":4,"length":512,"data":[1023750324,58004998,-1476334600,146712,-4520589,-1157370881,522232330,-1304250112,33535488,1364420096,1376147285,512354699,914883841,84289536,184738024,186414281,168523245,805316101,2130817256,1275455578,1594294698,116983449,1510658944,1560703737,-1408717991,1061242180,-1694499965,892089610,-1274056841,-1470534567,920924803,504402953,-1053095052,5375860,1913782857,516156419,8593158,1963063557,637711387,523048330,1160037002,352367080,1427113843,290280705,462506172,1193216256,-118262455,1347928863,1395130374,119470731,447797643,-491851012,-651474944,1540066123,-1017161721,153993267,-1270788269,1524075328,1438820904,1519926608,346314752,452462168,10228802,1031808592,-1962773222,-821957695,335603726,1427827611,-5838767,475654539,39930483,-1446467093,720955451,1901928960,-1157617736,28639236,-2134683628,-166607362,209027270,-1921122304,-1190853570,15204354,1460061183,1326788,470484221,1032005143,276101120,973083686,985821701,24576325,-347650055,1609105408,110084871,-617413369,922194579,-2146237173,-92076653,-2147125751,65746882,805636610,-1073004206,1960526453,-1254555643,-2146601725,1965820540,1345781509,1090852026,118629099,303043076,-1375006115,302015239,-338545773,55748775,29582606,553912576,11543988,170211366,84571488,74711397,242598970,1392970240,-1845398529,134236482,-2024348811,1961692106,1048792371,1973839362,105155115]},{"sector":5,"length":512,"data":[1102262276,518779946,-762499012,60899382,-2132284620,1969620542,5259784,1330596148,-17747,-386323625,-32888832,57891167,1368424427,1217055371,1946158741,587625741,32395604,1963827806,118532611,37398793,1410386227,1365726746,1829382183,121959981,307254031,-402490172,236613236,-760646643,1108215308,547949574,1737242,134314728,2117216,123275122,-1872863905,-116756461,946996548,350815012,634741759,565747,-23762648,226986072,-75283707,807961664,-33425176,230223499,1409386762,-387431660,1398194945,-1601505741,-1956066560,-1962611268,-348086049,46593573,-776178316,-2000450556,1880304898,2571533,309832297,134615773,-1006992624,383789094,-336002249,141599500,-18271,-118065987,453902986,1416393728,-926514432,1928856738,-1615004410,721420444,1378448641,1460031829,83933264,151007181,1968766780,-1193768183,32181250,1938117881,1557552901,-401831040,1516044300,1535710468,1522130782,-1067966414,-772296974,675664713,-2095233188,-1844117670,423433844,-330298507,-1727389953,7110416,-853873913,-1977219468,166396749,942559520,772044085,80184075,761547780,521771000,637871424,65733947,161219886,256450709,-102503649,1082330226,118417180,41747238,851132497,1192052461,84084422,-615186240,1610773977,540722961,-968670419,1124600482,447588072,709171,-1977348472,-1053161148,-1054204298,-258735734,343179448,-1610216943,8158209,-327823618]},{"sector":6,"length":512,"data":[138772740,139212830,1110050931,-779483739,613680522,-184352315,-1173311405,1631663877,994162434,1121744329,410342839,1493628426,1508773667,1124221509,-771093293,639633524,1976237668,-1593653256,-1971797163,-1395973246,-398901619,-2056062118,304378021,912114628,2014475568,541606224,1945911528,1342260610,1661856760,73536000,-1796521657,-114559711,1417895236,1071189,872882760,572814624,1974497361,66103309,1887380547,1975350928,201954054,1972655339,170337830,-166778229,1124346820,-461361990,640166922,1432055299,717629954,151015398,1950354474,-1269673943,1750348344,-770273856,-1425519448,-2144598764,-125101310,130439258,-73799636,-947175084,-1863972472,-1459908888,-1073394110,22162866,117426338,75798,-1371043168,1289448372,16023424,18677765,-687865338,1258292993,1795164161,-2130704127,1728129029,721311,-1727266358,218189824,235018240,251802880,152064,40894208,42401809,45285394,46923795,20,5898986,5964555,19661763,2950267,77529344,81461550,86245679,90177840,16818225,20055446,-486441026,285291525,889626624,906384385,923176449,939971073,124387328,121831737,125436218,128844091,26771516,20776952,-2129197019,1919920117,1952671090,1992785467,234635463,621619722,1475420209,18523790,1886200500,1702126956,-1643565468,470631076,1652122154,1990794772,1627956491,-702534814,684999512,221005946,1634557766,-104905728]},{"sector":7,"length":512,"data":[172573450,1253119257,1633828969,-1736234652,2132439871,270146529,-1737727628,1886597512,472405161,-332807389,1851945512,706246501,539518406,1445545062,550529394,978672954,745888258,187010392,-2105366905,1699881242,1073984361,1445870606,-1787466641,-636654198,824736357,1665837698,2071093608,-1704197590,1313153068,861029716,-177283579,541010277,-1473580508,1970471952,-1072795536,-1491977662,810811540,-931744499,412648041,1769366884,1894698340,-1034722222,1869761723,-1943464083,825127475,2034568480,1226383104,1137792079,1048857684,1380986476,1308834817,1304519024,1668246747,539901803,553882943,1951627074,1732658738,775556379,85687811,605447201,2038395497,-828887169,1851867917,47998673,1092619724,1195987795,-1190995378,1112888115,-1425320877,810987516,819418396,1376524106,1818838766,558723941,1292259343,-294161221,1080757490,1637884962,1785331742,24574504,-1470356087,1363414459,2095243292,821975138,590209672,-748392620,-80959485,73954336,552956583,1339264047,-933728966,677800303,1531779955,1642724435,21571661,1864334084,536995701,1577126823,1577929794,103563374,690906209,-1128349691,1380013834,1196312910,-933289926,1953376710,27272801,-1521064660,1694788879,1545393671,1017667905,-2003799387,1769429392,-1534977684,1869771809,1936660601,1024003287,57575996,-748246213,2030735771,1571990140,836058960,424609674,-1071102432,1635219951,794372133,658450766,118861881]},{"sector":8,"length":512,"data":[-58232732,838700142,-1288875187,38250442,6128959,-410951558,1532374875,1566423866,1359826228,1610962181,1933198850,174422633,545005634,1406309167,1079853834,492048716,1949979712,-756716764,825925008,1292389854,87133470,137686877,1074149696,866220554,37226552,-954195925,-1519583066,-1549766544,2020173417,-771542927,750859619,1351876689,14709349,-1200526657,1667855768,1196608875,1428762921,544090378,-786360203,-166370194,-886503741,843461123,929750727,-2029844681,-1050251497,1869354241,-612798352,1081376927,1668641576,-640872344,-1810627523,826302900,86782006,89023544,251998771,171414291,87174705,688010292,942551558,1199909176,1116029557,1816215040,1638750989,-882100586,-2112086236,-1250394913,-1363027872,1220187313,5457978,2107261768,620939954,146520950,-1312739764,103940097,1484090888,1700949304,1545800306,-74579423,1701079404,1719624569,1323777552,994721569,993474473,11796529,1531303977,1701603182,1013072723,-964558239,803485773,169150260,841889080,138161461,1265932136,-1205139453,-1974460372,1751607656,1500402733,-1521518220,944648389,1309177134,192162917,1057728951,822100785,1616391508,1970037537,-1790749069,512395255,713586087,1819569733,570577002,577727346,784376400,17711138,118076195,151765377,303038465,4718613,6357014,10813463,1572864,1638597,1704178,1769759,311,21954588,23724061,26673182,27787295]},{"sector":9,"length":512,"data":[2134272,2294223,2359802,2429952,2490932,2556482,2622051,42025680,5246236,58919730,1732792170,-1318576509,1634625901,-1270367731,224002325,1977846302,1953062254,30939925,-1618168785,-899330048,-1738468467,995407873,807433302,-1734332990,1937064849,826351003,474771029,1080795809,1329727871,271471695,-1732722042,117055578,139336600,1919018798,2004116839,-1837955759,485413220,1124076830,10925603,776074587,733544449,1145692322,320192814,-2004741106,1936595655,-1372947610,-2120406427,1298558599,-788332453,1231135236,-1291440608,1637745208,-1128961676,876431372,7911633,1495474601,1948448517,550897098,314002036,1364441375,-342824343,-2063040690,623734288,542175794,828507921,1701529788,60204508,-1436875620,2040266926,-1575793418,226361977,-1856971966,-1856740933,403712512,-2129651212,67301313,690353152,704680960,721466880,336770304,755248128,771805440,266,20906031,22872112,24838193,26542130,3342336,3408314,3473882,3539448,533,37355575,41353272,49676345,52887610,3866624,3933079,4588552,4654136,1121,74776651,76349516,83165261,89784398,5177344,5244264,5309814,5375367,1530,101122131,101974100,103022677,104857686,5754880,5768798,5834353,1680148100,490737556,1462690631,50587001,1666291184,1629711647,841142273,1104019806,1280090122,1096040743,542002976]},{"sector":10,"length":512,"data":[69730382,1296388653,1111578191,337003852,1263749464,1230128169,-1792785066,726226704,-1572074430,559175109,-232556532,1158485617,-294680735,393373766,1999446296,147981601,488869154,1917096976,-127822449,1966449796,1450469742,702875987,34974499,1003917241,456590739,-709746547,9130765,1242700299,328491099,617445236,1292734700,390114424,-84407184,674589131,1090604591,1076480705,2037535757,1864307970,129356831,1519519300,-1961786541,1094910338,168191337,1869747789,1733383541,542359406,1935889306,1639461460,-227249316,-1901484792,643397491,881255740,1336222050,454402535,319049301,305035789,-2096417546,-117428885,406357512,-1001622662,379090866,-268828470,671844,2052941372,594847415,1876499687,-752200530,1365457735,-21062733,323172334,-1851886423,513177001,-902290048,521380131,-1966049147,-1654050951,221476146,644453891,851772987,401262530,743343156,1650881991,1768128160,387621381,-195004063,762277024,1661234409,432212503,1359835693,193661369,-1093375086,-1971829491,-212070409,-729096845,-1590872161,22870069,-278544536,225707197,1807090008,1432029605,-1103153917,-783914749,824534012,374865995,458035873,302315811,355607854,-1884549770,-1360456427,-1123845659,22174353,107436776,1745122222,-1627092723,-133100272,2036731990,78637691,51616017,-1391374169,334724127,2007241078,329279968,1756652008,2120967013,-898620808,-1921671679,419567117,771046656]},{"sector":11,"length":512,"data":[426776330,74651401,536886666,-1048505587,29558584,34018822,828775424,822290233,134231865,1191199232,1781602582,2042807855,417336832,541204562,1410590026,-2009960593,544829055,12087407,1091455977,1665475427,147982593,-401399692,466946331,42678875,726355010,1410597906,494499037,1954039057,1348588861,-802605804,441103032,-1386927950,-1308441856,1136826881,995561136,570619168,-1048372484,1310638877,1448279200,-1157985449,-1899167104,-1425606694,393600526,1419,-1962779253,1300956277,141920774,-1962322550,175978624,1608898792,-1083614626,-1681711120,2096982,2086492933,1026244156,1342186043,113716800,-65987731,1611565358,225757723,1963396450,1711778106,823918855,50827940,84358684,990530076,1075578631,247752424,-267160825,-2138364333,975576386,-1207733489,602496002,1311244545,1394306870,512578903,21879,460195574,-1404865248,1913124584,123398204,930352576,1963428840,-402319336,122711074,1091380971,-347201932,-2010117632,1966947335,243281414,-1975320302,1658841220,1125428421,1414446827,543446804,-1986787386,1931348260,915239963,792494176,913578770,141828614,7668039,-1977199606,-466484921,-737789650,671748723,-788094674,54739936,727724760,8972319,32008683,1615505161,471744552,260709768,260173106,1397838659,1942537767,883256385,53277410,-760531924,168242179,530923529,912078343,275979,1599971376,1502293595,245525153,378256649]},{"sector":12,"length":512,"data":[92602470,459808394,844153848,939698439,-13716791,-1047909208,-1767302901,6097269,250288445,-1274826672,-401372929,-312999778,-660602595,-1007041704,1332891989,1929379848,158305549,1929642728,976904,-1594231070,772205312,1467297417,650337625,-2106491264,-347768832,96683510,-821016699,1380610815,187042580,1905021167,723249408,100740806,-1806165137,2058900593,-8649178,2081690938,639597577,423903107,-148457564,-1844276729,-1770937464,-1432613376,60492397,-928705381,75483223,1682980477,92808921,1661035779,646570497,1476543881,21365052,72714600,-351908604,4996186,235304194,121393387,138209396,-462157496,-2012084676,71056914,259351722,943756087,-1943057839,170602333,176690805,-165261255,-1722088889,153596075,34314880,45090164,-495190808,1611664706,-2124480309,113698945,1392516106,405914744,1467657963,-243095862,-10753878,1121976671,-385619198,11075717,571634816,1189669776,1048784385,1965616788,4200302,-447411433,2065127191,400315669,70273965,1025173322,822084122,-293207149,-2136398313,85393408,253196373,175382574,-501799659,-1338081185,-194107647,125108255,1478619566,76164832,443289678,225786428,2140481544,253190,81034244,1178993011,-549326357,-1974315282,672432848,1912914408,923544844,-2010240180,2091780,1583015936,1937784003,1918974988,2004499525,606617665,1396567007,467621638,-92274608,151286788,942545911,1537045]},{"sector":13,"length":512,"data":[1381060849,1706297102,505660042,375041,-852883263,341400097,-1476354467,1124287886,645934147,1527209943,1166755219,1076007552,725382909,657276106,35107953,1444439366,942879927,-768358143,-398279085,963772657,-466482688,-489559925,-756493871,1821060109,-1047799195,520996109,-1140244437,-754772471,-1276590061,56197180,13730773,-1068324376,-1144847606,9300315,-855305637,-772314366,-758888201,520209027,1433897766,813732353,28347776,1961623476,1947158160,537740896,511017005,55327526,-2109655438,22297383,118369906,980559991,84808452,854270071,-1692894178,2082373385,176102928,469767036,-352157922,164004628,192268542,109819244,-1202363904,610403858,1219496939,-49351265,-218810024,-1606286948,-1013120395,-134057827,1016961024,1007186480,738490169,237077296,441308804,74791686,1280116994,1064633148,162795591,-463562506,184025920,1074072069,764090695,1929392872,63406866,-242777382,1347750003,1696569792,-33378049,-1995104187,-2062874922,1432999676,1444023378,-1290927438,1632028162,144309762,-795341452,537665351,-344899018,-2112875245,1460565142,563347978,-347710347,1178216028,1778392329,1162236593,242651940,1162561093,67998987,1077520149,1132466036,38270758,125042720,576596613,-385413094,156178628,250285391,228181184,-771525574,1214091344,1516173312,1448321885,1864272686,-1610577381,1965177863,803750689,772960768,1702905030,1190366106,-2080300312]},{"sector":14,"length":512,"data":[283891762,-669289586,-452924287,-396665335,604306334,-402158783,611582240,273288511,503708800,-2143074578,-387234835,1929494504,-1534456569,-706017460,692389243,1463220437,1098333815,-401369964,-1524326305,1577134412,1602722850,2047361003,-432871788,1347115049,770186884,199431208,40066280,-352172473,787038936,1201760418,-1292942581,1230528350,1342768168,-135789143,557871610,512577875,-1145496575,503790126,-119361272,40982849,944656959,1912673256,774636416,973175939,1091440244,400629311,277356556,-1867640402,1613499872,105894026,-335894296,1511359825,585673817,-395451136,135670867,-311150500,154339841,-234427570,-2077951999,2147009358,762580284,688914432,628361788,41779238,857633282,651891328,-2096931446,957351107,863044895,1124667337,978673958,-2124832943,339124271,551060658,37543904,1010195280,1009939465,1211200556,208997504,-1341717120,-1069922784,643374827,1125630802,61923661,62589827,1264362752,1260407559,-2078227912,549528593,-1809782985,460795533,791993659,417603701,200013838,537962762,1444853056,84682323,1344734571,1360920576,106256210,-561056205,-849149768,704678945,131795931,1499094877,-1462544353,1567171888,1114316425,-1911928246,-2095052534,70914284,1144653938,25523969,-352320164,526277624,1354957380,517521080,-995469305,893936308,340789201,-402651414,1048576372,-16250432,1860703860,-401864188,88090378,166396426,-1274189664]},{"sector":15,"length":512,"data":[806420812,113451213,1344835816,864479555,616038650,343943221,136205062,-1899328475,632601306,521084930,-1976388578,-32568042,211374530,1813928026,185880606,-1610563608,-832313322,855638073,1242675410,-855637573,-2134641105,-1468003980,981459754,856234782,-92274112,-337415654,-1246090965,9299972,1122563456,-1111843822,-175904766,-351571299,412657939,-176875351,-4947966,117771676,-821841725,860865188,1094799067,-75430687,-387693491,-2124873748,-1070357106,30444227,-1155611797,-604206508,1964953118,-2079707089,-1726302008,106103011,-757997359,1381038818,43387691,542853163,600515343,198201344,-1559792431,512296685,186582767,1429880405,-339768676,463539213,681711243,135170843,973606411,36336713,522089796,355586295,133144901,-1240771384,-1895052500,-129032182,-346531712,417893882,1823998720,19261456,-402257395,-1779956799,-930611197,-647960399,-287670828,385940740,59149854,-2118229307,-1064753664,116078169,637989311,780402755,-12716744,-352160257,618806587,904399497,81783586,1347922762,-1592815681,-1861347187,72963601,-2128715944,-1180444158,-402408957,991949839,-93640975,56054102,1048670304,131664193,820513653,520135426,1845634025,1963329842,14786573,228730678,-1572797425,257315598,606588199,537307681,-2144530815,-451717975,-1861023213,-2095053146,1343358995,252857938,-2062397422,-1392164695,1142358286,269980564,-2143534057,410443520,-77850532]}]],[[{"sector":1,"length":512,"data":[402740333,-1226352328,-1659746504,-1659722083,-1944976366,-1936662803,333166140,325587816,332248066,955332849,1230787213,806515721,101868165,218548000,-1856765952,228987131,621828349,609185,224502572,1102711787,-220731389,941073740,1949448320,41946469,339222584,540598650,-1545326024,983758431,156318365,978670636,889730426,202578325,80034336,37379089,5578382,-1946416861,915089102,5441875,184951458,721873726,9316047,97584772,-1359856976,-484506105,-356826990,97533445,-1088230401,-1190440319,-1527578612,169590296,1458050058,561345282,-388772350,461534504,1099040139,387558921,135900748,-1043552875,-1055705069,-1700144689,268489984,654343637,1884332046,101190066,-934080558,1403324913,-1166255777,272804001,122417592,695468349,134616176,-389813013,-243855083,171894797,1697022465,431276800,139469261,-1576031670,438305716,596247946,162579454,1930904756,-1433892075,-1933966419,-245007805,336869919,-1023990782,-1168961024,27871544,-343783704,-783674607,-1852476288,1106326291,3211265,-1106340578,-1090052605,-1968568726,339304628,975059469,153750749,-1339405568,821541411,689901086,1355014912,-15771224,1285627765,1019962639,-1205659641,34115146,535875478,1382615624,1473593320,-1926179575,-1542060670,-402652072,417502243,-1340790926,270234890,646126154,202766086,-1207938020,-1507107065,99312958,-1670316272,1142012131,-1176950232,1914177651,-1387456506]},{"sector":2,"length":512,"data":[443215,1609230086,-1541581282,1949450903,1736517648,151455184,126686296,2764588,-2002870077,945686,239076421,-1274124358,968513299,369562025,-1457871097,725003,20820040,-1192228632,-1474294784,-1274681315,67897098,401097923,403600128,-269903228,-336600251,239339987,-389812261,442499100,2030728078,-682979585,260761612,67178760,1455683686,1177768017,-1971271384,229253125,-2126437260,1209865977,630956874,327715091,24954497,-2063300032,80093188,-1222622495,-1406565934,-1017226920,288839255,1953957122,1963525381,1178992644,-117314568,996141683,1442923262,593491969,-1073981871,242810945,196681904,1588261632,1814561291,-2092850169,-193655815,696263513,-1957605290,197231566,1343562007,276243575,1978743622,1905354249,-340823553,388386823,108134490,1499650683,2086159525,303970078,641646851,1948323920,-1275023337,499330180,1350828047,-661911180,158769958,-1839655848,132025862,-2129434589,1610678545,-964491647,-118822142,-2108619688,1955856721,347670880,-122752512,677339509,435172375,1406874560,36741992,1374162764,4666616,-2098661120,-1424585735,-1357477618,17295374,235025640,1308718585,577902037,-2057139480,259198238,167272219,443892720,223217406,-380891021,58033613,1558743552,359196702,-843444877,1240345900,-1545001624,121115942,-402508216,91554053,1577068583,-1592631689,168362166,160564795,-1314846345,1980337417,-1173020652,-303153335,-1070417429]},{"sector":3,"length":512,"data":[2007016326,65541063,-497464008,1476820471,1290509352,-599822616,-1873775850,736632846,-1073018111,-2146822284,948491019,465627140,-320337294,873499142,1308711368,42238158,15270770,-385912584,229901773,-1729617459,2017452792,-159300917,-352148933,544246746,-1144811784,690686274,1253312867,304792358,383131809,554495441,859373404,973685467,-321779609,1924884546,487438367,544465045,-1838914303,856484647,1394147071,6023180,2998,1053034076,243993845,179016738,1409092512,185404338,-1744761599,117441035,-775932989,1135342569,261764241,-2105275976,1813017095,-351636208,-1199034107,1920909827,1100896505,-806842057,35091455,-557561951,1268581851,-2134342776,1058145908,109988276,57916411,-102113200,-59917570,1354296438,958383184,-1406544408,1581842437,1946354749,59357725,1376956648,151513324,693651515,947101164,-309124565,890487801,104114668,68372271,498213061,370614252,1693238539,751889368,1948354062,-1495751418,-1264574837,-1975343032,-1801191825,217686818,-945721151,235897862,109470809,84766010,4133905,747220107,1813558312,117440271,509875419,375987811,-2139346304,46006281,-1530985408,19183882,-1012599812,1848201448,52036370,2283680,218735043,1376586562,186321737,186059549,187540649,185338671,184898623,-1009448127,201389907,185248566,1073837266,-2133707952,179116292,291042295,-137155834,64655952,522647490,370255105,1537425586]},{"sector":4,"length":512,"data":[943109255,-1948180140,353739208,-149600936,1992506353,2084851898,1538095436,106811661,473373001,212361264,627772420,-1525349182,454362378,805797096,-219636716,249666816,-373252120,-132450714,-140484157,1292301904,128060429,1963255369,241505328,695537230,1342547549,84508892,69736077,448260101,17624588,268438063,-1317710270,687908369,688133531,145234574,618170905,253620992,-41490417,179315315,-1574270965,21764793,426633458,27113993,1191223528,-54400534,1093410976,-1173823512,47513920,-1159055640,-365951467,168235496,674752651,348323892,-910540029,1323965205,-1174160217,236108313,193136134,-60954342,-314400767,-930364439,-768359797,9565175,-1581055232,378211004,100862654,-763163976,1207960592,822139523,-2365430,-779386880,179975927,-1995615837,-1592963306,-2104882509,-1593369039,792945856,-1222374718,1364698111,1494097426,-1155618018,4216096,516184655,-1070461707,1670119433,-441449935,-1866430426,549683975,2059663586,1210397898,672469318,-398057914,24321716,-754974694,-503905557,-788526407,-489106966,15154682,595002224,527815179,-1173397853,907019397,-1173457459,536873753,58032170,-905688646,271075389,671840039,65583879,-349820807,553696020,-1143385869,-1963327483,-1963816221,1621317844,-252017905,460524258,1330155962,1713710522,-1430633400,826220251,315144970,1660178707,-807676903,166396160,195987933,10336770,167981449,73500928]},{"sector":5,"length":512,"data":[-1008165144,179756070,-108855216,86668288,1360819776,16569,1407733765,1918457862,-400048615,1241514004,-1031545205,1089045312,991430635,857217217,-1043207223,-963948540,1962938555,-746388621,-1946131712,-1898445861,83004379,-186121216,-397229301,-396689840,-837747121,-805651991,891511046,284819560,302418959,247879695,1389954907,-1001119986,439542202,915780830,513872671,654214283,-745809778,816388352,-2139250321,748804159,413345280,296293647,711270431,335055595,-1026980079,-9484191,956508276,-267002932,-1855868914,8457152,-335878680,-402584052,-96132137,-1369359011,-1293417681,-1593552385,-872058432,-953804698,34563846,1477746951,-401759962,496112980,202287398,254100586,-1175076037,-1576971235,918889362,-2098721539,656295542,186727495,1846446894,-397331673,492742004,120914521,-2049408238,878604818,1495142668,154583620,-496173274,-921834546,99318670,137467921,-1442831284,104539721,662116052,1908635369,510833151,1562518566,1188377268,644621131,-1000274389,491227509,99916,-1561986753,18603521,371876101,1628199423,-33065666,-398129920,1391000304,56879358,678627703,1860699780,503435774,303300805,520283112,1929486056,285235721,25541374,-370775832,-1230630280,-401509314,1380063418,410589322,23074896,-1157175258,35526224,1973506708,773081869,777341669,775040546,-147314523,-57529,-1614094049,-202833035,-399572128,1936980679,-1172146841]},{"sector":6,"length":512,"data":[962593853,-387583512,-413072730,-1645885864,-371914638,-1807494786,1908016875,-452950252,521346591,455910670,52273933,55743497,53281547,62097967,222364479,1779835068,-68681591,-385250587,-41940863,-370831678,10354766,-840428429,1849590529,16918543,2065566324,76292093,469725920,1344144397,-2031614424,756156218,-46933574,1946376964,1894257212,1929392128,-47388661,-337298898,-347389776,1998515095,1311339788,650194345,22227429,-961785591,-1507465,-402084612,-1098646755,1634497532,790162178,-658449399,456848541,-352195864,1854690582,923451459,499377375,1321420343,179341092,-137887687,-1374254109,-1949302006,1628267534,-1566936942,28922266,-838205440,1495204470,1088570101,516154565,243976499,1046897715,19673639,217653520,518583179,1407093756,-402562541,168098784,141712369,1477837606,-531763998,1468924408,-1878647210,20255266,1582582029,645670480,693184246,1309027896,643354763,-394585719,2062267852,79234308,-1468872704,1224833602,-804902556,184877334,-476411,251986923,1146103548,259006089,76174673,1152550914,1081402684,1721483,947130216,585693323,469893658,1239942459,1110077978,450456888,682805009,-1156646517,1494111464,1227540224,-898434245,1079598623,549880673,133737442,650338058,585747544,-1425134012,-1199003584,-239204864,650403861,-1810927965,12723432,-372119082,-1064380276,-74754432,-201539533,906037163,-150918330,67415814]},{"sector":7,"length":512,"data":[-172357472,-480253949,-310885311,-480778238,-1672724449,-1644601880,84935795,-389817157,598797097,378169872,-1649144131,-1832508099,1714949611,494410258,20758578,-1349139705,-2112963604,1048636418,1124077244,1726544143,-402579296,230293761,-2082277882,1594181694,-1794701451,1970564242,1323439141,344724667,-1034939250,-489756629,-1465876287,722436675,505093134,137013785,339019832,-1878095616,261234180,-402593350,100983464,251179752,839623296,-1545472019,-1776936044,689676948,-518287918,676500480,220007832,226634880,24180874,1975126389,1877526098,789739793,72717274,-1105328635,1495320073,-1945131338,262670299,1777027411,-497725788,-1190982240,633744448,-303882406,975477302,2504720,1397903416,-1912582936,868381377,-1776111141,-130422603,806232149,-1954503913,1525733602,-1020584101,404865783,722931489,34734342,-1909879645,1526784271,-1262472419,236358198,-2146481384,-1238089238,1359110908,452828708,311676150,846853648,100009478,-175302916,-2075125414,263723233,-2090029500,621460988,191674689,-1408212793,-818869900,1669333488,-402452194,1177084200,41749022,1455295373,-1439126040,61007879,-1608447541,-371129125,611382142,1180711,1596249082,-196706292,2108426353,-488111547,606927328,79109721,-768377160,333454989,1534154756,-116952066,1524111647,1024843425,347646549,242612236,-2031614645,889663566,-1699522162,-865729976,120037122,-1070384448,856989709,201592066]},{"sector":8,"length":512,"data":[-804422131,-803917065,-1317652603,-1791988618,-338498592,-1216329884,139913516,271642688,-350482429,2136441262,-2080436696,2001648190,1007038989,191628660,-1140670491,740975658,-1073197964,492673808,1393063290,151978022,-371193965,2011955052,44522729,1358175489,1965559137,124134917,1946750303,-1375205619,-1897958087,-816041571,1038100775,113706922,2624168,29574040,-742690043,383499799,-1071313247,1002176513,1124561927,533103427,44299746,-1912659813,-1576359106,572504450,-387341070,-841540864,1558046979,-1577435382,-1464294543,116066968,965674401,1502317883,-1465674474,85930262,1119907979,-1003732429,1968222726,511029797,34080286,-1185851562,-1047602713,-1607043394,-210780393,1583307172,-1609425145,512450280,-470414662,-1591597321,-1559903179,1449410739,180396815,2035592585,131216210,-328574448,-416739227,45868023,-83553548,1074201088,-833374557,-419366646,-973036855,1962212993,138709788,1166354491,135230728,1963788301,1917996295,-335672597,810883294,804260533,981706962,1655737174,-337736363,-1032813753,-352289757,1502912571,789336332,34379049,588029196,118265129,386702860,151819561,185373196,1227036225,-545345570,-791445352,90431031,552273713,-268455322,1555101379,393551987,1910520204,-588532984,18818412,1486361972,703267136,125043215,-340667605,419696155,216669657,135261092,272171381,230725634,121075072,-400722624,577372130,810029420,303040199]},{"sector":9,"length":512,"data":[1562965412,86276003,1551176211,606471699,-1384856832,237507857,1304038800,1910331870,404475857,1973073171,487607819,-2084364996,1998196286,201842305,376766746,2002997509,-39964240,-388759783,-786498621,743542184,2034142550,1899370937,299499917,-1176862711,-2145225734,359990268,1241916374,2048908499,32598864,1356647144,243992586,-1051979828,-1594212860,-1527573180,218120936,88115684,285504881,367790892,1760172939,6428165,-13436136,1186007221,-1340738374,-928249071,229642610,167011525,1172077136,716464170,-972735983,-1031076308,54526042,368616386,-1961898333,-1056745023,208795299,-502280181,1140997920,601489540,1610702872,1912661480,1979252466,-387317740,521017713,551952560,-2000813845,-1879039999,-1274461780,-1156710400,281870343,-466423061,432871117,2573,762212174,1953724755,1679846757,543912809,1919898702,1920099592,520093963,1819305298,543515489,543452769,1915242608,175338341,1701519481,1999130628,544105832,2036621586,1924134,-1180758368,-335132507,1018432022,-659191622,1384691897,-267364832,1447081022,1052015466,2041847813,-1804591065,1422335005,219874953,404555282,-1589409705,99093416,218697456,102134342,-401927157,-269385672,-1163148296,6684675,-120224255,-38139789,-401472511,400218936,-1683863610,-1454373365,-1741748325,-1847775225,137507045,239883568,-2080364121,-1945741737,-1077506338,180228075,-955041535,-1151377913,266338710,-955943834]},{"sector":10,"length":512,"data":[1863713607,1210581251,-124410792,-1089797774,1233838810,352669757,-924307499,1913257984,-566328992,1974097169,295597903,2139100308,101662468,-1371968764,-1609169402,-400461100,-1799880639,62605274,-1056701511,184588857,1877476101,558933210,281350379,880868225,-1161893048,1525154469,829228821,-116829943,1996523557,-2096212085,-1773840134,753621229,-1392261780,1001065150,452992016,-1768867823,82510861,17219230,834831573,51218355,-2048344058,-1722481700,-1290969589,-1022532864,265817737,-603430471,1091278220,-1794600696,-2111646557,-599337246,-568423409,-621226808,415307279,-428586270,7066570,228772635,620868630,336716302,-2112539122,-952824496,144968050,-1262746927,193724975,147227635,520560134,-975696331,-1007135648,373898893,-387417959,-302448708,-412376547,-65273067,60144141,-354858520,627380342,2031465749,754749148,-1782560739,-1911524037,-1375707056,523249072,-13768087,39453144,1868182738,1735236875,1862671842,1191219307,1330012933,-1187698523,854119384,1062248464,-401182208,-401537704,88156310,95414284,1688212231,-1023344920,-1823485510,12884774,1511153676,-867856868,159446599,506268868,512437767,169664683,-787496061,-1942813973,-1559727464,-1785652745,-1044181771,252006665,48812288,-2001328393,-661976519,-396968055,65065409,-291502888,506143,1125507575,232320619,-10400090,504298782,152177923,185401630,-350093128,557497160,1788149764,179119862]},{"sector":11,"length":512,"data":[293001275,538461581,1985192733,261588562,485375,-923334293,1013947913,1960512339,-1979019439,242627013,-978886655,-680204285,-1555239943,-1324348050,1387548735,-1970503677,1074021191,1967209563,33259527,435200632,503377971,706157773,-397863309,286992731,84218300,-336852480,-1457094410,1048592154,-1569379835,1241032573,558100895,1967357041,951993371,1050104410,-1014323160,-1270317276,1348114522,445416448,1326098095,331011037,223177617,269142773,50002448,-2030732568,1139310097,-230280959,-365068280,-1578545142,1929471258,1680245094,-1980168927,477430278,364438426,-694992892,1307764767,-951662034,-322656984,-1164373968,1946113542,-215422762,1769887247,141794774,-378112625,-681711416,28856903,-399053943,-680329002,695218564,1817313722,-298174150,1318927090,-1908801489,-399179288,-1593224776,-996604940,1351293557,179834545,218828425,-1913504768,-1425355714,43207173,-386276800,1629766654,56797917,1183156472,-1301759677,-2099767593,168220372,158583096,352321596,736636277,-1596069120,104339160,8128897,-466477312,-608444207,-2116549865,2098720763,-1958027248,1962281783,-216308982,-2079048443,431682616,23302023,-712398891,923822824,-342824718,-1094147901,767429549,251882555,2056662438,415109653,103038333,61964320,1769268030,-805013062,-717756271,436671211,-1932381361,-427132194,-1768244877,-1115684514,-1557728608,829558628,1961443200,83886603,-2145815061,1972372095]},{"sector":12,"length":512,"data":[-21004013,-1191091615,-1385168117,1625818738,267122688,206065958,9227269,-1021376534,197362515,1065428992,1047855616,-16226429,-1526329739,268834068,745477894,149661266,67895310,270795275,226460444,102134273,2001814847,202342178,640712970,1996553990,2038838787,184664923,1029891157,44060588,352781994,-1944628085,224168844,256674688,-1472018513,-993384950,-500679290,-1238997048,319174801,-272498431,2088763417,57944358,683608071,672432422,1979295872,130253079,260736960,1929181568,6365452,-1329581107,-1144968449,-299957871,383465101,736161795,391642753,-1917511561,-967031381,82749138,-418257944,5408306,-1559733110,-1332215804,-1323923194,-1389459446,621201162,-1375308117,878721749,-75496921,-724496897,1953336320,-780949262,822405189,738689718,-1091747496,339414810,2006853633,38025989,-964491914,-262857446,78719501,908069458,736809834,-1785963838,107294026,691986355,855865911,1375146450,229831546,331492162,1187431398,65251659,1221009802,772813502,-1559403357,417535698,2018035577,1694892407,1314721621,-569299875,89973770,-351922479,1914330413,-309170561,673906962,-1153499136,1913648701,-821809398,-319962122,-919719083,851139224,814950637,-1240519965,569893391,95527440,579267539,244001590,1489237919,-347984256,-185865775,1114226987,996278066,34370515,-281164662,-1559988225,1438294228,-771694504,-656106263,218232717,1448431928,850664966]},{"sector":13,"length":512,"data":[-839171994,-1962467807,172236779,206812399,996367879,-494118819,65726464,-2142107200,2112360098,-1173982713,323113717,-1915718956,900577284,341436422,-1092089508,1929434115,802272023,1420391179,-1495084624,-1271921278,283406852,-1712772798,-1055959193,309692426,990860552,269931038,-2103429237,-1027159166,488245923,694296491,691189037,953083348,-903872061,260707977,-401635165,-689379890,219417931,-536343135,-1554185322,376838664,274277977,472677239,936578177,-29699804,1006949782,-400292848,-527563666,-816125692,1066663709,436240460,-1459174590,-1543085498,-434782169,-1258228248,224476595,1380756170,121879302,-1409113263,-1382267791,-518827312,1963136037,106364939,-385791768,334233304,192532804,-2036416070,21764816,-186055741,-1526701598,223322368,-1592987741,351340113,106366484,1503726931,692409606,436149517,-784885689,196129111,-466474619,-671083778,-400430088,477233388,1945305832,991035793,-46471153,-1677696792,1156075773,-380045082,-2000421069,113453697,1053084503,75318872,436613700,-2084402094,117318395,39194809,-1908267066,-286569534,1606716224,1950744839,1353072806,472256988,269816400,-1006583036,-1192335917,-473059903,-972345464,1567909377,1004049247,14307611,48321174,-389046296,972287060,-1697671782,-518242060,-387607320,-1200101999,-782342142,453808912,-504492229,-815388404,1613320279,-387169985,755403879,13296996,345062851,-2025996013,1479755636]},{"sector":14,"length":512,"data":[-1587935249,1031212783,88018967,-1625604842,487858493,85867927,1031572487,1701576735,1963215692,757499678,134663950,-1000340529,533658010,-1674337618,755235079,1592381153,63888134,-785527763,420349445,-826489197,-2045226458,-1416985415,675603252,-2063597815,436224786,947058773,1241528040,54978796,83914839,-1676709120,-1029896664,1436674049,-1676905571,1075112016,1517485886,-1655177044,-1511519374,103219241,-352248489,-1957575738,-247394290,235833612,-1491669069,-1017517304,859899709,2022179375,85210643,1701608936,271667588,-1588536038,-2088894200,156325182,676529723,58068389,446891425,22348120,168296668,1510869738,378082838,608308467,-1274121264,-778816679,960707873,815872770,275927288,-1524316696,-396228189,8455018,-1007785934,1464881490,1579000150,377706978,-1588128683,136219400,1677963705,-745864460,142950027,1463160921,182214669,-772812534,-1083158306,-151522581,1947862159,1221120288,889490447,1956968521,85256460,480501742,1749081530,-1517789491,1515804767,-1620760009,-2043954236,300714088,293964937,-1576105192,235603760,-116886257,-14838524,1897014507,442901283,178521855,-1167588541,1967513866,2704,-250352895,-504674036,1468995320,743936534,457003593,606533452,1461063008,257270543,-156350400,-1324197586,739063047,-385909418,654442388,-400788365,235601460,2011701572,-5055747,-118222336,233505515,-1228732156,279111919,-2044524349,1523359796]},{"sector":15,"length":512,"data":[-1558976627,1351162412,1317555477,1411660594,1365211009,659559502,1189613941,-500641535,538442060,-73162448,185264919,512497661,-401860592,-1095761710,1639072544,-260667372,1495387415,1048660817,3956708,1376650073,60903760,100913715,331450830,-1679044664,256301145,350900250,188912657,204518632,-11969744,-349574382,1615918826,-1912188399,1963784966,947135104,-1947038896,696273144,50426856,584455111,217666050,35667,-389968678,-1047658226,-138743669,268417039,-145129084,-1324830783,81842948,-337509323,620114713,87505609,-2053690879,83831296,588024614,-148111160,69281488,991168806,755828689,29659487,-1549729712,-241100815,-217705152,243878167,-1547367435,-235460283,1555955726,1514148874,-388253169,1371786081,-1433708969,-1264464111,2135922630,-2086361385,219324620,96963542,1600038522,-1403443861,659707734,-1691283915,-1991815680,-1837989874,512350507,-909776013,1352731664,155683138,-314536133,-1781724554,-1559018834,-693954303,1479608590,1233736643,-1949198254,280058867,67053708,636980183,1518782976,-13412776,-164418554,-780130953,-268237270,375651091,-372175369,12587030,1943737136,-1962577180,-119567418,948307179,1040810816,-137970789,-1948964111,-133769744,-1850613681,13428535,2046452371,953362079,575272927,386922463,337058324,437701606,-401891034,5245402,7852548,953037682,-1837784295,1426129368,472653872,-880079243,-518433905,928893299]}],[{"sector":1,"length":512,"data":[336677631,383000790,-122653152,-1270746863,125108294,-344661807,-1954307566,650344920,1621229986,86409259,652792065,-2070035836,-1172700650,-1557748952,-1016914819,-1447287266,236343122,558833253,-418018436,-1557415797,-604978401,-519313174,301014880,-201851040,-1007157217,-234628978,1962867075,-1996183808,-1958155508,2017782532,1393840809,-268209508,-1608082158,153097077,200278053,-1988064831,-14343391,320793359,1407308049,1881473645,135745307,-1276717129,-1763666825,-1609861803,1778837943,-2129974943,-2013134854,-402296139,-1724742627,1977820950,1544584639,863454723,-1979103808,-534869215,-2130058173,1343565030,17050856,24074495,-2143524856,-1022685209,-266069269,-398918575,1392436763,303831981,24321251,-400625010,-214970112,954743410,-1223783680,989914887,335880931,1916852049,4241667,2676289,1918458085,98077796,-661780480,-2095054760,-377274174,534542144,529533675,1176699327,-133633849,2033158,-1247742408,-1409305590,1638581386,-1442714617,1225442055,58015458,151173272,-1174422528,1397817342,1877496328,154360830,186142808,1659423027,1075795981,1981031231,587203548,1866664461,1769109872,544499815,1124237352,959520809,86849336,538980409,1698894848,1634890862,1867522156,2099561,1718571840,1918990196,1226845285,539911022,171487633,372259876,1399157823,1763746112,1701273965,1948263712,122362984,40013939,221143343,1397703721,340817440,1769173605,1970088559]},{"sector":2,"length":512,"data":[-1316675555,775038306,-1388656592,622492776,1012147968,1381124429,1663062607,1839384175,-1469860755,1869481386,-1406884560,1074293634,1701716065,982209578,-1201397653,123017333,1869770810,-401257629,645072046,207844666,325875046,-2065861337,1143539310,544743515,-2003129820,863602195,1697952643,635243364,1735289104,1480921860,456815831,1946229588,7538277,1952085790,1948125162,-140473600,1818846780,203884645,-1719861179,1175677795,788527277,-1174191328,393102015,578832687,1662281225,-54112151,1986424955,527394361,1671942246,1702063980,1835427615,333341994,-1586547847,1827223672,-184898708,889289952,1656510720,-842374033,1915642721,-1049400935,170395594,926029322,-720735050,544170601,790522231,1384776438,-1593119197,1819214900,-1073347801,1768256139,552899720,-1809749721,643921413,2055268705,-1988990615,1768205597,637251442,497092453,1142956214,733156965,117572818,-381024907,963004711,1728514413,2133039425,2103512132,-1728943768,-535101340,206021136,1685091817,1372987206,-652186398,98463855,629836337,1767208290,1172902772,1668246624,-2058001312,337079457,-1876937422,-1276330619,-2059689262,513057121,1746290976,2000495661,-1564383135,1969493604,-1777749972,1999890524,1819167666,930418300,1151926823,1818656587,1853189947,734814585,-1491441260,-2094370719,561212029,1640063226,-1367083253,6226462,18112515,788268574,1483673228,1243516462,84280720,1483409094,100840960]},{"sector":3,"length":512,"data":[107742855,1968197693,772689920,1484066432,1103331392,1344178222,-2136992704,-1558268928,112745124,852565043,-76267519,-1962511867,-337606973,-2127514606,-997847208,-2130502083,100606802,531628661,2386217,1074198103,119416181,-1087393540,129,-1241559670,-233577728,-485526098,9053709,-551287520,-277524932,8907256,1895992296,1535146055,1116091201,-1269592992,-2127670007,1219576126,275972608,1297331473,386246440,-1847044885,-1609277812,-402168980,-1744690072,-401478674,371328939,-603268238,-993712630,1410745580,384563262,219723501,676412696,1877539096,2134803285,1950679665,-1274537968,-2100082103,402655687,416148869,739317893,781419792,1485252234,-1198255565,-1944570597,2023490822,1981712658,639875160,259788771,1419925626,609890701,690558245,587806729,548127497,341257815,1729545518,169619926,500960556,1484656256,52678528,1448564231,16485205,1341719432,-148434757,-1947694093,1426147778,-108854338,805860868,-2081322114,285672686,-2136077695,361246914,512906319,130361314,542428811,-486294233,1575152386,1495151666,147019867,-2128973590,2029981701,1947229242,1094856309,234881099,19177941,1229327873,560398412,1448542530,1968587091,103241981,285616412,814201820,31612809,102772797,1298243648,1280525651,1096173129,401101395,1091390793,1091194949,-1247051645,-475168768,-231755757,1963844526,826114059,472249205,46366735,915093317,235231906,92275108]},{"sector":4,"length":512,"data":[1524958918,-1407393024,1949252681,-746577898,1022521921,787380058,571812233,871899785,1042044289,209016076,1177467015,-345107375,-1575487009,698491599,-1056656599,73094660,1416509770,-815454619,-1536900593,1712753934,144642402,-1605086069,-399138784,124979164,-602996736,41937235,1929925608,41412870,1946694377,1965633794,1879763189,1478296346,-387157419,84086747,2011750676,1561031434,1347971902,-730528676,590821609,-66049008,1124186191,788668857,-385649711,1823491413,1023457349,-1559084270,-351491426,582419742,45632326,9447234,922169063,-216655887,46302042,-1024332741,-1776036238,-1890366526,229930108,919339296,1107962755,-953551602,-900034554,-1845023164,-1507932921,-1916436215,1918148309,1917393735,681651778,34154231,-741978026,183030754,-1931335552,-1898970150,679762138,1171784500,-988525199,91430540,-1557530207,-2135785328,54937591,1661224928,24176897,-1023107069,-386895355,755958511,-1078532861,-1556227757,1221698345,382064965,-953267802,1700069096,-1215251239,1673181119,1848287665,1528500073,-1760482978,517570390,454384549,264562767,-1461124222,-1325342422,-1144968443,-930397396,1049451089,596115825,-208994293,1952032499,320081693,-13703198,74729742,-2094133622,377728786,-345988476,618457511,2042108487,-1319428253,625171286,1549219505,6268821,-2095956715,-1601285480,-1532452457,204335156,2091101447,-1589694124,1534986320,2126881022,301040277,1536628361]},{"sector":5,"length":512,"data":[248359591,582225561,700003179,326904652,-1053078533,41193528,-440780821,722229621,1610819455,-400985473,-1276637546,-1022266878,75762585,721989861,-153381874,1388122896,1521550544,67168261,-1012658695,1102349831,96812036,1117031542,-1160213576,100907763,-1532989179,335946659,153424549,1980630587,-1586406236,-469030636,-930406132,-457037124,309706262,440798986,63927552,1713208948,259260671,-370016128,519910121,-1577057963,-1976636110,-145031154,1273077765,-372129741,-348126350,2021914873,-1517987731,505604484,260945698,1073857613,-1958731404,1129513448,654629526,79958034,1109029472,607339010,-768358144,1525156109,1994930944,-1603851441,-347106328,540148134,841495051,841650973,-697107069,1787433481,-1270814080,990126134,1927096790,147742128,2137178620,149139196,-775081908,-688332069,1537426402,874992323,1050881,-1928890917,-396660426,537853968,1712299108,1952543067,1431393188,1373069425,-211023844,286967947,1930588446,-1961347496,-175379218,2136079243,129898704,-289521632,-970585109,270984455,132689346,1573084416,236910663,1038654100,1752301570,1427352149,-1398591915,2025349124,1971346249,-389709006,-389733295,163678287,-1882851577,2097211401,-351328381,2000978180,-839909337,675310594,1930426173,851897123,-1073535070,1260185727,-954387559,-800784272,-134379487,367109541,833126087,-398366545,-477898720,151009807,385540627,-1769055576,-842803200,1528628935]},{"sector":6,"length":512,"data":[-11351553,-2074392057,122475431,-380631218,122816308,126519124,234995640,1912683544,1511055730,408574697,-1084560503,10487809,94076993,-1962772645,1914038520,659236794,654328301,1552767727,1525916692,1284092564,691931154,-1274740547,-387425547,797515459,1204235532,-868985086,71796994,-2096756941,-2045769533,-538819257,1426184939,2138376937,-781583978,-361598492,873597507,1979867649,-1073256343,1630777329,201371137,-628380151,892569644,739248491,-2029244983,1085366105,-940999032,2144912752,-1409570422,-1346993778,1214431619,859881744,-385139572,2017366592,-852943028,118688878,-1270039865,-1298438124,508674823,483002194,235434710,1510438666,566450463,973351635,774051865,-1605896618,189238063,-2019557263,1200245877,104476173,1114987264,236212900,940899860,269751634,-720700140,371897927,234166019,1192534265,27471384,119277403,1532545795,5962594,1149885992,-336045566,74603014,-111807483,418471623,590252361,-2009897502,96990034,52779611,718547224,1232031158,1092932429,782307154,422839069,1091179828,-1945406301,1673566936,-661759193,1341700587,1491015520,-2039749291,507539457,-65073658,1688773166,50593812,-1070388366,-2079708467,594863126,-1065347431,-1220416520,163070720,286430209,268485367,915225461,1344976919,837494057,318767033,467405456,-425181,616439412,-285143094,-24964081,-996798705,641739841,1955902966,1662977879,-67349951,1381409987]},{"sector":7,"length":512,"data":[132273704,-785206266,1008317490,-61896658,944212737,118243348,1377633371,9372090,-1556525039,-1973790054,1241647175,115015136,77790735,-1057094642,1662255120,319819175,-702404005,-2124738808,1531515530,312553087,1991971143,2047770667,68440576,822544499,-653570165,1328241429,135285801,352361207,-1545516724,1459837713,1526028616,-216479741,551264357,-346359389,288423980,-1959675462,772877836,-1432743399,981092186,807778367,715383394,237477720,1537541831,510863506,296165001,167988851,335815685,2001253611,-1300288995,1153128600,1951957281,242422340,-385676544,-905109297,-2092279675,-615792300,1912684569,1692943081,1140148796,-1871640172,-932990895,1074092074,-1791213857,479759520,-1037368457,541281087,1150149386,1521355796,61965190,306481621,358670547,-1340862341,1163567907,-2063514488,-747438051,-236494709,2126643663,-1064550537,-1878014077,66036102,1655084999,-1465691135,52393562,510822022,88380927,116331318,483941141,536905087,-2141526627,378389496,-1577495105,1416693285,1327023097,68596013,-1845070513,-1576448221,-1091998811,726990850,1533432833,-444533877,594558065,481674140,604693148,-224634352,1559742034,1251082771,506146333,259459343,1798908839,1466028032,-386170904,65796954,1006785001,-1674630056,1137689686,1531158836,1962159329,-1120524537,-467400213,-1023154111,-1533787893,572069513,1551131193,104110186,-1400301423,-1036302113,2076361366,369307155]},{"sector":8,"length":512,"data":[537116712,-1461575638,769612711,-165422567,1359021696,50676200,-1964596684,-465526527,9122570,310711592,109249713,951173024,1009410309,2129187586,1158957096,384326433,108928114,1102275607,1120444431,-1912048887,-14096082,1180370561,20441430,1455081767,-1794964308,-1790967307,-448823266,2114266740,-1173552863,-1320547599,2134748090,-1811890057,-74742845,908908584,2120233,-362961677,-562754676,738255733,8418588,253769733,195957768,153848892,507380852,-1576685791,-158736059,-48840282,1365379674,-1485168574,1243368528,1349190515,1493463882,286593906,815661357,-689784904,-481358613,1642823553,-51659735,1415364547,454031288,193401347,1528908031,-813925771,-653232576,6350911,2167133,57010389,-1969163166,136347900,80118780,1667372473,812976121,578043986,824141134,-995086018,-206935614,719062954,1137263432,173394692,-1907299496,760464364,600618957,1541666784,-1980907078,1238522820,1252230097,-948886167,1084952066,515773266,125066060,130355560,1208625899,1918587957,724455459,776021512,1386415503,1323669834,1347759112,-343152864,216271890,341091101,1263722767,-1602065804,1376468125,977939011,50399324,403236997,25886920,-1896330574,-1931414862,-1609802045,1996780591,-373822677,-652279665,-1908720638,-2076551780,89751654,2003662071,512682754,-1676408631,1887851169,1971606707,-2134045856,36365325,2000835639,923462477,2006534710,170789441,991300866]},{"sector":9,"length":512,"data":[441465090,1090926908,-1704429064,2048918587,-335937545,-2004289044,1357310818,130943299,42269323,1916208180,365464347,-150189822,1435177333,174575429,688354077,121525126,-1909056789,-2021063135,22274322,-1729800096,-1122986044,-1248117223,69034848,1772876544,1087036297,1684427322,897557048,-1854809973,1430238452,1711908118,-1053090795,1211635826,-1525605199,119095717,-1189493117,1772438531,1843059732,620824281,1951901980,-2042314216,1915663194,-1824410499,1944783534,537401347,1522620922,2070894260,1918637796,347280498,-1088733950,1115104807,397061521,-1307910002,1699263322,-430500299,-1979368388,878008818,1262872405,2073582858,-143261324,844628187,-175761320,339311704,1040414040,773739863,906134015,1519519084,-2059304984,227991552,832052876,-1516451302,-486175480,-1516617646,91642522,-1932879346,688231448,1411399709,1163804972,251019074,-1542687616,-1609923069,-854319458,-1658031579,537297198,268454811,3776814,-348904414,1781921959,319108885,1560357663,-107101303,1779493611,-1940696752,1022075608,106658722,-1476993058,-1711144866,67942530,989888698,1926353012,646387237,-123925902,1694533001,-339965906,-150916625,128172083,-1560196595,53150489,262147389,-1576973809,62129066,-1180558816,-398520294,24314911,-1610569421,512426010,1856048389,63998733,43282454,235475242,1002505015,1980376770,-1962860752,-13429194,-1847065944,494149125,520426472,292701154,28887633]},{"sector":10,"length":512,"data":[-1551237036,378080525,-1325921009,-974611455,38771972,154584070,-1944806387,-466679865,14823172,-397258574,-303561562,1951947267,393168148,1611473766,1362741876,761928042,-769126784,371917882,1827834647,1817324581,1034414092,3184549,560734060,-1517098227,1728589115,609576731,2016050474,-8863406,258620522,-1413421051,1831431500,887450933,1831562720,1083413806,1832217872,1378616504,988286019,1620556653,1831955712,619253043,779569919,1848471072,254478666,-781479893,-1137448957,-1810470760,1765501353,-1677039289,1765632261,-956373103,1913004352,915144463,1094609983,1040263949,-383830493,129629902,-1174384520,170725290,2097266956,457580169,1129087222,-2132270987,320781826,-1994519168,-1994700746,-1122284994,1047024133,-342742606,1431307281,-2142073755,2033985701,320235285,1947149840,263478785,-400281816,1590244639,1972934664,1583540282,858045,1963200586,520537875,100663309,111431201,686543498,-649191621,988314370,1577969431,343277944,655927672,-66050696,-1560034816,1949178538,11004009,2015393792,2024201002,2014345257,2021289265,1963292723,53573870,2013315704,-2147389946,-1451752804,930625824,-2147449840,1743044670,167196533,1871462683,1921189580,-2147188798,1046369455,71908939,4591616,939514559,986784,-1274574720,-1893610180,1926793991,-1949332711,1848890838,-659240653,-779418006,-1022365440,1962935357,-2084954374,-1545992190,62522285,531173864,-1964430724]},{"sector":11,"length":512,"data":[-2067560517,104492130,1141339470,1491654636,9727955,517049297,207523390,56040,-663609599,1187266054,1178287624,-1945471740,146830857,117601542,1946694851,1183399567,-2142764020,1925067524,1586183927,139867904,615956876,1519342087,292367,-232056064,1448605979,-2096118141,14680279,-1962807832,996105926,1980592134,-1054993911,-1979448880,-396359852,-2089024950,1172833651,-861737988,-1871383294,-385198455,-12775672,-1368407047,214999306,-2147441665,-661975803,-2097092888,853822,104402804,1946650274,1751575561,694743099,67722306,-799798466,-2012998859,1086486264,-20168524,1318328227,423667264,425572160,624957248,457182885,624958784,658551668,-1793449920,1082933289,-1654243287,1076576366,1253785643,1074675753,1089030701,1077362735,1082209849,-401653575,-260964033,1913595415,1278976998,2449690,-1522584043,910243476,189478473,650131051,-779368634,-265002903,252050059,1281363712,212930530,-1677139245,1354894308,553765754,1354979456,347952466,-398524267,224026011,1074463016,-1022688536,-829910952,-980742173,-805047435,-315179007,-134193176,1172557707,-552296010,1273551124,332464128,197145425,-669748014,-903105738,454893853,787001732,-936645120,219416941,1505429268,428658402,499341649,611111398,184214231,182374895,1349464402,478151216,-1039935348,1515772046,522226618,14201016,1476861460,-54629912,253272358,109851405,1994296310,178306847,515447296]},{"sector":12,"length":512,"pattern":0,"data":[209037043,-1407573825,340789930,-1408469824,-1393317653,4486410,-1764037637,-1588191738,97584384,350797966,1496150529,93003526,-1223821436,453818939,1258595263,1637613605,1577713695,-1340401221,4253697,5775160,-2046462562,-613179680,721887070,1951373569,1959213575,-1442840573,-1974012693,643608792,1962886458,646687233,1965486720,-620037771,-184453640,814252638,-91533226,-1263056892,1433558094,146821431,141908351,-1736031253,1172832264,504121856,1392868873,138151536,1328417140,-437478336,554927817,134750324,1109089726,1656647489,783306523,1225868217,407875299,430510496,6095851,-1336448736,-2080666880,398008007,-1608582144,-1185993274,318570501,571157001,-1958937529,1116383175,67307381,-1961788752,1213325048,134744847,-1916575942,-1004841674,920729932,155194704,-13370309,742755110,-1342177013,1455459866,1520890705,1326543966,-1072420814,1392574649,1832747046,1974959306,-391579160,1526925826,96504912,504240144,50424992,-78673464,1158227465,537524009,133760769,119808009,675187701,404130561,2113972225,18224098,-987358493,280317972,-1945847295,771958493,-2095513580,-1897383995,-503053859,85921510,-1955610875,549880306,1076611979,-1527525887,1468987992,-67541159,880639,65525]},{"sector":13,"length":512,"data":[-1339456279,52836910,1007973633,1007645688,-955681535,-956301305,583,-355467344,0,0,0,0,-859779976,2014058616,-872363008,8309964,-864550884,7913724,104645502,4154942,209191116,8309884,209191136,8309884,209203248,8309884,-1065877504,940341440,1715258238,3956862,-864550708,7913724,-864550688,7913724,812646604,7876656,406374012,3938328,812646624,7876656,-965986106,13027070,2013278256,13434060,1627127836,16539768,209649664,8375423,-20157378,13552844,2013318264,7916748,2013318144,7916748,2013323264,7916748,-872362888,8309964,-872357888,8309964,-872363008,-133399348,1715214531,1588326,-859045684,7916748,-1065478120,404258496,-261854152,16574048,-59192116,808516656,-87241480,-943271994,1008212750,1893210136,209190940,8309884,812646456,7876656,2013273088,7916748,-872408064,8309964,-134154240,13421772,-322174724,13425916,1047292988,32256,946629688,31744,1613758512,7916736,-67108864,49344,-67108864,3084,-557005117,265053747,-607336765,63926071,402659352,1579032,-865717504,13158,862374912,52326,-2011002846,-2011002846,-1437226411,-1437226411,-287606821,-287606821,404232216,404232216,404232216,404232440,418912280,404232440,909522486,909522678,0,909522686,418906112,404232440,116799030,909522678]},{"sector":14,"length":512,"data":[909522486,909522486,117309440,909522678,116799030,254,909522486,254,418912280,248,0,404232440,404232216,31,404232216,255,0,404232447,404232216,404232223,0,255,404232216,404232447,404690968,404232223,909522486,909522487,808924726,63,809435136,909522487,16201270,255,16711680,909522679,808924726,909522487,16711680,255,16201270,909522679,16717848,255,909522486,255,16711680,404232447,0,909522687,909522486,63,404690968,31,404684800,404232223,0,909522495,909522486,909522687,419371032,404232447,404232216,248,0,404232223,-1,-1,0,-1,-252645136,-252645136,252645135,252645135,-1,0,-596246528,7789768,-120817664,-1061095220,-1060307968,12632256,1819082240,7105644,811650300,16567392,-662831104,7395544,1717986816,-1067418522,417101312,1579032,-864538372,-63932212,-20550600,3697862,-960074696,15625324,2081959964,7916748,-612499456,32475,-612496378,-1067417893,-121610184,3694784,-858993544,13421772,-67044352,64512,821833776,16515120,806891616,16515168,811610136,16515096,404429582,404232216,404232216,1893259288,-67096528,3158016,14448128,56438,946629688,0,402653184,24]},{"sector":15,"length":512,"data":[0,24,202116111,473722092,1819044984,108,1613764720,120,1010565120,15420,0,0,1398079925,65,0,0,1616920064,1040989792,-872363008,7785676,2080382464,8322246,2093382656,3892766,2080400896,3892766,2080436224,3892766,2084072504,3892766,1614675968,1040989792,2093382656,8322246,2080427008,8322246,2080436224,8322246,939550208,3938328,409353216,3938328,939585536,3938328,1715208294,6710910,1715208216,6710910,1627258895,16670844,-301989888,8379955,-864092160,13618431,1013332992,3958374,1006659072,3958374,1006694400,3958374,1724087808,3892838,1711337472,3892838,1711302144,2080783974,-964951866,8177350,1717960806,3958374,2080505856,-2139293986,-261854152,16574048,-831258112,-2141395242,1013317632,26172,1008212750,1893210136,2080378624,3892766,939531776,3938328,1006636800,3958374,-872407552,7785676,2094822912,6710886,1986452598,6712958,1047292988,32256,946629688,31744,1613758512,7916736,-1380367812,1011002809,-67108864,3084,-557005117,265053747,-607336765,63926071,402659328,1588284,-865717504,13158,862374912,52326,-2011002846,-2011002846,-1437226411,-1437226411,-287606821,-287606821,404232216,404232216,404232216,404232440,1715208207,6710910,1715234364,6710910,1715208432,6710910]}]],[[{"sector":1,"length":512,"data":[-1581432260,1011006881,116799030,909522678,909522486,909522486,117309440,909522678,116799030,254,-1065478120,404258496,-59192116,808516656,0,404232440,404232216,31,404232216,255,0,404232447,404232216,404232223,0,255,404232216,404232447,-119769600,7785532,1715235894,6710910,808924726,63,809435136,909522487,16201270,255,16711680,909522679,808924726,909522487,16711680,255,16201270,909522679,-964901376,13008070,205395968,8177278,1727791104,16541430,1627286584,16670844,1627259078,16670844,813629688,8335422,939524096,3938328,406585374,3938328,406611516,3938328,406585446,3938328,404232216,248,0,404232223,-1,-1,0,-1,1579032,1579032,406585464,3938328,-1,0,-964952033,8177350,-120817664,-1061095220,-964924360,8177350,1665007864,4088675,1021081088,3958374,-964895626,8177350,1717986816,-1067418522,2095054848,-127894426,1719427312,15753340,1717960719,3958374,1718010750,3958374,1717960944,3958374,1711279872,2080783974,1717960719,3938364,252,0,3151884,0,-67108864,0,821833776,16515120,0,-67044352,326375139,-1016131609,2078006143,1776411,1815634750,2026649708,-67096528,3158016,0,-133416960]},{"sector":2,"length":512,"data":[946629688,0,198,0,0,24,808480816,120,409999600,240,1613813872,248,1010565120,15420,0,0,1967981394,761885804,1735289196,7102837,-859779976,2014058616,-872363008,7785676,-864550884,7913724,104628606,3892798,209226866,7785596,209191136,7785596,2016411676,13434060,-1065877504,941128896,1715241342,3956862,813597054,8269884,-864550688,7913724,813170716,7876656,2080408188,8177350,812646624,7876656,2016468086,13434060,2016445560,13434060,1627127836,16539768,2016411872,13434060,1627128032,16539768,2013318264,7916748,2013321324,7916748,2013323264,7916748,-859045860,7916748,-872357888,7785676,813170912,7876656,2080431222,8177350,-859045684,7916748,-1065478120,404258496,-261854152,16574048,-859045664,7916748,-87241480,-943271994,2080374814,8177350,209190940,7785596,812646428,7876656,2013273088,7916748,-872408064,7785676,-134154240,13421772,-322174724,13425916,1047292988,32256,946629688,31744,1613758512,7916736,2080375024,8177350,-67108864,3084,-557005117,265053747,-607336765,63926071,402659352,1579032,-865717504,13158,862374912,52326,-2011002846,-2011002846,-1437226411,-1437226411,-287606821,-287606821,404232216,404232216,404232216,404232440,418912280,404232440]},{"sector":3,"length":512,"data":[909522486,909522678,0,909522686,418906112,404232440,116799030,909522678,909522486,909522486,117309440,909522678,116799030,254,909522486,254,418912280,248,0,404232440,404232216,31,404232216,255,0,404232447,404232216,404232223,0,255,404232216,404232447,404690968,404232223,909522486,909522487,808924726,63,809435136,909522487,16201270,255,16711680,909522679,808924726,909522487,16711680,255,16201270,909522679,16717848,255,909522486,255,16711680,404232447,0,909522687,909522486,63,404690968,31,404684800,404232223,0,909522495,909522486,909522687,419371032,404232447,404232216,248,0,404232223,-1,-1,0,-1,-252645136,-252645136,252645135,252645135,-1,0,-596246528,7789768,-120817664,-1061095220,-1060307968,12632256,1819082240,7105644,811650300,16567392,-662831104,7395544,1717986816,-1067418522,417101312,1579032,-864538372,-63932212,-20550600,3697862,-960074696,15625324,2081959964,7916748,-612499456,32475,-612496378,-1067417893,-121610184,3694784,-858993544,13421772,-67044352,64512,821833776,16515120,806891616,16515168,811610136,16515096,404429582,404232216,404232216,1893259288]},{"sector":4,"length":512,"data":[-67096528,3158016,14448128,56438,946629688,0,402653184,24,0,24,202116111,473722092,1819044984,108,1613764720,120,1010565120,15420,0,0,1867514716,1735750770,1702061429,0,-1061106568,1880651980,-872363008,8309964,-864526288,7913724,209241724,8309884,1815660156,13041350,209197104,8309884,2078006143,1776411,-1065615360,1880652992,1715258238,3956862,1715208294,3956862,1715211288,3956862,406323302,3938328,406374012,3938328,0,-16711936,1815612440,13041350,1815634750,2026649708,-1057214440,16564472,-1057214368,16564472,-1057175940,16564472,2013318264,7916748,-1057226548,16564472,813170892,7876656,-872362888,8309964,-872402848,8309964,-964901376,13008070,1815642748,3697862,-859045684,7916748,-1065478120,404258496,-261854152,16574048,-859033504,7916748,-872362888,7916748,1008212750,1893210136,1579032,404232192,3151884,0,2013278232,7916748,-872402920,8309964,50688,0,0,2014058496,409999472,112,255,0,406618494,3938328,-33554432,49344,-33554432,1542,1852072673,-1890834925,1784963809,-2107692522,979645153,-2107692298,-865717504,13158,862374912,52326,-2011002846,-2011002846,-1437226411,-1437226411,-287606821,-287606821,404232216,404232216]},{"sector":5,"length":512,"data":[404232216,404232440,418912280,404232440,909522486,909522678,0,909522686,418906112,404232440,116799030,909522678,909522486,909522486,117309440,909522678,116799030,254,909522486,254,418912280,248,0,404232440,404232216,31,404232216,255,0,404232447,404232216,404232223,0,255,404232216,404232447,404690968,404232223,909522486,909522487,808924726,63,809435136,909522487,16201270,255,16711680,909522679,808924726,909522487,16711680,255,16201270,909522679,16717848,255,909522486,255,16711680,404232447,0,909522687,909522486,63,404690968,31,404684800,404232223,0,909522495,909522486,909522687,419371032,404232447,404232216,248,0,404232223,-1,-1,0,-1,-252645136,-252645136,252645135,252645135,-1,0,-596246528,7789768,-120817664,-1061095220,-1060307968,12632256,1819082240,7105644,811650300,16567392,-662831104,7395544,1717986816,-1067418522,417101312,1579032,-864538372,-63932212,-20550600,3697862,-960074696,15625324,2081959964,7916748,-612499456,32475,-612496378,-1067417893,-121610184,3694784,-858993544,13421772,-67044352,64512,821833776,16515120,806891616,16515168,811610136,16515096]},{"sector":6,"length":512,"data":[404429582,404232216,404232216,1893259288,-67096528,3158016,14448128,56438,946629688,0,402653184,24,402653184,0,202116111,473722092,1819044984,108,1613764720,120,1010565120,15420,0,0,1631781727,1176514158,1668179314,104,1717593660,1007029308,1711302144,4154982,1715208206,3956862,104645502,4154942,104595558,4154942,104595568,4154942,104601624,4154942,1614544896,470170720,1715258238,3956862,1715208294,3956862,1715208304,3956862,406323302,3938328,406374012,3938328,406323312,3938328,1664490595,6513535,1006639128,6717030,813563918,8269884,209649664,8375423,2137404959,6776422,1006659132,3958374,1006659072,3958374,1006661632,3958374,1711302204,4154982,1711304704,4154982,1711302144,2080783974,1715214531,1588326,1717960806,3958374,1006632960,3962478,2016556572,8287024,-556874116,8185590,-87241480,-943271994,1008212750,1893210136,104595470,4154942,406323228,3938328,1006636544,3958374,1711279616,4154982,2080406528,6710886,1986396286,6712958,1047292988,32256,946629688,31744,806879256,3958368,-67108864,49344,-67108864,3084,-557005117,265053747,-607336765,63926071,402659352,1579032,-865717504,13158,-964901376,13008070,-2011002846,-2011002846,-1437226411,-1437226411]},{"sector":7,"length":512,"data":[-287606821,-287606821,404232216,404232216,404232216,404232440,418912280,404232440,909522486,909522678,0,909522686,418906112,404232440,116799030,909522678,909522486,909522486,117309440,909522678,116799030,254,909522486,254,418912280,248,0,404232440,404232216,31,404232216,255,0,404232447,404232216,404232223,0,255,404232216,404232447,404690968,404232223,909522486,909522487,808924726,63,809435136,909522487,16201270,255,16711680,909522679,808924726,909522487,16711680,255,16201270,909522679,16717848,255,909522486,255,16711680,404232447,0,909522687,909522486,63,404690968,31,404684800,404232223,0,909522495,909522486,909522687,419371032,404232447,404232216,248,0,404232223,-1,-1,0,-1,-252645136,-252645136,252645135,252645135,-1,0,1849360384,3894884,2087074816,1616936038,1617329664,6316128,909541120,3552822,405825150,8283696,1816068096,3697772,858993408,1613774387,208550656,789516,1715214462,2115517542,2137208348,1848931,1667446300,7812662,1040979982,3958374,-612499456,32475,-612496378,-1067417893,-54501348,1859776,1717986876,6710886,2113961472,32256,410916888,8257560]},{"sector":8,"length":512,"data":[403445808,8257584,405805068,8257548,404429582,404232216,404232216,1893259288,2113935384,1579008,14448128,56438,946629688,0,402653184,24,0,24,202116111,473722092,1819044984,108,1613764720,120,1010565120,15420,0,0,1867383649,1667851378,0,0,-1061132740,205285056,-859045684,7785676,-864550884,7913724,209224824,7785596,209191116,8309884,-869217232,7785676,-969134068,3983040,-864550912,410569920,943470128,14446640,-864550708,7913724,-964917010,8177350,-864515858,7916748,812681328,7876656,217976860,16670768,-965986106,13027070,-964947940,8177344,1627131932,16539768,-1061107506,16695488,-1061107506,7913664,2013318264,7916748,-864550708,7916748,-1061106478,16695488,-1061106478,7913664,-1065480164,16516732,1614680092,8128060,-960070458,8177350,-960102202,8177350,821833800,3158064,-63950776,1978416,1886940256,8314976,946652672,50796,1715214372,3958368,209195036,8309884,406327324,3938328,2014321664,7916748,-871359488,8309964,-20550600,235722438,209190912,259443836,217978916,16670744,2113935396,8269836,-121585410,486457536,-864550912,477675772,0,0,2113933340,8269836,-964945884,8177344,-1069809664,955780216,-865717504,13158,862374912,52326]},{"sector":9,"length":512,"data":[-2011002846,-2011002846,-1437226411,-1437226411,-287606821,-287606821,404232216,404232216,404232216,404232440,-964947940,13027070,-964918660,13027070,-1057083320,16695544,811650168,813222936,116799030,909522678,909522486,909522486,117309440,909522678,116799030,254,214367768,16696880,2080380928,8138776,0,404232440,404232216,31,404232216,255,0,404232447,404232216,404232223,0,255,404232216,404232447,-964920122,13027070,209221836,7785596,808924726,63,809435136,909522487,16201270,255,16711680,909522679,808924726,909522487,16711680,255,16201270,909522679,1715225088,4340838,2081177100,7785676,-161061252,8152678,1727803464,16541286,1627128012,16539768,2114348694,8308422,-152692700,13029086,813174812,7876656,813204600,7876656,-864538552,7913724,404232216,248,0,404232223,-1,-1,0,-1,404232318,236460056,-959043568,8177350,-1,0,-964947940,8177350,-120817664,-1061095220,-964918660,8177350,-152694756,13029086,-421785572,13027014,-421783516,13027014,-528601016,16518712,1081880648,8127544,-956559332,13424892,-960100338,8177350,-254926792,12632288,-960067346,8177350,-960098276,2014068326,1724306972,3151932,808482864,236728368,2062,0]},{"sector":10,"length":512,"data":[1006632960,0,35054,0,0,470810624,12360,0,31942,0,1815634750,2026649708,2113935384,1579008,0,470024192,946629688,0,102,0,24,0,-859010834,7785676,-956551096,13424892,-657575864,12632288,1010565120,15420,0,0,1632371540,762210676,50,0,131072,0,256,2,33554432,131073,0,786176,0,16781312,16777760,18468096,67043328,-855637760,281,3071,16777216,536936464,3617588,3159352,3159608,3356216,3487288,3290424,65540,0,392960,1,-16777216,65836,0,117440256,67862,131108,196664,262219,327776,19660898,19726444,19792050,19857619,1226244346,1919902574,1952671090,1397703712,1919252000,1852795251,1091963405,1986622563,1866670181,1344300388,979724129,221324576,1917851658,1869182565,1126200181,543515759,1701273936,824516666,1308953101,6647407,1852788237,1635021613,1918985326,1162412132,1818386798,1293972325,1329868115,1869881427,1936286752,2036427888,544104736,1702131813,1684366446,1634231072,1952670066,1931506277,1763734629,1919361134,1768452193,1830843235,778396783,168626701,1095911204,1111577670,2019237964,224229496,1095911178,1111577670,1395597388,1431585108,218762579]},{"sector":11,"length":512,"data":[538978826,544766072,538976288,1701860128,1768319331,1629516645,1685021472,1634738277,1847616871,1700949365,168636018,790634571,1413567571,538989397,1886611780,1937334636,1701344288,1920295712,1953391986,1685021472,1634738277,1931502951,1667591269,543450484,544370534,543519605,1752459639,1095911200,1111577670,168635980,1049429774,-1048503794,29557104,-16706042,285213951,1702131781,1684366446,1920091424,622883439,-1928917455,-2095348930,46342337,-16706042,234882303,1936875856,1917132901,544370546,118370597,463945357,-1021460093,0,0,0,-1,0,0,-1,0,0,-1,-1,0,-1,0,218103808,10,655360,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,542330148,542330692,1936876886,544108393,1126703158,1886339881,1734963833,824210536,758200377,876165425,1667845408,1869836146,1126200422,544240239,1701013836,1684370286,1952533792,1634300517,539828332,1886351952,2037674597,543584032,1919117645,1718580079,1816207476,1769087084,1937008743,1936028192,1702261349,1397760100,861341266,868323017,305051903,801964210,466749068,466632329,-1307431240,-1943024382,-1994663418,-1206134722,78778926,109850573,1049172970,783817704,-855199214]},{"sector":12,"length":512,"data":[-838431697,-868316901,-23992293,466224780,466108041,468059788,467943049,-1929469976,-1994662394,-1206133698,145887790,109850573,1049172978,113712112,168631299,474744518,134661924,-956301284,169609734,-30873600,468991625,-402646552,1105723438,1357402368,1493725696,1532626783,-2096829608,-1007088444,-1205971376,567108352,1914636062,-63534840,-33125349,-1017618917,-1153171272,-768409600,-427810355,30310401,-851181128,12108577,113476,567136819,-1207841152,567100417,-852446013,369507617,-336067723,146712,-4520589,-1157370881,28835842,47360,-4849486,105956345,367547735,-2146536960,1962475518,-350288380,-1960899070,123690487,1398195032,-919341517,1979711104,-188970232,-337671397,46593573,-1128003468,-1014228008,322771179,1024291328,142016551,467975364,116114316,466140356,-75250804,-2146011649,58064894,-1559434247,-4711416,114175,-336005581,16483084,1424491380,80118528,184972024,-352160311,-25125729,1378448641,1460031829,83933264,-12832819,-1962314408,84064472,32190413,1594192889,116087047,-402209661,1516044300,248447467,1543502824,1347928926,855637945,-139529536,1599621585,33260483,1048780149,1962875888,-49898,-1588589707,520035336,-346547216,-266404092,857402139,-98103,-1977219468,166396749,1966422062,1300901380,80184067,-131238919,427084043,1962933888,87762437,992871403,-352160507,91506953,-352008317,208861667]},{"sector":13,"length":512,"data":[-117440896,118358645,41747238,-315488654,1192069670,469894854,1397801728,106386769,-1981183150,-2011430882,-400816842,-921960764,-318038924,652739957,-402396416,141689264,17164378,82534151,-116996989,1594295531,108198234,1482381661,-998046485,1355020552,512447059,-75293696,-402295297,65732652,1929410536,-1151749105,567083008,-997989326,283900166,1962933123,1958820619,11593735,-116996989,1532625778,102679384,33129247,45357941,-854226394,-1031135455,503362024,124985094,22383142,-336059955,184726543,638153929,567088522,-210417337,1472405496,-1957493168,-1962467590,-65359655,58044146,-1957963477,1476877259,-1070349473,1333053707,-1273035234,-2083026112,678756857,1344217549,-402290138,509083738,108207878,1111536888,647766477,1964653952,-339637502,-401682687,451674107,-1494724267,1508477951,41099725,-935654421,-398784652,-1962773000,-1021354559,-1157617736,28639236,-98109,-956952204,504132992,54430983,178460,-1006698264,1053054726,-16049156,-2094655628,1962410045,87696912,975570802,24576325,-347650055,-1022926871,470156943,-1835803853,470431479,171374483,167412508,-1031797386,-2147226825,1095905474,74825739,963959563,1963194755,175931405,-16419540,1092358966,-108846357,-2146601721,1965820540,322371333,283853084,1963719043,175931403,-16419540,1092358966,-338545773,869413799,104267712,-768359652,561301771,11543988,1965373478,1698178570]},{"sector":14,"length":512,"data":[973370369,638481860,1407714698,1191277567,1967735367,-897100061,863300875,138314573,729088028,67519626,1161438768,-352160511,1966095390,1959922436,-348912892,87982311,141950748,1229537858,65752911,1476394938,183040299,1935237118,-1872368893,-2134209711,1946158716,1959332621,1195985158,1577184071,-922021653,-346160267,-425207,-919403915,1014300427,1359370069,1048824115,1962941448,121959955,-1006078705,854065788,-402593023,65732690,1912611048,1594317063,82533981,-116734845,470302339,1912960256,-13702909,470288071,868417536,470327762,470419143,-1343750134,-2021107458,-2092753908,58015995,-33500952,-1192331831,-2021062131,1128471564,-1023360792,2088819507,292880390,470583239,1128475936,470583238,-1494727904,-617390848,243847731,1149901826,1992374793,-1967052258,121960176,-1978370944,-2021127612,-2092753908,58015995,-33522456,-2131986994,1946159228,139212813,1277823091,-1965979128,-922023860,1156981876,208998151,268911862,-1977219468,32196357,210208856,-75283684,-402426560,-906100671,1157028981,410353671,343209482,-2012593014,1125911687,1967192963,2353155,-327823618,252134646,1156974709,41160711,-771093269,110037108,-889316346,48822389,1371755776,119428870,-617362549,470564493,1929157864,1493655301,-998046485,1573124358,805782774,-1977216395,-398372859,108264834,21334566,233568336,168135206,1191474368,737536833,12801529,0,0]},{"sector":15,"length":512,"data":[129,167772160,16777251,1392648980,2320675,8193,589112139,768,590545158,52639490,1057235771,591594787,874727174,939538227,939536437,939536438,939537206,939537718,50344501,255,16777216,1258291200,35878179,1096045359,1414737664,1398101057,0,1965247232,1060045091,1726676992,1946157117,9431046,-1996452887,-2128412146,1914916158,-1157270237,2062286847,587480704,-1992854272,-2094858186,2313534,243931765,-315481268,19930765,-1014953237,109118480,273024,216790242,113695539,-970972324,539189510,587466494,-397014805,110035001,512303872,1049436933,915088135,-768400640,587337355,1023475432,-2072641537,587480704,-1928956672,-352243682,85887748,16483107,-1752497034,-2134703104,2294846,28836724,429564672,992149665,-971868944,-1331494908,-1643722983,-954618343,18456582,-1707176704,140109849,-973078085,53118214,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-16777216,0,1560725248,-67108828,609226377,609355463,113704960]}],[{"sector":1,"length":512,"data":[9317,609617607,1105723392,-1206684924,643039231,975576459,-1207733489,-379912190,914948364,1465066591,1730055509,1577514532,1047863332,80537772,904410994,-399346684,376767590,610141942,-402295520,585827328,610141942,1310422081,126359787,91569468,610143872,-1192738047,-1396083964,-347928696,914968259,130425940,1662945536,495658532,610743949,1949252736,574390321,116787060,1963009118,1200236112,971256321,1931759622,609263889,1128521937,-1960388605,8448031,113731307,74834,-1977196821,-466484921,65065280,260712152,-921965262,1396903796,-400585946,1935343803,-498908353,1376176114,-352320732,1200236083,1088696833,-670834479,839354918,1088475620,-1977165821,200094223,1125086409,529213011,1526748392,1128467059,113767138,271442,-1956946083,-1591455730,915088466,378217556,512369750,-1007147944,126559824,1962934953,1342635780,3964964,27859061,-955747072,35934726,1343154944,-4979792,1476433128,283640811,-104638463,642864579,839405450,1959332845,158305549,1929527016,911368,-335939870,1697548549,1566177316,2122327747,57933824,1173809989,1578008771,-924315612,-2143128833,-282829274,610378064,100779563,-1957157793,-2145099466,594870332,989822080,113707125,599122,-2094653717,410255423,17299238,-955157248,35934726,-402003200,-336068461,183236877,-1274826672,256255,1472460888,75467558,609631881,637896742,1342268808,639919521]},{"sector":2,"length":512,"data":[1476543881,175440188,72714534,105744678,37509611,-1993996683,1340802133,-395049156,-462157764,108332604,72714278,71056875,1604390517,-1993981916,-1943665595,736822877,74811686,106794022,1207314000,74711298,166397104,38270502,-1341819902,8251394,1207314008,57937922,1593855976,-335100221,642777124,-1073018997,1397757813,113727314,599122,61931444,1610572008,-346530982,-352064766,11112463,-955681760,2380294,10938368,619462272,-2096270079,2380350,113706613,599122,1448133464,-1073085302,977016948,2088766325,91553793,-352320314,38660105,1178993011,1482613483,-1974315325,-402355504,192021051,192200714,-2013262872,1174530820,1525345094,-2143501474,1631325299,2050767218,-551275145,106115563,-415330985,1947547684,1381060631,1706297118,-4472182,375295,-838860870,1482250785,-1912513141,1128465221,-685342676,-1017444513,141701180,74922300,-1007144916,1397801977,-1960421550,-1977219457,1975519749,-335563772,1963146314,-1977202882,-167136251,-134004508,-1274705370,1088747013,-1977157629,642205445,820522379,-2096008448,-922876985,113766773,533586,334233524,-10122714,-1960443216,-955585771,153375238,-1325419520,-29366269,1482381919,1381322947,-1979534762,23455748,971520626,1577514751,225708068,510999868,25067558,-345082624,1577514514,242487332,175454780,8290342,1180333312,975592171,477429830,1349828618,317408582,4602406,-1975106699]},{"sector":3,"length":512,"data":[975586564,963969094,-1410644666,610141942,638547008,537020407,638022656,32384,-148495756,1946161159,1966750744,2122327561,225771520,3935979,-2144991371,1949958270,99350787,610350729,1566203640,-391330984,376700960,1962955240,1577514516,-294379484,610141942,1309242433,-336001301,-1018234879,1364444152,762580284,695468092,628361788,41779238,857633282,1569335003,79921923,3768358,-919401100,1124698662,1946237478,1022943748,-1017423603,113660243,-2145377192,-551264730,913580092,846465340,829697084,209002556,1965046912,1176547335,518766650,41779238,857174529,1300899529,1959332611,244491,20588099,-119404684,1532567612,609788611,610141942,-2147126015,539254286,-353648582,610741901,175430971,58011452,-133305351,792464107,243271029,-130014114,1398152899,609959555,1344632064,1465012510,-164428203,12115598,-1943941789,131795931,1499094877,628381727,609826441,609951369,609826443,609951374,1946172547,1912879632,21248520,-336002185,-347716091,1583085803,49951,0,0,433586176,6616,-402652928,208925240,-957051928,69895430,82529460,518396,-852851296,-1944007391,-1944465138,-1944473074,-2094369274,170554926,3192838,-1560014843,1610951290,-754667264,712549352,-1557498207,113705242,19923221,800077236,512303565,109838624,-402194142,-1914175411,15919352,713375360,507344128,-1909819743,806784472,-1339706367]},{"sector":4,"length":512,"pattern":0,"data":[-1927164641,-1275001834,-852512731,-1593434335,-1064435668,567101876,47879,-1270677013,-2094936770,-160103173,712513163,48968116,-1966912332,-1342110938,-1573925632,-12834172,28342389,712121997,-1070387251,-1591295858,104530044,1450519154,8298790,712246843,915229813,914948400,317401724,712902273,915079172,-964613508,914949136,1053043324,280570482,1973875460,1916716054,-2054478294,-2103245824,-1593369046,-811390338,-1928467687,991531014,516257734,1370119,119409387,-973074968,19564038,119408107,-1023405848,-1978008927,-400948426,915010060,-1581049393,915020272,-35120647,-818509327,-75250919,-2090699775,91619323,-352284696,16483160,1049442676,-1662510653,9931520,-2112472316,-1960414166,4122867,431570573,-1557495647,-2132272689,-2042724352,225771818,382023198,632564338,567091120,-1927615713,-400967362,1048772707,1962945154,-2063153657,99287594,713361094,-2147040511,-13990850,1053035381,280570482,-341511420,-2063153633,1049428010,-147128016,280561012,-1079708924,915210336,243990784,-1527567750,113689351,-1929237883,-400948162,1048641551,19864068,117376628,-269805052,1381061571,-1962570922,1972044381,105745156,-402106997,343143024,428883597,-1962779253,1300956277,139823878,-101557272,1532582494,195]},{"sector":5,"length":512,"data":[2646249,0,0,0,2283,0,-58720256,169244076,772961728,18366091,372703022,-4978943,-338705270,1048784408,1946157330,1048784399,1946157332,788475399,32178450,-58655793,-2147125998,91496699,-1221656786,-13722620,1342486302,1448235347,-1070391721,348051598,-1161196544,-1946549072,-1053097404,478876788,242539067,1284052105,512306690,-1557265229,536544437,1499094623,13588571,0,-16654329,33564927,34080769,2686975,805831170,1191182082,167838464,-64906,17039468,-16588276,50362367,56168706,10682367,-82705916,-1409286397,318964736,50529029,33754371,34865921,469893379,33620226,16777764,143106,37355521,1056964608,0,252645125,168758543,169086725,470418703,168101130,83888676,667402,171573253,1056964608,0,50529027,134415107,50463491,34537731,33751553,33625345,33685762,33685788,603980289,33554690,2949121,65538,144642,256,572,1056964608,0,50528256,50529027,151192323,50463491,16974339,16974351,197123,16913667,33620483,35324417,33685761,553779457,33620480,16908544,33554983,131073,142593,131073,36896769,65536,939524608,2,1,573,0,16128,0,251854848,252645135,252643343,185536269,84872973,269094667,168103685,85199365]},{"sector":6,"length":512,"pattern":538976288,"data":[84542734,84547594,84018442,134547996,537199109,151520522,170198018,330240,17049605,84410888,134349869,822150146,84410378,171180032,327680,134231808,67109376,2106,1023410178,8,4128768,0,252641536,252645135,168038159,168759055,118427407,252514058,252120842,235342346,185403909,235474181,184944902,168953353,168103429,402983429,168101130,168101130,168102430,84542720,664576,167773450,170525952,167773440,771753216,33556482,17039624,83888688,655360,143872,67109384,171245569,83886080,939524096,2048,33554436,2107,512,540160,0,4128768,0,16777216,1061109567,1061109567,1061100292,1061107263,522848063,522859839,705312063,355090197,219496234,607855643,606020635,706030097,706030101,355079445,352982314,337188138,604640554,486616593,355079424,706030080,405082657,169872674,170140964,220334352,539560464,671228946,755634181,537004066,2359572,67184689,136315408,2766085,1376256,3735552,262160,1006764064,32,4,8254,0,16128,0,0,0,0,77801,0,0,536870912]},{"sector":7,"length":512,"data":[538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,2105376,0,0,0,0,0,0,0,0,1397752064,1465274961,-66707883,1048583950,1946158561,-519649705,780861445,113639704,-402651973,-471334804,16050176,79365878,1044608260,33848960,1048578933,1962935743,-348460268,-1019313392,158662661,96405238,-352160512,27256872,97191622,107014144,98633414,-1157171711,292880644,1599938311,1532582494,45403992,-855636038,1562314529,1499094623,788158555,98633414,788475393,12059827,1007734042,-2142800614,91488763,1963129728,1187397128,1609240579,83591312,-75496076,1040741637,67323590,-2138026517,91490299,1963522944,1187397128,1005257219,201031824,-75496076,1043363084,16991942,313797099,281874611,1947270016,1187397127,401277955,281875892,1077772582,1040676177,134432454,-969013781,-1022360762,263476048,-1029566259,-920221691,-901871611,-1017619707]},{"sector":8,"length":512,"data":[677099,-939442172,83887104,13107520,-2147090428,33605634,20974848,1048776,-939360242,251662336,22938240,-2146435068,268525058,41947392,131552,-536707054,318771201,13107520,327936,268505088,268636162,1397751815,378163793,243992002,79365890,1947679239,130253575,434894818,96405190,88574721,-1962556509,-979172537,21465861,-351942749,1242467145,122469127,91494202,-503135357,-1090074889,1200226309,-1012688895,97099781,96969624,58622014,-955747056,419808518,-1206850816,-1064435648,637568187,1083705226,-351943261,-1157183995,1532494852,1052990041,268650230,-163707019,1946682182,14608390,1049638891,67323638,1525155444,-1876235520,96616064,-402230001,501940637,-1036091248,108335877,-352204568,-163672048,1946223430,11200517,-387447829,124929,1190543043,259260932,38204990,-972524287,1057275654,1049629931,17057526,-163705740,1963065926,-1090075131,1354956804,1465012563,-1064386509,-1474378714,1606690308,-1036091388,242484229,96616064,-2146995195,101040702,1307057013,654258944,-527826550,-461371612,183291920,14018756,-352272664,1095983,-1977155789,-1036091391,125046277,96616064,-1978632947,-2147015456,-321908508,-1394031606,-402396416,-1863843322,-689813760,1532582495,1397801816,-2147068079,67486270,1048577908,1963263426,4241454,-1608120496,548601958,95541282,-13374510,-402623768,62455899,-947173632,-1022697264,-402627864]},{"sector":9,"length":512,"data":[-236847029,-2138029589,101040702,-13424267,79431366,-1123629568,113639428,-402651970,-968425429,1057274886,79496902,-1106852289,417873668,856746752,1096191,552126347,649216,133554759,1482381663,2122333891,91554052,-352168728,27977731,79660424,-1140406589,113639428,-973077315,310790,259262632,79431296,-1123647467,109057284,-1475017538,-2147126268,704953350,91488936,79496832,1946265642,-1106870267,1354967556,216749910,704643072,1061104170,1061109567,856270014,-1576760577,1149895868,79536641,-1576909686,-2065169218,63341567,-1019331769,1608678405,1354979422,1465012563,168232647,-13434624,364437387,-2012164848,-2012955594,-2012955346,-402342386,994574163,2081031998,1499095011,12802139,1364414464,270186583,1048580301,1946420674,-1036091378,125043973,96616064,-401246970,113704604,-1879045504,-1090498840,350748672,-1874793473,96616064,-970951407,688134,3532944,-402652993,113704699,-1878586752,-1090509080,-320339967,857271294,1096191,176162502,283676672,-19273728,-2147025337,1609818634,-1017619623,1364414464,-947235246,-2131719272,108331259,-422377807,78709995,512419539,129501824,-1978610416,201274079,269859038,914886861,780666044,243795133,1516111038,-1017619623,79431366,1946462208,-1140424699,547891716,109053300,-971701060,310534,91488936,79496832,1947248682,-1123647483,113644804,-1476393794,-2147126271,704953862,91490472]},{"sector":10,"length":512,"data":[79562368,1364443925,868234066,1053963227,16926454,1048596853,1962935484,-1119977451,242548740,79576704,-1341688576,-344396993,1048612918,1967064252,-1119977451,242564868,79576704,-1341688513,-346232064,1048612890,1965687996,-1119977454,192227844,79576704,-1341885142,-1606358272,112657597,179824630,-805111818,-1130304374,-167528700,-167069721,47186679,79601900,-134814670,-335359998,-980762573,-134870345,-58667006,-33391100,1442987714,1522698757,1354980185,1045582163,16926454,1048603765,1962935484,-1119977446,326434820,79576704,-972262144,819718,10938768,-2138026773,1057274942,1048584309,1967064253,-1103200231,309673732,79431366,-1123629568,113639428,-352320322,1048612901,1965687996,-1119977443,376777220,79576704,-972065494,310278,79496902,-1106852352,-1958871036,-587004066,209913543,-919371777,105810494,210044615,-1130364928,-1979241980,32175824,-1609792250,1193936061,-154105343,-2063203862,79601676,-1979562198,32175824,-1593015034,104533125,159190147,-1978891357,-2103311545,79921932,1499118306,-2103420837,49932,0,0,0,-970545933,17162502,8653,0,2539,0,-2147483648,376638,1122502005,-398464256,1048576828,1963066555,-1157183993,787153156,96476811,-2012911734,-1979326426,-543029689,1958742533,1977879044,-1157183993,250282244,18317184,113640821,-402586165,1405288729,62149201,97140362]},{"sector":11,"length":512,"data":[-950923059,380422,-871971072,-402653179,243991186,1659372997,1040298496,51011211,146362845,-1441364992,-400919540,-1998060915,-1157171712,57935876,-1339233447,110487565,-346487949,-1964847070,65286663,-706591784,-401952679,259131007,97388287,97257159,1072168960,1521476098,243912330,-896924210,97259145,1510092264,-3974311,-16396746,1342557238,113660243,-1962931030,-402274546,146014738,97140362,-461369139,-1144748529,148309183,-15947258,-502936570,1482381794,97257103,97388175,-868810813,1364414469,96931467,-1274946072,-901871096,-1575957243,-192279026,-789518720,-789655314,-2131832594,-997584924,-687554629,225755780,74835514,132897712,-351400288,-400510974,108135895,97257215,1532608226,-871985320,1342227205,-397258413,-1779957314,62449666,79365878,-352160760,-804353154,51308549,97795715,-398560256,28442738,173968190,-1185817341,377749512,494144682,-402558744,116786126,1946682555,1273714947,-1342130456,91613197,-346487949,-1964847042,65286663,-756923432,-401952679,728892767,97205888,-1609468671,26740186,-1593455610,-1555561019,250283470,-1744446816,97388033,97257159,-1981677568,1510168040,-1017619623,97400575,97269503,-967748784,829958,-1962623045,1359336462,97400575,97269503,243976499,501745114,101242629,1048579242,1963001291,-871956730,-16454907,-502936058,-871985179,-838430971,1048598789,1963001291,-837878010,-16454907]},{"sector":12,"length":512,"data":[-502936570,1482381754,97257103,97388175,-835256381,-868811003,1364414469,-1078241450,-737244412,872362757,98607296,97945030,-130332928,861009532,-636581175,-835256571,-868811003,78047237,1958905047,212254216,-352264472,211992070,-2147428632,17156926,117376629,82511308,97388287,110090210,110036428,-396818994,116785418,1946682555,-2146178302,17156926,251594357,82511310,97257215,1583321058,-1890034855,-1895445498,-1023029754,-1974316208,-1979331018,-1979331562,-1274688962,1511050498,1354979419,-919383725,-1014952054,126484481,1912867560,-152943869,-1017619623,860967760,-552695095,-792710651,-503247648,-1998900230,1124902535,98573882,1532622204,1364443992,-1958848942,-587002786,96605834,50558859,38767349,942599474,1175352340,1065613538,-1962117889,-337837281,-1071740445,-972690683,33864454,1532582494,1464947651,856020671,2122333915,779419918,-1974119856,-771366898,1317682721,871183119,-792710190,42614500,19196114,-28975094,-535414078,149715973,1482317089,243929835,567412191,688400522,507167742,-226753056,-1017423521,-1152298160,-2143418922,1963003518,-402159095,309461823,-919400213,98569866,820512650,1124299267,1532622562,1397801816,-1071740078,2122333701,225771790,-1979709256,-218757801,-351937886,571403,-167356534,98214642,97257159,2139095040,729088279,-1559902815,-1555561006,-2143418930,1963003518,96968969,97559449,-945734421,-617375483]},{"sector":13,"length":512,"data":[98180746,-794561545,-1590957307,-761068089,-838416635,1040187397,17727104,-979302027,-794584827,-1592792315,865666501,-635532581,-1544292603,1532626384,1397801816,1465274961,97269503,97400575,-2147172421,17156926,113707125,1486,243993067,-1991703097,-1962554354,-1962552818,-1962553802,839240766,41609426,2122333911,108331524,1098202940,-1073085205,-2143405195,1962937982,-885096423,108331269,97257215,117376235,-1023539762,98178618,1048628092,1963001291,-868316918,-838402299,-1995904251,-16396746,-502936562,-737244762,-838430971,-871985403,1516134149,-1017619623,-1957604528,856014878,290425545,2113993088,308251407,126541059,1912727272,-152943869,-1017619623,-1957604528,856014878,340757193,2113993088,358583055,126541059,1912718056,-152943869,-1017619623,1381061456,-1071740073,98607109,-735643752,192908037,1334495539,16352010,-1975620748,-520388581,1196429429,-402421186,1634861451,-347514809,-75460380,1344632256,20179030,1055732305,-1927983478,-248834954,-391316410,1014104423,-2091255582,1482556103,-1866798263,1975647104,22145036,-947705742,-1444198142,-1023704944,-1722768523,-150929221,20572403,-947712142,-347514878,46629776,48956651,1516197982,-1017619623,1397751808,-967355823,1225734,313853638,-1071740160,98607109,-735643752,-1966525691,-108849073,1048474624,-75490422,1344435680,59391559,91557180,313788102,1963604993,-1257847291,-655884014,1197371904]},{"sector":14,"length":512,"data":[-756332200,-1057259376,1448093045,1358987496,-1975587534,1988957518,1190210324,-1259819780,-499617280,-947693064,1230528002,-2138003221,209043963,1912643304,46629712,-1869092023,1975712640,-1147580271,-201916160,1912637160,46629687,2112440664,-351998977,1042934570,18251392,1048583285,1962939060,-401756153,359792739,313867904,-1341688576,5629962,703137650,1577249791,1499094872,1354979419,1448235347,-1727671135,512425778,-201914918,1946221187,-768393215,1444181645,-973077063,-498204668,180051706,-137809152,818053363,1095636104,4051507,1055945984,1578454664,1482381658,-1169010493,11796480,-461367347,-352160471,-1157183994,1526269956,1364443992,-901871022,-837383419,-871462139,-854739963,-1036091376,225775365,-478095222,-805231612,-339539221,-1036091383,41226501,1499070756,50011,0,0,0,-397323440,1048576628,1963066555,-1157183992,2062090500,-1071740159,90671621,98576008,-1576646774,-1073084961,-469105548,113641589,-385809221,2139095385,91554071,97191622,49211393,-167505432,134527750,1055458164,-804353279,2122333701,1265959182,-2096930840,382014,844184948,-552695059,1317551621,1325284879,69789711,79365878,1493464072,1375800553,-835256495,-868811003,97820933,-1962986855,-150611426,16417779,-1958739596,-351867960,-340399286,15198313,-167618072,134527750,110038644,110036428,1515783630,13363545,1911088098,-1157171708,242485252]},{"sector":15,"length":512,"data":[97257103,97388175,-380020135,-29491023,110038862,110036428,1515783630,-2091284510,382014,-1477966987,-885096445,108331269,97257215,117376235,-2092366386,-1787494151,-1444381973,-734100734,896794629,-167542296,134527750,1743454836,-737244335,6547461,-167651864,134527750,-346487948,-885096366,108331269,97390335,117376235,-572389940,65464409,79365878,-352160760,-352130254,-885096271,292880645,-1744446816,97256961,1208337825,-351940957,98213902,-838467176,-871971067,1224736773,-747255541,1493364200,1354979419,1465274707,243171390,-16223231,-16396746,856017974,-695744805,977469445,2080759838,79674356,243976499,-1310194214,1273550596,7006208,-402269250,-2143420185,1963003518,-885096429,108331269,97390335,117381099,300615116,97205888,-16354047,-351941626,-838402300,1053024773,17727104,110037108,110036428,1583285710,-1017619623,-1974316208,839245846,-18689802,-1071739966,142052101,70972675,-234683266,1532688619,1397801816,-146385327,17157638,-1610189824,60294624,-1595657488,-456129057,-33436544,2130721992,-1965345803,-871958780,1962934533,-552695290,585683461,-611874620,977487365,2080759838,1532583650,1364443992,-1958848942,-587002786,96605834,50558859,38767349,942599474,1175352340,1065613538,-1962117889,-337837281,-1071740445,-972690683,33864454,1532582494,1464947651,856020671,2122333915,779419918,-1974119856,-771366898,1317682721]}]],[[{"sector":1,"length":512,"data":[871183119,-792710190,42614500,19196114,-28975094,-535414078,149715973,1482317089,243929835,567412191,688400522,507167742,-226753056,-1017423521,-1152298160,-2143418922,1963003518,-402159095,309461823,-919400213,98569866,820512650,1124299267,1532622562,1397801816,-1071740078,2122333701,225771790,-1979709256,-218757801,-351937886,571403,-167356534,98214642,97257159,2139095040,729088279,-1559902815,-1555561006,-2143418930,1963003518,96968969,97559449,-945734421,-617375483,98180746,-794561545,-1590957307,-761068089,-838416635,1040187397,17727104,-979302027,-794584827,-1592792315,865666501,-635532581,-1544292603,1532626384,1397801816,1465274961,97269503,97400575,-2147172421,17156926,113707125,1486,243993067,-1991703097,-1962554354,-1962552818,-1962553802,839240766,41609426,2122333911,108331524,1098202940,-1073085205,-2143405195,1962937982,-885096423,108331269,97257215,117376235,-1023539762,98178618,1048628092,1963001291,-868316918,-838402299,-1995904251,-16396746,-502936562,-737244762,-838430971,-871985403,1516134149,-1017619623,-1957604528,856014878,290425545,2113993088,308251407,126541059,1912727272,-152943869,-1017619623,-1957604528,856014878,340757193,2113993088,358583055,126541059,1912718056,-152943869,-1017619623,1381061456,-1071740073,98607109,-735643752,192908037,1334495539,16352010,-1975620748,-520388581,1196429429,-402421186,1634861451]},{"sector":2,"length":512,"data":[-347514809,-75460380,1344632256,20179030,1055732305,-1927983478,-248834954,-391316410,1014104423,-2091255582,1482556103,-1866798263,1975647104,22145036,-947705742,-1444198142,-1023704944,-1722768523,-150929221,20572403,-947712142,-347514878,46629776,48956651,1516197982,-1017619623,1397751808,-967355823,1665030,426313414,-1071740160,98607109,-735643752,-1966525691,-108849073,1048474624,-75490422,1344435680,59391559,91557180,426247878,1963604993,1762051589,-655884007,1197371904,-756332200,-1057259376,1448093045,1358987496,-1975587534,1988957518,1190210324,-1259819780,-499617280,-947693064,1230528002,-2138003221,209043963,1912643304,46629712,-1869092023,1975712640,-1147580271,-201916160,1912637160,46629687,2112440664,-351998977,1042934570,18251392,1048583285,1962940776,-401756153,359792739,426327680,-1341688576,5629962,703137650,1577249791,1499094872,1354979419,1448235347,-1727671135,512425778,-201914918,1946221187,-768393215,1444181645,-973077063,-498204668,180051706,-137809152,818053363,1095636104,4051507,1055945984,1578454664,1482381658,-1169010493,11796480,-461367347,-352160471,-1157183994,1526269956,1364443992,-901871022,-837383419,-871462139,-854739963,-1036091376,225775365,-478095222,-805231612,-339539221,-1036091383,41226501,1499070756,50011,0,0,0,0,0,-1,0,0,-1,0]},{"sector":3,"length":512,"data":[0,-1,-1,0,0,0,-1,0,218103808,10,655360,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,542330148,542330692,1936876886,544108393,1126703158,1886339881,1734963833,824210536,758200377,876165425,1667845408,1869836146,1126200422,544240239,1701013836,1684370286,1952533792,1634300517,539828332,1886351952,2037674597,543584032,1919117645,1718580079,1816207476,1769087084,1937008743,1936028192,1702261349,1397760100,861341266,868323017,305051903,801964210,451544716,451427977,-1307431240,-1943024382,-1994722810,-1206194114,78778926,109850573,1049172738,783817472,-855199214,-435778513,-465663718,114944026,451020428,450903689,452855436,452738697,-1945704472,-1994721786,-1206193090,145887790,109850573,1049172746,113711880,168631075,460064454,671532836,-956301285,169552390,159508480,453787273,-1995774744,-400879554,1049168920,434641684,3074048,1358971368,1912623336,123689224,-346530982,214205188,1448133625,1660991518,119415245,-1995935201,-1944380362,1578835462,12108632,47940,567136819,-2147359104,28836302,-1021194940,-1153171272,-768409599,-830463539,1140963329,-1262280243,1025625392,58004998,1025043448,91422722,-335544389,178947,-1191181896,11665408]},{"sector":4,"length":512,"data":[-1007026250,1431393104,-1957558697,538872297,624330779,48293915,477415691,91614475,-352311576,28370947,-396752782,1594294533,-998046485,82573574,-111517945,1499268722,82532443,-116865917,1381191875,455089803,1979710339,2942981,2011694059,-1274055936,47961,-466476595,-116996989,-75296533,990606591,-402164543,-998047568,57866502,-1017619622,-2095118818,460653049,-1977220428,522308885,-1310145910,520494592,-1977219213,567083349,-1274024968,1959332610,361375241,1229398477,536408949,105928643,519736147,-1327920377,-1359807462,-651492491,1540066123,-1017161721,-921976781,102649716,-1958693857,33129431,567093365,-1977200609,5957637,520494680,-1258813837,567099968,1031808668,-1962773222,-821957695,-268274,1364531947,-1946179864,567106025,199950963,125093947,1979246651,1572965122,666419999,310016,-2134703691,292880382,1971373814,-1928913396,-1189403842,15204354,1460061183,454835908,393543435,4031270,638612728,124912954,21314086,1207501175,1609165639,110084871,-617407706,922194579,-141354198,-2095371722,91621882,-348667264,818053123,-1073004206,-620034955,-108840588,-2146601725,1965820540,859242245,585842971,1963456899,175931405,-16419540,1092301622,-108850965,-2146732789,1965820540,859242245,865288475,866642898,-4181038,-1021630922,-921972173,632562036,942014640,638219557,1946248504,1975794180,92939790,1946113000,1111967489,1457747273]},{"sector":5,"length":512,"data":[-317994361,-2092092556,1779774,1149905781,640680966,1963017530,1008659202,184841520,50623698,-2132284620,-14998210,1111623797,1330596169,-4586517,-114599937,1610484456,-352095399,-1957588865,108822730,185431040,1225159881,-347650231,283860481,58050827,-2096501922,41287673,-16004813,1465210484,-919383802,455622275,-164793088,1963919172,41731080,-352160536,121959962,-166956019,1947076420,121959942,-1006078708,-2098724228,-402593022,65732986,1912611048,1594317063,82533981,-116734845,455622275,1912960256,-15406845,455608007,868417536,455647698,455739079,-1779957750,-2021107458,-2092754132,58015995,-33425176,-1192331831,-2021062131,1128471340,-1023285016,-164408490,-25114317,-1962379777,-1961161540,-165286945,141820614,451984580,418104204,1912607549,2571533,-1128003465,-1014228228,-1128003861,-1014228256,1979710339,-98282,-336002187,455648012,-1107296328,-164429823,-2096305160,57934075,-2097130264,1928856774,1976109830,-1667241214,1963064960,1364546089,-1202694394,801965312,1968766780,-1193768183,801965314,1945698795,1493655301,-998045973,845830,32201309,-68677937,-1017226241,-4632489,-222285057,1238497198,-2084348072,494207483,453525123,1024881919,192282623,455647568,453517055,-16454824,-350549986,-2134297830,108331006,55413286,942541291,772044085,-2096935542,1945699527,-921962451,-25159308,637891839,65733947,1963277102,1225386754,-947714700]},{"sector":6,"length":512,"data":[-102503676,-25162638,41285887,52823822,108135037,-1977160398,113657613,-1023403230,2088819507,292880390,455903175,1128475936,455903174,-1494727904,-617390848,243847731,1149901602,1992374793,-1967052258,121960176,-1978370944,-2021127612,-2092754132,58015995,-33522456,-2131986994,1946159228,139212813,1277823091,-1965979128,-922023860,1156981876,208998151,268911862,-1977219468,32196357,747079768,-75283685,-402426560,-906100671,1157028981,410353671,343209482,-2012593014,1125854343,1967192963,2353155,-327823618,252134646,1156974709,41160711,-771093269,110037108,-889316570,48822389,1371755776,119428870,-617362549,455884429,1929075432,1493655301,-998046485,1573124358,805782774,-1977216395,-398372859,108264512,21334566,233568336,168135206,1191474368,737536833,1573082617,-1070345677,455739079,-617414640,537347318,-1977211787,121959941,-1475513075,1124299904,113737508,662314,235357430,113706613,662314,1156994283,645206023,-167408858,1963788100,-2134575601,-2143091596,113737700,662314,235357430,113706613,662314,-1960433429,1435182597,121959938,-166759155,74744006,2145812547,455739079,1156972554,108334599,455739079,1156972554,695484423,951341648,378388530,567089964,113640819,-1976820941,-125105596,1153849434,-1712837622,-2000188421,82512452,-74520432,91544331,766693939,29578578,-16706042,285213951,1702131781,1684366446,1920091424]},{"sector":7,"length":512,"data":[622883439,-1928917455,-2094863554,46342337,-16706042,234882303,1936875856,1917132901,544370546,118370597,588201613,-1021460093,169215743,2621441,3932162,5112108,7799085,13893934,18612527,25428272,29229361,34210098,37093683,1668172055,1701999215,1142977635,1981829967,1769173605,168652399,1936607509,1768318581,1852139875,1701650548,2037542765,1277954573,1935958383,1881170208,1919381362,1948282209,544498024,544104803,1852404336,1919361140,1768452193,221148003,1611271434,1346458183,1396918600,2037668640,542991728,1919179611,979727977,1634753373,1717397620,1852140649,1566928225,1378835232,794501213,1528847682,1145261103,537529693,1345280800,1414416722,978865986,541348947,1345265788,1414416722,978865986,1564754764,168626701,1948262475,543518841,538976288,538976288,1667592275,1701406313,543236211,1852404336,544367988,1701869940,1702045728,1934958693,1931965029,1769293600,1629513060,1377854574,1919247973,1701015141,168635945,1528832107,1986622052,1532836453,1752457584,1818846813,1835101797,537529701,538976288,538976288,538976288,1884495904,1718182757,544433513,543516788,1701603686,1852793632,1852399988,543649385,1868983913,1952542066,544108393,1931505263,1869639797,1684370546,1769107488,1919251566,168636019,790634557,538976338,538976288,538976288,1852404304,1998615412,1702127976,544108320,1667329122,1935745131,1701147424,1852776558]},{"sector":8,"length":512,"data":[1701344288,1919120160,778986853,542050829,541208352,538976288,538976288,1917853728,1937010281,1701344288,1667326496,1869768555,543452789,1663069801,1919904879,1919903264,1280262944,540299855,543452769,1330401091,1881159762,1953393010,779317861,539953677,1129066272,538976324,538976288,1917853728,1937010281,1769174304,1277192046,1629504579,1667592307,1634869364,779053428,543296013,1380986656,1112821321,1396332623,2082489428,1380986656,1112821321,1278892111,168641603,538976288,538976288,538976288,1394614304,1768121712,1936025958,1701344288,1769107488,1647146094,1931507823,744847977,1953064224,544367976,541348947,1277194863,221135939,-1928917494,-2128400322,-1023227967,135661311,2097161,3866634,7012363,9306124,12124173,14024718,16121871,18350096,1851867934,544501614,1684957542,1095911200,1128876112,1919950931,1818846831,856296805,1970365778,1684370025,1869770784,1701603686,1635021600,1701668212,1830843502,1769173865,1646290798,1919903333,1768693861,622880110,638192945,1635151433,543451500,1718579824,543517801,1952543859,1852140901,1852776564,1852402720,824516709,1345194509,1768320882,1931502956,1702125940,1953391981,1953853216,543584032,1970365811,1701015141,544108320,1701734764,221324576,1917132810,544370546,1684104562,543649385,1346458183,1396918600,1869770784,1701603686,1394805261,1635020409,1919230072,1936879474,544106784,1346458183]},{"sector":9,"length":512,"pattern":0,"data":[1396918600,1869770784,1701603686,1344604685,1953393010,544763746,1847608393,1763734639,1380393070,1229475905,1881166659,1768320882,168650092,1769099302,1919251566,1887007776,1869488229,1852383348,1095911200,1128876112,1919950931,1818846831,235539813,-63009529,1707180325,117424897,198678,262176,327730,393301,458858,524422,1114277,1179839,1410662631,1830842223,544829025,1634886000,1702126957,168653682,1918980134,1952804193,1981837925,1702194273,1953459744,544106784,1869376609,543450487,1735287154,403311973,1635151433,543451500,1634886000,1702126957,538983026,168636709,1986939167,1684630625,1918988320,1952804193,1663070821,1768058223,1769234798,168652399,1886733346,1633905004,1881171316,1835102817,1919251557,1869488243,1818304628,1702326124,487198052,1634885968,1702126957,1635131506,543520108,544501614,1869376609,224683383,1110387466,1986947360,1684630625,1953068832,543236200,1667329122,1851859051,1752637540,543519849,1852404336,225600884,1851074570,1701601889,544175136,1869374834,1998611553,543716457,1718579824,543517801,1886418291,1684367724,118360589,661012109,20365697,1380384963,1229475905,21315,0,285212672]},{"sector":10,"length":512,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,1414736182,68,0,0,1275068416,17475,0,0,0,17,0,-402652672,208925308,-1207959367,-1310195711,18278658,-1991369027,-1272357074,-843042132,-229329,113646709,-1946081119,406751680,18260737,-1559917786,-970573770,385286,-1894906389,1359025670,89005752,78708751,-1047729965,723960067,-150994426,-268391976,-4717196,-1325077505,1507906308,681655936,773289217,18233087,406752007,227223041,693833353,41337147,1503904139,1187393065,118358018,1930107368,9365763,1930312936,8841475,75399214,772961538,33703670,297274228,47360,-352188440,-1589739411,108331048,693962439,1508379808,-1589739519,729088040,-972958744,385286,-402587160,-2144412624,1963197310,6744067,693966475,5636910,-355269455,842118210,-1274745920,784347724,-1962914165,372703221,1048577793,1962944673,1564379916,-1980789975,-352249794,406752006,-370177279,1048633862,1963010209,369528330,113649153,-1275001375,-855527348,33620001,335873027,976828423,1044200507,1364197439,106387026,-1064386509,-1472805850,2088969732,1869938692,108823334,644379904,-16497466,-2128193456,16712828,520505460,-1959917810,774462782,725499529,-218095431,-2095116636,539581702,725499531,-1993777759]},{"sector":11,"length":512,"data":[1569457221,-1590260474,1564379946,1161513,872064243,-1581216064,-1557779650,-1943665496,-83580386,-1943663637,1570834012,1149838889,1560707332,117506089,1499094623,50008,95965958,773967157,78847625,-1257862098,78690820,-853211720,892319777,512303565,109838610,280625428,623884289,280502733,-1994273483,-1945848034,-1174095610,280494413,1528941861,1397801735,106387025,372703022,-1598093567,-1589739508,359989288,75399214,-969444094,19663110,338738832,-351885639,404654889,1200236033,1178217988,-971279356,19663110,2122329744,141885700,-1190354754,116066178,-1189859138,1048577702,1963011081,-1527514109,681655936,-1189645056,-108984446,142476966,693962369,116066178,693962369,1594295974,1482381662,1397752003,-849169402,650350113,2891403,1236583310,1527194061,1465107288,512447830,-768464543,-739704906,1600019952,50011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-16777216,0,255,2086492928,1026244156,771760699,743245511,788267008,742395529,1107740462,771751980]},{"sector":12,"length":512,"data":[743769799,-953286656,2901510,113716736,1566256353,-486095058,775715884,753206983,-953275586,1026352902,111536187,-4713613,-1960422401,255469085,45613939,602495744,914959873,1465068623,1461620053,116796972,1965042766,904440899,-398691833,930350745,1963379432,116796952,1965042766,107079685,-164747541,1093422598,-347201932,126365211,108346684,1309573166,-398261972,-982317282,126365356,1321134915,1144424750,130428460,512306688,-1960432557,1463192861,1015033388,775320623,1948400768,116796936,1963011150,1200236116,786706945,742393401,-1590816141,-523162560,-670874813,-400585946,1777008776,1107740462,-352321236,1200236128,1088696833,-670834479,839879206,1959332845,642990863,-957866101,1098078976,-220052669,1107740462,-352320724,1200236084,1088696833,-670834479,839354918,1088475620,-1977165821,200094223,1125086409,529213011,1526750696,1128467315,-953224478,70009350,1532976384,1074694958,1117859372,915090988,-1959908284,774653462,742923914,642827256,44631947,772109568,742393599,3964974,27859317,772371712,742524615,250281986,-1274826672,10414335,-402396328,-1017642723,1364575225,139430438,-921965262,1871514996,66906121,250087539,-101260800,-1993472277,-131312338,650337625,32384,-347798668,784549366,743313024,-3741680,-2144449934,-282309082,1369517648,784739116,743376385,915091032,-2144457647,645201980,-8617938,772371770,742524615]},{"sector":13,"length":512,"data":[535494665,4162342,-148498060,1962934535,113716754,142402,-1763178005,233568256,1342893049,-4979792,1476396008,643286008,772046731,742801033,637896742,1342268808,743809326,38111526,1963015256,1435051530,1300833796,1012591366,637957378,-352037495,1946631248,1946696936,1963343076,1434985990,1010756356,772764932,1076645793,71665958,106794022,-1993987093,-1943665547,642778701,16926710,78644340,-165279253,1946288711,-402477051,643301579,268584950,-1696070796,784555776,753534662,-1960423424,1975520007,1381191704,113716823,601154,61931444,1610570728,-346530982,-352064766,11112533,772961408,742524615,367525888,1048784385,1963535426,1073785149,-953281932,2900486,14346240,1111393070,645204268,1946288297,113716754,11330,771961064,742538883,-1458604791,175382528,1107740462,-402653140,-2144468467,19720766,-2094133387,2900542,-953284747,153895430,1354979328,76164694,443858954,225786428,24936494,772175104,-352320314,71624713,1178993011,1482612715,-1974315325,76164816,1912877544,1958742540,845836,-352024530,-347716095,-1017226520,208896060,1165123900,1098349116,1038868260,-1923676589,-2144543682,74712314,752303757,1947547694,1381060631,1706297102,-4472182,375295,-838860870,1482250785,22907694,54890030,-2144582845,123721510,777044827,743313024,645934720,788343886,725353610,758909556,-2144467083,36457998,190534]},{"sector":14,"length":512,"data":[1364247384,-919382446,777245235,-1073085302,484983412,842625537,-773288988,-388902430,745668861,-1047799157,-774774063,1912664296,-773664481,15198417,-754772366,-555169773,51212800,13730773,1912657128,-1142209021,12118363,116797019,1946299470,-137234678,29524946,637587843,637958027,3933322,28313461,-1628831820,-1977203200,1946172420,-164739488,-2144580090,992353909,913441612,992347767,779223380,122436390,980559991,89406246,854270071,55327526,108992636,22297382,992350332,176097100,992353404,41878868,-964487957,1976106505,113716917,404546,-4980304,28327403,-349926874,-167136202,-268222236,1174702630,55327526,992347765,-495713964,-33175933,787314120,742524615,28311559,200015796,1107740462,-1342174932,-385895421,1516174612,-1664919463,1309079086,41222700,1889387421,-104597502,1915763907,2000239624,-131060732,1355020739,643256915,637960075,-1073085046,-4979595,54283499,642203509,162792842,54584566,92940024,-453638732,653787968,1195836810,-399668442,309526578,-33306749,787576264,742524615,-4980728,-1977215765,45154149,-350909658,113716747,601154,61931444,1610386408,-1017619622,1448236368,-1976696142,33089540,-672646030,116797181,1946692686,1966947341,2122327583,1903493121,-164752405,271339014,977014388,-2144990603,1962934398,1558922844,4602406,-1073078923,1162236532,975573995,1165295686,76164678,1178216005]},{"sector":15,"length":512,"data":[1178236160,782756677,743311094,638547008,537020407,638022656,32384,-148495756,1946161159,1966750744,2122327561,225771520,3935979,-2144991371,1949958270,116128003,1362528558,1516173356,1354979421,-1959897513,774655806,-1073085302,1609044852,774141184,753534662,-970039807,-346095612,-970039745,643760132,67575,-953273739,36454918,1479142144,76164694,510967818,1946168808,18409483,1179058803,-370457017,742957614,312878,1049177671,1600007236,33597784,-1269823116,-402280193,-1017578636,512577875,163130593,121253376,-498924428,1532576248,585673923,-401050624,376766547,1309079086,-311156692,1309079086,158613804,-116987058,1324876267,1405352131,1947024465,1946172461,1946827817,2105550373,510788098,-1977165005,-1014824099,964699652,856519680,160048841,20588099,-119405452,1532562748,777081795,742917830,645934624,1021258830,1010201632,1009939465,1009873964,-2146667232,125116476,977674416,639560640,16940416,-919398542,55413286,192203019,1124074427,1946237478,1022943751,-1017423584,742957614,1309079086,108331308,1309573166,-1069932500,781051883,-583324585,792463988,-336002187,200013838,108343100,1309573166,-1007140820,777213470,743128707,1344763136,1465012510,-164428203,12115598,-1943941789,131795931,1499094877,695490591,1228310830,512306732,-1959908277,774654262,743120526,1946172547,1912879632,21248520,-336002185,-347716091,1583085803]}],[{"sector":1,"length":512,"data":[49951,0,0,0,46569,13591,993339650,899548469,896808268,895497608,35651840,842347264,53,0,16777216,1140850946,3486261,0,0,0,892482904,5385985,0,0,0,892482924,4140801,0,0,0,892482944,4337409,0,0,0,892482966,1129066241,68,0,536936448,901054465,788673842,1313428048,1481589332,1112551168,0,0,2816,16777216,536936464,1381061456,-1106880682,118358145,890519181,12110131,13625344,1962934333,1828422006,-954108619,19489030,19707904,703121715,876429558,-940084735,36266246,-1628833536,-1874203904,892599169,-873986443,-1874990336,893713281,-1696070027,-1875776768,899087233,266864245,-1876563199,895024001,-773323147,-1877349632,897645441,-555219339,-1878136064,901118849,317195637,-117314815,1458046322,1015409408,-1186433793,20709376,62391925,-1875318016,108332860,-352320328,54300718,28906357,312832,901592717,-1207679860,401276933,1969437840,440326,1016073707,-1207601820,65732615,-402650952,133821820,1499094623,868440155,-1086944814,-164370379,1355012747,1465274963,75467558,-1262560461,4030504,25824116,-2143092600,1962999673,1516134389,-1007134629,1465274707,74943270,1946172544,-1290892776,-1074974168,-1527568222,16743808,-336067723]},{"sector":2,"length":512,"data":[243716,1499357177,116835163,1963013395,319717389,-2144468683,-134151602,1689781483,-154928896,37032710,243273077,771896595,33705600,-1207637000,-1007091612,890439414,-166365948,137696006,1203246197,691315497,890441344,183236612,-117414728,1673004267,1371797760,116807510,1963210003,319223357,812976181,75467558,1962950016,571398,-2145391623,137696014,693636746,-141824718,-215402817,-8552284,-133991168,62391531,183236864,-117414728,1673004267,1583347968,770905,14269,16785665,32,0,1346458183,1396918600,1330794542,606348288,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,36,1066926080,1130578053,1113538955,1276987354,1303333470,17960,0,0,0,234881024,934676111,-2147373336,20430654,-1007091083,694103691,-956295240,3683334,88524288,105301504,122078976,1187446783,1187446793,-956301558,-972946362,-402649530,882968180,942842680,-1959249757,-398672074,-1096677879,-1086944966,-1052868548,1416953911,935280256,-968002304,3654406,-16440856,1916255494,220129508,1962934333,942711053,-13095261,-348645737,-12742635,-2146470657,37208846,935331526,319211009,1048576056,1946171331,10938548,935331526,-1022966271,-1511325641,942278391,141819905,-402253080,99288666,935530112]},{"sector":3,"length":512,"pattern":0,"data":[-1019314175,57933879,-1207927832,512441856,567097361,935345792,-1207339775,12124174,-218175488,940850816,-1207012096,12124176,-219224064,935331526,-1069645823,242483511,943341184,-2146995199,20430654,-336002187,-1036091340,645202231,681655936,-1592560383,104540505,92088667,-352320840,1226760,45614059,47360,-101537816,916522987,4622648,113755128,76129,935528182,1443787777,-1191179592,-1296171007,-226301897,-1022953890,242483767,768086,-1107295815,1843935154,116809458,1946433475,213407246,112896,-399002946,-1956711848,-969030338,607961989,-1173769072,567098563,-1869607502,567083700,45353650,113713613,141665,-1270972221,779354152,-1205291846,567098624,37560179,1023767552,276103171,-1191179848,233308160,-1090074894,1475019063,-352284696,940680018,-994423317,1023457335,1081287117,1946157629,212229,937963893,682932736,-851640136,1025471265,91488258,1962935101,636944,-402652999,113701320,-352241729,4909074,295898603,-402068680,65732672,-1019735645,-1084860666,93192236,-2094598605,57933884,-2080904378,1049429190,-1977210700,1174767620,1015031367,-957123328,1170604037,1170624765,1170625278,1600016383,230212359,47360,-957256728,20430598,195]},{"sector":4,"length":512,"pattern":0,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131074]},{"sector":5,"length":512,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,985466566,-1022966272,-13434825,1019164299,-969228640,4048646,985480832,-2140375808,3653438,1048601973,1962948545,-952205218,762642749,527764028,16777089,-2054682761,-347652925,-1022459889,113639991,-972998720,3674886,-973048600,20626694,-348471646,-32329,-2012776704,1195164549,243273707,-972933181,20430854,940771014,1963801600,-955857403,1122500925,-2138182912,222085821,-1115679884,1946827970,-1014643188,-2050618052,1191853252,-985757369,-1086944963,-1052868548,192217399,1962999683,250345731,-2146702344,20430654,-336002187,1002698753,1966915894,-1170230226,12139199,287214338,1931595064,-66918395,4004331,-972065536,20431110,512442036,567097361,-1046280725,-2131348676,20430654,1048577908,1963014081,367786243,985644160,-972524262,20431110,-1979257863,1178255236,22266872,-1959250938,993539102,1982421278,319211018]},{"sector":6,"length":512,"data":[113639480,1526806466,195,0,942317824,940850816,-1457425151,477429764,943341184,1343583488,-1191178312,-236453888,319211244,113639480,1476474938,1023412261,259260424,935530112,-1073297919,113639735,-1023395821,993539233,1983395334,943104771,624437921,37552130,-2146470912,20431630,935331526,319211009,-2117926856,16777791,-2029977541,63,150995488,4165695,16777219,1,942671559,113639425,-150847593,20457990,-402230272,-1545011357,943235583,-1556598109,113719348,79914,942409415,1048576000,1963014164,335988234,113639992,-1979697133,838967310,27376621,-16627769,163808255,-1564936478,1066771240,859798463,-389467182,155053297,-2146470656,37208846,935331526,319211009,3997752,1023767552,-579469313,1962934333,339640360,896860216,940836550,-1069645823,695533623,943341184,-2145225472,3654206,113646453,-352241645,319211028,-12779464,-2146798337,37208846,935331526,322863105,74776888,935622,37776323,3866880,4223233,8388608,2050951424,16842816,1,4864,805750528,-150994376,20457990,-2146470656,20431630,935331526,319211009,116850744,145450,1048580725,1963014163,942973217,-1559476599,384514098,-1946266904,-1590152642,1048590388,1963014163,-1560049406,431503410,-32053248,940785280,-1959758591,-969395650,-973074109,-956296125,-60861,-15383609,88327935,105104896,390317568]},{"sector":7,"length":512,"data":[37996032,-16529664,942973439,-2096938103,37235214,942286467,740721603,1707067192,869413696,-339482423,1962934333,28856356,-38082560,940785280,1460892929,942816907,-1962785794,-1606929346,1133002509,-346529793,-49900,243273588,-972933181,20430854,940771014,-49920,1908652405,16777793,1996554299,65,150995072,4292671,65793,-16777216,-956301312,272117766,705099520,1962934840,-1022459889,113639735,-972998720,3674886,942409463,259260432,935530112,-1073297916,113639735,-150980589,272116230,-2146077440,20452158,1049300597,882980914,306415928,1131462,942280323,775848720,125046840,154676897,-1086837754,-768392853,-219625165,15850,-1202707339,-370671615,322863356,326435128,842959703,289668664,942947979,-2009133664,1482686275,-12774165,-2146470657,37208846,935331526,319211009,-12779464,-1866893825,1170444432,16777794,1258356795,66,150995072,4346943,65793,-16777216,-956301312,272117766,705099520,1962934840,-1022459889,113639735,-972998720,3674886,942409463,259260448,935530112,-1073297916,113639735,-150980589,540551686,-2146077440,20452158,1049300597,882980914,356747576,1328070,942280323,775848736,125050936,154676897,-1086837754,-768392641,518572339,15850,-1202707339,367525889,322863356,326435128,842959703,340000312,942947979,-2009133664,1482686275,-12774165,-2146470657,37208846]},{"sector":8,"length":512,"data":[935331526,319211009,-12779464,-1866893825,432246928,16777795,621019451,893596995,4409667,35651584,775883008,196675,65792,8388864,1044318464,16842819,257,2304,35651840,1379862784,196675,1493238016,1414484547,4543553,-973078528,4416006,1130366662,1627833856,113705027,276528,942278391,259325954,935530112,-1073297919,113639735,-1090504685,-768392429,883018035,1127457577,1038699752,292880384,1130497734,705594113,782304312,738593080,-382474184,1962934333,220105239,243171391,-2146994943,41223163,512230579,434848608,1979711293,9234693,243273707,-972933181,20430854,940771014,-386144256,1962934333,220105226,1629390911,1025043267,74842111,267084523,935530112,-1073297918,113639735,-402638829,4057297,-2145749760,20452158,1048587125,1963017058,1049319204,1266694194,-346095337,-49896,686490741,243273707,-972933181,20430854,940771014,-392697856,1962934077,-1022459889,113639991,-972998720,3674886,940785280,-2145815295,21193278,-1957227915,-1606929858,1133003616,1130471429,1594246024,1066876544,-385649662,1048576167,1962951520,10348803,1130446464,-385649408,-1581580141,-1609659903,-1947389439,-1606929858,646595424,1194869601,940143878,74778471,65734635,-502676605,1976110061,-1022459886,113639991,-972998720,3674886,-2087692309,1962869375,38243100,940785280,-2142866175,21193278,1133068149,138906120]},{"sector":9,"length":512,"data":[-351845496,876514100,-1982362824,1200292439,-103094268,940785280,-1960938239,931878600,-1527513853,1648263262,225771843,942816907,-1979165815,1132988487,1161872135,989921282,1162215680,536870912,1057554434,50349391,655360,2030191985,1166345285,138776070,-1677048428,1168444485,273002510,-955103812,1230131269,1380275278,1397310464,1497451600,1162104653,1230131200,1329747022,1163067480,5264724,1414743378,4543055,1346458183,1396918600,1280262912,1380995663,5525065,1330401091,1279611730,5522245,1263681860,1430930497,1140872275,1313424965,985595973,1019461189,-919350733,1038553320,141885440,1057627786,183238450,1962934077,-1022459899,-104660425,16777797,-16711621,69,150995488,4589631,50331651,38147329,503531034,1413563462,1330774081,1329791063,1313690956,0,942671559,116851200,79914,243273589,-972998717,20430854,940771014,705099520,1946157624,-1022459889,113640503,-972998720,3674886,942278391,259260928,935530112,-1073297918,113639735,-973064173,4596998,1176897222,654755328,243335238,33568810,860222399,-389467182,4056665,-385649664,512360600,-75481334,-2145291007,4597566,113641589,-385792473,243269780,-972933181,20430854,940771014,8579328,1963129728,624853042,427098182,1176911488,-971868928,21374214,940785280,-966560511,-352252346,-1022459811,113639991,-972998720,3674886,-2138026773,1182073851]},{"sector":10,"length":512,"data":[1176911488,-2145815296,4597054,113644149,-2147400154,20452158,1187392629,652935182,935530112,-1073297918,113639735,-352307181,-12742635,-2146470657,37208846,935331526,319211009,-12779464,-385649409,1048641343,1962952231,-1022459889,113639991,-972998720,3674886,1176845952,-2146011904,4597310,243273589,-972933181,20430854,940771014,49920,0,1200619520,989921282,1201012992,-1610612736,1199702018,50349983,257,16711680,67108864,55034626,-1207679028,1203635527,1314213699,1094975572,1275085140,1329813327,5525077,1212631368,1314213699,84,113704960,538672,942278391,259325954,935530112,-1073297919,113639735,-2147469293,20452158,1049301621,882980914,188975416,672710,1590214,1205208774,-687421952,113639495,-973060136,4708614,942280323,942579976,942409225,860326591,-389467182,4056241,-385649664,512360861,-75479165,1345680641,-402652488,1048639132,1963014163,1049319203,1048590386,1962952665,172228101,1140720619,876514072,-29112776,1200005344,1610564488,24373592,1963129728,-700546984,1064632391,1205354112,-969378560,21485062,178256,-2131341336,20452158,-1957224075,-2143800770,4708670,1140721013,-33297654,1049303107,1137063988,1137099262,1482621183,-2147407639,37208846,935331526,319211009,384368696,66813953,1048598645,1962952663,-666992577,947191879,1205274310,45633537,-168630272,940785280]},{"sector":11,"length":512,"data":[1461810433,942816907,1205419648,-33196800,65735235,-1961344002,-969395138,-960299453,1593900867,13363544,935530112,-1073297918,113639735,-385861613,-75497287,-2141293308,4708414,1048593781,1962952662,-683769794,930414663,1205339846,45633537,-175183872,940785280,1461810433,942816907,1205419648,-33196800,65735235,-1961344002,-969395138,-960430525,1593900867,-2140607656,37208846,935331526,319211009,1475018808,100368528,1048596853,1962952665,-653867484,-1202716345,971505666,322863349,242549048,876514135,-29112776,-12335395,-346530048,-1022459866,113639991,-972998720,3674886,1032852971,259325951,935530112,-1073297918,113639735,1023424531,57999359,-2130822423,4708670,1048578933,1963014163,373736964,-700547071,125042759,1205288576,-2146011904,4708414,243273589,-972933181,20430854,940771014,1245233920,989921282,257,536870912,1199702018,19015,32769,1246840706,16843008,1,255,113704960,4208688,942278391,259325953,935530112,-1073297919,113639735,-150980589,-2110248442,-2146470912,70763278,935331526,319211009,116850744,4208684,243273588,-972802109,20430854,940771014,705099520,1962950712,-200882665,-2138046389,20452158,882969205,172394808,607942,942280323,775848768,125059128,154676897,-1204278266,233308161,322863348,292880696,-1962326274,-969395138,-1929314493,1554251589,1244839754,1245185734]},{"sector":12,"length":512,"data":[1245624321,860502691,-389467182,4055517,-2146405376,37208846,935331526,319211009,113442872,-2042706857,2105550407,259260417,935530112,-1073297918,113639735,-1979697133,843838494,150700543,-2146339584,70763278,935331526,319211009,233504824,-1977162799,226985989,-200868276,-1207476405,983779912,939968074,-768409526,1860749619,15841,-1202707595,1709703169,322863347,309657912,1547602775,-1962672566,-1606929346,1133004678,-346529793,-49900,243273588,-972933181,20430854,940771014,-49920,-1869563275,1271448464,989921282,1272185859,1272204244,19432,32768,1272792962,16843008,0,63,139265,1274103682,768,1275920640,72093442,319310865,1276448844,1078728480,461392921,76,0,0,0,805750528,-150962120,20457990,-2146470656,20431630,935331526,319211009,116850744,145450,243273588,-972802109,20430854,940771014,738653952,1946189880,-1022459889,113640503,-972998720,3674886,1066862278,705099521,1962967096,322863125,242549048,-1992805215,1187383110,1187381508,1048576006,1963014163,105315843,942280321,1048641664,8402990,782305140,738593080,942973240,-1204276573,971505668,1271054322,-919350733,1038101736,292814848,935530112,-1073297918,113639735,-352307181,322863122,192217400,842959703,1200005176,-396426360,4055041,-2146339840,37208846,935331526,319211009,334168120]},{"sector":13,"length":512,"pattern":0,"data":[940785280,1460434177,942816907,-2008578400,-396426941,4054997,-2146339840,37208846,935331526,319211009,334168120,940785280,1460434177,942816907,-2008578400,-2141257149,20452158,-1957229963,-969395650,1593836355,62509619,-543954944,1962934333,322863125,578093368,842959703,1199808568,1594049288,-12774165,-2146470657,37208846,935331526,319211009,-12779464,-1865976321,-1782345584,16777805,-1694432965,77,-2113929152,5088327,-1056898815,1073741823,-956301312,3682310,705099521,1962934584,-1022459889,113639735,-972998720,3674886,942280321,782303488,738593080,1301266232,-919350733,1038026984,292814848,935530112,-1073297918,113639735,-352307181,322863140,108331320,-2008578400,-488110778,-49698,243273588,-972933181,20430854,940771014,49920]},{"sector":14,"length":512,"data":[757935419,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,990514477,1095911200,1128876112,1380986451,1766203471,1713399148,1293972079,1869767529,1952870259,760433952,223563588,757938954,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,168635693,538976288,538983200,1126703136,1886339881,1734963833,824210536,758659129,825833777,1667845408,1869836146,168653926,538976288,1766603552,1936614755,1293968485,1919251553,543973737,1917853741,1634887535,1917853805,1919250543,1864399220,1766662246,1936683619,225732207,757938954,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,168635693,1313428048,542262612,1162104904,1280655686,990514516,540740109,1431586131,218701904,537475850,1936007200,1098000995,1953696009,544502369,1885434471,1935894888,544497952,1920103779,544501349,1936880995,1881174639,1953067887,225341289,151599882,1937049865,543649385,1920103779,544501349,1885434471,1935894888,1936028192,1953852527,778989417,540740109]},{"sector":15,"length":512,"data":[1346458183,1396918600,990514464,538976265,711160677,1329799266,542395989,1094983767,168640852,1163010107,1380930643,990514501,538976265,711160677,151601778,543452773,1885434471,1935894888,758843917,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,221064493,1142956042,1313424965,1094983749,1378632020,168646479,538970637,1347635524,1297695052,541410383,741682228,824980273,538976313,151592992,540739849,2016424499,221261874,538976266,1413829408,840978517,842279991,875639084,221591084,538976266,1095911200,1128876112,926031955,741487660,1126971449,1414419791,741816364,1096040772,538976288,537529632,1344282656,1414416722,542658370,742675539,741485618,1096044370,168641876,538976288,1414743378,541413967,875312946,825306162,909519924,168626701,1229201440,1095520339,1146047833,741744709,537474097,151592992,540739849,2016425014,540028978,538970637,1163075616,542135636,875312946,825306162,892742708,538970637,1380392992,1229475905,840979267,842279991,741882156,1314213699,926428244,1413563436,538976321,168632352,538976288,1313428048,1481589332,1146376992,824980012,1414484524,222647361,538976266,1397051936,1163022164,741814816,824980020,908866609,218762550,1142956042,1280332617,1330469185]}]],[[{"sector":1,"length":512,"data":[824198468,909192245,538976265,151587081,875962427,892565552,537529648,1394614304,1347769413,741814816,824980020,908866609,537529653,1193287712,1213219154,542327625,875312946,943270962,1431257900,942429262,1094986807,538984788,220209184,538976266,1230131232,1329747022,1414733912,741485636,538976305,538976288,538976288,538970637,1163010080,1380930643,926031941,741487660,741617969,168638006,538970637,1347635524,1297695052,541410383,824981297,538970424,151587104,908081929,880291892,168636472,538976288,1431586131,926031952,741487660,741617969,168637750,538976288,1346458183,1396918600,741814816,959197748,1329802296,743722581,1143748408,541152321,538976288,538970637,1380982816,1112821321,1394628687,841761876,538980652,538976288,538976288,537529632,1377837088,1330926405,840975698,842279991,875639084,221656620,757938954,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,168635693,1313428048,542262612,1263748420,743720266,1163084108,1413827154,168642889,990514491,1413829408,153112661,154864141,1696604192,1948935027,542258487,1702037769,1952671084,1681209120,168651120,538970427,1668506912,892433450,153113136,1818587913,544498533,1680880945,168651120,538970427,1668506912,808678442]},{"sector":2,"length":512,"data":[153113136,1818587913,544498533,1680879667,168651120,538970427,1668506912,1747149094,151606819,1702260589,1920295712,544370547,1769172848,1852795252,1852383276,1667589152,1768910953,225670254,537475850,1936007200,829565539,1929972033,1953653108,1634887456,1667852400,1952522355,1920295712,1953391986,1920295712,544370547,1769172848,1852795252,540740109,1346458183,1396918600,990514464,538976265,711160677,1329799266,542395989,1094983767,168640852,1163010107,1380930643,990514501,538976265,711160677,151601778,543452773,1885434471,1935894888,758843917,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,221064493,1142956042,1313424965,1094983749,1378632020,168646479,538970637,1347635524,1297695052,541410383,741682228,824980273,538976313,151592992,540739849,2016424499,540028978,1680879665,168651120,538976288,1431586131,926031952,741487660,741749041,875313460,942943288,741488684,858535730,926493752,741880876,741617713,841758772,842279991,875639084,741946412,168637750,538976288,1346458183,1396918600,741814816,959197748,1329802296,743722581,1143748408,541152321,538976288,538970637,1380982816,1112821321,1394628687,875316308,1378628396,1413567567,537529669,1377837088,1330926405,840975698,842279991]},{"sector":3,"length":512,"data":[875639084,741750316,168636977,538970637,1347635524,1297695052,541410383,875637814,538976265,151587081,875962427,808613936,892411952,1768973360,538970637,1163075616,542135636,875312946,825306162,959720502,741553452,942422068,926034994,741880620,892090169,892677175,741553452,741617713,892088885,909454391,741750828,875312946,825306162,959720500,540358188,537529632,1193287712,1213219154,542327625,875312946,943270962,1431257900,942429262,1094986807,538984788,220209184,538976266,1230131232,1329747022,1414733912,741616708,1330785330,1163149652,538970637,1163010080,1380930643,926031941,741487660,741617969,824981046,218762546,537529610,1397310496,1497451600,1162104653,741683488,537474609,151592992,540739849,2016425014,540030259,1680880945,168651120,538976288,1431586131,926031952,741487660,741749041,892090676,942943283,741488684,858535730,926493752,741946412,875311157,859122745,875573548,741618988,892090420,909650997,741814828,824980020,875312177,892742713,538970637,1380392992,1229475905,840979267,842279991,741882156,1314213699,926428244,1413563436,538976321,168632352,538976288,1313428048,1481589332,1146376992,841757228,1414484524,541414465,220209184,538976266,1397051936,1163022164,741814816,824980020,908866609,842083382,168626701,1229201440,1095520339,1146047833,925966405,154677548,153100320,990447881]},{"sector":4,"length":512,"data":[808728096,808989816,808792352,225013860,538976266,1413829408,840978517,842279991,909193516,741946412,875311925,842542136,741814828,959199283,859122743,741750060,824981045,892089392,926231604,741684524,841758264,842279991,875639084,741946412,168637750,538976288,1346458183,1396918600,741814816,959197748,1329802296,743722581,1143748408,541152321,538976288,538976288,538976288,538976288,538976288,538970637,1380982816,1112821321,1394628687,841761876,1378628140,1413567567,168626501,538976288,1414743378,541413967,875312946,825306162,909519924,221393196,757938954,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,168635693,1313428048,542262612,1163084108,1413827154,990514464,540740109,1431586131,218701904,537475850,1936007200,930359907,153113141,1818587913,544498533,1885615415,990514537,538976265,644051813,594027361,1829308758,543520367,1936880995,1881174639,1953067887,544108393,1679847017,1885954917,1953393007,990514547,538976265,711160677,155267442,1635021577,1730180210,1752195442,544433001,1663071329,1701999221,1663071342,1869836917,1869619314,1769236851,168652399,1380393019,1229475905,220222275,537475850,1936007200,543304291,1314213699,542580820,1096040772,540740109,1414743378]},{"sector":5,"length":512,"data":[222646863,537475850,1936007200,1114778211,1852115209,1919361124,1768452193,168653667,757935419,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,537529645,1178944544,541412937,1096040772,1464816172,168626701,1229201440,1095520339,1146047833,741613637,858860597,540619052,538976288,151587081,842211387,808613936,892805168,225013860,538976266,1413829408,840978517,842279991,909193516,741684524,942420789,926034994,741880620,875312953,942943289,741356844,824981556,892089392,842345523,741422380,841758264,842279991,875639084,741946412,168637750,538976288,1346458183,1396918600,741814816,959197748,1329802296,743722581,1143748408,541152321,538976288,538970637,1380982816,1112821321,1394628687,841761876,1378628140,1413567567,537529669,1377837088,1330926405,840975698,842279991,875639084,741750316,168636977,538970637,1347635524,1297695052,541410383,875637814,538976265,151587081,875962427,808613936,892805168,225013860,538976266,1413829408,840978517,842279991,909193516,741684524,942420789,926034994,741880620,875312953,942943289,741356844,824981556,892089392,842345523,741422380,841758264,842279991,875639084,741946412,168637750,538976288,1346458183,1396918600,741814816,959197748]},{"sector":6,"length":512,"pattern":757935405,"data":[1329802296,743722581,1143748408,541152321,538976288,538970637,1380982816,1112821321,1394628687,841761876,1378627884,1413567567,537529669,1377837088,1330926405,840975698,842279991,875639084,741750316,168636977,538970637,1347635524,1297695052,541410383,824980785,538970422,151587104,908081929,863514676,924856373,1768973365,538970637,1163075616,542135636,875312946,825306162,892677174,741553452,841757240,842279991,875639084,741946412,168637750,538976288,1346458183,1396918600,741814816,959197748,1329802296,743722581,1143748408,541152321,538976288,538970637,1380982816,1112821321,1394628687,841761876,1377841452,1413567567,151587141,537529609,1377837088,1330926405,840975698,842279991,875639084,741750316,168636977,538970637,1347635524,1297695052,541410383,824981297,538970424,151587104,908081929,880291892,924856376,1768973365,538970637,1163075616,542135636,875312946,825306162,892677174,741553452,841757240,842279991,875639084,741880876,168637750,538976288,1346458183,1396918600,741814816,959197748,1329802296,743722581,1143748408,541152321,538976288,538970637,1380982816,1112821321,1394628687,841761876,1378627884,1413567567,151587141,537529609,1377837088,1330926405,840975698,842279991,875639084,741750316,168636977,757935419]},{"sector":7,"length":512,"data":[757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,1342836013,1414416722,1344295493,1414416705,223626570,168639242,1918115899,1937006949,1701344288,1767985184,1701475438,1935745140,1109418272,1679841062,1667855973,1868963941,1868701810,1948280948,544503909,543452769,1869377379,538979954,1667592275,1769563753,168650606,1852776507,1868767333,544370540,1851878512,1937055845,1780511589,544502645,1667329122,1851859051,1752637540,543519849,1948283745,1948280168,1629515639,1818845558,1701601889,1819239200,779317871,221973005,1394621194,1347769413,168626464,538970427,1668506912,809071658,151593042,1701602675,958428259,1768973360,154864141,1696604192,1948935027,1378891825,1929972000,1667591269,942743668,1768973360,154864141,1696604192,1915380595,151606577,1701602675,824210531,1819239200,1881174639,1701732716,1684955424,1936028192,1663071333,1919904879,1818325024,1702130789,990514478,538976265,644051813,155722593,1987013897,1969430629,1919251314,1936683040,1869182057,1763716206,1701060718,1869637987,1937010281,990514478,538976265,711160677,155267442,1635021577,1730180210,1752195442,544433001,1663071329,1701999221,1663071342,1869836917,1869619314,1769236851,221146735,1193294602,1213219154,542327625,154864141,1696604192,1646945139,1431257888,1461736526,1413563424,990514497,1397051936,1163022164,154864141,1696604192]},{"sector":8,"length":512,"data":[1915380595,1695091010,1730176110,1752195442,225665897,757938954,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,168635693,1162092576,1162758470,1413563401,1330785345,218762583,1142956042,1280332617,1330469185,873022788,824980780,959523891,538976288,151587104,857750281,846737458,824193072,1885614136,537529705,1394614304,1347769413,741814793,824980020,875312689,909454393,741880876,841757240,842279991,875639084,741946412,841758008,942877751,741816620,892090676,875899952,741880876,841757239,842279991,875639084,741946412,168637750,538976288,1346458183,1396918600,741814793,959197748,1329802296,743722581,1143748408,541152321,538976288,538970637,1380982816,1112821321,1393121359,875316308,1378628396,1413567567,537529669,1377837088,1330926405,839468370,842279991,875639084,909520940,218762505,1142956042,1280332617,1330469185,906577220,540291372,538976288,538976288,151587104,908081929,846737460,824193072,1885614136,537529705,1394614304,1347769413,741814793,824980020,875312689,909454393,741880876,841757240,842279991,875639084,741946412,841758008,942877751,741816620,892090676,875899952,741880876,841757239,842279991,875639084,741946412,168637750,538976288,1346458183,1396918600]},{"sector":9,"length":512,"data":[741814793,959197748,1329802296,743722581,1143748408,541152321,538976288,538970637,1380982816,1112821321,1393121359,875316308,1378628140,1413567567,537529669,1377837088,1330926405,839468370,842279991,875639084,909520940,218762505,1142956042,1280332617,1330469185,822691140,909192245,538976265,151587081,875962427,892565552,824188976,1885614136,537529705,1394614304,1347769413,741814793,824980020,875312689,909454393,741880876,841757240,842279991,875639084,741946412,841758008,942877751,741816620,892088885,842476595,741814828,824980020,875312177,892742713,538970637,1380392992,1229475905,839471939,842279991,741882156,1314213699,926428244,1413563436,538976321,168632352,538976288,1313428048,1481589332,1146376969,858534956,1414484524,222647361,538976266,1397051936,1163022164,741814793,824980020,808203313,218707510,537529610,1397310496,1497451600,1162104653,741814537,537475121,151592992,540739849,2016425014,540031028,808988960,225013860,538976266,1413829408,839471189,842279991,909193516,741946412,875312693,842542136,741814828,824980020,875312177,892873785,741814828,959199283,926231607,741553452,925644852,926034994,741487660,741617969,908867892,537529653,1193287712,1213219154,156451657,875312946,943270962,1431257900,942429262,1094986807,538984788,220209184,538976266,1230131232,1329747022,1414728024,741485636]},{"sector":10,"length":512,"data":[1330785330,1163149652,538970637,1163010080,1380930643,926026053,741487660,741617969,154547760,758843917,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,221064493,1230131210,1380275278,1230328096,1162499141,168632404,990514491,1413829408,153112661,154864141,1696604192,1948935027,542258745,1702037769,1952671084,2016819488,1885615673,990514537,538976265,711160677,842609012,151593042,1701602675,824210531,829960761,1885614649,990514537,538976265,711160677,942813556,153113392,1818587913,544498533,2016557361,1885615673,990514537,538976265,711160677,151601522,1918989427,1919361140,1768452193,1629516643,1969430644,1852142194,1969430644,1919906674,1936683040,1869182057,990514542,1095911200,1128876112,168632403,538970427,1668506912,1126195754,1414419791,1142970144,222385217,1377843978,1330926405,168641874,538970427,1668506912,155349546,1684956425,1634887456,1667852400,990514547,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,538970637,1229342020,1142965582,742478913,223825746,537529610,1397310496,1497451600,1162104653,892089376,741552428,538982705]},{"sector":11,"length":512,"data":[153100320,990447881,808596256,808465016,909713440,1681275256,168651120,538976288,1431586131,926031952,741487660,741749041,892090165,842542132,741814828,824980020,908866609,538976309,538976288,538976288,538976288,538976288,538976288,168632352,538976288,1346458183,1396918600,741814816,959197748,1329802296,743722581,1143748408,541152321,538976288,538970637,1380982816,1112821321,1394628687,875316308,1378628396,1413567567,537529669,1377837088,1330926405,840975698,842279991,875639084,221656620,537529610,1397310496,1497451600,1162104653,824981024,538970420,151587104,908081929,846737460,824193072,964178489,1768973366,538970637,1163075616,542135636,875312946,825306162,959720500,741356844,875312693,859319352,741814828,824980020,908866609,537529653,1193287712,1213219154,542327625,875312946,943270962,1431257900,942429262,1094986807,538984788,220209184,538976266,1230131232,1329747022,1414733912,741485636,537529650,1377837088,1330926405,840975698,842279991,875639084,221656620,168632330,1229201440,1095520339,1146047833,892411973,154546476,153100320,990447881,808728096,808792952,842608928,1681275256,168651120,538976288,1431586131,926031952,741487660,741617969,892090676,909454384,741880876,841757496,842279991,875639084,221591084,538976266,1095911200,1128876112,926031955,741487660,1126971449,1414419791,741816364]},{"sector":12,"length":512,"data":[1096040772,538976288,537529632,1344282656,1414416722,542658370,742675539,540093490,220209184,538976266,1397051936,1163022164,741814816,824980020,908866609,218762550,1142956042,1280332617,1330469185,824198468,942746679,538976265,151587081,875962427,942962736,959520816,909735986,225013860,538976266,1413829408,840978517,842279991,875639084,741946412,892088373,942943286,741554220,875312946,825306162,892742708,538970637,1380392992,1229475905,840979267,842279991,741882156,1314213699,926428244,1413563436,538976321,168632352,538976288,1313428048,1481589332,1146376992,824980012,538976288,538976288,220209184,538976266,1397051936,1163022164,741814816,824980020,908866609,990514486,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,1380977165,1163152969,1431380050,1247036745,1280332869,168645461,990514491,1413829408,153112661,154864141,1696604192,1948935027,542258745,1702037769,1952671084,2016819488,1885615673,990514537,538976265,711160677,842609012,151593042,1701602675,824210531,829960761,1885614649,990514537,538976265,711160677,942813556,153113392,1818587913,544498533,2016557361,1885615673,990514537,538976265,711160677,151601522,1918989427,1919361140,1768452193,1629516643]},{"sector":13,"length":512,"data":[1969430644,1852142194,1969430644,1919906674,1936683040,1869182057,990514542,1095911200,1128876112,168632403,538970427,1668506912,1126195754,1414419791,1142970144,222385217,1377843978,1330926405,168641874,538970427,1668506912,155349546,1684956425,1634887456,1667852400,990514547,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,538970637,1229342020,1142965582,742478913,223825746,537529610,1397310496,1497451600,1162104653,892089376,741552428,538982705,153100320,990447881,808596256,808465016,2016819488,1885615673,537529705,1394614304,1347769413,741814816,824980020,892089905,875899959,741488684,875312946,825306162,892742708,538970637,1380392992,1229475905,840979267,842279991,741882156,1314213699,926428244,1413563436,538976321,168632352,538976288,1313428048,1481589332,1146376992,858534956,1414484524,222647361,538976266,1397051936,1163022164,741814816,824980020,908866609,218762550,1142956042,1280332617,1330469185,908084548,154415404,153100320,990447881,808728096,808465016,2016819488,1885615673,537529705,1394614304,1347769413,741814816,824980020,892089905,875899959,741488684,875312946,825306162,892742708,538970637,1380392992,1229475905,840979267,842279991,741882156,1314213699]},{"sector":14,"length":512,"pattern":757935405,"data":[926428244,1413563436,538976321,168632352,538976288,1313428048,1481589332,1146376992,824980524,1414484524,541414465,538976288,538976288,538970637,1163010080,1380930643,926031941,741487660,741617969,168638006,537529632,1397310496,1497451600,1162104653,741683488,537474609,151592992,540739849,2016425014,540030259,2016557361,1885615673,537529705,1394614304,1347769413,741814816,824980020,875312177,808791097,741750060,942422068,926034995,741487660,741617969,168637750,538976288,1346458183,1396918600,741814816,959197748,1329802296,743722581,1143748408,541152321,538976288,538970637,1380982816,1112821321,1394628687,875316308,538981164,538976288,538976288,537529632,1377837088,1330926405,840975698,842279991,875639084,221656620,537529610,1397310496,1497451600,1162104653,741814560,537475121,151592992,540739849,2016425014,540031028,964179513,1768973366,538970637,1163075616,542135636,875312946,825306162,926231606,741618988,841757240,842279991,875639084,221591084,538976266,1095911200,1128876112,926031955,741487660,1126971449,1414419791,741816364,1096040772,538976288,537529632,1344282656,1414416722,542658370,742675539,540159026,538976288,538976288,168632352,538976288,1414743378,541413967,875312946,825306162,909519924,758843917]},{"sector":15,"length":512,"data":[757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,221064493,1230131210,1380275278,1196773920,1464091975,1163151698,990514514,540740109,1431586131,218701904,537475850,1936007200,963914339,153113136,1818587913,544498533,1885614137,990514537,538976265,711160677,808989044,151593042,1701602675,824210531,1885614136,990514537,538976265,644051813,155722593,1987013897,1969430629,1919251314,1936683040,1869182057,1763716206,1701060718,1869637987,1937010281,990514478,538976265,711160677,155267442,1635021577,1730180210,1752195442,544433001,1663071329,1701999221,1663071342,1869836917,1869619314,1769236851,221146735,1193294602,1213219154,542327625,154864141,1696604192,1646945139,1431257888,1461736526,1413563424,990514497,1397051936,1163022164,154864141,1696604192,1915380595,1695091010,1730176110,1752195442,225665897,757938954,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,168635693,1162092576,1162758470,1413563401,1330785345,218762583,1142956042,1280332617,1330469185,873022788,824980780,959523891,538976288,151587104,857750281,846737458,824193072,1885614136,537529705,1394614304,1347769413,741814793,824980020,875312689,909454393,741880876,841757240,942877751]}],[{"sector":1,"length":512,"data":[741816620,892090676,875899952,741880876,841757239,842279991,875639084,741946412,168637750,538976288,1346458183,1396918600,741814793,959197748,1329802296,743722581,1143748408,541152321,538976288,538970637,1380982816,1112821321,1393121359,875316308,1378628396,1413567567,537529669,1377837088,1330926405,839468370,842279991,875639084,909520940,218762505,1142956042,1280332617,1330469185,906577220,540291372,538976288,538976288,151587104,908081929,846737460,824193072,1885614136,537529705,1394614304,1347769413,741814793,824980020,875312689,909454393,741880876,841757240,942877751,741816620,892090676,875899952,741880876,841757239,842279991,875639084,741946412,168637750,538976288,1346458183,1396918600,741814793,959197748,1329802296,743722581,1143748408,541152321,538976288,538970637,1380982816,1112821321,1393121359,875316308,1378628140,1413567567,537529669,1377837088,1330926405,839468370,842279991,875639084,909520940,218762505,1142956042,1280332617,1330469185,822691140,909192245,538976265,151587081,875962427,892565552,958406704,1768973360,538970637,1163075616,156259668,875312946,825306162,926231606,741880876,841757240,942877751,741816620,892090676,859122737,741488428,875312946,825306162,959720500,221591084,538976266,1095911200,1128876112,926026067,741487660,1126971449,1414419791,741816364,1096040772,538976288]},{"sector":2,"length":512,"data":[537529632,1344282656,1414416722,156782402,742675539,741420082,1096044370,168641876,538976288,1414743378,155537999,875312946,825306162,909126708,168626486,538970637,1347635524,1297695052,155534415,824981297,538970424,151587104,908081929,880291892,538980408,1680881713,168651120,538976288,1431586131,926026064,741487660,741749041,892090676,942943286,741488684,858535730,926493752,741815596,875311925,842476600,741814828,824980020,875312177,892742713,538970637,1380392992,1229475905,839471939,842279991,741882156,1314213699,926428244,1413563436,538976321,168632352,538976288,1313428048,1481589332,1146376969,841757228,1414484524,222647361,538976266,1397051936,1163022164,741814793,824980020,808203313,218707510,757938954,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,168635693,1313428048,542262612,1195857234,1381450821,1380275273,1162103127,221973005,1394621194,1347769413,168626464,538970427,1668506912,809071658,151593042,1701602675,958428259,1768973360,154864141,1696604192,1948935027,1378891825,1929972000,1667591269,942743668,1768973360,154864141,1696604192,1629905779,151603235,1702260589,1920295712,544367987,1769172848,1852795252,1852383276,1667589152,1768910953,779318382,154864141]},{"sector":3,"length":512,"data":[1696604192,1915380595,151601457,1918989427,1919361140,1768452193,1629516643,1969430644,1852142194,1969430644,1919906674,1936683040,1869182057,168636014,1380393019,1229475905,220222275,537475850,1936007200,543304291,1314213699,542580820,1096040772,540740109,1414743378,222646863,537475850,1936007200,1114778211,1852115209,1919361124,1768452193,168653667,757935419,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,537529645,1178944544,155536969,1096040772,1464816172,168626701,1229201440,1095520339,1146047833,741607749,858860597,540619052,538976288,151587081,842211387,808613936,809050160,225013860,538976266,1413829408,839471189,842279991,909193516,741815596,942422068,926034994,741880620,875312953,892677177,741946412,925644852,926034994,741487660,741617969,908867892,537529653,1193287712,1213219154,156451657,875312946,943270962,1431257900,942429262,1094986807,538984788,220209184,538976266,1230131232,1329747022,1414728024,741616708,1330785331,1163149652,538970637,1163010080,1380930643,926026053,741487660,741617969,154547760,168626701,1229201440,1095520339,1146047833,741738821,538981425,538976288,538976288,151587081,875962427,808613936,809050160,225013860,538976266,1413829408,839471189]},{"sector":4,"length":512,"data":[842279991,909193516,741815596,942422068,926034994,741880620,875312953,892677177,741946412,925644852,926034994,741487660,741617969,908867892,537529653,1193287712,1213219154,156451657,875312946,943270962,1431257900,942429262,1094986807,538984788,220209184,538976266,1230131232,1329747022,1414728024,741616708,1330785329,1163149652,538970637,1163010080,1380930643,926026053,741487660,741617969,154547760,168626701,1229201440,1095520339,1146047833,892406085,154546476,153100320,990447881,808728096,808792952,809050144,225013860,538976266,1413829408,839471189,842279991,909193516,741815596,942422068,926034994,741880620,892090169,942943280,741684524,925644852,926034994,741487660,741617969,908867892,537529653,1193287712,1213219154,156451657,875312946,943270962,1431257900,942429262,1094986807,538984788,220209184,538976266,1230131232,1329747022,1414728024,741485636,1330785329,1163149652,538970637,1163010080,1380930643,926026053,741487660,741617969,154547760,168626701,1229201440,1095520339,1146047833,925960517,154677548,153100320,990447881,808728096,808989816,942743584,1768973360,538970637,1163075616,156259668,875312946,825306162,959720502,741750060,942422068,926034994,741880620,892090169,926231600,741684524,925644852,926034994,741487660,741617969,908867892,537529653,1193287712,1213219154,156451657,875312946]},{"sector":5,"length":512,"data":[943270962,1431257900,942429262,1094986807,538984788,220209184,538976266,1230131232,1329747022,1414728024,741485636,1330785330,1163149652,538970637,1163010080,1380930643,926026053,741487660,741617969,154547760,758843917,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,221064493,1230131210,1380275278,1229476896,1162496846,168632404,990514491,1413829408,153112661,154864141,1696604192,1915380595,1395668022,1702037769,1952671084,1681275168,168651120,538970427,1668506912,842101290,156446776,1818587913,544498533,1681013041,168651120,538970427,1668506912,155284010,1635021577,1730180210,1752195442,544433001,1663071329,1701999221,1663071342,1869836917,1869619314,1769236851,221146735,1193294602,1213219154,542327625,154864141,1696604192,1646945139,1431257888,1461736526,1413563424,990514497,1397051936,1163022164,154864141,1696604192,1915380595,1695091010,1730176110,1752195442,225665897,757938954,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,168635693,1162092576,1162758470,1413563424,1330785345,218762583,1142956042,1280332617,1330469185,874530116,824980780,959523891]},{"sector":6,"length":512,"data":[538976288,151587104,857750281,846737458,824193072,964178489,1768973366,538970637,1163075616,542135636,875312946,825306162,959720500,741356844,875312693,859319352,741814828,824980020,908866609,537529653,1193287712,1213219154,542327625,875312946,943270962,1431257900,942429262,1094986807,538984788,220209184,538976266,1230131232,1329747022,1414733912,741616708,537529650,1377837088,1330926405,840975698,842279991,875639084,221656620,537529610,1397310496,1497451600,1162104653,824981024,538970420,151587104,908081929,846737460,824193072,964178489,1768973366,538970637,1163075616,542135636,875312946,825306162,959720500,741356844,875312693,859319352,741814828,824980020,908866609,537529653,1193287712,1213219154,542327625,875312946,943270962,1431257900,942429262,1094986807,538984788,220209184,538976266,1230131232,1329747022,1414733912,741485636,537529650,1377837088,1330926405,840975698,842279991,875639084,221656620,537529610,1397310496,1497451600,1162104653,741683488,537474609,151592992,540739849,2016425014,540030259,2016557361,1885615673,537529705,1394614304,1347769413,741814816,824980020,875312177,808791097,741750060,942422068,926034995,741487660,741617969,168637750,538976288,1346458183,1396918600,741814816,959197748,1329802296,743722581,1143748408,541152321,538976288,538970637,1380982816,1112821321,1394628687]},{"sector":7,"length":512,"data":[841761876,538980652,538976288,538976288,537529632,1377837088,1330926405,840975698,842279991,875639084,221656620,537529610,1397310496,1497451600,1162104653,741814560,537475121,151592992,540739849,2016425014,540031028,2016557361,1885615673,537529705,1394614304,1347769413,741814816,824980020,875312177,808791097,741750060,942422068,926034995,741487660,741617969,168637750,538976288,1346458183,1396918600,741814816,959197748,1329802296,743722581,1143748408,541152321,538976288,538970637,1380982816,1112821321,1394628687,841761876,538980652,538976288,538976288,537529632,1377837088,1330926405,840975698,842279991,875639084,221656620,757938954,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,168635693,1313428048,542262612,1346458183,1396918600,1162368044,1279348050,538976288,891304763,741487921,808596512,874523697,674377778,740893240,808596768,808463665,574105650,891300905,741486642,825766688,151653682,538970377,993730592,808596512,874523703,741879858,875640096,218762544,538976266,1632444475,1970104696,1917853805,544501353,1952737655,941636200,537529634,540745760,1769107272,1953394554,1109421153,540690768,540029489,1444945952,1769239141,543973731,977883202,221394720,538976266]},{"sector":8,"length":512,"data":[1163075643,542135636,1952543827,1852140901,1663071092,1635020399,1948282473,1713399144,1869376623,1735289207,1668506912,543518817,1970365811,1701015141,168639091,991961120,840966176,825568311,540291628,1702043709,1768693876,1931502958,1768120688,1948280686,875700335,909193775,538970637,1193294624,1213219154,542327625,1952543827,1852140901,1965060980,1159751027,572539731,1998594636,543716457,543516788,1953718636,1870099488,1954112032,1646293861,1735289189,538970637,538983200,543516788,1635017060,1970234144,673215598,746024812,1751607656,218762537,1142956042,1280332617,1330469185,874530116,824980780,959523891,538976288,540752672,2016424499,540028978,775299134,947397175,539113774,1635020658,224683380,538976266,1413829408,840986741,825568311,221524524,538976266,1095911200,1128876112,842211411,741487404,858534451,842214450,741487404,925644594,1330392118,1431257943,1210864718,1128810313,1414419791,538970637,1380982816,1112821321,1394628687,875316308,1378628140,1413567567,537529669,1344282656,1414416722,542658370,742671180,741485618,1096044370,168641876,538970637,1347635524,1297695052,541410383,875637814,538976265,908081979,846737460,1042296880,925775392,775452706,1914708537,1952543855,168649829,538976288,1968457043,926031984,741422380,168637490,538976288,1346458183,1396918600,741487392,858534451,842214450,741487404,841757235]},{"sector":9,"length":512,"data":[909585463,1464814636,1314213699,1229466708,1329809479,223628885,538976266,1230131232,1329747022,1414733912,741616708,1330785329,1163149652,538970637,1380982816,1112821321,1277188175,841761859,1378627884,1413567567,218762565,1142956042,1280332617,1330469185,824198468,909192245,538976265,908081979,863514676,1042296885,942552352,775452706,1914708537,1952543855,168649829,538976288,1968457043,926031984,741422380,168637490,538976288,1346458183,1396918600,741487392,858534451,842214450,741487404,858534451,926034994,741750572,1129795404,1414419791,1195984940,1431257928,168645710,538976288,1313428048,1481589332,1146376992,824980012,1414484524,222647361,538976266,1230131232,1329747022,1129062488,538970436,991961120,1129324603,1852785455,1953654134,1701601897,1701798944,1948741235,1886745376,1953656688,1701344288,1830839667,1936024687,168626701,1229201440,1095520339,1146047833,925966405,154677548,991961120,875962427,942962736,540942384,947397176,539113774,1635020658,224683380,538976266,1413829408,840986741,825568311,221524524,538976266,1095911200,1128876112,926031955,741750572,1129795404,1414419791,1195984940,1431257928,168645710,538976288,1313428048,1481589332,1146376992,824980012,1414484524,222647361,538976266,1230131232,1329747022,1129062488,538970436,991961120,1129324603,1852785455,1953654134,1701601897,1701798944,1948741235,1886745376]},{"sector":10,"length":512,"data":[1953656688,1701344288,1830839667,1936024687,758843917,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,168635693,1313428048,542262612,1330401091,151599186,538976288,540752672,842543413,1498235680,1651069472,225341282,537529610,540745760,1769496909,544044397,1852404304,1769414772,979924068,220346400,538976266,1866997819,1870293362,1818326126,1229996576,909189178,1852383288,825897248,1886609696,544498533,1769234802,824192111,1763717172,976560238,1935745078,1952671088,1952543264,168652649,991961120,1919243808,1633905012,1346510956,941636169,537529652,540745760,1431586131,1951604816,1835365473,1937010277,1852793632,1852399988,1701344288,1819239968,1769434988,1696622446,1885430643,1702043749,1852142961,980641123,538970637,538983200,741814816,824979765,540876852,544499059,1701734764,1634759456,1735289187,544175136,825177137,168637492,991961120,840966176,825306167,811281456,542978428,540024893,1937007987,1886609696,544498533,1769234802,1869881455,909784352,540090412,1937007987,544500000,824209268,168636730,991961120,1095911200,1128876112,1951604819,1835365473,1937010277,1702065440,1129530656,575414816,1953068832,1752440936,1634476133,1948284019,1646292855,1936028793,1768251936,168650606,991961120]},{"sector":11,"length":512,"data":[1752440864,1633951845,1663066484,1953396079,1869359136,1768434807,220817511,537529610,1280262944,1163088463,1413694796,841767200,842083383,538970417,991961120,1702436923,2003790956,1851875872,537529700,1280262944,1163088463,1413694796,841764128,808528951,538970425,991961120,1634541627,1953391975,1633820769,168649838,1329799200,1397903180,1128614981,742596692,959199026,538970425,991961120,2036539451,1646292577,224685665,1126178826,1380928591,1162626387,1109414979,741814828,537475129,538976288,1646279483,1801675116,1851875872,151653732,538970377,991961120,151653691,538970377,991961120,1866866747,2003790956,543649385,658655058,1701978227,1936028272,544501349,543516788,1936877926,909189236,151587341,538976265,993730592,1919120160,544105829,1869377379,221148018,151587082,538976288,540752672,1163019091,1126190661,1380928591,538976265,1313428048,1329799252,223498060,151587082,538976288,540752672,757935405,757935405,757935405,538976265,757935405,757935405,221064493,1126178826,1380928591,1313428048,741351508,741354544,538970434,991961120,1279402043,155927361,538976265,1128352834,537529675,1280262944,1380995663,542395977,741354544,1126969908,538976265,993730592,1431061024,537463109,1497571360,168644161,1329799200,1347571532,1414416722,875311136,741354546,541273177,538976288,540752672,1162170951,537463118,1380392992,223233349]},{"sector":12,"length":512,"data":[1126178826,1380928591,1313428048,741351508,875311668,155397170,538976288,540752672,1312905539,538970377,1096368928,537529678,1280262944,1380995663,542395977,808202804,1496068140,538987820,538976288,1377844027,151602245,1377837088,168641605,1329799200,1347571532,1414416722,741487648,842279984,1294746412,538976288,540752672,1347573072,151602508,1344282656,1280332373,537529669,1280262944,1380995663,542395977,841757236,741354545,742599769,538976333,1109408571,1314344786,538970377,1330790944,168644183,1329799200,1347571532,1414416722,741487648,875311668,538970418,991961120,1330389051,1213669463,155538505,1461723168,1163151688,1330522144,1313425492,168634695,1329799200,1347571532,1414416722,741421600,841756978,541207601,538976288,540752672,1497715271,538970377,1095516704,168643395,1329799200,1347571532,1414416722,741421600,908865842,541273139,538976288,540752672,1212631368,1431061024,538970437,1096368928,537529678,1280262944,1380995663,542395977,908865842,825371699,1126979884,538976288,1210071867,541607753,1162170951,538970446,1163020064,168644165,1329799200,1347571532,1414416722,741421600,908866358,541273139,538976288,540752672,1212631368,1096368928,538970446,1096368928,537529678,1280262944,1380995663,542395977,841757494,825371697,1294752044,538976288,1210071867,541607753,155469138,1377837088,168641605,1329799200,1347571532]},{"sector":13,"length":512,"data":[1414416722,741553696,908865842,541928499,538976288,540752672,1162297677,541152334,538976265,1162297677,222385230,1126178826,1380928591,1313428048,859185236,741553708,1496068402,538976288,993730592,1279613216,156716876,538976265,1280066905,168646479,1329799200,1347571532,1414416722,741553696,908866358,538970419,991961120,1229463611,1461733447,1163151688,538976265,1414088791,1311252549,1229476943,220809038,537529610,1280262944,1380995663,542395977,875311668,741354546,538970457,991961120,1750343739,1931506537,1702125940,1953391981,1885433120,1752440947,2032279653,1869376613,1763713655,1195581550,151653697,538970377,991961120,1881153595,1952803937,807429492,544175136,1819043193,168654703,537463049,538976288,168639291,1229201440,1095520339,1146047833,741613637,858860597,540619052,538976288,993730592,808596256,808465016,538970637,1163075616,542135636,892090162,875637809,741814828,741355825,538976304,1629502267,1667592307,1634869364,544172404,976560189,537529654,1193287712,1213219154,542327625,858534451,842214450,741487404,925644594,1330392118,1431257943,1210864718,1128810313,1414419791,538970637,1380982816,1112821321,1394628687,875316308,1378628140,1413567567,537529669,1397310496,1497451600,1162104653,824981024,538970420,538976288,908081979,846737460,168636464,538976288,1413829408,840978517,825568311,741617964,824981298]},{"sector":14,"length":512,"pattern":757935405,"data":[808202289,993730592,1886609696,544498533,1769234802,540876911,221657653,538976266,1380392992,1229475905,857756483,842214450,741487404,841757235,909585463,1464814636,1314213699,1229466708,1329809479,223628885,538976266,1380982816,1112821321,1394628687,875316308,1378627884,1413567567,537529669,1397310496,1497451600,1162104653,741683488,537474609,538976288,540752672,2016425014,221263155,538976266,1163075616,542135636,892090162,875637809,741814828,741355825,991961137,1935745083,1952671088,1952543264,1025535849,825897248,538970637,1193287712,1213219154,542327625,858534451,842214450,741487404,925644594,1330392118,1431257943,1210864718,1128810313,1414419791,538970637,1344282656,1414416722,542658370,742675539,741420083,1096044370,168641876,1229201440,1095520339,1146047833,925966405,154677548,538976288,993730592,808728096,808989816,538970637,1394614304,1347769413,741814816,824979765,926034996,808530220,538980652,1629502267,1667592307,1634869364,544172404,976298045,537529649,538976288,1346458183,1396918600,741487392,858534451,842214450,741814828,1277965879,1329813327,743722581,1212631368,1314213699,537529684,538976288,1313428048,1481589332,1146376992,824980012,758843917]},{"sector":15,"length":512,"data":[757935405,757935405,757935405,168635693,1313428048,542262612,1330401091,151598162,538976288,540752672,842543413,1111970336,1651069472,225341282,537529610,540745760,1769496909,544044397,1852404304,1769414772,979924068,220346400,538976266,1866997819,1870293362,1818326126,1229996576,909189178,1852383288,825897248,1886609696,544498533,1769234802,824192111,1763717172,976560238,1935745078,1952671088,1952543264,168652649,991961120,1919243808,1633905012,1346510956,941636169,537529652,540745760,1431586131,1951604816,1835365473,1937010277,1852793632,1852399988,1701344288,1819239968,1769434988,1696622446,1885430643,1702043749,1852142961,980641123,538970637,538983200,741814816,824979765,540876852,544499059,1701734764,1634759456,1735289187,544175136,825177137,168637492,991961120,840966176,825306167,811281456,542978428,540024893,1937007987,1886609696,544498533,1769234802,1869881455,909784352,540090412,1937007987,544500000,824209268,168636730,991961120,1095911200,1128876112,1951604819,1835365473,1937010277,1702065440,1129530656,575414816,1953068832,1752440936,1634476133,1948284019,1646292855,1936028793,1768251936,168650606,991961120,1752440864,1633951845,1663066484,1953396079,1869359136,1768434807,220817511,537529610,1280262944,1163088463,1413694796,841765408,842083383,538970417,991961120,1701978171,1633820772,168649838,1329799200,1397903180]}]],[[{"sector":1,"length":512,"data":[1128614981,742858836,824981298,537475376,538976288,1730165563,1852138866,1851875872,537529700,1280262944,1163088463,1413694796,841761312,960048183,538976265,993730592,1970037280,1633820773,168649838,1329799200,1397903180,1128614981,743972948,959199026,538970424,991961120,1818370107,543908705,1684955490,151587341,538976265,993730592,151587341,538976265,993730592,1819231776,1769434988,1377855342,1931952711,1885696544,1702061426,1948284014,1713399144,1953722985,221655328,151587082,538976288,540752672,1701995379,1663069797,1919904879,168636019,537463049,538976288,1394621243,1162170947,1329799246,156389196,1344282656,1414416722,1280262944,168645199,537463049,538976288,757087035,757935405,757935405,153955629,757080096,757935405,757935405,168635693,1329799200,1347571532,1414416722,808202272,1479290924,538976265,993730592,1095516704,151604035,1109401632,1262698828,538970637,1330401091,1230131282,807425102,875311148,155331634,538976288,540752672,1163217986,538970377,1431061024,537529669,1280262944,1380995663,542395977,842279984,1194078252,538976265,993730592,1163020064,151604805,1193287712,1313162578,538970637,1330401091,1230131282,807425102,741487660,1110192692,538976265,993730592,1096368928,537463118,1279402016,168641877,1329799200,1347571532,1414416722,741487648,741354544,538970450,991961120,1163010107,537463108,1163010080]},{"sector":2,"length":512,"data":[537529668,1280262944,1380995663,542395977,808202804,741487660,538970450,991961120,1431314491,1162629202,538970377,1145393696,538970637,1330401091,1230131282,874533966,825371698,1479290924,538976265,993730592,1330790944,151604823,1109401632,1262698828,538970637,1330401091,1230131282,874533966,842279986,154285100,538976288,540752672,542592844,1414088791,538970437,1229477664,673203540,1213484878,692538953,538970637,1330401091,1230131282,840979534,825371697,741421612,538976344,991961120,1380393019,151607621,1109401632,1262698828,538970637,1330401091,1230131282,840979534,825371697,741553708,538976322,991961120,1229463611,1109411911,155538764,1109401632,222647628,1126178826,1380928591,1313428048,825368660,741553708,1194078514,538976288,993730592,1195984928,1380393032,156124485,1193287712,1313162578,538970637,1330401091,1230131282,840979534,859188273,741553708,538976322,991961120,1229463611,1126189127,156123481,1109401632,222647628,1126178826,1380928591,1313428048,859185236,741421612,1378627890,538976288,993730592,1195984928,1163010120,538970436,1145393696,538970637,1330401091,1230131282,908088398,825371699,741553708,538976338,991961120,1095573563,1414415687,537468993,1163010080,537529668,1280262944,1380995663,542395977,908866358,825371699,538976265,993730592,1279613216,156716876,538976265,1414088791,1311252549,1229476943]},{"sector":3,"length":512,"data":[220809038,1126178826,1380928591,1313428048,859185236,741553708,537473846,538976288,1210071867,541607753,1414088791,538970437,1229477664,673203540,1213484878,692538953,168626701,1329799200,1347571532,1414416722,741487648,808202804,537477676,538976288,1411398459,544434536,1952543859,1852140901,1634541684,1948283760,572548456,1819043193,539129711,1126198889,168640839,537463049,538976288,538983227,1701601648,543519860,1869881392,1970037280,1935745125,1935767328,1852793888,1852383333,151587341,538976265,993730592,1981816864,1769173605,544435823,1193305711,1213219154,223560521,151587082,538976288,221985568,1142956042,1280332617,1330469185,874530116,824980780,959523891,538976288,991961120,842211387,808613936,537529648,1394614304,1347769413,741814816,824979765,926034996,808530220,538980396,540752672,1701868385,1914729571,1869182049,891305248,168638010,538976288,1346458183,1396918600,741487392,858534451,842214450,741814828,1277965879,1329813327,743722581,1212631368,1314213699,537529684,1344282656,1414416722,542658370,742675539,741485620,1096044370,168641876,1229201440,1095520339,1146047833,741744709,537474097,538976288,540752672,2016425014,221261874,538976266,1163075616,542135636,892090162,875637809,741814828,741355825,991961136,1935745083,1952671088,1952543264,1025535849,909784352,538970637,1193287712,1213219154,542327625]},{"sector":4,"length":512,"data":[858534451,842214450,741487404,925644594,1330392118,1431257943,1210864718,1128810313,1414419791,538970637,1344282656,1414416722,542658370,742675539,741420084,1096044370,168641876,1229201440,1095520339,1146047833,892411973,154546476,538976288,993730592,808728096,808792952,538970637,1394614304,1347769413,741814816,824979765,926034996,808530220,538980652,1629502267,1667592307,1634869364,544172404,976298045,537529649,538976288,1346458183,1396918600,741487392,858534451,842214450,741814828,1277965879,1329813327,743722581,1212631368,1314213699,537529684,538976288,1313428048,1481589332,1146376992,824980268,1414484524,222647361,1142956042,1280332617,1330469185,824198468,942746679,538976265,991961120,875962427,942962736,537529648,538976288,1431586131,926031952,741422380,841757745,825306167,540093488,540752672,1701868385,1914729571,1869182049,824196384,168636730,538976288,1095911200,1128876112,842211411,741487404,858534451,926034994,741750572,1129795404,1414419791,1195984940,1431257928,168645710,538976288,1230131232,1329747022,1414733912,741485636,990514481,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,221064493,1230131210,1380275278,1095911200,1128876112,1145657171,538976325,874527547]},{"sector":5,"length":512,"data":[674377778,892220209,539765026,825242165,842018861,775106856,220799541,537529610,540745760,1769496909,544044397,1852404304,1769414772,979924068,775106848,168632885,991961120,1919895584,1852799593,543973748,977883202,808595744,538976288,1953654102,1818321769,1229996576,842473530,538970637,1394621216,1347769413,1635013408,1701668212,544437358,1953394531,544106849,543516788,1819045734,1852405615,1936007271,1701863779,1902474016,1668179317,221934437,538976266,538976315,942421810,741420088,540357938,1852121149,1701601889,775106848,1881154101,1953393010,224882281,538976266,538976315,892090162,875703345,1931492640,1814066277,543518313,1667330163,543649385,840986484,825372468,537529654,540745760,926031904,741422380,1025521713,1952805664,1852402720,1886593125,1852400481,1869881447,792211744,540422450,808596264,808465016,1146047776,1327518533,559500366,168634657,991961120,1095911200,1128876112,1951604819,1835365473,1937010277,1702065440,1129530656,575414816,1953068832,1752440936,1634476133,1948284019,1646292855,1936028793,1768251936,168650606,991961120,1752440864,1633951845,1663066484,1953396079,1869359136,1768434807,220817511,537529610,1397310496,1497451600,1162104653,892089376,741552428,538982705,991961120,842211387,808613936,540936496,925773873,775452706,1847599667,1915580015,1952543855,168649829,538976288,1968457043,926031984]},{"sector":6,"length":512,"data":[741881900,892480561,926034997,741422380,168638513,538976288,1346458183,1396918600,741814816,1277965879,1329813327,743722581,1212631368,1314213699,537529684,1344282656,1414416722,542658370,742675539,221457460,537529610,1397310496,1497451600,1162104653,824981024,538970420,993730592,808728096,808465016,1931488544,543518049,1713402721,941650543,1919950882,1769238121,168650606,538976288,1968457043,926031984,741881900,892480561,926034997,741422380,168637490,538976288,1346458183,1396918600,741814816,1277965879,1329813327,743722581,1212631368,1314213699,537529684,1344282656,1414416722,542658370,742675539,741420084,1096044370,168641876,538970637,1347635524,1297695052,541410383,824980785,538970422,993730592,808728096,808792952,824196640,574041649,775369080,1914708536,1952543855,168649829,538976288,1968457043,926031984,741881900,892480561,926034997,741422380,168637490,538976288,1346458183,1396918600,741814816,1277965879,1329813327,743722581,1212631368,1314213699,537529684,1344282656,1414416722,542658370,742675539,741485620,1096044370,168641876,538970637,1347635524,1297695052,541410383,824981297,538970424,993730592,808728096,808989816,824196640,829956658,574107191,1953460768,1684370529,538970637,1163075616,544240980,942421810,741420088,741684530,892090162,875703345,538970637,1380392992,1229475905,840979267,909585463]},{"sector":7,"length":512,"data":[1464814636,1314213699,1229466708,1329809479,223628885,538976266,1230131232,1329747022,1414733912,741551172,1330785330,1163149652,758843917,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,168635693,1313428048,542262612,1330401091,151597394,538976288,991961120,825565243,1998598712,543716457,1667329122,1769087083,1852793442,168626701,991961120,2019642656,1836412265,1769099296,1998615662,1752458345,574103610,538970637,1210071840,2053730927,1635020399,1346510956,824195657,1763719222,976298094,1935745073,1952671088,1952543264,539783017,540030001,891317865,1629500986,1667592307,1634869364,225405300,538976266,1700143163,1667855474,1109421153,540690768,168637496,991961120,1413829408,1394626645,1702125940,1953391981,1868767347,1767994478,1752440942,1868963941,2003790956,543649385,1633907557,1931502960,1702195557,1936024430,537529658,540745760,926031904,741422380,1025520689,1952805664,1852402720,1886593125,1852400481,1869881447,791949600,221525041,538976266,538976315,824981298,1529622577,1563524144,807419168,1952805664,1935745139,1952671088,1952543264,1948282729,976560239,824192054,1952805664,1953046643,544175136,221329969,538976266,1380393019,1229475905,1394627395,1702125940,1953391981,1937055859,1397039205]},{"sector":8,"length":512,"data":[1277304899,1769414690,1948280948,1814062440,544502625,544175988,1702132066,1700929651,224882281,538976266,1948262459,1679844712,543257697,1853189987,1814569076,1747744623,694708073,168626701,1094983712,1145129810,1414747466,151597088,538976288,540745760,1701080899,1881170208,1953067887,543520361,1651340654,1948283493,1768693871,1702127719,151653742,538970377,538976288,1881153595,1953393010,778530409,1735742240,1953719655,1981834341,1702194273,824196384,218762544,1142956042,1280332617,1330469185,874530116,824980780,959523891,538976288,991961120,842211387,808613936,537529648,1394614304,1347769413,741814816,824979765,926034996,808530220,538980396,540752672,1701868385,1914729571,1869182049,891305248,168638010,538976288,1346458183,1396918600,741487392,858534451,842214450,741487404,841757235,909585463,1464814636,1314213699,1229466708,1329809479,223628885,538976266,1230131232,1329747022,1414733912,741616708,1330785330,1163149652,538970637,1380982816,1112821321,1277188175,841761859,1378628140,1413567567,218762565,1142956042,1280332617,1330469185,908084548,154415404,538976288,993730592,808728096,808465016,538970637,1163075616,542135636,892090162,875637809,741814828,741355825,991961136,1935745083,1952671088,1952543264,1025535849,909784352,538970637,1380392992,1229475905,857756483,842214450,741487404,858534451,842214450,741814828]},{"sector":9,"length":512,"data":[1277965879,1329813327,743722581,1212631368,1314213699,537529684,1344282656,1414416722,542658370,742675539,741420084,1096044370,168641876,538976288,1313428048,1481589332,1145261088,824980012,1414484524,222647361,537529610,1397310496,1497451600,1162104653,741683488,537474609,538976288,540752672,2016425014,221263155,538976266,1163075616,542135636,892090162,875637809,741814828,741355825,991961137,1935745083,1952671088,1952543264,1025535849,825897248,538970637,1193287712,1213219154,542327625,858534451,842214450,741487404,841757235,909585463,1464814636,1314213699,1229466708,1329809479,223628885,538976266,1380982816,1112821321,1394628687,858539092,1378627884,1413567567,537529669,538976288,1313428048,1481589332,1145261088,538976265,991961120,1129324603,1852785455,1953654134,1701601897,1701798944,1948741235,1886745376,1953656688,1701344288,1830839667,1936024687,168626701,1229201440,1095520339,1146047833,925966405,154677548,538976288,993730592,808728096,808989816,538970637,1394614304,1347769413,741814816,824979765,926034996,808530220,538980652,1629502267,1667592307,1634869364,544172404,976298045,537529649,538976288,1346458183,1396918600,741487392,858534451,842214450,741814828,1277965879,1329813327,743722581,1212631368,1314213699,537529684,538976288,1313428048,1481589332,1146376992,824980012,538970637,1344282656,1414416722,542658370]},{"sector":10,"length":512,"pattern":0,"data":[155468620,538976288,993730592,792940576,1986948931,1769239141,543517794,1936027492,544483182,1886418291,544502383,1936025716,1869422693,225666404,1027422986,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,990514493,537463049,1159733280,1864393838,1917853798,1818846831,990514533,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,222117181,436866314]},{"sector":11,"length":512,"data":[-1,5021696,1297616191,1482184787,12376,125,5505024,0,0,0,16777216,0,-1879048192,0,0,0,25100664,0,-1476460544,371099950,109850112,1405812760,516238878,2139095062,1204228098,1979777027,55542021,1528791043,-58655797,171013443,-1341950528,272420736,118359669,-822030661,225773628,-1976646518,771764798,4791946,1963539663,784632331,24118926,-811597637,788475642,-1609170910,48104109,51774198,57738038,-1597897764,-1583505146,-1607490368,-1575575450,65774182,1452314768,102650199,119471260,173022990,-2144176924,-58687516,1476882960,-2135703501,-90410005,2113155,1376089344,1509984232,337051406,809402368,158597120,-1279249576,-338545791,-1974446000,8332740,-125050671,-1363309736,2046757632,792625210,326369280,1397774166,1075248977,81152,1599626073,236483934,-2147472408,12094,1397757812,4331263,1526726973,856323160,-1278069824,-16585854,385814231,520552468,-883007655,922682867,-883490448,-401734220,-1262223536,1239944710,-402209793,1048576112,1946157104,-1262287102,722849160,1023425542,208797760,3817091,-972720896,16788742,695517195,855900345,759070939,57933824,989872315,1929394718,975080196,734724864,-1949158461,1245613018,-1712845312,439796991,37599232,-1559984346,-930349026,38045478,117448867,-16772157,1229215487,856050515,650153664]},{"sector":12,"length":512,"data":[6686350,-1107291457,96010741,-1493959680,-400264185,772145440,32587460,-1191053890,-201588731,-392427610,-15859385,1946162198,805750278,-960299008,16789510,-1996717885,-58717580,772437127,1978111,3842350,-326894897,-2081923068,-1980986623,1183519302,273058072,520040033,-1672478690,-1947432107,1183384134,108954380,1482185984,1626999156,-402652744,-2090794606,1036976836,91547649,640614190,-13722624,-1157618146,-2094137344,8254,-1590819724,13566010,-1850476032,108347452,44766779,1048584564,1946222634,-2138000614,11582,-1833758348,3675707,28838258,2793984,868473650,-1594178624,-1073086422,113642356,-1207959510,-617480191,-1279249469,-2080717933,16791102,904400244,1958742784,906413836,-1207959296,-617480191,864203715,-2080717888,13886,1357385076,1958742784,906413836,-1207959552,-617480191,864203715,1375388608,2834048,-970623743,50349062,3423875,-402164736,-1073020786,28839541,12642304,4460286,200011125,3409663,838861240,-1279043109,-339725438,-2142110984,11070,1048786036,1946157108,1141294644,1407714048,876512000,141885696,376750091,132890675,242597899,-402652744,251527286,-562757564,251595755,28835892,1507537408,864203715,788065216,3096192,-1207667712,-389349375,785121132,3096192,-1207667712,-389349375,-2134114409,1048587857,1946157105,178184,-352309784,772152871,64685696,-610259448,7873795,2089676939]},{"sector":13,"length":512,"data":[-1900006640,-1064417064,309568,1957164028,520568833,-1017521358,-464519168,1946265700,-469701884,9103456,-793759371,-2115476250,-400001792,594804755,213147876,-863969246,669211089,-352138112,833826,-339135663,-1469783040,1509482753,1489236705,-1072999957,41279412,1239997876,-1337690880,-396040495,997523520,1625736330,1962948584,784937778,3280522,-481753629,-1341396190,-396040449,460652576,45684203,-469701888,1947248737,-469701640,1964025953,-1192303880,868417537,-919354432,1692664043,-119537116,81347,326242420,-1710751048,-268370046,326427658,28839403,-1207702776,-2103834624,-1192230657,868417537,20825024,1946334208,-469208564,1946331282,840756002,613606628,-339473667,-436147456,-339135598,613606400,-524011006,-1207667210,868417537,20825024,1946465280,-469077494,1963239525,840756002,610657508,-339473669,-436147456,-339135643,610657280,-524011004,-1207667210,868417537,-661929024,1067498066,19225324,1975728896,112644,-1325687613,1977289600,1376825346,-297852742,1977289562,714755,385822222,28835860,509657856,4241414,922736782,922681506,244056228,113705124,74776738,1041665070,1057012224,-1869573907,787806864,4069006,10749583,10618511,-1070457081,-297852742,-1072970911,41279412,468245940,-1978239744,-396040508,225771538,1692845194,1962936808,112644,-1010814013,15452467,35939556,197392608,1977595072,-388123646,376766491]},{"sector":14,"length":512,"data":[1692845194,1962939112,-419450867,649316,28836981,-1070349568,-339135549,610591744,-1007099902,242532363,-521740368,1692664043,242549284,-575663893,15458534,35939556,28836981,-1070349568,-1329591357,-1342016291,700076767,-1202000381,197328897,1977595072,-388123646,460652576,1962941416,-422465514,1239140,-997585547,166224102,-1207667456,868417537,-919354432,1692664043,-119537116,520040131,28835909,1620886272,-1940912610,-1950314800,520040156,-998047675,1629423362,-1660943944,520040131,-1664942011,57534714,337051406,1975520000,839319054,842956800,-411696640,-1195130829,29556737,0,1408932864,-1070397872,109953166,-2027550957,-1560280058,-930347299,101091110,115319552,1486641927,1342295168,-1700936821,-268370046,1438883163,105966731,-1070335332,-576601970,77800966,115319040,434982,-33069440,1190528925,141820423,115017415,585826304,1178192012,102462468,-1070335332,109953166,-1557788909,-930349052,434982,1317013405,1566048519,-104811313,1081218509,-2095119578,-2128214333,1968459839,2139104819,745884674,55020070,611614888,-402128200,-1202651309,1290274817,134265087,1493124840,141869066,-1710751304,-268370046,-1022960735,868466739,12276672,650350332,5258881,511003727,294258318,-46235354,1979449599,610722833,1963670543,1007077126,-1207861248,-1017446399,-115080264,158471629,91612170,1963115510,-104811465,963777997,88574502,678757032]},{"sector":15,"length":512,"data":[41910566,544479736,41910566,410264568,41910566,276047352,41910566,141822460,41910566,158665724,-1175928781,112892,-1010814013,294258318,-139479112,-50529072,-50529028,104539900,-50593544,-50529028,209059068,16424998,74784548,-1023409736,-1899773901,-1206810106,-789073993,-50529028,-50529028,-133809370,-50529280,-50529028,638481916,604043936,1946893343,112644,-1010814013,-1895825480,1048585920,1979449358,178267692,1948990464,1965702148,-33507296,-2128166770,1409286206,638743857,1023410849,91500598,1966092861,112644,-1010814013,-268369949,516173393,-2128213808,1967282751,2139170346,1968130306,2139104802,460673796,-400651482,1159629311,1191611392,16758784,4529919,28837234,868440320,516118976,871366880,516173504,-2128213745,1970618943,2139170336,1970039810,2139170328,1968381956,2139170320,1967205894,2139104776,24467180,508674880,-1202235898,-661721088,249561278,157859591,-1879045959,28878579,-1207733248,1583284224,-1017569529,1229475872,1397770572,-268377919,542331715,507658572,1364657750,1958658099,773787145,158351044,-218101831,1073837478,1577541465,1162134303,1113082956,5459785,-1191442914,-1064374272,4113446,521019117,161101453,-1409283399,-50529028,-50529028,1963276838,-270383357,46629663,-1070397213,-1004130069,-1960443267,46629637,1946157117,-49683,188607604,639268096,145294731,638743552,-1996333628,-1946139362]}],[{"sector":1,"length":512,"data":[-1207941370,520552449,93005507,-1475950717,-1949862864,283345880,-338564143,-83629103,1946165417,1023616693,-352139389,-106108755,108314635,385859635,12125208,28856580,404160256,1958742788,-107943899,510967819,385859635,-1073019880,2145914996,1975520249,-639477495,184549816,861520832,861520832,-1950090816,-2096330210,276103163,-150991944,-2116514845,-401908029,1005256890,-851234632,1971338287,1159629080,1191611392,204454656,1376145288,-396485958,-346422203,190757658,204471169,-1947726733,1975520000,197362442,1153101547,-1966868132,243796559,-919404471,-2012852342,-1979698930,-109050033,-2012973825,-1962921458,-25099657,175440922,206257792,-1107069696,1334510686,248392452,68730631,1049208051,1602945042,1960512264,1329496118,796196876,1576581714,-1979460376,1959922199,64743430,-2131432637,12862,749866868,-1979462424,-2147470826,-1024970550,-399592957,-1017510979,38243155,1963203133,1262387210,57999372,-1559994696,402588696,124109659,82183357,219086593,1309126403,377349,84742399,82184160,-16710374,872549650,-217726456,352256005,128713741,106628681,219610880,436769798,310532,118298626,106629036,-16775535,-1408758502,-1861854457,486473734,148113677,110757521,220135168,436710410,310532,185409792,68814764,16778429,-1408496348,-1123804665,654442500,155323661,79496218,220660224,436828941,310532,202187777,99813475,-16775644]},{"sector":2,"length":512,"data":[-1408365264,1308957191,872349957,152243981,105448996,221708032,-1710644208,439558,286079487,68814523,-16776003,-1409217220,-1157188345,16711686,-1572864,275312640,4248,0,16711680,16777471,65280,1444181061,-2108615557,344542740,1348954,1310013512,-1035135722,346308884,1226134099,1916999090,361911317,538976256,538976288,538976288,-57312,1668052080,1633907553,1627415908,859206772,1819291696,1879077749,1744843379,1667593840,6386292,1919247201,808464689,1936684032,1633839464,1937340160,1970536549,7367020,1768842618,1627416692,1627402612,1627402868,1879061364,1768712552,1660973936,1711305587,1752462177,1651048560,892680045,1969356850,1768778860,1818325603,1818584064,1952514156,3407616,3276853,3538996,3670071,808517689,3223808,822096433,858849331,3289344,822096945,909180981,3617024,1358889009,508711251,1431721734,-1004597604,637539902,167927178,-2146536229,92147963,-343931976,-339725557,2156551,1457860,637599757,235095433,1316607,123690589,1532582431,134661976,-889170176,28698876,-1900904001,234975238,-1930175512,109971144,19267952,648023046,-1609562623,335937830,817104800,54272461,1975125619,15329627,-851246920,1971338287,1537587718,855694057,-1667411776,-268425896,-1158676419,58022879,-402602263,-2143484660,-972721407,-15972346,-1274709272,-1474900734,-972721144,806662,-1090445592]},{"sector":3,"length":512,"data":[-401690442,-739708052,1958743029,1584314900,206192256,-972393216,11014,-352268056,-61872120,2112553843,136243344,-402107160,-119012518,1212055554,175374348,184638952,-402426670,-1310195543,809402611,91488256,-346265158,154986576,113642099,-1174336435,1105943754,206651008,-402426880,2112357514,4209924,-1912183693,637628422,-1610342773,34507558,1065363104,638219521,638076811,1963345675,180585221,-1173885982,-1072996804,330973301,6809692,-396522566,1048576097,1946160205,1561770511,-1207937816,567086087,-143323844,312721459,373212160,1166550528,646000141,2147418116,113643243,-1174339540,183000772,10020864,-374275393,784593540,206519936,-402164480,162791459,784540109,206519936,-402164480,45350931,784540109,206505670,387072,567085492,1048587971,1962937423,1048587803,1962937424,236868115,-1173769185,567106146,1342621230,1512046348,-930341181,-2090916935,-372174911,-372119087,-1056708143,1913258045,167783688,24159007,869830339,-1077899584,-141839726,-1610551679,1313853067,-56298499,1879492383,-1023410175,-1900006406,12369600,637563320,581108871,650677248,-1560132473,-1006960604,1364612870,30009427,-1746336908,-1900006656,1117857472,10217472,-1591338123,-1830289282,638743808,-402583903,158662793,-1237417690,1941962753,1530837509,2145938923,-1956285952,-1945354698,-1178562872,-503906288,-2146679291,-2071396142,-1803026414,28901396,1174849280,-1258291444]},{"sector":4,"length":512,"data":[-1206530681,-1064435712,650117304,637551267,637566627,637603491,28720769,74833920,28746534,-1191149384,-768393344,1049352843,-401735606,-340070084,1499199578,-1022927010,-2141519174,-15972290,-768408971,1038871545,57982976,-1008730051,1894131120,-1073057308,145228916,-1007091340,0,0,0,0,1,37632,1,-2147445824,0,0,0,0,106151987,1007062574,-2049268,639601446,1950488459,1468737115,1959922436,650808147,721831819,1347618497,84207809,-389943296,115982594,-1995685213,-1962130418,-1945354698,-1178562872,-503906288,-2146679291,1149829330,341084178,-956300871,-32750074,-846744322,1961101845,123426829,1118027827,205824780,1532502251,1204233735,637534212,235292553,1043761927,1174849292,-1258488820,-1206530681,1527185409,1381172931,1962949352,-2049236,639601446,1950488459,1468737056,1959922436,-11737064,205655691,1151406051,-1949158644,1245613018,300420608,123427568,1127428291,1095781711,1364678225,977191982,291880460,-67106631,1599710963,1146798942,1329799251,-268414894,1023500264,796067840,293781244,294258318,-1182790465,-1494024184,117054837,24118926,71207718,244000416,-2144952318,141820989,-502610045,-1006958603,21349926,1170679297,641630210,280007,1170679296,637599750,542151,96871936,-1929705726,-1995014378,236355878,1516420119,370207875,653560583,279751]},{"sector":5,"length":512,"data":[2089362944,1153902090,637534220,935111,1153902080,645922822,541895,80160496,-953810432,580,-401713322,1583284409,-1993996522,-953809796,2628,205834022,-1943646062,-953807284,1604,138725158,240582656,-1912565528,-1089369594,-1833009152,16824656,1752541171,-1203863367,-768409344,1049352843,-401735606,119467768,-1185901889,-1070399232,118926323,71616294,1465843712,175933734,205834022,-953810944,3652,105170726,-1943646062,-953808820,637665284,148679,33601792,240211462,1493182696,-2128214178,33557572,-14285709,-387838396,281314143,1879477766,96871937,378406660,646649471,-1950148991,-385825730,-2001408380,1930808824,-1010814206,1448300882,4450310,1760050034,-1204390402,-839325695,-1959890411,4242115,12182263,-1949158592,1245613018,1307053568,439796974,-1950811648,75965954,-1946147165,1149707976,2663170,1532889083,113465945,-268387501,-642006130,1065428735,141904197,41910566,57950547,-117314568,12781403,0,-1004602368,637539902,-401443387,1265762904,792462708,-397478539,1064436300,-1993410188,773022518,325394060,1661927214,1949252627,235516973,1587395103,788229352,325269189,1912742888,1020294166,1309242671,1664498478,1187280147,1055445130,-370807813,783024273,-1156356189,-1947726764,-401706496,-344849928,792503668,-347146891,32172190,-1317751950,863255100,-243974852,1912724456,1915763918,2000239863,751973363]},{"sector":6,"length":512,"data":[-805070800,1912719336,1009611823,1015706160,-779716807,-774206494,65196514,-1176441901,118358028,-401834561,91357604,-492174476,96872182,-17920,1728481070,207928083,1929386472,-11409149,325558574,125046076,57936444,-385931031,-1021378161,4161582,942542964,-2096794617,-253033533,1476341496,-1007041791,1309066798,784596748,206505670,-970013952,-15970554,1329365187,-970052747,807174,113716931,53870656,1107740462,-1023184640,209559854,-1289740275,1852784127,-1006761612,1952870205,784595202,206184072,509002744,-1933631730,-1092930804,-2144990083,796196669,1916877996,2002402310,639634434,125109562,343195658,1139010375,1031808583,638612735,1962950016,-806664205,-1977710290,-2129925364,1997344511,219070217,1579138027,1579134699,-92167189,41287808,-770991125,-1779760523,109981190,-1993997968,127926806,1376175662,-1997799668,1983969923,-8787709,-489485647,941001006,113651200,-369161133,-1590755474,537726077,1037775392,175402607,1866318846,-385649562,-2010185905,-385071074,-1590755506,537726077,1037775392,175400559,1866318846,-385649554,-2010185937,-385070306,-1590755538,537726077,1037775392,175400559,1866318846,-385649554,-2010185969,-385070050,-92012786,-385649856,837353215,1942109181,-17438461,974555438,-17504000,992935935,1930808374,171748370,222038132,540804212,-1993423880,-116011978,1048587971,1946160210,1572059674,100676840,1879477806,44115457]},{"sector":7,"length":512,"data":[786958240,1572256256,771760360,206782080,-1172868096,317218266,950087168,-754274048,1042664,-396495430,516096001,-1092083954,-1178394632,-768409590,-1072958985,-397277836,-2141519887,-1226297150,-1912159240,637628422,-1610477941,69110566,650130336,637798342,637618056,637683593,637814665,637945737,-2096609399,-471725373,136218918,12781472,-1946157056,-1995014378,236355878,1516420119,-1202599630,365811712,-159681959,1987314370,1946222208,1374587505,-1915223624,-850357706,-161582571,-2142194682,116807541,1946308788,87461200,604277329,1963015289,38570811,839146634,-792622337,-791031317,-1462119957,88378115,-2092431500,-746389055,198324992,1107391936,1977289558,16351494,-1962380796,234900030,1592421352,-167262589,1971386692,-838968908,-1040281219,1930492288,-9246461,1879477766,512435713,-1960402940,648020494,1963016064,2139301391,141885444,41910566,125043712,-502611069,-2143294490,806462,-1712839820,1191257851,1468212738,690356228,-2094660025,1912604767,1200301597,1191912966,-351046648,2139301397,175374344,71827238,139460390,-970586901,-1912142841,-1961459946,-1021935322,1279164462,1928659212,-2144419071,17583934,-1172436105,521034908,567085492,378285599,-1993468289,236355878,1516420119,-385948541,904397321,6088704,439533468,-1878157127,-201539533,2287787,771898600,206519936,-1173653759,236870850,-855002081,782049057,377427598,-2128180434,772195094]},{"sector":8,"length":512,"data":[24118926,71207718,244000416,-2144952318,225771837,33932838,3795025,96872025,180847361,-1022891806,109981190,-1960443536,648021054,-1610477941,20807718,-970584203,-397344251,643367051,1912669638,180847366,133752546,1435182787,1166747144,702726,-757997359,-1957627166,-1177406526,-141550800,1490586609,-326897161,921996048,279751,2089367040,1153906186,905969676,935111,1153906176,907686406,906513548,456131783,38061878,1342570496,374822483,921177607,1532911610,1149318744,907751436,939139,-2097151699,-545980197,-613040117,281314055,1435182787,1166747144,-787828474,-489500192,-1031057158,817484339,-235433957,-145172341,283935729,-952699765,2628,75270454,105170742,-952762368,2116,205834038,-1942604446,-952758708,907751428,148679,1397753344,-1732683946,1656721421,1438186549,-217641387,235345579,519679208,236916230,-1732641785,1656655885,439533365,520595443,1583292533,-2127144869,456132164,139756342,77056,1962990467,1975520185,-998045771,-947141872,1595552813,861625182,1141061330,1410545158,-998045944,1972053520,1569400322,702724,-741218607,-972817694,264164115,714845,197051019,190557,-1974418439,125124,-389001128,-388962096,32041168,254040064,338137092,-2010241222,-389855740,-1072957156,772152436,24118926,71207718,244000416,-2144952318,242484285,-502610045,-953284619,1716230,-953761024,67109445]},{"sector":9,"length":512,"data":[71681830,-1993998336,-953809339,2117,17155622,1049177607,113449520,1879477806,1049308673,-16049616,-970587020,-1022950395,-65536,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535]},{"sector":10,"length":512,"data":[-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280]},{"sector":11,"length":512,"data":[65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535]},{"sector":12,"length":512,"data":[-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215]},{"sector":13,"length":512,"data":[-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935]},{"sector":14,"length":512,"data":[16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215]},{"sector":15,"length":512,"data":[0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1]}]],[[{"sector":1,"length":512,"data":[-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681]},{"sector":2,"length":512,"data":[-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1]},{"sector":3,"length":512,"data":[0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256]},{"sector":4,"length":512,"data":[255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215]},{"sector":5,"length":512,"data":[255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1]},{"sector":6,"length":512,"data":[255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536]},{"sector":7,"length":512,"pattern":0,"data":[65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,-22016,16777215,0,16777215,255,-16776961,16777215,-5636096,-1,0,-256,65280,65280,-1,-1442840576,-1,255,-65536,16711935,16711680,-256,255,-86,65535,-16777216,-16711681,-16777216,-65536,65535,43520]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]},{"sector":10,"length":512,"pattern":0,"data":[]},{"sector":11,"length":512,"pattern":0,"data":[]},{"sector":12,"length":512,"pattern":0,"data":[]},{"sector":13,"length":512,"pattern":0,"data":[]},{"sector":14,"length":512,"pattern":0,"data":[]},{"sector":15,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]},{"sector":10,"length":512,"pattern":0,"data":[]},{"sector":11,"length":512,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168624128,1162692936,1142962765,1478513487,1142969165,1702259058,1444949106,1769173605,857763439,540029230,959455277,791687983,168637241,1702131781,1684366446,1835355424,544830063,1667592275,1667851881,1869182049,1479024750,539579213,1936876886,544108393,221261363,1886339850,1734963833,824210536,758659129,859388209,1667845408,1869836146,1126200422,779121263,220465677,1634226954,544698212,541933906,1634953572,1684368482,168633390,1314013527,977751625,1634226976,544698212,541933906,1634953572,543517794,544501614,1886418291,1702130287,1852776548,1768453152,2037588083,1835365491,168633390,1314013527,977751625,1634226976,544698212,541933906,1763734377,1937055854,1851859045,1633886308,544483182,1679844706,1650553705,778331500,1158286628,1380930130,1229463610,776815949,542333267,1970365810,1936028265,1397703712,808334112,1919885360,1734961184,779249000,1158286628,1380930130,1849761850,1954039072,1701080677,1699553380,2037542765,1851870496,1919248225,544434464,1701997665,544826465,1953721961,1701604449,220474980,1381123338,540693071,1162692936,1498623565,1701978195,1919513969,1629516645,808984686]},{"sector":12,"length":512,"data":[758528120,1702060386,1634541668,1852401763,220474981,1381123338,540693071,1629515598,1818845558,1701601889,1954047264,1701080677,1701650532,2037542765,1935767328,1970234912,607020142,1380256269,978472786,1634620704,543517794,1663070068,1920233071,1092643951,1814048818,778399337,1158286628,1380930130,1146495034,541807433,1869440365,1629518194,1668246636,1919906913,1919705376,2036621669,1936615712,1819042164,607020133,1229457933,541934925,1948283753,1769239397,1696622446,1852142712,543450468,1869440365,774797682,1868833838,221144430,168633354,1330795077,1210071634,1296387401,1398362926,1935763488,1952801824,1702126437,1853169764,1768711538,1701601889,1397577760,1835363616,544830063,1629516897,1701995620,807433075,808464432,1747988528,1866867758,1869422706,1763730802,1919903342,1769234797,539782767,1701869940,1279608864,1163141200,1162695763,1952522317,1701344288,1836016416,1684955501,1869770784,779382893,1867778573,1852793632,1970170228,1953701989,1769239137,2032166766,544372079,1886220131,1919251573,1919950892,544437093,1163152965,168635986,220465677,538969866,538976288,1397577760,1769096224,544367990,544501614,1953721961,1701604449,168636004,220465677,1696605194,1852142712,543450468,1869440365,1746958706,1818521185,1629516645,1818845558,1701601889,168633390,1768843597,544044397,541150536,1702521203,1952805664,544175136,607013668,1850280461,1818326131]},{"sector":13,"length":512,"data":[543450476,540029505,1684955496,544367980,1651340654,606106213,168633390,1953721929,1701604449,2019893348,1852990836,1092643937,1746939954,1818521185,607023717,1096223245,1313427026,1411398215,1210082664,543713129,1869440333,1092647282,543253874,1965060969,1635148142,1650551913,221144428,168633354,1314013527,977751625,1701336096,808599840,1852394528,1635197029,1818304627,1684104562,1852121209,1701601889,168636004,1460276516,1229869633,540690254,1635151433,543451500,1634886000,1702126957,1734942834,1701998446,606091876,875956749,1766334539,1293969511,1919905125,1916870777,1763729765,1986076787,1634494817,778398818,168626701,1768444964,1919950963,1634887535,1936269421,1701344288,1869770784,1953654128,1718558841,1667845408,1869836146,1126200422,1869640303,1769234802,3042927,0,0,0,2099713,99857042,-1468399616,62586880,63635456,12058624,51428099,1048835634,1962934304,739674629,378194688,-87359443,1929401832,786074406,-16679040,-30531212,-1959919289,-1959918505,-1014300065,-1056251199,-390001949,-1194325242,-1278541823,-1291654238,-1950338132,-386217008,393412638,-2144413045,1946157439,1342057994,112641,-1278485710,-1291654230,-876596318,1381061456,992926347,1923089438,507194917,511156232,68561710,868387744,702930,-770969097,-2144465803,108331583,1532582649,-336018600,654296056,-990510908,1362916736,-1598924970,-164364493]},{"sector":14,"length":512,"data":[69110574,244002464,-2144428030,276103487,108462894,105351982,74709051,-768411509,-502611069,-1966634011,-1982428198,1594010390,-372549282,-990510757,-84380288,861361745,788433910,-1610342773,34507566,1979059104,1065365008,772437249,1996904251,-336360678,1979648785,1065365010,-1962117884,16679931,-8190604,-2095352576,-773715261,846591499,1098186507,964022795,-953223285,1604,-1959911189,-1039990204,38111534,-2026978677,-1037367740,105220398,17155630,-970062731,-970062843,-695533052,838861240,1499357147,-341789749,866235138,-338654272,1381104368,-471312554,-1956285442,2088775410,1618280449,67421742,108823342,775123968,771818694,-1962779509,1141059267,1049308678,-1959878652,782238222,1963015552,1435184656,1959803650,1426271769,1960000262,180847375,28894690,1608200704,-883336610,-1959856249,53347924,-1993472427,-970062252,-1276443643,48997043,-1070355533,-990454293,-96045696,1743279697,-1959300098,2088972018,779419656,-1959870413,782238750,-1610477941,37716014,-2092957324,-186512701,106203950,24939054,41214986,1499398064,28891274,1499384576,-1070357837,864072651,-990460992,-84511360,1465274961,-32184235,-745803125,963879603,24936494,1974186752,1413164592,1919579910,112651,1599986482,-883336610,31647826,1961691994,1149971992,784476934,772166793,772163073,-352172503,-339725352,1049308889,-1959878652,782238222,1946434944,180847369,-1582041630]},{"sector":15,"length":512,"data":[-1031019541,38011694,38111534,105155374,-1993424341,-970062267,-970063611,771752261,-351906679,-2048372072,-318023167,-1031068556,105130798,105265966,175380599,105261358,38142254,-970062357,772014150,-385461111,-15990933,-1959914380,53347909,-318044604,53347444,-801438138,-1192688778,283935488,-594868458,108330798,225766667,105286446,105120046,4638254,1166749188,1140928006,1962880518,1166749186,1149840898,1174285826,1157508609,2005476865,2005476868,1204233738,637534220,935879,724457472,-926875068,-2117563642,621019105,-1993933824,-1993996729,-1051195313,-930412856,67101057,654049317,-1993996407,1465254479,250841938,1526530024,-998023585,-30475760,-30539443,-1959919284,-1037367740,106203438,53350260,-1993473452,-1993473451,-1528232379,96874238,-23205628,-1645625293,240277246,-84079640,1583020683,-1598832629,-30479756,-30539451,-326958780,-1962469872,2005477084,2139694596,650720010,638341001,638472073,637947785,772296585,-1056553845,-930412856,67101057,654049317,-1993996407,1465254479,-401673333,1583348848,-99564413,38046510,38111022,38045998,105155374,105219886,105154862,21823022,21888558,1599985547,-380020386,-1959854817,-1959919036,-805108140,-276037837,69110574,244002464,777428994,1963016064,2005610012,1976974082,199985926,773027327,990279427,-1962510864,1978469371,180585221,-1017194014,-326412805,1393749123,-1983892654,1183447622]}]],[[{"sector":1,"length":512,"data":[-163149320,-1996190938,-1960379322,1317601868,-473428994,73174337,1912632808,-230258334,-1980475767,1552808030,6613002,1183407474,-262764050,-772383095,1590820462,776631036,-1609687297,1962934589,25487426,304021294,81312,1586181493,1960512504,1342057988,-161576191,74767115,22019630,28859226,-92372224,1208251392,-1946526070,-2134155803,125085691,-352130176,-2002275582,-957613474,-1960379818,-1960443273,-1960442753,1960512287,133574191,776958978,-1190770805,-503905280,-686045653,1177240690,-27911172,-30526350,-1959919289,-503905721,-686569981,-1017185288,280676235,65206016,13796294,-259261813,335312387,-8126850,1913091856,-251755553,-1481385354,-1514993941,-1498217749,-2016482311,37083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1488388096,-2147483648,128,32768,42450,0,3342336,128,-28160,-1845493760,134283263,-28160,-1845493760,65535,0,-16723968,136,0,-16728064,-63488,-230257668,-1946921334,1988816462,109522672,-2043763072,782664214,-1502736761,1882621486,-1500333146,782665406,-1499592961,1364205172]},{"sector":2,"length":512,"data":[922693202,-13720002,2013212215,2013212162,889138692,41221934,74776366,637603630,254715454,-270004479,786336512,-402194161,-4652826,-25263233,956856064,57932878,519851659,8435797,867879820,-1896467712,-1512915005,646524666,-1943099804,782657046,-1503129975,-896804722,-13392397,952025230,-1948545370,262534090,-1985139195,1162149958,-745605150,-141833589,-358222853,42869,-67372037,-67372037,-67372037,-67372037,10974698,-1960878848,703189454,494206030,16670339,-2143944402,377499302,771794562,-1502724607,1880522798,1709768870,-27360257,786527488,-1499578749,-1153993728,-1892768122,-1892809657,-1892810169,-1500333305,71798574,38244142,772247342,-1505884529,777542490,782663843,-1501423992,1847494958,914894502,-13719952,-1012490738,71797550,38767406,773294894,772036489,-1993470071,-1950154169,871467984,512438015,-1959878652,782238222,1963212672,1979648776,-335836346,1065365058,775714049,771901323,990267139,-1959759162,784466886,1912751931,1200303654,1191390726,785777410,1979873083,2005609988,1943026434,735087362,130428630,1979648772,-2080666878,-1411249469,292880139,21349934,96873984,1971924481,1435053570,-990459130,1468338048,1716999681,1716610640,1273499218,1727040257,16777021,-1107069440,-91488257,-360090,1979711743,-16637,1499880038,-963946394,1583339403,-2134575413,24741135,1716676182,248690447,-1962840344,-1957009678,-87335210]},{"sector":3,"length":512,"data":[1716606806,1716545106,-1601651117,1970525951,-2144406901,1962934652,80096882,-2090455548,1946158716,80096826,-1956237823,-1956248996,57028291,-1959918012,782238782,-1610477941,20807726,1714295925,1711429003,544526395,1426286126,-751081978,-947710860,1726079498,-1202166181,-617480191,1599691366,-142095522,1418421806,57028102,1714292309,772166793,-352057914,-1285855580,1711598498,1722528603,-339725480,-2134575405,23823631,-1101639174,-687890296,-225757325,142377774,858682624,512437952,-1959878652,782238222,1946304384,-1014808575,787800586,772166795,167869578,-1342016284,-1973854465,112856,-1285988661,-876596318,260097270,1442929029,1716545111,-1223727533,1273499355,-1947170047,-1956944133,-1957140769,-883007546,1466324582,1723872102,862376499,512438006,-1959878652,782238222,1946435456,-1956237782,1714291327,1711701763,-147102129,-1956248717,1065365239,772830465,109022054,1725367142,57919291,-2084074650,-874378557,-1278309530,-771004768,-617479564,1583767398,1448213195,-1946799273,512438014,-1959878652,195035662,772896246,1963016064,996552203,444008023,300675979,309722891,71270446,-74773387,1946222211,16745221,-1014816907,198238730,188839414,1716548863,1198903819,1714354059,410823,-352321536,777020971,38046566,784466790,38111590,784501606,105154406,784477030,105220454,17155630,-970062731,1483080709,33867310,28890763,1608200704,-1278518946,-1291654240]},{"sector":4,"length":512,"data":[-1950338143,-84874288,-2000791983,1943469984,871533356,512437952,-1959878652,782238222,1946304384,-1014808575,787800586,106204006,24939054,-1202102639,-617480191,-1285988661,-876596318,1382438394,-2000791722,-1948844128,-745838862,1131651763,24936494,1974186752,996552250,-2029058476,192020607,838861240,1717460955,1724603738,33351762,-318023066,1714299252,1711686795,1714340395,772166793,105251174,1177118254,869395202,1717460928,1372282202,71207726,244002464,-2144428030,175375421,-502610045,-1582081547,1717165547,1714340491,771900419,38111590,1149986350,-1037343226,1166632494,96873990,1170615809,1714290689,-351906679,-397252989,1516634506,712305931,784501606,105130854,1178297902,1947956998,694562316,1714292294,-352172543,1187393029,1714291712,-385461111,-15990962,1714296948,772162955,105120614,91548939,1174627886,-801413626,-1209465994,283935488,-594868458,1962894894,1961691910,-1956237809,1714292294,772162561,67126982,1166763566,23473670,1714292292,771912959,38112102,1149855278,1174285826,1157508609,2005476865,2005476868,-949606902,3143,1483079680,1143694894,-524196350,-1989794294,1483081287,182501734,126445094,1382438742,-1156648053,-738221890,1583307366,-99564413,21888558,21823022,1149986350,-1037343226,1418290734,772961286,39060326,1435067950,-1989792254,-2014771643,96874238,-25106172,1583333427,-883074458,-401714602,-1946485397,190733050]},{"sector":5,"length":512,"data":[1956688832,1174286055,1157508609,283935489,-594868458,74942758,176130342,650130278,206014822,1200186918,-1956237818,-1050278332,1713769184,1465255817,-1156648053,-738221890,-998023585,1714354704,771900555,38111078,1149855278,-1956237822,1714292292,772162951,105154918,21823022,21888558,1583335307,-796173722,-74978979,1149986350,-1956237822,57017940,-1946209328,512437999,-1959878652,1721762318,1065365078,773879041,41388902,1976974182,199985926,773158399,108462950,1978678118,201034502,-2096794131,-706606397,12803686,0,-16777216,255,-16777057,255,402706323,0,0,0,0,0,0,16776960,9633792,16776960,9633792,0,0,0,0,-1957299456,317490156,1365659750,1466324582,-1983892653,1183447622,-163149320,210462246,-61961882,-59846298,12812815,9405455,-402367347,-2112945974,-2023358279,-128022025,-401973875,-2112945990,1586036913,-536801290,-2112886575,1465254246,236912430,1029595040,-2062614527,-919404395,-930299506,283165030,-89681992,922707502,1730586105,872777574,771751936,-1510366362,-644997381,-61961370,-51785370,-1520015373,-781807513,-1519914031,1713344615,1714354776,-1510406521,-1553570010,52,520040187,20815890,-1958972160,-619972514,-30538636,1586168143,1960512502,1342057988,1600543489,1499881062,28858470,-92372224,1208251392,-1946526070]},{"sector":6,"length":512,"data":[-1278517787,-2146899033,57976827,-2013074560,-1075053986,-1956239622,-1960443265,1960512287,1065365036,776434946,105352038,182501734,1925655398,-1053071811,-30527374,1714291015,1711425419,1711988929,-67569661,-1223727421,-272537913,-406755824,-133995004,1724353382,1030144259,1114096,-1481383818,-1514993941,-1498217749,1438907385,-1336873845,-350165493,-1474239488,-1941801696,71711176,2122398581,1957085186,41844999,762685129,771756219,-216661745,-1071640667,571408652,-1479873856,-1014104056,-31138930,-356507121,42968,-661733325,1566097550,777869519,-1510396161,-227112602,-293697178,-1184495858,512,-61981850,-1956248458,1365703758,-1510132083,-1508950387,-230257818,1722547450,-1441732415,40208422,-1508426099,-297366682,-389978453,-2010732016,-1258814875,-82457209,359815526,-61986458,-22313969,1726075238,1727155713,-336703999,-1962986843,-1618333988,-823547815,-1482096386,1716545154,-1957271982,-423532813,1727105808,-1961827647,788476880,-1610342773,34507566,1065365152,185103620,-1957399041,777055227,1963016064,-1956237750,1714291271,1711687427,997377595,1724287846,1714340355,1912751931,-1956237778,1714292295,1711425283,1714345475,1979873083,-1956237819,996541047,1711502288,728158347,130428630,1979648772,-2080666878,-1646130493,326434571,21349934,96873984,-1989792255,1714291317,1711691145,1717200478,-857158824,-1103072255,1018800250,118365704,-1027662066,530903968,171870510]},{"sector":7,"length":512,"pattern":0,"data":[-1006188640,-945410816,-1040138746,-1073297504,-945750784,385925638,-905525343,-945705728,-67056634,1241958305,245914880,20572167,-1172438837,-1031577821,-253590769,184554145,856061376,1928005631,984464,738193445,82493904,989950113,-1962772798,1975520194,915090961,-24403958,24118926,24125070,378216683,119406960,-802432370,1880525094,-1094545919,-24403968,168725294,-53597280,-2092456717,-141820185,101092390,914826912,-1960402940,731908110,648344526,-1610072439,520140520,-2096117885,-987827993,-1996483018,1150029436,54839056,1478426880,10020878,1098186507,526023,-1591345065,723951624,648020998,-1609955837,782237741,-1196298333,-617395711,959328205,2008149790,16744728,772962208,-1309729141,-850787656,-31953,216531828,1600019712,1499078407,13326427,-1101586944,-1959878656,-1900941554,-218009570,12083108,-775476320,-773271064,-1930898968,534260675,3081926,1881049345,650350081,-1610217844,-1962929432,-1946152386,372688344,243042560,-1022344055,4843727,-1064558731,-1486970074,-1485593818,1520641600,280643750,652408576,648443043,-1502210424,650153155,-1180182877,-503906288,-1511677146,-417953754,-1512372827,637588099,648410531,-1510533495,-4855613,223911115,-1655640064,11098268,50160]},{"sector":8,"length":512,"data":[1313818367,538976340,0,0,385941505,201326592,1090526208,16777232,1095189760,538976288,111904,0,13568,16777472,269485568,8,1,0,0,0,2080374784,-2102754686,-2104313214,124,2080374784,-19464450,-17905922,124,0,-26476544,272137470,0,0,2084048896,272137470,0,0,943208448,284094190,56,0,2084048896,274005758,56,0,402653184,1588284,0,-256,-402653185,-1588285,-1,255,1715208192,1013334594,0,-256,-1715208193,-1013334595,-1,503316735,269486598,-2105376132,124,2080374784,2088927874,276566032,16,503316480,269491730,-252702704,224,1040187392,572669474,-319934942,192,268435456,-2109440878,2084864642,4242,0,-524288000,-521078544,192,0,941096960,947452024,24,268435456,278025272,945066512,16,1140850688,1145324612,1140868164,68,2113929216,1928524530,303174162,18,-2072510464,-2075643840,137382020,30852,0,0,-16843264,254,268435456,278025272,945066512,254,268435456,278025272,269488144,16,268435456,269488144,945066512,16,0,67637248,268961022,0,0,1075843072,270549246,0]},{"sector":9,"length":512,"data":[0,-2147483648,16679040,0,0,1109655552,2376447,0,0,940572672,16711292,0,0,-16908288,1063036,0,0,0,0,0,268435456,269488144,268439568,16,1212678144,18504,0,0,0,1157514308,1157514308,68,269484032,-2138008964,-1844313476,1052796,0,140833376,-1639178224,12,805306368,843597896,-2071690166,122,269484032,8208,0,0,134217728,538976272,270540832,8,536870912,134744080,268961800,32,0,945033216,273955070,0,0,269488128,269488382,0,0,0,268435456,2101264,0,0,254,0,0,0,805306368,48,0,67239936,1075843080,128,939524096,-1836940732,1149403794,56,268435456,269504560,269488144,124,2080374784,67240578,1075843080,254,2080374784,1006764674,-2113797630,124,67108864,1143215116,67436164,4,-33554432,-58687360,-2113797502,124,2080374784,-58687360,-2105376126,124,-33554432,134480386,269488144,16,2080374784,2084864642,-2105376126,124,2080374784,-2105376126,33686142,124,0,269484032,268435456,16,0,269484032,268435456,2101264]},{"sector":10,"length":512,"data":[0,537921540,135274560,4,0,16646144,65024,0,0,135274560,537921540,64,2080374784,201491074,268439568,16,2080374784,-1430617470,-2139054934,124,939524096,-2105376188,-2105376002,130,-67108864,-58555774,-2105376126,252,2080374784,-2139062142,-2105376640,124,-134217728,-2105376124,-2071821694,248,-33554432,-58687360,-2139062144,254,-33554432,-58687360,-2139062144,128,2080374784,-1635745662,-2105376126,126,-2113929216,-25001342,-2105376126,130,2080374784,269488144,269488144,124,1040187392,67372036,-2080111612,120,-2080374784,-1063219064,-2071424864,130,-2147483648,-2139062144,-2139062144,254,-2113929216,-1835881786,-2105376126,130,-2113929216,-1970101566,-2105376122,130,2080374784,-2105376126,-2105376126,124,-67108864,-58555774,-2139062144,128,2080374784,-2105376126,-1835887998,264316,-67108864,-58555774,-2105376124,130,2080374784,811630722,-2105409012,124,-33554432,269488144,269488144,16,-2113929216,-2105376126,-2105376126,124,-2113929216,-2105376126,675578498,16,-2113929216,-2105376126,-1433234798,68,-2113929216,271074434,-2105392088,130,-2113929216,675578498,269488144,16,-33554432,268960770,-2139078624,254,939524096,538976288,538976288,56]},{"sector":11,"length":512,"data":[0,1082130432,67637280,2,939524096,134744072,134744072,56,1143476224,130,0,0,0,0,0,16646144,538968064,4128,0,0,0,74973184,-2071692284,126,-2147483648,-1027833728,-2105376126,252,0,-2105802752,-2105507712,124,33554432,-2038824446,-2105376126,126,0,-2105802752,-2139029886,124,469762048,553132064,538976288,32,0,-2105671680,-2038267262,2080506490,-2147483648,-1027833728,-2105376126,130,268435456,275775504,269488144,124,134217728,137887752,134744072,1879574536,-2147483648,-1736015744,-2071424800,130,1610612736,538976288,538976288,28,0,-1830027264,-1835887982,146,0,-1027866624,-2105376126,130,0,-2105802752,-2105376126,124,0,-1027866624,-1031634302,-2139062084,0,-2105671680,-2038267262,33686138,0,-1027866624,-2139062144,128,0,-2139226112,33717376,252,0,553394208,538976288,28,0,-2105409536,-2038267262,122,0,-2105409536,675578498,16,0,-2105409536,-1835887998,108,0,1149370368,1143476264,130,0,-2105409536,-2038267262,2080506490,0,83755008,1075843080,254,201326592,1611665424,269488144,12]},{"sector":12,"length":512,"data":[269484032,269488144,269488144,269488144,1610612736,202379280,269488144,96,1644167168,35986,0,0,0,672137216,-2105376188,254,2080374784,-2139062142,-2105376640,1879576700,1140850688,-2105409468,-2038267262,122,268959744,-2105802720,-2139029886,126,672137216,41680964,-2105377278,126,1140850688,41680964,-2105377278,126,270532608,41680904,-2105377278,126,605552640,41680920,-2105377278,126,0,-2105802752,-2105507712,1879576700,672137216,-2105802684,-2139029886,126,1140850688,-2105802684,-2139029886,126,270532608,-2105802744,-2139029886,126,1207959552,275775560,269488144,124,672137216,275775556,269488144,124,541065216,275775504,269488144,124,4473856,-2105392072,-2105344382,130,1145321472,-2105392072,-2105344382,130,3148800,-2139062018,-2139062020,254,0,-1838415872,-1869578734,110,1040187392,-24606648,-2004318072,142,672137216,-2105802684,-2105376126,124,1140850688,-2105802684,-2105376126,124,270532608,-2105802744,-2105376126,124,672137216,-2105409468,-2038267262,122,270532608,-2105409528,-2038267262,122,1140850688,-2105409468,-2038267262,2080506490,4473856,-2105376132,-2105376126,124,4473856,-2105376126,-2105376126,124,268435456,-2138932208,276595328,16]},{"sector":13,"length":512,"data":[939524096,-264224700,1916813376,204,-2113929216,271074434,276566140,16,-134217728,-2131196796,-2004312952,132,201326592,269488146,269488252,1620054032,268959744,41680928,-2105377278,126,268959744,275775520,269488144,124,268959744,-2105802720,-2105376126,124,268959744,-2105409504,-2038267262,122,-1738276864,-1027866624,-2105376126,130,9987072,-1834827134,-2105375094,130,70778880,3949628,124,0,1144520704,3687492,124,0,268435456,269484048,-2105376672,124,0,-67108864,-2139062144,0,0,-67108864,67372036,0,-2139095040,546343044,70811712,3936264,-2139095040,277382272,344736800,263228,268435456,269484048,269488144,16,0,1210318848,2377872,0,0,1217396736,9455652,0,289673472,289673540,289673540,289673540,1437226308,1437226410,1437226410,1437226410,-579347030,-579347081,-579347081,-579347081,134744183,134744072,134744072,134744072,134744072,134744072,134744312,134744072,134744072,150472712,134744312,134744072,606348296,606348324,606348516,606348324,36,0,606348540,606348324,36,150470656,134744312,134744072,606348296,82060324,606348516,606348324,606348324,606348324,606348324,606348324,36,83623936,606348516,606348324]},{"sector":14,"length":512,"pattern":-1,"data":[606348324,82060324,252,0,606348288,606348324,252,0,134744064,150472712,248,0,0,0,134744312,134744072,134744072,134744072,15,0,134744064,134744072,255,0,0,0,134744319,134744072,134744072,134744072,134744079,134744072,8,0,255,0,134744064,134744072,134744319,134744072,134744072,135202824,134744079,134744072,606348296,606348324,606348327,606348324,606348324,539436068,63,0,0,540999680,606348327,606348324,606348324,15148068,255,0,0,16711680,606348519,606348324,606348324,539436068,606348327,606348324,36,16711680,255,0,606348288,15148068,606348519,606348324,134744100,16713736,255,0,606348288,606348324,255,0,0,16711680,134744319,134744072,8,0,606348543,606348324,606348324,606348324,63,0,134744064,135202824,15,0,0,135200768,134744079,134744072,8,0,606348351,606348324,606348324,606348324,606348543,606348324,134744100,150931464,134744319,134744072,134744072,134744072,248,0,0,0,134744079,134744072,-248]},{"sector":15,"length":512,"data":[255,0,-1,-1,-252645121,-252645136,-252645136,-252645136,252645360,252645135,252645135,252645135,-241,-1,0,0,0,-2005663744,-2004318072,118,939524096,-1736145852,-2105376124,8421532,-33554432,-2139062144,-2139062144,128,0,1157496832,1145324612,66,-33554432,135274560,-2143281136,254,0,-2005008384,-2071690108,120,0,-2071724032,-997948284,-2139062086,0,-1870790656,269488144,12,268435456,-1835888004,2089980562,16,939524096,-25001404,1149403778,56,939524096,-2105376188,675578498,238,2080374784,2014322752,-2105376124,124,0,-1838415872,7115410,0,0,-1837363184,-1835887982,269488252,0,-2105802752,-2105509760,124,0,-2105376132,-2105376126,130,0,65024,-33554178,0,268435456,285085712,-33550320,0,0,67637280,2101256,124,0,1075843080,528416,124,201326592,269488658,269488144,269488144,269488144,269488144,-1869606896,96,0,1052672,269484286,0,0,-1738276864,9987072,0,-2005925888,7374984,0,0,0,0,12336,0,0,0,12288,0,135135232,134744072,405325832,8]}],[{"sector":1,"length":512,"data":[1152909312,1145324612,0,0,-1872756736,-264232944,0,0,0,2088532992,2088533116,0,0,0,0,0,1761614848,16777248,1095189760,538976288,188704,0,1072384,16777472,269485568,8,1,0,0,0,2080374784,-2102754686,-2104313214,124,2080374784,-19464450,-17905922,124,0,-26476544,272137470,0,0,2084048896,272137470,0,0,943208448,284094190,56,0,2084048896,274005758,56,0,402653184,1588284,0,-256,-402653185,-1588285,-1,255,1715208192,1013334594,0,-256,-1715208193,-1013334595,-1,503316735,269486598,-2105376132,124,2080374784,2088927874,276566032,16,503316480,269491730,-252702704,224,1040187392,572669474,-319934942,192,268435456,-2109440878,2084864642,4242,0,-524288000,-521078544,192,0,941096960,947452024,24,268435456,278025272,945066512,16,1140850688,1145324612,1140868164,68,2113929216,1928524530,303174162,18,-2072510464,-2075643840,137382020,30852,0,0,-16843264,254,268435456,278025272,945066512,254,268435456,278025272,269488144,16,268435456,269488144]},{"sector":2,"length":512,"data":[945066512,16,0,67637248,268961022,0,0,1075843072,270549246,0,0,-2147483648,16679040,0,0,1109655552,2376447,0,0,940572672,16711292,0,0,-16908288,1063036,0,0,0,0,0,268435456,269488144,268439568,16,1212678144,18504,0,0,0,1157514308,1157514308,68,269484032,-2138008964,-1844313476,1052796,0,140833376,-1639178224,12,805306368,843597896,-2071690166,122,269484032,8208,0,0,134217728,538976272,270540832,8,536870912,134744080,268961800,32,0,945033216,273955070,0,0,269488128,269488382,0,0,0,268435456,2101264,0,0,254,0,0,0,805306368,48,0,67239936,1075843080,128,939524096,-1836940732,1149403794,56,268435456,269504560,269488144,124,2080374784,67240578,1075843080,254,2080374784,1006764674,-2113797630,124,67108864,1143215116,67436164,4,-33554432,-58687360,-2113797502,124,2080374784,-58687360,-2105376126,124,-33554432,134480386,269488144,16,2080374784,2084864642,-2105376126,124,2080374784,-2105376126]},{"sector":3,"length":512,"data":[33686142,124,0,269484032,268435456,16,0,269484032,268435456,2101264,0,537921540,135274560,4,0,16646144,65024,0,0,135274560,537921540,64,2080374784,201491074,268439568,16,2080374784,-1430617470,-2139054934,124,939524096,-2105376188,-2105376002,130,-67108864,-58555774,-2105376126,252,2080374784,-2139062142,-2105376640,124,-134217728,-2105376124,-2071821694,248,-33554432,-58687360,-2139062144,254,-33554432,-58687360,-2139062144,128,2080374784,-1635745662,-2105376126,126,-2113929216,-25001342,-2105376126,130,2080374784,269488144,269488144,124,1040187392,67372036,-2080111612,120,-2080374784,-1063219064,-2071424864,130,-2147483648,-2139062144,-2139062144,254,-2113929216,-1835881786,-2105376126,130,-2113929216,-1970101566,-2105376122,130,2080374784,-2105376126,-2105376126,124,-67108864,-58555774,-2139062144,128,2080374784,-2105376126,-1835887998,264316,-67108864,-58555774,-2105376124,130,2080374784,811630722,-2105409012,124,-33554432,269488144,269488144,16,-2113929216,-2105376126,-2105376126,124,-2113929216,-2105376126,675578498,16,-2113929216,-2105376126,-1433234798,68,-2113929216,271074434,-2105392088,130,-2113929216,675578498]},{"sector":4,"length":512,"data":[269488144,16,-33554432,268960770,-2139078624,254,939524096,538976288,538976288,56,0,1082130432,67637280,2,939524096,134744072,134744072,56,1143476224,130,0,0,0,0,0,16646144,538968064,4128,0,0,0,74973184,-2071692284,126,-2147483648,-1027833728,-2105376126,252,0,-2105802752,-2105507712,124,33554432,-2038824446,-2105376126,126,0,-2105802752,-2139029886,124,469762048,553132064,538976288,32,0,-2105671680,-2038267262,2080506490,-2147483648,-1027833728,-2105376126,130,268435456,275775504,269488144,124,134217728,137887752,134744072,1879574536,-2147483648,-1736015744,-2071424800,130,1610612736,538976288,538976288,28,0,-1830027264,-1835887982,146,0,-1027866624,-2105376126,130,0,-2105802752,-2105376126,124,0,-1027866624,-1031634302,-2139062084,0,-2105671680,-2038267262,33686138,0,-1027866624,-2139062144,128,0,-2139226112,33717376,252,0,553394208,538976288,28,0,-2105409536,-2038267262,122,0,-2105409536,675578498,16,0,-2105409536,-1835887998,108,0,1149370368,1143476264,130,0,-2105409536]},{"sector":5,"length":512,"data":[-2038267262,2080506490,0,83755008,1075843080,254,201326592,1611665424,269488144,12,269484032,269488144,269488144,269488144,1610612736,202379280,269488144,96,1644167168,35986,0,0,0,672137216,-2105376188,254,939524096,-2105376188,-2105376002,130,-67108864,-58555774,-2105376126,252,-33554432,-2139062144,-2139062144,128,268435456,1145317416,-2105376188,254,-33554432,-58687360,-2139062144,254,-33554432,268960770,-2139078624,254,-2113929216,-25001342,-2105376126,130,939524096,-25001404,1149403778,56,2080374784,269488144,269488144,124,-2080374784,-1063219064,-2071424864,130,268435456,1145317416,-2105376188,130,-2113929216,-1835881786,-2105376126,130,-2113929216,-1970101566,-2105376122,130,-33554432,2080374784,0,254,2080374784,-2105376126,-2105376126,124,-33554432,-2105376126,-2105376126,130,-67108864,-58555774,-2139062144,128,-33554432,135274560,-2143281136,254,-33554432,269488144,269488144,16,-2113929216,675562564,269488144,16,268435456,-1835888004,2089980562,16,-2113929216,271074434,-2105392088,130,268435456,1414812818,269498452,16,939524096,-2105376188,675578498,238,0,-2005663744,-2004318072,118,939524096,-1736145852]},{"sector":6,"length":512,"data":[-2105376124,8421532,0,-1572732928,134747154,135533588,2080374784,2014322752,-2105376124,124,0,-2105802752,-2105509760,124,-67108864,1075843080,-2139062144,1835644,0,1119617024,1111638594,33686082,1006632960,304235074,-2004581874,112,0,271581184,269488144,28,0,1212416000,1145598032,66,-2147483648,270540864,1145317392,130,0,-2071724032,-997948284,-2139062086,0,1115815936,675562050,16,-67108864,-2139078624,-2139062152,787068,0,-2105802752,-2105376126,124,0,1157496832,1145324612,66,0,1111228416,-1031634302,-2139062084,0,-2005008384,-2071690108,120,0,-2105802752,1082163328,787004,0,-1870790656,269488144,12,0,-2105409536,-2105376126,124,0,-1837363184,-1835887982,269488252,0,-1539178496,269494308,-2075506648,0,-1844445184,-1835887982,269488252,289673472,289673540,289673540,289673540,1437226308,1437226410,1437226410,1437226410,-579347030,-579347081,-579347081,-579347081,134744183,134744072,134744072,134744072,134744072,134744072,134744312,134744072,134744072,150472712,134744312,134744072,606348296,606348324,606348516,606348324,36,0,606348540,606348324,36,150470656,134744312,134744072,606348296,82060324]},{"sector":7,"length":512,"pattern":134744072,"data":[606348516,606348324,606348324,606348324,606348324,606348324,36,83623936,606348516,606348324,606348324,82060324,252,0,606348288,606348324,252,0,134744064,150472712,248,0,0,0,134744312,134744072,134744072,134744072,15,0,134744064,134744072,255,0,0,0,134744319,134744072,134744072,134744072,134744079,134744072,8,0,255,0,134744064,134744072,134744319,134744072,134744072,135202824,134744079,134744072,606348296,606348324,606348327,606348324,606348324,539436068,63,0,0,540999680,606348327,606348324,606348324,15148068,255,0,0,16711680,606348519,606348324,606348324,539436068,606348327,606348324,36,16711680,255,0,606348288,15148068,606348519,606348324,134744100,16713736,255,0,606348288,606348324,255,0,0,16711680,134744319,134744072,8,0,606348543,606348324,606348324,606348324,63,0,134744064,135202824,15,0,0,135200768,134744079,134744072,8,0,606348351,606348324,606348324,606348324,606348543,606348324,134744100,150931464,134744319]},{"sector":8,"length":512,"pattern":0,"data":[248,0,0,0,134744079,134744072,-248,-1,-1,-1,255,0,-1,-1,-252645121,-252645136,-252645136,-252645136,252645360,252645135,252645135,252645135,-241,-1,0,0,0,-2109472768,-1835887998,108,269484032,-2005663728,-2004318072,118,269484032,-2105802736,-2105509760,124,269484032,1119617040,1111638594,33686082,0,271581388,269488144,28,269484032,271581200,269488144,28,269484032,-2105802736,-2105376126,124,269484032,-2105409520,-2105376126,124,0,-2105409338,-2105376126,124,269484032,-2109472752,-1835887998,108,947945472,-2105376188,-2105376002,130,2122350592,2084585536,1077952576,126,1115717632,2118271554,1111638594,66,2088796160,269488144,269488144,124,8421376,1145324674,269488168,16,1015054336,1111638594,1111638594,60,947945472,-2105376188,675578498,198,268435456,285085712,-33550320,0,0,33818640,1050628,62,0,537921540,264208,62,4473856,269488252,269488144,124,4473856,1145324674,269488168,16,0,1052672,269484286,0,0,-1738276864,9987072,0,-2005925888,7374984]},{"sector":9,"length":512,"data":[12336,0,0,0,12288,0,135135232,134744072,405325832,8,1152909312,1145324612,0,0,-1872756736,-264232944,0,0,0,2088532992,2088533116,0,0,0,0,0,-1862263808,16777264,1095189760,538976288,217632,0,2131200,16777472,269485568,8,1,0,0,0,2080374784,-2102754686,-2104313214,124,2080374784,-19464450,-17905922,124,0,-26476544,272137470,0,0,2084048896,272137470,0,0,943208448,284094190,56,0,2084048896,274005758,56,0,402653184,1588284,0,-256,-402653185,-1588285,-1,255,1715208192,1013334594,0,-256,-1715208193,-1013334595,-1,503316735,269486598,-2105376132,124,2080374784,2088927874,276566032,16,503316480,269491730,-252702704,224,1040187392,572669474,-319934942,192,268435456,-2109440878,2084864642,4242,0,-524288000,-521078544,192,0,941096960,947452024,24,268435456,278025272,945066512,16,1140850688,1145324612,1140868164,68,2113929216,1928524530,303174162,18,-2072510464,-2075643840,137382020,30852,0,0,-16843264,254]},{"sector":10,"length":512,"data":[268435456,278025272,945066512,254,268435456,278025272,269488144,16,268435456,269488144,945066512,16,0,67637248,268961022,0,0,1075843072,270549246,0,0,-2147483648,16679040,0,0,1109655552,2376447,0,0,940572672,16711292,0,0,-16908288,1063036,0,0,0,0,0,268435456,269488144,268439568,16,1212678144,18504,0,0,0,1157514308,1157514308,68,269484032,-2138008964,-1844313476,1052796,0,140833376,-1639178224,12,805306368,843597896,-2071690166,122,269484032,8208,0,0,134217728,538976272,270540832,8,536870912,134744080,268961800,32,0,945033216,273955070,0,0,269488128,269488382,0,0,0,268435456,2101264,0,0,254,0,0,0,805306368,48,0,67239936,1075843080,128,939524096,-1836940732,1149403794,56,268435456,269504560,269488144,124,2080374784,67240578,1075843080,254,2080374784,1006764674,-2113797630,124,67108864,1143215116,67436164,4,-33554432,-58687360,-2113797502,124,2080374784,-58687360,-2105376126,124]},{"sector":11,"length":512,"data":[-33554432,134480386,269488144,16,2080374784,2084864642,-2105376126,124,2080374784,-2105376126,33686142,124,0,269484032,268435456,16,0,269484032,268435456,2101264,0,537921540,135274560,4,0,16646144,65024,0,0,135274560,537921540,64,2080374784,201491074,268439568,16,2080374784,-1430617470,-2139054934,124,939524096,-2105376188,-2105376002,130,-67108864,-58555774,-2105376126,252,2080374784,-2139062142,-2105376640,124,-134217728,-2105376124,-2071821694,248,-33554432,-58687360,-2139062144,254,-33554432,-58687360,-2139062144,128,2080374784,-1635745662,-2105376126,126,-2113929216,-25001342,-2105376126,130,2080374784,269488144,269488144,124,1040187392,67372036,-2080111612,120,-2080374784,-1063219064,-2071424864,130,-2147483648,-2139062144,-2139062144,254,-2113929216,-1835881786,-2105376126,130,-2113929216,-1970101566,-2105376122,130,2080374784,-2105376126,-2105376126,124,-67108864,-58555774,-2139062144,128,2080374784,-2105376126,-1835887998,264316,-67108864,-58555774,-2105376124,130,2080374784,811630722,-2105409012,124,-33554432,269488144,269488144,16,-2113929216,-2105376126,-2105376126,124,-2113929216,-2105376126,675578498,16]},{"sector":12,"length":512,"data":[-2113929216,-2105376126,-1433234798,68,-2113929216,271074434,-2105392088,130,-2113929216,675578498,269488144,16,-33554432,268960770,-2139078624,254,939524096,538976288,538976288,56,0,1082130432,67637280,2,939524096,134744072,134744072,56,1143476224,130,0,0,0,0,0,16646144,538968064,4128,0,0,0,74973184,-2071692284,126,-2147483648,-1027833728,-2105376126,252,0,-2105802752,-2105507712,124,33554432,-2038824446,-2105376126,126,0,-2105802752,-2139029886,124,469762048,553132064,538976288,32,0,-2105671680,-2038267262,2080506490,-2147483648,-1027833728,-2105376126,130,268435456,275775504,269488144,124,134217728,137887752,134744072,1879574536,-2147483648,-1736015744,-2071424800,130,1610612736,538976288,538976288,28,0,-1830027264,-1835887982,146,0,-1027866624,-2105376126,130,0,-2105802752,-2105376126,124,0,-1027866624,-1031634302,-2139062084,0,-2105671680,-2038267262,33686138,0,-1027866624,-2139062144,128,0,-2139226112,33717376,252,0,553394208,538976288,28,0,-2105409536,-2038267262,122,0,-2105409536,675578498,16]},{"sector":13,"length":512,"data":[0,-2105409536,-1835887998,108,0,1149370368,1143476264,130,0,-2105409536,-2038267262,2080506490,0,83755008,1075843080,254,201326592,1611665424,269488144,12,269484032,269488144,269488144,269488144,1610612736,202379280,269488144,96,1644167168,35986,0,0,0,672137216,-2105376188,254,2080374784,-2139062142,-2105376640,1879576700,1140850688,-2105409468,-2038267262,122,268959744,-2105802720,-2139029886,126,672137216,41680964,-2105377278,126,1140850688,41680964,-2105377278,126,270532608,41680904,-2105377278,126,605552640,41680920,-2105377278,126,0,-2105802752,-2105507712,1879576700,672137216,-2105802684,-2139029886,126,1140850688,-2105802684,-2139029886,126,270532608,-2105802744,-2139029886,126,1207959552,275775560,269488144,124,672137216,275775556,269488144,124,541065216,275775504,269488144,124,4473856,-2105392072,-2105344382,130,1145321472,-2105392072,-2105344382,130,3148800,-2139062018,-2139062020,254,0,-1838415872,-1869578734,110,1040187392,-24606648,-2004318072,142,672137216,-2105802684,-2105376126,124,1140850688,-2105802684,-2105376126,124,270532608,-2105802744,-2105376126,124,672137216,-2105409468,-2038267262,122]},{"sector":14,"length":512,"data":[270532608,-2105409528,-2038267262,122,1140850688,-2105409468,-2038267262,2080506490,4473856,-2105376132,-2105376126,124,4473856,-2105376126,-2105376126,124,0,-2038693888,-1029533046,124,939524096,-264224700,1916813376,204,2080374784,-1836415358,-2101173614,124,0,810058752,8669232,0,201326592,269488146,269488252,1620054032,268959744,41680928,-2105377278,126,268959744,275775520,269488144,124,268959744,-2105802720,-2105376126,124,268959744,-2105409504,-2038267262,122,-1738276864,-1027866624,-2105376126,130,9987072,-1834827134,-2105375094,130,70778880,3949628,124,0,1144520704,3687492,124,0,268435456,269484048,-2105376672,124,2080374784,-1297436030,8159914,0,0,-67108864,67372036,0,-2139095040,546343044,70811712,3936264,-2139095040,277382272,344736800,263228,268435456,269484048,269488144,16,0,1210318848,2377872,0,0,1217396736,9455652,0,289673472,289673540,289673540,289673540,1437226308,1437226410,1437226410,1437226410,-579347030,-579347081,-579347081,-579347081,134744183,134744072,134744072,134744072,134744072,134744072,134744312,134744072,6297608,-2105392072,-2105344382,130,4470784,-2105392072,-2105344382,130]},{"sector":15,"length":512,"data":[798720,-2105392072,-2105344382,130,2080374784,-1566401918,8159898,0,606348288,82060324,606348516,606348324,606348324,606348324,606348324,606348324,36,83623936,606348516,606348324,606348324,82060324,252,0,268435456,-2138932208,276595328,16,-2113929216,271074434,276566140,16,0,0,134744312,134744072,134744072,134744072,15,0,134744064,134744072,255,0,0,0,134744319,134744072,134744072,134744072,134744079,134744072,8,0,255,0,134744064,134744072,134744319,134744072,1278345224,41680896,-2105377278,126,9987072,-2105392072,-2105344382,130,606348288,539436068,63,0,0,540999680,606348327,606348324,606348324,15148068,255,0,0,16711680,606348519,606348324,606348324,539436068,606348327,606348324,36,16711680,255,0,606348288,15148068,606348519,606348324,36,-2072476672,2021950596,132,671088640,2080647184,-2105376126,124,2013265920,-230538684,1145193026,120,4470784,-2139062018,-2139062020,254,4473856,-2139062018,-2139062020,254,798720,-2139062018,-2139062020,254,0,275775488,269488144,124,3148800,269488252,269488144,124]}]],[[{"sector":1,"length":512,"data":[4470784,269488252,269488144,124,4473856,269488252,269488144,124,134744064,134744072,248,0,0,0,134744079,134744072,-248,-1,-1,-1,255,0,-1,-1,269484287,1052688,269488128,4112,1597440,269488252,269488144,124,-256,-1,0,0,3148800,-2105376132,-2105376126,124,939524096,-1736145852,-2105376124,8421532,4470784,-2105376132,-2105376126,124,1597440,-2105376132,-2105376126,124,-1738276864,-2105802752,-2105376126,124,9987072,-2105376132,-2105376126,124,0,-2071724032,-997948284,-2139062086,-2147483648,-1027833728,-2105376126,-2139062020,-2147483648,-2105344896,-2130935166,128,3148800,-2105376126,-2105376126,124,4470784,-2105376126,-2105376126,124,1597440,-2105376126,-2105376126,124,268959744,-2105409504,-2038267262,2080506490,3148800,675578498,269488144,16,16711680,0,0,0,134479872,8208,0,0,0,0,254,0,268435456,285085712,-33550320,0,0,0,0,-16711936,283115520,149164640,-1975115248,131614,2113929216,1928524530,303174162,18,-2072510464,-2075643840,137382020,30852,0,1052672,269484286,0]},{"sector":2,"length":512,"data":[0,0,0,7342096,-2005925888,7374984,0,0,1145307136,0,0,0,0,0,12288,0,1612709888,1881153568,0,0,283115520,-535818144,0,0,-1872756736,-264232944,0,0,0,2088532992,2088533116,0,0,0,0,0,-1191175168,16777280,1095189760,538976288,218144,0,3190016,16777472,269485568,8,1,0,0,0,2080374784,-2102754686,-2104313214,124,2080374784,-19464450,-17905922,124,0,-26476544,272137470,0,0,2084048896,272137470,0,0,943208448,284094190,56,0,2084048896,274005758,56,0,402653184,1588284,0,-256,-402653185,-1588285,-1,255,1715208192,1013334594,0,-256,-1715208193,-1013334595,-1,503316735,269486598,-2105376132,124,2080374784,2088927874,276566032,16,503316480,269491730,-252702704,224,1040187392,572669474,-319934942,192,268435456,-2109440878,2084864642,4242,0,-524288000,-521078544,192,0,941096960,947452024,24,268435456,278025272,945066512,16,1140850688,1145324612,1140868164,68,2113929216,1928524530]},{"sector":3,"length":512,"data":[303174162,18,-2072510464,-2075643840,137382020,30852,0,0,-16843264,254,268435456,278025272,945066512,254,268435456,278025272,269488144,16,268435456,269488144,945066512,16,0,67637248,268961022,0,0,1075843072,270549246,0,0,-2147483648,16679040,0,0,1109655552,2376447,0,0,940572672,16711292,0,0,-16908288,1063036,0,0,0,0,0,268435456,269488144,268439568,16,1212678144,18504,0,0,0,1157514308,1157514308,68,269484032,-2138008964,-1844313476,1052796,0,140833376,-1639178224,12,805306368,843597896,-2071690166,122,269484032,8208,0,0,134217728,538976272,270540832,8,536870912,134744080,268961800,32,0,945033216,273955070,0,0,269488128,269488382,0,0,0,268435456,2101264,0,0,254,0,0,0,805306368,48,0,67239936,1075843080,128,939524096,-1836940732,1149403794,56,268435456,269504560,269488144,124,2080374784,67240578,1075843080,254,2080374784,1006764674,-2113797630,124,67108864,1143215116]},{"sector":4,"length":512,"data":[67436164,4,-33554432,-58687360,-2113797502,124,2080374784,-58687360,-2105376126,124,-33554432,134480386,269488144,16,2080374784,2084864642,-2105376126,124,2080374784,-2105376126,33686142,124,0,269484032,268435456,16,0,269484032,268435456,2101264,0,537921540,135274560,4,0,16646144,65024,0,0,135274560,537921540,64,2080374784,201491074,268439568,16,2080374784,-1430617470,-2139054934,124,939524096,-2105376188,-2105376002,130,-67108864,-58555774,-2105376126,252,2080374784,-2139062142,-2105376640,124,-134217728,-2105376124,-2071821694,248,-33554432,-58687360,-2139062144,254,-33554432,-58687360,-2139062144,128,2080374784,-1635745662,-2105376126,126,-2113929216,-25001342,-2105376126,130,2080374784,269488144,269488144,124,1040187392,67372036,-2080111612,120,-2080374784,-1063219064,-2071424864,130,-2147483648,-2139062144,-2139062144,254,-2113929216,-1835881786,-2105376126,130,-2113929216,-1970101566,-2105376122,130,2080374784,-2105376126,-2105376126,124,-67108864,-58555774,-2139062144,128,2080374784,-2105376126,-1835887998,264316,-67108864,-58555774,-2105376124,130,2080374784,811630722,-2105409012,124,-33554432,269488144]},{"sector":5,"length":512,"data":[269488144,16,-2113929216,-2105376126,-2105376126,124,-2113929216,-2105376126,675578498,16,-2113929216,-2105376126,-1433234798,68,-2113929216,271074434,-2105392088,130,-2113929216,675578498,269488144,16,-33554432,268960770,-2139078624,254,939524096,538976288,538976288,56,0,1082130432,67637280,2,939524096,134744072,134744072,56,1143476224,130,0,0,0,0,0,16646144,538968064,4128,0,0,0,74973184,-2071692284,126,-2147483648,-1027833728,-2105376126,252,0,-2105802752,-2105507712,124,33554432,-2038824446,-2105376126,126,0,-2105802752,-2139029886,124,469762048,553132064,538976288,32,0,-2105671680,-2038267262,2080506490,-2147483648,-1027833728,-2105376126,130,268435456,275775504,269488144,124,134217728,137887752,134744072,1879574536,-2147483648,-1736015744,-2071424800,130,1610612736,538976288,538976288,28,0,-1830027264,-1835887982,146,0,-1027866624,-2105376126,130,0,-2105802752,-2105376126,124,0,-1027866624,-1031634302,-2139062084,0,-2105671680,-2038267262,33686138,0,-1027866624,-2139062144,128,0,-2139226112,33717376,252,0,553394208]},{"sector":6,"length":512,"data":[538976288,28,0,-2105409536,-2038267262,122,0,-2105409536,675578498,16,0,-2105409536,-1835887998,108,0,1149370368,1143476264,130,0,-2105409536,-2038267262,2080506490,0,83755008,1075843080,254,201326592,1611665424,269488144,12,269484032,269488144,269488144,269488144,1610612736,202379280,269488144,96,1644167168,35986,0,0,0,672137216,-2105376188,254,2080374784,-2139062142,-2105376640,1879576700,1140850688,-2105409468,-2038267262,122,268959744,-2105802720,-2139029886,126,672137216,41680964,-2105377278,126,1140850688,41680964,-2105377278,126,1211105280,-2105409488,-2038267262,122,268959744,-2105802720,-2105507712,124,0,-2105802752,-2105507712,1879576700,1610612736,540026912,539009120,28,1140850688,-2105802684,-2139029886,126,4465152,-2105376132,-2105376126,124,1143078912,-2105802616,-2105376126,124,672137216,275775556,269488144,124,3148800,134480638,-2143281136,254,4473856,-2105392072,-2105344382,130,3148800,-2139061636,-2105507712,124,3148800,-2139062018,-2139062020,254,3148800,-2139062144,-2139062144,254,3148800,538976352,538976288,28,672137216,-2105802684,-2105376126,124,1140850688,-2105802684]},{"sector":7,"length":512,"pattern":134744072,"data":[-2105376126,124,-2013265920,-2138011512,-2139062144,254,1644167168,539238946,538976288,28,3148800,1619034748,-2105406416,124,268959744,-2139226080,33717376,252,4473856,-2105376132,-2105376126,124,4473856,-2105376126,-2105376126,124,3687424,269488382,269488144,16,33554432,552870434,538976288,28,1073741824,1080053824,1077952704,126,0,810058752,8669232,0,675545088,-2105802736,-2105507712,124,268959744,41680928,-2105377278,126,268959744,275775520,269488144,124,268959744,-2105802720,-2105376126,124,268959744,-2105409504,-2038267262,122,939524096,-2105376188,-2105376002,235932802,0,41680896,-2105377278,471863422,3687424,134480638,-2143281136,254,675545088,83755024,1075843080,254,-33554432,-58687360,-2139062144,471863550,0,-2105802752,-2139029886,471863422,0,0,0,0,268959744,83755040,1075843080,254,3687424,-2139061636,-2105507712,124,0,-2139226112,33717376,1879576828,0,1210318848,2377872,0,0,1217396736,9455652,0,289673472,289673540,289673540,289673540,1437226308,1437226410,1437226410,1437226410,-579347030,-579347081,-579347081,-579347081,134744183]},{"sector":8,"length":512,"data":[134744312,134744072,6297608,-2105392072,-2105344382,130,4470784,-2105392072,-2105344382,130,3687424,-2139062018,-2139062020,254,2080374784,811630722,-2105409012,1879576700,606348288,82060324,606348516,606348324,606348324,606348324,606348324,606348324,36,83623936,606348516,606348324,606348324,82060324,252,0,1052672,134480638,-2143281136,254,269484032,83755008,1075843080,254,0,0,134744312,134744072,134744072,134744072,15,0,134744064,134744072,255,0,0,0,134744319,134744072,134744072,134744072,134744079,134744072,8,0,255,0,134744064,134744072,134744319,134744072,3687432,-2105392072,-2105344382,130,675545088,41680912,-2105377278,126,606348288,539436068,63,0,0,540999680,606348327,606348324,606348324,15148068,255,0,0,16711680,606348519,606348324,606348324,539436068,606348327,606348324,36,16711680,255,0,606348288,15148068,606348519,606348324,36,-2072476672,2021950596,132,134217728,-1738012610,-2004318072,120,2013265920,-230538684,1145193026,120,3687424,-2105375496,-2071821694,248,4473856,-2139062018,-2139062020,254,167772160,-1738012150]},{"sector":9,"length":512,"data":[-2004318072,120,3687424,-1834827134,-2105375094,130,3148800,269488252,269488144,124,4470784,269488252,269488144,124,675545088,-2105802736,-2139029886,126,134744064,134744072,248,0,0,0,134744079,134744072,-248,-1,-1,-1,255,0,-1,-1,-33554177,269488144,269488144,939788304,810037248,-2105376126,-2105376126,124,-256,-1,0,0,3148800,-2105376132,-2105376126,124,939524096,-1736145852,-2105376124,8421532,4470784,-2105376132,-2105376126,124,3148800,-1834827134,-2105375094,130,268959744,-1027866592,-2105376126,130,675545088,-1027866608,-2105376126,130,3687424,1619034748,-2105406416,124,675545088,-2139226096,33717376,252,6297600,-2105376004,-2105375492,130,3148800,-2105376126,-2105376126,124,268959744,-1027866592,-2139062144,128,4465152,-2105376126,-2105376126,124,268959744,-2105409504,-2038267262,2080506490,3148800,675578498,269488144,16,0,553394208,538976288,1879576604,268959744,32,0,0,0,0,254,0,1210318848,144,0,0,0,0,0,3686432,810024960,0,0,0,2021916672,0]},{"sector":10,"length":512,"data":[0,0,-2072510464,-2075643840,137382020,30852,0,1052672,269484286,0,0,0,0,7342096,-2005925888,7374984,0,0,1145307136,0,0,0,269484032,0,0,0,1143078912,-2105409400,-2038267262,122,3687424,-2105376004,-2105375492,130,675545088,-1027866608,-2139062144,128,0,2088532992,2088533116,0,0,0,0,0,-520086528,16777296,1095189760,538976288,218912,0,4248832,16777472,269485568,8,1,0,0,0,2080374784,-2102754686,-2104313214,124,2080374784,-19464450,-17905922,124,0,-26476544,272137470,0,0,2084048896,272137470,0,0,943208448,284094190,56,0,2084048896,274005758,56,0,402653184,1588284,0,-256,-402653185,-1588285,-1,255,1715208192,1013334594,0,-256,-1715208193,-1013334595,-1,503316735,269486598,-2105376132,124,2080374784,2088927874,276566032,16,503316480,269491730,-252702704,224,1040187392,572669474,-319934942,192,268435456,-2109440878,2084864642,4242,0,-524288000,-521078544,192,0,941096960,947452024,24]},{"sector":11,"length":512,"data":[268435456,278025272,945066512,16,1140850688,1145324612,1140868164,68,2113929216,1928524530,303174162,18,-2072510464,-2075643840,137382020,30852,0,0,-16843264,254,268435456,278025272,945066512,254,268435456,278025272,269488144,16,268435456,269488144,945066512,16,0,67637248,268961022,0,0,1075843072,270549246,0,0,-2147483648,16679040,0,0,1109655552,2376447,0,0,940572672,16711292,0,0,-16908288,1063036,0,0,0,0,0,268435456,269488144,268439568,16,1212678144,18504,0,0,0,1157514308,1157514308,68,269484032,-2138008964,-1844313476,1052796,0,140833376,-1639178224,12,805306368,843597896,-2071690166,122,269484032,8208,0,0,134217728,538976272,270540832,8,536870912,134744080,268961800,32,0,945033216,273955070,0,0,269488128,269488382,0,0,0,268435456,2101264,0,0,254,0,0,0,805306368,48,0,67239936,1075843080,128,939524096,-1836940732,1149403794,56,268435456,269504560,269488144,124]},{"sector":12,"length":512,"data":[2080374784,67240578,1075843080,254,2080374784,1006764674,-2113797630,124,67108864,1143215116,67436164,4,-33554432,-58687360,-2113797502,124,2080374784,-58687360,-2105376126,124,-33554432,134480386,269488144,16,2080374784,2084864642,-2105376126,124,2080374784,-2105376126,33686142,124,0,269484032,268435456,16,0,269484032,268435456,2101264,0,537921540,135274560,4,0,16646144,65024,0,0,135274560,537921540,64,2080374784,201491074,268439568,16,2080374784,-1430617470,-2139054934,124,939524096,-2105376188,-2105376002,130,-67108864,-58555774,-2105376126,252,2080374784,-2139062142,-2105376640,124,-134217728,-2105376124,-2071821694,248,-33554432,-58687360,-2139062144,254,-33554432,-58687360,-2139062144,128,2080374784,-1635745662,-2105376126,126,-2113929216,-25001342,-2105376126,130,2080374784,269488144,269488144,124,1040187392,67372036,-2080111612,120,-2080374784,-1063219064,-2071424864,130,-2147483648,-2139062144,-2139062144,254,-2113929216,-1835881786,-2105376126,130,-2113929216,-1970101566,-2105376122,130,2080374784,-2105376126,-2105376126,124,-67108864,-58555774,-2139062144,128,2080374784,-2105376126,-1835887998,264316]},{"sector":13,"length":512,"data":[-67108864,-58555774,-2105376124,130,2080374784,811630722,-2105409012,124,-33554432,269488144,269488144,16,-2113929216,-2105376126,-2105376126,124,-2113929216,-2105376126,675578498,16,-2113929216,-2105376126,-1433234798,68,-2113929216,271074434,-2105392088,130,-2113929216,675578498,269488144,16,-33554432,268960770,-2139078624,254,939524096,538976288,538976288,56,0,1082130432,67637280,2,939524096,134744072,134744072,56,1143476224,130,0,0,0,0,0,16646144,538968064,4128,0,0,0,74973184,-2071692284,126,-2147483648,-1027833728,-2105376126,252,0,-2105802752,-2105507712,124,33554432,-2038824446,-2105376126,126,0,-2105802752,-2139029886,124,469762048,553132064,538976288,32,0,-2105671680,-2038267262,2080506490,-2147483648,-1027833728,-2105376126,130,268435456,275775504,269488144,124,134217728,137887752,134744072,1879574536,-2147483648,-1736015744,-2071424800,130,1610612736,538976288,538976288,28,0,-1830027264,-1835887982,146,0,-1027866624,-2105376126,130,0,-2105802752,-2105376126,124,0,-1027866624,-1031634302,-2139062084,0,-2105671680,-2038267262,33686138]},{"sector":14,"length":512,"data":[0,-1027866624,-2139062144,128,0,-2139226112,33717376,252,0,553394208,538976288,28,0,-2105409536,-2038267262,122,0,-2105409536,675578498,16,0,-2105409536,-1835887998,108,0,1149370368,1143476264,130,0,-2105409536,-2038267262,2080506490,0,83755008,1075843080,254,201326592,1611665424,269488144,12,269484032,269488144,269488144,269488144,1610612736,202379280,269488144,96,1644167168,35986,0,0,0,672137216,-2105376188,254,1073741824,1650213104,1111638594,262722,-33554432,1650212928,1111638594,134480450,268959744,1148977184,1077952576,64,3148800,-2139061506,-2139062144,128,1111621632,-2105802752,-2139029886,126,4473856,-2139062018,-2139062020,254,0,1111359488,1111504960,62,973078528,-260013498,1182826624,56,0,-2139226112,33717376,252,2080374784,811630722,-2105409012,124,268435456,275775504,269488144,124,2080374784,269488144,269488144,124,1140850688,275775556,269488144,124,4473856,269488252,269488144,124,134217728,137887752,134744072,1879574536,1040187392,67372036,-2080111612,120,0,1358430208,1381129296,156,-134217728,1548767312,1381126738,156]},{"sector":15,"length":512,"pattern":1437226410,"data":[0,-1869611008,-1835860848,156,-1879048192,-57634672,-1835887982,156,1073741824,1650213104,1111638594,66,-33554432,841752608,572662306,34,134479872,1212547088,1145598024,66,-2043671552,-527398776,-2071424864,130,1140850688,-2105409480,673727556,1075843088,3687424,-2105376126,-2113783226,124,0,-2105409536,-2105376126,1052926,-2113929216,-2105376126,-2105376126,1052926,0,-1836318720,-1835863406,140,-1946157056,-225275246,-1835887982,140,0,-1595932672,572666412,60,-536870912,740303008,572662322,60,0,74973184,-2071692284,126,939524096,-2105376188,-2105376002,130,67108864,-994541448,1149403778,56,-67108864,-125796224,-2071821692,248,0,-2071724032,-2071690108,131838,-2080374784,-2071690108,-2071690108,131838,0,607911936,1143219236,8553214,1006632960,606348324,-2075900860,8553214,0,-2105802752,-2139029886,124,-33554432,-58687360,-2139062144,254,268435456,-1837363184,-1835887982,269488252,268435456,-1835888004,2089980562,16,0,1148977152,1077952576,64,-33554432,-2139062142,-2139062144,128,0,1210318848,2377872,0,0,1217396736,9455652,0,289673472,289673540,289673540,289673540,1437226308]}],[{"sector":1,"length":512,"data":[-579347030,-579347081,-579347081,-579347081,134744183,134744072,134744072,134744072,134744072,134744072,134744312,134744072,8,1149370368,1143476264,130,-2113929216,271074434,-2105392088,130,0,-2038300672,-1029533046,130,-2113929216,-1836415358,-2105359710,130,606348288,82060324,606348516,606348324,606348324,606348324,606348324,606348324,36,83623936,606348516,606348324,606348324,82060324,252,0,1140850688,-2038300616,-1029533046,130,3687424,-1970896254,-2101173614,130,0,0,134744312,134744072,134744072,134744072,15,0,134744064,134744072,255,0,0,0,134744319,134744072,134744072,134744072,134744079,134744072,8,0,255,0,134744064,134744072,134744319,134744072,8,1212547072,1145598024,66,-2046820352,-527398776,-2071424864,130,606348288,539436068,63,0,0,540999680,606348327,606348324,606348324,15148068,255,0,0,16711680,606348519,606348324,606348324,539436068,606348327,606348324,36,16711680,255,0,606348288,15148068,606348519,606348324,36,-2072476672,-2072476540,0,0,574488576,572662306,194,1040187392,572662306,572662306,194]},{"sector":2,"length":512,"data":[0,1715601408,1111638618,66,-2113929216,-1835881786,-2105376126,130,0,1111621632,1111653954,66,-2113929216,-25001342,-2105376126,130,0,-2105802752,-2105376126,124,2080374784,-2105376126,-2105376126,124,0,1115553792,1111638594,66,134744064,134744072,248,0,0,0,134744079,134744072,-248,-1,-1,-1,255,0,-1,-1,-33554177,-2105376126,-2105376126,130,0,1111359488,571620930,66,-256,-1,0,0,2113929216,2122482306,-2105392606,130,0,-1027866624,-1031634302,-2139062084,-67108864,-58555774,-2139062144,128,0,-2105802752,-2105507712,124,2080374784,-2139062142,-2105376640,124,0,276561920,269488144,16,-33554432,269488144,269488144,16,0,-2105409536,673727556,1075843088,0,-2105376126,-2113783226,124,0,1423310848,-1839974316,146,-1845493760,945050708,-1835888044,146,0,1115422720,1111653442,124,-67108864,-58555774,-2105376126,252,0,1077936128,1111646812,124,1073741824,1547714624,1111638626,124,0,-1429369462,-2004317288,136,0,0,124,0,0,-2105409536,-1970615630,242]},{"sector":3,"length":512,"data":[-2113929216,-1300069758,-1970631990,242,0,1115422720,1107434500,124,-1140850688,470057666,-1040055806,124,0,-1835925504,-1835887982,254,-1845493760,-1835887982,-1835887982,254,0,1115422720,1107435010,124,-1207959552,503481028,-1006501374,120,0,-1835925504,-1835887982,131838,-1845493760,-1835887982,-1835887982,131838,0,-2071724032,67400844,4,-2113929216,-2038267262,33686138,2,-2072510464,-2075643840,137382020,30852,0,2122186752,2122219134,0,0,0,0,0,151002112,16777313,1095189760,538976288,219424,0,5307648,16777472,269485568,8,1,0,0,0,2080374784,-2102754686,-2104313214,124,2080374784,-19464450,-17905922,124,0,-26476544,272137470,0,0,2084048896,272137470,0,0,943208448,284094190,56,0,2084048896,274005758,56,0,402653184,1588284,0,-256,-402653185,-1588285,-1,255,1715208192,1013334594,0,-256,-1715208193,-1013334595,-1,503316735,269486598,-2105376132,124,2080374784,2088927874,276566032,16,503316480,269491730,-252702704,224,1040187392,572669474,-319934942,192,268435456,-2109440878]},{"sector":4,"length":512,"data":[2084864642,4242,0,-524288000,-521078544,192,0,941096960,947452024,24,268435456,278025272,945066512,16,1140850688,1145324612,1140868164,68,2113929216,1928524530,303174162,18,-2072510464,-2075643840,137382020,30852,0,0,-16843264,254,268435456,278025272,945066512,254,268435456,278025272,269488144,16,268435456,269488144,945066512,16,0,67637248,268961022,0,0,1075843072,270549246,0,0,-2147483648,16679040,0,0,1109655552,2376447,0,0,940572672,16711292,0,0,-16908288,1063036,0,0,0,0,0,268435456,269488144,268439568,16,1212678144,18504,0,0,0,1157514308,1157514308,68,269484032,-2138008964,-1844313476,1052796,0,140833376,-1639178224,12,805306368,843597896,-2071690166,122,269484032,8208,0,0,134217728,538976272,270540832,8,536870912,134744080,268961800,32,0,945033216,273955070,0,0,269488128,269488382,0,0,0,268435456,2101264,0,0,254,0,0,0,805306368,48,0,67239936]},{"sector":5,"length":512,"data":[1075843080,128,939524096,-1836940732,1149403794,56,268435456,269504560,269488144,124,2080374784,67240578,1075843080,254,2080374784,1006764674,-2113797630,124,67108864,1143215116,67436164,4,-33554432,-58687360,-2113797502,124,2080374784,-58687360,-2105376126,124,-33554432,134480386,269488144,16,2080374784,2084864642,-2105376126,124,2080374784,-2105376126,33686142,124,0,269484032,268435456,16,0,269484032,268435456,2101264,0,537921540,135274560,4,0,16646144,65024,0,0,135274560,537921540,64,2080374784,201491074,268439568,16,2080374784,-1430617470,-2139054934,124,939524096,-2105376188,-2105376002,130,-67108864,-58555774,-2105376126,252,2080374784,-2139062142,-2105376640,124,-134217728,-2105376124,-2071821694,248,-33554432,-58687360,-2139062144,254,-33554432,-58687360,-2139062144,128,2080374784,-1635745662,-2105376126,126,-2113929216,-25001342,-2105376126,130,2080374784,269488144,269488144,124,1040187392,67372036,-2080111612,120,-2080374784,-1063219064,-2071424864,130,-2147483648,-2139062144,-2139062144,254,-2113929216,-1835881786,-2105376126,130,-2113929216,-1970101566,-2105376122,130,2080374784,-2105376126]},{"sector":6,"length":512,"data":[-2105376126,124,-67108864,-58555774,-2139062144,128,2080374784,-2105376126,-1835887998,264316,-67108864,-58555774,-2105376124,130,2080374784,811630722,-2105409012,124,-33554432,269488144,269488144,16,-2113929216,-2105376126,-2105376126,124,-2113929216,-2105376126,675578498,16,-2113929216,-2105376126,-1433234798,68,-2113929216,271074434,-2105392088,130,-2113929216,675578498,269488144,16,-33554432,268960770,-2139078624,254,939524096,538976288,538976288,56,0,1082130432,67637280,2,939524096,134744072,134744072,56,1143476224,130,0,0,0,0,0,16646144,538968064,4128,0,0,0,74973184,-2071692284,126,-2147483648,-1027833728,-2105376126,252,0,-2105802752,-2105507712,124,33554432,-2038824446,-2105376126,126,0,-2105802752,-2139029886,124,469762048,553132064,538976288,32,0,-2105671680,-2038267262,2080506490,-2147483648,-1027833728,-2105376126,130,268435456,275775504,269488144,124,134217728,137887752,134744072,1879574536,-2147483648,-1736015744,-2071424800,130,1610612736,538976288,538976288,28,0,-1830027264,-1835887982,146,0,-1027866624,-2105376126,130,0,-2105802752]},{"sector":7,"length":512,"data":[-2105376126,124,0,-1027866624,-1031634302,-2139062084,0,-2105671680,-2038267262,33686138,0,-1027866624,-2139062144,128,0,-2139226112,33717376,252,0,553394208,538976288,28,0,-2105409536,-2038267262,122,0,-2105409536,675578498,16,0,-2105409536,-1835887998,108,0,1149370368,1143476264,130,0,-2105409536,-2038267262,2080506490,0,83755008,1075843080,254,201326592,1611665424,269488144,12,269484032,269488144,269488144,269488144,1610612736,202379280,269488144,96,1644167168,35986,0,0,0,672137216,-2105376188,254,2080374784,-2139062142,-2105376640,1879576700,1140850688,-2105409468,-2038267262,122,268959744,-2105802720,-2139029886,126,672137216,41680964,-2105377278,126,1140850688,41680964,-2105377278,126,270532608,41680904,-2105377278,126,605552640,41680920,-2105377278,126,0,-2105802752,-2105507712,1879576700,672137216,-2105802684,-2139029886,126,1140850688,-2105802684,-2139029886,126,270532608,-2105802744,-2139029886,126,1207959552,275775560,269488144,124,672137216,275775556,269488144,124,0,275775488,269488144,124,4473856,-2105392072,-2105344382,130,1145321472,-2105392072]},{"sector":8,"length":512,"data":[-2105344382,130,3148800,-2139062018,-2139062020,254,0,-1838415872,-1869578734,110,1040187392,-24606648,-2004318072,142,672137216,-2105802684,-2105376126,124,1140850688,-2105802684,-2105376126,124,270532608,-2105802744,-2105376126,124,672137216,-2105409468,-2038267262,122,270532608,-2105409528,-2038267262,122,1052672,269488252,269488144,124,4473856,-2105376132,-2105376126,124,4473856,-2105376126,-2105376126,124,0,1128136704,1632717125,62,939524096,-264224700,1916813376,204,1040187392,1229275969,1096896841,62,2080374784,811630722,-2105409012,1879576700,0,-2139226112,33717376,1879576828,268959744,41680928,-2105377278,126,268959744,275775520,269488144,124,268959744,-2105802720,-2105376126,124,268959744,-2105409504,-2038267262,122,-1738276864,-1027866624,-2105376126,130,9987072,-1834827134,-2105375094,130,3687424,-2139061636,-2105376098,126,1140850688,-2105671624,-2038267262,2080506490,268435456,269484048,-2105376672,124,2080374784,-1297436030,8159914,0,0,-67108864,67372036,0,-2139095040,546343044,70811712,3936264,-2139095040,277382272,344736800,263228,268435456,269484048,269488144,16,0,1210318848,2377872,0,0,1217396736]},{"sector":9,"length":512,"data":[9455652,0,289673472,289673540,289673540,289673540,1437226308,1437226410,1437226410,1437226410,-579347030,-579347081,-579347081,-579347081,134744183,134744072,134744072,134744072,134744072,134744072,134744312,134744072,6297608,-2105392072,-2105344382,130,4470784,-2105392072,-2105344382,130,798720,-2105392072,-2105344382,130,2080374784,-1566401918,8159898,0,606348288,82060324,606348516,606348324,606348324,606348324,606348324,606348324,36,83623936,606348516,606348324,606348324,82060324,252,0,268435456,-2138932208,276595328,16,-2113929216,271074434,276566140,16,0,0,134744312,134744072,134744072,134744072,15,0,134744064,134744072,255,0,0,0,134744319,134744072,134744072,134744072,134744079,134744072,8,0,255,0,134744064,134744072,134744319,134744072,1278345224,41680896,-2105377278,126,9987072,-2105392072,-2105344382,130,606348288,539436068,63,0,0,540999680,606348327,606348324,606348324,15148068,255,0,0,16711680,606348519,606348324,606348324,539436068,606348327,606348324,36,16711680,255,0,606348288,15148068,606348519,606348324,36,-2072476672]},{"sector":10,"length":512,"data":[2021950596,132,1144520704,3687492,124,0,70778880,3949628,124,0,4470784,-2139062018,-2139062020,254,4473856,-2139062018,-2139062020,254,798720,-2139062018,-2139062020,254,0,0,0,0,3148800,269488252,269488144,124,4470784,269488252,269488144,124,4473856,269488252,269488144,124,134744064,134744072,248,0,0,0,134744079,134744072,-248,-1,-1,-1,255,0,-1,-1,269484287,1052688,269488128,4112,1597440,269488252,269488144,124,-256,-1,0,0,3148800,-2105376132,-2105376126,124,939524096,-1736145852,-2105376124,8421532,4470784,-2105376132,-2105376126,124,1597440,-2105376132,-2105376126,124,-1738276864,-2105802752,-2105376126,124,9987072,-2105376132,-2105376126,124,0,-2071724032,-997948284,-2139062086,0,0,0,0,0,810058752,8669232,0,3148800,-2105376126,-2105376126,124,4470784,-2105376126,-2105376126,124,1597440,-2105376126,-2105376126,124,541065216,275775504,269488144,124,1140850688,-2105409468,-2038267262,2080506490,16711680,0,0,0,134479872,8208]},{"sector":11,"length":512,"data":[0,0,0,0,254,0,268435456,285085712,-33550320,0,0,0,0,0,283115520,149164640,-1975115248,131614,2113929216,1928524530,303174162,18,-2072510464,-2075643840,137382020,30852,0,1052672,269484286,0,0,0,0,7342096,-2005925888,7374984,0,0,1145307136,0,0,0,0,0,12288,0,1612709888,1881153568,0,0,283115520,-535818144,0,0,-1872756736,-264232944,0,0,0,2088532992,2088533116,0,0,0,0,0,822090752,16777329,1095189760,538976288,220192,0,6366464,16777472,269485568,8,1,0,0,0,2080374784,-2102754686,-2104313214,124,2080374784,-19464450,-17905922,124,0,-26476544,272137470,0,0,2084048896,272137470,0,0,943208448,284094190,56,0,2084048896,274005758,56,0,402653184,1588284,0,-256,-402653185,-1588285,-1,255,1715208192,1013334594,0,-256,-1715208193,-1013334595,-1,503316735,269486598,-2105376132,124,2080374784,2088927874,276566032,16]},{"sector":12,"length":512,"data":[503316480,269491730,-252702704,224,1040187392,572669474,-319934942,192,268435456,-2109440878,2084864642,4242,0,-524288000,-521078544,192,0,941096960,947452024,24,268435456,278025272,945066512,16,1140850688,1145324612,1140868164,68,2113929216,1928524530,303174162,18,-2072510464,-2075643840,137382020,30852,0,0,-16843264,254,268435456,278025272,945066512,254,268435456,278025272,269488144,16,268435456,269488144,945066512,16,0,67637248,268961022,0,0,1075843072,270549246,0,0,-2147483648,16679040,0,0,1109655552,2376447,0,0,940572672,16711292,0,0,-16908288,1063036,0,0,0,0,0,268435456,269488144,268439568,16,1212678144,18504,0,0,0,1157514308,1157514308,68,269484032,-2138008964,-1844313476,1052796,0,140833376,-1639178224,12,805306368,843597896,-2071690166,122,269484032,8208,0,0,134217728,538976272,270540832,8,536870912,134744080,268961800,32,0,945033216,273955070,0,0,269488128,269488382,0,0,0,268435456,2101264]},{"sector":13,"length":512,"data":[0,0,254,0,0,0,805306368,48,0,67239936,1075843080,128,939524096,-1836940732,1149403794,56,268435456,269504560,269488144,124,2080374784,67240578,1075843080,254,2080374784,1006764674,-2113797630,124,67108864,1143215116,67436164,4,-33554432,-58687360,-2113797502,124,2080374784,-58687360,-2105376126,124,-33554432,134480386,269488144,16,2080374784,2084864642,-2105376126,124,2080374784,-2105376126,33686142,124,0,269484032,268435456,16,0,269484032,268435456,2101264,0,537921540,135274560,4,0,16646144,65024,0,0,135274560,537921540,64,2080374784,201491074,268439568,16,2080374784,-1430617470,-2139054934,124,939524096,-2105376188,-2105376002,130,-67108864,-58555774,-2105376126,252,2080374784,-2139062142,-2105376640,124,-134217728,-2105376124,-2071821694,248,-33554432,-58687360,-2139062144,254,-33554432,-58687360,-2139062144,128,2080374784,-1635745662,-2105376126,126,-2113929216,-25001342,-2105376126,130,2080374784,269488144,269488144,124,1040187392,67372036,-2080111612,120,-2080374784,-1063219064,-2071424864,130,-2147483648,-2139062144,-2139062144,254]},{"sector":14,"length":512,"data":[-2113929216,-1835881786,-2105376126,130,-2113929216,-1970101566,-2105376122,130,2080374784,-2105376126,-2105376126,124,-67108864,-58555774,-2139062144,128,2080374784,-2105376126,-1835887998,264316,-67108864,-58555774,-2105376124,130,2080374784,811630722,-2105409012,124,-33554432,269488144,269488144,16,-2113929216,-2105376126,-2105376126,124,-2113929216,-2105376126,675578498,16,-2113929216,-2105376126,-1433234798,68,-2113929216,271074434,-2105392088,130,-2113929216,675578498,269488144,16,-33554432,268960770,-2139078624,254,939524096,538976288,538976288,56,0,1082130432,67637280,2,939524096,134744072,134744072,56,1143476224,130,0,0,0,0,0,16646144,538968064,4128,0,0,0,74973184,-2071692284,126,-2147483648,-1027833728,-2105376126,252,0,-2105802752,-2105507712,124,33554432,-2038824446,-2105376126,126,0,-2105802752,-2139029886,124,469762048,553132064,538976288,32,0,-2105671680,-2038267262,2080506490,-2147483648,-1027833728,-2105376126,130,268435456,275775504,269488144,124,134217728,137887752,134744072,1879574536,-2147483648,-1736015744,-2071424800,130,1610612736,538976288,538976288,28]},{"sector":15,"length":512,"data":[0,-1830027264,-1835887982,146,0,-1027866624,-2105376126,130,0,-2105802752,-2105376126,124,0,-1027866624,-1031634302,-2139062084,0,-2105671680,-2038267262,33686138,0,-1027866624,-2139062144,128,0,-2139226112,33717376,252,0,553394208,538976288,28,0,-2105409536,-2038267262,122,0,-2105409536,675578498,16,0,-2105409536,-1835887998,108,0,1149370368,1143476264,130,0,-2105409536,-2038267262,2080506490,0,83755008,1075843080,254,201326592,1611665424,269488144,12,269484032,269488144,269488144,269488144,1610612736,202379280,269488144,96,1644167168,35986,0,0,0,672137216,-2105376188,254,2080374784,-2139062142,-2105376640,1879576700,1140850688,-2105409468,-2038267262,122,268959744,-2105802720,-2139029886,126,672137216,41680964,-2105377278,126,1278345216,41680896,-2105377278,126,270532608,41680904,-2105377278,126,6297600,-2105392072,-2105344382,130,0,-2105802752,-2105507712,1879576700,672137216,-2105802684,-2139029886,126,4470784,-2139062018,-2139062020,254,270532608,-2105802744,-2139029886,126,3148800,269488252,269488144,124,4470784,-2105376132,-2105376126,124]}]],[[{"sector":1,"length":512,"data":[541065216,275775504,269488144,124,9987072,-2105392072,-2105344382,130,4470784,-2105392072,-2105344382,130,3148800,-2139062018,-2139062020,254,798720,-2105392072,-2105344382,130,798720,-2139062018,-2139062020,254,672137216,-2105802684,-2105376126,124,-1738276864,-2105802752,-2105376126,124,270532608,-2105802744,-2105376126,124,3148800,-2105376126,-2105376126,124,270532608,-2105409528,-2038267262,122,1597440,269488252,269488144,124,9987072,-2105376132,-2105376126,124,4473856,-2105376126,-2105376126,124,268435456,-2138932208,276595328,16,939524096,-264224700,1916813376,204,1597440,-2105376126,-2105376126,124,-134217728,-2131196796,-2004312952,132,3148800,-2105376132,-2105376126,124,268959744,41680928,-2105377278,126,268959744,275775520,269488144,124,268959744,-2105802720,-2105376126,124,268959744,-2105409504,-2038267262,122,-1738276864,-1027866624,-2105376126,130,9987072,-1834827134,-2105375094,130,70778880,3949628,124,0,1144520704,3687492,124,0,268435456,269484048,-2105376672,124,1597440,-2105376132,-2105376126,124,0,-67108864,67372036,0,-2139095040,546343044,70811712,3936264,-2139095040,277382272,344736800,263228]},{"sector":2,"length":512,"data":[268435456,269484048,269488144,16,0,1210318848,2377872,0,0,1217396736,9455652,0,289673472,289673540,289673540,289673540,1437226308,1437226410,1437226410,1437226410,-579347030,-579347081,-579347081,-579347081,134744183,134744072,134744072,134744072,134744072,134744072,134744312,134744072,134744072,150472712,134744312,134744072,606348296,606348324,606348516,606348324,36,0,606348540,606348324,36,150470656,134744312,134744072,606348296,82060324,606348516,606348324,606348324,606348324,606348324,606348324,36,83623936,606348516,606348324,606348324,82060324,252,0,606348288,606348324,252,0,134744064,150472712,248,0,0,0,134744312,134744072,134744072,134744072,15,0,134744064,134744072,255,0,0,0,134744319,134744072,134744072,134744072,134744079,134744072,8,0,255,0,134744064,134744072,134744319,134744072,134744072,135202824,134744079,134744072,606348296,606348324,606348327,606348324,606348324,539436068,63,0,0,540999680,606348327,606348324,606348324,15148068,255,0,0,16711680,606348519,606348324,606348324,539436068,606348327,606348324]},{"sector":3,"length":512,"data":[36,16711680,255,0,606348288,15148068,606348519,606348324,134744100,16713736,255,0,606348288,606348324,255,0,0,16711680,134744319,134744072,8,0,606348543,606348324,606348324,606348324,63,0,134744064,135202824,15,0,0,135200768,134744079,134744072,8,0,606348351,606348324,606348324,606348324,606348543,606348324,134744100,150931464,134744319,134744072,134744072,134744072,248,0,0,0,134744079,134744072,-248,-1,-1,-1,255,0,-1,-1,-252645121,-252645136,-252645136,-252645136,252645360,252645135,252645135,252645135,-241,-1,0,0,0,-2005663744,-2004318072,118,939524096,-1736145852,-2105376124,8421532,-33554432,-2139062144,-2139062144,128,0,1157496832,1145324612,66,-33554432,135274560,-2143281136,254,0,-2005008384,-2071690108,120,0,-2071724032,-997948284,-2139062086,0,-1870790656,269488144,12,268435456,-1835888004,2089980562,16,939524096,-25001404,1149403778,56,939524096,-2105376188,675578498,238,2080374784,2014322752,-2105376124,124,0,-1838415872,7115410,0]},{"sector":4,"length":512,"data":[0,-1837363184,-1835887982,269488252,0,-2105802752,-2105509760,124,0,-2105376132,-2105376126,130,0,65024,-33554178,0,268435456,285085712,-33550320,0,0,67637280,2101256,124,0,1075843080,528416,124,201326592,269488658,269488144,269488144,269488144,269488144,-1869606896,96,0,1052672,269484286,0,0,-1738276864,9987072,0,-2005925888,7374984,0,0,0,0,12336,0,0,0,12288,0,135135232,134744072,405325832,8,1152909312,1145324612,0,0,-1872756736,-264232944,0,0,0,2088532992,2088533116,0,0,0,0,0,1493179392,16777345,1095189760,538976288,220448,0,7425280,16777472,269485568,8,1,0,0,0,2080374784,-2102754686,-2104313214,124,2080374784,-19464450,-17905922,124,0,-26476544,272137470,0,0,2084048896,272137470,0,0,943208448,284094190,56,0,2084048896,274005758,56,0,402653184,1588284,0,-256,-402653185,-1588285,-1,255,1715208192,1013334594,0,-256,-1715208193]},{"sector":5,"length":512,"data":[-1013334595,-1,503316735,269486598,-2105376132,124,2080374784,2088927874,276566032,16,503316480,269491730,-252702704,224,1040187392,572669474,-319934942,192,268435456,-2109440878,2084864642,4242,0,-524288000,-521078544,192,0,941096960,947452024,24,268435456,278025272,945066512,16,1140850688,1145324612,1140868164,68,2113929216,1928524530,303174162,18,-2072510464,-2075643840,137382020,30852,0,0,-16843264,254,268435456,278025272,945066512,254,268435456,278025272,269488144,16,268435456,269488144,945066512,16,0,67637248,268961022,0,0,1075843072,270549246,0,0,-2147483648,16679040,0,0,1109655552,2376447,0,0,940572672,16711292,0,0,-16908288,1063036,0,0,0,0,0,268435456,269488144,268439568,16,1212678144,18504,0,0,0,1157514308,1157514308,68,269484032,-2138008964,-1844313476,1052796,0,140833376,-1639178224,12,805306368,843597896,-2071690166,122,269484032,8208,0,0,134217728,538976272,270540832,8,536870912,134744080,268961800,32,0,945033216]},{"sector":6,"length":512,"data":[273955070,0,0,269488128,269488382,0,0,0,268435456,2101264,0,0,254,0,0,0,805306368,48,0,67239936,1075843080,128,939524096,-1836940732,1149403794,56,268435456,269504560,269488144,124,2080374784,67240578,1075843080,254,2080374784,1006764674,-2113797630,124,67108864,1143215116,67436164,4,-33554432,-58687360,-2113797502,124,2080374784,-58687360,-2105376126,124,-33554432,134480386,269488144,16,2080374784,2084864642,-2105376126,124,2080374784,-2105376126,33686142,124,0,269484032,268435456,16,0,269484032,268435456,2101264,0,537921540,135274560,4,0,16646144,65024,0,0,135274560,537921540,64,2080374784,201491074,268439568,16,2080374784,-1430617470,-2139054934,124,939524096,-2105376188,-2105376002,130,-67108864,-58555774,-2105376126,252,2080374784,-2139062142,-2105376640,124,-134217728,-2105376124,-2071821694,248,-33554432,-58687360,-2139062144,254,-33554432,-58687360,-2139062144,128,2080374784,-1635745662,-2105376126,126,-2113929216,-25001342,-2105376126,130,2080374784,269488144,269488144,124,1040187392,67372036]},{"sector":7,"length":512,"data":[-2080111612,120,-2080374784,-1063219064,-2071424864,130,-2147483648,-2139062144,-2139062144,254,-2113929216,-1835881786,-2105376126,130,-2113929216,-1970101566,-2105376122,130,2080374784,-2105376126,-2105376126,124,-67108864,-58555774,-2139062144,128,2080374784,-2105376126,-1835887998,264316,-67108864,-58555774,-2105376124,130,2080374784,811630722,-2105409012,124,-33554432,269488144,269488144,16,-2113929216,-2105376126,-2105376126,124,-2113929216,-2105376126,675578498,16,-2113929216,-2105376126,-1433234798,68,-2113929216,271074434,-2105392088,130,-2113929216,675578498,269488144,16,-33554432,268960770,-2139078624,254,939524096,538976288,538976288,56,0,1082130432,67637280,2,939524096,134744072,134744072,56,1143476224,130,0,0,0,0,0,16646144,538968064,4128,0,0,0,74973184,-2071692284,126,-2147483648,-1027833728,-2105376126,252,0,-2105802752,-2105507712,124,33554432,-2038824446,-2105376126,126,0,-2105802752,-2139029886,124,469762048,553132064,538976288,32,0,-2105671680,-2038267262,2080506490,-2147483648,-1027833728,-2105376126,130,268435456,275775504,269488144,124,134217728,137887752]},{"sector":8,"length":512,"data":[134744072,1879574536,-2147483648,-1736015744,-2071424800,130,1610612736,538976288,538976288,28,0,-1830027264,-1835887982,146,0,-1027866624,-2105376126,130,0,-2105802752,-2105376126,124,0,-1027866624,-1031634302,-2139062084,0,-2105671680,-2038267262,33686138,0,-1027866624,-2139062144,128,0,-2139226112,33717376,252,0,553394208,538976288,28,0,-2105409536,-2038267262,122,0,-2105409536,675578498,16,0,-2105409536,-1835887998,108,0,1149370368,1143476264,130,0,-2105409536,-2038267262,2080506490,0,83755008,1075843080,254,201326592,1611665424,269488144,12,269484032,269488144,269488144,269488144,1610612736,202379280,269488144,96,1644167168,35986,0,0,0,672137216,-2105376188,254,2080374784,-2139062142,-2105376640,1879576700,1140850688,-2105409468,-2038267262,122,268959744,-2105802720,-2139029886,126,672137216,41680964,-2105377278,126,1140850688,41680964,-2105377278,126,270532608,41680904,-2105377278,126,605552640,41680920,-2105377278,126,0,-2105802752,-2105507712,1879576700,672137216,-2105802684,-2139029886,126,1140850688,-2105802684,-2139029886,126,270532608,-2105802744]},{"sector":9,"length":512,"data":[-2139029886,126,2013265920,-230538684,1145193026,120,671088640,2080647184,-2105376126,124,-2147483648,-2105344896,-2130935166,128,4473856,-2105392072,-2105344382,130,1145321472,-2105392072,-2105344382,130,3148800,-2139062018,-2139062020,254,0,-1838415872,-1869578734,110,1040187392,-24606648,-2004318072,142,672137216,-2105802684,-2105376126,124,1140850688,-2105802684,-2105376126,124,-2147483648,-1027833728,-2105376126,-2139062020,672137216,-2105409468,-2038267262,122,3148800,675578498,269488144,16,268959744,-2105409504,-2038267262,2080506490,4473856,-2105376132,-2105376126,124,4473856,-2105376126,-2105376126,124,0,-2038693888,-1029533046,124,939524096,-264224700,1916813376,204,2080374784,-1836415358,-2101173614,124,-134217728,-2131196796,-2004312952,132,201326592,269488146,269488252,1620054032,268959744,41680928,-2105377278,126,268959744,275775520,269488144,124,268959744,-2105802720,-2105376126,124,268959744,-2105409504,-2038267262,122,6297600,-2105392072,-2105344382,130,3148800,269488252,269488144,124,3148800,-2105376132,-2105376126,124,3148800,-2105376126,-2105376126,124,268435456,269484048,-2105376672,124,0,-67108864,-2139062144,0,0,-67108864]},{"sector":10,"length":512,"data":[67372036,0,-2139095040,546343044,70811712,3936264,-2139095040,277382272,344736800,263228,268435456,269484048,269488144,16,0,1210318848,2377872,0,0,1217396736,9455652,0,289673472,289673540,289673540,289673540,1437226308,1437226410,1437226410,1437226410,-579347030,-579347081,-579347081,-579347081,134744183,134744072,134744072,134744072,134744072,134744072,134744312,134744072,134744072,150472712,134744312,134744072,606348296,606348324,606348516,606348324,36,0,606348540,606348324,36,150470656,134744312,134744072,606348296,82060324,606348516,606348324,606348324,606348324,606348324,606348324,36,83623936,606348516,606348324,606348324,82060324,252,0,606348288,606348324,252,0,134744064,150472712,248,0,0,0,134744312,134744072,134744072,134744072,15,0,134744064,134744072,255,0,0,0,134744319,134744072,134744072,134744072,134744079,134744072,8,0,255,0,134744064,134744072,134744319,134744072,134744072,135202824,134744079,134744072,606348296,606348324,606348327,606348324,606348324,539436068,63,0,0,540999680,606348327,606348324,606348324,15148068]},{"sector":11,"length":512,"data":[255,0,0,16711680,606348519,606348324,606348324,539436068,606348327,606348324,36,16711680,255,0,606348288,15148068,606348519,606348324,134744100,16713736,255,0,606348288,606348324,255,0,0,16711680,134744319,134744072,8,0,606348543,606348324,606348324,606348324,63,0,134744064,135202824,15,0,0,135200768,134744079,134744072,8,0,606348351,606348324,606348324,606348324,606348543,606348324,134744100,150931464,134744319,134744072,134744072,134744072,248,0,0,0,134744079,134744072,-248,-1,-1,-1,255,0,-1,-1,-252645121,-252645136,-252645136,-252645136,252645360,252645135,252645135,252645135,-241,-1,0,0,0,-2005663744,-2004318072,118,939524096,-1736145852,-2105376124,8421532,-33554432,-2139062144,-2139062144,128,0,1157496832,1145324612,66,-33554432,135274560,-2143281136,254,0,-2005008384,-2071690108,120,0,-2071724032,-997948284,-2139062086,0,-1870790656,269488144,12,268435456,-1835888004,2089980562,16,939524096,-25001404,1149403778,56,939524096,-2105376188]},{"sector":12,"length":512,"data":[675578498,238,2080374784,2014322752,-2105376124,124,0,-1838415872,7115410,0,0,-1837363184,-1835887982,269488252,0,-2105802752,-2105509760,124,0,-2105376132,-2105376126,130,0,65024,-33554178,0,268435456,285085712,-33550320,0,0,67637280,2101256,124,0,1075843080,528416,124,201326592,269488658,269488144,269488144,269488144,269488144,-1869606896,96,0,1052672,269484286,0,0,-1738276864,9987072,0,-2005925888,7374984,0,0,0,0,12336,0,0,0,12288,0,135135232,134744072,405325832,8,1152909312,1145324612,0,0,-1872756736,-264232944,0,0,0,2088532992,2088533116,0,0,0,0,0,-2130699264,16777361,1095189760,538976288,220960,0,8484096,16777472,269485568,8,1,0,0,0,2080374784,-2102754686,-2104313214,124,2080374784,-19464450,-17905922,124,0,-26476544,272137470,0,0,2084048896,272137470,0,0,943208448,284094190,56,0,2084048896,274005758,56,0,402653184,1588284,0]},{"sector":13,"length":512,"data":[-256,-402653185,-1588285,-1,255,1715208192,1013334594,0,-256,-1715208193,-1013334595,-1,503316735,269486598,-2105376132,124,2080374784,2088927874,276566032,16,503316480,269491730,-252702704,224,1040187392,572669474,-319934942,192,268435456,-2109440878,2084864642,4242,0,-524288000,-521078544,192,0,941096960,947452024,24,268435456,278025272,945066512,16,1140850688,1145324612,1140868164,68,2113929216,1928524530,303174162,18,-2072510464,-2075643840,137382020,30852,0,0,-16843264,254,268435456,278025272,945066512,254,268435456,278025272,269488144,16,268435456,269488144,945066512,16,0,67637248,268961022,0,0,1075843072,270549246,0,0,-2147483648,16679040,0,0,1109655552,2376447,0,0,940572672,16711292,0,0,-16908288,1063036,0,0,0,0,0,268435456,269488144,268439568,16,1212678144,18504,0,0,0,1157514308,1157514308,68,269484032,-2138008964,-1844313476,1052796,0,140833376,-1639178224,12,805306368,843597896,-2071690166,122,269484032,8208,0,0]},{"sector":14,"length":512,"data":[134217728,538976272,270540832,8,536870912,134744080,268961800,32,0,945033216,273955070,0,0,269488128,269488382,0,0,0,268435456,2101264,0,0,254,0,0,0,805306368,48,0,67239936,1075843080,128,939524096,-1836940732,1149403794,56,268435456,269504560,269488144,124,2080374784,67240578,1075843080,254,2080374784,1006764674,-2113797630,124,67108864,1143215116,67436164,4,-33554432,-58687360,-2113797502,124,2080374784,-58687360,-2105376126,124,-33554432,134480386,269488144,16,2080374784,2084864642,-2105376126,124,2080374784,-2105376126,33686142,124,0,269484032,268435456,16,0,269484032,268435456,2101264,0,537921540,135274560,4,0,16646144,65024,0,0,135274560,537921540,64,2080374784,201491074,268439568,16,2080374784,-1430617470,-2139054934,124,939524096,-2105376188,-2105376002,130,-67108864,-58555774,-2105376126,252,2080374784,-2139062142,-2105376640,124,-134217728,-2105376124,-2071821694,248,-33554432,-58687360,-2139062144,254,-33554432,-58687360,-2139062144,128,2080374784,-1635745662,-2105376126,126]},{"sector":15,"length":512,"data":[-2113929216,-25001342,-2105376126,130,2080374784,269488144,269488144,124,1040187392,67372036,-2080111612,120,-2080374784,-1063219064,-2071424864,130,-2147483648,-2139062144,-2139062144,254,-2113929216,-1835881786,-2105376126,130,-2113929216,-1970101566,-2105376122,130,2080374784,-2105376126,-2105376126,124,-67108864,-58555774,-2139062144,128,2080374784,-2105376126,-1835887998,264316,-67108864,-58555774,-2105376124,130,2080374784,811630722,-2105409012,124,-33554432,269488144,269488144,16,-2113929216,-2105376126,-2105376126,124,-2113929216,-2105376126,675578498,16,-2113929216,-2105376126,-1433234798,68,-2113929216,271074434,-2105392088,130,-2113929216,675578498,269488144,16,-33554432,268960770,-2139078624,254,939524096,538976288,538976288,56,0,1082130432,67637280,2,939524096,134744072,134744072,56,1143476224,130,0,0,0,0,0,16646144,538968064,4128,0,0,0,74973184,-2071692284,126,-2147483648,-1027833728,-2105376126,252,0,-2105802752,-2105507712,124,33554432,-2038824446,-2105376126,126,0,-2105802752,-2139029886,124,469762048,553132064,538976288,32,0,-2105671680,-2038267262,2080506490]}],[{"sector":1,"length":512,"data":[-2147483648,-1027833728,-2105376126,130,268435456,275775504,269488144,124,134217728,137887752,134744072,1879574536,-2147483648,-1736015744,-2071424800,130,1610612736,538976288,538976288,28,0,-1830027264,-1835887982,146,0,-1027866624,-2105376126,130,0,-2105802752,-2105376126,124,0,-1027866624,-1031634302,-2139062084,0,-2105671680,-2038267262,33686138,0,-1027866624,-2139062144,128,0,-2139226112,33717376,252,0,553394208,538976288,28,0,-2105409536,-2038267262,122,0,-2105409536,675578498,16,0,-2105409536,-1835887998,108,0,1149370368,1143476264,130,0,-2105409536,-2038267262,2080506490,0,83755008,1075843080,254,201326592,1611665424,269488144,12,269484032,269488144,269488144,269488144,1610612736,202379280,269488144,96,1644167168,35986,0,0,0,672137216,-2105376188,254,2080374784,-2139062142,-2105376640,1879576700,1140850688,-2105409468,-2038267262,122,268959744,-2105802720,-2139029886,126,672137216,41680964,-2105377278,126,4470784,-2105392072,-2105344382,130,270532608,41680904,-2105377278,126,2113929216,1928524530,303174162,18,0,-2105802752,-2105507712,1879576700]},{"sector":2,"length":512,"data":[672137216,-2105802684,-2139029886,126,1140850688,-2105802684,-2139029886,126,270532608,-2105802744,-2139029886,126,1207959552,275775560,269488144,124,672137216,275775556,269488144,124,0,0,0,16711935,798720,-2105392072,-2105344382,130,-2072510464,-2075643840,137382020,30852,3148800,-2139062018,-2139062020,254,798720,-2139062018,-2139062020,254,4470784,-2139062018,-2139062020,254,672137216,-2105802684,-2105376126,124,4473856,-2139062018,-2139062020,254,4473856,269488252,269488144,124,672137216,-2105409468,-2038267262,122,270532608,-2105409528,-2038267262,122,0,-2072476672,2021950596,132,4470784,-2105376132,-2105376126,124,4473856,-2105376126,-2105376126,124,268435456,-2138932208,276595328,16,939524096,-264224700,1916813376,204,1597440,-2105376126,-2105376126,124,4470784,-2105376126,-2105376126,124,201326592,269488146,269488252,1620054032,269484032,1052688,269488128,4112,134479872,8208,0,0,268959744,-2105802720,-2105376126,124,268959744,-2105409504,-2038267262,122,1145307136,0,0,0,0,0,0,7342096,283115520,-535818144,0,0,0,0,255,0]},{"sector":3,"length":512,"data":[4470784,269488252,269488144,124,0,-67108864,-2139062144,0,0,-67108864,67372036,0,-2139095040,546343044,70811712,3936264,-2139095040,277382272,344736800,263228,283115520,149164640,-1975115248,131614,0,1210318848,2377872,0,0,1217396736,9455652,0,289673472,289673540,289673540,289673540,1437226308,1437226410,1437226410,1437226410,-579347030,-579347081,-579347081,-579347081,134744183,134744072,134744072,134744072,134744072,134744072,134744312,134744072,134744072,150472712,134744312,134744072,606348296,606348324,606348516,606348324,36,0,606348540,606348324,36,150470656,134744312,134744072,606348296,82060324,606348516,606348324,606348324,606348324,606348324,606348324,36,83623936,606348516,606348324,606348324,82060324,252,0,606348288,606348324,252,0,134744064,150472712,248,0,0,0,134744312,134744072,134744072,134744072,15,0,134744064,134744072,255,0,0,0,134744319,134744072,134744072,134744072,134744079,134744072,8,0,255,0,134744064,134744072,134744319,134744072,134744072,135202824,134744079,134744072,606348296,606348324,606348327,606348324]},{"sector":4,"length":512,"data":[606348324,539436068,63,0,0,540999680,606348327,606348324,606348324,15148068,255,0,0,16711680,606348519,606348324,606348324,539436068,606348327,606348324,36,16711680,255,0,606348288,15148068,606348519,606348324,134744100,16713736,255,0,606348288,606348324,255,0,0,16711680,134744319,134744072,8,0,606348543,606348324,606348324,606348324,63,0,134744064,135202824,15,0,0,135200768,134744079,134744072,8,0,606348351,606348324,606348324,606348324,606348543,606348324,134744100,150931464,134744319,134744072,134744072,134744072,248,0,0,0,134744079,134744072,-248,-1,-1,-1,255,0,-1,-1,-252645121,-252645136,-252645136,-252645136,252645360,252645135,252645135,252645135,-241,-1,0,0,0,-2005663744,-2004318072,118,939524096,-1736145852,-2105376124,8421532,-33554432,-2139062144,-2139062144,128,0,1157496832,1145324612,66,-33554432,135274560,-2143281136,254,0,-2005008384,-2071690108,120,0,-2071724032,-997948284,-2139062086,0,-1870790656,269488144,12]},{"sector":5,"length":512,"data":[268435456,-1835888004,2089980562,16,939524096,-25001404,1149403778,56,939524096,-2105376188,675578498,238,2080374784,2014322752,-2105376124,124,0,-1838415872,7115410,0,0,-1837363184,-1835887982,269488252,0,-2105802752,-2105509760,124,0,-2105376132,-2105376126,130,0,65024,-33554178,0,268435456,285085712,-33550320,0,0,67637280,2101256,124,0,1075843080,528416,124,201326592,269488658,269488144,269488144,269488144,269488144,-1869606896,96,0,1052672,269484286,0,0,-1738276864,9987072,0,-2005925888,7374984,0,0,0,0,12336,0,0,0,12288,0,135135232,134744072,405325832,8,1152909312,1145324612,0,0,-1872756736,-264232944,0,0,0,2088532992,2088533116,0,0,0,0,0,-1459610624,16777377,1095189760,538976288,221472,0,9542912,16777472,269485568,8,1,0,0,0,2080374784,-2102754686,-2104313214,124,2080374784,-19464450,-17905922,124,0,-26476544,272137470,0,0,2084048896,272137470,0,0,943208448]},{"sector":6,"length":512,"data":[284094190,56,0,2084048896,274005758,56,0,402653184,1588284,0,-256,-402653185,-1588285,-1,255,1715208192,1013334594,0,-256,-1715208193,-1013334595,-1,503316735,269486598,-2105376132,124,2080374784,2088927874,276566032,16,503316480,269491730,-252702704,224,1040187392,572669474,-319934942,192,268435456,-2109440878,2084864642,4242,0,-524288000,-521078544,192,0,941096960,947452024,24,268435456,278025272,945066512,16,1140850688,1145324612,1140868164,68,2113929216,1928524530,303174162,18,-2072510464,-2075643840,137382020,30852,0,0,-16843264,254,268435456,278025272,945066512,254,268435456,278025272,269488144,16,268435456,269488144,945066512,16,0,67637248,268961022,0,0,1075843072,270549246,0,0,-2147483648,16679040,0,0,1109655552,2376447,0,0,940572672,16711292,0,0,-16908288,1063036,0,0,0,0,0,268435456,269488144,268439568,16,1212678144,18504,0,0,0,1157514308,1157514308,68,269484032,-2138008964,-1844313476,1052796,0,140833376]},{"sector":7,"length":512,"data":[-1639178224,12,805306368,843597896,-2071690166,122,269484032,8208,0,0,134217728,538976272,270540832,8,536870912,134744080,268961800,32,0,945033216,273955070,0,0,269488128,269488382,0,0,0,268435456,2101264,0,0,254,0,0,0,805306368,48,0,67239936,1075843080,128,939524096,-1836940732,1149403794,56,268435456,269504560,269488144,124,2080374784,67240578,1075843080,254,2080374784,1006764674,-2113797630,124,67108864,1143215116,67436164,4,-33554432,-58687360,-2113797502,124,2080374784,-58687360,-2105376126,124,-33554432,134480386,269488144,16,2080374784,2084864642,-2105376126,124,2080374784,-2105376126,33686142,124,0,269484032,268435456,16,0,269484032,268435456,2101264,0,537921540,135274560,4,0,16646144,65024,0,0,135274560,537921540,64,2080374784,201491074,268439568,16,2080374784,-1430617470,-2139054934,124,939524096,-2105376188,-2105376002,130,-67108864,-58555774,-2105376126,252,2080374784,-2139062142,-2105376640,124,-134217728,-2105376124,-2071821694,248,-33554432,-58687360]},{"sector":8,"length":512,"data":[-2139062144,254,-33554432,-58687360,-2139062144,128,2080374784,-1635745662,-2105376126,126,-2113929216,-25001342,-2105376126,130,2080374784,269488144,269488144,124,1040187392,67372036,-2080111612,120,-2080374784,-1063219064,-2071424864,130,-2147483648,-2139062144,-2139062144,254,-2113929216,-1835881786,-2105376126,130,-2113929216,-1970101566,-2105376122,130,2080374784,-2105376126,-2105376126,124,-67108864,-58555774,-2139062144,128,2080374784,-2105376126,-1835887998,264316,-67108864,-58555774,-2105376124,130,2080374784,811630722,-2105409012,124,-33554432,269488144,269488144,16,-2113929216,-2105376126,-2105376126,124,-2113929216,-2105376126,675578498,16,-2113929216,-2105376126,-1433234798,68,-2113929216,271074434,-2105392088,130,-2113929216,675578498,269488144,16,-33554432,268960770,-2139078624,254,939524096,538976288,538976288,56,0,1082130432,67637280,2,939524096,134744072,134744072,56,1143476224,130,0,0,0,0,0,16646144,538968064,4128,0,0,0,74973184,-2071692284,126,-2147483648,-1027833728,-2105376126,252,0,-2105802752,-2105507712,124,33554432,-2038824446,-2105376126,126,0,-2105802752]},{"sector":9,"length":512,"data":[-2139029886,124,469762048,553132064,538976288,32,0,-2105671680,-2038267262,2080506490,-2147483648,-1027833728,-2105376126,130,268435456,275775504,269488144,124,134217728,137887752,134744072,1879574536,-2147483648,-1736015744,-2071424800,130,1610612736,538976288,538976288,28,0,-1830027264,-1835887982,146,0,-1027866624,-2105376126,130,0,-2105802752,-2105376126,124,0,-1027866624,-1031634302,-2139062084,0,-2105671680,-2038267262,33686138,0,-1027866624,-2139062144,128,0,-2139226112,33717376,252,0,553394208,538976288,28,0,-2105409536,-2038267262,122,0,-2105409536,675578498,16,0,-2105409536,-1835887998,108,0,1149370368,1143476264,130,0,-2105409536,-2038267262,2080506490,0,83755008,1075843080,254,201326592,1611665424,269488144,12,269484032,269488144,269488144,269488144,1610612736,202379280,269488144,96,1644167168,35986,0,0,0,672137216,-2105376188,254,2080374784,-2139062142,-2105376640,1879576700,1140850688,-2105409468,-2038267262,122,268959744,-2105802720,-2139029886,126,672137216,41680964,-2105377278,126,1140850688,41680964,-2105377278,126,270532608,41680904]},{"sector":10,"length":512,"data":[-2105377278,126,605552640,41680920,-2105377278,126,0,-2105802752,-2105507712,1879576700,672137216,-2105802684,-2139029886,126,1140850688,-2105802684,-2139029886,126,270532608,-2105802744,-2139029886,126,1207959552,275775560,269488144,124,672137216,275775556,269488144,124,541065216,275775504,269488144,124,4473856,-2105392072,-2105344382,130,1145321472,-2105392072,-2105344382,130,3148800,-2139062018,-2139062020,254,0,-1838415872,-1869578734,110,1040187392,-24606648,-2004318072,142,672137216,-2105802684,-2105376126,124,1140850688,-2105802684,-2105376126,124,270532608,-2105802744,-2105376126,124,672137216,-2105409468,-2038267262,122,270532608,-2105409528,-2038267262,122,1140850688,-2105409468,-2038267262,2080506490,4473856,-2105376132,-2105376126,124,4473856,-2105376126,-2105376126,124,0,-2038693888,-1029533046,124,939524096,-264224700,1916813376,204,2080374784,-1836415358,-2101173614,124,-134217728,-2131196796,-2004312952,132,201326592,269488146,269488252,1620054032,268959744,41680928,-2105377278,126,268959744,275775520,269488144,124,268959744,-2105802720,-2105376126,124,268959744,-2105409504,-2038267262,122,-1738276864,-1027866624,-2105376126,130,9987072,-1834827134]},{"sector":11,"length":512,"data":[-2105375094,130,70778880,3949628,124,0,1144520704,3687492,124,0,268435456,269484048,-2105376672,124,0,-67108864,-2139062144,0,0,-67108864,67372036,0,-2139095040,546343044,70811712,3936264,-2139095040,277382272,344736800,263228,268435456,269484048,269488144,16,0,1210318848,2377872,0,0,-2072476672,2021950596,132,289673472,289673540,289673540,289673540,1437226308,1437226410,1437226410,1437226410,-579347030,-579347081,-579347081,-579347081,134744183,134744072,134744072,134744072,134744072,134744072,134744312,134744072,134744072,150472712,134744312,134744072,606348296,606348324,606348516,606348324,36,0,606348540,606348324,36,150470656,134744312,134744072,606348296,82060324,606348516,606348324,606348324,606348324,606348324,606348324,36,83623936,606348516,606348324,606348324,82060324,252,0,606348288,606348324,252,0,134744064,150472712,248,0,0,0,134744312,134744072,134744072,134744072,15,0,134744064,134744072,255,0,0,0,134744319,134744072,134744072,134744072,134744079,134744072,8,0,255,0,134744064,134744072]},{"sector":12,"length":512,"data":[134744319,134744072,134744072,135202824,134744079,134744072,606348296,606348324,606348327,606348324,606348324,539436068,63,0,0,540999680,606348327,606348324,606348324,15148068,255,0,0,16711680,606348519,606348324,606348324,539436068,606348327,606348324,36,16711680,255,0,606348288,15148068,606348519,606348324,134744100,16713736,255,0,606348288,606348324,255,0,0,16711680,134744319,134744072,8,0,606348543,606348324,606348324,606348324,63,0,134744064,135202824,15,0,0,135200768,134744079,134744072,8,0,606348351,606348324,606348324,606348324,606348543,606348324,134744100,150931464,134744319,134744072,134744072,134744072,248,0,0,0,134744079,134744072,-248,-1,-1,-1,255,0,-1,-1,-252645121,-252645136,-252645136,-252645136,252645360,252645135,252645135,252645135,-241,-1,0,0,0,-2005663744,-2004318072,118,939524096,-1736145852,-2105376124,8421532,-33554432,-2139062144,-2139062144,128,0,1157496832,1145324612,66,-33554432,135274560,-2143281136,254,0,-2005008384]},{"sector":13,"length":512,"data":[-2071690108,120,0,-2071724032,-997948284,-2139062086,0,-1870790656,269488144,12,268435456,-1835888004,2089980562,16,939524096,-25001404,1149403778,56,939524096,-2105376188,675578498,238,2080374784,2014322752,-2105376124,124,0,-1838415872,7115410,0,0,-1837363184,-1835887982,269488252,0,-2105802752,-2105509760,124,0,-2105376132,-2105376126,130,0,65024,-33554178,0,268435456,285085712,-33550320,0,0,67637280,2101256,124,0,1075843080,528416,124,201326592,269488658,269488144,269488144,269488144,269488144,-1869606896,96,0,1052672,269484286,0,0,-1738276864,9987072,0,-2005925888,7374984,0,0,0,0,12336,0,0,0,12288,0,135135232,134744072,405325832,8,1152909312,1145324612,0,0,-1872756736,-264232944,0,0,0,2088532992,2088533116,0,0,0,0,0,-788521984,16777393,1095189760,538976288,221728,0,10601728,16777472,269485568,8,1,0,0,0,2080374784,-2102754686,-2104313214,124,2080374784,-19464450,-17905922,124]},{"sector":14,"length":512,"data":[0,-26476544,272137470,0,0,2084048896,272137470,0,0,943208448,284094190,56,0,2084048896,274005758,56,0,402653184,1588284,0,-256,-402653185,-1588285,-1,255,1715208192,1013334594,0,-256,-1715208193,-1013334595,-1,503316735,269486598,-2105376132,124,2080374784,2088927874,276566032,16,503316480,269491730,-252702704,224,1040187392,572669474,-319934942,192,268435456,-2109440878,2084864642,4242,0,-524288000,-521078544,192,0,941096960,947452024,24,268435456,278025272,945066512,16,1140850688,1145324612,1140868164,68,2113929216,1928524530,303174162,18,-2072510464,-2075643840,137382020,30852,0,0,-16843264,254,268435456,278025272,945066512,254,268435456,278025272,269488144,16,268435456,269488144,945066512,16,0,67637248,268961022,0,0,1075843072,270549246,0,0,-2147483648,16679040,0,0,1109655552,2376447,0,0,940572672,16711292,0,0,-16908288,1063036,0,0,0,0,0,268435456,269488144,268439568,16,1212678144,18504,0,0]},{"sector":15,"length":512,"data":[0,1157514308,1157514308,68,269484032,-2138008964,-1844313476,1052796,0,140833376,-1639178224,12,805306368,843597896,-2071690166,122,269484032,8208,0,0,134217728,538976272,270540832,8,536870912,134744080,268961800,32,0,945033216,273955070,0,0,269488128,269488382,0,0,0,268435456,2101264,0,0,254,0,0,0,805306368,48,0,67239936,1075843080,128,939524096,-1836940732,1149403794,56,268435456,269504560,269488144,124,2080374784,67240578,1075843080,254,2080374784,1006764674,-2113797630,124,67108864,1143215116,67436164,4,-33554432,-58687360,-2113797502,124,2080374784,-58687360,-2105376126,124,-33554432,134480386,269488144,16,2080374784,2084864642,-2105376126,124,2080374784,-2105376126,33686142,124,0,269484032,268435456,16,0,269484032,268435456,2101264,0,537921540,135274560,4,0,16646144,65024,0,0,135274560,537921540,64,2080374784,201491074,268439568,16,2080374784,-1430617470,-2139054934,124,939524096,-2105376188,-2105376002,130,-67108864,-58555774,-2105376126,252]}]],[[{"sector":1,"length":512,"data":[2080374784,-2139062142,-2105376640,124,-134217728,-2105376124,-2071821694,248,-33554432,-58687360,-2139062144,254,-33554432,-58687360,-2139062144,128,2080374784,-1635745662,-2105376126,126,-2113929216,-25001342,-2105376126,130,2080374784,269488144,269488144,124,1040187392,67372036,-2080111612,120,-2080374784,-1063219064,-2071424864,130,-2147483648,-2139062144,-2139062144,254,-2113929216,-1835881786,-2105376126,130,-2113929216,-1970101566,-2105376122,130,2080374784,-2105376126,-2105376126,124,-67108864,-58555774,-2139062144,128,2080374784,-2105376126,-1835887998,264316,-67108864,-58555774,-2105376124,130,2080374784,811630722,-2105409012,124,-33554432,269488144,269488144,16,-2113929216,-2105376126,-2105376126,124,-2113929216,-2105376126,675578498,16,-2113929216,-2105376126,-1433234798,68,-2113929216,271074434,-2105392088,130,-2113929216,675578498,269488144,16,-33554432,268960770,-2139078624,254,939524096,538976288,538976288,56,0,1082130432,67637280,2,939524096,134744072,134744072,56,1143476224,130,0,0,0,0,0,16646144,538968064,4128,0,0,0,74973184,-2071692284,126,-2147483648,-1027833728,-2105376126,252]},{"sector":2,"length":512,"data":[0,-2105802752,-2105507712,124,33554432,-2038824446,-2105376126,126,0,-2105802752,-2139029886,124,469762048,553132064,538976288,32,0,-2105671680,-2038267262,2080506490,-2147483648,-1027833728,-2105376126,130,268435456,275775504,269488144,124,134217728,137887752,134744072,1879574536,-2147483648,-1736015744,-2071424800,130,1610612736,538976288,538976288,28,0,-1830027264,-1835887982,146,0,-1027866624,-2105376126,130,0,-2105802752,-2105376126,124,0,-1027866624,-1031634302,-2139062084,0,-2105671680,-2038267262,33686138,0,-1027866624,-2139062144,128,0,-2139226112,33717376,252,0,553394208,538976288,28,0,-2105409536,-2038267262,122,0,-2105409536,675578498,16,0,-2105409536,-1835887998,108,0,1149370368,1143476264,130,0,-2105409536,-2038267262,2080506490,0,83755008,1075843080,254,201326592,1611665424,269488144,12,269484032,269488144,269488144,269488144,1610612736,202379280,269488144,96,1644167168,35986,0,0,0,672137216,-2105376188,254,939524096,-2105376188,-2105376002,130,-67108864,-125796224,-2071821692,248,-67108864,-58555774,-2105376126,252]},{"sector":3,"length":512,"data":[-33554432,-2139062142,-2139062144,128,1006632960,606348324,-2075900860,8553214,-33554432,-58687360,-2139062144,254,-1845493760,945050708,-1835888044,146,-1140850688,470057666,-1040055806,124,-2113929216,-1836415358,-2105359710,130,3687424,-1970896254,-2101173614,130,-2046820352,-527398776,-2071424864,130,1040187392,572662306,572662306,194,-2113929216,-1835881786,-2105376126,130,-2113929216,-25001342,-2105376126,130,2080374784,-2105376126,-2105376126,124,-33554432,-2105376126,-2105376126,130,-67108864,-58555774,-2139062144,128,2080374784,-2139062142,-2105376640,124,-33554432,269488144,269488144,16,0,-2105376126,-2113783226,124,268435456,-1835888004,2089980562,16,-2113929216,271074434,-2105392088,130,-2080374784,-2071690108,-2071690108,131838,-2113929216,-2038267262,33686138,2,-1845493760,-1835887982,-1835887982,254,-1845493760,-1835887982,-1835887982,131838,-536870912,740303008,572662322,60,-2113929216,-1300069758,-1970631990,242,1073741824,1547714624,1111638626,124,-1207959552,503481028,-1006501374,120,-1946157056,-225275246,-1835887982,140,2113929216,2122482306,-2105392606,130,0,74973184,-2071692284,126,67108864,-994541448,1149403778,56,0,1115422720,1111653442,124]},{"sector":4,"length":512,"data":[0,1148977152,1077952576,64,0,607911936,1143219236,8553214,0,-2105802752,-2139029886,124,0,1423310848,-1839974316,146,0,1115422720,1107434500,124,0,-2038300672,-1029533046,130,1140850688,-2038300616,-1029533046,130,0,1212547072,1145598024,66,0,574488576,572662306,194,0,1715601408,1111638618,66,0,1111621632,1111653954,66,0,-2105802752,-2105376126,124,0,1115553792,1111638594,66,289673472,289673540,289673540,289673540,1437226308,1437226410,1437226410,1437226410,-579347030,-579347081,-579347081,-579347081,134744183,134744072,134744072,134744072,134744072,134744072,134744312,134744072,134744072,150472712,134744312,134744072,606348296,606348324,606348516,606348324,36,0,606348540,606348324,36,150470656,134744312,134744072,606348296,82060324,606348516,606348324,606348324,606348324,606348324,606348324,36,83623936,606348516,606348324,606348324,82060324,252,0,606348288,606348324,252,0,134744064,150472712,248,0,0,0,134744312,134744072,134744072,134744072,15,0,134744064,134744072,255,0,0,0,134744319,134744072]},{"sector":5,"length":512,"data":[134744072,134744072,134744079,134744072,8,0,255,0,134744064,134744072,134744319,134744072,134744072,135202824,134744079,134744072,606348296,606348324,606348327,606348324,606348324,539436068,63,0,0,540999680,606348327,606348324,606348324,15148068,255,0,0,16711680,606348519,606348324,606348324,539436068,606348327,606348324,36,16711680,255,0,606348288,15148068,606348519,606348324,134744100,16713736,255,0,606348288,606348324,255,0,0,16711680,134744319,134744072,8,0,606348543,606348324,606348324,606348324,63,0,134744064,135202824,15,0,0,135200768,134744079,134744072,8,0,606348351,606348324,606348324,606348324,606348543,606348324,134744100,150931464,134744319,134744072,134744072,134744072,248,0,0,0,134744079,134744072,-248,-1,-1,-1,255,0,-1,-1,-252645121,-252645136,-252645136,-252645136,252645360,252645135,252645135,252645135,-241,-1,0,0,0,-1027866624,-1031634302,-2139062084,0,-2105802752,-2105507712,124,0,276561920,269488144,16]},{"sector":6,"length":512,"data":[0,-2105409536,673727556,1075843088,268435456,-1837363184,-1835887982,269488252,0,1149370368,1143476264,130,0,-2071724032,-2071690108,131838,0,-2071724032,67400844,4,0,-1835925504,-1835887982,254,0,-1835925504,-1835887982,131838,0,-1595932672,572666412,60,0,-2105409536,-1970615630,242,0,1077936128,1111646812,124,0,1115422720,1107435010,124,0,-1836318720,-1835863406,140,0,-2072248320,1143241860,132,4473856,-2139062018,-2139062020,254,1111621632,-2105802752,-2139029886,126,973078528,-260013498,1182826624,56,0,1111359488,1111504960,62,4473856,269488252,269488144,124,1140850688,275775556,269488144,124,3687424,-2105376126,-2113783226,124,1140850688,-2105409480,673727556,1075843088,-2005925888,7374984,0,0,0,0,12336,0,0,0,12288,0,135135232,134744072,405325832,8,0,-1429369462,-2004317288,136,0,-2072476672,2021950596,132,0,2088532992,2088533116,0,0,0,0,0,-117433344,16777409,1095189760,538976288,222496,0,11660544,16777472,269485568,8,1,0]},{"sector":7,"length":512,"pattern":0,"data":[0,0,2080374784,-2102754686,-2104313214,124,2080374784,-19464450,-17905922,124,0,-26476544,272137470,0,0,2084048896,272137470,0,0,943208448,284094190,56,0,2084048896,274005758,56,0,402653184,1588284,0,-256,-402653185,-1588285,-1,255,1715208192,1013334594,0,-256,-1715208193,-1013334595,-1,503316735,269486598,-2105376132,124,2080374784,2088927874,276566032,16,503316480,269491730,-252702704,224,1040187392,572669474,-319934942,192,268435456,-2109440878,2084864642,4242,0,-524288000,-521078544,192,0,941096960,947452024,24,268435456,278025272,945066512,16,1140850688,1145324612,1140868164,68,2113929216,1928524530,303174162,18,-2072510464,-2075643840,137382020,30852,0,0,-16843264,254,268435456,278025272,945066512,254,268435456,278025272,269488144,16,268435456,269488144,945066512,16,0,67637248,268961022,0,0,1075843072,270549246,0,0,-2147483648,16679040,0,0,1109655552,2376447,0,0,940572672,16711292,0,0,-16908288,1063036]},{"sector":8,"length":512,"data":[0,0,268435456,269488144,268439568,16,1212678144,18504,0,0,0,1157514308,1157514308,68,269484032,-2138008964,-1844313476,1052796,0,140833376,-1639178224,12,805306368,843597896,-2071690166,122,269484032,8208,0,0,134217728,538976272,270540832,8,536870912,134744080,268961800,32,0,945033216,273955070,0,0,269488128,269488382,0,0,0,268435456,2101264,0,0,254,0,0,0,805306368,48,0,67239936,1075843080,128,939524096,-1836940732,1149403794,56,268435456,269504560,269488144,124,2080374784,67240578,1075843080,254,2080374784,1006764674,-2113797630,124,67108864,1143215116,67436164,4,-33554432,-58687360,-2113797502,124,2080374784,-58687360,-2105376126,124,-33554432,134480386,269488144,16,2080374784,2084864642,-2105376126,124,2080374784,-2105376126,33686142,124,0,269484032,268435456,16,0,269484032,268435456,2101264,0,537921540,135274560,4,0,16646144,65024,0,0,135274560,537921540,64,2080374784,201491074,268439568,16,2080374784,-1430617470]},{"sector":9,"length":512,"data":[-2139054934,124,939524096,-2105376188,-2105376002,130,-67108864,-58555774,-2105376126,252,2080374784,-2139062142,-2105376640,124,-134217728,-2105376124,-2071821694,248,-33554432,-58687360,-2139062144,254,-33554432,-58687360,-2139062144,128,2080374784,-1635745662,-2105376126,126,-2113929216,-25001342,-2105376126,130,2080374784,269488144,269488144,124,1040187392,67372036,-2080111612,120,-2080374784,-1063219064,-2071424864,130,-2147483648,-2139062144,-2139062144,254,-2113929216,-1835881786,-2105376126,130,-2113929216,-1970101566,-2105376122,130,2080374784,-2105376126,-2105376126,124,-67108864,-58555774,-2139062144,128,2080374784,-2105376126,-1835887998,264316,-67108864,-58555774,-2105376124,130,2080374784,811630722,-2105409012,124,-33554432,269488144,269488144,16,-2113929216,-2105376126,-2105376126,124,-2113929216,-2105376126,675578498,16,-2113929216,-2105376126,-1433234798,68,-2113929216,271074434,-2105392088,130,-2113929216,675578498,269488144,16,-33554432,268960770,-2139078624,254,939524096,538976288,538976288,56,0,1082130432,67637280,2,939524096,134744072,134744072,56,1143476224,130,0,0,0,0,0,16646144,538968064,4128]},{"sector":10,"length":512,"data":[0,0,0,74973184,-2071692284,126,-2147483648,-1027833728,-2105376126,252,0,-2105802752,-2105507712,124,33554432,-2038824446,-2105376126,126,0,-2105802752,-2139029886,124,469762048,553132064,538976288,32,0,-2105671680,-2038267262,2080506490,-2147483648,-1027833728,-2105376126,130,268435456,275775504,269488144,124,134217728,137887752,134744072,1879574536,-2147483648,-1736015744,-2071424800,130,1610612736,538976288,538976288,28,0,-1830027264,-1835887982,146,0,-1027866624,-2105376126,130,0,-2105802752,-2105376126,124,0,-1027866624,-1031634302,-2139062084,0,-2105671680,-2038267262,33686138,0,-1027866624,-2139062144,128,0,-2139226112,33717376,252,0,553394208,538976288,28,0,-2105409536,-2038267262,122,0,-2105409536,675578498,16,0,-2105409536,-1835887998,108,0,1149370368,1143476264,130,0,-2105409536,-2038267262,2080506490,0,83755008,1075843080,254,201326592,1611665424,269488144,12,269484032,269488144,269488144,269488144,1610612736,202379280,269488144,96,1644167168,35986,0,0,0,672137216,-2105376188,254,0,0]},{"sector":11,"length":512,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,947945472,-2105376188,-2105376002,130,0,0,0,0,0,0,12336,0,0,-67108864,67372036,0,269484032,1052688,269488128,4112,538968064,4128,0,0,269484032,8208,0,0,2122350592,2084585536,1077952576,126,0,0,254,0,1115717632,2118271554,1111638594,66,2088796160,269488144,269488144,124,4473856,269488252,269488144,124,1015054336,1111638594,1111638594,60,0,0,0,0,0,0,0,0,8421376,1145324674,269488168,16,4473856,1145324674,269488168,16,2080374784,-1566401918,8159898,0,947945472,-2105376188,675578498,198,-1872756736,-264232944,0,0,283115520,-535818144,0,0,269484032,-2005663728,-2004318072,118,939524096,-264224700,1916813376,204,269484032,-2105802736,-2105509760,124,269484032,1119617040,1111638594,33686082,269484032,271581200,269488144,28,0,271581388]},{"sector":12,"length":512,"pattern":134744072,"data":[269488144,28,269484032,271581398,269488144,28,269484032,-2105802736,-2105376126,124,269484032,-2105409520,-2105376126,124,939524096,-2105376188,-2105376002,130,-67108864,-58555774,-2105376126,252,-33554432,-2139062144,-2139062144,128,268435456,1145317416,-2105376188,254,-33554432,-58687360,-2139062144,254,-33554432,268960770,-2139078624,254,-2113929216,-25001342,-2105376126,130,-2139095040,546343044,70811712,3936264,939524096,-25001404,1149403778,56,2080374784,269488144,269488144,124,0,1210318848,2377872,0,0,1217396736,9455652,0,289673472,289673540,289673540,289673540,1437226308,1437226410,1437226410,1437226410,-579347030,-579347081,-579347081,-579347081,134744183,134744072,134744072,134744072,134744072,134744072,134744312,134744072,-2080374776,-1063219064,-2071424864,130,268435456,1145317416,-2105376188,130,-2113929216,-1835881786,-2105376126,130,-2113929216,-1970101566,-2105376122,130,606348288,82060324,606348516,606348324,606348324,606348324,606348324,606348324,36,83623936,606348516,606348324,606348324,82060324,252,0,-33554432,2080374784,0,254,2080374784,-2105376126,-2105376126,124,0,0,134744312]},{"sector":13,"length":512,"data":[15,0,134744064,134744072,255,0,0,0,134744319,134744072,134744072,134744072,134744079,134744072,8,0,255,0,134744064,134744072,134744319,134744072,-33554424,-2105376126,-2105376126,130,-67108864,-58555774,-2139062144,128,606348288,539436068,63,0,0,540999680,606348327,606348324,606348324,15148068,255,0,0,16711680,606348519,606348324,606348324,539436068,606348327,606348324,36,16711680,255,0,606348288,15148068,606348519,606348324,-33554396,135274560,-2143281136,254,-33554432,269488144,269488144,16,-2113929216,675578498,269488144,16,268435456,-1835888004,2089980562,16,-2113929216,271074434,-2105392088,130,268435456,1414812818,269498452,16,939524096,-2105376188,675578498,238,0,-2005663744,-2004318072,118,939524096,-1736145852,-2105376124,8421532,0,-1572732928,134747154,135533588,134744064,134744072,248,0,0,0,134744079,134744072,-248,-1,-1,-1,255,0,-1,-1,2080375039,2014322752,-2105376124,124,0,-2105802752,-2105509760,124,-256,-1,0,0,-67108864,1075843080]},{"sector":14,"length":512,"data":[-2139062144,1835644,0,1119617024,1111638594,33686082,1006632960,304235074,-2004581874,112,0,271581184,269488144,28,0,1212416000,1145598032,66,-2147483648,270540864,1145317392,130,0,-2071724032,-997948284,8421562,0,583139328,673456674,48,-67108864,-2139078624,-2139062152,787068,0,-2105802752,-2105376126,124,0,1157496832,1145324612,66,0,1111228416,-1031634302,-2139062084,0,-2005008384,-2071690108,120,0,-2105802752,1082163328,787004,0,-1870790656,269488144,12,269484032,16,0,0,0,0,248,0,268435456,285085712,-33550320,0,0,-2105409536,-2105376126,124,0,-1837363184,-1835887982,269488252,0,-1539178496,269494308,-2075506648,-2072510464,-2075643840,137382020,30852,0,-1844445184,-1835887982,269488252,269484032,214,0,0,-2005925888,7374984,0,0,1140850688,68,0,0,0,-2109472768,-1835887998,108,0,-2105409338,-2105376126,124,269484032,-2105409322,-2105376126,124,269484032,-2109472752,-1835887998,108,0,2088532992,2088533116,0,0,0,0,0,1292504320,1869767529]},{"sector":15,"length":512,"pattern":0,"data":[1952870259,760433952,542330692,539578920,1701080899,1734430752,1850286181,1836216166,1869182049,774381678,692670531,1818838560,1225395557,958418771,540095538,1953653072,1126183712,1819307375,1953390953,829962272,1866866742,225670254,6666]}],[{"sector":1,"length":512,"pattern":0,"data":[33446477,35,18808864,75890687,128,69795856,30,1]},{"sector":2,"length":512,"data":[0,0,0,0,-1192457387,-1209532322,-396994776,1187448314,-352321026,-27358427,1988879313,-1204748538,-397409970,-998032278,4372484,21936208,1012721744,-16464765,1183579718,-28952316,1320735614,-118992895,46433031,-1996447256,112763462,-504868852,46433057,-1202667477,-397407128,-998032278,75399940,-402295551,1810563730,-1744763744,-1996472019,1183687750,1996443814,576252068,168084611,-1207011904,-1202716604,-397410300,-998045817,1354771204,1342990520,-2093209112,2122515652,393478306,-2086373633,1988974828,385649574,2930951,-2081905166,-15340798,-326917002,-1502180008,118946955,-234869575,52553893,727368835,166219968,46433063,1600045099,-1017256565,-1192457387,-941096942,1187468839,-956301072,64582,-899385,-28915713,1187446784,-385875718,1187447145,-1207959304,-1202714720,-397407142,-998040402,-1606515964,57933831,-1207904279,104401910,963970982,-1576273248,109052164,-968883964,973145350,-112953,-16454657,-1593023994,104400808,57805922,-1962864407,915142750,76156002,4491144,-336050433,201242846,128321081,44130933,68586252,-196703988,-336177527,-60912880,-1997650294,-16709497,1191181382,-195115788,-2012771802,-1073025466,-1070865547,208189520,991750224,-955988861,-1466,117376235,-1465840542,1644574983,-385650164,1586167973,1647741944,-2012968436,-16743289,-554960826,206847617,494209499,15761027,1187448693]},{"sector":3,"length":512,"data":[-335544336,165394558,440400,102885456,-352009085,99346542,1048799723,1962870688,-1961563299,915142750,76156002,12879752,-506113,-1593023994,104400808,-479064990,755474593,138215425,51803904,-13724736,-1207801177,-1202716476,-1326776318,-352271176,12892327,309328,39035627,39584353,39912033,39912033,39912033,1187448299,-1593835278,1587742628,128491788,-2096340317,1946219134,-24188669,16678531,2122521204,343212282,15761027,1152913013,79187968,2095599616,79987461,16416387,2122519668,242548990,1342211256,1342178488,-2096799000,2122515652,343146736,16678531,-608694667,79187977,1223184384,79987461,16678531,2122521204,343146746,15761027,-608694668,45633545,686313472,79987461,1592805003,-1017256565,-1192457387,-1276641190,-28915931,535494656,15288055,-1927973856,-1957648826,1090911814,1337479168,-471314430,113541928,-1912715521,-11491770,-1545011594,79987487,-797589494,-1017256565,871140181,628156608,4671223,-1207012064,-1202714149,-397410300,-998046529,71732484,447408208,184730755,-1207012160,-1202716604,-397410300,-998046557,1548126724,1183334660,88524292,105301562,122078812,1397147392,648019970,1178179596,-955810724,18246,1187448299,-1203765177,-397407226,-998039932,1354771202,1342990520,-2093412888,251528388,112725050,-1125625844,46433054,-1202667477,-397407128,-998033166,71732484,1551302480,-2095100952,-1070922556]},{"sector":4,"length":512,"data":[208189520,953739344,1560593539,-326412861,-402620232,-145349446,536889158,1152913012,79187968,149442560,79987460,1353467533,1342245048,-2095318040,2028471492,1548106525,1996429940,525658204,184730755,-15895360,-118989706,46433055,896843787,-396593409,-998039647,1975520002,1551302413,-2095063320,-1073020220,-1070920332,374864,61990992,-1207647101,-1202716604,-397410300,-998046813,1354771204,1342990520,-2093464088,1183646916,-2115481428,46433049,360038411,1342331576,1353664141,-2095379992,-661977916,1946173312,8697870,309328,57010256,721732739,1756909760,132665356,79987512,-1733540214,1342193965,-2095112984,-1073020220,1183453813,1093507244,1424510976,46433055,225755147,-1202667477,-397410299,-998046937,1354771204,1342990520,-2093495832,1183450308,1093507244,-62486272,1968981561,8697870,309328,50194512,-1929067389,-397366202,-998033014,1886732290,1350583949,1342181560,1353467533,-2095457816,1950353092,-1790511610,-1207012080,-1202716540,-397410300,-998047033,-1404662524,936044624,-1962752893,-1404924432,-1191295351,-11533731,401145462,79987511,1350583949,-1924087765,-397366202,-998041198,242499590,1342211256,1342178232,-2096986392,1586169028,509694,1353467533,1342457485,-2093538840,1187448004,-1923088313,-11533242,1978162294,79987485,-1202667477,-397407128,-998033662,201766916,476244048,721601667,1756909760,-337096692,79987510,205129470,1342965432]},{"sector":5,"length":512,"data":[-2095277336,-1070923068,208189520,919660624,1577370755,-1017256565,-1276592077,127973410,207272016,258795600,-167459709,17280006,-1598548620,-397389817,-998043678,112644,565897296,-1023228797,-1192457387,2145910806,71732002,1946157373,146765,54359668,-385649408,71106691,-385649408,87883915,-385649408,104661134,-385649408,742195345,-385647359,859635860,-385647103,1187381388,1183383792,-330905602,1187447039,-956301078,126534,1187387627,1187447024,-956299010,126022,15353543,-297351424,1183514626,77060,1979712829,11200771,781434883,129935359,15746758,33441479,-330905856,1187446786,-352321046,-263797040,-28915968,1187446786,-352256020,-263797015,-28915968,-638910454,15746758,217990855,-958141696,-956239802,261702,28885995,-571977728,46433056,1183553771,-196703994,-956932468,-972295610,-973016250,-352257978,21542933,-1930148215,1187444318,1187384306,1187381491,1187381752,1187385593,1187381498,1187381755,1183523068,207266814,-1544665461,1183648860,207791090,2122390251,2080451588,75399477,780075315,-1543616885,1183517786,207397870,-1544927605,1183452254,207659760,-1561573750,-1598550943,1522028551,1877495820,79987470,28842219,1172852736,46433056,126094571,119932710,121440038,116786982,1946224556,1543948078,-956300788,810502,1611056640,113639436,-1207890847,-1202714720,-397407142,-998044118,112644,537061456,-1962752893]},{"sector":6,"length":512,"data":[1438866917,45673611,549775360,754861767,1354771201,-385976577,-997982674,-28901628,872316545,736787969,-773304128,1575324447,-326412861,-1746354125,108461856,-402360577,-997982714,112644,531818576,1560462467,-326412861,2011742259,-1173960928,-972575225,506886,128845510,-1358510592,113705479,163579824,129107655,113641929,-956168268,-771246842,-1224292599,-972429305,506118,163579591,113705217,2498,163841735,113708022,38668742,164103878,-922302720,-956169975,17419014,-855193856,-955515383,1309265670,-788085246,113704969,2514,164890311,113704960,206703062,165152455,113640014,-1207891494,-1202716062,-397407781,-998034450,-402209020,-956301303,649734,-335100160,-955493879,1309273606,-267991550,1706557705,-239579134,-1008185335,79987507,207488711,113704960,129633380,-1560000885,-1017312158,106058576,-1899416745,-1191234623,11670062,-1942605875,906129926,40910473,-1307431240,909102338,41551500,2017364278,305051650,801965234,-1979282378,1049179650,783811208,-855199214,109852207,-1992949138,-1711117250,5481,1778814006,1049179650,-1942617496,906135046,42221193,1411738,109852160,-1992949122,-1207796674,145887790,-1942605875,906138118,43007625,-1559836874,906628354,49022662,113718820,680,-1442396362,-1711273470,5444,-1777955786,1049179650,434635412,3205120,1358971880,1912623848,123689224,-346530982,214205188]},{"sector":7,"length":512,"data":[1448135673,1660991518,119415245,906654239,43792009,-1643738058,-1017618942,-1153171272,-768409600,-427810355,30310401,-851181128,12108577,113476,567136819,-1207841152,567100417,-852446013,369507617,-336067723,146712,-4520589,-1157370881,28835842,47360,-4849486,105956345,-2003151529,1912602634,-98290,100955384,100854559,1576504095,-883423393,-164408490,-25114317,906589695,43302084,686539660,1946339062,-1127991799,-1014234504,322771691,1024356864,158793767,-2068003786,-339506174,-1127991801,-1014234520,1979710339,-98281,-336002187,-1465698803,-18430,855638461,216791286,1946221443,5564419,-133904765,-922024334,-1695874443,33456284,1431447925,1347880529,-855310152,1493122095,-661976715,-855309640,-117314769,123667827,-2096698535,216532676,-346399488,-401682687,1583087611,-1185916981,-1070399489,-772296974,-1017161655,1963064195,1048786465,1962869392,-49895,911215989,906143905,42999551,906357592,42999551,-919397653,1962933888,1300899334,638184195,74790200,55413286,-117127293,200813427,-2145815351,91553790,-351978714,87762435,166396533,-2096794551,-471137081,-2146798855,1979252734,2097358336,839283202,227157741,113653319,-1023409502,1431393104,-1957558697,512308969,-2009726304,-1711102666,2696,594856203,91614475,-352309272,29550595,-396750990,1594294543,57987594,-351902744,113541892,117763065,1928944223,1532583176]},{"sector":8,"length":512,"data":[-352140157,147096324,1397804025,512439890,-75300192,-402295297,65732652,1929410536,-1151749105,567083008,-997989326,283900166,1962933123,1958820619,11593735,-116996989,1532625778,102679384,33129247,45357941,-854226394,-1031135455,503362024,124985094,22383142,-336059955,184726543,638153929,567088522,-210417337,1472405496,-1957493168,-1962467590,-65359655,58044146,-1957963477,1476877259,-1070349473,1333053707,-1273035234,-2083026112,678756857,1344217549,-402290138,509083738,108207878,1111536888,647766477,1964653952,-339637502,-401682687,451674107,-1494724267,1508477951,41099725,-935654421,-398784652,-1962773000,-1021354559,-1157617736,28639236,-98109,-956952204,504132992,-1556181753,178434,-1006698520,-1003071738,184720446,639071487,-134201981,975573108,638022149,1996571962,1195899137,123726315,110048963,-617413978,-147418477,-1828541898,-1439238346,167412482,-1031797386,-2147226825,1095905474,74825739,1014291211,1963194755,175931406,906392876,45299455,-2094732479,242550777,738884736,-13236619,1090695990,-108850709,-2146667253,1965820540,922695174,-1824456013,-1561603533,-1070345677,-1506345162,-768359678,561301771,11543988,1965373478,1698178570,973370369,638481860,1273496970,1191277567,1967735367,-897100061,896855307,1048786509,1962934952,105155116,975581188,41222469,809246699,-771029899,872612980,-2143885333,-16603842,1111623797,1330596169]},{"sector":9,"length":512,"data":[-4586517,-114599937,1610481640,-385649831,-1957625714,108822730,185431040,1225159881,-347650231,283860481,58050827,-2096501922,41287673,-16004813,1465214580,-919383802,-1472298186,997523458,252134646,2093222005,23586818,1156983019,208932103,235357430,1156974196,141888519,-402490172,250282357,185025782,988284277,-402396414,1491600137,-402396416,124911650,1566508889,-2096829602,922290884,44580483,1912960256,-16586493,-1475950794,-1023410174,-1590242765,-952761688,167946758,-25565184,-2021116328,-2092760404,58015995,-33498904,-1192397367,-1992947187,1124248711,13101123,-2133118013,1962935932,-2016987629,757072556,-969522365,537046151,11266115,870003549,243807954,1149895330,1992374793,-1967052257,121960176,-1978305408,-2009724348,1124248711,1967192963,8382467,-344600834,556160,1278741876,705196808,-779483060,185093258,-165317431,1963919172,121959948,637957136,-347667062,-2009704447,1124248711,1967192963,4450307,-613037570,-2147007242,-167110283,1149900148,-2021116406,-2092760404,58015995,-33544984,-152341042,1963919172,121959944,-352160752,1959922189,110048777,-889322842,48822133,1371755776,119428870,-617362549,44842637,1929141224,1493655301,-998046485,1573124358,805782774,-1977216395,-398372859,108264770,21334566,233568336,168135206,1191474368,737536833,1573082617,-1070345677,-1442396362,855642114,121960155,640054560,1156973962,242552071]},{"sector":10,"length":512,"data":[57966760,914302019,44697287,1156972554,125111815,-1442396362,-352318974,121960024,640185616,1156973963,276106503,1954596086,-461356284,113718911,656042,235357430,-952760459,167946758,640346880,-1960442485,1156973141,276106503,1954596598,-427801852,113718911,656042,235357430,-952760459,167946758,121959936,1344959552,842576978,-1407808064,1931595010,113653254,-1976827213,-125105596,1153849434,-1796723702,-2000188420,82512452,-58070896,91544331,766693939,1573082450,-1442396362,-402650622,-768409476,-2093563853,175166,-2014830475,9889792,-1221132490,-1070382846,-402307958,-13238136,1090697014,-402373494,-2093612932,16952382,1609048181,7268352,-1221132490,-1070382846,-402373494,-13238176,1090697014,-402307958,-2093612972,33729598,1149902453,4646917,-1221132490,1149911298,3860484,-1221132490,535314690,3074048,951370581,378339504,567083692,-952758925,175110,113653248,-1020460361,-167623541,1963984708,6503688,1673003894,-1892236544,906144774,44174984,1241235176,-1576125898,-1207601918,1095761968,922695233,1573061292,-1442396362,-402650622,1156972671,494141703,-1119977418,359989250,1006781578,1006926860,-1341751785,-348041119,1349562372,868234049,121960146,-1978895328,1827145028,922695168,-163511627,1965033284,121959942,-1978895344,1424491588,922695168,-1975450951,1223164740,922695168,-1975450951,1156973124,343146759,-1119977418,208994306]},{"sector":11,"length":512,"data":[41684284,3935276,212861557,1442521832,-1338460989,-1407808256,1931595010,113718803,66237,-1190738378,-969524734,771929350,110048963,-2009726292,-402480626,910818035,44174906,817366389,1094799360,-1405681866,1381090050,-1057325026,-1031141258,213126948,-494271765,-678748410,-2145443379,1962412794,-90642414,-930477197,567141002,-336010870,1912648706,-346465788,79987460,117425145,68374,131116,786496,19660882,19726442,19792030,19857593,19923145,19988780,20054383,20120061,1226244682,1919902574,1952671090,1397703712,1919252000,1852795251,1142229517,1667592809,2037542772,1953459744,1886217504,168655220,1851867931,544501614,1629499685,1952804384,1802661751,1769104416,168650102,1768901175,1629516654,1936286752,1919164523,543520361,1629515636,1919509536,1869898597,1864399218,1851859054,1701344367,1919164530,778401385,168626701,1229933086,1683693646,1702259058,1528838705,1986622052,1564095077,1752457584,319425885,1313427274,1769104416,976315766,222572320,1711934730,1919164448,828733033,538976314,538976288,1701860128,1768319331,1629516645,1936286752,1919164523,543520361,1952540788,1818851104,1885413484,1918985584,544432416,1768169569,1952671090,544830063,168652399,538976288,538976288,538976288,538976288,1769104416,775054710,541461005,1769104416,976381302,538976288,538976288,1667592275,1701406313,543236211,1986622052,1869881445]},{"sector":12,"length":512,"data":[1768453920,2032167011,1998615919,544501345,1780510580,544106863,1986622052,221131109,539005194,1752457584,538976288,538976288,1394614304,1768121712,1936025958,1701344288,1919509536,1869898597,1948285298,1752637551,543712105,544567161,1953390967,544175136,1852403562,1769104416,774989174,225724704,538976266,538976288,538976288,538976288,1970085920,1646294131,1835343973,544830576,543452769,1852727651,1646294127,1752440933,1869750373,1679848559,1667592809,2037542772,1342836014,1143939104,538976288,538976288,538976288,1851867936,1936483683,2037276960,1701998624,1970235766,1330258035,1663061577,1634561391,544433262,544370534,543516788,1667592307,1701406313,1919164516,778401385,168626701,1886999615,1330258021,1998605897,1869116521,1881175157,1835102817,1919251557,1869881459,1936288800,1969430644,1852142194,544828532,1852403562,1679844453,1702259058,168636019,1049429774,-1048505714,30081724,-16706042,285213951,1702131781,1684366446,1920091424,622883439,-1928917455,-2095755458,46866625,-16706042,234882303,1936875856,1917132901,544370546,118370597,359874189,-887242365,1475119957,75402070,1342850443,1569392011,72190722,-1962519157,1432291445,603290,-1957208832,92866174,-1996333687,1435042893,141920518,-1983608161,-1990718395,1599998533,-1017256565,1475119957,75402070,1342850443,1569392011,72190722,-1962519157,1432291445,682650,-1957208832,92866174]},{"sector":13,"length":512,"data":[-1996333687,1435042893,141920518,-1983608161,-1990718395,1599998533,-1017256565,1475119957,75402070,1342850443,1569392011,72190722,-1962519157,1432291445,768154,-1957208832,92866174,-1996333687,1435042893,141920518,-1983608161,-1990718395,1599998533,-1017256565,57607879,-1979973632,-956079602,222214,1996932864,-956301309,223238,772196096,-950183164,2080649222,839305020,-953467388,1023685638,102361147,-4713613,-1960422401,255469085,45613939,216619776,1899399425,1431786243,58269325,57673462,-1405192928,1913038056,101574711,1055404660,-166300410,537096198,-655882891,-165483771,1090744326,-347202700,1007126552,-2147125955,17002510,111142979,-2001942157,-1007992057,1714850126,509443,58007177,-1927443674,-2147256010,829697852,1948400768,1879504391,1349845251,21465638,104457266,292750178,-788307295,54739936,529213144,-352288536,1678165862,-352321277,1200236126,1088696833,-670834479,839879206,1959332845,642990863,-1142415477,1064524544,-220052669,56886983,871038979,21465638,-784276430,651690976,-466483318,54583505,260712152,-921965262,1396903796,-400585946,1935343700,-498908406,1678166002,1560282115,244013919,1688273762,1714850563,1746307843,1780386307,1355020291,-1459123418,74776578,56755967,1962949760,108824,113707125,131940,-1336930581,-385895421,-346554220,17885187,-1007041704,-1977200299,-315488177,225757451,-402034803,141754951]},{"sector":14,"length":512,"data":[-503312920,99351030,58142345,-1017292296,8290342,1157854208,-1018824981,57675392,-3610608,645939826,1357841264,721646497,1896219078,915101699,1015022451,-2145159936,1966800764,1678165768,-352319229,1065559582,639136768,67575,113709429,131940,-1813509653,233568256,1342893049,-4979792,1476396008,643286008,-1996193909,637757502,-2010774136,-1588592283,-1993997449,1012400709,638219521,637818249,-351908471,1963080793,1435051526,1011870468,1021867015,1021604872,637957382,-352037496,1963211837,57778446,1166616128,1569465860,640412422,637826441,1342594444,38270502,-1341885439,638184196,33703926,45090164,1476444136,38270502,-402426864,-1017184111,70715078,-1960423424,1975520007,1381191703,1678165847,-1275066109,-402411265,1516240736,401299547,1947205801,1678165776,-402653181,1048773048,1963524964,-352064766,11112508,-955026431,222214,45279232,-2096944408,151217214,11084661,-955223038,222214,43706368,56901251,-1458670327,158605312,56886983,-1343750144,926842880,225771780,56901251,-955878144,151217158,1354979328,168069718,1008235712,-2146732742,1962934652,312837,-219674133,1174500099,1591929670,1381417816,76206218,1912856808,1958742539,780299,32179336,-353679802,1019436634,1007448960,1010987617,608073594,1396370399,1049450246,-92273623,-1929087996,939795518,1343714325,119427665,-1031117388,-1174405189,-4587515,1512164863]},{"sector":15,"length":512,"data":[1569413209,54889985,-2144582845,123721510,809288539,960235634,808191095,-1007041544,1465013072,109021990,168135206,-1274776128,-955716609,151217158,-1325419520,-29956093,1482381919,1381322947,-1979534762,54781956,1927821938,1879504639,225708035,510999868,25067558,-345082624,1879504402,242487299,175454780,8290342,1180333312,975592171,477429830,1349828618,317408582,4602406,-1975106699,975586564,963969094,-1410644666,57673462,638547008,537020407,638022656,32384,-148495756,1946161159,1966750744,2122327561,225771520,3935979,-2144991371,1949958270,99350787,57882249,1566203640,1364247384,1448302162,1577098472,68945607,113704960,1054,69207751,-1578631168,-1558810112,-620100580,-1779951500,-1553632768,-620100578,-1981281164,-1554419200,-620100576,512447093,-75299846,-1591774206,-469105636,-930463115,168042145,-1975945756,538348520,33260292,-377093515,378214123,513868828,1977879044,-1580692961,-469105632,-393603467,1935997571,1824686340,-1268884729,-402149121,267123972,-4956581,-102235216,1678166012,1509951747,-1916577703,-2096891338,41221948,1377701867,-1205920176,-695519232,1515725261,1381090079,76204339,997507082,66666112,-2146470912,74777083,812923452,745811516,758910187,792471156,775692916,1105731188,-1273072898,179998976,199423744,51475922,-1861324095,-1967133882,99350744,32241734,1522633721,1464910681,1899924310,168069635]}]],[[{"sector":1,"length":512,"data":[-401509184,544538711,70715078,80109057,971726592,312926,133637727,762642433,56886983,636157954,76174936,460636170,1946168040,22800395,1179058803,-353679801,-972854622,-1991835644,1577281086,11098207,1342796802,95485876,1492917224,-1924049981,-1190908386,121241609,-498924428,1532576249,-1974316861,1958742532,18343989,2088970866,225720833,268957478,-2145553408,1962934652,1008733207,1007776353,739080058,-1261401504,-402214657,116128720,56886983,1482293257,552119491,-401181696,343212113,57673462,-152144864,1090744326,-347207308,32241926,-121417992,1011962819,1009611789,1009349632,639988746,33717632,-617406862,56461862,637846403,1946171776,650720013,641927562,74711354,222099682,1405311833,1778828881,645931011,1021248368,1010201632,1009939465,1009873964,-2146667232,125116476,977674416,639560640,16940416,-919398542,55413286,192203019,1124074427,1946237478,1022943751,-1017423584,-167548254,17002502,243271029,975176560,-1913984064,990083374,1008301277,-116230865,-12088752,1929156584,-402355707,-346489712,183236621,91565884,57675392,516159552,1048793942,1962935149,1360941093,106256210,-561056205,-849149768,198937633,1599932379,1478449498,914957684,512295787,915080045,512623467,1015219053,974156800,973632004,58130756,1174793209,-118756538,-1021354405,1475119957,75402070,1342850443,1569392011,72190722,-1962519157,1432291445]},{"sector":2,"length":512,"data":[1576558056,108956503,1569260937,72190210,-1996073591,-1969289099,205883844,172329304,-443850914,-1957313699,5683436,1443537384,-2147197301,1966735743,-1744336373,-1996472275,99351622,16533191,-59310336,1353467533,-2097045784,1967129796,-18427,1183678443,-639086420,46433054,1962935101,-339727612,-1404662420,74907472,-2097125400,-1073019708,1183574900,-28931836,1183459819,1357130410,-2096938008,-1073020220,1182991988,334168830,-106869,1065418310,-1962379940,1065418334,-1952025600,126549598,178931336,-3443264,2045248630,46433054,1116401803,1183422636,1958743036,6045060,2095682421,-443851009,-1957313699,-390056980,1996425702,508487684,1342358659,-16353537,1575486582,113541918,-108803957,-138405119,1438866904,-1070338933,-16138776,951583862,65556484,79987469,1342177720,-2096572440,-1017314620,-1192457387,-1679294450,-213465591,138840858,-1913108855,-1924074938,-397348282,-998039944,-213465596,105286478,-1946794359,1183384646,-230257160,-230257328,509274192,-2096839549,1946222206,-18427,-1070923029,-1017256565,-1192457387,1273495566,-213465591,71731994,-1913108855,-1924074938,-397348282,-998040024,-213465596,-230257329,-230257328,504817744,-2096839549,1946222206,-18427,-1070923029,-1017256565,-1192457387,132644866,108461833,-402360577,-998046520,-28931836,242597899,-402360577,-998040228,71697154,1183515627,1575324670,-326412861,-402649416,1586170070,71761668]},{"sector":3,"length":512,"data":[-967047226,-1974996154,1183319622,71732216,-1912977783,-1924074938,-397348282,-998040156,-25263356,-1207602176,49020927,-443826133,-1957313699,964844,1460180456,24504406,-196703848,-1979425141,-230258681,292864010,973176704,764939125,1183383617,71730164,106859266,83117706,-1962440639,1204160094,1586182657,1547665412,-1957491595,1077937734,475850832,1183533035,-1957674764,1077937734,-10622896,184861827,-1207536448,250216447,73304833,1946173312,108461851,-2095280152,54330052,-1207075328,-11533252,-538442122,79987483,-16484609,-739768714,79987483,-385452405,-24444748,1342455480,1342260621,-2096908312,-259324732,242611723,-402229505,-998040500,66095874,76154486,1022903944,-972786340,-966985658,1085800452,1166888964,-35106815,79987483,292929547,-1996994934,-396929532,-998040646,-336098556,71481437,21335376,467331152,184861827,-1975093824,76085318,1183319434,378616,1208370827,-1191426423,-1957690299,-1992229818,-397345210,-997982626,-1982297340,1065417822,-1964739328,92862534,956712587,58064454,-1946215191,-347079042,-129594724,1015022728,-385649664,1996488516,463923206,1023591555,225771522,1342457784,-402229505,-998040842,1589652228,1575324511,-326412861,-402649416,1187383058,1183652339,1183666418,-169324302,-230258149,-443816918,-1957313699,702700,-955846168,809478,206223459,127973456,207272016,471263312,-955857789,65094,-1980348787]},{"sector":4,"length":512,"data":[-1465779130,-163149561,50087555,-1577296245,126422096,1182991595,1589904118,71940342,1946630438,71731731,1996961830,1194862313,-941395455,-442,-1924087765,-397346234,1183521438,1575324670,-1957326653,2013420,1460043240,-431583914,1153888395,1183666689,1448497400,-2095340568,1451951812,62925816,-763166140,-498693888,-941336951,63046,-990486901,-1977163138,75401985,1191117192,-159480842,1592360515,1575324511,-326412861,-402645320,1448543786,-1947842931,21284592,-129594030,-396994992,-998040752,-128546042,1141096491,13796098,-1981659511,1187505238,-1962934026,2123101790,-1006532092,-2010717570,-163119359,1140227715,1600055678,-1017256565,-1192457387,-672661498,2122536453,1065091076,-1744033888,2097432121,5814326,-1727762697,203163139,203298323,-1979955575,1187511894,-1962934022,1992620638,9053948,-2012842357,-96010496,1492811395,-4658820,721611775,-443851072,-1957313699,440556,1443201512,294531,664813436,1178179596,-1204388604,1861681240,100899076,370347036,1183386654,-27883012,16402119,-94467328,-1979287925,-59325440,-16742362,2122578502,-377726726,-335544392,1589652226,-1017256565,-1192457387,736624770,1183667717,-28931620,1350846093,-402360577,-997982406,1958742532,-951650497,947236864,-1949743477,-2037789866,1451884414,-2109290624,1586167808,2125907074,9053951,-1996589429,-2109276416,562200195,1183508604,1178310876,-1207601916,48955393,-1956724693]},{"sector":5,"length":512,"data":[1438866917,1756949643,80013312,-1740206762,1183707275,1996443816,-19601404,168084611,721712576,-954078272,-1958475516,-1992293306,1448477252,-2095477784,1183515844,-2147473941,-108803957,1086331649,1575324510,-326412861,-402626376,-1923742598,-259286970,1353074317,-402360577,-997982582,1958742532,151308070,71732036,38046016,1172854358,79987481,15288055,-150506112,33556036,28837236,721611520,-443851072,-1957313699,964844,1443114472,-16728856,-1847065482,46433048,-375159,-2048391562,46433048,-1946794359,1178204742,721780470,9628096,16008903,-230242560,1183514624,-163173382,-196723904,1988879742,74843124,-1979294069,1963407364,-193035422,-2095614976,1946219646,-12285354,-397351894,-998047438,81154,1183532404,-28931596,16533191,-163149056,-336050551,-27358434,-1979418997,-60912896,939947659,-15567616,1183578190,-28901378,-2080618753,2130770046,-125926436,-1962380032,1174664262,-955520252,62022,-369867009,-1956708488,1438866917,179891339,56944640,-1983894698,1183448646,1782481916,91554052,-1293303765,16824320,346875984,-1560099709,12061118,-1612165119,46433044,-1207307101,-1924136955,1343683654,503963320,3840592,1183384560,1958743034,-96040187,1187477995,-1962934026,915142238,1183451582,-1962899210,915142238,1183451636,-16742154,2122446406,2080440566,16824542,-62485168,-190754794,-1706025463,66060292,200951433,-1581615680,1183386100]},{"sector":6,"length":512,"data":[-163133448,1586167808,705137400,972065764,158660214,163454603,-1997126006,-163119360,-2114435329,16840318,113761404,66666,1593788905,-1017256565,-1192457387,-1880621054,1187468802,-1962934018,-422445450,165592192,-2146732800,647100,-1070922635,1988830699,-1964584450,-2076703674,192350686,165643320,28837234,-15930624,2122579526,-948828674,1593835448,-1017256565,567095476,41091644,-138469171,37128963,-2114508032,1913651454,268484099,-2116579590,-82940220,521539699,855767016,1994936512,1291827204,-461168179,646526718,-1992948622,-1962643930,-754667066,-1556723488,-150797204,145033,-567557236,1253366775,-1942609459,369419038,1858075655,242268423,-1070346453,521579251,369114088,59959327,855769576,70713325,37158661,3604229,-654776315,14870608,-1912342600,243928,1879492406,1344798212,-402555928,-4717571,385830912,817103984,-442293811,889239556,512303565,109839569,521012435,-1171980104,567093020,243998486,786630280,81987214,741772070,-1979267840,869960710,520042203,91424390,1307123478,113587713,-628357490,905970619,109453055,109977366,-1960442653,-486527986,868322870,1031808767,-1188269056,-994181108,1957098244,2147465483,-1359822797,-437577355,520560134,-322963573,-1852265468,1958805164,-492156927,-1155590409,-1484783612,-1195440916,567100416,-1024062862,-2147126144,1074064527,-1092126389,-1832974702,10676230,-1090088258,-1964505454,-1957313792]},{"sector":7,"length":512,"data":[127188716,-402156353,-1833041795,110411526,-352291608,-326413053,-1090087746,1726482068,110411264,-402221889,-1175977876,1958742784,75399947,-955943680,16712774,-1157623879,-2013921275,1946223852,-851528700,-220052703,-1962932248,1286865990,243999181,132318856,-16776517,503744030,80811717,-853213000,1048583969,1946158350,262151693,269927685,-853167099,1002643233,1326085111,-485651633,-338558986,-147078158,-276623757,184912644,-227278267,-286581249,-1957363517,16562412,41674832,85212803,-16485376,-1207626730,-397410049,-443874711,45663069,-27531008,735873881,990540504,1912935966,-1864956,-373279775,861339205,4372982,-1392712654,-69017550,1951790208,-5314547,1342177720,-1207816984,-1017249791,85460623,939524794,1946477846,-486109655,109979140,109838380,-1070398200,-2147436135,-1359806669,1207661998,104761671,-18171,-772296974,29348235,8502784,81993358,1948269740,1946762491,1947024631,1958742639,-1404156053,-395042756,-462157508,1551109436,1484046346,611590716,57957436,870640450,1017921993,1023046748,50623522,-1949045807,334090689,1963043025,1308748746,1947024556,1958742571,1948400679,1952201914,-320126461,-1404974797,-93037508,74719804,-605302525,-372129397,27840787,-1746152843,1049173782,-687667968,65524039,-18710313,-997465557,-1962605917,385549272,1065956871,918897475,-1431567098,-92946422,906002878,81993358,-1070398485,540847274]},{"sector":8,"length":512,"data":[154991476,222099316,2145977205,1975519744,-1871058173,1128237366,1017925187,1021015072,1020752905,174224397,1012823232,1009218594,-1442614180,-919345941,1547480129,574421620,1555039860,-773084429,-372155216,108243699,-341171536,1017925317,170816525,1009415360,1018655778,-1442614180,-919343893,1547480129,574421620,1555039860,-638866701,-372155216,-1770804493,-341171536,-1430244403,130490134,654245888,-1957362408,512644588,-919403293,-376716917,-1958086261,184560694,-1911524106,1048585926,1946157056,1169093126,1174042030,-31178601,-439222901,521585923,638807,1593869800,-41169013,780793859,119407876,-164372850,-2129403063,1950563132,8292613,-1431550651,-92946422,1317662178,1562318336,-1017256565,1458342741,-1962467753,-1665268650,-1036276474,-1774186380,865537140,-17984,-141840654,1603726315,1575324510,1426064066,-11015029,-873986954,1958743039,-91516396,-4603853,-139529473,45828561,-851397632,-443850975,180829,100913291,896664690,74188345,251995507,-657371136,-388824143,512481676,-886373149,-1014054653,1253365899,1918378445,1223697424,-1794872157,74591883,74585601,-372798525,326302609,-443826125,-126631075,1632336,1575324504,-402164797,-4718578,-443835905,-466435235,-1023409688,168093858,-2145159708,50652478,574360946,540806515,95421810,1016072171,-1342015981,85637907,-576481065,-997539068,-1957300245,82609132,817780311,-335598843,1157009429]},{"sector":9,"length":512,"data":[192185094,53536854,1073923203,-2092498572,909707462,-428669368,1600046987,-1017256565,-2081649835,1448544492,-1929037634,1183385158,-370649348,46433025,1183709323,1996443654,1642616324,113541891,1459111561,38987863,-1962621821,1600059462,-1017256565,-2081649835,1448544492,-1979287925,-1986525372,-963904954,-1325060051,-1946627325,65065416,98619841,1183385040,105182968,-167349117,1950352964,105676811,-18400,-1878978327,17188086,1283518325,1686110726,-1070862586,-1962785655,-58816008,201737462,-561291403,87092097,-70057039,-472792181,-472786941,97552374,-2126088959,1946499326,1090420998,-13404923,-1175913866,46433040,762691595,86902527,87621249,-1095235979,-1878725881,-1995674952,76088388,-940024181,33555015,-352254010,-396980216,-998047588,105182722,-1961265912,820740574,-754732795,-775713797,-774372381,-796395805,1349779717,2083208331,71600900,-1962636992,1200355422,1149847554,2130643714,1962891027,-92864764,-2096394776,1183385284,-1877283844,-151363957,537193607,45617012,-1070903296,-397193136,-998044940,73173768,-2012985718,-1877480697,-1962933825,1183666375,1996443652,189851898,-1996045181,2117729350,-385649412,1183514347,1592011268,1575324511,-1957326653,49054700,71732054,-1325060051,-1946627325,65065416,98619841,1183385040,33601790,207415376,-1962752893,1200161886,1958742788,105873423,-27358456,149447,-1877480702,-2147197301,-1962670513,-1992229306]},{"sector":10,"length":512,"data":[1586168903,38258686,1586167809,-1946973436,126420036,149447,-443851264,-1957313699,82609132,74877782,86902527,87621249,1187448949,-351813890,-25063412,611648832,1795049159,105182732,-1961265908,820740574,-754732795,-775713797,-774372381,-796395805,74711301,904642603,808306315,-754732795,-775386120,-775879712,97519072,-1946401143,1149894214,-1962637052,12123230,38242562,-972929911,1283457287,28836358,-443851264,-1957313699,49054700,75400022,-2124712960,87557758,2122385268,1963278342,106859382,-1744353398,248965200,184730755,-1956350784,808257094,-754732795,-775386120,-775879712,97519072,-113015,1273497206,46433024,-956408181,1204224007,-1962934270,-208992674,76136491,-352041079,1586204714,75464966,125044670,1778679681,-1978108660,1352140615,-2096202776,-1073020220,1996425588,583686,1577239683,-1017256565,-2081649835,1448543468,721712779,105155327,37487396,1156990581,427100166,-343810421,61932848,-1014236205,-670833711,-2013862959,1946224080,721718055,1183384644,2126515196,1962889243,121932292,1676169368,113541897,1962690107,105676807,-16608,-1996209013,38061828,-947191808,-443850914,-1957313699,23378156,1475944936,108432214,-23165299,-1962439517,2091059270,71731975,-955813725,493062,-2079930624,-385875961,1015022204,-385649627,113705560,67464,2023997483,125084423,-1559788893,-2136799370,125739783,-1559792989,2057504622]},{"sector":11,"length":512,"data":[-1845049593,-2147475449,1966080380,113722940,3147666,1015034859,-15895253,-955811834,491014,-1876759808,1965046912,2017362701,359989255,125699839,117379051,166397806,1965898880,2047279057,76170759,-169324392,46433031,-394936309,126793814,124184656,-1962621821,-1908505616,209518599,125437695,-150499679,126788568,1965964416,-2147025117,-1202305529,-397408376,-998045892,-2081387772,493630,113707645,67464,125832959,1033372810,846463046,1946177085,6831413,1815945332,-955878144,34043398,1983808256,91553799,1967930496,1015039489,-384076544,113705352,67446,113763307,1050486,113761259,526198,76207083,-1668904552,4537854,1195182708,1023767552,158662744,125044479,-23296381,-1668904160,6499838,1979716925,18147587,781434883,846243839,125574795,-2069815413,-2096658169,34044934,-1878955543,125961983,124651207,179830784,2145931264,46433025,-1878961687,-352319304,117412080,117376882,1048774516,1962936192,-1979267319,-352321273,113741831,1930,125830911,126355143,1048772612,1963460470,8972547,1990443051,-62486265,126748217,-1902041228,-62486265,125451907,-955681792,495110,-1877808384,126758531,126787845,41795595,-1901871061,2080801543,280494599,-1552384,46433024,1342192312,-2096902168,2122515140,578027772,125451907,-1961528320,86899782,126788352,41795595,-1901871061,-1878529273,126748359,780337152,-1207695492]},{"sector":12,"length":512,"data":[-397410288,-998047554,-14685950,-385871688,-1070858449,31647824,-1862325527,-352321096,-1224765197,-1175912804,-15079166,125189763,-1962707968,-24424762,4030535,1031800180,-1946847963,1355164615,-303540706,113541891,1015084939,-385649664,1048837500,1962936196,1881049945,105379335,-1202752480,1307312127,825766428,841101858,841757218,841756984,841757228,824193580,827470156,841757228,841757202,841756980,839660076,126238339,-2095877120,492606,512430197,1207306096,-1217060858,-347732757,-2069786471,-1956684281,-1866244635,-2081649835,1448548588,168066691,117376116,1048774530,1946290038,1983808263,376770567,125574795,1468729227,-62486270,-2080483703,67599366,1048783595,1946158978,2082376465,-1995994361,1187511366,-352321282,512462862,126551932,-62486119,-2080483703,34044934,124665475,-1962052608,1175190598,-1962576642,48956486,-1868316629,-1942582521,-2109832441,712310791,16678531,2122523773,393546244,1177355462,-1946401141,-654836138,-150941053,-62486054,-939633015,129094,1187448299,-1929379592,-125048762,1459910399,-100609,199818358,147096330,125845123,1461810176,-2096519192,243991236,-936704120,-336310647,80121861,-1047837136,2143292233,-196179467,125046411,76023178,125094155,58483004,1176513664,-8552377,-2081852160,492094,2023822453,2114325255,-2096401401,1962997886,112645,-1070923029,45279312,1577239683,1575324511,-1957326653,283935724]},{"sector":13,"length":512,"data":[2122536535,343146500,-1593835074,1183385468,-94466824,125568643,9562370,125189763,-1961396976,-1962443746,39291655,-1980217719,109312598,-352057476,512462869,126551932,-1979955575,1586296902,2080801786,1048773127,1963984758,-129594611,1979336203,105560084,2122516971,158662908,-1996074568,1586296902,-129594374,-1980082549,1451881030,972434420,1946648630,-2012312804,-1878070521,-893244,-2144931258,359923775,2127444806,-1863455984,-228670394,653412095,1962950528,-1908503565,-2080494841,490046,-396949643,-998047458,1996445186,-126418950,-2097057816,1048774340,1946158970,65558279,46433025,-443850914,-1957313699,82609132,-1995998047,2122579526,108291844,1191476867,28312693,-1070988565,-2080618872,491582,113706613,395144,16547456,1048776052,1962936200,-2012821754,-16776953,-16288714,-16283594,922682486,1996425100,1947664382,180650758,16547456,1048777332,1962936174,-1942552821,1981218567,46433030,124665475,-2095942656,493630,922684277,385812364,-998046086,2080801538,113707015,1936,185039009,1946648070,-25755885,108795647,184730755,-1207601984,48955393,-397361109,-443875064,-1957313699,1048794860,1962936198,1881049903,38797063,1183452792,-13137148,704940039,-1878266908,74907475,-2080991768,1967129796,-2046361849,-1878660345,126093055,-1866244770,-2081649835,1448542956,126238339,-1958120192,-167050122,367739518,124794623,127022847,-2081006104]},{"sector":14,"length":512,"data":[1967129796,-2046361852,1321634567,377405451,124788363,2013417471,127049947,134168459,-467008120,1048829163,1962936198,71731975,126092801,-443850914,-1957313699,49054700,1988843095,-2042723576,1349844999,922688747,1589905264,126494212,-1552232,79987701,-16485056,-16284154,-963967930,1958742862,1881049885,38797063,1589957752,126494212,124788363,134168459,-467008120,1048826603,1962936198,138840839,126092801,-443850914,-1957313699,183272428,915101271,-1070921844,-1979955575,1048836678,1966081938,-2147075816,957510663,1946644998,-1979303674,-955878137,537367046,-1908503808,1642616327,46433030,737691273,75377656,125451907,-2145880832,326446396,127024771,-1408469712,-1645719400,46433278,-2080878849,805802558,-16053388,1048774526,1946158970,75399961,-16354304,1609103942,-1874951424,108265479,-386119937,1048772714,1962936186,-1612163290,46433278,294531,2122516852,57999610,-2097138200,495678,2122516852,57999612,-16761368,1444870262,-2080451608,1048774340,1946158970,-1845049587,1459625991,-2080480792,1599996612,-1017256565,125320835,-1207602176,65732651,1342185656,-2080503832,-1866267964,1342189752,-2080506904,1048773316,1963984784,1950253847,108265479,-352298824,2025361412,-571977728,46433277,-1957326653,82609132,1988843095,-28915962,1015021569,-1961921238,-1962443746,2080801599,-347733497,1015058504,-955878099,-442,-2130760890,897331260,2134457472]},{"sector":15,"length":512,"data":[-2143405776,-2146732793,108343356,127010503,76152880,-774927464,65130977,65130959,820609992,-2142832245,92024892,2117680256,-28931103,-125046793,-1996202357,1590070079,1575324511,-1957326653,49054700,106479190,-352039286,-2142859262,175374396,-160101318,-352321096,-1070886909,1575324510,-1957326653,82609132,990142091,1912924702,151042053,1190603499,1954545672,176063304,857371648,-1194226743,567099905,1190611826,1962934794,105251598,2030589459,369145896,-1992889351,1183448662,-1194226692,567099906,319178243,226035798,-1946268021,12123222,-350106302,106335192,-1979167093,1119095366,91365837,82618240,-221910531,-2081649835,1586170092,-367117564,-1207471612,-369555200,-2013859153,1948255468,1107474443,-779368141,-344841779,82610166,-1955695488,119408214,1183432755,-62486018,-1957275652,-1980593158,1317795942,-1336614136,1974399498,13953098,1979754557,49054536,12246155,36191490,-2135293069,-1948112128,385518548,139365127,1946827948,1962621708,-186471911,-352312344,990752865,-402426373,-1331036136,-62456054,233366507,1591929600,-346690721,-373279931,1397812637,735021905,-1961827382,1085539422,225583565,201213441,1493595328,-91531173,147096515,162792563,-2013913365,1950352620,106859275,1964654464,216791043,469809401,1183516395,-62510082,1593337483,-237901473,185093771,-1962576439,-238687807,-1274653045,1931595072,-351685628,1975520228,-326633760,175390724]}],[{"sector":1,"length":512,"data":[1065409163,-133991142,-1191587861,-907338752,85369177,108250171,-654851029,-1070341633,-1957299477,73305068,74767115,33443712,-1017256565,1458342741,106871639,1962950531,-1207493079,1944584197,855995649,619420096,-1543625664,1621296734,80188934,-964493311,-29047036,915013630,1317733988,-1898411004,649408,-443851169,-823540899,-93044480,-2080448128,-227283207,-66947189,-1459713107,1212314625,359907643,-268185461,1946265773,96600884,-141885438,-335657847,1962839014,-1980169460,-1054081460,-351958712,-17235195,-963903924,-779298164,91541819,1813941286,41912582,113649347,1023542898,628424702,-268173685,1946265773,1224641522,-1116487365,-268185461,1946265773,96601058,-141885438,-335657847,138906598,74760203,351000718,1913585190,-1945013242,1003982040,637891783,107486862,-1125435509,856061835,7006400,225756731,1077936420,6219928,1308495220,1894654,1318454644,-1936069810,1003588824,637826241,-1962513245,38242567,-1013333965,-28996783,57934248,1095354411,2147465793,1846950694,-788236794,-1946847766,1925579713,1925317397,601028365,-389665854,141885452,-355347721,-1070340747,1364378457,1946164712,-24422632,-234622837,-16890681,108497407,-684992885,-27948726,-1017489064,-768389037,1347572254,1342177720,266870534,147096320,536869507,41179994,12833291,1458342741,2122516055,947191816,-1962642753,1183516246,125126660,1912624104,-1958155481,1208271414]},{"sector":2,"length":512,"data":[-147123852,1149963636,205949186,3860566,-2093976738,-25099066,74646722,108384779,-1711276104,-628417045,-787496061,-754732581,-850873109,-1830194655,1418265737,-1036613374,130036484,-443851169,1317782365,972524300,208929356,-2130393469,1963246334,1072429554,470014603,-745850510,-147078770,507053685,645071980,-787496061,-773074469,1005310443,50951671,82026969,-1064380373,567102132,-147124878,378078325,-2020473748,-1009677564,-1947432107,-1931572265,-1950314792,-1070398338,-218103879,-9073234,-1190756725,-1359806465,-114568713,1183579783,29816580,-1543343104,-202780343,-204926043,-1946973276,12803578,-1947432107,-1948349481,-24443274,-1064380276,-4603853,-139529473,75402193,27838347,1235485300,-1510741551,-1527527149,-91491445,-1957313699,-1948808212,-1898410786,74877888,856063627,-17984,-772296974,-1493960405,-1071970956,-1946157283,1576700915,-1957363517,-1932030996,-1950314792,-1070398338,-218103879,1238497198,1576700817,-1957363517,508975084,139365127,-645191965,-1962639733,-222284809,64616366,-1946252341,-1494022538,872367242,-12240183,74712183,-772322999,1600045451,-1017256565,1458342741,-385830057,-1957363510,73305068,82452027,-75296387,-166953984,1074064519,28837236,855829248,1575324608,-1957363517,-1957210388,92996734,-1962779253,1435173965,141921030,-854950517,2123061025,-1996125946,1300824669,106268932,-1895271031,74582597,149681715,-1091715096,92995585]},{"sector":3,"length":512,"data":[1594652041,1575324510,-1957363517,-1957210388,92996734,-1962779253,1435173965,141921030,-1962248705,93194366,1594252686,509026765,-544286836,-1945600373,105221893,-1996063093,39684357,-1996206711,1971914325,172330760,-164428686,1642596587,114413,1971914123,-1956749556,12803557,-1962258805,1451951174,142510854,-66642345,1958742675,184124179,-771027339,766511737,-2082736214,-621346606,865269643,1958742994,-1812859134,-2020412937,1009779923,67270201,-1031034329,-495598837,-1404107384,1149764998,21270015,-227358917,-1956749480,12803557,-1259566251,1426451257,1001712779,-855353717,-323032799,-1259566251,72780602,-244112947,1962938429,-1970040084,3949319,1060899444,708576372,62058869,-705955438,1408011093,1465274961,1427506718,-1962248507,108446980,-1408348533,158490940,91454268,1149820932,1576067839,1595868951,1532582494,-899816053,-1957363702,1381061612,102651734,12080406,1914817891,108971025,-1978773877,92808708,-136165562,392020019,1583292167,-1956947622,181034469,0,0,0,1377850189,1412263541,543518057,1919052108,544830049,1866670125,1769109872,544499815,539583272,943208753,1766662188,1936683619,544499311,1886547779,2097169,1253114117,72239439,50377216,1663414273,1044193338,175318304,6041344,707668572,4468480,1589039,852146,-80,-1308621569,-1342175232,-1,11665412,-5242872,11534344,-16777216]},{"sector":4,"length":512,"data":[16777215,0,168624128,0,402655744,1092923904,1397600256,1397703712,1919243808,1852795251,673199648,1866672451,1769109872,544499815,825768241,960049453,1766662196,1936683619,544499311,1886547779,1667845152,1702063717,1632444516,1769104756,757099617,1869762592,1953654128,1718558841,1667845408,1869836146,1092645990,1914727532,1952999273,1701978227,1987208563,1965057125,-1744784896,-20480,11665410,-5242840,0,255,2086492928,1026244156,620765755,1543506547,771775488,3026432,6029404,1073754160,1663640360,1651864429,779252851,774965603,909647921,792080431,1275082545,4,352321536,-150994904,-1308601853,-1342157824,1127941234,1279870559,1313431365,937798,1704114,-2130701136,16875905,11665415,179306517,1124333317,11665413,1890582539,15,402784790,202115341,369624844,219348758,16712210,652800,17430016,0,33554432,1,33554432,2,-2080374784,3,33554432,-1308605948,-1342146560,33554433,11665412,-927989644,1970153477,2714732,1819635240,721430892,337846317,318812672,2142208,-905969664,-903296472,-903296472,-1308618968,-1342172160,1010576366,1196641614,15934,808466002,755633456,1635021600,1864395619,1718773110,225931116,196618,808466002,755633459,1953392928,1919248229,1986618400,543515753,807434594,150997517,808866304,168638768,1869488173]},{"sector":5,"length":512,"pattern":0,"data":[1852121204,1751610735,1634759456,1713399139,1696625263,1919514222,1701670511,168653934,218168320,16711690,762213746,1701669236,1920099616,2126447,911343618,221392944,1713384714,1952542572,543649385,1852403568,1869488244,1869357172,1684366433,16779789,808866304,168636720,1970151469,1881173100,1953393007,1629516389,1734964083,1852140910,658804,-5111592,-5242874,-1,9864,23986176,81659904,1112671342,-1064507253,234885125,303903,787971,244039822,-108331002,-34108593,-1202674445,-883949516,-661863540,-1898410424,1032128,-1342172999,1202648063,-1014237301,-1077899704,78708751,-789068149,-628299565,74698795,-768878452,-268181293,-947135858,-388771593,-802438516,-1064565645,-522989013,-1030817789,1322289836,1187548077,-31145334,91598908,-341118036,1974615046,-1968901267,1946265794,20102833,512433934,872153092,-930370094,-1031072797,-1064385789,-2080863315,292880383,-501415642,16417267,-2129234704,-351272766,1086360796,-276578162,486614544,-339702200,-1950118942,-1962932162,50334262,33948144,1060096,-1064380274,-100663109,-410265970,784698363,1085550591,-1191181637,-896794602,482007694,-1205744383,567102719,1801675088,1713398885,543517801,1663071081,1970434671,947312,161417606,175180250,364055502,372970999,632038898,647185380,1148725021]},{"sector":6,"length":512,"data":[2489577,0,0,0,0,0,385875968,-1761601536,38400,0,1409439744,-956131836,-1341989886,352618243,469887490,-771487228,-419172861,-419305727,116796929,1963004437,516159490,240340998,4242207,1048626062,1962870997,15395075,386332198,125108992,18163328,-2147095681,-2147412722,386332198,259326976,-1777928666,125109248,18163328,-2147095617,1073812750,386332198,259328000,-1777928666,125110272,18163328,-2147095585,536941838,855639225,-1946209290,637606812,-2054682742,1179058449,-957291962,72198,304559755,-1979419507,-789852132,-789851925,-1847061,-385799769,631243532,637942273,-1961265919,109379908,125112849,19334854,-32904447,-973003258,75526,19203838,-347716026,19243202,19269178,1049302645,1149899297,1107969,1049299570,1149899305,321537,-1611971002,75337208,1946172803,38091280,1023607924,1166799595,224258053,1543029753,-1021376680,973153696,1963009542,-2145613268,-13498397,17926026,1963459830,21267463,91491957,1946240132,654755335,166396161,19269374,19334854,621215232,-381270527,648085313,621165057,-33131263,-352246258,658407454,393543937,19205886,19203642,117311861,113639718,-33554137,1174480134,-1593896727,104464678,74776869,19271422,19205886,-17045178,973153952,1963009286,557746983,21269010,1912611560,691964684,21269010,1929385704,353271823]},{"sector":7,"length":512,"data":[116787201,1954545946,32303363,-957790650,2106456318,4031236,1161436276,50623490,-2131563715,-150923994,125144406,19084937,-351743584,-1950130686,-2097077450,41222204,1418392555,52202242,589203934,1086518785,-315478924,-1157411702,-1024065533,-1157401440,-740098046,1946436666,-487390458,-1966543883,88378080,1973469942,107252266,1144661483,984904195,-1351154620,-167558102,175415490,-687514483,147924618,45287915,-661920778,-167427957,41164994,15262770,-2048132852,973153952,1963009286,21269012,1963459830,436602886,-167318783,436609232,-381270527,631307781,637942273,-972065535,71174,18286278,-737753600,-381288440,631307753,637942273,-972065535,16848390,18286278,-737753600,-381288184,631307725,637942273,-972720895,17354758,-38016698,973153696,1963009542,-2145613271,-620097565,-75492492,-385649407,-75497278,-385649406,-1242956268,24380160,19269318,621200896,-964493311,-41686781,973153696,1963009542,-2145613275,-13498397,17926026,1963459830,21267463,91492469,1946240132,654755337,251527425,1178992934,-1594011415,104464677,1635057958,304692875,-1929296758,1031996541,978482176,74711621,-219464445,18163328,1972197111,147955719,954403979,70927942,-964491404,-336076285,369542699,113639425,-1979711209,-13500068,134366346,-2147413625,134288654,-1576986976,116787412,1954545946,149642755,-381270434,15465697,19400390,1482422528]},{"sector":8,"length":512,"pattern":1397445451,"data":[12787463,0,0,0,1178942034,908729656,270549120,16909320,1364217682,1196248139,286280008,353637138,421009174,555753246,623125282,774712358,842084399,-1,-335573877,-2303014,-1,-488644899,-421141277,-786457,-1,-33554433,-16711909,-14745601,536870911,301957119,336725271,252253465,169679632,68354559,168298246,-62453,438108159,34997016,-62194,-13959169,1600061216,1667391840,1734763876,-8912897,-9175164,-9044108,-138,-1970667521,-808523009,-48,-757989377,-690629421,-2500393,-14,-1,823917823,892613426,959985462,138226992,1702326537,1970893938,1534095209,1644105053,1734763635,1818978920,-10475717,1668840028,1835950710,-13685204,1545666346,1044200507,1111572543,-48061,-11974585,-11665589,1381060687,1560280915,-385907067,-4671562,-1,-1128547655,-1061175619,-983103,-1,-67108865,591405339,643704100,1596532778,1358956587,1414677847,1330206041,226327376,1146307071,1246250822,574245963,1518141310,1112949592,1044139342,-13959361,1431600160,1498961750,1566333786,943194111,892611897,842083126,-13750221,-2004386561,-1010636289,-60,-960102401,-892745529,-3289909,-15,-1,64511,-65536]},{"sector":9,"length":512,"data":[1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,1397445451,48955392,-13697280,1963380230,378285583,-1993472310,235326502,147897367,1364414549,509040210,1086061574,786140672,303246987]},{"sector":10,"length":512,"data":[1323871664,549844743,-402426880,1625556991,1265980220,-1898237154,387877595,-738844924,1963770870,508907578,-1152773960,801964032,-1103274721,662001850,520562147,1499094623,777869403,114179715,772437248,113907342,-869889234,251604486,-13760818,-1273887442,365820239,-434065261,57840416,-150799895,1946159301,-135953654,321816878,1008266002,-163351126,33592838,116800629,1963065367,113651253,-973010736,38662,285669166,1946206226,17296131,1099255,-1336928140,111143079,-1041698640,-1482674682,112912393,-1897355088,1023105030,1007514878,-99453446,9899648,43051280,-1760657158,-2014765056,451432450,-1759606265,-2133315072,57935843,1476839656,-1573986166,-12842799,-970061451,17354758,235037161,-1774286329,-1060637184,276384884,91597628,9834112,-1775861696,938180352,9840256,1951677631,1950432297,1954823192,1954757665,1954954256,1955675148,1955609621,1972517892,549975570,243271796,-400556009,243271269,-384827242,512360970,-1058537449,1977629702,-1777434617,166400512,141943100,9834112,32631057,-940146908,-1190366206,381616130,1974399493,-163189924,494141895,-1090517831,-1359870700,1161616244,-990498187,-164792960,134223878,1927882357,1968454659,-2134575564,-165906950,67115014,243274357,-1341915112,92793006,-846921544,28698901,-2147380759,-83879898,1927851696,-2063484923,-1595337267,387877377,84983552,-234878791,1959037614,22604035,85061505]},{"sector":11,"length":512,"data":[413501998,-1476218619,-385649536,-58720022,779055888,148192896,1006925311,134247736,-167766234,326372548,1946339318,-1775892474,-768808192,405145836,774171392,304809719,460619776,-717324242,326500104,33605111,-940178059,-2146929648,-1090513114,772103400,148192896,773355007,304809719,259268608,353271854,-790100991,645934837,-369426155,-1007288090,-385649660,1379664074,-1007279755,-385649656,-940179266,-166431486,175448259,1946403830,-371160566,-1007288150,-2064223229,1946163238,11593987,1582600,1517104,721876782,1954545682,12973852,-167414526,292819143,-717324242,158727944,1950401782,388368388,1891956224,-397408908,1012401357,-1972013742,11790816,-166658944,542077908,-2147477722,813169660,1946339318,-1775886330,-771298560,405151996,-1595897344,-2144468842,-16198338,-148635019,101378258,-523108328,101190692,-997588969,745912380,838867360,421955812,1958742528,57337887,639638251,350945304,276004924,1574646,1011643400,-2147126203,-150988762,9840256,-1863779588,1048587779,1963003820,113651211,-1207955540,365793538,-890720592,520616451,1499094623,777869403,114179715,772437248,113907342,-869889234,251604486,1020200654,-138840193,1967128773,2004827140,147060399,-940173964,-166497264,67115014,-990507916,-1476103166,-385649400,-1007288056,1007973380,-955222701,872444422,-1775860974,15339520,-385876224,57930839,1023373801,-1341819591,44493088]},{"sector":12,"length":512,"data":[-2147432969,255595892,12060277,43444645,74730044,58019388,-167727895,544474307,772160046,772371730,148178630,-13047552,788937262,772371730,148178630,-14095873,-717324242,91619080,1928593128,86032159,-234878279,-166169170,1987379911,86110081,-1275061856,65336842,1680071,-956368407,6406,-234874183,1011315886,1011380738,-2147125491,988509892,141711164,1153126956,33286405,1946339318,12973854,1008235648,-1207536356,-35019264,1951611905,1966423077,-1543456581,1006759913,1007448635,-2136115388,-1070453308,-150872087,1954545861,-370102113,-973667884,-361463808,-527806460,-1007229717,-385649404,1178337488,-973657483,175440384,1947256822,46659077,-1946543500,-1996482018,-973071330,-2147454714,1189654192,723242242,26405312,1484080444,1947256822,12973830,-2142407678,134223886,652783280,1228832770,124978944,-1610360646,-135397275,1946288325,1090828301,503840955,1621767,1689851341,403109376,276039680,100713975,1692726133,557588772,-428479519,1582720,-31856137,494221116,33605111,-940177548,-351505406,281540143,-940178060,-1205505022,367620608,-222959615,255613298,893130356,-940176523,-1207536638,-35023616,90749696,1970420540,-385521477,-1863843623,1010070258,-147622601,1946288325,46659079,1290473076,1947256822,46659079,1089144693,1946403830,645986875,-1325662058,23849134,1560661333,-369255703,977075574,-940166793,1022653704,-167414475]},{"sector":13,"length":512,"data":[343212743,-1090512199,-1359870678,-1007286923,-167086784,175440835,-351936837,63174237,1421604469,1012132614,-352159932,2001943619,1951022129,1951284461,46659305,-1007285643,-166169312,410321859,175459388,-2147432969,-256878732,-558149397,-164304123,-394984509,1446822123,984614005,-973633301,963936256,1946403830,106216403,-922872341,116840238,1946288278,12973857,-1273269120,-31986720,-1965609272,-155176224,33592838,-973666188,41189376,82370736,-54728448,1962884096,-229297,1398164084,4242206,-1946494066,-1962927074,-146586637,1946681541,1056669963,-1156614912,183173150,8527419,512427125,507183232,242483226,512296073,-970063844,17804294,-970062101,17354758,-77702369,1048587971,1963002064,113651242,-1191180080,1642332344,-419683248,1632353,-419823092,1108065,1492050683,1085891046,321536,-1006961694,330912080,1623586560,-1878690560,216792546,270819812,-126565318,-186457974,-1664919463,12974074,1007842310,1343845806,-527801884,1642496012,1642520710,1623586648,-402295808,1692795031,1397801885,-1275557295,645986819,-397475689,-947257213,-1174707994,116786147,1966080151,610395159,1959016976,-488600847,1976303341,-1760657192,132874240,9897718,1508799504,-87861157,6342135,116800372,1967128727,-1760657356,-307216384,-83908632,-2147473176,-134179034,9897480,9897718,-401902208,-151322736,-2147444986,-189790604,-83917848,9905792,1371798335]},{"sector":14,"length":512,"data":[603985824,-771444368,1493640384,-1185853245,1642333155,-1002827740,-527763340,44590308,1482289376,1937784003,116862503,2101777,-2127683980,-1542316738,-401247741,-147980269,-1072557818,-402426880,-527826909,147956270,1966750915,147060247,-1007286411,-351439613,116862473,8393233,2125464181,1966619843,-1777928690,125043200,645955504,-1006829418,1957559424,788475397,-1957359095,107381740,256254,1022290781,-1207143040,12320767,302366465,1019414286,774403457,304297611,1962933891,1547382294,772502786,304166537,488540462,-1959869678,-1192891596,1317208065,1019412742,-32541310,50036931,-294401026,-719419346,-2093169912,-1976695435,-1022831330,-970545933,17962246,1213407693,1145393729,1413563424,65,0,0,0,0,1426063360,111955,-256,-1,16777215,0,0,0,0,0,-1896873800,-286248,-90032,-1273033136,-2145989230,360153340,303238785,-1565229056,-58714419,-2130282624,1184526,-852446144,167984417,-1207558542,567096585,-2130198132,1961885945,-1207912433,-1073074227,243336820,268440083,-29598888,-79952781,243340405,67113491,825817985,243351925,134222355,-63161877,243468149,-348122605,1979268142,319717640,-352190446,1979333666,319717640,-352288750,1979202582,319718154,-1276633070,-2096567551,538055438,-1023301144,134217728,1085808134,-1195340288,-661721088,251657888]},{"sector":15,"length":512,"data":[-1794705889,108266017,-1777434586,113709056,268440300,158726460,317458119,-1612119040,1946041344,1979399172,116794900,1947205782,9234691,317458119,-2081865728,1979333632,-842943460,-352161003,1000351351,974070784,1964175110,-334593786,-351797230,113649251,-1333788522,14018802,637789113,9832182,-466193136,974136417,-1963952956,653058784,9840256,16574527,-290449549,-2097107224,135402254,-1777434586,113643520,-352251154,-335100090,-350224366,-396303337,-1875115908,1413236083,-2076441484,243336821,134222572,-1961694047,-108985266,309612618,1330379137,-108983180,108286544,1096087937,537723765,303145728,113444639,365806004,18391078,1020097031,-944016752,1611852806,1972517888,-335100154,-1342144494,319223682,1946161170,-1568559102,1048578471,1946227438,-386879325,-1482686437,1435657,1342609131,365806004,-527824782,-1557746768,123207959,1364414659,62126218,-84097304,-1759084506,-947237120,15425766,65255931,-1761151450,410333184,270819812,-260783046,-320675702,-730477570,-1760657370,149651456,-1761151450,-327938048,-1017619623,-434917126,-469701776,61406065,-1007091340,1692684624,1182011560,-1342170951,-77273427,-84121880,547906788,1625616864,1692803248,-1174645016,1642333155,-1002827740,-527763340,27813092,1625616609,91570344,303238787,-424759280,-63838108,1482252516,1392952315,365805748,-165278862,1526990407,-337808121,-351839264,220,0]}]],[[{"sector":1,"length":512,"data":[-65536,0,0,48,0,0,0,1454901200,302329150,-1961551197,279120966,71731989,-1961553245,512296542,-1964501740,-385621245,1455227517,353411390,440830246,353640075,408848678,638915233,-1961474423,858154526,-1194773550,567099904,1122567027,-1912655102,-289793459,239055908,1931595039,36694275,57985083,-2097010455,2426430,244053620,243868926,243995908,243868928,243995910,243868930,2123175176,643080495,352724727,745918987,353109507,100869746,544347400,352585219,-956097934,251991666,-1324256768,-1947675900,63474888,104541889,57802754,-1962814231,-1960417762,-1960418290,-2094636522,58064890,-1207905303,567099904,-1360460941,-1982821631,-1994927346,722981142,638917182,52592265,-1189799362,-289800188,-851463132,-385649887,-935657079,-2098658444,619749633,642156838,692504102,1187391035,244005930,-922016530,642320245,-350073207,227092031,-1962752125,639954958,-947712631,-301036798,82412324,520542091,567099316,57876238,989936873,-385649464,-117243595,352980619,353111555,352849411,352980617,-1962933063,-1273035049,237096255,-385649889,-1960443631,-1960320243,51892494,-1994068466,722981134,638917182,52723337,-401270210,243990811,235083018,243864836,549000458,1779337510,1183524390,1410239254,1976109862,9431299,644494987,-75293557,-352160257,-689416353,115564289,353767049,512447211,244000358]},{"sector":2,"length":512,"data":[378218072,-92068266,-352160257,1107343423,57876941,-1962895127,-754021936,-787052265,336497431,1781959445,1963735846,440281868,2122917397,440271644,440281877,2122917397,440271646,9562133,1676346083,352980619,352718339,352980617,644484747,-1996308093,-1960416754,1227248654,643042953,-1946197271,51710478,437136333,-1878618603,-1842443482,1312499238,-352160224,2122524206,192282400,1455228686,1317611070,235268896,1045871879,302377345,354160265,243910963,-1178392984,243859460,-1178392984,243859461,-1950144920,-1189800930,243859462,12789352,0,0,0,-1980265728,-1994929346,-1961371858,-1960417762,-1961373418,-1206398194,567099904,-924253325,-1913834752,-678755250,1068769030,521019853,-1259797645,35031808,-359659,371917940,-1993992934,-359659,369296500,-117238502,1317924147,-1948808446,103179806,-851463137,639569441,243862923,-947709995,861856514,89034221,512481163,520496742,567099316,-276619506,1166747138,-335117053,638743826,1317868939,869346055,-1337805623,-350106367,506031,512489475,1452090982,-720467193,-1949684969,-1273035049,237096255,-352160993,1959279400,52620034,-336098311,-18301,399193739,352466569,399978123,113091,178627,244163,309699,-1996488509,-1961310946,-1960417762,-1960409066,-1205433842,567099904,1659568755,179959947,619624960,567099316,1391133299,-140450766,645964580,646326007,-1960513862]},{"sector":3,"length":512,"data":[754549192,-352160255,-851463111,-352160991,-2146530511,619626278,957924769,50885637,-500792258,-1961628685,1453523525,71666470,858151075,28951497,45728512,62505728,79282944,49920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65280,16711680,1526726656,1044151389,574307627,113716736,6483,243871484,-953280186,1656838,113716736,6491,1275512622,771751961,434570951,-953262757,2082072838,113716796,725490155,-318322898,-398770919,326305231,1409286072,639470374,57872186,1526727352,771826665,425014921,-1923786925,773414174,424937206,-1404865248,1913020392,96725052,-186108044,773354757,424937206,-402295520,652936587,1409742382,510935321,773581646,1027344264,-2144467339,18437134,105441347,783074675,-347928696,-1993453890,773409334,771753926,425270921,-1927443674,773414198,1949252736,1015033398,772305954,424937206,643069185,838944650,104410852,309532998,424059182,1128521937,-1960388605,8972319,-953259541,18434054,643885824,838944650,-523157276,-1977165821,200094223]},{"sector":4,"length":512,"data":[1125086409,529213011,1526777576,1128481139,-953224478,51988486,641002240,838944650,-523157276,-1977165821,-773574137,-670875424,839879206,1959332845,642990863,1575493515,192109312,-220052669,1208403758,1560282137,-1959896225,773408270,773408929,424294027,1276545838,512372249,-1007150770,126559824,1962934953,117386757,-2144462522,427098172,1962934697,113716745,137544,-1336930581,-385895421,-346554210,18737155,-1007041704,-1977200299,-315488177,225757451,-402034803,141755174,-503312664,116128246,1529776430,1566177305,2122327747,57933824,1173809989,243281603,-401598124,1249050566,1411809326,777056025,723081121,100740806,777525589,425145995,3964974,-2144459147,1966800764,113716745,596296,-2094653461,427032639,17299238,772961536,424150727,166395906,-134179096,-335999509,61886474,65601460,-1007134720,2139825751,1049177604,-2010769076,1703421445,-1590800383,-1993991845,1012400709,638219521,637818249,-351908471,1963080794,1435051526,1011936004,1021867015,1021604872,637957382,-352037496,1963211838,1436626447,-1993981927,-1943665595,736822877,74811686,105745446,1207314000,74711298,166397104,38270502,-1341819902,13363202,1207314008,57937922,1593875176,113651395,1342183920,185043750,1343780288,777474643,424150727,-4980727,1541931952,1532649471,-352130216,-1873417469,1954545833,113716754,6472,771823080,424164995,-1455590135,309608448]},{"sector":5,"length":512,"data":[1208403758,-402653159,-2094137126,152651838,11085429,772961282,424150727,1525153792,1048784386,1963530568,536914191,-953283980,1656838,24832000,-264339410,259326233,1212056366,125108249,1208403758,1476397337,777408707,-1073085302,977017460,-2144465547,1962934652,80096774,-402003200,24314734,-538229178,1455642718,785418834,1541932170,168587779,-401836864,-2010251252,1174530820,1525214022,-2143501474,1631325299,2050770290,-551272073,106118635,-499217065,83525657,1049429108,942545373,1343714325,118379089,-1031117388,-1174405189,-4587515,1512164863,-1959896999,-1909587619,1128465221,-685342676,-1017444513,243281488,780147028,424945280,76164861,175385404,125119804,1410236462,-398065127,-1017643006,1448235344,-768358093,76164691,1114947594,1912637928,-1947979207,-773664280,7006417,-628413326,-489569909,1575539153,-786468352,-388902430,376569940,-938224893,1912622056,-2083192051,1105723601,1174630912,-346309653,777752614,424937206,-150309886,-2083325999,-779943486,2005607936,76162566,125108284,-4980304,781192427,424150727,61865993,-1477902412,1499094781,782025560,424937206,-1660783358,40934851,-1007041544,141701180,74922300,-1007144916,1397801977,-1960421550,-1977219457,1975519749,-335563772,113716745,596296,61931444,1610441192,-1017619622,1448236368,-1976696142,33089540,-1377289102,116797182,1946687828,1966947341,2122327583,1903493121,-164752405]},{"sector":6,"length":512,"data":[270095366,977014388,-2144990603,1962934398,1558922844,4602406,-1073078923,1162236532,975573995,1165295686,76164678,1178216005,1178236160,782756677,424937206,638547008,537020407,638022656,32384,-148495756,1946161159,1966750744,2122327561,225771520,3935979,-2144991371,1949958270,116128003,1463191854,1516173337,1354979421,-1959897513,773412158,-1073085302,1609044852,774141184,435160774,-970039807,-346095612,-970039745,643760132,67575,-953273739,35211270,1479142144,76164694,510967818,1946168808,18409483,1179058803,-370457017,424583726,312878,1049177671,1600002378,33597784,-1269823116,-402280193,-1017578422,512577875,163125735,121253376,-498924428,1532576248,585673923,-401050624,376766547,1409742382,-311156711,1409742382,158613785,-116987058,1324876267,1405352131,1947024465,1946172461,1946827817,2105550373,510788098,-1977165005,-1014824099,964699652,856519680,160048841,20588099,-119405452,1532562748,777081795,424543942,645934624,1021253972,1010201632,1009939465,1009873964,-2146667232,125116476,977674416,639560640,16940416,-919398542,55413286,192203019,1124074427,1946237478,1022943751,-1017423584,424583726,1409742382,108331289,1410236462,-1069932519,781051883,-583329443,792463988,-336002187,200013838,108343100,1410236462,-1007140839,777213470,424754819,1344763136,1465012510,-164428203,12115598,-1943941789,131795931,1499094877]},{"sector":7,"length":512,"data":[695490591,1328974126,512306713,-1959913135,773410614,424746638,1946172547,1912879632,21248520,-336002185,-347716091,1583085803,557171487,1157824512,1461800481,559940385,561586541,44040448,-2061400576,-2147418079,562429952,16785797,-2046820094,2196769,32784,562372998,1145646849,0,-2061400576,1060045089,0,-2061400576,1160708385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1070399488,50349766,33638086,149190,33769158,-1928706423,-1105120706,82313345,868823809,-139073326,1979711293,14412035,562970240,-385649153,54329553,1023767552,343212041,16926406,562955974,-1828272129,-402652383,-789905201,562577025,1064640873,186748065,-1593281088,-415424118,-971147773,-973012922,-973012410,-14578170,612894406,-1828272383,-402651103,1961558171,214726,-972274039,19170310,612763334,-2124289279,1981909054,-2146994911,18978062,1048662763,562176392,243271541,-352181867,-1912144317,-1908506591,141885729,-402626584,820707415,562970240,-402098942,1223164165,-2145260800,52530750,1088948341,3794945]},{"sector":8,"length":512,"pattern":0,"data":[1187386091,820510978,-1828272384,-973078239,-14578170,562431686,-153753600,-2130764311,1962935166,8290323,-972196864,-402587066,113704967,532883,-1885253437,563192609,563033737,4047704,-971801088,-973012922,-973012410,-14578170,-383675485,1048576148,1963008390,562864442,141934603,1025608353,343278567,16795334,16926406,562955974,-2012821761,1793786148,18118,214726,-972274039,69307910,612697798,-2141983999,52528702,1465272437,918888017,-41213558,-1190869117,-475267070,1958742537,-1404458491,-921963029,-1073085323,1187386740,1187381504,113705218,663955,562955974,-972428289,-973078458,19171590,1583307039,1187382507,1036189954,310247424,16860870,16926406,562955974,563323903,1048589035,1963008390,562864423,141934603,1025608353,259392487,16860870,16926406,562955974,-972166145,-1996488378,82511430,33638086,15811,1187384958,113639682,-1543560818,703275411,562445952,505574661,-984524970,-1927181770,-1994287554,-919402370,1958742700,1101834757,1317664747,1583307018,49951,0,604834304,0,184549376,0,77660416,729089,0,33689601,184549408,0,1048576,8193]},{"sector":9,"length":512,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3670016,0,0,0,-65536,65535,639238145,0,1162608384,538985049,2080,0,393216,393222,0,0,0,1061093376,0,0,0,452984832,-65281,-57601,-14680065,387028095,420745733,269420821,-16114405,100930305,185206791,-244,404364543,235017731,-243,553621247,1616862975,1684234849,-10000795,-2071103489,1955558286,1989244304,-27758,-393573889]},{"sector":10,"length":512,"data":[192088627,-1341439256,612409863,-1945762327,-1943761138,-1121674738,109848217,-2135415152,1009765805,-955747073,1445368326,-954406082,19303430,-1878619136,-1841395418,1166747174,317498124,273008166,-1207497216,802008320,108396348,646842055,118358017,-151341080,18978054,750265204,29052929,-1228328192,-1915604225,-400255434,1079511759,1979789885,-2147039512,-1947664092,39225861,1963063936,79423747,-2147461494,57999866,-1979415831,-92274346,-385649407,1451885710,49971200,-92272524,-385649661,378011931,-1935595920,1958742822,-1841394851,-1878618586,1569400358,1960512278,-1776383710,-1774809818,-1741256410,178212,-1191181893,-4849663,915264050,1424499862,641526538,-1994760821,-1926979298,-1994088138,-1205564106,29032451,112896,-768409674,613103245,-972411160,19171846,179835371,113408,-4798157,417911346,643492618,-1994891893,-1926979298,-1994088138,-1205564106,29032452,112896,-768409674,613103245,-2146831640,19171902,-1960431756,-620029347,512305012,915219617,914957473,62399629,113408,-1241513543,-1915604225,-400258250,162793923,-853245510,646881569,41271307,45624811,1932512685,68020483,614538889,614545037,613234313,-1157626440,28901377,855619072,-1959359022,160032804,-1207676439,29032459,-1228328192,-388877569,1072236919,107079684,-1159134349,644260611,-1960404547,-1171888610,2122327278,41156611,854071019,-2025947131,158662948,612777600]},{"sector":11,"length":512,"data":[-346131455,49015144,1301151539,-851463140,-385649887,-1946418303,-1087997682,-289528207,1957098276,57665795,-1557854047,653731454,-289790332,-2117563612,1979788537,56092931,567099316,1323893619,2114882307,619626278,956581515,51803141,1227260990,-1058409867,112898,58050827,1459651305,72190801,-1996335733,-1993963498,-1272542706,-855592894,-385649887,-125107439,-1174402375,1068770542,57876941,-2147286807,19170366,-2091292811,695534073,612777600,-2146405119,19170366,243927413,113648886,-2147474298,19170622,1048578933,1962943620,-2098635004,-2076278782,91554084,-352046872,1607021314,-2096401335,19305534,1040385140,2011768452,-2076278529,292880676,647249539,-972393216,-1979645114,99156806,619880706,-1591319901,1688413428,22448678,1963129472,843574018,620208356,-148471645,-1171880410,-930405138,19724673,1659437942,-851463166,-385649887,243991129,-289462656,105286436,175375673,646331907,-369986231,1166737890,643212034,-1560001141,448669272,646881574,41205771,28913899,1410238720,-1978889946,-771096234,1451952501,106203398,-402613527,-1073019564,115934068,1813940482,106858790,-385459063,62390403,-1928917331,-1960437186,-853126642,-385649873,210436603,-1996207101,-1205447666,802008322,167859850,-1962248750,-1993976818,-349802954,81179,99095413,1958742789,28829955,-1996071287,-349803490,106858755,956716683,158598740,1224918659,-588647819,1816036097]},{"sector":12,"length":512,"data":[494207014,1946157373,106838296,1364398964,-1157623880,-919404543,-768409674,1493641960,646750555,158711819,-387508760,-1075314064,-370480921,644353675,-1935591965,1975520038,44689411,1963063683,14018819,1963129219,15001859,1963194755,15984899,1963260291,20179203,1963325827,22538499,-1962835735,-485157362,-1202629869,29032461,-1228328192,-388877569,1532561091,512442036,-620026266,567086196,187075745,-385649472,116851062,268440081,116857460,67113491,116855413,134222353,1048578677,1963004654,30074883,303236855,208961536,-1107273543,1757357735,-1527514107,-402528536,-2101870090,-838880339,842118191,302366656,1981188902,23324734,-1192886807,29032455,-1228328192,-388877569,28313159,-383483742,280494346,113408,-4798157,820564530,-1576947706,-202824576,440320,855638459,855619273,102361298,-2136866384,14477604,-1157625672,-919404543,-768409674,-1341783320,612409857,-1207908887,29032466,-1371632384,-1588570588,103358865,915087759,-829742705,-1858696360,-1918569695,1579462206,-1996488263,1344578878,-1482434420,-1818142684,-1556706015,839038500,96069842,-2136866384,-1199707356,29032457,-1228328192,-388877569,45090211,-349929310,768103,855638459,855619273,93186258,-2136865616,-1202590940,29032465,-1228328192,-388877569,61867383,-349929310,833595,855638459,855619273,90302674,-2136865360,-1994003676,-1926979298,-1994088138,-1205564106,29032462]},{"sector":13,"length":512,"pattern":0,"data":[112896,-768409674,613103245,-1341834520,612409862,1889553588,1975519782,612409380,494256138,-1280474440,-1271935489,612409420,647118475,646973070,-400533877,-1343684587,612409572,647118475,646973070,273008166,1344392449,748760582,1958742784,-1195340281,567101696,79385351,-851528704,-109753567,78731355,-1102910765,-315408810,51797645,-1947008005,722803726,1342620619,-1912586056,243279552,-1272971241,1477889281,-1274625273,-855003083,118359585,85887270,-1557768174,632558087,-759559760,119655688,116852419,268440083,-759494540,-1207388152,-1022939187,800077236,235282893,512304647,643305993,-1273885789,-1171279835,567087488,-1912201533,640061446,-1911421023,378218200,632558085,567085488,-1581048057,1178281200,-2145946356,2394430,-291435916,71711524,116064884,647235271,868417537,474844671,567099316,1575682675,645467787,-1104776769,-1494014738,1307247220,-1557854559,653731451,-1588582782,653731080,-930404732,643567241,-1983380648,-2128193010,1979788537,-1171854590,1068770542,41099725,243997675,-289462661,1547567908,205949734,276038969,646069763,-336431799,2097595916,99287334,612828870,1264370433,1329748293,776229441,5462355,1113146699,1146241359,1398362926]},{"sector":14,"length":512,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1178600448,172919598,1988824803,-1197149432,-1178977024,-1021194962,-1188123458,-1527578611,-1170407240,567094969,54343539,1023767552,745865218,-1207948312,-1178977024,1931595054,212256,37553524,-1105890048,-1178653026,964910,12100851,783923773,32186829,1460061177,750735702,856002048,1015228150,1174631424,-964429845,-1187083004,76162606,1195771272,3964966,-2142243979,91511869,1962950016,118376437,783038093,-218100295,1600018852,1381090055,512448342,378218086,244000392,1119102602,567083184,1005257331,179959947,619624960,567099316,736821875,-140450766,-2044266716,619624998,-108935029,41287980,1068766699,41099725,243994091,-289462656,857574180,-1207702592,1583284228,12802394,0,0,-16777216,16777215,0,-16777216,16777215,0,-16777216,-1,16777215,-16777216,16777215,0,168624128,0,603982336,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,1142969165,1444959055,1769173605,908095087,692267040,2037411651,1751607666,959520884,825045304,540293433,1919117645,1718580079,1866670196,1277194354,1852138345,543450483]},{"sector":15,"length":512,"data":[1702125901,1818323314,1344285984,1701867378,544830578,1293969007,1869767529,1952870259,1819033888,1734963744,544437352,1702061426,1684371058,1381191712,-919382266,-13385330,-1307431240,-1943024384,-1993325306,-1204796610,45224494,109850573,1049178189,783822923,-855330286,1560710191,1530825008,305051696,801965746,809567884,809451145,-1945711640,-1993327354,-1942996162,-1993320186,-399485122,109840278,1049178193,783822927,-855068142,1694927919,1665042736,1980155696,-972419792,607174406,813369031,113704960,667773,-1995671320,-399481026,786956313,4319232,5302353,1599670386,1482381831,-998046485,1355020556,12066390,505531747,141696775,812594825,812713612,-1195157410,12272640,-841862400,31883297,-1207841152,567100417,1140897987,855638459,-2145268270,28836302,-1021194940,567095476,1964377661,418117635,1929380413,-17659,45810667,112640,-1308622663,-100682240,1364414659,1376147285,512354699,914894963,-521654152,1959332610,1978469148,2549765,-1326971925,1510502913,117507560,-2096829601,-336001340,1516177156,1560703737,-346530983,147096324,1397801977,1931381586,-294096,753403253,-402396416,259194999,12278196,841075968,113542116,-2096043015,192217083,125092155,-2097106712,1928922820,1482381827,520494787,1963063683,637711387,567088522,-389903841,102629553,638022431,-855550582,267122721,-922025292,-1977218700,1193397525,-118262455,1347928863]}],[{"sector":1,"length":512,"data":[-91532538,-645200098,-218359120,721647022,-880063527,1599604571,197145539,508523721,1085546246,-108800117,-852986623,642785057,1525155210,102651904,-133795041,-851296076,-2144953311,41228861,32227723,-68677937,1427827711,-5838767,-849745525,-352160991,1959279371,-118998265,-1047854475,-1195172003,79364135,-1023298304,1962933888,-2134444527,119409781,813055629,-402652487,113508096,1866384471,1962871600,1032005143,276101120,1912945190,1161438727,-117344511,-370456761,-1883044001,858814726,-141388837,-1825538762,813512439,1980365443,935493637,-1031797781,188830256,184841664,-2093386533,225772537,738884736,922682741,-348049274,133792546,2088766837,91565066,814102271,-2096043199,192220153,738884736,922682741,-1824444282,-1477717453,-1070345677,813250303,198325187,-1272875831,637579301,175449400,23410726,-1002830732,-1977217419,-11278331,1195835763,-478852798,197822294,1295217901,813383299,-1976863488,805570116,21314086,518718069,74788924,74764811,-404016125,813186688,1107850751,1330202946,-1174148273,727187455,-32839431,57891167,1368424427,2088815243,225705990,108316939,1195854153,-346160661,1976109840,166419971,1979709827,197735170,1431729407,860948055,2067694537,762642480,252134646,2093222005,41216002,1156979435,208932103,235357430,1156974196,141888519,-402490172,15401602,-352224536,2156547,123275122,-346137249,180650756,2067694585]},{"sector":2,"length":512,"data":[91553840,350815090,2064041983,-1023410128,2074202675,2097596208,-402650576,-2007433579,1127251847,1967192963,33089539,-294270466,-1995829832,1127251847,32041027,861099715,-2134297610,141950974,812104843,636215179,1946339062,1270662152,-339506128,1260824,658312562,-1006078208,-1942988868,-1006179389,-1942996036,-293949,-25160075,-117213697,2074283243,-18384,855638461,216791286,1946221443,5564419,-133904765,-922024334,-1611988363,33456284,1431447925,1347880529,-855310152,1493122095,-661976715,-855309640,-117314769,123667827,-2096698535,216532676,-346399488,-401682687,1583087611,-1185916989,-1070399489,-772296974,-1017161655,1963064195,1665041181,376766256,1979711293,2074169355,1662975792,82532400,811802367,-919397653,1962933888,1300899334,772401923,74790200,55413294,-117127293,200813939,-2145815351,91553790,-351978714,87764483,166396533,-2096794551,-471137081,-2146667783,1979252734,637996546,1912765699,653079046,-968422006,3175686,-2133118013,1962935932,2139604753,1127030832,2139604547,-398254032,861733030,-1999490085,-1976535794,-1053161148,-1054204298,1157034122,343179271,-2012593014,1127251847,1967192963,8185859,-327823618,556160,1278741876,705196808,-779483060,185093258,-165382967,1963919172,121959948,637957136,-347667062,-2021107711,-2092748673,58015995,-33537560,-153324087,1971324740,1962281496,172263956,813664136,1090224963,602407797]},{"sector":3,"length":512,"data":[1976499712,121960172,-167217905,1947207492,168618754,-1895271214,-30377722,-386370102,-1017839614,509019729,868977415,2134805979,-77928400,123667826,-2096829607,-1007089980,121960029,638743856,1095763338,1945911528,1166681606,-336048127,92939789,74760202,-169131705,-1017775829,869413725,2097596352,855642160,121960155,639923488,1156973962,225774855,57966760,-947968957,170949894,121959936,-955878130,170949894,-162206976,1963984708,93005350,218580214,-990507147,1124365440,-947919744,170949894,121959936,-955878130,170949894,640215808,-1960442485,1156973141,259329287,1954596598,-427801852,2097596287,-167769552,1963853636,2097596166,-167769552,1950353220,-1269673943,-1916784072,-852459754,-972721375,741377542,-1962261366,-967288072,-399766972,-947127399,-351648632,-1897361404,1960512507,-1294847227,-1017818579,18220545,327679,1954039057,1701080677,1917132900,544370546,118370597,942685837,-1021263485,135661058,2097153,3145730,4653059,5373956,6160390,8323079,9895946,10878975,1869566995,1851878688,1634738297,1701667186,1936876916,1902465562,1701996917,1634738276,1701667186,544367988,1936943469,241659497,1635151433,543451500,1953068915,1225746531,1818326638,1797284969,1870100837,1344562290,1835102817,1919251557,1818326560,1847616885,1763734639,1818304622,1702326124,1634869348,459630446,1634885968,1702126957,1635131506,543520108,544501614]},{"sector":4,"length":512,"data":[1869376609,291792247,1635151433,543451500,1634886000,1702126957,1632636530,543519602,1869771333,824516722,1049429774,-1048496044,-3997478,18421254,33580032,50362368,67145216,83927552,100708352,117491712,134276608,151060992,167844864,184631808,201415680,218204416,234991872,251783680,268576256,285369344,302164480,738383616,755167489,771956737,788748801,805541889,822337281,839130881,386164993,1868787273,1667592818,1329864820,1702240339,1869181810,420089198,1920103747,544501349,1652122987,1685217647,1685021472,622869093,1967331121,1852142194,1701519476,1634689657,1226859634,622869060,538972465,1701080931,1734438944,622869093,453643569,1920103747,544501349,542003011,1701080931,1734438944,622869093,554306865,1635151433,543451500,1652122987,1685217647,1685021472,1886593125,1718182757,224683369,1850285834,1768710518,1701519460,1634689657,1226859634,1886593092,1718182757,224683369,1850285322,1768710518,1868767332,1881171300,543516513,1667592307,1701406313,688524644,543449410,1830842991,1769173865,1260414830,1868724581,543453793,1768318276,1769236846,1176530543,224750697,1162550538,1746944601,1847620449,1646294127,544105829,1953721961,1701604449,805965156,1769235265,1663067510,543515759,1701273968,1953459744,1635148064,1650551913,1713399148,544042866,542003011,1769366884,168650083,1685013291,1634738277,1931502951,1768121712,1684367718]},{"sector":5,"length":512,"data":[1935763488,1953459744,1701143072,1919950958,1918988389,168649829,1701728060,544370464,1701998445,1313817376,1685021472,1634738277,544433511,1635151465,543451500,544370534,1702259047,1701519470,1634689657,1663067250,224748655,1866678026,1881171300,543516513,1970365810,1702130533,623386724,1763715377,1869488243,1635131508,543451500,544370534,1702259047,1701519470,1634689657,1663067250,224748655,1866678538,1881171300,543516513,1667592307,1701406313,1936269412,1668180256,1769172591,1852142707,1769414772,1948280948,1931502952,1667591269,543450484,1701080931,1734438944,1225395557,1652122955,1685217647,541346080,1667592307,1701406313,1936269412,1668180256,1769172591,1852142707,1769414772,1948280948,1931502952,1667591269,543450484,1652122987,1685217647,2036427808,225736047,1851076618,1701601889,544175136,1634038371,1260414324,541219141,1818386804,1852383333,1936028192,1852138601,1701650548,2037542765,1344080397,1835102817,1919251557,1818326560,1847616885,1629516911,2003790956,168649829,1852785458,1969711462,544433522,1701519457,1634689657,1713398898,1629516399,1701868320,1768319331,1634476131,1635084142,221144423,1024068874,1113146699,2021153568,2036018267,1532852601,1919179564,979727977,1634753373,1717397620,1852140649,1566928225,1528847709,542983471,1145646939,1852730938,218762589,538984714,538998904,538976288,538976288,538976288,538976288,538976288,1667592275]},{"sector":6,"length":512,"pattern":0,"data":[1701406313,543236211,762279796,1953785196,1797288549,1868724581,543453793,1701080931,1242172718,2037981216,538976377,538976288,538976511,538976288,538976288,1884495904,1718182757,544433513,543516788,1701080931,1734438944,1868963941,1752440946,1751326821,1667330657,544367988,779380083,541264397,1919179552,979727977,1634753373,1717397620,1852140649,543518049,1701860128,1768319331,1948283749,1797285224,1868724581,543453793,1768318308,1769236846,1713401455,778398825,541919757,541404960,538976288,538976288,538976288,538976288,538976288,1701860128,1768319331,1948283749,544498024,1696624225,1851877486,543450467,1652122987,1685217647,544434464,1953721961,1701604449,168636004,790634554,1849312329,538996334,538976288,538976288,538976288,1394614304,1768121712,1936025958,1701344288,2036689696,1918988130,1852383332,1702065440,235539758,859737351,247562553,1163182853,1394626637,1163018568,1094983748,16724,0,0,0,0,0,28660565,-65536,-1,-1]},{"sector":7,"length":512,"data":[1497713663,538976322,0,0,32506976,640,1572889,31216199,1347616768,322,25448272,1380319232,366,26889028,1196621824,432,34100297,1263861760,564,29771347,1161953280,586,39865422,1330511872,630,45631043,1448280064,652,44193107,1095499776,718,48517698,1280311296,762,51403331,1280507904,806,54285657,1430781952,850,58610517,1347026944,872,21102764,10682368,388,22544504,12386304,366,26869919,0,432,31195265,9306112,498,34078861,11010048,542,36962470,9830400,454,38404216,9371648,608,41287835,3801088,696,42729625,11206656,718,48496914,14024704,762,51380467,16056320,806,54264042,13631488,850,58589287,1347616768,65011884,33619968,123732818,28639232,1829,7885382,3456,28639746,4984,341508946,1380319232,362807485,33619968,434176437,55705600,6676,10702672,2048,55706113,3196,196150108,1262747648,443547807,33619968,524288850,56688640,7865,18259,8256,55706113,9394,604045749,1179844608,891289750,33619968,965870418,28639232,14561,8475207,9712,28639745,10708,707461970,1414070272,763363470,33685504,806748597]},{"sector":8,"length":512,"data":[55705600,12346,9262153,10944,28639745,11562,760087378,1263861760,846201000,33685504,881459637,55705600,13518,10898261,12384,28639745,12827,842990418,1161953280,986710136,33619968,1079837522,28639232,16314,9391182,16752,28639745,17595,1162543954,1330511872,1177551003,33619968,1258423122,56688640,19082,10049107,20944,28639745,22045,1453458258,1431502848,1372586137,33619968,1453458258,28639232,22045,3819075,19440,56558081,20420,1352205138,1095499776,1470103723,33619968,1532298066,28639232,23322,17977922,23536,55706113,24321,1593508277,1280311296,1606418646,33619968,1685390162,55836672,25899,15948355,26384,55706113,27618,1821311828,1280507904,1850736885,33619968,1921975122,55836672,29499,15357273,30000,55706113,31199,2054619988,1430781952,2084569296,33619968,-2131492014,55836672,33194,12734538,33680,61080065,34236,-2048785995,1482162176,61603943,100728832,62063029,55705600,953,62849876,56360960,965,64029535,56688640,971,7,100663442,111872,1375733248,100663299,218112,1543505408,100663299,221440,1593837056,3,0,0,281,537690192,-2147205092,1612710496,221261825,2527360,134983728,204474944]},{"sector":9,"length":512,"data":[69213248,1077936256,155197448,1073750064,1075841344,808464392,-1868560272,537723009,805316240,1074269104,1074540560,-2147213284,239091712,806305824,1077936160,239083535,1882206256,1452318734,-1874850560,-1339031514,222300171,473959472,8389664,537608256,540019776,188760072,806109216,191901744,2855072,646975501,196096000,806567944,538722316,1073774596,1075843392,136327186,538001472,808456768,-1609469904,-2147483504,34804736,805306514,134234124,591398939,537665584,808461376,1075585036,537427972,1076897088,1077936134,71311363,536879152,1076897088,1077936133,54534148,203436080,1610645632,135282692,540018496,135479308,808453952,9580592,-16634880,16781311,-60416,85590018,-2147145664,65551,50331488,-2147149312,255853851,335544832,196607,672138522,991237,-10485758,436208383,85663749,50336016,-52224,46137352,-2027183065,851968,-15466459,-1073740545,218103808,-56576,327679,64,2359315,184549172,721567744,472514559,268435497,1073751040,524287,-13958848,285212927,1073742592,589823,-1540947264,34601,262161,150994740,654491648,8399781,67113216,-49152,46137352,-2144754393,1638400,-15466491,-1073737473,455543814,893146667,229058861,352321709,536872192,851967,992478400,657800233,24119,327701,218103616,671399936,893135675,6174503,100674304]},{"sector":10,"length":512,"pattern":0,"data":[-60416,281018402,-100392445,789063175,688531465,1057766667,706455565,1045866025,976501555,24373,393245,352321312,688439296,61669950,674170792,876557114,2241825,100670720,-49152,146800660,-1392361941,789030915,1060321832,573907252,2031616,-15466489,-1073735937,39594249,71304060,447350563,677190491,8203131,117445888,-57344,79691788,1073962025,1562073882,1376256,-12582905,-1073738497,440402692,727522139,419430492,-61952,1048825,-1995307296,-1810332642,-1961393898,38933,-15794157,167836159,503570432,379132046,385876122,-62720,917600,-1978530336,-1793555170,-1927833834,983040,1627389709,-536869376,6306049,285218560,6225919,98566158,-2095151086,-1776905448,35863,-15532017,100687615,956424192,94,-1258276096,134223617,2621439,98566158,-1608613358,-1558797800,41239,-16187377,100673535,302112768,251658384,-62976,393255,658047456,0,55705745,-16252905,234942463,302374912,413146754,396564130,385876129,-63232,917743,-1877867040,-703089378,-384376808,983040,-268435702,-536869376,15677697,251662592,16383999,48234504,-669527278,983040,-100663536,-536869376,16333057,201332480,6356991,98566158,-736970978,-484909545,60182,-15597545,234905343,503701504,399643318,383916247,234]},{"sector":11,"length":512,"data":[405,537690192,-2147205092,1612710496,204484609,1610645632,135282692,540022880,135479308,808458336,-1870656208,-1339031514,171968523,473959472,8389664,537411648,540019008,155205632,805847072,141570096,11309216,646979597,196096000,806371336,538722316,1073774596,1075842624,2109455,537870400,808455744,-1609666512,218136976,2527296,134983728,204475712,69213248,1077936256,205529099,1074274352,1075841856,808464396,-1868559504,67960918,805316240,1074269104,1074540577,-2147213284,524304384,807419936,1077936160,524296224,1882206256,730898463,-1877996288,-1339031514,322963467,473959472,8389664,538001472,540021312,289423368,806502432,292565040,37024,320077952,37378,471862320,142607424,807747616,1073743424,1075839808,2109444,807747616,1073743168,1075840064,540028931,8421388,272630880,805781512,322964512,805781512,204484656,1610645632,135282692,808461120,68419712,185077824,807616520,-2144325584,1074552832,591398912,537665584,808461376,335577136,134234124,591398939,537665584,808461376,135282692,591398939,9580592,-16638976,16781311,-49152,85655554,67447168,65551,50331412,-2147149056,251921707,1073742336,196607,692061467,987141,-15466494,452985599,86720517,402656272,-60416,85590017,587205920,-44032,4194308,2228224,-15466460,1073748479,152766727,201989386]},{"sector":12,"length":512,"data":[-15007745,-58369,891886633,13599,2359324,335544128,201670656,454754303,454892314,892017707,13599,196623,117440340,654426112,251658375,1409287168,458751,-2144927296,1638400,-12582907,-1073737473,220662790,673913518,893135783,452984877,335545600,1245183,655099840,723168781,1546233640,1012280629,2686976,-12582906,-1073733377,119669518,154077222,187238952,222235709,673847983,859712422,893006907,721420383,335545856,2293759,570625984,789063175,688531465,1057766667,706391821,2083104296,976501555,1045847861,1900544,-12582905,-1073736449,58458632,161219904,444402299,727522139,419430492,335546112,1114111,1073940160,2064161796,1560959753,32011,720919,234905684,302374912,395777674,513087629,251658373,1409289472,393312,1614348768,1245184,1582563345,-536868352,411570691,8593043,318770944,6181888,31457286,24121,2031637,201358912,503635968,837032134,8459940,536876288,8273920,81788940,-451360994,-1709791951,1245184,2115239967,-536868352,415636995,10760676,536875776,8262656,65011722,-451360994,42289,2162703,100695636,956424192,126,1543555840,117444355,-60416,29360134,5381,524311,234891092,302374912,396564098,513939617,385876128,1409288448,917543,-1877867040,-1961388522,-2044813544,983040,659816458,-536869376,2570497]},{"sector":13,"length":512,"data":[201332480,6312960,98566158,-1659465198,-1458005993,37150,1179667,167796308,503570432,411636367,285212812,1409294080,524414,-1810365728,33822,2097169,134250068,402841600,9313945,234884864,16651264,31457286,33046,983055,100728340,369221632,251658394,335548416,393470,-29818400,0,55705846,458767,117440276,84000768,419430645,1409288192,1048815,-2112747808,-1558778859,-1575444201,40990,589849,268496724,302440448,384636304,416684009,11869920,167776000,15684608,31457286,61241,917529,268499220,302440448,379065737,411768705,8658580,251664128,16323584,98566158,-1709780206,-1726425065,36382,1048591,100727060,956424192,385876217,1409289216,917600,-1222769184,-568863726,-350821608,1114112,2119434271,-536868864,415636994,285212900,1409294336,524414,-954334496,58648,1114129,134241876,386064384,9836172,301995776,6181888,98566158,-770525666,-501688553,59926,0,0,0,0,-2147483229,537690192,1073758236,69206624,537026688,808452448,-2139091936,1074028544,408946704,134422576,35340316,808458336,-2146619344,805316240,1074269104,1074540554,-2147213284,138428416,805912608,1077936160,138420233,1882206256,-1399807992,-1878782720,-1339031514,557844491,473959472,8389664,538918976,540024896,524304392,807419936]},{"sector":14,"length":512,"data":[527446064,8491168,646979597,196096000,806371336,538722316,1073774596,1075842624,2109455,537870400,808455744,-1609666512,218125968,2527296,134983728,204475712,69213248,1077936256,205529099,1074274352,1075841856,808464396,-1868559504,269287467,805316240,1074269104,1074540563,-2147213284,289423360,806502432,1077938208,306192401,1882206256,9478161,335577088,1074528787,641736732,37424,471862320,142607424,807747616,54542336,1075840320,805715972,1075839008,1073754149,104858688,1073954848,540028933,8421388,272630880,805781512,322964512,805781512,1610645552,135282692,808461120,68419712,185077824,807616520,808464432,207618176,1074266176,1075851299,-2144325596,1074533376,135989248,540025664,608182284,1074016304,135989264,808461120,1426063506,536870660,268444416,1507327,1050176,738201886,655360030,2896384,-52719,2031616,-16515037,1073747711,503320582,506200081,2560000,285223986,16777010,603990784,-61440,171966498,234880780,17829151,286920976,656281886,-13949171,739716351,1459617586,22044,2359345,687865604,202129408,503840767,203230215,269295373,437325825,504438289,723979559,388825087,-52692,597001,587210496,-40960,104857622,287178768,1977344,838870800,839974956,65535,2359339,587202336,201998336,-13893633,689711615,268901895,437325825,504438289]},{"sector":15,"length":512,"data":[740756775,-13489129,721420543,1610621952,2293759,-15989184,-54273,120265771,17827614,286920976,656281886,388769549,-52692,786432,-9175039,436208127,790533,-9175038,436208127,1187845,-13631464,671089663,86736901,67450176,1572882,67108672,-2147145728,893388073,1639429,-109838322,-536866816,277418502,378804356,361437057,251658392,1879057664,458751,743637440,1507328,-9175037,-1073737985,291573765,661724794,7810157,67114752,-35840,96469006,1511080208,1294422302,22316,327733,754974480,689225728,52822781,86115458,136840743,169937290,210045831,455937321,731326500,842815206,876294956,4011322,83900160,-64512,364904494,637730089,570720771,671491845,-1979175673,-2029363447,688686347,605764877,707499816,741489750,976501555,8501,327731,721420064,689160192,52822588,86115458,136840743,169937290,210045831,455937321,731326500,858534630,893006907,855638077,1073743104,2818047,637670336,570720771,671491845,554273288,-2062842102,755837196,-1758976997,1009509929,993209394,1026898484,3604480,-15728634,-1073729793,53543445,87229490,120915508,154601526,188287544,234359856,673848159,737945893,842946204,875443007,2831663,100677376,-64512,364904494,839069954,872755972,906441990,940128008,806041866,722335756,623418395,-433325015,1060257366]}]],[[{"sector":1,"length":512,"data":[791948851,11061,393269,754974528,689225728,53543580,87229490,120915508,154601526,188287544,234359856,673848159,842935077,875443007,2831663,100676864,-57344,348127276,822230569,855912963,889598981,923284999,956971017,-133418997,706436877,-1674894040,775110450,724905780,2031616,-15728633,-1073735937,58458633,119735360,192612958,458955389,6051421,134221568,2556928,31457286,33298,458787,452984580,51101696,86180990,123405947,157288572,190712412,224201792,520093821,1073743616,1507327,2080508352,587481091,2064276999,1528462603,1546345755,2031616,-14680057,-1073735937,58458633,119735360,192612958,458955389,6039901,184555264,6320128,98566158,-2062513646,-1760127720,36119,786445,67133552,57344,218107648,6320128,31457286,24633,1114135,234905204,268820480,411570819,395712147,218103948,1879052800,262238,224,1245199,100687476,956424192,251658334,1879056640,393342,2117665248,0,28639459,327695,117440368,117555200,251658261,67110400,458751,355795392,983040,-15728634,-1073740033,10497,134223616,2584576,98566158,-2112708592,-1575444201,41750,589839,100673392,302112768,251658384,1879050752,393255,658047456,983040,2121269279,-536869376,10760449,536874752,8286208,31457286,42289,917529]},{"sector":2,"length":512,"data":[268500592,302440448,411308169,394335892,9966987,251663104,16674816,65011722,-1726444016,39446,983059,167835908,268689408,379132046,251658394,67112960,393465,-113704480,983040,-16515065,-1073740033,2366209,973078528,251875841,1879049472,458751,-184090176,983040,-16515066,-1073740033,16069889,100667136,-61440,29360134,64553,458765,83885936,57344,117444352,-64512,29360134,53019,2031635,167804528,822337536,415633572,318767332,1879056384,655486,-1523514400,-451361008,1638400,-277872632,-536866816,312479750,413210498,363009698,419430636,1879050496,1048815,-1257240864,-703098862,-384376808,60693,655375,100724592,956424192,419430639,1879051776,1048825,-1995307296,-1810332656,-1961393898,38933,983063,234944884,268820480,399708814,379132120,251658394,-61440,393470,-113704480,1507328,1617952780,-536867328,313987077,417208276,15406819,301995776,6189056,98566158,-770525680,-501688553,59926,1179671,234905092,268820480,399643318,383916247,234,0,0,0,-2147483357,537690192,1073758236,69206624,537026688,808452448,-1870656208,-1339031514,171968523,473959472,8389664,537411648,540019008,155205632,805847072,141570096,8491168,646979597,196096000,806371336,538722316,1073774596,1075842624,2109455]},{"sector":3,"length":512,"data":[537870400,808455744,-1609535440,218125968,2527296,134983728,204475712,69213248,1077936256,205529099,1074274352,1075841856,808464396,-1868559504,269287467,805316240,1074269104,1074540563,-2147213284,289423360,806502432,1077938208,306192401,1882206256,9478161,335577088,9568787,1074540544,135989248,540025664,608182284,537669680,-2147205092,624959496,1077936176,537214979,104858688,536879152,3155264,1074020416,54534150,808453440,-2139091936,1074028544,121636880,1074536496,121636883,808464432,503316626,218103555,1946157312,131071,202376474,1946157568,131071,522192154,335553280,1507327,1050176,738201886,655360030,2896384,-52719,3211264,-15466460,1073752319,-62452,201793031,520948765,268505101,504437265,220667409,-54489,841750316,470417407,520093705,1610621696,1507327,1050176,738201886,655360030,2896384,-52719,3014656,-14680028,1073751551,-62453,704642859,503785756,220138759,286261520,287183130,655173406,841750316,65535,2359342,637534048,202063872,-13893633,723266559,218570247,17829151,286920976,656281886,388769549,-52692,1507328,-9175037,-1073737985,291573765,661724794,7810157,67114752,-35840,96469006,1511080208,1294422302,22316,327735,788528916,689291264,52822781,86115458,120063527,160041005,193399391,220793989,673454909]},{"sector":4,"length":512,"data":[1445604247,858534460,893006907,889192481,536872192,2949119,637670592,570720771,671491845,-1979175673,-2029379319,688686347,605760781,-433350872,741489705,976501555,15669,327733,754974528,34914304,75629350,103220514,137168680,169937290,210045831,455937321,697772068,842804198,876294956,4011322,100677376,-60416,364904494,839069954,872755972,906441990,940128008,806041866,722335756,623418395,-433324247,1060257366,791948851,11061,393269,754974496,34914304,70386481,104072499,137758517,171444535,204475193,727649784,455420060,842934570,875443007,2831663,100676864,-48128,348127276,839069954,872755972,906441990,940128008,806041866,1594750988,623418409,1043016219,775110450,724905780,2293760,-15466489,-1073734913,75367179,108725539,142346075,173803872,205523806,8195421,117446912,-57344,113246224,1528439556,1546214683,1577533443,1638400,-12582905,-1073737473,438502406,727522139,121635676,251658334,1946159104,393255,-2112749088,1638400,-109838322,-536866816,277418502,378804356,361437057,318767256,1946160896,655609,-1911553056,-1709795048,983040,-109838320,-536869376,16333057,285218560,6190080,98566158,-2012052720,-1776905448,35863,1245199,100687476,956424192,94,-1258278144,100667137,-60416,29360134,5429,327695,117440352,117555200]},{"sector":5,"length":512,"data":[251658261,335546112,458751,605749696,0,55705691,393231,117440276,889307136,251658485,1610614016,458751,-184090176,983040,-15466489,-1073740033,13572865,251662592,16348160,48234504,-669527278,1507328,1584660498,-536867328,313921541,416749522,15341282,0,385,1074561104,-2147213300,1612710496,-2145374207,135468032,408977436,221261872,2527360,134983728,204474944,69213248,1077936256,155197448,1073750064,1075841344,808464392,-1868560272,537723052,805316240,1074269104,1074540560,-2147213284,239091712,806305824,1077936160,239083535,1882206256,-2121228274,-1874850560,-1339031514,222300171,473959472,8389664,537608256,540019776,188760072,806109216,191901744,5673120,646972429,196096000,807485448,538722316,1073774596,1075846976,2109472,538984512,808460096,-1608552400,218114960,2527248,134983728,204477248,69213248,1077936256,306192401,1074274352,1075843392,808464402,-1868557968,8388608,-1845357804,204472320,69209152,1075841152,104869925,54542336,805584928,1075839008,88092709,71319552,805519392,8396848,1082131552,121643037,134422576,121667612,808464432,8421388,272630880,807616520,335577136,135282692,591398923,808464432,207618176,1074266176,203436067,807682080,8400944,4197396,1074273032,203436067,807682080,9580592,-16594944,16781311,-1,84738050]},{"sector":6,"length":512,"data":[537205632,-16646129,50331647,1074072832,202376475,335550464,131071,251921691,1879057664,458751,743637440,851968,-15466461,1073743103,318767104,1610621952,720895,-15990208,891237887,2424832,-15466460,1073749247,152766728,201989386,-15007745,-58369,905969451,475411743,318767190,-64768,720895,-2045115456,-1691840217,1245184,-252,-1073739009,663689731,10299538,83891968,-60416,96469006,722250537,1012279083,11573,327701,218103616,688177152,724241447,2962748,83891456,-57344,79691788,1009330956,758458155,2424832,-15466490,-1073734401,119669516,154077222,187238952,859769917,893006907,1445604191,620757054,1073743360,1900543,570625216,789063175,688531465,1057766667,976501555,707354421,15915,393253,486539040,51167232,136709922,170395951,205327145,876294975,694105402,2763582,117448448,-60416,163577878,-1677443069,2064131077,1560959753,2081258763,23638,458792,536870720,201932800,1024273709,1532697149,660430107,656948027,1616914727,895245355,12079,458792,536870688,201932800,1024273709,1532697149,660430107,656948027,1549543719,895508523,12079,1900611,989855552,51527680,604323904,1583220516,153495048,671754794,690555688,224354060,2065312555,2105351035,674904615,2116624930,2088512382,876362803,1060453950,1124073535,536878336]},{"sector":7,"length":512,"data":[3866623,1073943104,606340416,140402183,705242662,673712682,204024075,722296671,2071665195,662535451,573061690,2088511778,863927851,1043610684,1061107006,1507328,1627389707,-536867328,378147333,411899799,8724117,218107648,6356991,31457286,24633,-15663081,234905343,302374912,395712136,512956556,251658371,-60672,393310,1580794336,983040,2130706207,-536869376,10760449,536874752,8323071,31457286,42289,-14614513,100695807,956424192,126,1627424512,100667139,-40960,29360134,44805,393233,150994708,84066304,1386927,134223616,2621439,98566158,-1558805998,-1575444201,40990,-16187377,100673535,302112768,251658384,-62976,393255,658047456,1638400,-16777458,-536866816,361304582,394335896,513022091,318767236,-61696,655614,-1709833248,-1910597352,0,55705846,393231,117440352,84000768,285212879,335545856,589823,-821755200,62761,-16252903,268496895,302440448,384570754,413210531,10493602,151001344,15728639,115343376,-317353966,-703076074,-1256267752,983040,-268435702,-536869376,15677697,234887424,16383999,115343376,-1743419118,-1961393898,-2078370792,1507328,-100663537,-536867328,382931461,416815002,9313945,268439296,16383999,31457286,63801,-15990761,234905855,302374912,401282772,518199518,285212855,-57600]},{"sector":8,"length":512,"data":[524414,-468188448,50718,-14680047,134250239,402841600,13049573,301995776,6225919,98566158,-367603182,-501688553,46622,0,0,0,381,537690192,-2147205092,1612710496,204484609,1610645632,135282692,540022880,135479308,808458336,-1870656208,-1339031514,171968523,473959472,8389664,537411648,540019008,155205632,805847072,141570096,11309216,646979597,196096000,806371336,538722316,1073774596,1075842624,2109455,537870400,808455744,-1609666512,218136976,2527296,134983728,204475712,69213248,1077936256,205529099,1074274352,1075841856,808464396,-1868559504,67960918,805316240,1074269104,1074540577,-2147213284,524304384,807419936,1077936160,524296224,1882206256,730898463,-1877996288,-1339031514,322963467,473959472,8389664,538001472,540021312,289423368,806502432,292565040,37024,320077952,37378,471862320,8389696,1076445248,71311363,537280560,658522112,1075840064,88092675,-2146688976,73400448,1074270272,203436039,1074271040,-2144325625,1074028544,591398928,8400944,272630804,1074268936,808464419,8400944,4197472,807616520,807682080,335577136,134234124,591398939,608182320,9580592,-16628736,16781311,-1,84738050,537205520,-16646132,33554431,1074072832,-15204337,50331647,67439872,327157004,-56576,720895,1376832,352332844,2031616]},{"sector":9,"length":512,"data":[-220,1073747711,-62458,722803221,422379519,891237676,5643350,50336000,-1,46137352,2032957973,1114112,-252,-1073739521,744101122,452984921,335545600,1245183,655099840,-2128964569,606831656,758463574,1769472,-14680059,-1073736961,656870407,679549588,725363076,2962724,83892992,-49152,130023442,-1809373428,-2077720294,1009460265,11573,393269,754974484,689225728,53150456,86639650,136710023,170395951,205327145,463219519,859723297,893006907,444737375,8726666,100676352,-57344,331350058,721567273,704913923,638027525,671690504,1024141578,-1674887412,993206555,1597323828,-1977974233,34088,393267,721420096,722714624,53150270,86639650,136710023,170395951,205327145,463219007,876294945,660550970,680139394,486539397,335546112,1376255,1073940672,-1442372860,1528462635,2066242843,23638,458783,385875744,50970624,86180928,679217400,458955389,695936861,520093788,1073743616,1507327,1073940928,-133881084,2099898374,1562073882,1546353448,1507328,1627389707,-536867328,378147333,411899799,8724117,218107648,6356991,31457286,24633,-15663081,234905343,302374912,395712136,512956556,251658371,-60672,393310,1580794336,983040,2130706207,-536869376,10760449,536874752,8323071,31457286,42289,-14614513,100695807,956424192,126]},{"sector":10,"length":512,"data":[-1258245888,83889921,-60416,29360134,5417,458771,184549140,33800192,159123635,285212827,1610614528,589823,2080899776,5382,-16252905,234891263,302374912,396564098,513939617,251658400,-63232,393255,-1877868064,1638400,587202318,-536866816,747180550,394335896,513022091,318767236,-61696,655394,-1709833248,-1910597352,1245184,-217,-1073739009,446244611,9316506,687870720,-1,62914570,-1977974233,34088,19857408,1246034,-217,-1073739009,664410627,9316505,687870720,-1,62914570,-1876437990,46888,327695,117440276,687980544,318767349,335546112,720895,2080506816,-1123427064,1114112,-10485753,-1073739521,115148802,419430645,-63488,1048815,-2112747808,-1558778836,-1575444201,40990,-16187367,268496895,302440448,384642192,416684009,11869920,167776000,15728639,31457286,61241,-15859687,268499455,302440448,379071625,411768705,8658580,251664128,16383999,98566158,-1709780206,-1726425065,36382,-15728625,100727295,956424192,385876217,-62464,917600,-737016352,-568857834,-1222712552,1114112,2130706207,-536868864,518264834,285212870,-57344,524414,-451411232,50974,-15597545,234905343,302374912,401217234,518133975,182,0,0,0,0,-2147483288,537690192,8405020,339738644]},{"sector":11,"length":512,"data":[536961152,39862272,1619002400,23076866,540028976,-2146156544,2097760,536961088,39878660,805396512,808464432,647004173,196096000,805978120,538722316,1073774596,1075841088,2109449,537477184,808454208,-1610059728,218136976,2527264,134983728,204476480,69213248,1077936256,255860750,1073750064,1075842880,808464398,-1868558224,1074593878,805316240,1074269104,1074540557,-2147213284,188760064,806109216,1077938208,205529099,1882206256,730898443,-1877996288,-1339031514,322963467,473959472,8389664,538001472,540021312,289423368,806502432,292565040,37024,320077952,37378,4197424,1074273032,203436067,807682080,471862320,142607424,807747616,1310848,1073954880,71311365,540018240,54542336,1075840576,805715972,536879152,-2144328384,1073746944,104858688,1073954848,2109445,1074020416,54534149,808453440,-2146688976,73400448,1074270272,203436039,1074271040,808464391,37424,-64900,-16711665,50331647,-2147152640,202376489,-65024,131071,322962701,-56576,720895,1376832,352332844,1835008,-15466460,1073746943,-54523,355802933,422319386,203164716,2031616,-14680028,1073747711,-62458,905969451,437597471,739847189,2694185,603987712,-49152,104857622,218103595,523632639,354030901,724310316,11036,-16580585,251658239,436584448,680798081,360262788,385876090,-64512]},{"sector":12,"length":512,"data":[983039,-1709570624,-1909941977,1511348524,983040,-15728603,-1073740033,2904833,83898624,-60416,314572840,822238761,855912963,889598981,923284999,956971017,-519294965,590031643,741555286,758459956,3080192,-14680059,-1073731841,37497105,70386481,104072499,137758517,171444535,204475193,724245473,875311907,2962734,83898112,-49152,297795622,839069954,872755972,906441990,940128008,806041866,723247372,1009460009,775171123,11573,393263,654311188,689029120,35783672,103023905,136709925,170395951,205327145,724179775,859723303,893006907,754974815,536872448,2424831,1042878656,553787907,621159429,789063175,688531465,1057766667,1579887131,976501555,24373,393261,620756800,51429376,86049314,119866916,154077222,187238952,457116733,727591210,876294974,6239546,117449472,-60416,197132314,-66781949,1527347976,2097896714,1074813964,2086043163,58930,458773,218103584,436518912,693967707,4195164,117445888,-49152,79691788,1562073882,1073962027,1507328,1584660497,-536867328,310582789,378738824,9181078,318770944,6190080,31457286,24121,-16056297,234905855,302374912,411377290,395777685,251658381,-62208,393312,1614348768,0,28639319,-16449523,83886079,57344,100667136,-1,29360134,5380,-16252905,234891263,302374912]},{"sector":13,"length":512,"data":[413146754,396564130,251658401,-63232,393255,-1877868064,983040,671088394,-536869376,2570497,-1929379840,218321408,-64256,327679,224,-16383985,117440511,67223552,385876213,-63488,917743,-2112748064,-1575444450,-1592286442,1507328,-268435703,-536867328,397745669,383785174,9442025,167776000,15728639,31457286,61241,1179671,234905204,503701504,399643318,383916247,385876202,-62464,983039,-1222769184,-568863726,-350821608,0,0,0,281,537690192,-2147205092,1612710496,221261825,2527360,134983728,204474944,69213248,1077936256,155197448,1073750064,1075841344,808464392,-1868560272,537723009,805316240,1074269104,1074540560,-2147213284,239091712,806305824,1077936160,239083535,1882206256,1452318736,-1874850560,-1339031514,222300171,473959472,8389664,537608256,540019776,188760072,806109216,191901744,2855072,646975501,196096000,806567944,538722316,1073774596,1075843392,136327186,538001472,808456768,-1609469904,-2147483504,34804736,805306514,134234124,591398939,537665584,808461376,1075585036,537427972,1076897088,1077936134,71311363,536879152,1076897088,1077936133,54534148,203436080,1610645632,135282692,540018496,135479308,808453952,9580592,-16690944,587206143,-1,4194308,1245184,-13369308,1073744639,-54526,2694185,83894528]},{"sector":14,"length":512,"data":[-60416,180355096,655121449,723225869,758463574,-2060937945,-1977968853,2031616,-14680059,-1073735937,205269257,462228775,657274155,730146965,9050775,83894016,-49152,163577878,-1928517876,1009462043,-1792594635,-1758886616,35354,393265,687865620,689094656,69337980,136710044,170395951,205327145,442371391,461842306,1459103786,876294974,6239546,100675840,-57344,314572840,570637865,638032900,671690504,1024141578,1577926412,1076331034,589834779,993214038,1597323828,3080192,-12582906,-1073731841,69337873,136710044,170395951,205327145,442371391,457189250,723724330,876294974,6239546,117445888,-60416,79691788,1562073882,589840423,1245184,-14680057,-1073739009,442247427,6101851,117445376,-49152,62914570,1528454187,23835,2359296,983477,-13369338,-536869121,1387265,100667136,-49152,31457286,5417,2359296,983890,-13369338,-536869121,16067329,100667136,-49152,31457286,62761,0,0,0,0,281,537690192,-2147205092,1612710496,221261825,2527360,134983728,204474944,69213248,1077936256,155197448,1073750064,1075841344,808464392,-1868560272,537723009,805316240,1074269104,1074540560,-2147213284,239091712,806305824,1077936160,239083535,1882206256,1452318736,-1874850560,-1339031514,222300171,473959472,8389664,537608256]},{"sector":15,"length":512,"data":[540019776,188760072,806109216,191901744,2855072,646975501,196096000,806567944,538722316,1073774596,1075843392,136327186,538001472,808456768,-1609469904,-2147483504,34804736,805306514,134234124,591398939,537665584,808461376,1075585036,537427972,1076897088,1077936134,71311363,536879152,1076897088,1077936133,54534148,203436080,1610645632,135282692,540018496,135479308,808453952,9580592,-16679680,587206143,-1,4194308,1245184,-13369308,1073744639,-54526,2694185,620760832,-36864,29360134,11347,327713,419430164,688570368,220662876,1445665677,657274172,730146965,9050775,83894016,-57344,163577878,655113257,723225869,-1792594635,-1758755544,35354,327711,385875776,201965568,462228775,893135659,680863533,446114181,822083722,335545856,2686975,2083066560,-1677450749,789063175,688531465,1057766667,-2112201203,706447143,1045887016,976501555,24373,393265,687865632,689094656,69337918,136710044,170395951,205327145,442371391,457189250,1445144618,876294974,6239546,100675328,-49152,297795622,-1677450749,789063175,688531465,1057766667,-2112201203,706428967,1043014440,976501555,24373,458781,352321296,67682304,159057955,190646875,457183357,6302590,117445888,-64512,79691788,1562073882,589840423,1245184,-14680057,-1073739009,442247427,6101851]}],[{"sector":1,"length":512,"data":[117445376,-49152,62914570,1528454187,23835,2359296,983477,-13369338,-536869121,1387265,100667136,-49152,31457286,5417,2359296,983890,-13369338,-536869121,16067329,100667136,-49152,31457286,62761,0,281,537690192,-2147205092,1612710496,221261825,2527360,134983728,204474944,69213248,1077936256,155197448,1073750064,1075841344,808464392,-1868560272,537723009,805316240,1074269104,1074540560,-2147213284,239091712,806305824,1077936160,239083535,1882206256,1452318736,-1874850560,-1339031514,222300171,473959472,8389664,537608256,540019776,188760072,806109216,191901744,2855072,646975501,196096000,806567944,538722316,1073774596,1075843392,136327186,538001472,808456768,-1609469904,-2147483504,34804736,805306514,134234124,591398939,537665584,808461376,1075585036,537427972,1076897088,1077936134,71311363,536879152,1076897088,1077936133,54534148,203436080,1610645632,135282692,540018496,135479308,808453952,9580592,-16735744,587206143,-1,4194308,1245184,-13369308,1073744639,-54526,2694185,83890432,-60416,46137352,590030632,1245184,-14680059,-1073739009,677128451,2304807,83890944,-49152,46137354,589899560,23595,393239,251658004,688242688,69338026,725624988,385876094,1073743360,983039,570623424,2116656132,2083209256]},{"sector":2,"length":512,"data":[1507328,-14680058,-1073737985,58468613,681313314,8268608,603979776,251770112,335546112,458751,-584515136,983040,-15466490,-1073740033,8148481,603979776,251875840,335546112,458751,2083062208,983040,-15466490,-1073740033,14505473,0,0,0,0,281,537690192,-2147205092,1612710496,221261825,2527360,134983728,204474944,69213248,1077936256,155197448,1073750064,1075841344,808464392,-1868560272,537723009,805316240,1074269104,1074540560,-2147213284,239091712,806305824,1077936160,239083535,1882206256,1452318736,-1874850560,-1339031514,222300171,473959472,8389664,537608256,540019776,188760072,806109216,191901744,2855072,646975501,196096000,806567944,538722316,1073774596,1075843392,136327186,538001472,808456768,-1609469904,-2147483504,34804736,805306514,134234124,591398939,537665584,808461376,1075585036,537427972,1076897088,1077936134,71311363,536879152,1076897088,1077936133,54534148,203436080,1610645632,135282692,540018496,135479308,808453952,9580592,-16711424,587206143,-1,4194308,1245184,-13369308,1073744639,-54526,2694185,83892480,-61440,113246224,1075489293,975723291,1563122729,1114112,-16515067,-1073739521,723986434,318767139,536872192,720895,1546191808,590030632,1245184,-12582907,-1073739009,690432002,6040355,100673792]},{"sector":3,"length":512,"data":[-61440,247463968,-1677450749,654845447,688531465,1024205579,2065391642,707275559,1599503659,1507328,-16515066,-1073737985,61483269,681313314,8268608,100669184,-49152,96469006,-1677450749,1076395561,31787,393239,251658016,688242688,69337980,725624988,486539390,268437248,1376255,-50132800,-1425605628,-133435126,1579712027,58930,4456448,983477,-16515065,-1073740033,14493953,100667648,-61440,46137352,-1005724375,983040,-16515066,-1073740033,8148481,83889920,-61440,29360134,31830,4456448,983890,-16515065,-1073740033,8136961,100667648,-61440,46137352,-301106135,983040,-16515066,-1073740033,14505473,83889920,-61440,29360134,56662,0,0,0,0,381,537690192,-2147205092,1612710496,204484609,1610645632,135282692,540022880,135479308,808458336,-1870656208,-1339031514,171968523,473959472,8389664,537411648,540019008,155205632,805847072,141570096,11309216,646979597,196096000,806371336,538722316,1073774596,1075842624,2109455,537870400,808455744,-1609666512,218136976,2527296,134983728,204475712,69213248,1077936256,205529099,1074274352,1075841856,808464396,-1868559504,67960918,805316240,1074269104,1074540577,-2147213284,524304384,807419936,1077936160,524296224,1882206256,730898463,-1877996288,-1339031514,322963467]},{"sector":4,"length":512,"data":[473959472,8389664,538001472,540021312,289423368,806502432,292565040,37024,320077952,37378,471862320,8389696,1076510784,71311363,537280560,675299328,1075840064,88092675,-2146688976,73400448,1074270272,203436039,1074271040,-2144325625,1074028544,591398928,8400944,272630804,1074268936,808464419,8400944,4197472,807616520,807682080,335577136,134234124,591398939,608182320,9580592,-16628736,16781311,-1,84738050,537205520,-16646132,33554431,1074072832,-15204337,50331647,67439872,327157004,-56576,720895,1376832,352332844,2031616,-220,1073747711,-62458,722803221,422379519,891237676,5643350,50336000,-1,46137352,2032957973,1114112,-252,-1073739521,744101122,452984921,335545600,1245183,655099840,-2111337958,606831912,758463574,1769472,-14680059,-1073736961,438766599,679618442,725363077,2962724,83892992,-49152,130023442,-1977997556,-2060942809,1009460265,11573,393269,754974484,689225728,53150456,86639650,136710023,170395951,205327145,463219519,859723297,893006907,662772319,8661140,100676352,-57344,331350058,721567273,704913923,638027525,671690504,1024141578,-1674887412,993206555,1597323828,-1809350374,33832,393267,721420096,722714624,53150270,86639650,136710023,170395951,205327145,463219007,876294945]},{"sector":5,"length":512,"data":[442447162,680798081,486539396,335546112,1376255,1073940672,-1442372860,1528462635,2066242843,23638,458783,385875744,50970624,86180928,679217400,458955389,695936861,520093788,1073743616,1507327,1073940928,-133881084,2099898374,1562073882,1546353448,1507328,1627389707,-536867328,378147333,411899799,8724117,218107648,6356991,31457286,24633,-15663081,234905343,302374912,395712136,512956556,251658371,-60672,393310,1580794336,983040,2130706207,-536869376,10760449,536874752,8323071,31457286,42289,-14614513,100695807,956424192,126,-1258245888,83889921,-60416,29360134,5417,458771,184549140,33800192,159123635,285212827,1610614528,589823,2080899776,5382,-16252905,234891263,302374912,396564098,513939617,251658400,-63232,393255,-1877868064,1638400,587202318,-536866816,747180550,394335896,513022091,318767236,-61696,655394,-1709833248,-1910597352,1245184,-216,-1073739009,444737283,8726666,704647936,-1,62914570,-2128964569,33832,19857408,1246034,-216,-1073739009,445654787,12003540,704647936,-1,62914570,-1725457894,36392,327695,117440276,687980544,318767349,335546112,720895,2080506816,-1123427064,1114112,-10485753,-1073739521,115148802,419430645,-63488,1048815,-2112747808,-1558778836]},{"sector":6,"length":512,"data":[-1575444201,40990,-16187367,268496895,302440448,384642192,416684009,11869920,167776000,15728639,31457286,61241,-15859687,268499455,302440448,379071625,411768705,8658580,251664128,16383999,98566158,-1709780206,-1726425065,36382,-15728625,100727295,956424192,385876217,-62464,917600,-737016352,-568857834,-1222712552,1114112,2130706207,-536868864,518264834,285212870,-57344,524414,-451411232,50974,-15597545,234905343,302374912,401217234,518133975,182,0,0,0,0,-2147483229,537690192,1073758236,69206624,537026688,808452448,-2139091936,1074028544,408946704,134422576,35340316,808458336,-2146619344,805316240,1074269104,1074540554,-2147213284,138428416,805912608,1077936160,138420233,1882206256,-1399807992,-1878782720,-1339031514,557844491,473959472,8389664,538918976,540024896,524304392,807419936,527446064,8491168,646979597,196096000,806371336,538722316,1073774596,1075842624,2109455,537870400,808455744,-1609666512,218125968,2527296,134983728,204475712,69213248,1077936256,205529099,1074274352,1075841856,808464396,-1868559504,269287467,805316240,1074269104,1074540563,-2147213284,289423360,806502432,1077938208,306192401,1882206256,9478161,335577088,1074528787,641736732,37424,471862320,142607424,807747616,54542336,1075840320,805715972]},{"sector":7,"length":512,"data":[1075839008,1073754149,104858688,1073954848,540028933,8421388,272630880,805781512,322964512,805781512,1610645552,135282692,808461120,68419712,185077824,807616520,808464432,207618176,1074266176,1075851299,-2144325596,1074533376,135989248,540025664,608182284,1074016304,135989264,808461120,1191182482,637533955,335553280,1900543,-15988672,-2113925633,287178768,1977344,838870800,839974956,65535,2359339,587202324,201998336,521011199,268505101,504437265,220667409,-54489,841750316,475463679,520093782,1610621696,1507327,1050176,738201886,655360030,2896384,-52719,3014656,-14680028,1073751551,-62453,704642859,503785756,220138759,286261520,287183130,655173406,841750316,65535,2359342,637534048,202063872,-13893633,723266559,218570247,17829151,286920976,656281886,388769549,-52692,786432,-255,436208127,790533,-254,436208127,1187845,-13369320,671089663,86736901,67450176,1572882,67108672,-2147145728,893388073,1508357,-253,-1073737985,291573765,661724794,7810157,67114752,-1,96469006,1511080208,1294422302,22316,327733,754974484,689225728,52822781,86115458,136840743,169937290,210045831,455937321,731326500,842815206,876294956,4011322,83899136,-57344,331350058,637680681,570720771,671491845,554273288,-2062842102]},{"sector":8,"length":512,"data":[755837196,-1758976997,741533227,976501555,15669,327731,721420096,34848768,75629350,103220514,160041000,193399329,220793989,673454893,736504215,858534460,893006907,889192509,335545856,2949119,822219968,855912963,889598981,923284999,956971017,-133418997,706436877,-1674894040,1060257366,791948851,11061,393269,754974528,689225728,53543580,87229490,120915508,154601526,188287544,234359856,673848159,842935077,875443007,2831663,100676864,-57344,348127276,822230569,855912963,889598981,923284999,956971017,-133418997,706436877,-1674894040,775110450,724905780,2031616,-15466489,-1073735937,58458633,119735360,192612958,458955389,6051421,117448448,-49152,163577878,1073970178,1577526020,2097904394,1562073882,23595,458783,385875744,34193408,71304060,173934371,444402555,693967707,385876060,-62720,917600,-1978530336,-1793555184,-1927833834,851968,1627389708,-536869888,251658240,-62208,393312,1614348768,1507328,1593835281,-536867328,310579205,378738824,9181078,301993216,6225919,14680068,983040,1593835283,-536869376,6174977,553651968,8323071,31457286,32313,10682368,983477,-251,-1073740033,1378049,100667136,-60416,31457286,41,-16252905,234891263,268820480,394400416,379721889,251658403,-63232,393255,-1877868064]},{"sector":9,"length":512,"data":[983040,671088394,-536869376,2570497,520097536,8323071,31457286,42033,-14680049,100695807,822206464,419430565,-61952,1048830,-1995307296,-1810332656,-1961393898,38933,-15794157,167837439,268689408,379132046,154,1375798528,83889923,-1,29360134,62727,393231,117440276,687980544,218104060,-63744,327679,224,-14745581,167804671,822337536,415633572,318767332,-57344,655486,-1523514400,-451361008,1638400,-268435704,-536866816,312479750,413210498,363009698,419430636,-63232,1048815,-1257240864,-703098862,-384376808,60693,-16121841,100724735,956424192,419430639,-61952,1048825,-1995307296,-1810332656,-1961393898,38933,-15794153,234945023,268820480,399708814,379132120,251658394,-61440,393470,-113704480,1507328,1627389708,-536867328,313987077,417208276,15406819,301995776,6225919,98566158,-770525680,-501688553,59926,0,0,0,0,409,1074561104,-2147213300,1612710496,-2145374207,135468032,408977436,221261872,2527360,134983728,204474944,69213248,1077936256,155197448,1073750064,1075841344,808464392,-1868559760,135069911,805316240,1074269104,1074540566,-2147213284,339755008,806699040,1077936160,339746837,1882206256,-1399807978,-1878782720,-1339031514,557844491,473959472,8389664,538918976,540024896]},{"sector":10,"length":512,"data":[524304392,807419936,561000496,8491168,646979597,196096000,806371336,538722316,1073774596,1075842624,2109455,537870400,808455744,-1609535440,218125968,2527296,134983728,204475712,69213248,1077936256,205529099,1074274352,1075841856,808464396,-1868558992,269287467,805316240,1074269104,1074540563,-2147213284,289423360,806502432,1077938208,306192401,1882206256,9478163,335577088,9568787,8400896,4197472,807616520,1075842080,808464420,202637440,453513280,807616520,135282692,591398939,473957424,807682080,205524016,142607392,807747616,1073743424,1075839808,2109444,807747616,1073743168,1075840064,540028931,73400448,538787968,540018496,-2145646589,808453952,9580592,-16666112,16781311,-60416,85590018,-2147145696,131090,67108628,268769792,222299432,787461,-15466472,218104319,2164741,-15466491,-1073735425,205531402,469241135,724248362,875311932,1445803310,788529245,335545856,2555903,553783744,587473411,621159429,1594369543,688531465,1057761035,1043067175,976501555,1532378421,2949120,-15466489,-1073732353,44706064,83690491,111937020,150144939,175835548,526126205,766389473,887501487,251658490,268444928,458751,743637440,851968,-15466461,1073743103,469762048,335553536,1310719,-15989440,-58625,738197275,523632639,385876021,335547136,917600,-1978530336,-1793555170]},{"sector":11,"length":512,"data":[-1927833834,851968,1611923468,-536869888,251658240,335547648,393312,1614348768,1507328,1578369041,-536867328,310582789,378738824,9181078,301993216,6165504,14680068,983040,1578369043,-536869376,6174977,553651968,8262656,31457286,32313,1310735,100726548,771874816,251658375,335549696,393463,-2144468512,983040,-149684202,-536869376,16201985,234887424,16323584,115343376,-2078373614,-2129226728,-1743418601,983040,-116129776,-536869376,16333057,-1879048192,318878976,335546112,720895,336790464,2086050606,1114112,-15466490,-1073739521,699603714,251658261,335552256,393342,-1540292128,983040,2115239968,-536869376,10825985,134223616,2561024,98566158,-2112708578,-1575444201,41750,589839,100673300,302112768,251658384,335546880,393255,658047456,1245184,-116129777,-536868352,411966979,10098329,-704643072,285430272,335545856,589823,2082144960,62761,458771,184549140,319012864,1455238900,318767325,335552256,655486,-971111456,-1540234216,1245184,2115239968,-536868352,415702531,10826213,134224128,15668224,115343376,-2112708578,-1575444201,-334126314,1638400,-283901943,-536866816,512758278,416683957,367597280,251658477,335546880,393455,-281476640,1507328,-116129777,-536867328,311303685,416815059,10098329,201332480,6296576,98566158,-736970978]},{"sector":12,"length":512,"data":[-484909545,60182,1179671,234905108,503701504,399643318,383916247,234,0,0,0,0,385,1074561104,-2147213300,1612710496,-2145374207,135468032,408977436,221261872,2527360,134983728,204474944,69213248,1077936256,155197448,1073750064,1075841344,808464392,-1868560272,537723052,805316240,1074269104,1074540560,-2147213284,239091712,806305824,1077936160,239083535,1882206256,-2121228274,-1874850560,-1339031514,222300171,473959472,8389664,537608256,540019776,188760072,806109216,191901744,5673120,646972429,196096000,807485448,538722316,1073774596,1075846976,2109472,538984512,808460096,-1608552400,218114960,2527248,134983728,204477248,69213248,1077936256,306192401,1074274352,1075843392,808464402,-1868557968,8388608,-1845357804,204472320,69209152,1075841152,104869925,54542336,805584928,1075839008,88092709,71319552,805519392,8396848,1082131552,121643037,134422576,121667612,808464432,8421388,272630880,807616520,335577136,135282692,591398923,808464432,207618176,1074266176,203436067,807682080,8400944,4197396,1074273032,203436067,807682080,9580592,-16590592,16781311,-40960,84738050,537205632,65548,33554196,537205504,-16646129,50331647,1074072832,252708123,335550464,196607,461374733,984069,-9437147,-1073740033,2904833,587205888]},{"sector":13,"length":512,"data":[-60416,4194308,1245184,-10485724,1073744639,-62462,3481397,603989248,-60416,138412060,168368905,-15988195,219942399,469761818,-13893633,891237887,1245184,-253,-1073739009,663099907,9513115,67113728,-1,62914570,-1658351846,37416,327705,285212436,688308224,220925052,891759452,3954221,83891456,-49152,79691788,722216745,758463531,1376256,-14680059,-1073738497,690686980,891759420,620757037,335545856,1900543,570625216,789063175,688531465,1057766667,993208875,1597323828,15958,393255,520093504,51232768,127665186,154077222,187238952,859769917,893006907,724183391,654311486,536872448,2031615,570625472,638032900,671690504,1024141578,993214220,1597323828,707477033,1769472,-15466489,-1073736961,71303943,136578460,173738363,8194909,117450752,-49152,155189279,221064460,1528446269,1566382939,674970407,1613309735,1549544288,3092277,117450752,-57344,155189279,221064460,1528446269,1566382939,674970407,1546200871,1616915292,3092277,486556416,-49152,306184250,71319555,1577526051,640026718,170535433,688597032,1600064553,439036685,2098953083,976889725,690102824,2083225214,1010578300,893271604,16191,1900611,989855520,51527680,587481152,1583220515,153495048,671754794,690555688,224354060,2065312555,2105351035,674904615,2083070498]},{"sector":14,"length":512,"data":[2122197884,876362803,1060453950,385876031,-62720,917600,-1978530336,-1927833834,-2061593320,983040,1627389709,-536869376,6306049,285218560,6225919,98566158,-1776908270,-1827107817,33566,-15532017,100687615,956424192,251658334,335552256,393342,-1540292128,983040,2115239968,-536869376,10825985,553651968,8262656,31457286,32313,7864320,1114977,-15466490,-1073739521,699335938,385875989,-63488,917543,-2112748064,-1592286442,-1608605160,983040,671088393,-536869376,9441793,167776000,2621439,31457286,10041,-15859687,268500735,302440448,379065737,411768705,8658580,251663104,16711679,65011722,-1726440938,36382,15138816,1114962,-15466490,-1073739521,701433090,419430645,-63488,1048815,-2112747808,-1558778859,-1575444201,40990,-16187367,268496895,302440448,384636304,416684009,11869920,167776000,15728639,31457286,61241,-15859687,268499455,302440448,379065737,411768705,8658580,251664128,16383999,98566158,-1709780206,-1726425065,36382,-15728625,100727295,956424192,385876217,-62464,917600,-737016352,-568857834,-1222712552,1114112,2115239967,-536868864,518264834,285212870,335552512,524414,-451411232,50974,-15597545,234905343,302374912,401217234,518133975,182,0,0,1073742198,537690192,268779548,-1877196624]},{"sector":15,"length":512,"data":[87032012,440447040,805335440,537231364,-1877262160,1613758607,134553602,-1877524304,1613758677,186658817,67637256,-1333787264,512760128,408956928,134422576,-2147123172,-1877393232,1613758477,808464408,613449741,196096000,805978120,538722316,1073774596,1075841088,2109449,537477184,808454208,9543728,-1874850560,-1339031516,222300171,473959472,8389664,537608256,540019776,205537280,806043680,-1851772880,537722880,805315728,1074269104,1074540560,-2147213284,239091712,806305824,1077936160,239083535,-1607454672,218103953,2396176,134983728,204477248,69213248,1077936256,306192401,1073750064,1075843648,808464401,37280,613419021,196096000,806764552,538722316,1073774596,1075844160,2109461,538263616,808457280,9543728,335577088,9568787,537669632,579878940,134950912,-2147219440,135006016,805306513,134422576,121667612,9504780,808464384,67109010,409728,537083968,540017728,1073743168,1075840064,-1842335741,39714816,1245183,-255,671089663,85606405,134552336,-16646126,67108863,1074079744,454034714,794629,-232,889192959,1015813,-253,-1073740033,8533249,67112704,-1,29360134,36917,327699,184549148,688111616,1446783779,285212846,1610614016,589823,1009320640,23595,327695,117440384,855752704,486539308,469763584,1376255,570624192,1057435396,1043037225]}]],[[{"sector":1,"length":512,"data":[775169843,44886,393243,318766944,50839552,120521762,725494079,874984316,385876014,-2147482112,983039,570623424,1057435396,775169843,2818048,-14942201,-1073732865,66126351,127665216,201132458,447417516,660413275,695937150,847063900,16275174,117452544,-49152,297795622,1074000130,-1442341884,-1408500471,1528474380,2116508955,2099870504,-1372642517,-130961616,58930,458799,654311200,34717696,71304177,162138012,212601853,458955435,662578781,729622651,816721699,855126447,922747110,-2147481856,3080191,-251521600,-1677443069,-435574265,-1408172789,1528474385,1008622875,2116435487,2099804967,590175276,-1372619730,-130961616,1245184,-248,-536868097,411177475,10688162,150998784,-1,31457286,36882,-16056301,167796991,503570432,378147461,251658391,-62208,393312,1614348768,983040,1627389722,-536869376,6301697,234885888,-1,65011722,-1961391854,33046,-15663081,234905343,503701504,394793603,378738828,251658390,-60672,393310,1580794336,983040,1593835292,-536869376,6167041,251662080,-1,31457286,39446,-15466481,117440511,771874816,251658375,-60160,458751,-2144468512,0,56557781,458781,352321404,84459520,144180891,228985504,428808365,10957702,117447936,-32768,146800660,-1744397563,-1509122040,-1894208238,-1489795559]},{"sector":2,"length":512,"data":[983040,-1577058550,-536869376,10565889,419434240,10616831,31457286,41269,-15990765,184549375,503570432,378606222,285212829,-61696,524452,-1810758944,38167,-15728625,100705535,956424192,251658404,-58624,393380,-1541733920,1507328,-238,-536867073,310648325,413669266,10360473,369102592,10878975,31457286,42297,-15269873,100705791,453107712,165,1375808256,117447939,-33792,146800660,-821641979,-66396920,-182914291,-298585063,1900544,-8388601,-1073736449,113050888,215812303,418583292,871635445,318767342,-63488,655599,-1608645664,-334126825,1507328,-268435703,-536867328,397745669,383785174,15537641,167776000,15728639,31457286,61241,-15138801,100724735,889315328,285212911,-62720,589823,-1927871776,38168,-15990761,251658239,503701504,399774391,383981790,318767339,-61952,655609,-2078407712,-1743416296,1376256,-100663537,-536867840,311303684,416815059,251658393,-61440,393465,-113704480,983040,-100663525,-536869376,16325377,301995776,-1,98566158,-770525666,-501688553,59926,-15335409,100726783,956424192,251658487,-59648,393463,-149224992,0,0,0,0,385,1074561104,-2147213300,1612710496,-2145374207,135468032,408977436,221261872,2527360,134983728,204474944,69213248]},{"sector":3,"length":512,"data":[1077936256,155197448,1073750064,1075841344,808464392,-1868560272,537723052,805316240,1074269104,1074540560,-2147213284,239091712,806305824,1077936160,239083535,1882206256,-2121228274,-1874850560,-1339031514,222300171,473959472,8389664,537608256,540019776,188760072,806109216,191901744,5673120,646972429,196096000,807485448,538722316,1073774596,1075846976,2109472,538984512,808460096,-1608552400,218114960,2527248,134983728,204477248,69213248,1077936256,306192401,1074274352,1075843392,808464402,-1868557968,8388608,-1845357804,204472320,69209152,1075841152,104869925,54542336,805584928,1075839008,88092709,71319552,805519392,8396848,1082131680,121643037,134422576,121667612,808464432,8421388,272631008,807616520,335577136,135282692,591398923,808464432,216006784,1074266176,203436067,807682080,8400944,4197396,1074273032,203436067,807682080,9580592,-16593920,16781311,-1,84738050,537205632,-16646129,50331647,1074072832,202376475,335550464,131071,251921691,1879057664,458751,743637440,851968,-15466461,1073743103,318767104,-536861696,720895,-15990208,891237887,2424832,-15466460,1073749247,152766728,201989386,-15007745,-58369,905969451,475411743,318767190,-64768,720895,-2045115456,-2077715417,1245184,-252,-1073739009,663689731,9316505,83891456,-60416]},{"sector":4,"length":512,"data":[79691788,657140492,758463574,1376256,-4194299,-1073738497,690686980,893135655,352321581,536872192,851967,722207936,657144873,11573,393255,520093460,51232768,136709922,170395951,205327145,732637503,876294954,1449080122,654311486,-1073740288,2031615,570625472,638032900,671690504,1024141578,707346188,993213995,1597323828,2555904,-14680058,-1073733889,69337869,136710044,170395951,205327145,725494079,876294954,6239546,117448448,-60416,163577878,-1677443069,2064131077,1560959753,1544322315,31830,458792,536870848,201932800,1024273709,1532697149,660430107,656948027,1616914727,895245355,12079,458792,536870688,201932800,1024273709,1532697149,660430107,656948027,1549543719,895508523,12079,1900611,989855680,51527680,587481152,1583220515,153495048,671754794,690555688,224354060,2065312555,2105351035,674904615,2116624930,2088512382,876362803,1060453950,1124073535,536878336,3866623,1073943104,589497408,140402183,705242662,673712682,204024075,722296671,2071665195,662535451,573061690,2088511778,863927851,1043610684,1061107006,1507328,1627389707,-536867328,378147333,411899799,8724117,218107648,6356991,31457286,24633,-15663081,234905343,302374912,395712136,512956556,251658371,-60672,393310,1580794336,983040,2130706207,-536869376,10760449,536874752]},{"sector":5,"length":512,"data":[8323071,31457286,42289,-14614513,100695807,956424192,126,-1258257152,100667137,-60416,29360134,5,327695,117440276,687980544,385875989,-63488,917543,-2112748064,-1592286442,-1608605160,983040,671088393,-536869376,9441793,167776000,2621439,31457286,10041,-15859687,268500735,302440448,379065737,411768705,8658580,251663104,16711679,65011722,-1726440938,36382,15990784,983890,-15466490,-1073740033,13567233,83889920,-60416,29360134,62761,-16252903,268496895,302440448,384570754,413210531,10493602,151001344,15728639,115343376,-317353966,-703076074,-1256267752,983040,-268435702,-536869376,15677697,234887424,16383999,115343376,-1743419118,-1961393898,-2078370792,1507328,-100663537,-536867328,382931461,416815002,9313945,268439296,16383999,31457286,63801,-15990761,234905855,302374912,401282772,518199518,285212855,-57600,524414,-468188448,50718,-14680047,134250239,402841600,13049573,301995776,6225919,98566158,-367603182,-501688553,46622,0,0,0,303,537690192,-2147205092,1612710496,204484609,1610645632,135282692,540022880,135479308,808458336,-1870656208,-1339031514,171968523,473959472,8389664,537411648,540019008,155205632,805847072,141570096,8491168,646979597,196096000,806371336]},{"sector":6,"length":512,"data":[538722316,1073774596,1075842624,2109455,537870400,808455744,-1609666512,218125968,2527296,134983728,204475712,69213248,1077936256,205529099,1074274352,1075841856,808464396,-1868559504,269287467,805316240,1074269104,1074540563,-2147213284,289423360,806502432,1077938208,306192401,1882206256,9478161,335577088,9568787,1074540544,135989248,540025664,608182284,537669680,-2147205092,624959496,409648,537083968,540017728,624959488,344112,537149504,808452928,-2139091936,1074028544,121636880,1074536496,121636883,808464432,1258291346,218103554,335544576,131071,260048154,1610612992,196607,461374746,802821,-15466494,436208127,991237,-15466472,671089407,86708229,33558336,-40960,85590018,268770080,196623,117440276,654426112,285212836,536871680,589823,-1540947264,34603,-14352369,117440511,1392623616,218103854,-56576,327679,64,2359315,184549152,721567744,472514559,268435497,1073751040,524287,-13958848,285212927,1073742592,589823,-1540947264,34601,262159,117440276,654426112,285212837,536871936,589823,-1524170048,32811,262161,150994752,654491648,8399269,83893504,-60416,146800660,-1475533044,2066230043,2100001833,1012280629,1245184,-14680059,-1073739009,691742723,2569532,83890944,-49152,62914570,1009466152,10037,393261]},{"sector":7,"length":512,"data":[620756756,51429376,136709922,170395951,205327145,464325951,693839914,861744120,893006907,4085343,100670720,-57344,146800660,-1392361943,789030915,1060321832,573907252,1900544,-12582906,-1073736449,37628680,128451501,859449391,891368511,352321570,335546112,851967,1544291520,2115715088,43561,458773,218103584,688177152,440402780,6101851,117445376,-49152,62914570,1528446979,23835,-15859687,268499455,302440448,411311753,394335892,9966987,251663104,16383999,65011722,-1726444002,39446,-16056297,234905855,302374912,411377290,395777685,251658381,-62208,393312,1614348768,1507328,1593835281,-536867328,512233989,378738819,9181078,318770944,6225919,31457286,24121,3866624,1507765,671088392,-536867328,511840773,379721888,10557347,150998784,2621439,31457286,36882,-16121841,100673535,956424192,39,1375768832,134223619,15728639,98566158,-1608613358,-1558797800,41239,-16187369,234942463,302374912,397745808,383785174,251658473,-62976,393455,-281476640,1114112,-100663537,-536868864,399708674,251658456,-61440,393465,-113704480,1507328,1627389708,-536867328,313990661,417208276,15406819,301995776,6225919,98566158,-770525666,-501688553,59926,0,0,0,428,537690192,-2147205092,1085280261]},{"sector":8,"length":512,"data":[-1878892516,87032039,574664708,-1315962272,537210880,1612398768,5279746,537026608,1085292549,-1878958054,87031917,423669888,210764128,23080960,-2146619344,805316240,1074269104,1074540554,-2147213284,138428416,805912608,1077936160,138420233,1882206256,-1399807992,-1876947712,-1339031514,272631819,473959472,8389664,537804864,540020544,255868928,806240288,242233392,8491168,646987789,196096000,806174728,538722316,1073774596,1075841856,136327180,537608256,808455232,-1609863120,218125968,2527236,134983728,204480832,69213248,1077936256,541073439,1073750064,1075847232,808464415,-1868554384,269287467,805316240,1074269104,1074540563,-2147213284,289423360,806502432,1077938208,306192401,1882206256,9478161,335577088,9568787,537669632,-2147205092,1073743424,1075839808,1075851268,1077936133,54534148,203436080,1610645632,135282692,540018496,135479308,808453952,-2146684880,73400448,1074270272,-2144325597,1074009088,134940688,808461120,8400944,4197472,807616520,1075842080,808464420,202637440,453509184,807616520,1075842080,70266916,453513280,807616520,37424,-65185,-16711665,50331647,-2147145728,306185513,-65024,262143,672138503,86581253,184555268,6356991,98566158,-1760130542,-1793553129,34078,-15925233,100688127,956424192,251658336,-58880,393312,1613300192,1507328,1593835281,-536867328]},{"sector":9,"length":512,"data":[378016261,411834262,8593043,318770944,6225919,31457286,24121,-14942193,100687615,117563392,251658334,-57600,393342,-1540292128,983040,2130706208,-536869376,10825985,553651968,8323071,31457286,32313,-14548977,100695807,687988736,419430526,-63488,1048615,-2112747808,-1592286442,-1608605160,34606,-16187375,134227967,302178304,8400528,167776000,2621439,31457286,10041,-15138801,100673535,671211520,419430439,-61952,1048610,-1995307296,-2129225707,-1810330857,33822,-15794157,184549375,369352704,513349786,251658382,-61440,393250,574161376,983040,587202331,-536869376,2238465,100663296,111872,1375778816,587206403,-1,31457286,61224,-16318449,117440511,671203328,251658489,-63488,393255,-334167584,1507328,671088393,-536867328,384636165,416684009,11869920,234884352,2293759,14680068,1114112,587202319,-536868864,399708674,385876184,-62464,917600,-1222769184,-568863726,-350821608,1114112,2130706207,-536868864,415636994,285212900,-57344,524414,-954334496,58648,-15597545,234905343,503701504,399643318,383916247,234,0,0,637,8421456,205523984,1619002400,23076866,134422576,408977436,221261872,2527360,134983728,204474944,69213248,1077936256,155197448,1073750064,1075841344]},{"sector":10,"length":512,"data":[808464392,-1868559760,135070169,805316240,1074269104,1074540566,-2147213284,339755008,806699040,1077936160,339746837,1882206256,-1366253548,-1876947711,-1339031514,272631819,473959472,8389664,537804864,540020544,255868928,806240288,242233392,25399456,646987789,196096000,806174728,538722316,1073774596,1075841856,136327180,537608256,808455232,-1609732048,218192016,2527236,134983728,204480832,69213248,1077936256,541073439,1073750064,1075847232,808464415,-1868554384,269287725,805316240,1074269104,1074540563,-2147213284,289423360,806502432,1077938208,306192401,1882206256,43032593,-1870655999,-1339031514,725616651,473959472,8389664,539770944,540028224,742408200,808271904,728772656,14127264,646987790,196096000,808337416,538722316,1073774596,1075851072,136327216,539967552,808464448,-1607569360,234925200,2527264,134983728,204484928,69213248,1077936256,859840562,1074274352,1075851840,808464435,-1868549776,269353089,805316240,1074269104,1074540596,-2147213284,893403136,808861728,1077938208,910172213,1882206256,1452318772,-1878520320,-1339031514,926943243,473959472,8389664,540557376,540031296,943734792,809058336,930099248,2855072,646972430,196096000,809123848,538722316,1073774596,1075854144,136327228,540753984,808467520,-1606782928,-2147483504,34803712,805306514,537673740,537427972,1076897088,1077936134,71311363]},{"sector":11,"length":512,"data":[536879152,1076897088,1077936133,54534148,52441136,1082137608,808464391,1074036748,134940688,808461120,4197424,1074273032,203436067,807682080,9580592,-16631808,16780543,-61440,103350273,33557520,-61440,103350273,402663944,-61440,100859915,268764288,104859141,101130246,1074071568,168297993,101416965,537201668,252183821,268444928,458751,743637440,1441792,-15728605,1073745407,738202883,890568748,33280,2359318,234880784,352534528,422325274,203371797,1245184,-15728637,1073744639,746198274,1407276,67113728,-61440,37748746,741104149,5465,327701,218103568,201637888,1445399851,2962748,100672768,-61440,213909532,638001667,671690504,1024141578,705511180,993214038,1597323828,3211264,-15728633,1073752319,41812492,286284816,-166063748,559620378,656563490,-517462236,792735528,825260848,355611005,251658290,268446464,393459,-214367776,983040,-200277970,-536869376,16005377,872419072,15863808,31457286,62009,3801103,100725008,956424192,318767345,268439808,655454,-1944648736,-2095148264,983040,1578106899,-536869376,6174977,822087424,16257024,31457286,63545,851983,100687888,956424192,251658336,268449536,393466,-96927264,1507328,-284164088,-536867328,377623045,413210531,10493602,150998784,15667200,31457286,36882]},{"sector":12,"length":512,"data":[655375,100673296,956424192,251658279,268440576,393463,-2027028000,983040,-149946347,-536869376,8400385,369102592,16191488,31457286,63289,917525,201390352,302309376,411113097,8658580,251663104,16322560,65011722,-1726440938,36382,1048591,100727056,956424192,249,1375778304,83889923,-61440,29360134,65285,393231,117440272,84000768,251658495,268436224,458751,-15007296,983040,-15728636,-1073740033,16718593,285217024,6164480,48234504,-1944614894,983040,-133169102,-536869376,8789505,838864640,16257024,31457286,36638,720919,234905616,302374912,395777674,513087629,251658373,268439040,393470,-1961885216,1048576,-32505840,-536869120,16660737,983040,-32505804,-536869376,16660737,-687865856,386094081,268436224,983039,-1105590848,-2010671077,-1574197976,1507328,-15728636,-1073737985,467933701,681387910,11217833,117446144,-61440,54525965,521903643,-786423856,251658272,268436736,458751,655163840,1114112,-15728634,-1073739521,231671042,520093738,268446720,1442035,-669906464,-1676346093,-417356011,-1775840224,-449732818,2031616,-217055187,-536865280,330764809,362484988,551952294,781526738,13971884,301994752,6164480,65011722,-501688553,46622,3080207,100725776,503439360,251658439,268447744,393460,-971111968]},{"sector":13,"length":512,"data":[983040,-133169102,-536869376,8721921,855641856,16257024,31457286,56854,3473425,134279696,302178304,10821289,905974016,15863808,48234504,-1541494766,983040,-99614664,-536869376,12457217,956305152,16388096,31457286,48405,524315,302051088,319283200,531305962,747775640,830877420,587202788,268437760,1704175,-401404960,-384398059,-535243241,-1759529698,-315846362,-483291346,983040,-284164086,-536869376,15677697,989860096,15798272,48234504,-1961297130,1114112,-250609604,-536868864,418059778,251658378,268439296,393465,-753794592,1114112,-149946348,-536868864,535696386,285212845,268440832,524535,-585891104,47135,0,0,0,0,637,8421456,205523984,1619002400,23076866,134422576,408977436,221261872,2527360,134983728,204474944,69213248,1077936256,155197448,1073750064,1075841344,808464392,-1868559760,135070169,805316240,1074269104,1074540566,-2147213284,339755008,806699040,1077936160,339746837,1882206256,-1366253548,-1876947711,-1339031514,272631819,473959472,8389664,537804864,540020544,255868928,806240288,242233392,25399456,646987789,196096000,806174728,538722316,1073774596,1075841856,136327180,537608256,808455232,-1609732048,218192016,2527236,134983728,204480832,69213248,1077936256,541073439,1073750064,1075847232,808464415]},{"sector":14,"length":512,"data":[-1868554384,269287725,805316240,1074269104,1074540563,-2147213284,289423360,806502432,1077938208,306192401,1882206256,43032593,-1870655999,-1339031514,725616651,473959472,8389664,539770944,540028224,742408200,808271904,728772656,14127264,646987790,196096000,808337416,538722316,1073774596,1075851072,136327216,539967552,808464448,-1607569360,234925200,2527264,134983728,204484928,69213248,1077936256,859840562,1074274352,1075851840,808464435,-1868549776,269353089,805316240,1074269104,1074540596,-2147213284,893403136,808861728,1077938208,910172213,1882206256,1452318772,-1878520320,-1339031514,926943243,473959472,8389664,540557376,540031296,943734792,809058336,930099248,2855072,646972430,196096000,809123848,538722316,1073774596,1075854144,136327228,540753984,808467520,-1606782928,-2147483504,34803712,805306514,537673740,537427972,1076897088,1077936134,71311363,536879152,1076897088,1077936133,54534148,52441136,1082137608,808464391,1074036748,134940688,808461120,4197424,1074273032,203436067,807682080,9580592,-16624384,16780543,-61440,84738049,33558400,-61440,103350274,-2147087072,1572906,201326352,-2147089664,84935940,101072902,268830496,155190536,84543494,67505024,220202252,985093,-15728603,-1073740033,2904833,587208192,-61440,54525965,741081109,3478784,369098882,268444672]},{"sector":15,"length":512,"data":[917503,437584704,353971244,794421,50336512,-61440,37748746,741112341,5497,262163,184549136,352468992,1496067162,419430421,268436736,1114111,992544448,1024207618,643180827,11573,393269,754974480,34914304,70386481,104072499,137758517,171444535,204475193,456071717,673326888,1449143073,876557098,6239546,117454592,-61440,239075374,268598786,2081493084,452336145,572611361,606544477,685844519,743849046,590163006,792735533,825260848,12669,2818063,100725520,956424192,251658483,268447232,393460,-197590560,983040,-233832396,-536869376,15874305,973082368,15798272,31457286,61753,1114131,167796240,386129920,512956556,251658371,268440320,393310,1580794336,983040,-133169103,-536869376,16267521,218107648,6295552,31457286,24633,3604495,100727312,956424192,385876218,268437504,917743,-2112748064,-1592286442,-1608605160,983040,-284164087,-536869376,9441793,167776000,2560000,31457286,10041,1310735,100726544,771874816,251658375,268440832,393463,-2144468512,983040,-149946346,-536869376,16201985,234886400,16322560,81788940,-2129229550,-2078370792,1245184,-116391921,-536868352,412751363,9313945,268439296,16322560,31457286,63801,11337728,1114962,-15728634,-1073739521,687801602,285212693,268436224,589823]}],[{"sector":1,"length":512,"data":[-15924544,65307,262161,150994704,218284032,16718847,285217024,6164480,48234504,-1944614894,983040,-133169102,-536869376,8789505,838864640,16257024,31457286,36638,720919,234905616,302374912,395777674,513087629,251658373,268439040,393470,-1961885216,1048576,-32505840,-536869120,16660737,983040,-32505804,-536869376,16660737,-1191182336,520311809,268437248,1507327,-1642396096,533733147,622907680,-1658444408,734997286,2555904,-15728635,-1073733889,81265421,111085031,145164285,178260460,444730273,679815075,16329717,738205440,15929344,165675030,-49031150,-1491756012,-736041185,-1624336858,58673,2949151,369160976,302637056,352064439,530978203,651305190,833367701,318767317,268440064,655454,-686357536,-1239490024,983040,-200277969,-536869376,13049345,805310208,15994880,31457286,50718,3276815,100726800,369221632,251658373,268448512,393464,-568983072,1114112,-233832395,-536868864,514396674,285212837,268449280,524530,-1475214624,42014,3670031,100727312,352444416,251658430,268450048,393466,-1122696736,1769472,-284164088,-536866304,367661831,647503787,787229842,14954886,151003904,15667200,199229466,-1927944173,-703076074,-1256267752,-1859741921,-1892750036,58161,655375,100724496,956424192,285212911,268450560,524529,-82443552]},{"sector":2,"length":512,"data":[35608,3932177,134279440,369287168,9050347,251662080,16322560,31457286,54034,1310737,134280976,335732736,11345902,352325888,16191488,48234504,-1205871340,0,0,0,551,8421456,205523984,1619002400,23076866,134422576,408977436,221261872,2527360,134983728,204474944,69213248,1077936256,155197448,1073750064,1075841344,808464392,-1868559760,135070083,805316240,1074269104,1074540566,-2147213284,339755008,806699040,1077936160,339746837,1882206256,1485873172,-1876947711,-1339031514,272631819,473959472,8389664,537804864,540020544,255868928,806240288,242233392,19763360,646975501,196096000,806567944,538722316,1073774596,1075843392,136327186,538001472,808456768,-1609469904,234947216,2527360,134983728,204483392,69213248,1077936256,759177260,1074274352,1075850304,808464429,-1868551312,1074659543,805316240,1074269104,1074540590,-2147213284,792739840,808468512,1077938208,809508911,1882206256,-1399807954,-1876947456,-1339031514,826279947,473959472,8389664,540164160,540029760,843071496,808665120,829435952,8491168,646975502,196096000,808730632,538722316,1073774596,1075852608,136327222,540360768,808465984,-1607176144,234903184,2527240,134983728,204486464,69213248,1077936256,960503864,1074274352,1075853376,808464441,-1868548240,68026411,805316240,1074269104,1074540602]},{"sector":3,"length":512,"data":[-2147213284,994066432,809254944,1077938208,1010835515,1882206256,9478202,268468224,9568787,1074540544,-2147213300,624959496,409648,537083968,540017728,624959488,344112,537149504,808452928,470287136,805781632,-2146684880,135282692,591398923,204484656,453509184,807616520,1075842080,808464420,402653330,268435202,268435968,196607,220202537,2588678,-15728616,50334463,84180998,1074136336,119539206,101257222,-2147153400,201590283,84746245,620760840,-61440,29360134,11347,2293782,234880784,352534528,2894848,-2113915627,1441792,-15728604,1073745407,739906819,890575148,3103,196627,184549136,352468992,2032938106,318767125,268436480,720895,1511326272,358165548,1769472,-15728635,-1073736961,37431559,222104619,1458907175,2962726,100676864,-61440,348127276,839069954,872755972,906441990,940128008,806041866,790242572,572991515,690692392,1060317782,1597323828,4194304,-15728633,1073756159,41812497,268984328,2081493084,452336145,555458075,1562517851,656680738,724099368,1012279759,742272086,791487277,2066755392,830288176,1245184,1578106897,-536868352,411834115,8593043,301994752,6164480,65011722,-501688553,46622,1245199,100687376,956424192,251658334,268448000,393464,-130481696,1638400,-284164088,-536866816,377623046,413210531,748691106,419430636]},{"sector":4,"length":512,"data":[268437760,1048815,-1877866784,-703076074,-1256267752,60716,655375,100724496,956424192,251658479,268440576,393463,-2027028000,983040,-149946347,-536869376,8400385,369102592,16191488,31457286,63289,917525,201390352,302309376,411113097,8658580,251663616,16322560,81788940,-1709780206,-1910597352,983040,-116391920,-536869376,16333057,-1409286144,654529024,268436736,2031615,-16577088,-16384252,-16253178,-1609962488,-2113167094,-2078563558,-13921497,983040,-15728636,-1073740033,16715009,117444608,-61440,20971527,2150688,285217024,6164480,48234504,-1776908270,1114112,1578106898,-536868864,382865922,251658474,268448256,393464,-2044853792,983040,-133169101,-536869376,9379329,234885376,16322560,48234504,-1741911273,983040,-116391921,-536869376,14161665,-251658240,520311809,268437248,1507327,-1642396096,533733147,622907680,-1658444408,734997286,2555904,-15728635,-1073733889,76940045,111085031,145164188,178260460,444730273,662969251,15018899,738205440,15929344,165675030,-49031150,-1491756012,-736041185,-1624336858,58673,2949151,369160976,302637056,352064439,530978203,651305190,833367701,251658453,268446464,393459,-214367776,983040,-200277969,-536869376,13049345,805310208,15994880,31457286,50718,3014671,100725776,956424192,251658484]},{"sector":5,"length":512,"data":[268448256,393464,-2062155296,983040,-133169101,-536869376,14554625,889196800,15863808,48234504,-1524717294,1114112,-233832394,-536868864,514331138,251658404,268448768,393458,-231144992,983040,-99614664,-536869376,12457217,956305152,16388096,31457286,48405,3604495,100727312,956424192,452985082,268437504,1179887,-367851552,-1742755051,-332623322,-466516434,2293760,-284164087,-536864256,367530763,401151629,518002902,647438261,787295377,14889359,167776000,15667200,31457286,61241,3866641,134279440,369287168,9115899,1006637312,15798272,48234504,-1978078442,983040,-250609606,-536869376,15808769,251662080,16322560,31457286,54034,1310737,134280976,335732736,11345902,352325888,16191488,48234504,-1205871340,0,0,637,8421456,205523984,1619002400,23076866,134422576,408977436,221261872,2527360,134983728,204474944,69213248,1077936256,155197448,1073750064,1075841344,808464392,-1868560272,135070169,805316240,1074269104,1074540566,-2147213284,339755008,806699040,1077936160,339746837,1882206256,-1366253548,-1876947711,-1339031514,272631819,473959472,8389664,537804864,540020544,255868928,806240288,242233392,25399456,646987789,196096000,806174728,538722316,1073774596,1075841856,136327180,537608256,808455232,-1609732048,218192016,2527236]},{"sector":6,"length":512,"data":[134983728,204480832,69213248,1077936256,541073439,1073750064,1075847232,808464415,-1868554384,269287725,805316240,1074269104,1074540563,-2147213284,289423360,806502432,1077938208,306192401,1882206256,43032593,-1870655999,-1339031514,725616651,473959472,8389664,539770944,540028224,742408200,808271904,745549872,14127264,646987790,196096000,808337416,538722316,1073774596,1075851072,136327216,539967552,808464448,-1607503824,234925200,2527264,134983728,204484928,69213248,1077936256,859840562,1074274352,1075851840,808464435,-1868549776,269353089,805316240,1074269104,1074540596,-2147213284,893403136,808861728,1077938208,910172213,1882206256,1452318772,-1878520320,-1339031514,926943243,473959472,8389664,540557376,540031296,943734792,809058336,930099248,2855072,646972430,196096000,809123848,538722316,1073774596,1075854144,136327228,540753984,808467520,-1606782928,-2147483504,34803712,805306514,537673740,537427972,1076897088,1077936134,71311363,536879152,1076897088,1077936133,54534148,52441136,1082137608,808464391,1074036748,134940688,808461120,4197424,1074273032,203436067,807682080,9580592,-16633344,16780543,-61440,86573057,33557512,-61440,86573057,402663968,-61440,100859915,268764288,104859141,101130246,1074071568,168297993,101416965,537201668,252183821,268444928,458751,743637440]},{"sector":7,"length":512,"data":[1441792,-15728605,1073745407,738202883,890568748,33280,2359318,234880784,352534528,422325274,203371797,1245184,-15728637,1073744639,746198274,1407276,67113728,-61440,37748746,741104149,5465,327701,218103568,201637888,1445661991,2962748,100672768,-61440,213909532,638001667,671690504,1024141578,705511180,993214038,1597323828,2818048,-15728633,1073750783,41812490,286284816,-166063748,559620378,673340706,1076832481,813379631,3243313,721424128,15929344,31457286,62265,3014671,100725776,956424192,251658484,268448768,393458,-231144992,983040,-250609606,-536869376,15808769,285217536,6164480,65011722,-1827107817,33566,1245199,100687376,956424192,251658334,268448000,393464,-130481696,983040,1611661325,-536869376,6306049,922750720,16388096,31457286,64057,524311,234942224,302374912,396564098,513939617,251658400,268437760,393455,-1877868064,983040,-284164086,-536869376,15677697,335548160,16191488,31457286,34606,1376271,100726544,771874816,251658368,268441088,393463,-147258912,1376256,-116391922,-536867840,378081796,513022081,318767236,268439296,655609,-1709833248,-1910597352,983040,-116391920,-536869376,16333057,-1744830464,386093568,268436224,983039,-15071808,-14156005,-13893848,1507328,-15728636]},{"sector":8,"length":512,"data":[-1073737985,469703173,687810559,16722943,285217024,6164480,48234504,-1944614894,983040,-133169102,-536869376,8789505,838864640,16257024,31457286,36638,720919,234905616,302374912,395777674,513087629,251658373,268438016,393255,658047456,983040,-116391922,-536869376,9113601,-1124073472,386094081,268436224,983039,-417724992,-1624780773,-1490319832,1507328,-15728636,-1073737985,468064773,682371025,10890127,117447680,-61440,88080403,622566939,-1658444408,734997286,3339570,738205440,15929344,165675030,-49031150,-1491756012,-736041185,-1624336858,58673,2949151,369160976,302637056,352064439,530978203,651305190,833367701,318767317,268440064,655454,-686357536,-1239490024,983040,-200277969,-536869376,13049345,805310208,15994880,31457286,50718,3276815,100726800,369221632,251658373,268448512,393464,-568983072,1114112,-233832395,-536868864,514396674,285212837,268449280,524530,-1475214624,42014,3670031,100727312,352444416,251658430,268450048,393466,-1122696736,1769472,-284164088,-536866304,367661831,647503787,787229842,14954886,151003904,15667200,199229466,-1927944173,-703076074,-1256267752,-1859741921,-1892750036,58161,655375,100724496,956424192,285212911,268450560,524529,-82443552,35608,3932177,134279440,369287168,9050347]},{"sector":9,"length":512,"data":[251662080,16322560,31457286,54034,1310737,134280976,335732736,11345902,352325888,16191488,48234504,-1205871340,0,0,0,0,637,8421456,205523984,1619002400,23076866,134422576,408977436,221261872,2527360,134983728,204474944,69213248,1077936256,155197448,1073750064,1075841344,808464392,-1868559760,135070169,805316240,1074269104,1074540566,-2147213284,339755008,806699040,1077936160,339746837,1882206256,-1366253548,-1876947711,-1339031514,272631819,473959472,8389664,537804864,540020544,255868928,806240288,242233392,25399456,646987789,196096000,806174728,538722316,1073774596,1075841856,136327180,537608256,808455232,-1609732048,218192016,2527236,134983728,204480832,69213248,1077936256,541073439,1073750064,1075847232,808464415,-1868554384,269287725,805316240,1074269104,1074540563,-2147213284,289423360,806502432,1077938208,306192401,1882206256,43032593,-1870655999,-1339031514,725616651,473959472,8389664,539770944,540028224,742408200,808271904,728772656,14127264,646987790,196096000,808337416,538722316,1073774596,1075851072,136327216,539967552,808464448,-1607569360,234925200,2527264,134983728,204484928,69213248,1077936256,859840562,1074274352,1075851840,808464435,-1868549776,269353089,805316240,1074269104,1074540596,-2147213284,893403136,808861728,1077938208]},{"sector":10,"length":512,"data":[910172213,1882206256,1452318772,-1878520320,-1339031514,926943243,473959472,8389664,540557376,540031296,943734792,809058336,930099248,2855072,646972430,196096000,809123848,538722316,1073774596,1075854144,136327228,540753984,808467520,-1606782928,-2147483504,34803712,805306514,537673740,537427972,1076897088,1077936134,71311363,536879152,1076897088,1077936133,54534148,52441136,1082137608,808464391,1074036748,134940688,808461120,4197424,1074273032,203436067,807682080,9580592,-16632064,402664191,-61440,100859915,268764288,104859141,101130246,1074071568,168297993,101416965,537201668,252183821,268444928,458751,743637440,1441792,-15728605,1073745407,738202883,890568748,33280,2359318,234880784,352534528,422325274,203371797,1638400,-15728637,1073746175,194251524,353141004,2032938106,419430421,268436480,1114111,-1727331264,211422219,741104149,5465,327697,150994704,688046080,2962736,100672768,-61440,213909532,570631938,553986820,1023946503,688531465,1060312361,1597323828,4194304,-15728633,1073756159,41812497,286284816,-166063748,559620378,656563490,-517462236,742272040,774710061,1076832294,544944175,857832753,708129595,1446794805,983040,-217055189,-536869376,15939841,771755776,15994880,31457286,62521,3407887,100725264,956424192,251658482,268450304]},{"sector":11,"length":512,"data":[393457,-247922208,1245184,1578106897,-536868352,411834115,8593043,318770944,6164480,31457286,24121,3211279,100726800,956424192,251658488,268438784,393312,1614348768,983040,-99614665,-536869376,16398593,134223616,15667200,98566158,-1558805998,-1575444201,40990,589839,100724496,302112768,251658384,268438016,393255,658047456,983040,-149946348,-536869376,8859137,352325376,16191488,31457286,32814,1441807,100726544,956424192,352321783,268439040,786681,-1995307808,-1810333418,33822,983059,167835920,369352704,513349786,251658382,268439552,393465,-113704480,0,55705782,327695,117440272,84000768,251658495,268436992,458751,-16449088,983040,-15728637,-1073740033,16718593,67112704,-61440,29360134,65307,1114129,134241808,302178304,9181064,838864640,16257024,31457286,34334,3276815,100726800,503439360,385876111,268438272,917600,-1978530336,-1927833834,-2061593320,983040,-32505842,-536869376,9113601,268439552,16650240,31457287,65081,872419072,16650240,31457286,65081,31588352,1770324,-15728637,-1073736961,446827783,665000843,731916418,10573563,67115776,-61440,132120594,-1977950195,-1876432613,-349457112,54870,458783,385875728,453394432,-803267682,550576159,639993893,-819255651]},{"sector":12,"length":512,"data":[218103851,268436736,327679,192,393229,83885840,49152,738205440,15929344,165675030,-49031150,-1491756012,-736041185,-1624336858,58673,2949151,369160976,302637056,352064439,530978203,651305190,833367701,318767317,268440064,655454,-686357536,-1239490024,983040,-200277969,-536869376,13049345,805310208,15994880,31457286,50718,3276815,100726800,369221632,251658373,268448512,393464,-568983072,1114112,-233832395,-536868864,514396674,285212837,268449280,524530,-1475214624,42014,3670031,100727312,352444416,251658430,268450048,393466,-1122696736,1769472,-284164088,-536866304,367661831,647503787,787229842,14954886,151003904,15667200,199229466,-1927944173,-703076074,-1256267752,-1859741921,-1892750036,58161,655375,100724496,956424192,285212911,268450560,524529,-82443552,35608,3932177,134279440,369287168,9050347,251662080,16322560,31457286,54034,1310737,134280976,335732736,11345902,352325888,16191488,48234504,-1205871340,0,0,70,-2139062192,809320448,1075585036,624951811,805306514,1075840048,1074016291,608182284,537669680,-2147205092,1073743424,1075839808,1075851268,1077936133,54534148,-1842335696,31850496,3014655,-16728003,-1073732353,1996450832,1778346751,1811895807,1560239103,1677680127,1711236351,1728015871]},{"sector":13,"length":512,"data":[1593793279,268435711,415245568,524287,741540160,570425568,402662144,1703935,-9238720,2113895795,2125656105,-261048848,-1427080775,11464827,587213568,-65344,171966498,729022323,-260101121,-1141866823,2008412272,-260457744,-1359971414,1739976808,50672,2359339,587202328,436879360,454761215,723331867,2104695923,-265716452,-1259307343,2042163312,-260331024,822083757,12592128,2686975,454691904,454892314,1932132137,-260082916,-1259307336,2008936560,-260460048,-1376748631,1740632168,50416,327729,687865624,218906624,1075449182,458955546,724056616,1551051613,2103213427,2125459497,-261049360,-1477412426,11268219,83900160,-65344,239075374,437083661,1562057307,674899995,1932083241,-260082852,-1276084554,2008543344,-260460560,-1410303065,1739780200,49904,393286,1040187160,51593216,637993762,136775687,168372233,-267711959,205327371,437091853,2065373792,657139483,724052520,1601383293,2105310579,1890644009,-260458512,-1393525848,4980736,-16728058,1073759231,52560661,134686215,671680551,170461705,202108939,2114784317,444275213,656112923,707274539,694167848,2138267507,-261047056,-1326417998,2074669177,-261575440,-1007654978,0,61079590,-2145189872,134217472,1879130112,49648,-2147090416,134217472,1879130112,49392,13172736,1245621,-16728003,-1073739009,1895786499,16738303,587207936,-59392]},{"sector":14,"length":512,"pattern":0,"data":[79691788,544940153,544276265,1376256,-16728029,-1073738497,2065725700,1895790368,352321568,402662400,851967,544801984,-14081925,8304,-1071382507,218103552,2030354432,1998617376,2126079,83891456,-59392,79691788,544940153,544276265,1376256,-16728059,-1073738497,2065725700,1895790368,419430432,402654720,1114111,2114651840,544866061,-14081925,8304,-1073348583,285212416,184991744,2046758270,1998617376,2126079,0,0,1142969165,1444959055,1769173605,908095087,692267040,2037411651,1751607666,959520884,825045304,540293433,1919117645,1718580079,1866670196,1277194354,1852138345,543450483,1702125901,1818323314,1344285984,1701867378,544830578,1293969007,1869767529,1952870259,1819033888,1734963744,544437352,1702061426,1684371058,6688]},{"sector":15,"length":512,"pattern":0,"data":[11426381,19,16646176,39387135,128,34930704,30,1]}]],[[{"sector":1,"length":512,"data":[0,0,0,0,-1192457387,770179088,181975053,1375731898,2340944,465234000,-1207516029,-397407572,-998040742,-1522630654,695403780,-11485141,-1207700938,-397410302,-998045555,178182,61388880,178256,142338128,-1207516029,1156120577,108461825,-402360577,-998047425,1958742788,1354771209,-2096367128,1996423876,74907398,-2097050904,1048577220,1967063718,66775043,15746759,-163133881,-129579264,1183646634,1183666416,-706195216,79987481,61488768,-1608616960,-358481242,-263796989,1187461888,-1929123082,-1924075450,-397348794,-998041168,-1371635708,108331010,-402506264,1048576978,1962934958,-1572961433,1618280451,1342177976,1342417080,1342177720,-2096637720,-1070922044,70713168,112644,130541648,-1207516029,-1924136958,-397345210,-998045608,-28931580,-1276620648,46433048,1023297160,1006924889,-1966377650,1352203846,-2095538712,1312621252,722040064,669536448,46433035,-2147049496,175678,-85440908,1958742790,178239,61388880,112720,124250192,721863811,922702016,28836880,1458065408,113541895,1342177976,1342417080,1342177720,-2096675608,280495812,-672641024,46433034,-397361109,-998044978,1575324418,-326412861,-1847017421,1325356555,105284356,75399938,-1958120448,931858014,1966029952,24936681,736326975,922702016,28836870,-152547328,113541894,1342177976,1342417080,1342177720,-2096700184,-1070922044,137822032,112644]},{"sector":2,"length":512,"data":[114550864,-1207516029,48955393,1566490667,-326412861,-402652488,1448545068,33441479,729475840,922702016,45614100,-1494724608,113541894,1342177976,1342417080,1342177976,-2096720664,314050244,669536256,46433034,33455747,113706612,66470,-771858805,108432355,-236441345,46433027,712294411,-1962892311,-472777122,-16353653,75098160,184730755,-385649472,1586167948,-1948003842,822019702,-2096891672,1191117508,71732222,2113816121,-25785543,1979967185,-399180026,-998041460,1342474498,-2097004824,-1073020220,1048621428,1950286502,-11015933,-771858805,108956643,126491019,-385702238,-2132213902,1958742791,68859953,45004880,379512912,721732739,922702016,45614070,-689418240,113541893,1342177976,1342417080,1342177976,-2096773912,1599997636,-1017256565,-1192457387,568852528,-800667894,1187453440,-1929196842,-1924083642,-397356986,-998041784,44474372,-777895892,-800667902,1187451136,-1929196842,-1924083642,-397356986,-998041816,-797016060,724333568,922702016,28836858,1726500864,113541893,1342177720,1342351032,1342177720,-2096802584,-1070922044,-130613424,-951653629,238086,-586758656,-1070923774,-97058992,112643,87025744,-1207516029,-1202716671,-1202715994,-397410303,-998046435,1354771206,66860799,1342177720,-2096821016,-1070922044,47364176,112720,83617872,-1207516029,-1202716670,-1202715736,-397410303,-998046487,-129594106,389081168,-956119933,1761660998]},{"sector":3,"length":512,"data":[738371232,-767129536,-1981921651,1183700550,1183666424,1183666384,-1377283888,113541910,14450307,-1070898059,3604304,112644,77850704,-1979267965,-466951354,81258576,-1979530109,-466951610,80472144,721601667,922702016,28836866,2062045184,113541892,719406730,-1360506652,46433028,719341194,-1561833244,46433028,1342177976,1342417080,1342177720,-2096869144,-443873596,-1957313699,178412,-1928810520,-397345210,-998041766,-28931582,-1499316220,44480514,4843600,-1017256565,-1192457387,-1981284340,1354771208,66991871,1342177976,-2096886552,213386948,1183666176,-1645719308,79987460,1358186125,-2097015064,-1073020220,1183699829,-1363652364,-1712828414,1575324436,-326412861,-402581832,1586169924,25133060,721777722,21424576,-1432221814,-1572852734,1187447633,-955318038,55242822,1357530765,1357530765,-2095754264,2122319044,762577130,-11485141,-1207694282,-397410302,-998046831,178182,61388880,178256,58714192,-1207516029,-397410290,-998045934,-364460286,1187450880,-1929164048,-1924076986,-397350330,-998042360,-347683324,-364460476,44736521,1183334444,-364474900,-364475056,350939216,-150682493,268496966,-1070912140,171376464,178180,52947024,-1207516029,-1202716670,-1202715736,-397410302,-998046955,899078,111732816,-1207778173,-1924136278,1358916230,-2095860760,465044676,-2037559292,-397344918,-998042780,-129594108,355788880,-1929198461,-1979749754,-2037517754]},{"sector":4,"length":512,"data":[1183448810,-364460044,1183670272,1183666424,1183666410,-1310174998,113541908,-18184566,-9796040,-1070912140,-197722288,178179,44296272,-1207516029,-1202716670,-1202715736,-397410302,-998047087,178182,103082064,-1207778173,-443875327,-1957313699,-390056980,1586169572,41910276,-1960676352,1346388163,-2097117464,-1073020220,28837236,-1961956608,1077937222,518224,721601667,1438866880,-1070338933,-2096713752,238654,113707124,932,1048790251,1946157990,1354771247,68695807,1342177976,-2097013528,45614788,-1464315904,45633539,182996992,113541890,1342182584,-2096783896,250282692,1342447032,1342353080,-2095945752,1996424388,45004804,307947600,1560593539,-326412861,-402650952,-11139516,904397942,46433044,1342457481,-2095927832,1183384260,45005054,312535120,-1996307325,2122577990,276761598,1115602955,66995851,1027668038,914227211,1342447544,1342353080,-2095953944,-1070922556,372703056,178180,25159760,-1207516029,-1202716670,-1202715736,-397410302,-998047379,1292294,1187478507,-352321284,-96010397,368737923,1586186109,-1870165254,-60912894,939816587,-1192856320,-1202715616,-397409618,-998043152,1354771204,66467583,1342177976,-2097075992,45614788,-1464315904,45633539,384323584,113541889,-352320584,-60912860,-2147191157,91430968,-352050760,-62455875,972965515,125697094,16402119,730983168,-443851072,-1957313699,4372716,-1207612440,-1924135902]},{"sector":5,"length":512,"data":[-397346746,-998043256,44474372,-1913108856,-1202664378,-1924136952,-397346746,-998042714,1975520006,-364475090,45922384,291432528,-1610300285,1076626086,-956116574,318815814,-893106489,-1102672638,-1102672560,305326160,-1962621821,1438866917,314109067,82241536,44474454,2107785260,45004803,290515024,-1996307325,1187511878,-352321284,-60912880,-2071268469,-2021129554,1191117694,-28931076,2096907833,-297351192,1187452416,-1929152780,-1924075962,-397349306,-998043176,-293699580,-954436352,268496454,1995720391,-297366269,-297366192,297461840,721732739,-1207702592,-1956773872,1438866917,247000203,73852928,556675,1996426357,282388486,-1996307325,1187383366,1183531251,-196703996,-1995946357,1183577670,-129595130,1358055053,1358055053,-1961791512,1438866917,45673611,69658624,-2012985718,78773830,-2130809134,1930100350,-28934138,-2147161296,-1204289978,-1924136959,-1202651578,-397410303,-997982323,71731718,1183321892,1930050814,-28934138,-2147161296,-1204289978,-1924136959,-1202651578,-397410303,-443809947,-1957313699,1226988,1443088360,65945216,-970099201,-968560826,-956240314,61510,1357792909,1357792909,-2096045080,1190528196,125075700,65930950,-972690688,17034758,65945216,-970165248,-1928597690,-1924075962,-397349306,-998043464,-293699580,-15436544,-402386378,-998043586,1161218,43051088,-1979530109,1621231174,1644611084,1187446796,-972267276,-1928663226,-1924075962]},{"sector":6,"length":512,"data":[-397349306,-998043524,69842948,269019216,-956119933,207813702,207765120,-15436518,-402386378,-998043662,1161218,38070352,-956119933,65094,1586172907,71761668,-231797,76217414,1191118728,207724798,-28952168,1586226300,509444,1575324510,-326412861,-402648904,1187447516,-1922957070,-1924074938,-397348282,-998043640,235325188,-1962901240,279180358,-16454904,-1006105082,638062110,1183319946,1947024624,1965177865,112874,-1070923029,-1017256565,-1192457387,-1847066610,-1438744574,410255363,15877831,-129579205,1183646634,1183666418,-1310174990,79987471,-1017256565,1397903696,1465275732,-326433250,-1912487496,-1070859048,25487440,117621891,1566465823,1499093851,817155928,37495245,550306419,-1962819137,721420854,16679415,-1107070448,-1896214528,1858372055,276036366,-135782634,1354773249,-1207666968,567102719,922674307,70395529,774277430,-1312388348,1222693636,70034230,915011331,-1014235134,-604512725,567102132,-1558279114,-66644476,-1190654273,-819261840,-1426866125,1005068054,-400615936,31982482,-1232126,-16464842,-16465354,-402341834,-397347710,-1044905758,-1193767423,-952762365,1946431494,2078822412,66971649,1342242744,70260479,567095476,-1207655005,567096576,76619401,76744332,12066574,194165285,521544141,120065675,109981411,-1960442717,-989844426,-1945687546,920335322,119938815,521536883,906055145,120456901,62642828,520041984]},{"sector":7,"length":512,"data":[521537318,77792910,739150630,-1909005568,654259137,1946172800,833836,-217807682,-1190431578,-1070366721,427142898,503768555,-141877497,-1408979777,-22244968,1208054976,385344170,310047,78423936,1140897983,175251917,1954595574,-1399881723,2034974724,120766183,-402181441,851312802,120766215,-1023374616,-1091794091,1388251154,8251400,-1090047298,1961363252,1426320128,884927627,120897287,-1107269912,884934452,7137287,184596968,-2096401216,1962935422,71747333,263782655,375552,78415862,-1274776575,1126288702,132707042,71731968,567102644,120065675,45811683,639565568,382017031,12059793,522308901,80625280,504198144,-989540448,-1274753002,522308901,1945582531,-1957736694,-597235,-1007490095,242480955,-1962610813,38079237,503313012,12840683,-1192457387,-397410052,1048773243,1946158292,-736690428,16758788,40495184,-1017256565,-385875272,-1957036453,1926769628,-702661878,-1962642940,870449123,-28972608,-1175047338,-466485182,-533549828,-192873502,-401771435,28901294,753422336,112642,110084958,45745368,-1525270528,-1909885948,637838086,2885262,80217740,-1181106125,-13402112,1974382322,-1991817221,-1190869442,-1359806465,-779365897,-1107295809,512622721,1017906339,1023112224,1022850057,175076365,1198224576,540847182,154986612,222094452,-1073062796,574380148,1547445364,-347995276,1103705060,1952201900,1948400890,-338623740,-775844909]},{"sector":8,"length":512,"data":[-1462692887,-339053311,1017925121,170619917,1009218752,1018852386,1107522652,-919343893,1547480129,574421620,-788331404,-1047798805,-787224111,-764083800,521574379,79707785,-783821053,-2133392409,-500433182,-1029454709,64523012,906434299,1128480649,80099013,-1073042772,-2118190475,512636416,65733795,-1398095821,-76275652,-143390404,58002748,167804905,-352094784,-1992912775,1313030975,1948269740,1946762459,1947024599,1958742626,1948400734,1952201767,-454317565,-1404974797,-93037508,108274236,-1426891600,1555091947,-1426855471,581961331,1321593770,1947024556,1958742574,1948400682,1952201911,-320099837,-1404974797,-93037508,108274236,-1426891600,1555093995,-1426855471,581998195,869133226,521579200,1991,81274623,1441565525,77799054,-1047803597,-108271221,741772105,1962281728,650546704,16000,-234458112,1974355374,1083655674,-41157084,-989600303,-1084809450,-2048393207,-812949760,-133956213,79965833,-561117410,-481692109,993820947,-1996131261,1162150014,-1073042772,-303891851,369118857,-443851489,-1957313699,509040364,72780551,-1392034626,276087355,208967232,-1178586217,-1359806465,-336857205,-1956749418,46292453,-326413056,74907479,201313256,-1844153152,-1070335349,-218103879,1238497198,-1275067717,1596050752,-1034033781,-796196862,70387203,104412530,628294700,1342181125,61987025,-645076781,77799051,-1056715989,-661929074,567102132,605057624,748898544]},{"sector":9,"length":512,"data":[780899588,369165362,-1950153678,-74323513,-1070394510,-1017256565,-397346701,-1957167080,1942183397,976903,-1711276104,-1017256565,32039986,-1465728256,1977879044,-1522630621,225575684,225649212,91365436,132842928,1980972176,-1156337662,-1730738982,-1023107677,-135543670,-2081649835,1448543468,721744062,-1877611521,-2096741130,-397014156,-998046672,24395778,147227463,101201465,-947132813,-443850914,-1957313699,149717996,1988843095,176065284,-150583669,1183385702,-62486018,425603,2122516084,108331016,199868459,1173786625,1702169606,-343810165,61932784,-1014236205,-670833711,-2013862959,1963001232,-62458036,544539135,1459386111,-1744353910,77785168,-1996045181,-12715962,733836543,108459986,-1878997527,2013416959,-1962636789,-2012872931,-1878201593,-1744532905,11724880,-167459709,1965033029,1325352595,105248508,-1958710008,-253001249,-754732796,-775713797,-774372381,-1870137629,1551106309,1308567019,-1978959870,-14841084,-351827963,-1973972980,-397371388,-998047636,105248260,1179874592,-2080616705,1946221694,41780041,-1949338624,1177223749,600382460,-62520383,1358579337,-399114410,-998045238,-96040186,-268237567,704398889,-873790907,1459386111,-1744353910,65202256,-1996045181,-12715962,688092415,1183579206,-62510082,-1862322967,-443850914,-1957313699,149717996,1988843095,121932294,-96040552,-265435509,-754732796,-775386120,-775879712,93324768,-151501175,1954743876]},{"sector":10,"length":512,"data":[105182726,-2146732992,-1205860788,283770879,1157009409,-277544698,33967232,-284793728,1149878315,-1980200190,1157037182,1601506310,-343810421,61932784,-1014236205,-670833711,-2013862959,1963001232,-117538490,-2130283516,1963262206,-92864717,-2096653848,-1073020220,117386613,-25099026,108332280,-351772488,1857589252,71600396,1586168969,38258680,130417152,-1878463743,10283094,-167590781,1963460164,-2116121831,-1325076245,-1946430717,65262019,-152841768,17141895,1015763060,-1962640341,-1992293308,-128021756,1208108939,184697993,1460895487,-16485121,-974587274,113541890,-335788407,1586204698,-1400375558,259268612,1342177976,1347469355,36497491,-1962359677,1183450204,-351827964,29331479,1355254528,1342457485,-386238721,-998047096,-62486266,1962704441,-18093821,704923274,-1956684060,-1866244635,-2081649835,-1957297428,-265485242,-754732796,-775386120,-775879712,93324768,-1191295351,-397409792,-998046828,73304834,184829833,-2146470720,-1962408369,1204289118,-352190462,1586204695,105873412,-28931324,71797056,-939630965,66119,-1962647925,71601139,1204225929,1577058306,-1017256565,-2081649835,-1957296916,117376118,-25099026,141886712,1627276999,-1878201592,83951233,1187456117,-166957314,1963722308,-2116121831,-1325076245,-1946430717,65262019,-152841768,17141895,-1070922636,-963955221,-1325076435,-1946627325,65065416,98619841,1183384976,-28931076,-1996209015,-60912892]},{"sector":11,"length":512,"data":[-1996357448,1149829703,17286658,33967232,1577058744,-1017256565,-2081649835,-2091515156,1946158206,108953947,125043960,425601,-1955171067,1200227934,-397371385,-998046282,1958742786,105286500,-1325076435,-1946627325,65065416,98619841,1183384976,108462078,-2097132568,1586168516,509694,149447,106859264,-1070861429,1200161929,-1876235516,-2130289013,140510335,2139162484,1963748868,122128920,1541951640,46433029,158646283,-402229505,-998047736,-443851262,-1957313699,82609132,1988843095,-1962988796,52692548,1182073404,134628598,-561309323,82897793,-70057039,-472792181,-472786941,93358070,-1960348671,71576324,201082505,1343979200,-1979419393,1352140612,-2097112088,1178273476,-2146994948,-1088420276,1150025727,-956004092,580,1600046987,-1017256565,-2081649835,1586169068,-1440859388,-1207602684,720046336,542455,-2092403584,1946159742,-1949748454,1107409105,1265770957,34227959,51279104,1444087366,-1205307128,-335997440,-27883210,-1946401143,1107474641,1174610381,139858694,1317735801,-61436930,-851312456,-1948718303,1317733974,172395016,567100084,-1484782222,-369294164,-1957299571,149717996,990142091,1912908318,151042055,-92804615,78415862,-1207208928,-919387646,567136651,-2013861006,1954546860,106335086,-1070397666,-1979824503,1476197446,-1946514602,-127497742,-485994869,-234180524,-397773394,-1472397100,-2092403200,-594869524,1023541434,57868840,721453242]},{"sector":12,"length":512,"data":[-1949004830,-1962469638,1017907278,990671882,-1441172229,602469602,-1335760128,1979398925,1632259,-16076630,-471073722,-352317976,-346071326,860220245,-177870400,-1957604528,-473289777,73304848,567099572,1174474098,1958743038,1482381574,-2084308341,74647748,518719924,78415862,-1962183616,1065354846,-133991142,-1191637781,116071424,738084491,1720450118,-379625736,1317796249,1976109832,-373191931,1452013965,-851397626,-1274776799,199551753,-153061952,1074048135,-628422028,1964654464,-806619133,469809401,-1587951125,-1002765098,-1003813261,-503326473,-85213133,-1947432107,-620034978,1333789812,-443874818,-1957313699,-1151904020,1065551370,506033408,374791,1963029480,-1715457275,608183531,101360638,-1777988445,66759,-955988349,-65980,101725833,-1945874805,-390033704,1583284233,-1017256565,1090572009,-511640972,-285637634,2005660275,-1951532030,1946265854,-1053079486,-796191373,-1464995837,53769217,132546,1149892491,-1947800578,51148030,-28538375,-1991720661,50719493,-28508423,-628308341,-784608884,-1943665292,-1996089314,650314367,102631110,-115454,-24435340,-1464995837,-1947044863,-1053079298,-796148365,-1464995837,65172481,132546,1149892491,-1947800578,-1073018809,-661781388,-31058709,1946557966,-1931965423,1959214039,512632325,931857940,2005646571,-390057210,-969211798,19139956,-392675264,225706078,-385987074,91488284,-347189610,-1931965287,1958820817]},{"sector":13,"length":512,"data":[413345284,-1995994362,-1070398905,-1957575783,27852357,-936705164,-1170128567,992378879,1980111382,1978323204,63015925,51737286,-150113598,734143442,846022,-755562379,-445257007,-1017528269,501764434,1461220352,-259260789,1153954307,-1979711746,-695531913,-1991583957,1499004501,1347666778,1377751603,28856402,520507392,-2097147928,-92075836,1532633087,-771030412,-1957363517,106387180,556675,851392629,106334980,1208239755,1407715189,-349736448,-2110354616,292833284,225769275,-1996340085,-397013946,1935540282,80118576,75693697,-771029901,-4716939,501979647,-1014769013,-1310994161,-1259613437,1914817864,76124905,-1996335991,855933494,1583286208,-1017256565,-1962127733,38550007,-964490124,-2097250044,-101550844,-628408341,963779587,-1047604341,108394299,70000185,-1014815117,-774123249,-773074453,1979137003,-1579613431,-668269405,1253359758,225583565,74839867,69998217,-1962637422,-1957313583,-1948808212,-1898410786,75402176,-4603853,-1917914369,2123104117,-18170,-772296974,-24643285,-150714741,1946157510,-783703038,329642985,-1952123959,1576700915,-1957363517,-1948808212,108432350,-661848437,-1070350194,-218103879,-1949173842,-947190658,41157032,-372160092,-921459213,-208952077,-1017251189,-1947432107,-1898410793,75402176,-4603853,-139529473,-1953412655,12803578,-1947432107,-2013920162,1946289697,767789831,48955424,-1017265269,-1947432107,507184222,293405866]},{"sector":14,"length":512,"data":[2080439171,-1400375796,91504644,-352321096,-1950338302,12803557,-2081649835,1448544492,-16451394,-1746402186,46433279,-396953461,-997983902,-28931838,28858198,1996443648,-162338812,-1995914109,-11077050,-941031818,79987705,1979350585,38600479,179309176,83827851,199952264,702550,-144512944,721732739,-1878725696,1593835448,1575324511,-1957326653,-1957210388,92996734,-1962779253,1435173965,141921030,-854950517,2123061025,-1996125946,1300824669,106268932,-1895271031,74582597,149681715,-1091209752,92995585,1594652041,1575324510,-1957363517,-1957210388,92996734,-1962779253,1435173965,141921030,-1962248705,93194366,1594252686,509026765,-544286836,-1945600373,105221893,-1996063093,39684357,-1996206711,1971914325,172330760,-164428686,401082603,114421,1971914123,-1956749556,12803557,-1947432107,1603011678,-1945662458,1468793423,1575324420,-1957363517,73305068,126538635,292864010,440164652,1090782323,-1975318648,1975519751,-1017277713,-1947432107,-1931572265,-1950314792,2123040374,-1949857020,249759822,41157032,-372160092,-921459213,-208952077,-1017251189,-1192457387,116129791,-326412912,-930365389,119676555,139656065,109252724,-1962801374,126420038,41208075,-443826125,-1957313699,-1957709844,149619798,-1209234603,139889486,567089844,1968111488,72780550,-1979298165,-383660569,-1957301194,71732204,106349854,567092660,-1950338273,12803557,-1259566251,1075957017]},{"sector":15,"length":512,"data":[1586167988,856131844,12803520,0,0,0,1377850189,1412263541,543518057,1919052108,544830049,1866670125,1769109872,544499815,539583272,943208753,1766662188,1936683619,544499311,1886547779,1224736785,1919902574,1952671090,1397703712,1919252000,1852795251,1124076045,1869508193,1634476148,543974754,1330258017,1684360777,1431511084,1700025154,1919885412,1397965088,1699628873,1919164516,224753257,1850277898,1768710518,1751326820,1667330657,1936876916,544106784,1970040694,1814062445,1818583649,536873485,544432488,1814065006,1818583649,1819235840,543518069,1679847017,1702259058,1763704864,1442848883,1836412015,1634476133,543974754,540094760,1918986339,1702126433,539784050,1163152965,1868963922,1869488242,1059677550,1867907104,1701672300,1919243040,543973737,1651340622,1763734117,754983027,1818575872,543519845,1920103779,544501349,1970040694,1814062445,1818583649,794372128,541010254,1701987072,1936028769,1751326764,1701277281,1864379507,1701060722,1702126956,1752440947,1870012517,1701672300,1650551840,1864395877,543236198,1802725732,658734,1161969996,1683693644,1702259058,1817926970,1818583649,658781,1852727619,1814066287,1818583649,1847615776,1870099557,1679846258,1702259058,1986939136,1684630625,1769104416,1931502966,1768121712,1633904998,1852795252,1668172032,1701999215,1679848547,1702259058,1853453088,544760180,1124081709,1869508193]}],[{"sector":1,"length":512,"data":[1634541684,1679844715,1667592809,2037542772,1953391904,1426094450,1886938478,1702126437,1850024036,1718558820,1818838560,1967980645,1885959276,1679844716,1702259058,1952803872,1936876916,1701868320,1768319331,1409311845,1830842223,544829025,1918986339,1702126433,1763734386,1870012526,1701672300,1650551840,168651877,1769096192,1814062454,1702130789,1633886322,1953459822,543515168,1769172585,1981834596,1836412015,1634476133,7103842,1546600234,992751228,1010641722,677206846,576595497,977207296,977207296,0,0,0,0,0,0,0,16711680,0,1061093384,1061109567,1061109567,7143487,65457,0,1313817344,548536331,11534344,-5242855,0,134219776,186692096,419475456,110592,1,526861,4194482,1547321264,1107361536,1526743808,-1291809280,-771702528,100718336,553721601,-2147400447,-1258186751,-352202495,503449345,1694646018,6029314,32,1547321088,2764330,13,-1962934272,-1056964596,-1308603391,-1342157824,1127941170,1279870559,1313431365,937798,1704114,-2130701136,16875905,11665415,-894435307,1124188420,11665413,1890582539,15,402784790,202115341,369624844,219348758,16712210,679936,17457152,0,33554432,1,33554432,2,-2080374784,3,33554432,-1308605948,-1342146560,33554433,11665412,-2001731468]},{"sector":2,"length":512,"data":[-1308622331,-1342172928,32,393216,598194,673720496,337960,1188018,84144,987314,689328,269488304,269488144,-2122219135,885121,1311154,269488304,-2112876528,-2105376126,-1308619646,-1342172158,269488144,-1308621536,-1342144256,133138,917682,1007707312,1397575228,4079175,808866304,168636464,1953701933,543908705,1919252079,2003790950,50334221,808866304,168637232,1852383277,1701274996,1768169586,1701079414,544825888,658736,911343625,221851696,1847602442,1696625775,1735749486,1886593128,543515489,544370534,1769369189,1835954034,225734245,16515082,-16774643,1853190656,1835627565,1919230053,544370546,1375732224,842018870,539822605,1634692198,1735289204,1768910880,1847620718,1814066287,1701077359,658788,911343617,221327408,1847602442,543976565,1852403568,544367988,1769173857,1701670503,168653934,-1308567552,-1342175489,-1,-1,2814,22937600,44566528,1112670786,-1064507253,234885125,303903,787971,244039822,-108331002,-34108593,-1202674445,-883949516,-661863540,-1898410424,1032128,-1342172999,1202648063,-1014237301,-1077899704,78708751,-789068149,-628299565,74698795,-768878452,-268181293,-947135858,-388771593,-802438516,-1064565645,-522989013,-1030817789,1322289836,1187548077,-31145334,91598908,-341118036,1974615046,-1968901267,1946265794,20102833,512433934,872153092,-930370094]},{"sector":3,"length":512,"pattern":0,"data":[-1031072797,-1064385789,-2080863315,292880383,-501415642,16417267,-2129234704,-351272766,1086360796,-276578162,486614544,-339702200,-1950118942,-1962932162,50334262,33948144,1060096,-1064380274,-100663109,-410265970,784698363,1085550591,-1191181637,-896794602,482007694,-1205744383,567102719,1801675088,1713398885,543517801,1663071081,1970434671,423024,182779933,185147460,551029651]},{"sector":4,"length":512,"pattern":65537,"data":[-1207745348,251987307,-754667264,-1931965464,767624129,74649452,-670836489,567102132,1929394920,-352210940,742293527,510918916,-927315020,37141251,141697485,567102900,567102644,-1341844038,845825,767226603,321540,-387203022,567085492,-1106895165,2028470401,222068736,1015046516,-2146667217,1967063420,738655750,-1957893372,54836950,1191397567,54988426,-1527517902,-919342453,1010936492,1241085197,54988290,55053960,-1996273474,-1946011594,-1946011122,-1946010098,-402505202,477233202,-2029795138,520494839,178957319,-117803584,-1161617657,-2014837449,-185861633,-402303814,-335937666,540847339,154991476,-1018235020,-402388034,57802758,-1023395864,2550012,738627110,1375679232,1202476886,-12240346,-152960395,1952013919,434655500,-2144970496,-478871491,-24394759,452695,-2013713575,1034994681,-1070464277,-234815303,50094,0,1044,1056]},{"sector":5,"length":512,"data":[65537,65537,65537,65537,65537,65537,65537,65537,65537,65537,65537,65537,65537,65537,65537,65537,65537,52445999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1124073472,1347636559,4014917,538976256,538976288,538976288,538976256,538976288,538976288,1634683904,1629516644,1869770784,1835102823,1868718368,1948280182,1713399144,1953722985,1261712928,543584032,1869440365,539785586,543452769,1936618866,1701344288,1869770784,1835102823,218762542,1095715850,1481197124,1919179552,979727977,1634753373,1717397620,1852140649,224750945,1426722058,1277191539,1178878287,1948276809,1869357167,1629512801,1869770784,1835102823,543582496,544567161,1702257000,1667592736,1702259045,1752440932,1701650533,1734439795,571084133,1801675088,1713398885,543517801,1920102243,578056309,1701345056,1920213102,1735289209,544175136,1684107116]},{"sector":6,"length":512,"pattern":0,"data":[544500000,1814064745,1830844271,1919905125,168636025,1920091428,1696625263,1969448312,1735289204,1701344288,1986619168,1881173605,1919381362,1160015201,1919906418,1867391034,1869770784,1835102823,1835101728,1768366181,611214710,1869771333,1830828658,1769173865,1126197102,1347636559,2376517]},{"sector":7,"length":512,"pattern":0,"data":[16144973,64,33357856,135004159,128,129499152,30,1]},{"sector":8,"length":512,"data":[0,0,0,0,-1192457387,1273495556,-28915904,817364992,-1195880411,1810386986,79987462,606420128,1963015169,623949845,1374179408,79987462,1342177720,-2093003800,1273496260,-1547687167,-224187156,741122862,-13833565,1996424822,36235268,-1996176253,-1072955834,-14805388,1345073718,-2096784152,28837572,300437504,46433087,787627651,-402230272,-224183920,2340910,1454696528,-1560099709,378088686,-994562832,47673,599281746,-1377284096,113541974,716703431,817387522,-1195880411,-1075294166,79987540,7603910,623943680,184305288,-954305088,53131270,-1173960872,-1207959254,-1202707152,-397399368,-998026090,1946615300,240707584,-2130819447,1962998910,-1207515362,-950533334,2800134,623949824,716748880,1416423504,-33241981,-16747506,-13832138,-1205014986,-397410269,-998025680,-25263354,-400460544,748755207,1958742828,81164,37555316,-351636480,437512203,887621355,568911916,-385976577,-443859404,-1957313699,571628,-1958807064,-768932282,1038615729,-62486185,-1946265975,1183384646,-96024584,1183514624,-129629188,-1308994029,1480255492,-1017256565,-1192457387,-1008205822,-1070901698,788308889,788403849,-1993410397,-1724974570,-1993407325,-1557199338,378089216,-1550242046,378089236,279129878,303466799,480483631,504793391,790143791,790238857,790668185,790763145,-1993411421,-1557203434,178466600,789095215,-1556882269,547565354]},{"sector":9,"length":512,"data":[975086394,-1556470621,681785890,975610682,-1191295351,1861681161,-958886914,2837127,-2080487681,2082078334,1980155882,-956301312,65094,-150991688,-259260818,791446727,-1070858241,881101209,915704111,813992239,848595247,-25785553,-422378319,-561739367,-527136461,-494630605,-460027597,-2071357133,-1802947610,-2071383064,-1802947606,1191130092,-25263106,1588427876,-1017256565,-1192457387,-806878966,-2033822147,-956236040,130118,1586178027,-1948003844,822019702,-17267059,1344989264,-1207647101,-1924136834,1358887046,-2091901976,1191118020,71732220,2096907833,-125399599,-236433154,46433107,-17267059,-1960037725,-2144587234,829685823,-2037770005,1352204022,1342210232,-2091686936,-1073019708,117379700,512437298,126495794,-17398136,-629817334,741482123,1962950528,-373282043,1065353964,-1956219857,96807875,1183383816,-16520196,2122579022,175898876,-2130938229,805238970,1183575413,2109737980,-1983894782,82574406,741476095,741482123,-2037905526,-1073021194,1352142964,1342211000,-2091716632,-1073019708,512482932,130427954,-59340032,-17268083,-1205063005,-2115436540,840862466,21465644,4140440,1979715901,37415171,781434883,99067903,741097091,-1961987072,-970182114,-1207958969,1374224385,738641666,-1207959252,-1202716664,-1588592505,1346382898,-2091923992,-1073019196,163074677,-2091848960,2894910,113756533,142380,1342178744,1342214328,1076638369,1335683152,184992899]},{"sector":10,"length":512,"data":[-1205242432,669712390,741097091,-945785600,53226502,309248,9877584,741515600,1944604736,113541967,829734923,16777912,-382979578,1048837805,1946169074,-9443069,787613383,79167491,-1682419712,849432576,-397393876,-998027454,1975520006,374991,1048825323,1946168556,-12326653,753665735,62390273,-1598533632,849432576,-397393876,-998027498,1975520006,309411,1048814059,1946168364,-15210237,-1993592159,113770054,273452,1342179000,1342219448,1076638369,1323624528,184992899,-1207601728,65732615,16777912,-349425146,-158954984,-1202677506,-397410133,-998026872,1958742788,839319314,840862508,-2012771796,184481414,-941984320,64582,-2037765909,1352204022,1342222264,-2091820056,-1073019708,1586176629,842435580,-2012968404,-13847417,-13880826,512490566,126495794,-17398136,-898252790,-956539253,2929799,16547459,-1494678668,-1207515139,-973050582,-13975802,1344614584,1344975032,1344977080,-2097069080,950077124,-129595099,-1993689439,-2037515706,1183448824,-1961890818,-2037711266,126418678,-112897,1589966918,126494456,-17398136,-478822390,-956408181,-2037579769,849608440,178220,1048801515,1946168364,-33036029,787627651,-385649664,1187511805,-1207882500,-11534157,166263926,79987461,-2114173185,20118654,-1070864002,968812624,-385694589,512490761,1204169778,62390274,-1641551104,1644550661,-1476011516,-637280509,-637270011,-637166075,-637150715]},{"sector":11,"length":512,"data":[-1912219131,-637150716,-385599995,-1956709163,1438866917,-1070338933,-1959114264,1175127622,-955747064,2800646,-1959335168,1451951686,676176648,676271753,676005574,1275512331,113639464,-973068207,271077894,676529862,1409730088,113639720,-954193835,19577862,71731968,-953501533,36354566,-1106852352,113639466,-956159297,1261092870,623949864,716748880,452688,1560593539,-1264938813,-1023039206,-1457885030,-124075259,-1023039206,-1075265485,40167481,-1023409688,-1192457387,-1343750132,113727033,-119000,188068328,722564288,789750720,-1557196637,346238742,36956463,716703431,-1330101504,817385514,-1195880411,800608298,65556480,147096398,623918720,-385649536,113705108,1125132984,1344975032,1344614584,1344977080,1342189496,-2092048920,-1331623740,-163149526,-1994050911,1996485702,65556726,79987509,-62486119,-108919,1996486262,887417076,-1727740797,-1980217719,12122710,1347590401,-100609,535362678,975086416,-1727987528,1996443730,-59310082,-1554994712,12073504,1347590401,-362753,-68618122,975348559,-1727987528,1996443730,-126418950,-1555003928,113654308,-1202574663,-1202705744,-1202707152,-397399368,-998027734,716218630,-1590894941,-593287886,-601963476,2139301420,57999429,637618409,725960587,-401952302,279138536,303466799,1007077167,-956301275,2799622,623949960,716748880,1423440,1278273616,-1593391997,-768924368,-1175975247,787784528,787879561]},{"sector":12,"length":512,"data":[309641739,724665320,-401952302,103370916,370749172,113716982,-2013254984,1344614584,1344977080,1342182840,-2092174872,815859396,-1311626459,1350232074,-1993411421,-399575530,-1073007542,-1092025483,893904896,1642597041,789881680,789976713,187865576,-402426432,10551793,35031855,268839215,303438127,-1207515345,-1204615638,-1202707152,-397399368,-998028030,926842884,91557925,-352321096,-1950340350,926843120,91555877,-352321096,-775935230,-1547303968,-1073008856,20776316,722107904,789226432,-349239133,-1207515356,-1203109590,-1202707152,-1202705736,-397410257,-998028470,624075014,-953218909,3082758,675185408,527761455,1358954424,-2093752344,-804584764,-4717196,721611775,791192512,58048523,1580458728,-1017256565,1407762483,7989303,1953808394,716703431,-1330101760,817385514,-1195880411,1740132394,-1075294208,147096395,723859105,-401690158,413355892,437684527,624075055,246534699,-1555078168,378089244,113717022,1174416056,1344975032,1344614584,1344977080,1342203832,-2092203544,815794372,635709989,78708976,648276179,623943738,254141482,975741696,-326412861,-402648904,113653454,-969594183,1730852870,1344975032,1344614584,1344977080,-2092163608,1048774340,1946167984,842957628,896794661,-1980479859,1452080198,571646,-59310256,702486,-1338572976,1280239658,-1207253885,-1202716664,-1924129976,-397347770,-998028886,1958742790,-339727612,-1207515306,-1203765206]},{"sector":13,"length":512,"data":[-1202705744,-1202707152,-1202705736,-397410201,-998028578,624009224,1183441962,-1207515150,-1203371990,-1202705744,-1202707152,-1202705736,-397410201,-998028614,623943688,1183441962,-226589712,1034843392,-1452146624,-1962933832,1438866917,213445771,906553344,1358448269,1358579341,-2093887512,1183384772,-27883012,1366609931,-1959848799,-1557195242,378089232,109260562,-2097139952,19862038,-1946401141,1183448662,-162100748,1589913067,1065363188,638940418,637945739,-1324853365,1308813322,789579265,789714449,-2080747777,-2096434106,1962998398,1575324629,-1957326653,964844,1446351336,16402119,138841344,-1946663287,1183385158,34990588,-1946401025,1065417822,-2146994899,-16649138,1586232390,742359292,1317013365,1191125236,-60912644,-1952970870,1334310616,393479202,-150992200,1183448686,-60912642,764938122,1174470704,-1948783618,126549086,1022510728,1006924908,-2146994868,-16583602,1586232390,-2012771588,2017260102,1480328308,1317013365,1191118068,-60912644,1183319946,1952726258,1967406084,-62456061,-1963172213,-230258681,74736444,125125436,150228608,-1946401025,126549086,1022510728,1006924915,-2146994861,-16190386,1586232390,-2012771588,1832710726,1295778932,1317013365,1191121140,-96010244,-150991944,-259261842,675316934,1099220491,1183449128,1183090938,-28931544,675841160,-1996601718,-165131900,1947268166,-196181942,-129596664,-128021758,-1543616629,113650360,-1191236929,-1202707152]},{"sector":14,"length":512,"data":[-1202705744,-397399368,-997983600,768006,-1946521865,624468464,675447945,-1014899061,-1230952382,38242602,675972294,-163517664,1946743878,768028,-1946521865,-129596432,-128021758,-1979824245,-1943518588,-349682532,-196675881,768002,-1946521865,-129596456,-126448894,-1979825013,-1943518585,-165133153,1946743878,768015,-1946521865,1200080600,1458245672,83117814,196618612,-93391104,-2067337077,-164616118,1946350662,1199883783,921383720,-150991944,-661915026,675776454,-1205343453,1861681163,-957314054,539511428,49563382,-2067396748,-349099961,768013,-1946521865,1200080600,196616488,-93391104,-964562805,1190537287,74711540,49004586,67141808,552879862,75498356,-1983894720,1183446598,-28931596,-2130944373,58008895,-1946298903,-1197276090,-1173960918,-1962933974,-1130104250,-1106852310,113639466,201271999,-955878208,1261092870,623949864,716748880,-112531376,-2096839549,31806,-1192754315,2080818945,1577058304,-1017256565,-1192457387,-1572844,140413746,1468729227,33555714,-1325346173,1280763914,1387810898,1183666203,367546604,147096391,-1962123637,38210311,1996431477,108461834,1357661837,-16222465,1505231990,263737371,501764096,247759869,1996431851,108461834,1357661837,-16222465,1996426358,460175364,5224528,-50665392,-1961835389,1438866917,347663499,847570944,-1962385781,39291655,-2097020923,179372242,1380703208,461748304,-330920624,1184557136]},{"sector":15,"length":512,"data":[-1962359677,126553182,1963083531,175570720,-1928956161,-11473850,1996425334,462206980,1030224,-56432560,-351353725,175570721,-1928956161,-11473850,1996425334,74907404,1343987896,1342197688,-2080604184,-443871036,-1957313699,571628,1446119912,-2010393112,1187510854,-1207959298,1385758730,108461904,-402360577,805587692,-106869,-2021065146,179840150,1347590400,1342457485,-1958064152,1175127110,-2095090682,1946418814,-25263348,-2096729081,1963720318,-27358451,-1963047169,-2021066170,2122523798,-1418395642,2122516082,-1552613372,16271047,-1960711424,-2020935586,1183327382,-25785348,-964562133,76162197,613844872,-1996732790,-129564924,-1711389045,-120470997,2146977339,-27358254,613844934,613857280,1575324510,-390057021,1048785238,1946169074,787652921,-368640184,-368690388,-953450708,2943494,465090560,5290064,-73996208,-402340733,-1179106102,179851291,-2048372736,79987707,753534663,-1866268672,-1192457387,199754100,-1983894735,1183444038,-1190738198,-1330097622,817385514,-1195880411,1474842666,113541958,-1993690975,-1543578490,849423582,752657189,-19233081,-1631321972,-1960378662,726049543,726140615,1048772608,1963076652,465221702,702544,-82122672,-1207647101,-1202709573,-397410220,-997983476,465352708,702544,-83957680,-1207647101,-1202709571,-397410293,-997983504,465483780,833616,-85792688,-2096839549,53226558,-1078442379,179851291,-840413184,79987706]}]],[[{"sector":1,"length":512,"data":[1343996088,1342193080,-2080718872,-1044904764,179851291,-1310175232,79987706,1343996600,1342194104,-2080726040,-1011350332,1119375387,-1779937280,79987706,716768966,623949872,716748880,1161619536,-2147171197,52768830,1048577909,1932010801,2047264263,99287296,7997126,-1983894784,1183448646,-163133444,1183384575,66042104,-11513191,1996483702,1354771434,571472,535816272,185517187,-1207536448,-1746337791,-364475129,1620048,-163148464,2865232,-62485168,571472,584509520,-955464573,4258886,16664263,-163133696,1187447039,-1207959304,1385758959,-327745712,-1192593665,1385758784,571472,530049104,185517187,-1918339648,-1202656698,-1924136935,-1202653626,-1924136917,-1202652090,-397410296,-998038908,-62470388,1187446864,-956301058,33551942,16271047,32487424,-11513191,1996483702,5290218,-1202695527,-397410296,-998039739,1958742798,-11278077,1357530765,1342184120,1358317197,1342188472,1358710413,1342179512,-2094911512,1187450052,-956272388,65094,757915297,-768933776,1038615729,1060167,-1996432765,1451882054,-11513096,1996483702,7387370,-1202695527,-397410296,-998039835,1958742798,-17569533,1357530765,1342184888,1358317197,1342184376,1358710413,1342179512,-2094936088,113708228,10926,741097091,-1000770302,640474142,639780747,-349939829,-295779318,638028582,-1996335221,1451880006,-49680,-559860108,1943026476,1996444388,128903406,1342489731]},{"sector":2,"length":512,"data":[-18446707,1092020304,-1207647101,-1924136929,1358882438,1343997112,1342181816,-2080855064,-1242887996,-1557340511,-593417168,-1555544020,516172846,-1960432594,-398030585,15091399,752787712,-939768183,65094,-1542401,233367158,79987695,469517867,78773846,759582696,-628948976,-163149568,1392006793,-327745712,-1411329,1996488310,571644,502786128,185517187,-385649472,1183710725,498618602,1183666176,481841398,1183666176,146297084,-504868864,214205216,652631748,134315907,-639040652,1200301571,-398064893,-1803122368,-1836660738,100663550,-292362157,-1996176253,1451883590,-429996802,55020326,78762539,-1991914520,1451882054,-429996808,142573606,-385649581,-2144993078,1950550399,12642563,-768884596,726144571,109016444,726009403,1183018354,1451426282,1048772844,1946299436,70379779,1343999160,1342180024,-2080925720,2122515652,57934314,-2096882967,1946217598,68282627,1343999416,1342199224,-2080933912,-826800956,179851291,1776832512,79987703,1343999928,1342198456,-2080941080,-793246524,1404588059,1307070464,79987703,-16525591,1996486774,-327745546,-1411329,1996488310,571644,484436048,185517187,-385649472,1183710445,515395818,1183666176,481841398,1183666176,146297084,-907522048,59959583,652631748,1208516480,1996438133,-159973384,-1280257,1996483190,-59310082,-397361109,-998040427,1958742798,-56366845,1357530765,1342189752,1358317197,1342183096]},{"sector":3,"length":512,"data":[1358710413,-1242841045,-1946401141,-2037776810,-1769341214,1183579876,-128545802,-18970999,-18835831,1357530765,1342184888,1358317197,1342184376,1358710413,1342179512,-2095100952,1183517892,-2037825304,-2033713512,65174,-1962798871,972985478,1929287814,34597123,-23683388,-2012771802,1023315078,1006924868,101348681,373680211,-352009085,466728963,-1702458032,-1779937026,79987518,-23683388,-1744336346,1023427117,1081540630,781434883,350463999,603604679,-949556480,2161222,1187471339,-352312070,-96024744,1374355496,704267975,-951391488,2554438,1187464171,-352309766,-96024772,904593445,737822407,-1540429056,-1424696300,-1307255788,-602612716,-602621676,-1072374764,-602612716,-602612716,-602612716,-837499116,-602612716,-720053228,-92372204,-385649365,-1631321796,-1960378730,-768933049,-1981283151,-62486205,100554377,-763166208,-401952512,1347568788,1344000952,-18446707,1062398032,-1962359677,-1946249594,-1979803498,1451881030,-228670220,55020326,-196738752,-23683388,1145012262,-1031064715,-263812800,15615687,1996443648,69921006,1342489731,-10058099,1033037904,-1006320509,-1960382882,1468737031,-297367294,-336570743,-1732837591,-1766391810,570550526,1342489731,-23427443,1030154320,-1207647101,-1924129830,1358915206,-2093131800,-1631320892,-1977155946,-1937340409,1950629118,1967733764,-62485682,704534155,436133510,-1912676202,-1543595386,-11396070,1996487798,-361299988,-18565377]},{"sector":4,"length":512,"data":[-18696449,1342179256,-2095419160,1183649476,1996443882,-62484998,1354771280,-18708851,505936,493021264,-2096315261,36449342,-2037570443,-11469158,-2037515658,-1924071578,1358882438,1358710413,1344003256,1342181560,-2081130520,-1631318332,-1960378730,20972359,-1946249082,-2043025338,58130072,-138007,-73546,-74058,1996483702,-457768982,-491323394,571646,435152976,-384908157,1996423367,-428408856,-2081765400,1183384772,-27883012,652631748,721635211,-402345518,1183400448,-128546314,-1542401,-51845514,79987475,624867408,1012066384,-16464765,1996482678,365947110,1342489731,1344634552,-2093204504,113706180,624827418,652631748,-1996404853,-939618170,754880134,548249856,21444902,-1064563595,-1902197696,121317118,1996433012,-159973384,-1280257,1996483190,-59310082,652631748,-402556929,-998041267,1958742798,-111417085,1357530765,1344634552,1358317197,1344618168,1358710413,652631748,-402556929,-998039937,-429997044,1514111014,1048781941,1963207724,471245171,471336459,-1263000971,-273133524,1203261467,1239961600,113542131,1589925611,1200301798,1174487043,-82253336,1344009144,1342196152,-2081215512,379651268,404130588,33555740,-1325346173,1109059594,-189247406,-2037559269,-397345050,-998032168,-427389688,381178110,-71806948,1253593115,-236433408,147096562,741097091,-1203014397,-1202709500,-397410294,-997985572,471245060,471340683,-2097020923,179372242]},{"sector":5,"length":512,"data":[1380043752,470136912,-427389616,-1981263618,147096380,-18446707,471251024,470595664,4634704,-224204720,-402078589,-1070923770,-1017256565,-1192457387,669515870,481842728,179851292,-2115481600,79987698,187948705,1966333958,471709713,5355600,-227874736,-385563517,515375423,1639469084,1508397056,79987698,1344020408,1342180024,-2081272856,548930756,1656246300,1038635008,79987698,1344020920,1342202808,-2081280024,1187448004,-956300864,49734,1182992619,1451426240,2122514626,58589378,2080434921,-1065450743,-385650076,1586168031,-754667072,-829977629,-796456141,-385649357,1586168011,-1948003392,-1959537017,87283863,-763166208,-401952512,1347567836,-2081072152,-1202715452,-1924129758,-397352378,-998032492,-1067545850,-472709967,869435275,869570443,-2097020923,179372242,1379970024,-181737392,1342489731,1344022712,1355040397,-2093259800,1586169540,-754667072,-829977629,-795374797,33555763,-1325346173,1081796618,-102215598,79987700,472823888,-1572434608,993192016,-1962490749,78758006,1183704787,-963948382,1345572357,1355040397,-771373429,1183666227,-963948318,1345574405,1354778253,1344025784,1342203064,-2081346584,99160772,-443851009,-1957313699,178412,1445376488,637820612,280567,-953846656,65094,-989956469,-1977220002,-561313216,614762376,-2080487681,2080964222,-1408842009,1441464356,637820612,-1744156790,1962934589,716087575,1342193925,6960895,1344578744]},{"sector":6,"length":512,"data":[-2093312024,636159684,637820612,-1744156790,716047875,1342193669,86683297,-11534271,-1207931850,-397400924,-998032784,73319432,172460582,-1375338088,614774826,1575324510,-326412861,-402648904,113714714,10938,716703431,-1330069248,817385514,-1195880411,364400682,-2014818304,147096378,624705155,-1590266624,-768922960,904398001,-133809346,992376110,1966012950,716218656,-940423543,61510,653287108,-1718089846,300419761,-133824194,-99217106,-1190738386,817390122,-1195880411,-873967574,79987514,-1994050911,1187509830,-1207959308,-1202707152,-1202705736,-397410286,-998033082,623943942,179425835,-1556230168,378089208,-1070911750,-1557197149,-1410846964,788570603,788661771,278989173,302385967,-1588038609,378220280,100871930,370355968,100871938,370355984,1183395602,-27883012,280674347,-11513344,1996488310,1021110524,-2097151955,-654896934,-150941053,-129594918,-2080745847,327091962,-1073019780,1183518069,-94991368,-1993405277,-1959850474,1438866917,-1833374581,620292096,186572264,-1592429376,104407173,208937091,183373544,-1207601984,48955393,1183432747,475117722,702544,-281876400,-1207647101,-1202709422,-397410218,-997986524,475248644,5748816,-283711408,721732739,1183422912,-94991880,-1980479863,-123603370,-99185874,-66704594,-32105682,-62486226,33445513,1444017222,788046326,788141707,-2097020923,179372242,1379785704,-228923312,1342489731,1344033976]},{"sector":7,"length":512,"data":[1355040397,-2093444120,1183516356,-27882500,-2097020923,179372242,1379775464,-231544752,1342489731,1344035000,1352418957,-2093454360,-56555836,-32077010,33555758,-1325346173,1032513546,166219858,79987698,475838544,1921420624,1105744127,113541944,-9271667,-1673097904,-1002009264,6010960,476100688,5814352,-296556464,-1592998781,378220288,103493378,370880260,1183395590,-27883012,301221377,10614358,35031855,33555759,-1325346173,1025959946,-1511501742,79987697,477083728,-1002009264,937355344,-1962490749,1452014662,33555966,-1325346173,1023338506,2112376914,79987697,477345872,-1673097904,934733904,-1593391997,378220292,339718,13796098,-706213199,-397389252,-997985964,2008567812,-2037559268,-397344910,-998033524,1921420550,1183666431,1183666332,1555583172,2075676672,1488474140,-1645719552,214205421,-1946925429,1183446614,-94991880,-1959850847,-1993404906,1451883590,-196738562,100029969,-763166208,-401952512,1347566708,-2081360920,-1202715452,-1924129654,-397360058,-998033620,789356806,789452427,-2097020923,179372242,1379683304,-255137712,1342489731,1344048824,1352418957,-2093546520,-1070922044,-1310175152,79987696,479377488,1921420624,-370650881,113541942,-9271667,-1673097904,-1002009264,6928464,479639632,5814352,-319100848,-1592998781,378220304,103493394,370880276,1183395606,-27883012,301221377,279049814,303467311,33555759,-1325346173,1003415562]},{"sector":8,"length":512,"data":[1307070546,79987696,480622672,-1002009264,914810960,-1962490749,1452014662,33555966,-1325346173,1000794122,635981906,79987696,480884816,-1673097904,912189520,-1593391997,378220308,339734,13796098,2112359089,-397389253,-997986308,-1380429820,-2037559268,-397344910,-998033868,-1702984954,-1927908352,1358918278,1352418957,1355040397,1342206136,-350441032,1921420564,1183666431,1183666332,1572360388,-1061662720,1488474140,703090688,214205420,1344065464,1342199736,-2081678360,278987972,303467311,-133823697,-99216594,394030,35001135,201720623,236327727,-330921681,-1578215799,378220308,100871958,370355964,100871934,370355972,1183395590,-229209616,-1947449717,388694,13796098,-907539791,-397389254,-997986488,-793227260,1183666204,-2115481404,113541941,-1946925429,390742,13796098,-1578628431,-397389254,-997986528,-726118396,1183666204,1508397212,113541941,-1947187573,389718,13796098,2045250225,-397389254,-997986568,-659009532,-2037559268,-397344910,-998034128,1921420550,1183666431,1183666332,1605914820,-591900672,1488474140,1105743872,214205419,1344072632,1342180024,-2081737752,-123665212,-99185874,394030,35001135,-330921681,-1578215799,378220284,100871934,370355972,1183395590,-229209616,-1947449717,388694,13796098,-102233423,-397389255,-997986696,-323465212,1183666204,-1310175036,113541940,-1946663285,391766,13796098,-773322063,-397389255]},{"sector":9,"length":512,"data":[-997986736,-256356348,1183666204,-1981263716,113541940,-1947187573,389718,13796098,-1444410703,-397389255,-997986776,-189247484,-2037559268,-397344910,-998034336,1921420550,1183666431,1183666332,1622692036,-122138624,1488474140,1911050240,214205418,790638211,572424976,129499183,179851293,1508397056,79987690,716703431,113639534,-1191236929,-1202707152,-1202705744,-397399368,-997988852,624468230,-9533815,-1993689439,-1577095034,101396248,58011418,-1593777687,378220312,339738,13796098,300419761,-397389255,-997986928,146296836,1183666205,-907521852,113541939,-9390337,-9521409,790247167,790116095,-2081592344,-1202715452,-1924129524,-397370298,-998034524,-1673097974,-1002009264,488028240,7125072,-373364656,-1593260925,378220316,339742,13796098,-1377301839,-397389256,-997987028,515395588,1183666205,1709723844,113541939,-9390337,-9521409,790509311,790378239,-2081617944,-1202715452,-1924129502,-397370298,-998034624,-1673097974,-1002009264,489470032,-1702984880,-1207602176,65732721,1342205880,-2081861656,884476100,179851293,1105743872,79987689,10124931,901261940,1924681757,770199552,79987689,1344091832,1342206904,-2081873944,934806724,179851293,300437504,79987689,-1959845727,86974998,-763166208,-401952512,1347565568,-2081652760,-1202715452,-1924129480,-397360058,-998034760,1891041030,1857486847,574029823,540475183,-329586641,1342489731,1344093368]},{"sector":10,"length":512,"data":[1352418957,-2093837336,1183648452,1183666332,1186484420,1505251357,-1377284096,147096552,-1959844703,86976022,-763166208,-401952512,1347565468,-2081678360,-1202715452,-1924129458,-397360058,-998034860,1891041030,1857486847,641138687,607584047,-336140241,1342489731,1344099000,1352418957,-2093862936,1183648452,1183666332,1555583172,1522028573,1239961600,147096552,753680003,-1586465792,-1073008856,20801916,-1587249408,378220296,339722,13796098,635964081,-397389257,-997987420,1689800708,1183666205,-571977532,113541937,-9390337,-9521409,789198591,789067519,-2081718296,-1202715452,-1924129432,-397370298,-998035016,-1673097974,-1002009264,494057552,7649360,-405608368,-1593260925,-29544664,1027175679,427098111,510967819,1946157373,494778402,3848272,-407967664,-352009085,494581787,3586128,2075717355,901271581,-1192891648,-1202709124,-588578761,-1017256565,-1192457387,468189332,1887880733,-68681473,1958742806,545628437,545457721,753405044,1958742758,112645,-1070923029,-1197848951,-1202709122,-397410294,-997988528,494909444,6666320,-415045552,-1207647101,-1202709120,-397410294,-997988556,495040516,6731856,-416880560,-1207647101,-1202709118,-397410201,-997988584,-1715459324,-1980217719,1183447638,-162100748,-1959855967,724498966,456064006,-1993409002,1451883590,-196738562,-1191815663,-1924124932,-1202652090,-1202704648,-1202716581,-1202709117,-397410200,-997988656,788570380]},{"sector":11,"length":512,"data":[788665995,788792875,788928027,-1979955575,1174535766,-162131468,1345258680,1358710413,1345257656,1342201016,1344117688,1342204088,-2082039832,1183517892,-162100236,-1980217719,211941974,236358447,-196738769,737564177,-28931648,-1912846711,-1202652090,1347432204,1342204344,1344123832,1342204088,-2082055192,278990020,303467311,335948591,370547503,-62486225,33445513,1444017222,-1702984714,-1206553600,-1924124908,-1202652090,-1202704624,-1202716560,334175691,1345262776,1358710413,1345261752,1342201272,1344136120,1342204088,-2082076696,-71824188,1740132381,-102215680,79987685,-1959849823,53416470,321845254,53410326,321847302,53412374,321850374,-1993404906,1451879494,789881326,789976715,788268547,788403731,788792835,788928019,-1980742007,1183707734,1183666416,1183666420,1605914860,-55029760,1756909597,-1712828416,214205413,1344148664,1342180024,-2082108440,-123665212,-99185874,394030,35001135,-330921681,-1578215799,378220284,100871934,370355972,1183395590,-229209616,1357923981,1358448269,1357661837,1342202040,1344148920,1342204088,-2082126872,767036612,179851294,904417280,79987685,182711016,-385649216,1048772889,1946299436,17819907,752879302,506378240,702544,-452007856,-1207647101,-397399376,-998035326,716611842,-953503581,2637318,-1207515392,-1588395990,-1096603586,-1039743190,-1205018582,-1202705744,-1202707152,-1202705736,-397410201,-998035722,-402209272]},{"sector":12,"length":512,"data":[1048576044,1971529009,9627907,716703431,1050758144,717136680,1344975032,1344614584,1344977080,1342203832,-2094086680,849414340,1820756261,1854326783,-1342177025,-2037559282,-397344916,-1098894728,1962999664,506443809,899152,-462231472,-1207647101,-1202708944,-397410290,-997989276,1887880708,1048576511,1962945760,506574862,752924752,748611664,-1929067389,1358916742,1345118392,1344814776,1344158392,1342188728,-2082197528,117377732,1048651838,16787518,686359421,507951359,702544,-468522928,-1593523069,101396248,58011418,-1593780759,378220312,339738,13796098,-169342287,-397389262,-997988492,1203261444,1183666206,-1377283900,113541933,1355040397,1344163256,1352418957,-2094162968,113706692,65660,1344164792,1342182328,-2082228248,1183646916,414732444,1421365295,1824018462,-1578610688,147096547,-1959846751,86973974,-763166208,-401952512,1347564176,-2082009112,-1202715452,-1924129186,-397360058,-998036152,-1002009338,509917264,-1673097904,758573136,-955857789,16808966,510310400,1292368,-481105840,-1929067389,-1202676666,-1202704612,-2091901333,1946196606,7452677,1874330603,837308416,147096547,10124931,1975017588,179851294,501764096,79987683,8128199,1991770113,330846238,166219776,79987683,1344174008,1342206648,-2082276376,113706180,65660,1344174264,1342182328,-2082281496,2042102980,1941458974,-639086592,79987682,1344174776,1342180024,-2082288664]},{"sector":13,"length":512,"data":[1048773828,1963076652,787784030,787879563,-2097020923,179372242,1378989032,511424592,-1002009264,745728080,-1928805245,-1202666426,-1924129150,-397370298,-998036384,2080818950,-1207959296,-1202708856,-397410285,-997989764,-1673097980,787789904,512342096,1226832,-496572336,-2096577405,271523886,790765187,790667520,790763147,-2097020923,179372242,1378962408,512997456,-1002009264,738912336,-1928805245,-1202666426,-1924129126,-397370298,-998036488,2080818950,-1207959296,-1202708832,-397410285,-997989868,-1673097980,790673488,513914960,5879888,-503388080,-1593260925,378220324,339750,13796098,-303560015,-1202695632,-1924129109,-397360058,-998036564,-1002009336,515029072,-1673097904,731572304,-955857789,16808966,515422208,1292368,-508106672,-1929067389,-1202676666,-1202704604,-1202708807,-397410214,-997989984,-331447544,1903427628,187639969,1030388928,1702821889,-1959851871,86968854,-763166208,-401952512,1347563644,-2082145304,-1202715452,-1924129085,-397360058,-998036684,-1002009338,516536400,-1673097904,723707984,-955857789,16808966,516929536,1292368,-515970992,-1929067389,-1202676666,-1202704632,-1202708784,-397410188,-997990104,2080818952,-1207959296,-1202708775,-397410285,-997990124,791191812,1962933821,-49877,-1073014668,-655817867,81152,-622263435,517847040,3848272,-625473557,918048798,-504868864,79987680,741097091,-385649662,-1070923581,-1979824503,104463430]},{"sector":14,"length":512,"data":[1517566494,1344200376,1342180024,-2082423832,922682564,922696224,-541574626,1183666206,1978159300,147096362,975451903,975320831,1344202680,1352418957,-2094374936,1183647940,1183666332,-273133372,347623454,2045267968,147096544,33310407,-28915968,1048772608,1946171942,-62485676,1979598347,519485454,702544,-531437488,-16464765,-12965834,-1204148682,-1924129033,-397360058,-998036980,-1002009336,520075344,1423440,-534058928,-351878013,517715988,3520592,-1191233815,-1202708772,753467447,1575324671,-326412861,-402648392,-950659682,741666886,741607110,1849097984,-260636928,-2094513176,1589904580,1200301572,-28931839,276152331,7485183,-386894081,-998037084,11200772,150896259,922682997,-387252112,1224623755,-1962522999,1451951174,525574,-1980348791,1187510358,-956300804,64070,-1070906645,2122379403,92086510,-352321096,197143298,-2144897850,1946218110,-62470395,2122514432,1450443004,-1962654069,134547030,-163149568,-940026231,64070,1191125483,-163119110,150634115,1589958781,126494454,1022248584,-1196722817,-1460994047,-2080749825,2097740414,-262239469,-990886145,1191179894,76162806,-454359160,-957325685,1048576007,1946157178,-193528049,-887041,199818870,113541888,1579955384,-1017256565,-1192457387,-1746403316,1187468820,-2144586502,31294,-1310129291,741384448,1929659961,876511259,57933868,-16736279,-1207930314,-397398988,-998037344,9365764]},{"sector":15,"length":512,"data":[-1996208501,1187448902,-1996477434,1187510342,-1006632714,-2144930210,125108287,25133094,-16419840,-336857530,49694339,-1930017141,-62486078,-989964663,-2094597026,1316290879,49694339,1586172395,-96010246,-624956,-1977158074,-1006139388,-2144930210,-428539841,-369013,130480710,-92372736,511061044,-2131075445,58011199,-1962932282,126548574,1022641800,1006924892,-15567558,1996487238,741652730,646375504,-352009085,-95486203,-1956722709,1438866917,280554635,330622976,-96024746,113649598,-956291138,16774214,637820612,134315907,1187448181,637546484,98179,1187448181,637546740,-1996404853,815921222,-129615572,2122387059,1962999796,-196688071,854261803,-1980217717,1187508806,-1946145552,1178288320,-955812360,3273798,1183521003,1589919750,121317104,1187448693,-352308492,-196688123,1183514675,716743668,717162182,623950079,716224592,716748880,-648615856,-1593391997,1183393080,716612092,-939637111,63046,1586172907,-163119114,-231740,-1977156538,-1098414076,-60898265,4161574,1586226293,-163119114,666798022,-96040192,1575324510,-326412861,-402639688,-1202318638,-1202708733,-397410294,-997991124,520402948,3913808,-585177008,-1207647101,-1202708731,-397410294,-997991152,520534020,4175952,-587012016,-1207647101,-1202708729,-397410240,-997991180,-733559036,1323892736,1882113,-1193916791,1861681164,-1947169836,-1959841660,53424788,321860740,-1993394540]}],[{"sector":1,"length":512,"data":[1451872326,813992914,848595759,33555759,-1325346173,733407242,904417362,79987680,520665168,-196702896,644802640,-1207516029,1861681164,-1948742700,-1959840633,86980247,-763166208,-401952512,1347562372,-2082470936,-1202715452,-1924129010,-397351354,-998037956,-800683258,97670795,-763166208,-401952512,1347562332,-2082481176,-1202715452,-1924129004,-397354938,-998037996,-696351994,-1205046272,1861681164,-1913615404,-1957632442,791938502,-196702896,96897872,-1924124880,-1924081594,-11481018,448321142,-1201214689,1861681164,-2082960428,120532159,163056501,-462489856,-349484539,833567,-1949012233,747080664,1183402031,-867776562,-11534336,-857158538,79987707,-1192081783,1861681164,-1913615404,-1957632442,791938502,-196702896,96897872,-1924124880,-1924081594,-11481018,934867574,1320701983,-1578610688,314868699,-1579923713,1178152746,-1202422316,1861681164,-2082960428,19868863,213444210,-730925312,-1132203893,1963405100,780438284,-465139409,1946163517,-700004405,213385216,-730925312,-1132203893,1946693420,-26220285,791970955,792101899,1558774645,4569342,-939632151,54342,-1207904023,1861681164,-2082960428,3091647,-1008139404,833536,-1949012233,813992944,848595759,881066799,915673903,-800683729,-1949149559,-1959841660,86979220,-763166208,-401952512,1347561976,1344230584,1358186125,-2094745624,213387460,-730925312,-2020878197,-1752486092,339766,13796098,-840430927]},{"sector":2,"length":512,"data":[-1202695639,-1924128933,-397351354,-998038388,-800683256,97670795,-763166208,-401952512,1347561900,1344234168,1356351117,-2094765080,213387460,-730925312,1183707275,-963948314,1345270789,1358186125,805684875,1183666223,1183666392,1052266704,1773686784,1320701983,1709723648,314868698,-1579923713,1178152746,-385647148,-1956708579,1438866917,213445771,266397696,75400022,-402098937,1183385617,-1960186882,-1991768506,1187510854,-16776968,-400811466,-998045613,-28931838,125681675,436094663,-955913472,459846,269371011,1070723,529546883,-2095287296,1962935422,529047830,529143435,-1994421085,723488278,529179584,-954234717,2068486,548249856,1963214393,529310005,529401355,1183520628,205916938,-1935601803,-1911125217,-2012872417,-1978265313,71747359,113704960,73616,-1901871061,529310495,2122524907,410320900,185222795,276106310,-1961998709,100864086,370352012,65740686,-1550204885,378085260,1187454862,-352321284,-62456061,959392417,528350278,-150991688,-259261330,956581515,1966025860,474596,-2071262859,1178152750,-1579780610,1178152746,1026782716,343212132,1344243384,1342194872,-2082918424,28837060,31582464,-150991688,-259261330,-1996208501,-1959842684,-2071331258,117387054,1048784682,1946165136,172395286,1963738635,239504142,17847947,287279110,-1591768554,378219334,1446587208,-385649144,141689000,1913013817,10414339,-150991688,-661914514,-1961998709]},{"sector":3,"length":512,"data":[-2029973418,-1760481488,2122526514,242548740,-1961998709,100733014,370224892,2122526462,544538628,-1959845727,959390230,343019606,1178142071,-1962052082,1451953734,790668048,790763145,529546883,-1591577600,378216328,372842378,360656674,104400508,225652512,-1961998709,547557462,571902255,529309999,529405579,790763065,108818559,790627897,-1935579021,-1911125217,790668063,790763145,1183537387,274107150,788530689,788665873,294531,100730997,370224900,213397254,-59836672,1183570059,274107150,791971585,792106769,294531,614539381,639011631,274086191,91690098,1980646969,239504141,-1559210357,378089252,1183526694,205916938,-1070922379,-1962897687,78711414,1183573715,274107150,869172225,869307409,294531,1183527029,274107150,869434369,869569553,-1961998709,-1808199594,376910808,-2076637582,242430934,-1961998709,-2071392170,-1802947626,1586181080,-754667254,-628651037,-594048205,-196703949,200693385,-1961724734,1451951686,-162121464,91720818,1995720249,173968261,-472709967,-1962522997,-2021062570,-1752615974,1843999708,-443851009,-1957313699,3586284,-2096311832,1946616958,173968138,-2096101501,-2097151401,36449342,2122521461,359925508,-15829249,1996426358,142016266,-402229505,-997992038,742294282,1668612908,-1961992565,38210311,2122537333,141819908,958442913,1265960006,-1962254709,39291655,-2097020923,179372242,1378211816,529709136,-733573808]},{"sector":4,"length":512,"data":[546760784,-1928805245,-11479994,1996425846,530167814,4438096,-693180336,-1962228605,126552670,16930699,287053318,-2095310826,70003774,-1997995148,75399937,-15108857,-1927538122,-397358522,-998039852,-901346044,-1929623927,703331926,-1559738741,113650360,-1191236929,-1202707152,-1202705744,-397399368,-997993944,624468230,-1577302391,1183394486,-25755650,-386107649,-998046986,-59310332,1345107128,-2094927384,-1073019708,820577140,471245057,471336459,-1514648971,179851295,367546368,79987670,1345107128,1344251576,1342192824,-2083126296,-1430780220,179851295,-169324544,79987669,1344252856,1342196664,-2083133464,-1397226300,1287147551,-639086592,79987669,-1962254709,39291655,-2097020923,179372242,1378142184,531478608,-733573808,528934992,-1962359677,126553694,1963083531,75400006,-14846969,1183648886,1996443860,108461834,1344255160,1342195896,-2083157016,1844120772,-100609,1996487798,-733573876,175570768,-1207535873,-1202708541,-397410198,-997993112,-2092242160,1946616958,209125152,1356088973,-16091393,1996426870,534099974,5093456,-717035440,-351353725,-25755868,-231681,1183648886,1996443860,242679562,-1207535873,-1202708504,-397410197,-997993188,173968146,1468729227,369492226,404099356,75399964,-1962249209,797117022,39813904,1575324416,-326412861,-402642760,1586170502,268927754,153475,741097091,-15371006,1996426870,175570700,-16222465,-689437066]},{"sector":5,"length":512,"data":[180650967,741097091,-1956416253,126553694,1963083531,75400025,-1593281536,1178149037,-1957989116,126552670,84039563,-763166208,-401952512,1347560344,1344274104,1356351117,-2095163416,1183647940,1996443864,108461834,1344275896,1342194616,-2083229720,1586170564,-1962439926,100729431,370220054,1048779800,1946430508,16443651,142016286,-2097085976,-1263008572,1996443692,536668168,184861827,-1206618944,-11522892,-337115018,79987487,57982987,-1593780759,101391382,1249188888,1344279224,1342180024,-2083254296,-1263008572,330846252,1018712096,-35106816,113542099,1344280504,1342180024,-2083262488,414713028,1270370336,-504868864,79987667,1344281016,1342196920,-2083269656,1586169028,-1962439926,328279,13796098,-1041757519,-1202695646,-1924128742,-397354938,-998040192,241077000,1191905163,-14846718,1183648886,1996443864,108461834,1344283064,1342195896,-2083288088,518720708,-1928562945,-11478970,1996425846,108461838,1344287160,1342197176,-2083296280,1586171588,-1962439926,100729431,370220054,1586175000,271549194,155523,-1017256565,-1192457387,-605552636,2144264,74907472,-2095133720,-645135164,-1979955575,-938738098,1589905268,130426620,1575324416,-326412861,-402650952,1169688750,-1262989280,1575505956,79987483,-1962654069,1183385174,-27883012,-1979824385,1451882566,-96010246,83642055,-129579264,1589903366,126494212,4341144,1178419572,1024750592,2004090956,1962955581]},{"sector":6,"length":512,"data":[8513795,1946179645,-1004999905,-1960379298,328967,541571152,615823440,477816912,-1207516029,1944790196,654073540,1253586943,-991565024,640474142,708790155,-754404928,1975520232,1200236044,1357130303,-350204488,1200301767,-1312806337,1357435656,1061653030,-1202658262,-1202708400,-397400908,-998040532,-995038456,640474142,-1742649462,1342193669,-350202184,-62470253,1589903362,939468536,654073540,1505245183,-1949570272,1438866917,45673611,129820672,-336188586,909723137,394133622,471480063,-150992456,726271470,445442128,184861827,-2082310720,92019198,-352314952,1983265055,-15239936,-1206117834,-285802487,1345014277,-2095434776,117376196,-963968906,1575324510,-326412861,-402652488,727058274,1174531062,7747129,1996428926,636932,1241902839,870862891,79987482,-478822389,7747129,-963967874,-4717589,-443851009,50013,-2147483648,0,1,0,1397310550,1444945995,3354163,0,0,0,0,59921,0,1229215232,775113555,16810035,1073807361,-33423360,524294,1,1448412224,-1205991849,567096601,-1191177537,521011205,-214349634,-1089112666,-1960443860,-388955835,-148444975,1946418949,65748993,755237048,119473152,-1017291169,1397903696,1465275732,-326433250,-1206981501,-661781079,1950253308,410255360,66209479,-196688040,1183645696,1183666418,-1880600334,79987483,753940223,753809151]},{"sector":7,"length":512,"data":[1342186424,-2095228952,-1070922044,92465232,520611211,1532845663,1482250843,-1205956401,-661782464,-2069888844,-1057087744,41353532,12779696,618403469,-1070450508,108208589,1204214411,-628413433,-1022933110,-1671997946,-2081649835,-1070398740,-1558150237,1757028485,1023588384,376644045,543688390,1023588388,175317453,-1205830982,567098626,-1202711182,567096679,-1879042881,-1189056066,-201588727,855930022,1532357568,-851181384,-146509279,1946190018,12777278,507016256,-661729140,45733259,-959370496,-1207763386,567100418,991982111,-1961069119,-528023994,2080648509,309522,-970947654,52462342,-851180872,855829281,12079296,1478610238,-1654790773,-1022927265,-2081649835,-1070397204,-1191688567,801969674,964018187,66864839,-96024832,-108855286,-955747071,261702,-2097089559,141886201,83773127,15132928,1963194755,-28915960,-639041531,-28915968,-773259258,369145856,2141728717,1187451508,-956300292,64070,100550343,11987200,-854130504,1963080751,-1962986988,-60913192,1586093194,-28915718,-1712783359,1182840832,-1073008691,2146108276,1258469520,861341267,-1896117285,1596968387,-1072997625,1187452789,-956301060,64070,16664263,-129579264,1659568129,369473680,-108843059,-1206422017,801969670,66864839,-96024832,1187446784,-352320258,112758849,1009765654,1006925057,-955091713,261190,16402119,-28915968,585826307,-62470256,1187446786,-956235782,196166]},{"sector":8,"length":512,"data":[-946859797,64582,16402119,-28915968,1183514624,1958743038,112643,-1017256565,-1259566251,73334528,-1017265269,-1259566251,73334528,-1957313699,-1202321684,801981193,611664700,20939046,639464714,-1744746614,-1996065141,1200301572,74877698,-1960442743,-1960442809,82511447,-796147661,-1017313442,-1655652301,2447516,-268419600,-1070398860,-326412861,-2135703501,-883038837,1458342741,-2009169065,443875360,-851246920,1971338287,1125169169,512307149,109846666,117383308,-2002706296,-1956749536,1438866917,1465314443,520086578,-745856886,-443851169,-1957313699,-1269344532,72780545,545922815,1950929459,1609796098,1575324510,-326412861,45373270,545922815,1950929459,1609796098,1575324510,-326412861,62150486,545922815,1950929459,1609796098,1575324510,-326412861,78927702,545922815,1950929459,1609796098,1575324510,-326412861,95704918,545922815,1950929459,1609796098,1575324510,-326412861,112482134,545922815,1950929459,1609796098,1575324510,-326412861,129259350,545922815,-1072967117,-209059211,-443851169,-1957313699,-1269344532,-1977680120,198325024,-1979550272,-1956749325,1438866917,1465314443,520030388,-1073012598,12239499,-1979550464,-1956749325,1438866917,1465314443,1451952564,-1977680124,-1950348512,47810,-209059211,-443851169,-1957313699,-1269344532,72780554,545922815,1950929459,1609796098,1575324510,-326412861,196368214,-16484725,857770526,41175250,1583346570]},{"sector":9,"length":512,"data":[-1017256565,1458342741,-1962101673,520029270,1267933322,-259390860,-443851169,-1957313699,-1269344532,72780557,545922815,1950929459,1609796098,1575324510,-326412861,246699862,-16492917,186681886,-1161655360,41222144,1583346570,-1017256565,1458342741,-1961970601,520029270,-745856886,-1031028725,1962934458,1609796098,1575324510,-326412861,263477078,-1962649973,520029790,-768401270,-1979550648,-1956749325,1438866917,1465314443,1451954356,-1977680124,1951109920,-225799677,-443851169,-1957313699,-1269344532,72780561,545922815,1950929459,1609796098,1575324510,817103043,-1348263475,889239584,512303565,109846683,521019549,-1171980104,567106166,243998486,786637744,548210318,741772070,-1308179200,869960739,520042203,91431854,1307123478,113587713,-628350026,905970619,598613759,109977366,-1960435539,-486527986,868322870,1031808767,-1188269056,-1900150772,1957098272,2147465483,-1359822797,-437577355,520560134,-1228933237,-1852265440,1958805164,-492156927,-1155590409,-1484783612,-1195433802,567100416,-1024062862,-2147126144,1075885711,-1092126389,-1161878598,10676259,-1088177474,-1964497990,-1957313792,623165164,-400218945,-1161953155,599572259,-352291608,-326413053,-1088176962,1726489532,599571968,-400311105,-1175977876,1958742784,75399947,-955943680,16712774,-1157623879,-2013921275,1946230966,-851528700,-220052703,-1962932248,1286865990,243999181,132326320,-16776517,505654814,547034821]},{"sector":10,"length":512,"data":[-853213000,1048583969,1946165464,-643817971,-636041952,-853167072,1002643233,1326085111,-485651633,-338558986,-147078158,-276623757,184912644,-227278267,-286581249,-1957363517,16562412,41674832,551435907,-16485376,-1205805546,-397410049,-443874711,45663069,438036736,735873881,990540504,1914757150,-1864956,-373279775,861280773,4372982,-1392712654,-69017550,1951790208,-5314547,1342177720,-1207816984,-1017249791,551683727,939524794,1948299030,-1392079319,109979168,109838380,-1070391086,-2147436135,-1359806669,1207661998,-801207993,-18144,-772296974,29348235,8502784,548216462,1948269740,1946762491,1947024631,1958742639,-1404156053,-395042756,-462157508,1551109436,1484046346,611590716,57957436,870640450,1017921993,1023046748,50623522,-1949045807,334090689,1963043025,1308748746,1947024556,1958742571,1948400679,1952201914,-320126461,-1404974797,-93037508,74719804,-605302525,-372129397,27840787,-1746152843,1049173782,-687660854,65524039,-18710313,-997465557,-1960784733,385549272,1065956871,918897475,-1431559984,-92946422,906002878,548216462,-1070398485,540847274,154991476,222099316,2145977205,1975519744,-1871058173,1128237366,1017925187,1021015072,1020752905,174224397,1012823232,1009218594,-1442614180,-919345941,1547480129,574421620,1555039860,-773084429,-372155216,108243699,-341171536,1017925317,170816525,1009415360,1018655778,-1442614180,-919343893]},{"sector":11,"length":512,"data":[1547480129,574421620,1555039860,-638866701,-372155216,-1770804493,-341171536,-1430244403,130490134,654245888,-1957355294,512644588,-919396179,-376716917,-1958086261,184560694,-1911524106,1048585926,1946157056,1169093126,1174042030,-31178601,-439222901,521585923,638807,1593869800,-41169013,780793859,119414990,-164372850,-2129403063,1950563132,8292613,-1431550651,-92946422,1317662178,1562318336,-1017256565,1458342741,-1962467753,-994180010,-1036276445,-1774186380,865537140,-17984,-141840654,1603726315,1575324510,1426064066,-11015029,-873986954,1958743039,-91516396,-4603853,-139529473,45828561,-851397632,-443850975,180829,100913291,896672602,592709177,251995507,-657371136,-388824143,512481676,-886366035,-1014054653,1253365899,1918378445,1223697424,-1792846685,593112715,593106433,-372798525,326244177,-443826125,-126631075,1632336,1575324504,-402164797,-4718578,-443835905,-466435235,-1023409688,169915042,-2145159708,52473662,574360946,540806515,95421810,1016072171,-1342015981,551861011,-1482450729,-997539040,-1957300245,82609132,-88189353,-335598816,1157009429,192185094,31123542,1073923203,-2092498572,909707462,-428662254,1600046987,-1017256565,-2081649835,1448544492,-1979287925,-1986525372,-963904954,-1323238867,-1946627325,65065416,98619841,1183392154,105182968,-167349117,1950352964,105676811,-18400,-1878978327,17188086,1283518325,1686110726]},{"sector":12,"length":512,"data":[-1070862586,-1962785655,-58816008,201737462,-561291403,553315201,-70057039,-472792181,-472786941,563775478,-2126088959,1948320510,184451334,-13404895,-1612121482,46433039,762691595,553125631,553844353,-1095235979,-1878725851,-1993542984,76088388,-940024181,33555015,-352254010,-396980216,-998047588,105182722,-1961265912,-85229090,-754732768,-775713797,-774372381,-1702365469,1349779745,2083208331,71600900,-1962636992,1200355422,1149847554,2130643714,1962891027,-92864764,-2096466968,1183385284,-1877283844,-151363957,539014791,45617012,-1070903296,-397193136,-998045222,73173768,-2012985718,-1877480697,-1962933825,1183666375,1996443652,171370746,-1996045181,2117729350,-385649412,1183514347,1592011268,1575324511,-1957326653,49054700,71732054,-1323238867,-1946627325,65065416,98619841,1183392154,33601790,188934224,-1962752893,1200161886,1958742788,105873423,-27358456,149447,-1877480702,-2147197301,-1962670513,-1992229306,1586168903,38258686,1586167809,-1946973436,126420036,149447,-443851264,-1957313699,82609132,1988843095,-1962988796,52692548,1182073404,134628598,-561309323,553315201,-70057039,-472792181,-472786941,563775478,-1960348671,71576324,201082505,1343979200,-1979419393,1352140612,-2096536600,1178273476,-2146994948,-1088420276,1150025727,-956004092,580,1600046987,-1017256565,-1192457387,2011693412,-1957275654,-2037578122,480509598,138840869,-1960506205]},{"sector":13,"length":512,"data":[10683462,369542949,-956301275,2429958,41740544,1948597376,39381251,622331591,-1070923775,-1557854045,312681732,621191973,-1557851997,44246286,620667685,-953873757,539304454,24936448,1178367280,622986951,871039024,1965767808,134676237,235325221,-352321499,1015058466,-2096270048,2426942,117380469,267068686,620627711,1015024107,-3050195,1176832518,1352139914,-2096630296,-1073020220,-1202263947,-397400802,-998045850,-2081387772,2432574,117378173,513877258,-1546062043,1015031070,-14453458,1176834054,622377046,121432144,-1962621821,406750192,175964197,622331591,251592705,76162320,4603288,1312633460,1026913280,544473192,1962961981,101107462,-2097151451,2426430,1015022965,1174500684,1962949760,25749787,621151943,-471138303,621151943,-605356016,621151943,-739573752,-1986526070,1040096390,175374405,1946175293,5782789,117377397,-2038225660,-1960771940,771660934,356319331,-385649152,-1073544940,-1476448621,512444590,529212684,-1994058591,201753351,1776878117,117411841,113714450,9470,1342180024,-2097053720,1374225092,146313217,-1863259392,620889855,621020927,621821571,-955681536,19208710,-1878529280,622462663,117374976,113714448,271640,621166211,-385649400,-1070923640,-1994062173,104463430,661923102,-1994056031,1048837190,1946166538,503760649,-352321499,780374034,-1593498338,-1073011426,-1070923139,-2094719325,35982342,1342181560]},{"sector":14,"length":512,"data":[-2097086488,985137860,-806858752,46433027,16547459,1048781428,1946166538,-62485739,-1560279763,-1073011426,-1070923139,-349888861,113741831,9502,621555331,1095684,12511312,-385694589,280559391,-13637376,-397361109,719913442,28872959,-1863062784,-23283969,-385697304,1048837913,1946166534,1321634563,-2142765429,91488317,1965374848,734497781,1444827334,-2096894488,-141883708,1946172544,-42145533,622083715,-1957071616,-165347298,1948255815,-18353,1213877739,1214269302,1214269536,1198934122,1214924906,1214924906,1200244574,1214924688,1213220970,1198671978,1214924906,1048791114,1946166550,339641107,276103205,620764811,537282550,82556789,-1868960954,1579488417,1575324511,-1957326653,418153452,2122536535,74713604,621938431,621166211,-2096663550,270861886,512431733,126559500,-1996335221,1451883590,201753598,720045093,621952643,-1961790464,-1960506338,-62486265,16664263,-1878070528,621551243,-1986459765,1451883590,201753598,1048773157,1946166526,-62485747,1962821131,71731973,-1070923029,-1960501085,-2094719946,2429502,2122525301,612172030,168066691,80090997,1183532589,-27882500,-763111177,-1982138624,1451883590,-129579010,99287041,16271047,-398029568,1996486795,1996445444,-59310082,-2096493592,1048774852,1946166544,-1477945567,46433033,622333579,1317652523,-1878660108,1177552070,189383051,-1980399680,244053070,92939524,-922024824,1631324020]},{"sector":15,"length":512,"data":[746587004,-2142812640,1962999677,306086889,343212069,186976417,1948585478,-125926645,-1207601920,48955393,-397361109,-998047054,-1956684286,-1866244635,-2081649835,1448546540,294531,29234292,621584640,-1929886071,109312606,-385735412,1048772753,1963992326,203328279,-1962439899,1183384151,-94991880,621545091,-1877611772,621551243,1183385483,-129594884,-2080743796,35982342,621166211,-1962052336,1175189574,-1206618630,166404628,16547459,465045877,-129595102,-1946526068,1452013638,-230258182,737433225,271989238,-1961069531,-349890546,1589940238,-230227982,4161574,994448756,-351240498,-1002008339,1191178846,1065363186,-1946979072,723852862,171869182,125108261,18802775,1443021955,-362753,1877538934,113541889,621428355,1460106240,-2097085464,1599996612,-1017256565,-2081649835,211879148,-28931803,1728347779,2122516084,74794756,48955824,1183367210,272532476,108331045,622331591,2122317830,225706236,622345859,-955878144,19208198,70713088,406257445,74907429,622606079,-100609,-2094907882,2122320580,309592316,620641923,-16026368,-14345162,-2094907370,1048773316,1946166526,406749970,192217125,622606079,574887679,-2096970621,136645638,622855879,144769024,235277093,-15502299,385875574,-998038970,1958742786,112645,-1070923029,17360976,-1017256565,1458342741,622214787,-1959824128,-14352354,242745935,-1962654070,-2012741833,-337368572,-11300853]}]],[[{"sector":1,"length":512,"data":[-1343749002,79987703,-16288448,-349891066,117411845,1566450964,-1957326653,49054700,1048794711,1962943766,74877769,1115616779,922686955,922690816,2011702562,79987703,-16485056,-1960503802,-1073000762,512431742,1342121216,-1596229630,1066083618,92801023,-588520406,622214787,-1962445568,100729926,1600005396,-1017256565,-2081649835,1448542956,-2096597365,2430526,485183605,620771071,637820612,1352140682,-2080957976,1967129796,369557252,71761701,189712011,-1961003840,-14352354,-730332593,637820612,512427914,1066083584,92801023,-756292566,622214787,-1962445568,100730950,1600005396,-1017256565,-2081649835,1448545004,622605963,1183432747,-96040452,623001219,957904176,1948585990,33962258,956724261,1965365766,570869510,-1962926043,1445273150,-2096733720,1183384260,737684472,1048773758,1962943754,758939672,1048777589,1966089506,1352182796,-2080465432,1325335236,574522360,192163877,125763339,621428355,-2095483904,1946158206,-96010490,-2097127448,2433086,1191118452,7006460,621428355,1462138112,-2080464920,2122515140,158597124,16416387,904397685,540967680,158597157,16547459,1038615413,-126419200,-739748322,113542142,621428355,-955419648,539304454,1642616576,46433278,-443850914,1048822621,1946166536,2865157,548930539,132665344,46433278,817402051,-68661248,46433277,622870147,-2095614704,2425918,1488455284,-1878725888,1342208184,-2080514584]},{"sector":2,"length":512,"data":[-1866267964,-2081649835,1448543468,-955877749,130630,1965702272,203328271,-2092987611,35982342,-1874269370,1965898880,-28915962,726073343,809271551,1015035260,959479609,1965363262,809271307,113706613,3155234,-1952971638,-773729841,-774962207,-2084043807,-108318487,809271366,1015022972,-1948156359,-268960186,1586231435,-1958770428,-1956684090,-1866244635,-2081649835,-1101659412,1317675554,-1878856956,3964998,205130356,28898933,-1878791424,-1956724693,-1866244635,-2081649835,1586169068,-1273087228,-1207602656,720046336,542455,-2092403584,1946159742,-1949748454,1107409105,1265770957,34227959,51279104,1444087366,-1205307128,-335997440,-27883210,-1946401143,1107474641,1174610381,139858694,1317735801,-61436930,-851312456,-1948718303,1317733974,172395016,567100084,-1484782222,-369286986,-1957301221,149717996,990142091,1914745886,151042055,-200939015,548833270,-1207208928,-919387646,567136651,-2013861006,1954554038,106335086,-1070397666,-1979824503,1476197446,-1946514602,-127497742,-485994869,-234180524,-397773394,-1472397100,-2092403200,-594869524,1023541434,57868840,721453242,-1949004830,-1962469638,1017907278,990671882,-1441172229,602469602,-1335760128,1979398925,1632259,-16076630,-471073722,-352317976,-346071326,860220245,179562944,-1957604528,-473289777,73304848,567099572,1174474098,1958743038,1482381574,-2084308341,74647748,518719924,548833270,-1962183616,1065354846]},{"sector":3,"length":512,"data":[-133991142,-1191637781,116071424,738084491,1720450118,-379625736,1317794599,1976109832,-373191931,1452012315,-851397626,-1274776799,199551753,-153061952,1075885703,-628422028,1964654464,-806619133,469809401,-1587951125,-1002757920,-1003813261,-503326473,-85213133,-1947432107,-620034978,1333789812,-443874818,-1957313699,-1151904020,1065558568,506033408,374791,1963029480,-1715457275,608183531,573088766,-1776145757,66759,-955988349,-65980,573453961,-1945874805,-390033704,1583284233,-1017256565,1090572009,-511640972,-285637634,2005660275,-1951532030,1946265854,-1053079486,-796191373,-1464995837,53769217,132546,1149892491,-1947800578,51148030,-28538375,-1991720661,50719493,-28508423,-628308341,-784608884,-1943665292,-1994246626,650314367,574359238,-115454,-24435340,-1464995837,-1947044863,-1053079298,-796148365,-1464995837,65172481,132546,1149892491,-1947800578,-1073018809,-661781388,-31058709,1948400654,-1931965423,1959214039,512632325,931865138,2005646571,-390057210,-969211798,19139956,-392675264,225706078,-385987074,91488284,-347189610,-1931965287,1958820817,916661764,-1995994334,-1070398905,-1957575783,27852357,-936705164,-1170128567,992378879,1981954070,1978323204,63015925,51737286,-150113598,734143442,846022,-755562379,-445257007,-1017528269,501764434,1461220352,-259260789,1153954307,-1979711746,-695531913,-1991583957,1499004501,1347666778,1377751603]},{"sector":4,"length":512,"data":[28856402,520507392,-2097147928,-92075836,1532633087,-771030412,-1957363517,106387180,556675,1522481269,106335011,1208239755,1407715189,-349736448,-1439265976,292833315,225769275,-1996340085,-397013946,1935540282,80118576,598408833,-771029901,-4716939,501979647,-1014769013,-1310994161,-1259613437,1914817864,76124905,-1996335991,857975350,1583286208,-1017256565,-1962127733,38550007,-964490124,-1426161404,-101550813,-628408341,963779587,-1047604341,108394299,592715321,-1014815117,-774123249,-773074453,1979137003,-1579613431,-668262227,1253359758,225583565,74839867,592713353,-1962637422,-1957313583,-1948808212,-1898410786,75402176,-4603853,-1917914369,2123104117,-18170,-772296974,-24643285,-150714741,1946157510,-783703038,329642985,-1952123959,1576700915,-1957363517,-1948808212,108432350,-661848437,-1070350194,-218103879,-1949173842,-947190658,41157032,-372160092,-921459213,-208952077,-1017251189,-1947432107,-1931572265,-1950314792,2123039862,-1178586362,-1359806465,-114568713,91530995,-14827493,-1946973185,12803578,-1947432107,-1898410793,75402176,-4603853,-139529473,-1953412655,12803578,1475119957,-1962467754,652413006,2123094411,871860996,-139529536,-1949629479,108432382,1149937395,986264575,74972997,1229522036,-1047801353,-443850914,-1957313699,-1286121748,51439872,-1947432107,507184222,293413044,2080439171,-1232603636,91504672,-352321096,-1950338302,12803557]},{"sector":5,"length":512,"data":[48955830,1352730806,1977879075,1342621448,-335544541,567120389,12779700,1458342741,183272279,-839498042,-2012985717,624752454,641469044,1187382900,216779768,-872790330,1157187270,1157121734,-1913366900,1183446598,108956658,1569392011,72190722,-1962519157,2106263669,1593791754,1476156914,-1995932021,39684357,-1996206711,1971914325,172330760,-164428686,-974649109,114414,1971914123,180650764,-443851169,-1957313699,250381292,1183667799,-1913091084,1183385670,105236222,71732034,-1996208759,38127365,1183678463,1996443656,468211462,113542129,1308618891,705394690,-14840896,-351827963,727158795,-806858560,79987694,1600046731,-1017256565,1458342741,-326951337,-196688374,71732173,1022707336,1007318053,-972655578,-338954682,-129579508,-146356533,-163133884,-229209020,-1980479859,2123100230,-1962571002,1300955741,106269444,-16222837,2123041397,-1912238582,1432290909,1576034047,371087356,176065311,1167000972,142510854,1569260937,72190210,-1996073591,1167001717,855929354,-402068490,29289948,-1996125440,-998044555,1583292170,-1017256565,1458342741,75402071,1569392011,72190722,-1962519157,2106263669,1461832970,-1996063093,39684357,-1996206711,1971914325,172330760,-164428686,-1847064341,114413,1971914123,-1956749556,12803557,1458342741,75402071,1569392011,72190722,-1962519157,1979648117,142510858,1569588622,567107334,-678683049,2123095950,-1895461880,2123040325]},{"sector":6,"length":512,"data":[-1996125946,1300824669,106268932,-1895271031,74582597,149681715,-1091750936,92995585,1594652041,1575324510,-1957363517,509040364,-1962647922,1183712886,176065288,-217297269,1583292324,-1017256565,-1947432107,1603011678,-1945662458,1468793423,1575324420,-1957363517,2123061228,-1962467836,-1178586145,-1359806465,-1965426879,-74774970,944746226,855798789,1606913023,-1017256565,-1947432107,108432342,-1341890933,1958742783,663399468,1960852035,1010904308,-2134304230,-1056825119,-528072444,440156460,-511653606,79757856,1959017025,482351828,-225732353,-1957313699,73305068,126538635,292864010,440164652,1090782323,-1975318648,1975519751,-1017277713,-1962258805,1451951174,142510854,-66642345,1958742675,184124179,-771027339,766511737,-2082736214,-621346606,865269643,1958742994,-1812859134,-2020412937,1009779923,67270201,-1031034329,-495598837,-1404107384,1149764998,21270015,-227358917,-1956749480,12803557,-1947432107,900990022,-1031003699,-443825269,-1957313699,71732204,106349854,567092660,-1950338273,12803557,1475119957,-13413546,184960651,1192328640,-150710645,500889560,1183383552,72780038,185222795,1192328640,-150448501,500889560,1183383552,139888906,360038411,-1962389877,-768407994,-661917193,-150714741,-338457615,-1948742856,1451952206,71731974,-640554031,-657331503,-193602805,-259264009,-1861589257,-150452597,1926300646,106314508,108136311,1979991611,-768389631,125128598]},{"sector":7,"length":512,"data":[-654845193,1526782595,-443850914,574045,1408011093,-1946209449,-1073019322,-1958276739,-654900138,1956599,105285888,-1962649975,-1073018298,1451954301,-136775928,7642,-1995815287,-1073018794,1317738613,105286408,-235417037,-150714741,868387825,1132023762,-661960469,-1962389877,1183516246,-773074684,-773140007,1977289688,-1947076620,174520264,140965777,208851203,1996903995,990605831,108397638,453527083,1177225814,106306308,-150505137,-2082932774,1532952794,-1034033781,-315490296,-523172125,-85798191,-1957363517,73305068,1468729227,105810690,-1946164248,126420062,-1962780791,79846885,-1957363712,73305068,-16222465,2013202038,-398983422,1586167822,39291140,-443873399,442973,1408011093,172395350,360038411,-1962389877,-768407994,-661917193,-150714741,-338457615,-1949791432,1451952222,71731974,-607000111,-657331503,-193607413,-259263497,-1861589257,-150452597,1926300646,106314508,108136311,1979991611,-768389631,-1956946282,146955749,-1957363712,1183536108,1975520010,139365141,856049291,-1947076654,-235469754,-768359797,-930396693,-1962385781,1183516246,-773205756,-773140005,1976110040,-1946945548,174520264,140965777,208851203,1996903995,990605831,108397638,453527083,1177225814,106306308,-654845193,1526782595,-1034033781,-315490296,-355399965,-85796655,817103043,37495245,550306419,-1962563137,721420854,16679415,-1107070448,-1896214528,784630231,242481978]},{"sector":8,"length":512,"data":[870726632,-1159180096,1291827432,-461299251,-1992884226,908286502,592848521,78759563,910745811,-14461789,905970230,592578191,915011331,-1014235134,-604512725,567102132,-1390506954,-66644448,-1188784449,-819250640,-1426866125,1978146582,-400615708,1005119436,-1231898,-14627274,-14627786,-400504266,-397367906,62448924,1476839168,1346343459,-387597336,-4659139,385830912,9048,0,0,1377850189,1412263541,543518057,1919052108,544830049,1866670125,1769109872,544499815,539583272,943208753,1766662188,1936683619,544499311,1886547779,1663369233,1663369274,539828282,3826469,757935405,757935405,1224748333,538976335,1397555232,542330692,4325376,5242950,6422619,0,33619968,2097152,536873248,1124075823,1397965132,5850697,1430406468,1380319303,1342195013,4540225,5000257,1430540109,536888652,536873274,2351,0,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,218103808,10,655360,-1325383388,1142969165,1444959055,1769173605,908095087,692267040,2037411651,1751607666,959520884,825045304,540293433,1919117645,1718580079,1866670196,1277194354,1852138345,543450483,1702125901,1818323314,1344285984,1701867378,544830578,1293969007,1869767529,1952870259,1819033888,1734963744,544437352,1702061426]},{"sector":9,"length":512,"data":[1684371058,1381191712,-919382266,-13385330,-1307431240,-1943024384,-1996440058,-1207911362,45224494,109850573,1049166022,783810756,-855330286,-704213969,-734099200,305051648,801965746,12191372,12074633,-1457896038,-1241084923,-1270970112,-771322880,-801208064,442931712,109839785,1049166026,783810760,-855068142,-569996241,-599881472,-217659648,-972419840,604060678,16254663,113704960,655610,-1458021990,-502887419,-532772608,438344192,109839785,1049166054,434634980,3074048,1358971368,1912623336,123689224,-346530982,214205188,1448135673,1660991518,119415245,-1995935201,-1946096586,1577119238,12108632,47940,567136819,-2147359104,28836302,-1021194940,-1153171272,-768409599,-830463539,1140963329,-1262280243,1025625392,58004998,1025043448,91422722,-335544389,178947,-1191181896,11665408,-1007026250,1431766608,-1459422310,-2146536955,1962475518,-350288380,-1960901118,123690487,1398197080,-919341517,1979711104,-524499960,-339506176,46593573,-1128003468,-1014234940,322771179,1024291328,142016551,13679812,116114316,11844804,-75250804,-2146011649,58064894,-1559434247,-4718344,114175,-336005581,16483084,1424491380,80118528,184972024,-352160311,-25125729,1378448641,1460031829,83933264,-12832819,-1962314408,84064472,32190413,1594192889,116087047,-402209661,1516044300,248447467,1543502824,1347930974,855637945,-139529536,1599621585,33260483]},{"sector":10,"length":512,"data":[1048780149,1962868956,-49898,-1588589707,520028408,-346554148,-601948412,857402112,-98103,-1977219468,166396749,1966422054,1300899332,80184067,-131369991,427084043,1962933888,87762437,992347115,-352160507,91506953,-352008317,175307235,-117440896,52822133,108135037,-1977160398,113657613,-1023409934,1431393104,-1957558697,-266434071,-180975616,50043392,-922024535,-318038924,652739957,-402396416,141689264,17164378,82534151,-116996989,1594295531,108198234,1482381661,-998046485,1355544840,512447059,-75300624,-402295297,65732652,1929410536,-1151749105,567083008,-997989326,283900166,1962933123,1958820619,11593735,-116996989,1532625778,102679384,33129247,45357941,-854226394,-1031135455,503362024,124985094,22383142,-336059955,184726543,638153929,567088522,-210417337,1472405496,-1957493168,-1962467590,-65359655,58044146,-1957963477,1476877259,-1070349473,1333053707,-1273035234,-2083026112,678756857,1344217549,-402290138,509083738,108207878,1111536888,647766477,1964653952,-339637502,-401682687,451674107,-1494724267,1508477951,41099725,-935654421,-398784652,-1962773000,-1021354559,-1157617736,28639236,-98109,-956952204,504132992,-214004473,178432,-1006698264,1053054726,-16056084,-2094655628,1962410045,87696912,975570802,24576325,-347650055,-1022926871,16123535,-1835803853,16398071,-97060973,167412480,-1031797386,-2147226825,1095905474]},{"sector":11,"length":512,"data":[74825739,963959563,1963194755,175931405,-16419540,1090585398,-108846357,-2146601721,1965820540,53935877,283853057,1963719043,175931403,-16419540,1090585398,-338545773,869413799,-164167744,-768359680,561301771,11543988,1965373478,1698178570,973370369,638481860,1407714698,1191277567,1967735367,-897100061,863300875,-130120883,729088000,67519626,1161438768,-352160511,1966095390,1959922436,-348912892,-180453145,141950720,1229537858,65752911,1476394938,183040299,1935237118,-1870664957,-2134209711,1946158716,1959332621,1195985158,1577184071,-922021653,-346160267,-425207,-919403915,1450508043,1359370069,1048824115,1962934520,121959981,-1006078705,1290273404,-166008063,1947010884,121959948,-167349234,1963722564,41731080,-352232728,5433344,552076267,1493660160,1583177479,-998046485,1048836362,1962934520,-385650171,113770260,248,-1580059709,113705208,655610,1493079528,16549768,1090224963,-790101131,1976172032,168671470,16549769,-1058520253,-617364736,425088,-2016997003,757072124,-2017049789,1126170876,1560323816,-768353485,15863432,973685898,706639553,-152007999,1954547524,172263956,16549768,1090224963,2095580021,1976499712,142377196,940405760,141756492,-1979167702,139234001,611633419,252134646,1156975733,108269575,1191545382,-2007498261,1124138119,1967192963,4319235,-596260354,-2147007242,-167110539,1149899892,-58226678,-75283712]},{"sector":12,"length":512,"data":[-402426560,-822214621,1157033077,141889287,268911862,216728180,141873674,16123535,-126498050,1426064104,1460031939,-880081122,1049484083,-2098724612,1594192636,82532615,-116996989,1156996547,309669895,1342540326,-43456447,-1977219469,-128974523,-1977217557,1958742533,-348043516,1442393077,-768385597,113754163,1048826,1157028659,611655687,-167409114,1963788100,1954588685,2133082883,16385735,1156972554,108334599,16385735,1424687114,268911862,-1960434059,121959941,-166759155,74744004,2145681475,16385735,1156972554,108334599,16385735,686489610,637897510,-167619189,1963788100,-2134444529,-2143091596,113737702,655610,235357430,113706613,655610,1074218230,1380985204,-1070450508,16520845,91431373,16975558,172263980,1482356875,738870470,-1946369560,172263623,-393214741,-619971402,-768408204,1431449010,369557443,-1879047836,-1543501311,-1560278271,-671085567,285216001,855641602,1426067202,1946161154,-1744826110,-989851134,-318762238,-335539198,234886402,486544899,587208451,922753027,1157634307,1493178883,1828723459,1828723715,1879055619,2030050819,-2063589629,-1761599485,-1509940989,-1493163517,-1375722749,-1275059197,-1207950077,-1157618173,-1073731837,-989845501,-956289789,-855623677,-788514557,-721405181,-201311229,335559939,738213380,771768068,1828732932,-1375715068,-1006616060,-536853756,-318749692,654329092,721438213,1006651141,1493190661,1895844101]},{"sector":13,"length":512,"data":[-1828697595,-1442821371,-771732475,-33534715,352341509,788549382,1291866118,1761628422,-2130685434,-1241492730,-285191162,151016710,469784071,1191204615,1929402375,-2113906425,-1442817529,-771728633,-603956217,-553624313,-352297465,-150970617,16801799,251683080,536896008,1426088712,-1946131448,-1493146360,-1258265080,-385849592,536897544,822110473,922774025,1358981897,1778412553,-1845465847,-1694470647,-1644138743,-973049847,-754945783,-83856887,939553545,1862300682,-1761530870,-754897654,285289994,-637456629,1375809547,-671010548,-1509871092,1850283789,1920102243,544498533,542330692,1936876918,225341289,168624650,1394614328,1701668709,157185134,991410,1953453232,355425,532658,1835093680,-1308621723,-1342174944,1701869908,540805645,757935392,757935405,548536336,766509066,548405264,-1308622304,-1342174419,139296,535986,621415856,1632116768,1701602414,538976288,1296375840,1632510035,538994029,538976288,1702521171,220209184,538977546,757935405,539831597,538976288,766640183,548405256,538976288,757935405,538979629,539101709,824516640,548536341,632291339,858071090,874848288,538976288,221586720,1255178,1253554,540091824,538980901,622862368,622862387,221586740,1388554,2629810,540091824,221390112,1699556106,2037542765,1667457312,1769173861,543517794,1852404597,1850286183,892412020,538976360,824516640,221390112,538968586]},{"sector":14,"length":512,"data":[1478500389,1981829965,1769173605,622882415,1679833905,1702259058,1702240370,1869181810,841293934,538053133,1397572896,1919252000,1852795251,221324576,1330383114,1229472833,385894471,1886217556,1918988911,544828521,1953719634,1952672114,285238373,1702129225,1886745202,1700143220,1919906915,1330779904,1866670157,1853189485,1952539497,544108393,1634038337,1329862400,1866670163,1853189485,1952539497,544108393,1634038337,1330184960,1397556736,5459780,1937330956,544040308,1635017028,2035486464,1835365491,1869762592,1835102823,2035488000,1835365491,1986348064,543515497,1986622020,302019173,1953721929,1701604449,1698963556,1701013878,621019197,167787057,540684581,841293869,1107886138,1162233429,4019026,1279870471,4019013,1111705094,134233427,1128354899,4019019,1447379976,1027949385,1179190528,151010643,1414745673,1028410433,1112082176,1330201165,1112082176,1397703757,1867325952,1701606756,1937055859,543649385,1869440365,1646295410,2003790949,1293955360,168639042,540091683,1965060969,1735289203,1701344288,1819239968,1769434988,1830840174,1919905125,168639097,1701987867,1866670181,1852143214,1852795252,1293970529,1919905125,168639097,1701987845,541196389,1835093536,-1308495771,-1342174432,1635020628,538976364,538976288,538976317,1986948931,1769238117,1818324591,723525664,1428168736,1919250544,1835355424,226062959,538985482,766640180,548405256,-1308622304]},{"sector":15,"length":512,"data":[-1342173139,52437024,271430144,539013120,-1308622048,-1342173139,538511885,1734693664,1953391981,548536332,1420820489,1818326127,538905101,757935392,757935405,337649696,288207360,168669184,538976272,538980645,841293856,221455648,1867791626,1970085999,1864394851,1701650534,2037542765,1634887200,1852140903,1769234804,540765807,541934925,1852727651,1998615663,543912559,1886351984,2037150309,118099246,1414748499,335564101,1867784224,543973748,1701147206,540091706,168636965,540091680,1847620457,1663071343,1701999221,2037150830,544106784,1869440365,221149554,538974986,-1791941344,186692096,841330688,540222752,221521184,795914,1253554,1060272,436866480,1867784224,543973748,1702521171,538976314,622862368,841293873,539691533,1734693664,1953391981,1699880992,1852795239,538976288,1411391520,1818326127,548536379,1420820488,224751737,538980106,757935405,539831597,757935392,539831597,-1308616160,-1342173139,139296,535986,436866480,622862368,538976305,841293856,622862368,874848307,891625504,538774029,540091680,540157216,538981157,540288288,538981669,540419360,168638245,538976289,538980645,622862368,538976306,622867237,622862388,538976309,908402720,1344211469,1936942450,2037276960,2036689696,544175136,1953394531,1702194793,773860896,1310404128,1886724207,544367984,1869440365,1629518194,1818845558,1701601889,540543501]}],[{"sector":1,"length":512,"data":[1734693664,1953391981,1699880992,1852795239,538976288,1411391520,1818326127,548536503,1320157192,73756001,153137664,2035593216,168650096,757080124,757935405,538979629,757935405,538979629,766640154,548405264,-1308622304,-1342174419,139296,535986,487198128,1986948931,1769238117,1818324591,1835355424,544830063,1635018052,221932649,1884624394,544367984,1869440333,1142978930,1767994469,168639084,1835355438,544830063,1701869908,548536387,1420820488,1818326127,540876832,1934958624,538993765,538976299,1701147206,472844813,271430144,539013120,757935405,539831597,757932064,757935405,538976301,757935405,221064493,824513034,841293856,622862368,538976307,168637477,1918979115,1953719655,1702389024,1635022179,543517794,1735357040,544039282,1702521203,538976288,540091680,168636965,1918979115,1953719655,1701996064,1886724197,544367984,1869440365,1646295410,1801678700,538976288,540091680,168636965,1852785421,1953391990,1634627433,1426456684,1919250544,2017791744,1684956532,673211493,693325144,2017791744,1684955504,673211493,693325125,1867779328,543973748,1869440365,285243762,1635020628,1853169772,544367972,1112350769,1917195264,1428186469,1919250544,1835355424,981037679,540543501,1734693408,544108393,1632378912,1936025458,1917198452,538994021,1411391520,1818326127,1701987872,538976357,1411391520,1818326127,2053722912,973737317,757932064]},{"sector":2,"length":512,"data":[757935405,20455456,929202,35659952,237875712,539013120,766640130,229638158,538975754,824516640,622862368,858071090,874848288,540353824,540419360,168638245,1835355409,544830063,1835890003,981037665,540477965,1886999584,1718558821,1835355424,544830063,538976288,1867784224,543973748,540876832,1428168736,543450483,723525664,538976288,1701147206,540674573,-1308594656,-1342173139,139296,667058,538976432,766640131,548405258,204832,667058,336203184,824516640,841293856,622862368,538976307,168637477,1936019977,1702261349,538771556,824516640,548536359,632291339,858071090,874848288,168637733,538976284,538980645,622862368,538976306,622867237,622862388,221652277,1867787018,543973748,1634760773,1684366446,1296377888,4139347,1056946,540091824,168636965,1685024012,543517813,1701667182,2036467200,7562612,1701987883,2017796197,1684955504,673211493,693325125,548536367,632291345,841293873,1158679053,1852142712,543450468,1397577768,721431081,1701147206,1886930208,1701080673,1160257636,707351373,548536365,632291344,841293873,708839949,1296909600,540424243,1965060969,1735289203,1397577760,1835363616,544830063,1931505524,1819635049,543519841,542330181,1869440365,1629518194,1701716083,1684366437,973737262,1917198368,1159751013,1830835021,1919905125,1634541689,1751326841,1701277281,544432416,1701147238,1397577760]},{"sector":3,"length":512,"data":[1835363616,544830063,1851877475,779314535,1093339661,1818845558,1701601889,1634759456,1763730787,1766334574,1293969511,1919905125,1916870777,622879077,841293873,1144982029,1819308905,544438625,543516788,1970236769,1864397934,1937055846,1629512805,1713398894,543516018,1869440365,1763735922,1870209134,1931506293,1702130553,168636013,1296108045,1528843589,1095516975,1179210579,545005657,1111835695,2082490197,1380331296,2082489669,1330458400,1162630468,1685024032,1852140661,1566928225,1345280800,1564821313,168626701,790634700,1396788291,1497778515,544370464,538985263,1935764547,1768319347,1881174885,1919381362,544435553,1830844770,1919905125,1937055865,778397537,1936280608,1948283764,1931502952,543521385,168650351,548536701,1890582547,1919381362,745762145,1869770784,1701079414,543236211,1835890035,544830049,1830839919,1919905125,1852383353,1702065440,1851858988,1768693860,225670259,-1308607990,-1342172384,1735549292,544502629,1869440365,1646295410,1801678700,1635148064,1650551913,221144428,538999562,1111835695,1864386389,1143939186,538976288,1936278560,2036427888,1953702003,1937077345,543584032,543976545,1969516397,544433516,1830841961,1919905125,1763716217,1919251566,543973742,1986622052,745763429,7473677,1253554,1684955568,1752461088,1763734117,1919903342,1769234797,221146735,539003146,1163019823,1919885381,541470496,538976288,1936278560,2036427888]},{"sector":4,"length":512,"data":[1852383347,1836216166,1869182049,1650532462,544503151,543516788,1970236769,1864397934,1919295590,1830839653,1919905125,1701585017,168653926,548536423,1773142035,1868701806,1663068276,1702260335,1869182062,543973742,543452769,1701867637,1701650546,2037542765,-787870418,1294934048,1280656463,1919885381,541929248,1142956064,1819308905,544438625,1701060705,1818845556,1814062181,1769239401,1864394606,543236198,1969516397,1931961708,1835363616,544830063,778400629,7539213,1253554,1768445104,1886330995,1852795252,1937075488,1700929652,1819239968,1702326124,2036473956,1701344288,1835101728,1718558821,1830838560,1819632751,168635493,548536375,1873805331,1869182064,1819042158,1702043769,1634886000,543450484,1836020326,541929248,1629518178,1819239200,221146735,538984458,1195462703,1919885381,542125856,538976288,1969311776,544433523,1702127201,1634017394,1931503715,1701147235,1819633262,543584032,1868983913,1952542066,778989417,118360589,149044877,259899777,369557451,1140861201,1275079168,1409297152,1392520192,1711287808,-1845481728,-1660932096,-1526714112,-1442827776,-1291832576,-1258277888,-788515584,-234867200,385890048,1090533889,1962950145,1996591105,1095502593,1380209747,1027954249,13306624,667058,537002160,538973696,824516640,538976288,540157216,538976288,168637221,540091695,1702132066,1986076787,1634494817,543517794,1953394531,1869965161,1696625525]},{"sector":5,"length":512,"data":[1852142712,543450468,1869440365,168655218,1937330958,544040308,1667331155,184578923,1176513837,543516018,134229293,1735357008,7168370,1986938124,1852797545,1953391981,1631847680,520118644,1646276901,1936028793,1635148064,1650551913,1478518124,1830835021,1919905125,604638585,543516756,1751607656,1835363616,544830063,1634038369,544434464,1767994977,1818386796,168636005,1701336104,1734961184,1701650536,2037542765,1701994784,1936269409,1953459744,1635148064,1650551913,221144428,1397566730,1397703725,544434464,1769170290,1953391972,544106784,543516788,1751607656,1835363616,544830063,1634038369,923405614,1143821133,1763726159,1701978227,1701079411,1763734638,1330782318,1937055821,543649385,543516788,1751607656,1835363616,544830063,1634038369,84544814,1701147206,118358016,409222797,29540737,369492427,83885825,2017792256,1684956532,1159750757,1919906418,238101792,725519623,549552922,369492683,83885825,1632636416,543519602,1869771333,824516722,1049429774,-1048372657,-1957311715,-1957275668,1166739582,93016074,-1962779253,1435173965,141921030,-1298508449,1560652033,176065367,1569260937,72190210,-1996073591,-1969289099,205883844,172329304,-443850914,-1957311651,-1957275668,1166739582,93016074,-1962779253,1435173965,141921030,563762527,1560652036,176065367,1569260937,72190210,-1996073591,-1969289099,205883844,172329304,-443850914,-1957311651,-1957275668]},{"sector":6,"length":512,"data":[1166739582,93016074,-1962779253,1435173965,141921030,-577088161,1560652034,176065367,-1945793456,1599604317,209619799,1569260937,72190210,-1996073591,-1969289099,205883844,172329304,-443850914,1296419677,1482184781,12376,1684809000,620767563,628649013,1684813868,627259173,627914797,620784941,628649013,627338291,1684813868,627259173,627914797,671116589,1264872485,891617321,740653164,627338296,757424951,757424952,891617379,858093676,740648044,627338296,757424951,757424952,-1308429213,-1342173952,1664625957,7154981,0,671096832,1264872485,2097193,1815620645,1664558436,1664625957,627911973,620782381,25389,1684809000,620767563,1684813868,6502181,1814374400,2706276,1815620645,1664558436,11665488,682622990,692810533,1931814912,671099211,692810533,1815291136,925640036,908420204,925640035,908420204,925640035,908420204,99,1265837312,1265837312,1265837312,825042176,925199670,1664558435,6502181,4944677,4944677,4944677,909192485,1664558445,627259173,620782391,620776307,620776307,620776307,1832268077,627259173,925197111,1931804771,1931804747,1931804747,757399627,627914289,925197111,1664558435,825042176,925199670,1664558435,6502181,1265837312,1265837312,1265837312,825042176,925199670,1664558435,6502181,1265837312,1265837312,1265837312,825042176,925199670,1664558435,6502181,1265837312]},{"sector":7,"length":512,"data":[1931814912,695412000,620765216,824533814,620782391,671107955,622883621,538978675,1664492800,1664561445,0,1265837312,1931814912,695412000,620765216,824537910,620782391,671107955,622883621,538978675,1664492800,1664561445,1265837312,1931814912,695412000,620765216,824533814,22504247,655538,825042352,740650294,1684811825,808528933,740648044,1684811825,825042176,740650294,1684811825,808528933,740648044,1684811825,825042176,740650294,1684811825,808528933,740648044,1684811825,825042176,740650294,1684811825,808528933,740648044,1684811825,825042176,740650294,1684811825,808528933,740648044,1684811825,757399552,627914289,1815097644,824976740,627338288,1815097644,620757092,1832268077,808528933,740648044,1684811825,808528933,25708,-1375731712,136360448,620802048,627324204,908419896,30828,1265837352,941948969,7551022,824976640,627338288,671114040,692810533,775431424,29496,808528933,941974636,99,0,1684809000,620767563,1933061688,740622336,1684811825,6502437,1684809000,620767563,1933061688,740622336,1684811825,6502437,1684809000,620767563,1933061688,740622336,1684811825,6502437,1265837352,941948969,7551022,824976640,941974576,99,0,623797285,6566448,623797285,6566448,627258661,25397,623797285,6566448,6501669,0,1931814912,671099211]},{"sector":8,"length":512,"data":[692810533,1931814912,620767563,627914797,1684813868,627259173,1684813868,627259173,1684813868,6502181,1664625957,1815620645,1664558436,1815620645,1664558436,1815620645,1664558436,1814374400,2706276,1684809000,671099211,1264872485,757399593,740650296,627338296,740647735,627338296,740647735,627338296,21783351,852146,1814374576,2706276,2020357413,1684813861,6502181,1663902976,0,1684809000,620767563,628649013,627338296,757424951,891617389,941979756,925197420,1831675235,6499621,2020357413,1684812581,1684813861,627259173,620784941,628649013,627338291,627338296,757424951,1663903085,1814374400,2706276,2020357413,1815686181,1664558436,757399552,99,1814374400,2706276,2020357413,1815620645,1664558436,6499621,2020357413,1684812581,1815620645,1664558436,6499621,1680146495,6563072,620782629,1680157796,6497536,623666213,1157628004,1482181965,1160796248,1482181965,3168344,1380141389,1179603791,1296909652,1482184785,-1308561360,-1342175232,15489,1180648251,1598377033,1330007625,11665424,347078682,-2122219264,459009,1376434,-1457466192,344837,721074,3879088,34996224,151853058,118230028,-15329784,34737426,-1375731457,-1375731672,296,0,66048,0,131584,0,230400,0,1107558912,2013311488,110592,262656,7602354,673288880,1819047278]},{"sector":9,"length":512,"data":[1848115241,694971509,539831040,-1308617693,-1342172416,32,1581276672,1581276736,4218432,0,1441792,598194,673720496,337960,1188018,84144,987314,689328,269488304,269488144,-2122219135,885121,1311154,269488304,-2112876528,-2105376126,-1308619646,-1342172158,269488144,-1308621536,-1342144256,65535,0,16297,918953,4980914,35871408,234926592,1132638208,1296972860,1044268883,911343616,221261872,1931488522,1801675124,1702260512,1869375090,658807,911343619,221458480,1763716362,1734702190,1679848037,1684633193,2036473957,168636448,1375734016,959459382,539822605,544501614,1970237029,1931503719,1701011824,1919903264,1986946336,1852797545,1953391981,-67106291,658688,1970405631,1769221486,1696621933,1919906418,131104,808466002,755633458,1869375008,1852404833,1869619303,544501353,544501614,1684107116,168649829,1375731968,825241654,539822605,1819047278,1768910880,1919251566,1936941344,1835951977,225734245,14155786,982962,-80,-1,23002,24510464,155977728,1112672243,-1064507253,234885125,303903,787971,244039822,-108331002,-34108593,-1202674445,-883949516,-661863540,-1898410424,1032128,-1342172999,1202648063,-1014237301,-1077899704,78708751,-789068149,-628299565,74698795,-768878452,-268181293,-947135858,-388771593,-802438516,-1064565645,-522989013,-1030817789]},{"sector":10,"length":512,"pattern":0,"data":[1322289836,1187548077,-31145334,91598908,-341118036,1974615046,-1968901267,1946265794,20102833,512433934,872153092,-930370094,-1031072797,-1064385789,-2080863315,292880383,-501415642,16417267,-2129234704,-351272766,1086360796,-276578162,486614544,-339702200,-1950118942,-1962932162,50334262,33948144,1060096,-1064380274,-100663109,-410265970,784698363,1085550591,-1191181637,-896794602,482007694,-1205744383,567102719,1801675088,1713398885,543517801,1663071081,1970434671,1209456,1552679078,1557421217,1567907041,1964990149,1973908835,110560913,970196637,2070051612,1508212204]},{"sector":11,"length":512,"data":[1361155561,-506410358,-847188686,786813443,24981026,1678674222,91576578,15153642,646459120,508559971,-1900008624,1898348760,525893380,520040092,-2144468707,50488126,777068149,40111755,-41882158,-1207536383,166432256,66945168,817365877,317413728,-1070916016,116840590,528483441,-2147060648,1145340108,-2134575409,-346490764,-1024065372,-167711999,15401410,15717098,646459120,508559971,-1900008624,1898348760,525893380,520040092,-2144468599,33710910,-990504587,1393653120,-2144413045,-2147344193,-1976695436,1526866087,-154188732,-126615100,-1070916016,116840590,528483441,-1274776488,1491463167,-58676245,-1274841855,1347669888,35502930,-1976641021,16547863,62132084,280237261,41169064,-346386252,-855526386,-990488044,1955640448,1527362562,-816069750,0,1342177280,1347244609,1347244609,1347244609,1347244609,1347244609,1347244609,1347244609,1347244609,1347244609,1347244609,1347244609,1347244609,1347244609,1347244609,1347244609,5067329,102629376,1347573335,47187,-1004093298,-2096811970,2138374399,110137488,-1273712560,1478610229,18685577,18810508,-1273515952,1478610229,25763465,25888396,-1090453314,1723400288,-66646527,-100162317,805750566,-1946090747,667080,87204646,-1160212741,-1336934141,-853167084,2126141473,397430785,567092660,109981272,1236533292,-970055219,654311686,1958354702,810543112,419874350,113639683,1543439202,1600019032]},{"sector":12,"length":512,"data":[415440647,404232216,0,0,16711680,0,255,0,0,0,-65536,4194448,0,0,0,0,0,0,0,0,0,0,0,0,-16777216,0,0,0,-1070923774,1906360462,129671683,1007140002,-1274579663,114177,842797291,45352821,-352320834,-1106988027,-1564278781,1342572475,-1912602440,-58042176,-796258524,653707518,-410385552,-661988557,12550950,1081344004,-2094602543,263868,-953809035,17041028,-385953536,1460076176,809419814,18463493,170319619,663234087,-2010723586,-402170096,1018822767,793241610,-402068294,334180161,-1124073281,1267420083,1024362754,142653958,120532200,1508378307,16548095,-2094644876,340030,-192926348,643237631,87047876,18463571,639705638,1599807880,652660999,67550339,638022913,67536071,-19857408,-1174401304,-421000644,150518318,120512744,-1004120125,1392848958,18463569,-1962833370,-1014931489,1605959803,-2010711552,-1269234609,-1948200960,-1985675280,-1593534204,-1325094652,-1056655100,-788215548,1204233732,-352261373,1204233782,-344718590,1204233774,-344653566,1204233766,-344718846,1204233758,-344653310,1204233750,-344719102,1204233742,-344653054,1204233734,-68485118,-919354533,-2094612082,340030,-1910091916,637874694,35397252,-338672780,35505025,4161574,113641589]},{"sector":13,"length":512,"data":[-349108293,-2144956376,141885759,129697478,-1877284046,37716006,113641589,-348977221,-2144956404,91554623,129697478,149731892,-349303576,150518278,-1020394264,0,11733604,41844798,1041527808,537034368,-1975644812,808190022,88090358,1044764674,738215562,-1291685072,1093072639,1171784197,4622910,-670945236,808210627,88155894,-1973888886,36711620,1392952280,365805748,-1977217422,646447975,-1977220253,183173735,-1896873800,646588096,-58654722,-2140244484,84108094,95683957,-2138019093,151216958,1048577908,1963197283,-352013307,1048612951,1963066211,-352144379,1048612939,1963000675,-671952,105220902,-2130735384,75388411,451610292,1968569216,1031874067,209006897,58556710,74790193,48957108,350945716,1665040528,208994307,149618868,-67338096,-21757323,53094024,12781403,0,129826827,268435575,186646784,1996488704,84934656,729092,7800742,16842753,-1493169376,16807687,536936704,128450571,65655,186646785,1996990720,1049088,729091,7800751,16842755,-1342174432,67139335,536936704,129040395,268763255,186646784,1996993280,16778752,729089,7798784,167776257,-1174402272,16807687,536936704,129695755,131191,186646785,1996995584,16777472,729089,7798784,33558529,2848,16807680,537133072,11,268501111,186647296,1996488704,1048832,729091,7800895,17113346]},{"sector":14,"length":512,"data":[2848,16807680,537067536,11,268501111,186648576,1997029632,52494592,729091,7798784,83890177,2848,16807680,537067536,11,268566647,186648064,1996488704,1048832,729094,7798784,33591297,2848,16807680,537002128,11,-1878982537,186647040,1996488704,9437440,729089,7800888,16781313,2848,16807680,537068688,11,-1878982537,186646784,1996995840,1048576,538976257,538976288,1694507040,536883511,808597809,538968112,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,537397256,1140858912,39168,65539,67120,2,131073,1584,0,131080,1584,1,65539,1584,255,65540,1584,255,65541,67131,255,65542,1584,255,65543,67142,255,65544,67153,255,65545,1584,255,65546,1584,255,65547,394844,255,65548,1584,255,65549,67230,49663,65551,132777,255,65552,67263]},{"sector":15,"length":512,"data":[255,65553,67274,255,65554,67285,255,65555,67120,255,65556,1584,255,65557,1584,255,65558,1584,255,65559,1584,255,65560,67296,255,65561,1584,255,65562,1584,255,65563,1584,255,65564,132843,255,65565,67329,255,65566,67340,255,65567,67351,255,65568,67362,255,65569,1584,255,65570,132909,255,65571,1584,255,65572,1584,255,65573,1584,255,65574,67395,255,65575,1584,255,65576,1584,255,65577,1584,255,65578,1584,255,65579,1584,255,65580,67461,255,65581,1584,255,65582,1584,255,65583,1584,255,65584,67406,255,65585,67417,255,65586,1584,255,65587,67428,255,65588,67439,255,65589,67450,255,65590,1584,255,65591,1584,255,65592,1584,255,65593,67472,255,65594,67483,255,65595]}]],[[{"sector":1,"length":512,"data":[1584,255,65596,1584,255,65597,1584,255,65598,1584,255,65599,1584,255,65600,1584,255,65601,1584,255,65602,1584,255,65603,1584,255,65604,1584,255,65605,1584,255,65606,1584,255,65607,1584,255,65608,1584,255,65609,1584,255,65836,1584,255,0,263454766,281870512,-2147281758,1685399803,51658368,-2145160192,33756222,1048583284,1946485524,339640341,242484739,51658368,-2146995193,285414462,113641333,-352320748,339640362,477364483,51658368,-2146077693,67310654,1048579700,1947337492,339640327,125113091,51644102,-1275008255,51683328,1743458509,1968241536,339640418,594804739,51658368,-2145618942,84087870,1048581492,1946551060,339640334,125044483,51658368,-972589807,33756166,1048586987,1946223380,339640348,359924483,51658368,-2146536444,302191678,1048577908,1964180244,335988231,15401731,346030260,-1022309117,197199558,306085888,57941251,-1275030295,-855592945,2080848912,188260631,1541996470,114670852,-1174243703,1994918160,19196198,-1900019528,1048651456,-1437270016,313796213,11997363,281925622,1962999680,188260631,669581238,114670852,-1174243703,1122502928,15788326]},{"sector":2,"length":512,"data":[-2145358360,2130772607,521018907,-1240778591,67430655,-1996040771,280625782,639625225,13429023,738346890,38242305,739395466,306677762,740444042,575113217,-2147436567,704844350,-1477901452,-1341148160,1007734016,-1592299001,-4846804,-1123828248,1988691669,152091138,-383395608,12058758,650153664,16001,561359445,280171188,-8384307,-1592363776,-4846804,-1123840536,1988691669,152091138,-349853464,534046807,12079134,-2133291280,-33554882,-970062219,822853638,1200234328,104476162,444337088,-1591800290,-4846804,-1123855896,1988691669,152091138,522546408,1200233195,-2013199358,1200226887,-2013133806,1200230983,-2013199326,116073031,-1056520658,-930348789,1048631438,1963002817,9300227,11538356,346165453,-855591933,322863120,1786063619,51527296,-1592756963,-4846840,-1123880472,1988691614,-1592857854,-4846852,-1123884568,1988691614,336494594,146342147,339640320,57999619,-1275067207,51683328,-1169092403,-488109868,-1158094300,-622327584,-1194292700,567108899,81241,3999092,1020818688,-972720895,17547526,113640939,-2147415103,17547582,283706228,50174,0,0,0,543516756,1162104653,1836016416,1684955501,757935392,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,-1272107731,47934,2131032963,1126288645,12842731]},{"sector":3,"length":512,"data":[0,0,-16777216,16777215,0,-16777216,16777215,0,-16777216,-1,16777215,0,-16777216,16777215,0,168624128,0,603982336,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,1142969165,1444959055,1769173605,908095087,692267040,2037411651,1751607666,959520884,825045304,540293433,1919117645,1718580079,1866670196,1277194354,1852138345,543450483,1702125901,1818323314,1344285984,1701867378,544830578,1293969007,1869767529,1952870259,1819033888,1734963744,544437352,1702061426,1684371058,1381191712,-919382266,-13385330,-1307431240,-1943024384,-1995503354,-1206974658,45224494,109850573,1049169681,783814415,-855330286,554077231,524192015,305051663,801965746,251987596,251870857,-1944967448,-1995505402,-1945174210,-1995498234,-401663170,109842996,1049169685,783814419,-855068142,688294959,658409743,1040631567,-972419825,604997382,256050887,113704960,659269,-1995614232,-401659074,1049170358,434638639,3074048,1358971368,1912623336,123689224,-346530982,214205188,1448133625,1660991518,119415245,-1995935201,-1945159882,1578055942,12108632,47940,567136819,-2147359104,28836302,-1021194940,-1153171272,-768409599,-830463539,1140963329,-1262280243,1025625392,58004998,1025043448]},{"sector":4,"length":512,"data":[91422722,-335544389,178947,-1191181896,11665408,-1007026250,1431766608,1912608232,-98290,100955384,235072287,1576504095,-1017641121,-164408490,-25114317,-1962379777,-1961940036,-165286945,141820614,252689604,418104204,1912607549,2571533,-1128003465,-1014231269,-1128003861,-1014231297,1979710339,-98282,-336002187,256090892,-1107296328,-164429823,-2096305160,57934075,-2097130264,1928856774,1976109830,-1667241214,1963064960,1364546089,-1202694394,801965312,1968766780,-1193768183,801965314,1945698795,1493655301,-998045973,845830,32201309,-68677937,-1017226241,-4632489,-222285057,1238497198,-2084348072,494207483,254230147,1024881919,192282623,256090448,254222079,-16454824,-351328482,-2134297830,108331006,55413286,942541291,772044085,-2096935542,1945699527,-921962451,-25159308,637891839,65733947,1963277102,1225386754,-947714700,-102503676,-25162638,41285887,52823822,108135037,-1977160398,113657613,-1023406275,1431393104,-1957558697,991857129,1077315599,-20649969,594856203,91614475,-352309272,28960771,-396750990,1594294542,57987594,-352021016,113541892,117763065,1928944223,1532583176,-352140157,147096324,1397801977,991857490,-294129,753403253,-402396416,259194999,12278196,841075968,113542116,-2096043015,192217083,125092155,-2097106712,1928922820,1482381827,520494787,1963063683,637711387,567088522,-389903841,102629553,638022431]},{"sector":5,"length":512,"data":[-855550582,267122721,-922025292,-1977218700,1193397525,-118262455,1347928863,-91532538,-645200098,-218359120,721647022,-880063527,1599604571,197145539,508523721,1085546246,-108800117,-852986623,642785057,1525155210,102651904,-133795041,-851296076,-2144953311,41228861,32227723,-68677937,1427827711,-5838767,-849745525,-352160991,1959279371,-118998265,-1047854475,-1195172003,79364135,-1023298304,1962933888,-2134444527,119409781,255737485,-402652487,113508096,926860375,1962871567,1032005143,276101120,1912945190,1161438727,-117344511,-370456761,-1883044001,856637702,-141388837,-1827715786,256194295,1980365443,935493637,-1031797781,188830256,184841664,-2093386533,225772537,738884736,922682741,-348057778,133792546,2088766837,91565066,256784127,-2096043199,192220153,738884736,922682741,-1824452786,-1477717453,-1070345677,255932159,198325187,-1272875831,637579301,175449400,23410726,-1002830732,-1977217419,-11278331,1195835763,-478852798,197822294,1295217901,256065155,-1976863488,805570116,21314086,518718069,74788924,74764811,-404016125,255868544,1107850751,1330202946,-1174148273,727187455,-32839431,57891167,1368424427,2088815243,225705990,108316939,1195854153,-346160661,1976109840,166419971,1979709827,197735170,1431729407,860948055,1128170441,762642447,252134646,2093222005,21817346,1156979435,208932103,235357430,1156974196,141888519,-402490172]},{"sector":6,"length":512,"data":[15401306,-352300312,2156547,123275122,-346137249,180650756,1128170489,91553807,350815090,1124517887,-1023410161,1134678579,1158072079,-402650609,-2007433579,1125074823,1967192963,13690883,-294270466,-1995829832,1125074823,12642371,-2133118013,1962935932,1200080657,1127030799,1200080451,-398254065,861733030,-1999490085,-1978712818,-1053161148,-1054204298,1157034122,343179271,-2012593014,1125074823,1967192963,8185859,-327823618,556160,1278741876,705196808,-779483060,185093258,-165382967,1963919172,121959948,637957136,-347667062,-2021107711,-2092757177,58015995,-33537560,-153324087,1971324740,1962281496,172263956,256345992,1090224963,602407797,1976499712,121960172,-167217905,1947207492,168618754,-1895271214,-32554746,-386370102,-1017839614,509019729,868977415,1195281883,-58529777,123667826,-2096829607,-1007089980,121960029,638743856,1095763338,1945987304,1166681606,-336048127,92939789,74760202,-169131705,-1017775829,869413725,1158072256,855642127,121960155,639923488,1156973962,225774855,57966760,-947968957,168772870,121959936,-955878130,168772870,-162206976,1963984708,93005350,218580214,-990507147,1124365440,-947919744,168772870,121959936,-955878130,168772870,640215808,-1960442485,1156973141,259329287,1954596598,-427801852,1158072191,-167769585,1963853636,1158072070,-167769585,1950353220,-1269673943,-1916784072,-854636778,-972721375,739200518]},{"sector":7,"length":512,"data":[-1962261366,-967288072,-399766972,-947127103,-351648632,-1226272764,1960512508,-1294847227,-1017818579,-2145496495,142000378,254067338,48958644,520544906,567138187,184188959,-401443592,192150629,-494221174,-511041075,-1274876936,1510240768,-2096829607,-1007090492,655755007,10223617,11534338,12517379,15007748,17104901,18415622,19333127,20512776,21757961,23527434,25362443,26804236,27262989,28835855,30408720,31588369,34078738,36175891,37224468,39125013,41746454,44892183,47382552,49283097,52101146,53870619,56426524,58851357,60358956,62128429,65995054,71106863,73793840,76284209,81264946,84082995,86704436,89456949,95682870,1668172055,1701999215,1142977635,1981829967,1769173605,168652399,1986939154,1684630625,1853187616,1869182051,688524654,1967983117,1931506803,1768121712,1126201702,741428559,1297040160,1126181938,540233039,1126199919,221531471,168633098,1769170258,1953391972,1919905824,1852795252,543584032,1162104653,1634692128,224683364,168630026,1701604425,543973735,1769366884,1847616867,224750945,168628490,1852404304,544367988,1869771365,352980338,1347160589,976299348,1952805664,1919903264,221263904,168629770,626282572,1931491889,1713402981,824210031,168636979,1342835998,1953393010,1814065765,1936027241,1919250464,1668180256,1702043752,520752500,1850280461,1768710518,1633820772,1914725493]},{"sector":8,"length":512,"data":[543519841,1667592307,1701406313,420089188,1329793549,976299341,741483808,623653669,891628596,221652268,825231882,892613426,959985462,1141509403,1870209135,1702043765,1752440933,824516709,1495801919,539577903,1414548507,540684581,1869768050,1684370549,544175136,625823555,168639026,1414548501,540684581,544501614,1869768050,1684370549,220793357,540091658,1920230770,1852776569,1918988320,1701604449,1919950956,1702129257,1769218162,1865246061,168653941,537529635,538976288,1634620704,543517794,1931505524,1952868712,1919120160,544105829,168636709,1986939155,1684630625,1918988320,1952804193,168653413,1225395488,1818326638,1847616617,1700949365,1718558834,1918988320,1952804193,225669733,168635146,542393678,976368688,1634620704,543517794,1679847284,1701978223,1936029041,543450484,1835888483,224685665,168637194,1768320585,1702127982,1952805408,1847622002,1931506799,1869639797,1684370546,544108320,2004116846,543912559,1852404336,225600884,168634634,1818845510,543519349,1629515636,1936024419,1868767347,1881171300,543516513,1953394534,1818846752,537529701,1631980045,1920298089,1869881445,1667457312,544437093,1769366884,540697955,168636709,1141509422,1667855973,1919885413,1685021472,1634738277,1830839655,1769173865,1713399662,544042866,1953394534,1818846752,503975269,1866861069,1713402990,543517801,1953394531,1937010277,1986947360,1684630625,220858893]},{"sector":9,"length":512,"data":[1701990410,1970235766,544828531,1885696624,1684370017,1685021472,1634738277,1914725735,1634496613,224683363,168634378,1769235265,1663067510,543515759,1701273968,1919903264,1986356256,543515497,1763717413,841293939,219810317,1986348042,543515497,1847603493,1881175151,1634755954,224683378,1866669578,1734960750,1936028277,1937339168,544040308,1769366884,779314531,168626701,1769099326,1919251566,1919905824,538983028,538976288,1162104653,1414548512,1564105582,1329814304,1664963404,1281040477,1397050953,542993469,1413829211,1916623186,1359613277,1769104723,1881173089,980709999,538976288,1293951008,541410383,1833783107,542980699,1430340187,1566719300,1095785248,1498696018,542994493,1413563483,1566850369,1414748960,1933398095,1381703773,1498567749,224227901,1698966538,1701013878,1635013408,980645236,538976288,1146047776,1683693637,1667855973,1528847717,1096045359,1565742420,1378421261,1919509605,544498533,1852404336,1735289204,1330454586,1277183300,1533957200,1128095034,1533889871,168647994,1701990479,1701994864,1685021472,1634738277,540697959,1162104653,1986356256,543515497,1344294979,1095779666,675104082,2038004008,774778459,1528834397,1986622052,1532836453,1752457584,1818846813,1835101797,168634725,1818579758,544498533,1701080931,1734438944,538983013,1162104653,1986356256,543515497,1394626627,1128614981,2037988692,722079097,1919313234,543716197,1701080931]},{"sector":10,"length":512,"data":[1734438944,1293957733,541410383,1769366884,1126196579,1163010128,1397051974,755633480,1701080899,1734438944,1953701989,1937077345,1293951034,541410383,1769366884,1126196579,794501200,1413567571,224219989,1766089226,1634496627,1869422713,540697956,538976288,1146047776,1683693637,1819308905,1630370145,1953522020,1532850789,224226860,538976266,538976288,538976288,538976288,538976288,1162104653,1313817376,542980699,1280263003,1566784851,1229740832,1028867406,168648046,1886999601,1952542053,1914725225,979727457,538976288,1162104653,1313817376,542980699,1413567067,544357701,1095517508,1566850393,118360589,392183437,109625729,369557443,-1342169556,-1124065536,-905961472,-285204224,184558080,503325441,889201665,1711285505,-2063587839,-1711266047,-1358944255,-536860415,-16766463,587213569,570436610,939535618,1191194114,1241526018,1308635138,1426075906,1577071106,-2013252862,-1912589310,-1795148542,-1040173566,-620742910,335558658,654326019,771766787,1224751875,1375747075,1509965059,1509965315,1610628867,1644183555,1694515459,1795179011,1895842563,1962951683,2046838019,2113947139,-2097133821,-1660925949,-1560262397,824512515,1685021472,1634738277,980641127,537922061,1685021472,1634738277,622880103,671747377,1330448909,622871876,1868767281,1881171300,543516513,1668183398,1852795252,1836016416,1952803952,168649829,1124732191,1701999221,1663071342,543515759,1701273968]},{"sector":11,"length":512,"data":[1952805664,1735289204,168639091,538976278,757084453,540157216,1701080931,1734438944,436866405,1868767264,1881171300,543516513,544501614,1885696624,1684370017,221514253,1685013258,1634738277,1864394087,1634887024,1852795252,1953459744,1886745376,1953656688,1864393829,1752440942,1679848297,1667855973,571084133,1867385357,1685021472,1634738277,1746953575,1646293857,544105829,1701602675,1684370531,1142426125,1667855973,1919230053,544370546,1769108836,622880622,403311921,1701080899,1734438944,1869488229,1919950964,1918988389,168649829,1124732212,1701999221,1797289070,1868724581,543453793,1936027492,1953459744,1886745376,1953656688,1768453152,1868767347,1881171300,224749409,168632842,1869771333,1969496178,1735289202,1634038304,1718558820,1852794400,1768300660,168650092,1426722087,1818386798,1869881445,1919250464,1836216166,1717924384,1752393074,1701867296,1769234802,168652399,420089090,1951599117,1937077345,1919903264,1986356256,543515497,221917477,757928458,757935405,757935405,757935405,757935405,757935366,118099245,757935405,168430893,1701734732,824524147,1124862477,1836412015,624784238,755633457,1632766477,1629513076,1679844462,2036427877,1937075488,1700929652,1701868320,1768319331,1948279909,1952802671,225600872,1632766218,624780660,168430897,1634493764,824524153,221252109,1853179402,1869182051,1869488238,1970479220,1919905904,543450484,1948282479]},{"sector":12,"length":512,"pattern":1448498774,"data":[544434536,1886220131,1919251573,622865696,470420785,1699875341,1919513969,1713398885,544501359,544501614,1684107116,168649829,1091177788,776557390,542333267,1953723757,543515168,1953721961,1701604449,1869881444,1919250464,1836216166,1902473760,1953719669,1713398885,1952673397,225341289,168629770,1685414210,1952543264,1701978213,1919513969,168649829,1952797194,624785778,503975217,1634885968,1702126957,1868963954,1952542066,1953459744,1919902496,1952671090,1913391629,1952999273,1953722221,184564000,1952867692,1953722221,50343968,151023438,1768320585,1702127982,1701577984,100693094,1751607666,1208549492,2003071585,6648417,1701990409,1701994864,1929838692,1970561396,1879572595,1634755954,117466482,1701602675,134247523,1919313266,6845285,1769109277,1864394100,1868963942,1713402990,543517801,1679847284,1667855973,1929969765,1667591269,6579572,1937339143,7169396,1049429774,-1048502803,29557857,-16706042,285213951,1702131781,1684366446,1920091424,622883439,-1928917455,-2094902466,46342337,-16706042,234882303,1936875856,1917132901,544370546,118370597,578240141,-1021460093,1928159976,-487921605,-401568280,1048586883,1979646763,312076291,1048595636,1962935083,-352210940,1648263198,276168451,-1158928152,78708832,-1031669037,833880087,65732784,-839941656,49953,168297995,117703180,1448498694]},{"sector":13,"length":512,"data":[1448498774,1448498774,1448498774,1448498774,1448498774,1448498774,1448498774,1448498774,1448498774,1448498774,117768534,-2147365144,1962812797,-1974380764,-524343995,129629218,1504637440,1460827231,642091601,-64823105,-234879047,1969183150,-1240419825,-418986240,-402258142,418054511,-1124073281,1267420083,2081327362,179616263,-972045080,207622,24766659,-31097472,1364665460,-1088076406,-1174658336,-1359871993,309616473,1166692695,585154342,506364,1599713010,548540277,113705654,101130983,-352249112,48920,-1957973059,243860043,-1262876804,258992138,53151430,619234048,628981761,1462007038,625314385,-64804417,-234880071,1952405934,-1974380782,700393029,62520355,1504637440,-1307609761,-955795920,203613958,12969995,12523755,1270070528,-1996338293,-1173914610,451414708,721864207,-389873661,2105540815,611647013,1166692695,585154341,506364,1599713010,1364660852,-1088010870,-1174658336,-1359871993,259350361,28709042,585565895,1894254087,-1088886016,-1279459328,38505291,125570697,-401951558,113643205,-1023409365,-2147452184,1962812797,-1974380764,-524343995,129629218,1504637440,1460827231,642091601,-64823105,-234879047,1969183150,-1239371249,-418986237,-402258142,418054171,-1124073281,1267420083,2081327362,179616263,-972132120,207622,-1900006461,278996672,181347332,279127746,-1979665404,-1273967162,47618,281870519,243990964,281879271,-1070397757]},{"sector":14,"length":512,"data":[118365108,-1155339841,281870336,410327868,-2138009456,1946166909,8775939,19744246,1170636660,2045509157,-1900019528,1048651456,-1437270016,313800821,281874611,1947270016,16744493,1170609269,12059685,5499056,1299570746,19285446,1170622443,12059941,4188344,964026426,36062662,1048589291,1979253546,-851201008,1006707733,-972655360,-335665851,-1342130148,973084904,-972786208,-1207884475,183023616,1977629184,642106884,516097794,780851342,1437597696,1392509090,2525787,3049472,12787456,0,136,0,65280,0,57778176,-1576556894,824969127,-1272592990,633512704,-1979711297,-2145009634,225792251,633937544,634259142,-351095809,-2063892464,512232309,113649097,-1275124273,-1996783601,-1652030092,-1287191805,306085888,343211779,51527296,-1291553482,-2146833614,939725374,817037941,1946221440,59098640,-2008605949,1191379869,634128070,-584652545,633611912,1392509115,-987854329,652464165,67682179,-972720896,202758,633749129,51777279,-10550600,-1962732026,-1107093986,119407386,-855428929,-385649887,-75497223,-352160765,48863,52083840,-2146798592,537074364,-347733132,83788783,-1101641089,-1132462080,1967915802,-1132444146,1968177946,-1132444154,1582564122,-1499461259,486946823,1445491715,-2147483458,1342380732,-2142892427,1375935164,-2142894475,1308826300,-2146863778,17278526,65733237,-956335639,-14301178,633749123]},{"sector":15,"length":512,"data":[-385649408,448659744,839037955,-1979141696,-802830058,-1963273526,-920745222,302942757,306085891,74811395,99352501,-377230030,-2094346960,2475582,-370605195,1577236480,-1962736706,-1960458738,-855435746,-1173851359,-353892044,-2144736501,-14299586,-1732638603,198961160,1048579563,1979655631,145013254,-2146710296,-14300098,-1329985931,197126152,-2147441687,-16574402,-1578564748,-968981760,57999397,-1107259415,1392902144,-1912586056,-1038185536,2026079013,-972584410,2478086,125174588,640012450,1526925254,-972095737,-1979665371,-402455676,1048576283,1962943949,1048790536,1962943942,-801210140,376700965,1085821702,-1950315008,-2094677474,-794789693,126363173,1048577883,1962878413,-834764759,141950757,-402089798,233507637,634338944,-1173981697,652740772,-868319221,108396325,-402083654,-571995367,2091008,12524779,1270070528,-1996334197,-972669666,-1174404025,-85456768,721864202,-389873661,2088042623,-1148153712,-164429280,-2097151809,243204863,3768358,-830274700,1206833416,-422449685,-100564037,71812646,2107965189,-1792504536,-1524064984,-1255625432,-987185880,1204233768,-352261373,1204233782,-344718590,1204233774,-344653566,1204233766,-344718846,1204233758,-344653310,1204233750,-344719102,1204233742,-344653054,1204233734,-68485118,-1070903101,-1004093298,-2096811970,74711295,65781819,1476460349,-1038709821,-2145923803,-58676764,-2146274304,-14299842,-1933964428,171960328]}],[{"sector":1,"length":512,"data":[634193606,1460061183,861033296,-1966895397,-2146981858,-872544285,708329091,-385649408,1048576150,1979655624,155236876,-385216280,-471269140,943622912,-1574008022,24870963,-1341819620,-1876563159,419527552,2071987828,91560705,350978224,24871056,-1341819619,-1878398064,-2080277632,11534965,1962949712,185901328,-1612120138,113950183,-352160119,186687758,-1880555594,113950183,1476556425,809403174,326434821,2087977020,651741160,87164558,545753126,644737794,87164558,545753126,-1872631038,809403174,1249116165,839290406,-1002536955,376723525,545768998,346095618,-385894901,-893524162,41322758,-2144979221,139455,346099829,-385894901,-893524186,41322758,547430123,-385894901,-893524202,41322758,346099435,-385894901,-893524218,41322758,-402062150,1532627233,-1022927016,0,0,0,8,0,100663296,861032535,-1967092032,-2146981874,-906098719,-55123504,1048823506,1946167864,943623014,24870954,-1341491943,-1291401726,787181575,24871056,-1341491940,-1291401727,518743303,24871056,-1341491941,-1291401726,250307079,24871056,-1341688547,-1291401725,-2094632441,340030,-397343371,643422144,87164558,2098629158,583062017,651168470,24974984,646996459,87047811,643003392,87164558,2098629158,-1002536959,158619717,-2010720734,-352223978,584513086,-2132094250,141885690,129173190,-1876104403,1963063936,-1291401720,535520519]},{"sector":2,"length":512,"data":[49971344,113641589,-345897037,-92237806,-972262141,1913107206,113640939,1512900531,-1022927016,-1957973059,-2144718786,1968505211,-1325354995,1762051840,-380979450,2071986326,225793793,28385456,107546311,-2081862977,24870912,-1341295272,-956124864,-1022990074,-1871582390,1493269376,1622150517,113705905,1254557289,-2138022165,1968832891,-1316966387,1762051844,-347419898,2072023115,225794817,95527088,107546311,954944208,24871056,-1341295268,-955862592,-721000186,-1876563126,1560378240,-525333131,113706929,1255802473,-2138041621,1969095035,-1869574133,113707185,1256130153,708066955,-2080277632,113642101,-1217525841,-1875121408,-2097054848,113642613,208603055,-352209144,2072023081,175473921,128911046,-352012429,2072023065,158696961,128911046,-352077971,-1358510583,403465479,1049297591,2071996978,175453441,128976582,-352275147,2072023096,175453697,128976582,-352209610,2072023080,209008641,128976582,-1258091464,-1877546237,922844032,34342517,166396597,45416972,708445894,910068735,-2147437782,1966080379,-1324956135,67908103,1048576435,1966409648,-1979267235,-347441402,2072023125,880094977,109708999,67914359,1048576435,1979656762,-1341733369,11875591,128990848,-2144371658,940027966,113715327,129042058,129042118,-1877218510,708198019,-1961659136,-2144718786,1968505211,-972813303,839364870,1048576435,1979646763,-1965935814,-2146981866,-889321502,1170357888,840660479]},{"sector":3,"length":512,"data":[-855329600,83933204,349044659,242598910,-401951558,267060777,-466483989,451417293,147372797,-1023010584,604481696,-792134137,-1947979040,515912432,-1132210034,520094720,12524149,1270070528,-1996338293,-1173996274,-353892224,721864197,317390851,129042118,-1341733327,113653511,-399702093,12844470,47110,512481422,-75431818,980807680,-930328546,-396830578,1344263388,772092577,1476603555,84226209,-1557266144,-125107412,53387566,915128462,1049165940,109838452,-611450762,-67100487,-1202674189,-661782528,807322968,549683461,12781313,201340040,-256,-1,-1,-1,-1,-1,-16773889,-1,-1,-1,-1,-1,16777215,0,0,1275068416,512,0,0,0,0,0,0,1792,0,268435456,0,1124073472,1342197327,1275088466,3232848,844386380,1414548480,1329791027,1124086093,3296591,860704579,1297040128,2752564,776154687,776744519,777399889,778055259,778710629,84094572,17106181,-16711423,-852295496,1041664033,-1207913938,567096065,-1962658328,-399273186,-745865142,-851639624,-1557433823,-661967349,-851181384,152471841,-150244818,1946190018,5826565,-390461717,65136649,772480651,567099060,-1818161941,115516211,-402040646,378143691,28847678,-1021194957,-1107293511,-2101399956,1359420974,1284200278]},{"sector":4,"length":512,"data":[-1962136830,-202142916,1499357094,92931189,-964490517,29852418,11591650,-1020391262,1026791841,91553925,-352314648,8797463,-1360525963,1024322305,91553924,-352188184,40101891,-1793160253,17299251,-1939376896,775201736,1561335437,775034505,-1274019653,-1323184822,736809732,-17702,-1031547861,736809808,-1992851750,-1959905762,-1204578538,567098624,228794482,3729454,65538930,7858178,-352258584,3467267,772611723,567099060,1287259883,50718729,1555699179,50194440,199757291,-402296064,65732626,-1023358488,772738699,865408651,-1023216408,1023600616,326434845,-1240766303,-516364033,-1996012611,12190326,1025305354,91553811,-351699782,1457426,20776308,-1174047488,65735144,-401991494,-1581055321,78720566,-930357037,772611723,840353054,-851463122,1601314593,1026439331,1467219968,-1962753560,-1959916770,506345486,775034565,-851180616,-392421599,1939669662,40822840,1962955581,772251910,1023415045,91553819,-351705926,1916187,-1935600779,-385894901,1136517290,41322759,-351665990,158382595,-352177432,1938352906,170179078,-1023269144,772738699,297422257,36431918,1755387507,-385894901,1136517238,41322759,-401997638,854262275,53165696,-2144635393,3001406,-2136928139,-385894901,582869074,41322759,1755385579,-385894901,582869058,41322759,-402016070,-389873059,512426515,1200305045,773038854,772738699,297421489,29878318,-1175966349]},{"sector":5,"length":512,"data":[1719553,213517685,1025239818,91553819,-351659846,192192785,-68616266,121880031,-1174243703,-1998059008,-2145654015,-16569538,1956713589,-385894901,582868958,41322759,-402016070,-960298503,3001350,1929278952,4253704,-335596056,22997050,1962941757,192979219,-1343684682,121880031,-1174243703,485165568,1962942269,170965509,373101291,1023767552,91553793,-351672134,169392643,-1023336728,772347531,841009795,186551286,1140963374,-389865011,243990863,1789996559,-399633990,91422989,-352283160,773038357,-1593294941,-308071533,159955462,-402558744,-1950154751,-1322381554,768457323,1929438440,7137285,-809611541,-2096329939,367198918,1151424081,-385894901,213770014,41322759,-1947707042,-2096329984,367198918,1352750673,-385894901,213769986,41322759,1877498206,977175296,208994350,-1556900959,-1799747837,17557513,53165696,-1592494593,-4846756,-1109469720,1988691746,163101186,-1023348504,1023436776,440205338,-1173261056,1357384180,721864192,1793654531,-1876628481,1946162749,81157,-390461323,3532809,1554059755,-385894901,1136516754,41322759,-1022754630,-402022214,-1375993687,91619132,-351675206,973537034,138519342,-402019142,-404619119,721864387,-2031615997,512475904,1504980540,-1950146099,-1204942050,567100428,121539011,-821841874,891598854,512303565,109850115,-1022939643,51823902,623163438,-1021369907,-1204630086,567092516,129507011,-17563]},{"sector":6,"length":512,"data":[-1174405190,767492101,639749422,-2097056315,309592124,19795083,-2094132978,297730758,80184110,-1021336333,0,0,-1107287367,1552680496,197559044,1405352160,1465274961,93059723,-1962779253,1300956277,141920774,-1962322550,-1570179,1516134366,12802905,0,0,0,505949728,-1976683664,-30183394,-1341934385,-1021915899,0,0,0,0,0,0,131070,8912896,536871048,234881024,16777216,-2013261824,-2013231104,-1275033600,-855592934,1979661359,-1878604283,378273587,378095034,113456019,-1912586056,230699968,589692976,889196550,225706032,1089830,201314085,279127746,-1262287104,-1174228931,567102241,213440651,-1174162108,567096233,-851528548,-1312580319,-2103169,867122816,-2095614719,1345566526,113707125,1253115739,113708779,1252525915,113706731,1266354011,-401963846,-1312555267,-5248897,867122816,-1592494847,-1465764935,1426507571,-956264185,-1475915770,-955847885,2064076806,175684171,-1006710552,-2098700367,-1155173377,1504968704,490545613,-1173785344,-1226306892,-1878201346,1962942269,180402694,-956389144,207622,48835,12502670,117342976,-2094657153,262332,117310580,-964480101,-1008014590,-1912602434,48838,2131033731,-1132255729,2114061320,-2084438526,-320142650,856052675,650350299,87047811,639988736,87164558,1169964672,-1978763876,640917262,-771654240,-352115480]},{"sector":7,"length":512,"data":[-1625388531,-2020989389,48955936,37486768,-2143550348,113707381,1256523666,1016080619,1006924801,-955681495,671584774,-1877480629,74711868,141922364,127010503,116083603,127010503,1527204731,-1794717757,-1085958605,512294912,-617401438,506108595,-472824376,895789055,902182278,904148437,906835469,907818509,937375453,943273880,965753197,994196010,113720275,1260455815,126682823,1220149252,-39327734,-401976134,1622867361,-40114166,-2130832152,-13397954,1659373173,-24123138,865666759,113704960,1260467091,-369571352,113706534,8729497,-386008088,401209530,-1727609082,-402619341,-1410794004,101247480,865666759,-571998074,-1710831619,-956300987,71669766,-1575056640,-1254192333,37849925,-398091101,-538314622,-1727609083,-402653133,1944649140,97577464,865797830,-25565184,1169833601,393562893,865812096,-1290765311,-2029598783,-968159993,3383046,-2121240341,306559550,-2145946293,36936510,-1028452228,126289607,113658642,-352177249,1048678481,1259816378,1048582005,2080584603,-943475952,386369286,-1626945973,854262835,-1170308720,1967856709,-1690402794,259327027,113755315,1260128135,866059974,-1961628922,-1991919090,-1173996274,-1830287232,721864444,1048576003,1979646763,-1928935647,-1174403833,2062027336,173325052,-1157860120,1860700780,-33167108,-401939270,266992741,-1575056635,-1002536909,1886738501,-2147481409,58034233,-2130665495,1193019001,1099631733,107586306]},{"sector":8,"length":512,"data":[707804809,2038516715,1967598342,40995600,108279433,-1994388352,-349555650,108626228,259344193,-1979553397,-1331560378,842959111,-2128680150,1196426873,1099631733,109748994,708198025,2038500331,1967611654,943622404,147292970,988517867,707790535,280952840,24739840,-1996196609,-1087753154,2038431768,74776321,707935881,-2147475265,1962869113,910067972,2670378,-16680576,1049166964,-1813501384,72673781,866262667,-2147481409,1968570745,-1073297912,216761381,24739984,-972720881,1344651270,-2146908285,1962869113,40995592,312607882,147292931,-16680576,1049166964,1021848120,-302651188,-1962668567,-1087135202,964689928,-2126154616,1203832441,1904937589,-1576760830,803930898,-788104831,-2130217913,1205470841,2038436981,125130241,633341638,-972690556,1344651270,2038500843,1967611654,943622406,-2097091798,-1226110777,-389291288,-1276514917,-75503613,865091200,-1324583425,-1360505985,113662971,-1962855505,1463001630,-16680576,-1192688779,24739840,-955091701,674477830,-1324955904,-402649037,-1595282758,24739840,-955091700,1345566470,-1324955904,-402649037,-1997935881,24739840,-955091699,674477830,-1324955904,-402649037,1911286665,24739984,-955091698,1345566470,-1324955904,-402649037,1508633542,24739984,-955157231,1345566470,-1324955904,-402653133,1105980164,865091200,-2128448001,1252524665,113707893,2634679,-352317254,-1224292599,-1174384589,-397279200,-346358922,24739861]},{"sector":9,"length":512,"data":[-1291356912,1096232,1353909739,-402644806,-1092037968,1048600570,1979646763,-1575056563,147292979,-16680576,2038448244,108272897,704739712,1233786485,302942209,147292931,-2013181558,-402451698,518771538,865091200,-1962117633,378077777,333984697,-1173623813,-622327092,721864441,2145976323,-1966525694,-1962708722,28591857,-242555694,-1607350656,914884520,914884538,250087356,39643594,865666759,-1163853824,126329669,126682823,-1818034171,-1170308813,1967862085,-1626946028,28508211,129631942,-1140406735,921383175,-1170308720,1967863365,-1626946028,45285683,129631942,-1140406734,451621383,-1170308720,1967864645,-1626946031,78840371,129631942,-1140406733,-1173998841,1122503240,173325049,-1158071064,921176684,-892409607,-1410807501,-1048573958,-1173472720,-401835001,-457508165,-115611638,-369859096,-1897397822,-1874951943,175505203,-1092059215,-1358510343,512426291,-947702878,-2009497592,-1997995147,108626176,242567105,-1996336757,-969688810,-13393658,2038525419,1950863622,108626183,812992474,865091200,-972261889,-13393658,-1996336757,-2144094442,1963983225,-1861827062,280635443,-972494080,1345556742,-402644806,803993909,-1308198527,-1978829497,-1482554815,-1610168781,468451123,-1576633983,-2130217913,1201473145,1099566453,866034178,866125510,-2097091585,1894320327,-1589739265,1131806515,865091200,-1322355201,-116397985,12272499,-849759232,1916193,-1262876299,-129767414,1032850667]},{"sector":10,"length":512,"data":[108331039,-401948486,113702965,-352320725,181189148,-956815128,207622,-2138042389,3379518,512362356,-1779944559,-1606516528,192282419,866590346,866008714,-369610008,113639594,-947042872,826653190,-101062581,1169819335,-253211850,-1173960711,-397722811,113703399,-392542776,113703391,-385940693,113703211,-963426872,-1673151482,865799818,866518726,-1509017599,-2142863565,20162110,113707381,1259161018,-2138034453,36939326,113707381,1259488698,-2138038549,53716542,113707381,1259816378,-2138042645,70493758,113706613,1260144058,-17203480,-348936698,-400954444,-919353281,-2131172888,238694593,108790641,-387112984,15461473,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-16777216,0,1014783323,993864510,34,1006438087,-1979973632,-952373234,3928582,84330240,-956301252,3929606,-1945712896,-950183108,2084343302,-1878603972,-953467332,1027379718,1465012539,-18090,-1259819967,-1980140281,1581028622,-1794208938,-2133118148,41230908,-620047370,76230517,1948269885,1025522959,154995316]},{"sector":11,"length":512,"data":[1023767613,427100477,1178404038,1364655755,119408198,1493673203,-4764066,1016401663,2135508553,-16097598,1516222069,121235545,-4713613,-1960422401,255469085,45613939,216619776,-13203199,1431786299,1007099533,1006503670,-1405192928,1913111784,120449079,1592275572,-166300409,540802566,-119011979,-165483770,1094450694,-347202700,1007126552,-2147125955,20708878,129034307,-2001942157,-1007992057,-197752498,509499,1006837385,-1927443674,-2143549642,829697852,1948400768,-33098233,1349845307,21465638,104457266,292764656,-784600927,54739936,529213144,-352288536,-234436762,-352321221,1200236126,1088696833,-670834479,839879206,1959332845,642990863,-152559733,1064524544,-220052669,1005717191,871038979,21465638,-784276430,651690976,-466483318,54583505,260712152,-921965262,1396903796,-400585946,1935343700,-498908406,-234436622,1560282171,244013919,-224314384,-197752005,-166294725,-132216261,1355020347,-1459123418,74776578,1005586175,1962949760,108824,113707125,146418,-1336930581,-385895421,-346554161,21751811,243319640,-402113538,527564853,1006511744,27349239,29764412,1480326918,1006712459,1946172544,19130377,-116134920,113709291,605170,-1274826672,9300223,1438906456,1334453841,200094216,-1928497975,-622327441,-402099453,-152961011,-1996100615,-130284242,650337625,32384,-347798668,-2134686218,272367118,1929365736,-31031230,-1588531397]},{"sector":12,"length":512,"data":[-970245119,1006568961,20351832,3964988,2088772469,141900543,1005717191,518717449,4162342,-148498316,1962934535,-234436847,-352320965,9693193,-116528136,-1336931605,-385895421,-128450557,-1960421437,1049166975,-2010760202,1703421445,94457857,1166616124,20731906,-1993995659,-1993997227,1508574797,108331580,72714534,121393131,138209396,104653940,-2010773899,1038812245,242549820,1077673889,71665958,106794022,-1993987093,-1943665547,642778717,16926710,78644340,-165279253,1946288711,-402477051,643301585,268584950,-1545075852,-960274688,3970822,126559824,393592843,1465013072,1005717191,-4980727,1625818032,1532649471,-1458050216,276038656,1005717191,1273495552,-230784253,41224507,1324024811,-2147440240,113709172,15346,-2097088536,154923582,11090037,-955222976,3928582,12773376,1005731459,-1457294071,276038144,1005717191,-1377304576,-230784253,242551099,1948254377,-234436855,-402653125,1048576494,1963015319,-230784243,108331067,1005717191,-1017642999,76174928,410304522,192231996,97408,80086389,-402003200,24315062,-487897530,1455642718,-1966044590,77916164,-1073083534,199756660,-352024576,-347716095,-1017226518,208896060,963797308,897022524,837541668,-1923676589,943490878,1343714325,119427665,-1031117388,-1174405189,-4587515,1512164863,1569413209,54889985,-2144582845,123721510,-2142190757,-2143551986,1006511744,1006930685,1007252523]},{"sector":13,"length":512,"data":[-2147060435,37486094,190534,1364247384,-919382446,-1974218189,1958742532,18278466,-466470542,-489559925,-118959663,-1960021504,-775844902,-388902430,527565035,-774774063,1912660712,332595990,14280904,-721220238,-402599549,57802959,1539107654,1526772969,1006503670,-150309886,-2083325999,-779943486,2005607936,76162566,125108284,-4980304,1174444777,1006930470,1180595200,1006503670,639530368,1912818747,637957942,1912689723,1278944814,1915254535,1413162553,-350193915,1278944817,2132311043,1413162502,638614529,2131184699,639335434,2131055675,-2095846654,-922875450,113751669,408562,-4980304,28326891,-349926874,-167136204,-268222236,1174702630,55327526,992347765,-495713964,-33175933,-940739128,121369094,-1274957824,-955585537,154923526,-1274826752,-47585025,1482250846,116825283,1963080702,-1648124670,-1007156624,809288697,960235634,808191095,-1007041544,1465013072,109021990,168135206,-1274776128,1011543039,1195275523,-1274705370,1088747017,-1977157629,-167398395,-134004508,1191545382,764094023,1929392360,63406865,-243939074,1005717191,-4980728,-1977216021,45154149,-350909658,-234436854,-1275066053,-402411265,1516240035,1354979419,-1302965675,-402355710,980550278,-151129624,138149382,1027345780,-2144985483,1962934654,-166532242,272367110,977014388,-2144990603,1962934398,1525368410,4602406,-1073079179,1162236020,975573739,1131741254,1157925446,4602406]},{"sector":14,"length":512,"data":[1162230133,116829163,1950366718,1207379471,1946165250,2122327559,578027520,268957478,1008235520,638154042,32384,250285429,125108284,8290342,-117214150,914949611,1593326593,-1017619110,-1957276848,-2143551714,1467295807,126542898,1946235624,1965571143,1925512708,1965636671,1926036998,1008759863,-2012515038,-398244348,678559810,-1142419989,-2012843263,-1975302652,1174702087,-2000164029,21284356,509440,-398003317,914948299,233520116,1006843531,-956300090,154923526,-1325419520,-396665340,-1017578609,-402158768,561250507,209003068,1965227136,1174702107,-370457789,1929471464,1174702086,-2012771773,-347912700,82573784,-134216506,1464910680,-12678314,168069691,-401509184,544538711,1016530630,80109057,971726592,312926,133637727,762642433,1005717191,636157954,76174936,460636170,1946168040,17623051,1179058803,-353679801,-969148254,-1991835644,1580987454,11098207,1342796802,95485876,1492842216,-1924049981,-1187214306,121241609,-498924428,1532576249,552119491,-401181696,343212113,1006503670,-152144864,1094450694,-347207308,32241926,-121417992,1011962819,1009611789,1009349632,639988746,33717632,-617406862,56461862,637846403,1946171776,650720013,641927562,74711354,222099682,1405311833,-133773743,645931067,1021262846,1010201632,1009939465,1009873964,-2146667232,125116476,977674416,639560640,16940416,-919398542,55413286,192203019,1124074427]},{"sector":15,"length":512,"data":[1946237478,1022943751,-1017423584,-163841886,20708870,243271029,975191038,-1913984064,993789742,1007318237,-117213905,-336065045,1966029834,-32604155,-1007140805,-2091690466,3930942,508568949,1431786065,-1896467706,1660991710,-611573299,1560795915,525949535,-1994034088,-1992558282,-1959003362,-1908672202,-2093221090,276037692,141689914,1996571706,99350787,-336902586,526277624,195,16776704,65416,2,-1,-1,-1,-1,-1,-1,973113344,129,34952,0,0,136,-2004318208,1194018588,1196443457,1197426527,1205487569,1204897729,1203849178,1201817522,8931229,540737793,538976288,2105376,-431563517,38203206,1237207458,-263725045,256376647,776478280,-934848952,1715976263,4685383,1179139330,1235354184,-939112002,1715976263,-1807253945,4696391,1481133826,72,21428227,38210119,1237207458,-934848985,1715976263,21462599,1715955212,1715955271,1715955271,1715955271,1715955271,1715955271,1235354183,18878,-1303964923,-1001997498,38194502,1237207458,575083269,1195849799,4675143,319094784,944185927,1447511879,-1459486137,4657990,2097152,-699684096,536936518,1269497856,16795870,-1426063328,4784203,8193,1225804715,2097408,491498240,196681,153551104,270532939,-884233472,537985097,1269497872,285231633,-1426059232,4861259,8193,1244744619]}]],[[{"sector":1,"length":512,"data":[2097408,1246472960,536936522,1269497856,19034,-1426063328,21536331,1146437954,536870973,1269497856,1342327006,1414091329,1342192985,4018753,8192,1224756139,1413563393,15681,-1426063328,21565515,1347376211,536870973,1269497856,1375815965,1498567749,-2046820291,1269497857,1342327091,1095779666,4015442,1346720336,-2147483587,1269497856,1392658750,1128614981,1392524628,4017221,32768,1229540267,1279607810,1162084413,1029259596,8388608,1414245120,1095893321,4015444,32768,1231834027,1313426433,4019013,32768,1230982059,1280262914,1397640533,1329791037,4019020,8208,1234324395,1414548481,4012593,8208,1234324395,1414548481,268451121,-1426063328,21598795,844386380,268451130,-1426063328,21598795,844386380,537919549,1269497856,1275152786,976442448,537919549,1269497856,1275152786,1026774096,2097152,-2125747456,536870984,1269497856,18580,-1426063200,4743499,8193,1215974315,50332416,6474,2839040,844300288,33554432,709595933,215855,-1456799488,843,1257971205,508231710,-1792980187,1268326731,33554435,558601505,215961,-1219161088,1250645322,1464504663,-1520940353,1254316106,1498066521,-1906685241,1254840906,1531617883,-1420014896,1255496778,1565176925,-547468582,1251434058,1581945950,215708,2038696448,1266385995,-2109003134,-2138879192,1266844491,-2041877114,-1585099921,1269007691]},{"sector":2,"length":512,"data":[67108867,910852405,-2059974013,1250375754,50331651,793408814,2066762359,842,1256528646,491464732,2038713235,1266385995,21728537,7681,65470464,16842752,30,255744,1426129152,1,4,22348033,536870912,33554432,672137728,251658240,80,1241710594,25,11090,3298048,196608,-1324416512,1253791306,33554435,944407350,215687,218170368,1259471435,72029955,19228,1269497856,788744650,4281427,1096045359,1395589204,1431585108,83,1269497856,788613578,50331711,185991168,-334738713,1257311562,290125326,-1475327116,1253117770,21700882,302140173,1259799371,88808452,822496143,1261832011,323697416,1209289536,1263539531,390813718,1712868191,843,1257971208,508231710,-1792980187,1268326731,491466538,-1151972461,842,768,1253117703,508214102,1985275,1260723787,558601505,215961,-2026372096,1250113098,558601505,215961,-451213568,1260919882,-2075421923,2072267641,1267083595,810257689,822096128,838874414,872428288,905983232,939538176,822098176,842072113,3485952,822098225,3288633,841890097,875692107,3158784,872427572,808845368,3160064,822097465,822095921,822096435,855650357,905982000,822095920,3158066,808465458,808989696,909705264,822095920,808464953,1107313152,3159127,808998722,877609728,1329791024,1124085816,4539471]},{"sector":3,"length":512,"data":[1162104643,1162297680,1297040128,1297040128,1329791025,1124086349,3362127,877481795,1313817344,5260032,1447362629,1275088453,1414548480,1347158065,1275081300,3363920,827609164,3289905,844386380,3289905,861163596,3289905,827609164,1275080760,942822480,1347158064,808989524,1291865344,4936257,1330532173,1308642816,4542031,1146028111,1179582532,1313800262,1342197760,1375751762,1178948096,1178948096,1213416786,1392530176,1162035536,21504,-2013265665,-2013231104,-2013230849,-2013265920,-2013230849,-2013265920,-2013230849,-2013265920,-2013230849,-2013265920,-2013230849,-2013265920,-2013230849,-2013265920,-2013230849,-2013265920,-2013230849,-2013265920,-2013230849,-2013265920,-2013230849,-2013265920,-2013230849,-2013265920,-2013230849,-2013265920,-2013230849,-2013265920,-2013230849,-2013265920,-2013230849,-2013265920,-2013230849,-973078528,4570886,1963018552,-1090075129,967966533,238731774,-327268917,-1090074941,12451909,973124096,2101723926,-1086423015,309657669,1228475019,-972720890,-12206330,-1023523258,-943463957,1011204102,378228746,-1159182912,780884198,2122335672,125046016,32384,-968031884,-1962934202,-2147077586,1946747006,8290310,-16288480,1158033926,155053547,-955157248,-263864314,842465034,-1660514554,-1877677305,1962935101,-1073297656,-351779771,-1073297658,-972481467,207622,839814083,2081327366,-1204909305,8290373,-2146995187,1946157182,1187400961,113704960]},{"sector":4,"length":512,"data":[179586496,53151430,-1811495424,-1161599163,719850416,-1338080794,1946236427,-1341718778,-1259345141,-855592884,-1811495391,1048602181,1979663763,252438787,53165696,-385649409,-1070395647,103444400,-523156076,-1526730613,1402621266,1308381718,1430605176,1330795610,1545950895,1373067085,1325944793,1445285887,1322669522,1452101525,1024397288,561315840,-1425639039,-2129759159,1236272761,2038499188,1967764998,-1811495412,113665861,-342669880,-49832,113642613,-963426872,-12217594,4016107,-2094959360,1946158713,108626203,91571996,1169426118,246868223,1167328966,-1006188947,569071685,1962934333,24739865,-972720802,-12205562,1167328966,-939080093,99324485,2129134571,239397374,1173227207,28395155,2114320768,12773635,1167277696,-385649664,1048576184,1962869547,11462915,470186369,-2146536121,1969095033,-1039743408,1240203077,108626320,343230251,-2046723712,2038433396,896894209,1170343622,-1875973121,1090943361,-2146142905,1949630841,24739846,-971344586,-12205562,-2121264149,1196426873,2038434677,91565825,1170343622,166220287,1048598798,1979646763,15641,2038502517,1967594502,-1274624507,-437715131,-373162483,-12714142,-2145290753,-12209090,113641333,-342735416,-1073297653,-972367803,207622,1167263430,-12785153,-369251096,113704758,-379107948,-1310192278,108626189,242502059,-1341752959,-2130217911,1236665977,113641589,-345553516,-12742640,-972589569,-12217594]},{"sector":5,"length":512,"data":[1927807979,221833725,1024294888,125108226,1167328966,1027140457,41222144,-12766741,-972261889,-1840920570,1167263430,1025567743,410320896,1167328966,24739945,-2147060602,1971650937,-1039743478,65797957,-369284888,904400110,146701,113641333,-346143340,-49871,113642613,-963492408,-12217594,4006123,-971475712,1581618182,889289088,2038433396,175453697,1170343622,-402396161,-1410728731,217245708,1962934845,-1811495417,854287429,1962934333,1026288386,209059839,1170736838,-1828272494,451673925,1962934333,-1811495406,2038457413,175451905,1170343622,-402396161,1743387809,212789260,1979711293,-1828272633,351010629,1962934333,-1811495412,113665861,-335591990,-58988541,-401849879,4000904,-385649664,78774422,1170413192,-398075203,1048640567,1962886591,8448259,-972267544,1480967174,-1307811864,15617,-1303237003,-1021933564,1171963205,1526468328,1170161280,-2129037825,1197409913,2038434677,91522049,1170867910,203876607,350995198,1979711293,-939080180,113676613,-335592045,-66852861,202565714,83525722,1048579700,1962886547,725516295,-1586167805,53165696,-2146798081,91555066,1167328966,20244839,1962934333,108626225,242502059,-1341752959,-2130217911,1236665977,113646709,-966310508,4830726,1236272838,-1425619456,113639497,-376617528,2038628606,494206982,503413120,113645429,-965851756,4915206,1257965254,621200896,-605487029,24739840,-2147060650]},{"sector":6,"length":512,"data":[1963917689,-1727609286,113639499,-973059179,4689670,1200031430,2013709824,113639495,-973060241,4830726,1236272838,-1425619456,113639497,-966441580,-1874475002,1023448553,225837055,1170736838,-1828272502,-2081816763,108626176,359941999,2013690241,-2129759161,1200555641,2038499188,1967621894,-1073297651,-972478395,207622,2038455019,225779969,1170212551,113641768,-352320725,15687,2038447989,964034305,1268319942,-1794718208,113639499,-973060209,4687622,1199048390,1862714880,113639495,-973059658,4829190,1235945158,-1811495424,113665349,-342866488,-89921533,-401970711,2038434480,108279297,939620736,113641333,-345750124,-49882,113642613,-963623480,-12217594,4003307,-2146601728,1979646329,-1811495417,65758277,-369466136,1911032362,24739850,-972196575,-1740257274,1167328966,23849319,1862695297,-2130021305,1199048313,-118946956,70877184,-555154572,1099650560,1169728258,-955715709,1464200710,1711720262,-402390969,4000300,-2140769024,1635058745,37849942,-2092582749,113707247,-2147399834,1170540231,166199296,15626,109257845,-16628328,-2092590586,38113542,1167144587,-2142923075,1964900729,38898454,-351907191,-12742642,-2096794113,65734895,1039778024,125108223,53165696,-1883540224,-347752442,-1073297653,-972478395,207622,53165696,-951945729,21456390,-989411582,-973078459,4609798,113491,-398084192,-396687012,4000144,-1962314496]},{"sector":7,"length":512,"data":[-1750924735,-1877873869,1979711293,-1777940728,-352321211,-111155197,1170736838,-1207529575,-955520187,675659782,721864201,113639427,-345553516,108626274,125061007,-2029618815,1025144135,276103168,1169505929,1170736838,-1811495273,65759045,-335995672,15674,2038505845,1950984966,108626190,125061552,-1241089663,-972262071,-1773811706,1167328966,1024781159,209059839,1170736838,-1828272490,65797957,-369565464,-303560538,108626696,-2146142976,1964900729,-989411570,-973078203,1850053638,1023451369,1265958912,-1425639039,-2129759159,1236272761,2038499188,1967764998,146204726,503413120,113644149,-966310508,-12202746,1170736838,-1877283946,1979711293,-1828272623,113704773,-956348979,-1773811706,1927807979,1028713464,209059839,1170736838,-1828272490,1072430917,1862695297,-2129300409,1199048313,2038500980,1950846726,108626183,225789831,1170212551,113641768,-352320725,24739862,-955419359,675659782,721864201,65732611,-369614616,113706982,1176454638,-2096617496,1962935929,24739854,-972524258,1850053638,1023462377,225837055,1170736838,-1828272486,-1175847099,108626176,242502059,-1341752959,-2130217911,1236665977,113646709,-973059658,4829190,1235945158,-939080192,113678917,-379107948,3997832,-2089978624,1946158713,108626279,242501554,-1660520063,-2130217913,1201800825,117311349,1122715079,108626320,359941999,2013690241,-2129759161,1200555641,2038499188,1967621894,-1073297651]},{"sector":8,"length":512,"data":[-972478395,207622,2038503659,1950863622,108626193,175392730,-1056540287,-402426809,1575548757,-1811495417,384527173,553744768,113708405,153634240,53151430,-402396416,-68552907,-1241070074,113639497,-973059664,4827910,-109051471,-2140177146,4559678,1048602741,1979646763,501764449,15623,2038638197,544473094,-1308198527,-2129759161,1201473145,2038499188,1967628806,-955843068,116320325,803979774,1979711293,-952205273,125043269,1170685568,-972262144,-1941583866,1167263430,-955520001,-1874477050,721864202,65732611,1509339368,113675499,-379107948,-1243085202,24739846,-2147060694,1964835193,-1811495417,988503365,1375828352,2038434932,108286721,1241610624,113641333,-345553516,-49887,113641333,-335592045,146709,113708405,153634240,53151430,-402396416,468317781,107145222,704739712,2038433396,209001729,1167328966,-939080099,1256951621,1375828352,2038434932,108286721,1241610624,113642613,-963689016,1732613126,-12768021,-955091457,675659782,721864201,113639427,-335592045,146709,113708405,153634240,53151430,-402396416,-1276512787,100329477,721516928,113641333,-345553516,-49905,113641333,-335592045,-171186173,-402288151,113706456,1259161018,16873856,113714292,1259488698,33651072,113711220,1259816378,50428288,113708148,1260144058,67205504,113642613,-966310508,-1824143354,113728747,1261520314,83982720,2038439540,410256897]},{"sector":9,"length":512,"data":[1169819335,2038450998,208930561,1169819335,2038451003,208996353,1167328966,-939080089,652971333,302086528,113642613,-966310508,-1706702842,-12774165,-972261889,-1958361082,1167263430,-402396161,-202771155,-1207515388,-1157594811,-13415501,-955715709,-79303162,86435909,-1425639039,-2129759159,1236272761,2038499188,1967764998,-1241070057,113639497,-973059664,4827910,1167328966,76802408,1962934333,24739877,-971016705,1631949830,1173227207,113722935,17861,1169819335,113658657,-376486456,2038432873,628885761,285309312,113713023,1178027502,1170540231,113704960,1260471738,1167328966,-939080096,1055493957,-1173960956,-968150715,822585350,57738950,155305521,24739926,-948800493,910539270,1896269387,113652227,-2144204888,1947468153,-1173960868,-968148155,855863558,128452294,24739891,-951684075,826653190,-1475951029,113651975,-969866383,-2146498239,1947599225,-1173960916,-968149435,839086342,128452294,24739890,-954829801,994425350,1896269387,113652483,-2144139352,1964507513,147292993,1173227207,113657407,-973059175,4953350,1200555718,-2029599232,113639495,-973060232,4681478,1170540231,113639425,-966441580,-1689928698,1170736838,57928080,-947714325,70248456,57738950,108626176,762595305,-117016191,-970558393,17002758,134642049,-2128972728,1209534073,113644404,-2130574479,1210517113,2038499188,1967666950,-1475951029,2038444295,561250561,128452294]},{"sector":10,"length":512,"data":[24739890,-971607038,856139782,50428288,113642356,-2144073816,1963196793,-1811495399,113665861,-963754552,-12203770,1169950406,49277339,113706731,141051328,1171144320,-385649620,113705101,1261520314,128452294,1896269361,2038444291,745801217,1169819335,113658678,-969800847,839362566,117537152,113710708,1262175674,57738950,-1475951053,2038444807,1265960961,1173227207,113722943,1233668030,1203242695,113647616,-973059175,4953350,1200555718,-2029599232,113639495,-973060232,4681478,1170540231,-947716095,-1811495416,113665349,-962902596,-1874475002,1392660713,-1610612549,1978156471,115890946,-989411581,-956301243,-2126137338,43706368,1169819335,113658637,-2144270424,1946222969,-1173960909,-968158651,839362566,33651072,113713780,1259816378,128452294,24739891,-955157501,474331654,-1475951029,2038445063,427099137,1173227207,113722999,17861,1167328966,-1140406676,-689333179,-1173960959,-968150715,822585350,57738950,24739889,-953388026,910539270,1896269387,113652227,-2144204888,1946616185,-1173960938,-968148155,855863558,128452294,24739891,-953060088,1061547526,-838416570,-951484857,-2008564218,-939079863,-954204089,4700166,-989411552,-973078459,1648727046,1169950406,23325083,83982720,113643125,-949009004,826653190,22014283,302086528,113711733,1176454638,1170540231,113639424,-949336684,558217734,19917131,1979711293,-939080179,113675077]},{"sector":11,"length":512,"data":[-369146477,113705245,1184974318,1170147014,-2147438336,1165821177,1170161280,-398560000,-1040318011,1359038856,1395704192,-1979711301,18802881,-989411493,-956301243,-2126137338,1172852992,15617,113640821,1509901759,113491,-102186614,-346465536,-1086422858,1903558469,1963063680,-1173960941,-951382715,1259143745,128452294,-1874793679,1963129216,-1173960941,-951381435,1259471425,128452294,-1876366542,1963194752,-1173960942,-951380155,1259799105,128452294,-955192525,474331654,37865291,113658652,-952891480,2001071622,-989411514,-973078459,1816499206,1169950406,-347018340,-989411506,-956301243,-2126137338,12276480,-399593472,1398472808,-1342177093,6219810,12276571,-396578816,1398472788,-1342177093,4909147,12276571,-396513280,1398472768,-1342177093,3598379,7006299,-336571160,6481947,1962934077,-1073297650,-972478395,207622,-957287447,-12217594,-2081362967,4571198,378210164,-286767680,-472792106,1549314047,1550802012,512416563,-1014938127,1200113134,-251199996,1460857669,-2126123329,-234879801,-970567762,-346087419,1904984832,80094726,-947666176,-1085057272,915097070,12207544,-988902656,-537335739,1170542217,1171136136,244014939,243877304,914949682,-12761672,-1976863489,-2008306922,-1407809007,22120523,1269765771,-1962782327,-1991528170,378209361,1367952301,-939884282,-402426551,-960237527,1103529985,1103625985,-956266494,8913473,-2012986937,104974080]},{"sector":12,"length":512,"pattern":0,"data":[-276627456,-988872952,49989]},{"sector":13,"length":512,"data":[-1172424776,-1002764240,-997496461,-1878834131,-1946161115,10664440,25083536,-1952058372,-754667048,64589035,-617393191,17746771,1229736784,1126188372,779251823,960049440,1263542322,1163018583,1668172064,1816207406,1766989932,1937008743,1936020000,1702261349,1953451620,1869505824,543713141,1869440365,-1205569166,1639581952,-853422847,-1946316768,-1102098440,-234683712,-372127093,-2013485581,-1085913353,-1783824128,-352317254,-1783787470,1005260978,280139181,-1783808789,1105924274,280139181,-1783798805,1693126834,280139181,-1783798293,1726681266,280139181,-777779086,-193705235,-919340941,-305013965,-775982006,1257099731,-741228940,393534341,1951067601,-2133601863,192022267,1967844817,-1298813692,785633552,18648970,1946876288,-2082786502,645137145,1951067601,-786468201,-1770763539,-305015855,-778734518,1257099731,-741239692,1929575296,-1081463266,-1968438996,-141863208,-1527516373,-1400312994,-712980478,1979661312,-785126468,74795757,280139181,-75443247,-774737400,74795757,280139181,-75443247,-775785961,74795757,280139181,-478030895,-544866081,-1070353173,16825094,-1948742829,-1949267000,-1947169816,248824,84150786,0,117833728,33622280,67305472,1541,0,134676480,202050057,36877,1929553128,60483591,567102644,637610728,151286528,4241438,-2069833586,520093696,41271306,-1750984528,1141684226,1073742523,58702145,43718285,-1928302046]},{"sector":14,"length":512,"data":[138936638,17202560,1166739061,671097104,281874356,43525768,1169480499,-1948473312,104772840,228917298,-1173672178,29035309,1342193678,935001102,268482827,1068817803,185401362,-1960784544,-1393390648,7608892,222098848,113641333,-352255334,670796,117332512,1122697881,225773628,10567296,-29920235,837486350,309659964,646619146,130318346,-17243008,2001998532,121379606,1295062900,974785225,-603359607,-1974583352,-1430997808,420419882,1913823402,1364612411,866032568,-1303359287,-385894912,-1341344566,575348744,74776636,900794548,833688369,1504821003,1560984414,20972870,1946157129,-11278077,-1090569751,210370688,686026034,860246848,1949285568,1948269578,-1941962494,216789986,1015025379,1176400959,-452052478,829744138,1812005816,33685551,-117440072,750263787,286537473,1023547925,1342431024,-169131968,18661426,1343865848,499884289,268439040,-33423615,269225590,-378136575,101124621,10499620,542330113,1443123012,1769173605,1845493871,673199648,1866672451,1769109872,-1602983833,959520768,86847800,1293956153,89154409,1869836146,1914573926,-1979375504,1852116812,409232755,-1811778463,1818323259,1344285984,1967288353,544830476,1781465382,476856619,1158116173,1915905282,1397765494,5703250,-1899416832,-1191234623,11670062,109850573,38613175,45432457,1762591247,-1123041381,919733263,-854601969,673515023,-1324371185,94038018,-1354151669]},{"sector":15,"length":512,"data":[134393099,-1524299573,329782217,1841368003,755510602,1342181335,113705685,168624872,53544646,192958500,749,167964422,116254720,-652342702,722081336,1358954496,1912617704,123689224,-346530982,12878596,-1007088607,-1205971376,303325952,438241093,1793144457,26477283,365123678,335933764,-830465326,1140963329,1074447112,1023750324,58004998,1025043448,1935770113,-17659,893453291,1891181356,1343946904,1465209171,-2138353146,512354562,914883301,45644522,-2063546101,-318038924,652739957,-1326960640,1764098561,17164378,109272839,117030997,1928944138,1767464198,1158190422,1062019649,905968515,1426404652,-1274056841,1818671961,-466451703,1948127286,1234451211,1376220353,57807360,-1009385470,-2095118818,460653049,-1977220428,756360197,-389903841,1930756273,268916037,-1139736235,-1857545395,1229397769,-210436096,1472405496,-1957493168,-1962467590,2666713,-1359807462,1272523746,123456395,1594443864,767570883,1085555023,-676703349,1347758170,-1734032835,1482162266,1374214,-1676393958,440238118,-1047854475,32178256,-1679290673,1364531947,352298728,1508477770,-352160996,711051433,-118998103,7429410,2603028,-1258289989,-25115903,5247429,1971373814,1049460236,45679336,-397082624,113508096,-515980201,475005095,1032005143,276101120,1912945190,985792512,24576325,-347650055,-1022926871,-2136930673,-1835810837,49231607,88082835,1980365443,935493637]}],[{"sector":1,"length":512,"data":[337708011,1095905285,-1811217235,963959632,9569205,738884648,922682741,-348060936,-1587736030,269616135,192219922,302099075,-338545773,721224871,-1016787435,77594633,-1339706335,624436736,100665973,1946248453,1975794180,117481486,24379219,1967735442,-2138614045,-317994464,-2092092556,1618313022,1149905686,-1288698874,44362740,-1926218722,872625874,1115744235,48905856,1107850751,1330596148,-1163067391,727187455,-32839431,57891167,1475027104,-896839280,1946158730,1968329997,32383750,-1565964962,117667085,19573001,449443386,1731097921,1091963473,24807277,545456166,1493660160,1583177479,172548316,57810169,-1862320919,-1580526508,436732055,-2007433539,-241131385,-75283710,-118989760,79756801,230223459,1125419274,1342302440,1398195073,-1553795533,-1951596542,-1962747460,-165286945,1081344710,-1128003448,-1014234435,1761743621,658312560,-921536768,101847210,646163208,924235971,-115005437,1889733867,-2067930440,-118076246,-2144724210,5532889,-133904765,42206834,-1611988267,1963010972,167793193,1460031829,83933264,1487810509,151359605,45668491,1945763084,1598117125,1894014166,845969,1533106781,-1224564642,-1070441799,-1425756430,-1421225481,1199900764,-16022755,1111299700,192223570,520088656,1460704033,219867911,108317952,55413286,942541291,1971987509,-2096419324,761529543,1862893816,637869849,94677051,86901739,306776476,-350285980,208861667]},{"sector":2,"length":512,"pattern":0,"data":[-1087893476,52823822,180028029,1189949960,113657613,1075315431,1974590293,1275119377,1127030842,1409861187,-1494727871,-768402771,69256,155486756,511099194,-259342038,220742902,343179271,1073809937,8158217,-327823618,-2063595451,139213046,86640755,1250611594,613680521,208998193,268830004,337315258,1102512655,1948698939,1968561269,116787736,601586521,84427353,215171718,141873674,-29613440,-386370102,281236926,-872712030,-1918085080,-2098710210,173568763,29596784,370147334,83885825,2017792256,1684956532,1172054022,1919906418,238101792,1907388420,549552905,1560478403,1632636452,56980338,1084396833,-3990239,67617,65568,50345069,738212608,754998273,33281,-1644089856,-1308545280,-67031040,1850283776,929286917,1952671090,1991249437,168431024,757934760,1461275936,604635144,544173908,2037277037,1969711136,-1888645611,544106867,1832363410,342661397,811928640,1936278569,2036427888,1864062273,57701493,380281095,1097036576,927599151,1948279054,355351145,520235008,1163022157,1528839200,1919161364,1564110697,1746956379,1717392680,1630170217,538144291,254630167,-764183520,1295527712,223513376,1884493875,1722444224,1753048335,1840485654,-1550818127,1334316791,1745035296,587071745,2011516418,728788840,1668799331,544000376,1701012834,1073827940,-2130069898,-1023315263,34433329,307456,255]},{"sector":3,"length":512,"pattern":0,"data":[5876713]},{"sector":4,"length":512,"pattern":0,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-65536,65535,-1,-65536,65535,-1,0,0,0,0,0,0,0,0,134217728,4096,0,0,6513152,16842496,1077019395,65536,65537,0,3289600,0,0,0,0,0,0,0,0,0,251986176,1835335935,196624,-65488,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,65535]},{"sector":5,"length":512,"data":[0,0,0,0,0,0,0,0,0,0,0,16711680,-64556,30464,0,0,0,0,0,0,122224640,0,1310740,-1207959552,47104,-65535,127533055,536870912,2101,0,1033976043,1,732703910,546253750,586294312,571417344,592257823,569254343,608838489,634201269,617620682,619259094,606085887,632890111,637543929,734012071,642721323,647571114,651175615,675423959,703998414,705112576,719923897,723593984,729295703,742009828,731065423,774647002,788278803,806563604,12316,0,0,524288,2097168,6291520,10485888,14680256,20971776,29360512,37749248,46137984,54526720,41943936,13107400,5251072,540672,8,524296,257,0,0,0,768,0,0,536821759,134156287,33489919,8323327,2031679,285147647,-125882113,-58722177,1073741824,1879072768,2080405504,2130738688,2080407424,1174432768,50333184,768,536821759,134156287,33489919,8323327,2031679,285147647,-125882113,-58722177,1073741824,1879072768,2080405504,2130738688,2080407424,1174432768,50333184,768,-2147360761,32769,0,0,0,0,-2147418112,-536379391,1073741824,1879072768]},{"sector":6,"length":512,"data":[2080405504,2130738688,2080407424,1174432768,50333184,768,-2147360761,32769,0,0,0,0,-2147418112,-536379391,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65536,0,553648128,-1895817216,50462977,117835012,218761480,286265102,555750162,639902498,2121547824,1128415552,1633699140,1701077858,1768449894,1851875434,1920036975,2071624056,454695192,606282268,10279,3,0,0,143261696,62390272,143196160,0,266,139984896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,18156809,151454977]},{"sector":7,"length":512,"pattern":0,"data":[690431243,2139062059,2139062143,2139062143,2139062143,2139062143,2139062143,252446977,454563090,690299166,2139062062,2139062143,2139062143,2139062143,2139062143,67305985,185140997,370348045,589241369,892349223,2139062076,2139062143,2139062143,2139062017,2139062143,2139062143,2139062143,2139062143,2139062143,2139062143,2139062143,471340048,740828192,269488176,269488144,269488144,269488144,269488144,269488144,471340048,740828192,1010316336,269488192,269488144,269488144,269488144,269488144,471340048,740828192,1010316336,1279804480,1549292624,269488224,269488144,269488144,269488144,269488144,269488144,269488144,269488144,269488144,269488144,269488144]},{"sector":8,"length":512,"pattern":0,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151257088,454431245,740827935,1043936561,1330333250,1616598867,1886152804,-2139326348,-1886681213,-1650878830,-1415076704,-1212894802,-1010778438,-825439802,-657009711,-505422373,-370678301,-252777237,-168496143,-101124106,-33752070,-16843011,-1,539634218,1936287828,544434464,2037411651,1751607666,959520884,825045816,540162361,1919117645,1718580079,707403892,-534771670,16777227,487331584,-268407796,738992899,688151552,-2013222900,1191980804,889532416,2013267724,5,0,0,255,136323088,1040,0,0,255,255]},{"sector":9,"length":512,"pattern":-1,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,-553648128,1045035849,-1320527030,407555914,827055691,592195916,-1828465588,420335629,-1929133056,68012557,-1056715264,151911949,-1409040384,353233165,-1845247488,17682189,151247360,17697806,117689344,17697294,134466048,17697550,768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16777217,0,236540417,1199833088,707406336,1768444960,1936269427,1886348064,1734963833,824210536,540293177,1919117645,1718580079,707403892,131114,536821759,134156287,33489919,8323327,2031679,285147647,-125882113,-58722177,1073741824,1879072768,2080405504,2130738688,2080407424,1174432768,50333184,768,0,0,0,0,-620822528,-805306365,507963455,-61938]},{"sector":10,"length":512,"pattern":0,"data":[-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,65535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-256,-1,-1,-1,-1,-1,-1,-1,255,0,0,0,0,0,0,0,0,36864]},{"sector":11,"length":512,"pattern":0,"data":[]},{"sector":12,"length":512,"pattern":0,"data":[]},{"sector":13,"length":512,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1869611008,-1869574000]},{"sector":14,"length":512,"pattern":-1869574000,"data":[]},{"sector":15,"length":512,"data":[-1869574000,-1869574000,-1869574000,-1869574000,-1869574000,-1869574000,-1869574000,-1869574000,-1869574000,-1869574000,-1869574000,-1869574000,-1869574000,-1869574000,-1869574000,-1869574000,-1869574000,-1869574000,-1869574000,-1869574000,-1869574000,-1869574000,-1869574000,-1869574000,-1869574000,-1869574000,-1869574000,-1869574000,-1869574000,-1869574000,-1869574000,-1869574000,-1869574000,-1869574000,-1869574000,-1869574000,-1869574000,-1869574000,-1869574000,-1869574000,-1869574000,-1869574000,-1869574000,-1869574000,-873921677,46655489,-1056193653,-471268491,-166854400,-199360253,37218307,16888552,17035790,855896094,1829124288,954168581,1946504454,1124481047,-32410364,-1610265594,104465740,-965606067,88876680,71503488,993951745,57933836,188143849,-783452965,-773598749,87597539,-140918013,-1996213442,-1157285866,117638187,-1993708312,710141959,104341131,1946286976,1044283418,242483212,104480387,-2146995199,341822,-140966540,-1544816645,103482684,-661977778,-506378525,-506338863,50674337,1056414145,378078261,767231290,-402193660,126429741,-1960177944,-2147075570,326369785,205405824,-2146995200,341822,-140966540,-1544947719,103482686,-930413232,-2146692677,242484287,1946369920,1377873929,137434763,1048599278,1946158907,960397384,1098121223,121126528,-1959496448,721763358,-167424482,41189573,-940123657,-150834048,970523611,1996963870,134408220,-1064380276,-1576584800,-658634952,494069766]}]],[[{"sector":1,"length":512,"data":[-1593235992,1017317182,71540743,896843786,641262642,762643822,91096830,73113680,594862116,1964363496,592467998,393479236,-16366346,1157500277,-292858362,1577147624,-351908610,1480190749,335946320,-2146208764,535614,568591988,108333224,-402374723,-1470627527,-99257343,-1157347936,118097261,-17102219,500164615,91033342,91098878,-1933341749,-389902630,1040384071,-164493069,-145615478,1328478186,-1946514684,72589808,331744153,268484567,378142711,-661978029,-145047157,1362032618,-1946514684,72720880,331744153,268484567,378142711,-930413483,1364262339,-1072970869,-654900615,41535755,-1053042185,-1047854477,150290059,243985714,-117241615,41135695,31718370,1509526345,868482136,-2079967040,972518411,1946962438,-1014279183,206843639,-259261813,-1727247199,-686569981,207109879,206313097,-1047799669,206974711,-259261813,-1727245663,-686569981,207109879,206706313,-145172437,-1962125778,-1578071046,60361808,-136899642,-1995679682,-1861464042,206843639,-259261813,-1727246687,-686569981,207109879,206444169,868468739,650153664,604247968,-804490225,201487336,-792145919,-1563897656,851641435,1344178943,1007586054,1983789061,-2147257339,378273505,915080510,1049297904,-31587342,-83606522,6225726,-661759750,71569150,-71057266,-889023512,116165461,360090455,326536109,1988828299,-1962112239,344657782,829696828,762588732,963905852,762580028,829690428]},{"sector":2,"length":512,"data":[628364348,695473724,628365116,427038780,561319996,1418398859,108825346,-352029557,-470643948,-339636724,1960512268,-339505660,-1897952252,1397772487,1448563281,-1912201643,-326433186,117579752,1600019743,1482381658,-1995080053,327060229,2123046281,-1962047215,361303934,1949056088,1949121559,1948204051,1947483163,1965636612,327060248,300615052,-1945010549,259951365,99300745,-1945012597,1560764164,775848139,1987313669,-2147140447,357950,-120520076,1874579595,37715973,1065355890,-2147126268,41223487,-628360495,1979973437,-343952892,842987014,-1580168698,-1963260610,675185128,1979762694,-154629374,-1979304898,1344703216,65306630,1946418304,-33377278,-1999831348,1586041190,225347598,-888514935,1946483840,301760652,809239669,1187388277,-2134179330,802110,-672660108,168456723,954037732,1963291174,-1336912411,20113410,71632582,-966960897,-1996292538,1236858694,-79263458,870026443,-1596420416,2133066825,-1085219954,121374272,1102977908,973441542,-1977453564,-1610250236,1000475708,205496332,-351519070,952119824,1946567174,-1576695800,1050807355,641226764,91491390,-348950040,91209506,205334072,-1957688716,1407776582,175265811,301497984,87688308,92800372,840131304,640280768,-963715444,-402237250,-1444410496,-402542567,-2134170089,158684156,3127376,-346541107,1946500137,1963408426,217809697,367205493,1963063683,1317619989,530102544,-1945743735,38701513]},{"sector":3,"length":512,"data":[1317618123,1187433228,-959774210,-1207763386,1183391510,512347132,109840506,-611579780,2025571214,241076488,-889174388,121323136,-2093845504,474174,251603828,628426556,-1945915416,-960459048,50629126,76023494,-1945712880,-973066236,473094,-402220866,-1008199408,909953796,775689843,-125107083,-1739332558,-661921583,92702603,-1009713317,141905212,-946937972,-1022628673,125136188,-946937972,-1022620225,1209995004,1151481973,723421447,755927300,-199325436,-166819581,1008610051,1041115909,1008599301,1041105157,4515845,17614475,-402373726,378011761,-369621424,1967717092,121938446,71632440,-1561844363,1210116869,1048583541,1962936132,1141294614,104398599,192218181,91031294,-31898392,-821727986,-775713966,-773271064,858191848,-268041980,-775845117,-773271064,891746280,-234487548,939968259,-956301307,342534,1008634624,1041140485,-960275963,803078,292815528,66586367,66723465,66850441,205590144,1946462240,-33095924,2001155,34507012,1946724356,67567377,102664452,135170308,1091469316,279449612,117378164,512295946,243860492,-943520754,134726,87164615,113770495,1996490036,-2147127392,356926,1048591477,1963132478,16115717,263466475,71567102,251531469,2133066820,205405824,-402295808,552284470,104742528,-1173588734,-330301033,1951926440,-1573867518,1048577391,1962936439,287959043,-1564462342,1048577335,1946160187,784656387]},{"sector":4,"length":512,"data":[-2146707480,802366,-927331724,-285233149,-286331326,70452935,113704968,1049653,1208362657,-1593561181,-1555560920,-1070398415,-1576702558,1403192686,72721156,-1190646622,-544473069,-255866994,-1565789437,1084425808,88253189,1208316834,939804066,1963489038,276293635,76023494,-1979267568,113705732,3146892,1827192882,993951779,192151564,-399751448,-1092080040,-1106646249,-1243085224,383707144,1290273200,65333283,-1962531167,-788125666,-336866840,-1965388685,-1900006440,72786136,1077729934,138152564,-1014365324,-1021071165,1002645168,-2029880118,1983807690,108265477,-2130779776,243924706,378078224,1048577071,1946160187,712697859,-902096661,-897121668,68292233,70325897,205209216,-402426880,-1946539451,-1962661106,-1962660586,578414786,-1047799669,-98408216,-1996215389,-2147209954,802366,1048779124,1963001402,1983807499,611581957,552336932,87506560,-1726385152,104349431,104345335,205405824,-2146863872,357950,-31194508,-1962591069,1044283587,242483212,104480387,-2146405375,341822,-140965516,-150586818,-1559872978,1048577342,1946160187,772597763,950255667,87728901,1158035707,-32803580,-402297594,251532965,-87882387,-1064510580,-1014048626,-255855989,26196227,638464744,205196856,1119815796,-396644082,942018083,1946959374,245546761,-402579271,-1896149485,-1564462117,104335400,141823035,-399843608,-1070387984,1169925099,-2146435580,58064703,-1023245848]},{"sector":5,"length":512,"data":[105947386,1183441970,1982216206,87859461,-31194508,-1593031031,-1980037826,-1094514106,-620035080,79561588,952120068,-100305402,1183384711,38046478,-31194508,-1962129783,1183384644,105947146,273058043,67026627,-713762037,-352056642,993951952,57933836,-1221765911,-32459519,-805026546,-1966604569,-1545210169,1049101452,780665994,-1047853944,88253336,-1014238581,1044283544,125042700,104480387,-1961986815,-2147076066,91488763,-134482023,88122347,954777650,-1014227423,101178254,-1732256117,2144518,-208951821,-1088371069,280561400,-1935281408,-1093103936,-658569448,1095942,-1732336141,977174534,661913607,-1107291975,1048577752,1963001658,103081998,-1190750018,468189200,-401806586,-1732377038,1095942,-2147079704,473150,-658635916,341501958,-402542561,334176455,-15710521,-12588545,362987570,1158035460,-2146012156,-16497346,117312373,115869037,1829699093,1158086149,-1070415100,205194808,251552373,512230469,104334647,259263550,108387083,-382379800,485031739,-2144605395,208929275,90965560,-4651404,1996536575,87166601,87299721,1979709824,1959922180,101203969,-620034701,117348724,263455813,-735917022,-896865910,117309876,281871428,71569150,-88067133,66061959,856442505,-234453056,1183447811,113689354,-1006697170,86902470,-921976064,188809589,1107391954,70454921,70588041,1983807683,292814853,205405824,-788237056,-2130783751,-427557151]},{"sector":6,"length":512,"data":[923699710,957778180,993429764,1027508484,112900,68488840,71642680,-1577399691,512427326,955974972,1946565134,1043216412,951416076,1963276078,64195503,1241920022,235128971,-347535820,1043216434,939947020,1963967278,1107700627,1075718917,1982740485,-788368379,-1978233861,-784186876,-773664286,-754758942,235128971,-397867686,494083908,121912960,-2146077696,801598,1139344244,1829174827,376432645,91033342,1017248451,1042189061,1309027077,1344154373,-1022625019,251587188,2062091333,71279102,-1593162103,1183384641,68460544,1183441970,71416588,1058441722,-2146989052,243802081,-2114255852,1977614399,1048651283,1191247878,117312117,568592428,568784676,137601475,-1022474615,-1090876422,-1883700240,182577153,205196856,1119750260,-396644082,238553811,158600254,-1190223170,-991428320,-1950090486,180742337,-1985147531,-1985148346,-1985147322,868420678,239503808,-1995815287,-1991766970,-1195175866,-667221916,-662044046,41076795,-801388406,-796261774,-1073024629,1252180619,173139972,72158857,-1014300404,-402368094,243862083,17564751,1520617099,171304964,72421001,1403240499,72721156,132350147,71769736,202456704,-384338685,-1070396966,-1996203616,1520438854,205949188,-1996207456,-1950152122,90481603,90318583,90179075,-1023058269,-1996135263,-389870010,1048578789,1963199505,-1040140273,117373066,365757508,71569150,-1573572680,1048578167,1962936130,1141308984]},{"sector":7,"length":512,"data":[-31339260,-1945877490,-335135808,992769283,1963324958,-669611226,64659715,-1047602804,800643214,117319205,567084100,1141833254,-1899983868,-670644264,-1207959549,117323024,567084100,71569150,104579212,1098187756,99884603,378223477,-694090796,-297893885,242548739,104742528,-1962445567,-1593581546,-645135390,-661732978,639963320,71567102,-31055411,-1945877490,-942108992,250886,889763840,71567102,251535821,-1064565692,65799739,507184245,1718945266,71567102,63968907,-1912352095,621328600,-1064558131,251582606,113706052,976,-1274533472,1141308981,-31339260,-1945877490,-335135808,992965891,1963325982,698359337,-31083512,-989576186,-855383018,251535137,113706052,996,64503427,-2096663296,250942,1187448180,-1577058544,1183384542,64790784,-2146548087,67899710,378214260,-387184593,646580673,-1004402646,639816950,-1005975509,2062074862,-335114743,-666991869,1232404483,121781888,-1203604224,117323055,567084100,71569150,104579212,108332012,100015675,512305012,109839320,-661912614,378257550,-324991498,-1193767421,-31054545,-855358458,-1899983839,1141833432,-734100732,1551171587,-30076744,-855358458,1141833249,1002474500,1963191302,-199345402,-1086229499,495518676,104742528,-2146077439,257598,512298613,-324992032,-1845115133,38111561,-1064380276,99882635,65805963,280550286,117319205,567084100,-661733236,71569150,65289859]},{"sector":8,"length":512,"data":[-1605929728,900991017,71567102,251535821,-1064565692,65799739,507184757,712246778,65281673,65406604,-1064380276,100275851,-1912345439,640005336,638069152,71567102,-1064558131,251582606,1048577092,1963199505,-1039681509,-1014047860,-26665797,-855358458,-1040140267,365756855,71569150,63979139,-1203604224,117323016,567084100,71569150,104579212,108332012,99753531,512305012,109839312,-661912622,378257550,-324991502,-1193767421,-31054584,-855358458,-1899983839,1141833432,3127300,1183396813,1958742800,1996932616,317259784,-853561336,1187496755,-956300786,-16436730,872859647,863436805,933427904,1183401989,993951760,57933836,-383397400,-75237619,-2012973304,-1023125730,-1996204127,-1581052346,-528086003,-1592899959,-528085999,-1022605687,-24422570,-472786549,900592387,858193919,25765381,-503134333,-1017225231,-24422570,-472786549,20129453,1610212011,113689438,-2147481800,473406,1048579444,1962936123,121217030,-1090045790,548996760,-1096420608,-658569448,1095942,2025760243,1095942,-1732336141,977174534,661913607,-1190733634,1048576016,1963001658,-8067058,-1190750018,2078801936,-401806337,-1732313198,1095942,-1090549272,1048577688,1946158904,114867715,71803075,641262642,41157943,1048580108,1963001402,-2011165694,1839206726,239503621,-33274720,205949376,-33274208,172394944,-1595657533,1183385719,103194894,205949256,1208363169,-1022736759]},{"sector":9,"length":512,"data":[-2013609933,-1996229626,-1070396346,66455175,172395003,-1996148063,882970694,239503621,104251331,-1047910941,-1157610823,121243701,-498924428,361350137,804550,1006989986,839021856,91202240,-1996042519,1913554957,1862714885,-1077731323,-922024592,96928885,495650869,260762930,100598499,856444553,172394944,-1023392119,-1996144479,1117851206,205949189,295756850,172394764,-1996208736,-943517626,-61370,-58669173,-1978240253,-773573948,92323808,637532163,90971784,1066695,512279296,1187448141,-1023410160,820560267,-1944620539,1977224131,-87323902,1150030985,72124674,410822,1187496955,-1006633200,1979710339,93579272,1066694,83592131,-1672790409,-1931834118,-1898410304,171753410,-218062151,-1998942555,-1089932770,-205649675,1074120456,-1073428726,-1574916086,-470415113,67175681,171739018,-1660358238,-1022341496,-15710521,-1070349313,-1609546104,-1992292110,1586236998,105301760,868420156,150126537,-75299446,1261401343,-2080375111,645334011,495516316,-1106709057,96930035,80153152,548408000,84009974,-2020998143,-241038788,-1648129272,-466433741,239503680,273582408,-523116335,-523116335,-1995751419,1586234950,1048625920,1962936567,-1064559065,-1190668146,1086259232,-205092085,1960512165,-1074754807,548473340,-1064524301,1187502222,-1023410160,-32487737,-4668417,273058303,202489756,71139578,-773321611,-955944060,4166,1031848861,-1660652285,-2147252759]},{"sector":10,"length":512,"data":[-260767171,121912960,-1091996672,76153928,71934032,756452176,63078408,-387006414,1246364881,80472302,136724099,-1605929983,900991017,71567102,251535821,-1064565692,65799739,507184757,712246778,65281673,65406604,-1064380276,-1962399328,-1962542570,-1912345586,640005337,71567102,-1064558131,251582606,378209348,-1031796691,-293556221,1241805032,-289394102,1241802984,-387030864,-1031797663,-301813757,1107581160,-387055184,-360709039,872127492,-1077834039,-1977219988,975629325,-1963232243,-1977160668,985737733,-2131266592,196084930,69724398,-335222144,55699538,92939932,-398802646,1515845491,96632989,67889388,-1341855104,1237315073,29488644,1015027060,-2011975673,-2012041212,-385649403,1187512079,1476395024,-2007497336,-1581015804,1183384592,68329744,-1592899959,1183384623,70361356,-1022736759,1018573539,193216128,-1241352960,1961763376,1959666192,1976402956,1160677384,1141803020,-2076278772,208928779,205723272,-1995683137,4778013,-1995684703,1048579142,1946160004,-2133708246,803646,-897577612,1111392257,57933836,-2013083008,1254034006,-1996125428,1101008454,842802188,-1609700380,807668801,1183441970,-18418,-1022343543,-1962128705,23640325,92127547,2147391549,-101213947,-1072971125,-1056767367,1522075017,721024512,-1965454388,-1978956401,-2053141796,1963042827,1958742534,-2029458670,-1461979175,-150440702,-337905703,-1982073086,-1995680754,-1022601698,-1979712328]},{"sector":11,"length":512,"data":[12062790,239503616,-1981808456,-1070396858,-1022605687,1183432755,1976056592,205965066,1182990676,-1950153460,66035962,-523181872,-523181872,202442250,58018218,-1593782039,1235878999,1503721076,1950984708,73048303,-395032150,-1442559328,-1595837367,-1057093390,-663467606,-1442560096,-1596885943,1235879276,1302383220,1950984709,-1430244669,851276873,1074149568,-33393396,1950984896,33129391,1252097396,-377246964,-1972079614,-1156823770,-1070461883,952172099,-1426492121,-1973390263,-1156824026,-1070461883,952172099,-1426492121,843871305,1124481216,-33393652,1950984896,1157202238,1362653697,-1190511426,-1527578300,1156153689,-1607961599,1235879737,983572852,1950984711,121348122,326388138,-1442365279,-1593019319,1235879742,1134560628,692693511,-1933374386,1187446878,-1022844918,1979710339,121217058,121251466,-1609677175,646580027,1183385408,121544972,1183443153,273073930,-2134704128,997655291,1996685184,1694335030,-41930377,-2094238720,662136058,1946221187,958302242,977176583,990808071,1076791303,-1981624057,-1996014058,-402179050,1187508357,-1023410160,378272412,-2135947219,-301485842,104382514,41158222,1203454128,201787908,-2131869176,393545535,105856640,1242592272,-2131867728,145753026,65700078,-1645344848,-1342016061,861098034,1958742729,1919171608,-1738231806,95633472,-466422794,-788136773,-1948777504,1951947535,3323907,1944703427,-1510759423,-13413949,585162939,-1188924200]},{"sector":12,"length":512,"data":[264110083,130450180,570705035,-1962773049,-524076290,1493333488,1962871747,1509395204,1508102595,1107540931,378228148,-1031796691,117152773,-1047606989,1812892198,1227786756,27847684,-1608118667,-1054210964,-244062150,-1007051513,-360669945,-952439803,1049103221,113642372,-352057779,-2079930860,-1002831861,-872544652,-1007045515,105711302,-1933314045,-1665102120,150519546,-1190511425,-1510801246,-1576472416,-662042382,-1106709057,96930035,80153152,548408000,150087414,67175681,-2020933838,-241038788,-146896888,-2134663928,67899710,378213492,-90437585,2353388,136978058,-1022700554,-2134663698,67899710,378212468,-90437585,518380,136971810,-339501586,-1023350016,1976433792,1981037594,1999911958,1932737554,1932606476,1998863368,1914780678,-121374462,993951939,141819916,1008361192,-1023315360,113703571,-956299906,352774,839304705,1388251142,90881541,122226119,127468743,205405824,-955747328,-955248123,-1944940028,-955943906,-351963130,-1547685064,312673296,90481412,-1576700254,-2052979620,1044283396,2054488838,1965292416,-1610565570,-2012914013,855990566,103850944,-1576649566,-1572862403,950142522,-1551847418,748881454,637978374,-956114938,-268031994,872859139,113709062,1661535610,-2147185431,980756219,-1548746568,646448478,-1070398111,-1912196957,1252075200,103719684,103155399,113705600,34604584,983697584,104374790,-385469278,-672660395,-385650172,-75496371]},{"sector":13,"length":512,"data":[-1341688569,-1562867198,12060015,90088376,90252936,-1064380276,-661733325,1042692134,1392800780,-1591758104,915080266,-947125149,915005326,782435632,805750534,-2143309818,802366,-1410857356,854285087,-955898177,1023574021,141951056,-523116335,92922065,103286471,113705160,536872492,91883207,146292129,104112641,-1576650078,646448696,646448700,-75495875,-2142211322,802366,113707892,536872492,1929706368,83591230,-75483789,-2146077950,33963582,100666996,100664888,113706546,8389986,205405824,-971934720,134624262,104466119,113704968,13108776,-788333335,-2012860890,-2012857818,-2147076058,802366,646448756,116068291,90310343,-75496448,-2143783930,802366,-75476619,-2146339714,-1334572293,1950415744,1962639371,82525557,92151432,103294673,104081104,103810759,113737648,1378,-2147282967,-462150405,105070208,-1206815744,117337860,281871428,71569150,-864809668,-2147319575,1886718459,103687889,103163601,103810759,414220128,-1576706142,109053281,-385350094,132711116,2047264514,-1555627003,641205602,427035710,91496076,264447624,651363249,651363884,243795502,-1427569290,939968258,-956300794,84182534,1376176122,-939913211,-1878693370,21018875,-1559923038,782435884,42199302,205405824,-2147126272,175325435,1997798272,234586269,-1599039374,-1576706142,-1070398111,-1576652637,1034028604,1040594950,-955878132,1342581766,301694976]},{"sector":14,"length":512,"data":[113736820,-1610611340,1964243840,-9836285,73145992,205391416,113649781,-973011839,84181510,91752135,113722938,1181418874,75892423,113720965,1049625938,90834631,-75481376,-1338739698,-385650136,1990328459,1042692101,-953912052,33961990,103588608,-955896157,1157924358,1376175903,-954249211,-1610257914,1644611359,-385744891,1048576341,1962937406,671532817,-972955642,268841990,90310343,1048576000,1953564713,1946601273,-2002780155,-2147197922,802366,113649781,-973011839,84181510,91752135,113722938,1181418874,75892423,113743365,-1777334958,90834631,1927911008,1044283393,494206988,75892423,113732965,1836057938,90834631,113733056,22939176,104072902,318472206,1048596852,1962937406,1644611334,1393033221,79425716,571904,71567102,251531469,-1007287228,1433754370,75835016,205405824,-962366208,268730630,75630278,1948158983,2013710085,-952571131,-1593476602,16509245,-956268311,352774,1044283392,494206988,103286471,113705440,-1778056058,89261767,113743376,-1772092054,104072902,13363472,1966144384,939968314,-956301050,-804903418,671532802,-956211706,-1509543930,839304831,113641734,856557108,90350528,-1576652637,1034028604,-1554337786,748881454,-2146112762,134623750,104335103,1913191296,939968262,-2147482618,-1274728386,1048605045,1962935388,1044283498,1668547078,-75452240,-2147126238,276104699,90113734,90284728,90441415]},{"sector":15,"length":512,"data":[283836417,-2147131486,91496955,1963391872,90284602,90310343,113707008,67128,103155399,113705680,22808104,103810759,113737638,5899822,103941830,872859145,113643014,-33356228,-1593426682,715327016,1044283398,796197126,104480384,-1205308415,-13496016,1141309013,-32453372,1560560654,-1975467382,-1545472296,-1014364630,-523115470,-523116335,-1593431901,-2142763482,357950,-31194508,-1593561181,-1555560920,-1070398415,939931323,-1979354105,103981575,939931579,-1979354073,104112647,1042692347,-1273990132,1141308931,-32453372,-1996209138,-1022375154,105070208,-2144242432,67518014,-75486604,-2145029608,578166011,1999174528,670793755,-75494797,-2146339036,208806651,-1548222280,646448478,267060577,12108793,90088368,90252936,856343424,103850944,-1591295858,782435402,-1576488954,983696952,104112646,103155399,-75496416,-955747037,-1878644730,-2134640639,141894907,103286471,-1007156800,1965226880,671532808,-134041594,29619907,113707124,52430376,113755128,62916136,-1084898312,-2144989534,802366,-2031614347,76463872,-385876037,-617414584,907970598,81706757,1042167846,-1090292724,837291826,506996224,91491390,-350611224,780740101,-1960442500,-788232162,-1934079005,-1960404736,1090816526,1005713217,-1828621629,89826086,-1960393891,-788231634,244000493,-2144992120,339774,-14285451,-1962575834,-528044587,-109753685,1044283430,91488268,-341064821]}],[{"sector":1,"length":512,"data":[-1430025725,1455678946,76193830,653665864,-661977976,581748875,41287488,-1574504222,-1017248465,-787794712,-1949332497,-1341837290,1122957838,1257162122,1122897840,-68238966,-1064380276,-2147307543,476222,-87883403,205209216,-385649664,1050744475,1008634629,1201928965,1159629063,977174535,57999622,-2147351575,802366,28904820,-1022457856,925775887,-2132184059,341822,1994954357,122273282,205405824,-1107069952,-2091577326,-326433556,-1996147551,849412166,38177029,121126528,-402230016,334037311,943620097,57999879,-402611991,1187447087,-956301312,-64954,688272545,-1593358586,103351858,350750533,87335169,-1593817463,1183384882,103981314,121964033,-956236056,70,-16628025,103981567,121964033,-1593775384,1183384884,87204096,-1593686391,100730420,-722991289,103981312,103407825,-924317883,4638464,1187446784,-1577058558,100730420,-1259862201,87335168,-1593817463,1183384882,103981314,121964033,-956260632,70,-16628025,1179773951,104112454,122095145,688272033,-402176762,849412223,1158021382,7727111,17183393,-402176762,882966635,1191575814,6416391,-788122975,1158031840,5629959,17183905,-402176250,849412171,1158021382,4319239,17183393,-402176762,849412151,1158031622,104112391,122095145,1560593539,-1593761816,512427847,-745863355,103945731,63474506,1225143310,1930023912,18081799,71634686,306497219,122134784]},{"sector":2,"length":512,"data":[121970315,369349515,-1958083022,873333704,-1377285882,-2141425143,67518014,-469101963,1048596856,1946158450,926842893,108265478,103417403,507198835,930285094,-2146886424,409406,378212980,-1031797456,27847686,-319095947,-76283480,-83522778,378012809,-1957361624,105260012,1560561203,17974470,1174497512,506184518,1048577344,1962937406,1983807497,41156613,512359377,103482692,1185088834,1044283397,527695884,1914048232,-1019314074,91488271,-350766872,93972553,-402447128,1407713727,-1959007484,1107593750,-773664446,1256378850,-930360573,89787907,149874761,-1070453390,-402060568,-1293417109,1866366978,57938693,-402533400,-538443453,-402542589,1168181487,89039623,-1559803999,-20773552,839140622,136887232,205391416,1525220212,1946630165,-2146989847,17185342,-1506443,923154432,-1093176059,1048577865,1946160190,269663747,1048593990,1946289976,-397521396,1048576111,1946158904,104112487,89130537,688272033,-402305530,849412183,1309016326,5105669,17183393,-402305530,882966595,1342570758,3794949,-788122975,1309026784,3008517,17183905,-402305018,849412131,1309016326,1697797,17183393,-402305530,849412111,1309026566,104112389,89130537,89170371,89005707,369349515,-1958083022,873333704,2088782086,74776594,1256932934,-1962441496,843466244,1931360475,941454341,1946566430,378245396,-1031797456,27847686,-319095947,-76283480,518761361]},{"sector":3,"length":512,"data":[944227466,1946566430,378245396,-1031797456,27847686,-319095947,-76283480,-1929663855,-1010790696,-1125597134,37677063,-1259798096,-2059501561,1031012356,-1106947393,96929130,80152393,1048577945,1946160190,302368520,-1845180656,1959954,-1106947393,96929130,80153690,1048579242,1946160190,1644545800,520406800,88383763,88487563,-1962827288,76463870,-1962615109,-788231634,1044283629,158597132,-1156668738,1743327026,2049376009,-1898411003,-1378513984,120784163,1245922219,581760373,-1442369019,-498645181,780911592,129172620,570770592,87474115,92806434,1047839530,-125150340,-2147184962,802366,-1564605580,1042446,-557922422,1044283396,57933836,1007628990,-1978109181,-1946252328,1193136333,76217314,-925839152,-872545144,1455680373,-1047602804,-24393590,-617425525,-743644110,-1966929208,1967827676,470310643,-1965492541,76463864,205405824,-1107069952,266866338,-1094219264,1048577246,1946160190,254983683,-184297334,1929591886,-1946252522,1326829773,76217314,-1060054832,-872545144,-37491851,-1898345386,-1949791551,852855806,-1394330917,-1022697261,1252711562,140440437,-2134639588,296254,1388264820,90881541,122226119,127468743,205405824,-955747328,-955248123,-401436156,1388249117,90881541,207226311,212468935,205405824,-955747328,-955227643,-1961681148,-1593486786,915080516,1218643270,1245088005,671532549,803798792,-1898083328,-2147126266,802366,1048577909]},{"sector":4,"length":512,"data":[1964180847,1948159501,122480645,-102567933,512625643,1575486836,-487587068,-1008890119,89392683,91176576,-788106221,-772222472,1446390776,-1949398267,-1592335376,1077937290,91176576,-788105965,-773795360,-487586848,1781924860,-2012312827,178180,91176576,-788105965,-773795360,1048626144,1946158213,132114483,-955952449,-2147006203,802366,96928884,468193298,131196928,-955952449,-2146674171,802366,96928884,65540194,127723776,89276043,-1962587999,-2147136970,802366,-829748364,1156110475,-346861308,-397388283,-142146501,780912947,1407911048,75841152,-399150080,113706873,127468906,205405824,-955878400,-1845138938,1894418,-955815192,-1442485754,1044283404,108265484,90834631,65540895,120908032,90846859,89931403,-1962933575,-16426962,-16427466,50680886,-2147186162,802366,1048577909,1964180847,-773730042,-1579036191,-1054144980,243913099,780731750,-315423384,1044283481,225771532,91176576,-788106221,-772156935,2110327801,64616200,-336526343,1712194314,772680453,-1962246650,734069737,1493336017,-922003005,-638104707,1048631691,1962937406,1547599888,158662660,91176576,-351242882,1714815782,66585349,-1946754310,53275595,50685494,1006240760,1913008190,809380612,-1947409914,51702731,-502962634,-338981894,1745748746,672017157,688291334,2114283534,1748404839,-1898214395,839212550,1866367213,208937733,205401656,775430517,460588124]},{"sector":5,"length":512,"data":[91496078,-1527526774,-133958397,-1202714765,-1064388608,1976499800,-1909724181,-1979354082,-1869573942,-184310541,59805840,-611442952,205405824,990541056,1913008190,809380612,-822206714,-611395211,37480643,683393075,1946630152,185042967,942896365,1946959366,-29300731,31983339,35383550,91176576,-1592888029,915080532,-2065169066,1547077890,1044283397,57933836,-385815831,1048576170,1965229423,89432334,89536139,-1996332312,-2147132362,802366,-924318348,-397939968,1048576134,1946158213,89308989,-955946306,-955823867,-2146985724,802366,96929908,80154642,501748370,89308928,-955946306,-955491835,-2146653692,802366,96929908,80154722,1049301791,1218512210,1245088517,-48437243,-577964153,91489934,205405824,-2146994944,319123262,512626037,937952628,-487062780,-1911821319,-402295778,-134020792,-577832478,15002051,91176576,-2131331970,296254,518532980,1778829061,-2146985723,802366,113706612,311559530,-402647320,113706255,212469098,205405824,-955878400,520448518,1782483731,1477348101,807308037,-1579971834,1077937290,205405824,-2146994944,319123262,-523172235,-523116335,-654847957,103548419,91489934,1048632716,1948452207,1044283471,561250316,244044170,-645200758,89929413,-1048327285,-773730046,-203304479,-17824860,-336759350,1866367040,225776389,89929413,50554088,-335944976,1547093292,8448005,-230952957,-215285134,434893794]},{"sector":6,"length":512,"data":[89929413,50359784,-2096794896,125230078,-1207912368,-497493874,-1008890133,723517112,-1962636794,-1962584050,-1962579394,184899094,51214802,54165194,1191479870,-143310265,378264371,-86964908,-86964615,-634651951,110026124,918881652,-1869609636,1370256,59805840,64195568,-2130413098,-494907194,-1008890135,-1910594396,2084471773,1981743365,-1532713982,-1077697372,-315423418,136855168,-1589545984,512427332,-1019542200,-2137849475,319123262,-1020590219,-352317379,-119308280,406700843,-1994556160,-1962585058,1243515653,2109942533,-1948715260,1513523997,284066565,327075387,604325025,89433080,1453524363,-138398971,-1996166187,50681374,-1559984122,1419838808,1446415109,387077,89929353,1044283587,125042700,774829974,-1958089978,1048614622,1947403631,-771829487,-2130783746,2114285374,-1073019787,505599608,-13498820,-875443247,243977169,-120388035,103689975,91176576,-955288285,351750,1959922592,1594279429,-1023166459,-154931197,-167365578,-1962529242,-154956808,50737718,870830584,968920768,1963287558,1040393733,109970510,-1950153378,-1962667978,-352047298,305564456,826182404,-1960908028,-1962667978,-2096877762,-947711762,-1961956592,-1962667466,-2096877250,-947711762,2093366032,1006078726,-1962770746,1048626118,1946158101,957233946,991198212,2130984198,924203790,990411780,2130983710,-121374462,1044283587,-126549754,57982986,939563497,1946442758,1040595179,-1075481332]},{"sector":7,"length":512,"data":[100533341,1996701056,-661911845,-466435954,-783809142,-772240416,65065440,1590133240,-1141853180,146407426,1141308928,-2012164860,-989984419,-854654277,-1950024176,637407,-855633734,-1144717808,45679747,-2146382585,341822,512435061,-645135226,-1902116678,17152218,-1677472070,-2031554822,-997834004,-2041930258,-1912108860,75283417,-1275066695,1096435,251531469,-1022950332,104382515,-143391652,205391416,1572860277,-2146566652,-411892931,104389004,1249183031,75898507,-1902116678,63879898,-90438736,-332142354,-289110462,-997832035,-385939272,-90379227,-333453074,-289110462,-997832035,45663410,-334501873,-386991460,-2042434551,1251864260,126534790,-1912153714,-1964756287,-1948200699,-773795336,-2114452512,-1979425081,45287805,146469300,1141308928,-1273967356,-1176531981,280625158,-1961833216,130253791,-1173945671,281870352,71569150,-712260857,870352557,1967827907,-1430244617,1371795682,-1948414434,-2096854514,149619393,-577888687,76156555,-773730017,-203304479,-1899800156,-1174047738,95421390,75572874,-268508032,86982272,-1338673920,1430449672,-1977160020,-1442346459,-1977160020,21465637,1296253866,-1403131275,629810926,1135216522,-605927609,1257177008,646579632,-1007745919,1122894768,-301420459,-1408923098,-1341814746,-1977160168,-1442346491,653134000,648807818,414188936,92940014,-1442756726,1967997763,145776084,92940014,92808876,653138096,126485898,1195852714]},{"sector":8,"length":512,"data":[-1410614558,91489934,76158603,-1975547309,-402082788,1130037269,-260748730,205405824,1124234240,281510726,650370786,-472906358,-1070464398,41150416,-22409420,-1007913524,146469300,251837184,71567102,251531469,-1262287804,572145,-352124229,-1158564836,45809672,-1273828596,1096433,-352320325,-1158564856,79364112,1141308930,-32453372,-1023130610,-1900006650,278931136,237406724,2133861646,-2029586906,259260932,343224380,-58674000,-1274383345,1007086343,-1341819856,19917012,1048625927,1946158656,1381061624,-335295302,-1561711384,-167047790,-811465868,-322260467,185469346,-1576831754,96013836,868528640,-1014326053,115928826,-68402454,-1920497590,1962281741,-897087484,-421379315,162650507,-1014313294,-420942086,-68402455,-1048082358,1962281741,-24672252,-421379315,363977099,225777290,-1014305542,74584124,82518028,343209483,-387006286,-331159115,229410696,74774027,233408392,-723368965,431085963,225777290,-1763119878,116031721,-289174790,1122602216,-2008351764,185439111,-2012973834,1124978823,1520297698,1354980185,604276896,1946762255,1946369029,-1017579263,78132932,-164314074,1610909446,-964612492,-58719168,-2093255665,-58703674,-2127334384,-2147401530,712249852,-2143238525,578032380,-2143238525,443814908,104918657,1996749952,-5511159,-964623246,-1070463808,-388896559,1371795459,-56863913,104873600,1378513920,-972206661,1204212743,313842216,281874611]},{"sector":9,"length":512,"data":[175439626,-972206661,1204204551,-1101612504,-1578631167,-346398978,-1157212577,126356813,1200096772,-164422104,1676205710,-1899983617,-1064564776,-1090140541,1018760590,-202780416,1018775461,-772723968,-1901726743,162659800,-1962030657,-1527558409,113183153,1324845838,113681651,856952171,235381440,1074662050,-1576138590,1577520651,-125059021,-1190310469,1099431940,147292935,228784354,1599839502,-2130984103,443740412,2012937344,1444871212,633637456,-523173873,-1795166069,1582828855,-469054689,245568375,1076246542,504329478,-37689258,1577979553,-45693409,1187433217,-642252035,-112817847,-1477947189,868964605,-36509450,-1265896821,-92271281,-1979288800,241076248,-2011395389,-1950151074,-1661826109,553287930,223188107,223642822,1337232129,841052941,-2145351425,360038650,1964411472,-823596019,-1062053657,-406329106,-1645296502,-1013059645,113640584,-301920755,-164379747,1476228072,-225707125,223327371,-981024717,-372117501,-207355533,1472421797,-1946973434,223198202,1103559324,294322439,-1945994869,-1898214208,869830339,63276736,-372157960,-207355533,1507561125,629864747,1975581312,378163223,-387183243,-1302796455,1390997184,-997568281,32200942,-499103761,1594334685,-386518077,-1957167872,898311931,223327371,38111782,-2081422440,-492567609,1472421868,-1661236398,898311930,223642822,1301580545,1337232141,1166681613,-268199934,56986150,-92265336,1343714752,225777290,-420222740]},{"sector":10,"length":512,"data":[-289361320,1357311208,1492042890,-2081488405,-1042152249,-1017161059,1364330071,-1898410925,223198144,1865992499,-2007665657,1334445935,41913094,-1962641525,1944703441,-1510759423,-232011125,-980805749,-92265334,1006925252,-2144766975,74829562,544474684,1975581312,-1974428646,-99781354,-427300628,-289361320,1357283560,1492042890,-285086819,-924696506,-2130132093,2081254907,221132957,-2008452082,-1978790610,211814487,235512334,-430708498,-811547982,227713549,-431494930,-1062068048,-432019218,225777290,-432543508,104873600,-1307216640,235577548,-301070430,-1293540120,235643082,-301070174,123361627,1364706143,-242484597,-1920275150,775425363,208930368,1964572547,1224638727,1224832084,1304163211,122259469,235736712,-1945863797,-1898214208,-774336829,-1543277591,-1510800669,-611401586,-1933353127,-1145008424,1586040336,4623374,1582848195,33375942,-2012312629,518115588,-661733236,-1947728377,-1597825277,-141029755,977205226,244359942,-1743878752,1056434679,-1801255366,-2069839090,-352872434,104349431,-1609658717,-141029756,943650793,244491014,28856515,104375040,-1576650077,-2052977020,-1777940978,-860160242,-625808381,41222568,378059442,-1964241257,-1329548574,-331157968,-729098102,29619948,113647733,-1191702890,950206472,104506118,-1307671390,-301879100,27847746,117310581,378211972,-494924137,80380144,1122896304,-125154580,-163569884,125075655,1963049974,-1562324990,28315269]},{"sector":11,"length":512,"data":[1256997614,-1007238914,-805145536,-2077848856,29619726,146014836,-1555503882,-1969025394,163004430,243547704,-653195,-523116335,648274129,799229958,-301486076,843770946,1946331364,30179331,57950376,-1341993856,-331157998,-1559326557,787943052,512362042,-75493755,839155201,-1543768065,-1556085711,-1070397912,-1559923038,-1801253230,68199182,-956034397,-804349178,64404031,1122895024,-1073067284,196087668,-1460911378,-955878399,-804349178,-1950132097,-1592877802,-285602145,17021522,1525579952,-68238198,64404163,1122908080,-301921044,-2365245,-1207707974,-1192296393,-1192231112,-1192296391,-1578156230,-1717367141,-282021874,-1691973056,-2143228146,-1192288316,1089404979,1089421551,-326384657,872391912,38156736,1178202996,-955943676,1070597190,587613835,1038251200,-579403772,587744907,1037464768,-780729856,-1207710022,1122894081,1356891884,-270257590,-301792328,-528028606,-466466224,84261103,-2031336722,-1270198048,146337538,-331158008,1246814342,-1192230988,1122895366,1356891884,-236683190,-284898176,79217842,-331158012,1246814342,-1192294732,1122894338,1356891884,-284183478,196662962,-331158005,1355056714,-1192296012,1122897936,-997831956,-1610565552,2123088014,-1723954940,-773574130,-774582041,-1294675737,-804212522,-790310684,-270216988,201704998,-1308259802,374990,402897135,41323503,45663410,106859272,1946352512,139365160,-788234613,-790113817,-794497044,-1538265116]},{"sector":12,"length":512,"data":[1206906064,-270217052,-498621361,-789786390,-338004500,139365165,-788234613,-152579609,-269692713,-270217052,-321870769,-2010757137,-270217155,-2035628154,-438155321,-321852208,1586221941,-1328107004,-270038480,-270300608,1258839555,-270300608,-279384232,-279395150,-827134120,-279384232,-279384232,-1950093480,-30152468,244782731,145288442,-1460864139,-67406840,-1962778997,-692452274,-1202656253,1122907959,-997831956,-18579376,-1976323857,-1975455769,512487395,-920449383,-651492227,-1975465677,-1975455771,833679329,1492116362,-1007789841,-1610196802,653659714,-930413432,-946937972,-1391573825,-492059514,922731514,922682504,-1683943870,1152929806,233328654,147096574,243704259,-1962931707,-2096199146,-1036318014,-2002695049,984334,244061835,990888579,-1589938238,512427326,103482684,506135874,1048577344,1946158454,-1946431230,1107593750,-773664446,1256378850,-930360573,89787907,-193271735,1525155954,-43128579,1390937835,8382717,243799691,88217131,722372257,1426407430,48779346,79987711,-1950090403,-1961979338,-384922050,915141687,1049300628,1048579728,1979846276,1110846216,1111360261,-199366395,-1743879008,69938935,104349431,-1609660765,-141029755,-150721234,-1559872962,-20771192,-1996208882,-1996144610,-1962589682,-52434702,-402649880,233372523,-748688897,-1157836568,934282198,619463406,-775688450,-773598749,-773729821,-1579036191,-1023212232,859764633,941000964,-2046426363]},{"sector":13,"length":512,"data":[-9443314,-150042973,-1979303890,-2146532322,75366907,-67633358,586377448,-2096196090,268843070,-266075531,-1593492317,-1056766662,893319065,974555396,-2012871931,-12654578,-150042461,-1979303378,-2146532066,75366907,-67633358,586364648,-1559325178,512427326,-930413252,89005611,89132587,952710633,-2009697273,977174535,125042950,87492152,952305524,1947190022,-994422239,-387122685,-1336876959,1525214885,-387169568,2133123157,-531633938,-68265910,-135675046,-119308051,76158603,-489602494,-489561391,-1949105334,1510867912,-102217467,28941554,974010624,-1591839738,787940678,1056378825,1185089082,88383749,264711927,104349431,-351976285,940456209,-2146994938,357950,1054016628,-1013119676,79188124,1141309039,-32453372,604259342,1916812415,46433043,108479804,-472783919,512353233,132843046,637978456,604143622,1872908415,63224325,-285604176,1121956072,1492052656,-1948266776,-335204330,1356833000,-387053136,-331161703,-401620318,1481301905,977175534,125108486,264453760,-1169263616,-1799879740,1866367230,158795269,91176576,-1274907133,-285565826,1121936616,-1645296506,-1329297846,-547886849,-548149010,1323887682,-2137053985,1694854974,1048580722,1952843119,-2145383413,1778741054,1611399794,516136430,1048780550,1963001402,-1019314169,57933839,520362472,1276545987,-773140220,-773139990,75866602,243980427,-163511164,-1010267167,1023814819,158728272,-523116335]},{"sector":14,"length":512,"data":[648274129,672041222,805750534,-1992314874,-2012913130,-1996082146,-2012231394,-1324991970,839813128,939968262,-100661242,-1341930310,-1092030975,-68402466,-243218422,-1980943871,-1274034418,244040449,28577739,71567102,1049235661,62129508,45355213,251531469,-1161624508,378012612,1357645864,-1962589023,-1962588642,2026376139,32499971,75087907,49010935,-618414037,-604568455,-617938197,1998650240,1914715140,-2145340670,1033278,104468340,158666693,264642106,-857144459,264610305,264642184,-1946485419,-291458824,1121857768,-567547668,-1582282160,-568071954,518581314,-1337306914,384364194,-387169570,1246813713,-387013712,-331162103,1356727528,-301813686,1121844456,-570955540,-300961712,1256059112,-386990416,-331162135,1356719336,-387006414,-1337270819,-689377549,-387169571,844160465,-890704192,-827176227,-387053392,-331162175,1356709096,-68239318,-156187470,-575674130,1347087426,-386990160,-331162203,-788504539,-773795360,-792425760,182767844,1257681120,-578033426,-266015678,1257161738,-387054416,-331162243,-301486000,-2033743030,-654862141,-1979703291,132219083,-1014965258,-789852128,-1947479829,-1912250818,-4210745,722448830,25880813,-1123081794,-2115436545,1489285633,78700682,-386991460,-2042438347,1251864260,-1973894010,-1661554464,585690874,-997834019,-2041930258,1489941188,145809546,-386991460,-2042438387,1251864260,-994917242,-1327461800,-587470605,-386991460,-2042438411]},{"sector":15,"length":512,"data":[1251864260,-1973894010,-385961760,-90383131,-589305618,-289110462,-997832035,-1327461800,-590354430,-386991460,-2042438455,1251864260,-1325742970,-1159139677,-296205604,1255978216,-387013968,1480776877,-592975634,-291393462,1121755368,-1696010664,-1599059236,-300956510,1121751272,-50598312,-2146243747,1033278,-1564603532,24700942,264505030,1141803776,2043224837,-1949750526,-83540450,264374006,-788368256,2044404707,-1160041726,-1158937638,816841664,-1460911378,-788368320,64666337,64273132,-1327461652,-331157996,41173160,-1974803503,-994382140,-1327134205,-1661297508,518582010,-997834020,-2041930258,-511033148,-1663299352,183037690,-997834020,-2041930258,-410369852,-1663304472,-152506630,-997834021,-2041930258,-477478716,-1663309592,-488050950,-997834021,-2041930258,-391794492,-386999339,-331162671,215731432,-957813120,1486703323,1364247534,537254135,-1949791488,-1666993979,-1360466182,-997834021,-2041930258,-1561835324,-285565733,1121688808,-1645296506,1220838986,-1663332120,-1964445958,-997834021,-2041930258,2129152196,-285565733,1121679592,-1645296506,-473659830,1504375554,1958749016,-1253027742,585826975,-31427383,-1396339771,-528039725,-90389114,-615782162,-289110462,-997832035,-2033875384,585683908,-1977453349,1311017723,-981024557,-386991460,-2042438871,1251864260,-2042051450,-1966550075,1976565444,-13980960,50654851,1959338739,1213744641,-1017601931,-994379108,-301813757,1121646824,-621549332]}]],[[{"sector":1,"length":512,"data":[-22001072,-622073618,-420942782,-1070444326,-622860050,-286019510,1121638632,-623646484,-289394096,1255853288,-387054416,-331162939,1356513512,-387054580,-1303717191,-1293357874,28332250,-626267922,-1494684606,-1070968614,-627054354,-301748150,1121622248,-627840788,-289396144,1255836904,-387054160,-331163003,1356497128,-387006422,-1337271687,1927867910,-387169574,609278573,1726541553,145771226,-631248658,1525214274,-5222182,-1329286418,1323888374,1256997594,-285233072,1121600744,6301164,-523116335,-997531439,-456071984,-156180470,719908426,619463386,-289142032,-301682614,1121590504,128995564,12060398,-390033760,-1308163894,-527804220,-90438480,-637540114,-289110462,-997832035,-1327461800,-285565706,1121578216,-1645296506,-1295743414,-301420338,1121574120,-689377704,112216793,-640685842,-387033022,-1337271863,-1024922107,-296205607,1255783656,-387054672,1480776117,-642782994,-301879222,1121560808,-1561792936,-296203559,-1973893966,-402345760,-90383979,-644880146,-289110462,-997832035,-1327461800,-645928717,-386991460,-2042439303,1251864260,-1973894010,-385961760,-90384023,-647763730,-289110462,-997832035,-1327461800,-648812542,-386991460,-2042439347,1251864260,-1013070714,1048626354,1996883311,1866367001,309723909,-1089559874,417914752,254983680,-387997505,-1564606449,-8339698,-1107294488,-1598091470,45635071,-1948349688,63144943,-386991460,-2042439423,1251864260,549045382,-1946973440]},{"sector":2,"length":512,"data":[-964451075,1274733059,-529273648,-826621091,-319120381,-1562845976,78647309,-657200914,245558338,33863696,-657987510,-386991460,-2042439487,1251864260,95470726,-659298066,262335554,374800,-660084662,-386991460,-2042439519,1251864260,112247942,-287795992,1121489128,-661919508,605032610,-301724671,-90389603,-1341927750,270961158,-285565936,1121480936,-1645296506,-1329297846,254183941,-664803312,-386991460,-2042439591,1251864260,78693510,269362826,-1663547160,1122561786,-997834024,-2041930258,269328580,-1094476306,-922089896,-771081611,-1070385548,95548554,-225713453,-661725300,75828875,770236302,12066559,-1076326752,-1408823346,541427750,1202376950,-1064503838,1978194062,265142015,-1064380276,871972840,-1010267200,-284425224,-150273288,-284425240,-150273304,0,1278803968,8650496,-256,-16776961,0,-680800000,141288555,-781464724,325833067,-781443476,1382827627,1802263404,-1972601492,-1502883476,-781404820,-1049900181,-882126484,-630403733,685178988,521150019,-1300346413,910504543,901526824,910898032,901920046,880620218,-1393680650,-1392464652,-1390760698,-1389581024,-1374966478,1092726292,1129988392,17248,3932201,-1191444374,1824138531,-1205744284,567096627,-1022639988,-963896204,1220200755,-1195209132,869072916,-8271988,41243720,-845359301,2004131123,-8271988,1869960264,1802884923,1512054409,1511929481,1513359102,-1157618760,869138431]},{"sector":3,"length":512,"data":[1962933123,1461618692,8502788,8392330,-922042317,971509364,178703,-1073060494,1735727794,-2147478854,5911358,-1293415052,675184655,477429850,-1207955270,869072928,1512310470,1975520002,604423688,381289306,128706816,-401945623,-2118243523,-2146530816,1959332352,250275931,1912603322,1964552726,242083879,460701707,-973069126,274342918,-972587799,190456838,-972589847,173679622,-402166551,686493517,1512310470,123726092,1551171584,1551850618,1565678724,1582718455,1583373915,588471909,67191603,1110581778,137303691,137077484,1862318160,382589747,1213266817,-2012973736,503726878,-1896873800,-29458216,91618559,1764132918,-617406630,-2063597126,1952064790,-1568175341,-11381925,1935366864,-1606515918,611647579,-1014766895,16417026,-136546814,5907718,-150571648,-346413802,-1610168375,-973076901,274342918,1537218187,-2130261783,-10869466,622213503,-2094042022,291120446,-4708236,-623820545,1448213363,56342206,503614192,1512423175,-1207597018,105906177,1189613143,113541962,-1377216162,37665283,985271787,-1173820670,65733174,-335400262,125099580,1960721644,-322701054,96065674,-566432768,988607349,-487688765,1327401204,-1991620090,-1173869290,-1129119711,1912731624,1959332377,49905698,1048598901,1946180201,-972901038,-1593299194,113723883,678816,1512310470,952367378,1952082190,822527529,-1581604856,790005760,-392252664,-630062664,309643530,-2146909824]},{"sector":4,"length":512,"data":[393546233,137430726,33732896,113708523,547744,1512310470,-1195116271,103481916,-1057093587,-972820574,51122438,202509960,1980234112,1757511683,-2012692096,-167237362,707692757,201895944,-1279332863,19773867,1069204472,-292442110,-1328244504,1256229541,-1897337270,1108455636,-2031555006,-330675500,987005160,855930052,1120139730,-1176466708,-13490416,-321622808,-66396110,-186457974,578158346,12066384,-2133291280,-33554882,74799135,602604209,1537214151,113639432,-384738780,95487305,1963050998,-167595762,125110471,80213569,-968818315,17568006,202509960,-972543554,201328644,-972543298,80936452,137168583,1051853372,-1091665744,632925408,-1262225407,169201088,643134948,-1157478518,-96728207,1958415220,1962687500,2012756996,689866815,-852446200,1912814625,-1475228365,-970099708,67899654,202522248,-1179655234,-963968330,689371693,690809606,699563526,-1202032122,103376461,103360857,-1007111700,213828601,-1106384038,149641744,-346417986,1511570947,-1342122776,71868935,1235355312,-1339919612,71868947,71839440,1235358384,1227804676,11790340,1218581424,-1575833596,24314953,216957379,-772877990,-1564046354,96338927,31373742,-319110152,1356021992,137172619,-387022672,129028917,-751834898,1388546626,137303691,-752621330,-297137488,1523784936,179954570,-300896256,1389564136,137434763,-754456340,851649114,1960846019,-300502993,1389557992,137434763]},{"sector":5,"length":512,"data":[-1021158676,477421602,-578104350,129105034,57926864,-498876022,1976303351,-1966568949,99350767,32229682,1376497913,137434763,-759174930,-1957537702,-301453546,1455684442,-1548879204,-1565784019,-1565784023,378210346,-1031796691,-761534461,-2135928596,-288189208,-1897379254,844164306,-762844992,-2098705682,-1336873774,-763631520,63078638,1927807664,1246424786,-321753880,-390057392,-387001755,-1031744927,-765728764,1458064108,-397349678,378208331,779290669,79855704,-360687378,-767563773,-1337834770,-768087936,65700078,-768612264,-396868882,1122947625,585652290,1587408594,-1337801735,-997986815,113679626,-1610478575,137103401,1577849506,-301879101,-1677399424,-1070391557,1824249998,-334525948,-59502790,1210485294,126544900,-533020374,-1658849165,-335166848,-401887158,-370224683,-896741117,79348366,-1225162496,-972524030,257565702,-1090336535,-114615888,-1957275823,-1094243386,146365066,202489600,1946238336,37584906,-1698820747,-1962757798,1174733116,1593369158,1049188703,-372177340,-207355533,570869669,-1941640102,143434696,-1559721821,-895286338,63087363,-1560033629,-358415410,-1073297661,-954282237,-821836794,-1140406500,-954329341,738446342,-402208993,-1591946237,-928840124,136945667,567096756,65281673,65406604,-1900543816,1073659864,-1954545989,-954758387,-1206766585,92886648,227084089,544479113,-1896873800,1280293080,-1068890567,104403572,208978000,-535361991,104400500]},{"sector":6,"length":512,"data":[91603020,1059489846,-1899459578,75098328,104742528,-1944226557,-1077440801,1049183468,163459770,1030499,-945425500,190456326,13232453,-402364952,820511921,302036995,855642299,185650633,-1206815287,280695296,-18176,1967198413,9431299,104728262,1512225537,1156333441,130483317,12076932,-2129605172,1974193657,1024362500,872068108,168873435,-299988769,-1151437565,1065441826,74794884,1278805959,143656647,244059447,-1070397294,205391416,109122676,18876467,90834631,113709714,269616466,104336363,91491387,137561731,1111392347,158728454,-1576648542,1000475710,-1965519348,-1610331866,-880016285,-85402738,-1206719514,-919392256,281923979,91541771,104728262,-1899459582,4241600,72820471,64690366,167559152,-1191181125,1027080208,-1527576459,-210383874,-117242133,-185863933,-1194371864,567096592,65945216,-2145684224,17186366,512300149,109839328,113705954,1234306004,64360076,512297195,109839316,800588758,-1994273483,-1945905122,-1207707130,567096627,64757385,64882316,-852162376,-803305183,-771322877,993951747,427032588,-1360152,-16480202,-1592901066,-1202712933,-397408680,-997987488,965128,1513111168,-1174178816,1048576034,1946158670,-1945325054,65840072,1375976099,1510041832,-1912390168,-1275057146,-1155412663,-1270153196,186764606,-386435621,-1070397658,-1073007667,648220021,440840,1512310470,-955454704,-16243194,571902975,-400044710]},{"sector":7,"length":512,"data":[1286865666,-849730400,1946586657,-1378514171,855974694,1128508167,-1393265334,839197222,1195616775,-1008278969,-2133094882,359998,-1957683852,553418951,-58710148,-2146730944,494756092,536932225,-947841045,525869056,-611443005,92159616,1342665728,-347551861,-1021355820,-2132963810,359998,-1957682572,-1979317306,-58703868,-2132378592,192692476,2103508096,15630812,-2116621536,1478492358,-1910586593,2118025437,-193724411,1220971344,-678701845,105125419,100778635,100730232,100730234,100732438,100729796,100729792,100729788,100729800,100729832,-1064565812,-1560033629,-1096612926,63611651,-1560024413,-1163721778,-532774141,125042691,64230913,-1962682717,92323522,16791993,-498711036,221757178,67177393,-85834170,-1319474498,18647824,-498711033,1144425464,571378438,-775017638,-1543408663,-1933335053,851480280,385531840,205391416,1119822965,1623687438,990263296,-1088981748,1048579162,1963001406,221757197,65930808,-947846027,-397278966,22740800,22684166,-1022999546,436254927,281926451,1064639036,-2147073345,125043199,1963064192,-33161724,133922821,-75493516,-2146798584,91490303,1963523968,104899098,-2147073630,802878,199757173,993951744,57999372,-1023371544,1946185960,-843008987,1977879061,1207314021,1584660997,245171911,113705108,-2158945,245434054,4974847,-1024964491,64404200,1122943026,-322108184,272429092,1000486005,205300236,1512179399]},{"sector":8,"length":512,"data":[1048596847,1946158062,-1878604015,-1945222648,-955739634,1611174918,113754880,239208598,144182924,144312007,-1950154656,-1609655018,-285602145,-402586438,-1964192583,-1659466784,245473294,-288576280,-1510178565,1862318275,-75427635,812996151,205397640,205463176,1512179399,1048599052,1946158062,-1878604015,-1945198072,-955739634,1476957190,113754888,245500054,144182924,-268388157,281926451,1330379649,113640821,-1023211970,-1896873800,1048585920,1968242677,-838880191,66879504,-58705804,-1942785017,-1077440801,683558124,4045155,78751219,-1118134594,-1497676566,-1377258918,-1031079797,63277994,-1413010681,-270384317,1512179399,-1161607834,-4652102,-661984001,180564716,-503088960,113689591,-1023146434,-1962649695,-1947807248,1387436468,-1273722026,1579273481,-1947073702,-855002092,1622786849,1685504,-108842035,-1189317506,431489184,-2127311616,1946205945,12630286,-855631432,-554073805,-1173654272,113639454,-384935388,-919339863,-855632712,-841381069,2144819,829807371,869081008,1023415994,762642463,1029316769,628424796,-1064512629,867752078,-1943941851,-1898279222,-1269162490,-1172189879,1726545940,604423932,1592331610,604423932,1458111322,774302716,71569150,1175387694,-326413052,-13758900,-2096895970,1564738244,1141308974,117321220,147457094,251538944,-30538684,1006913038,168064046,-82151964,1381061456,508909143,1290570502,1442586382,63184639,233391197,1048784385]},{"sector":9,"length":512,"data":[1946158046,117321231,-30538684,772032006,64761599,1141308974,117321220,785318982,71569150,1175387694,1364414468,1431721810,-326433250,235072643,-50569586,-870383787,-386310909,-998047132,117321238,-30538684,-100383226,-802226386,1393245443,-75494283,-2141751806,259130875,-58699541,1011578134,1006924805,776172807,71569150,1175387694,1364414468,1431721810,-326433250,235203715,-50700658,16664262,62922495,16678528,2122343796,661979646,33483001,773375107,71567102,1174863406,-2094073340,252478,-2094135179,251966,-13741196,772003886,64634499,772306176,64503427,1427993600,29812985,-30475620,772031494,64495359,1141833262,-806855420,-94466559,-1879279873,-16533498,-2096908258,520554180,1516199517,777542489,71567102,1174863406,-30486780,772031502,71700222,1333060618,1946483840,1048587850,1946160189,-839090171,-58704524,1006925073,775189808,65027715,-2145553408,91418876,1996160128,1994656290,117321246,-30538684,772032006,65023743,1141308974,117321220,-13761466,1342428206,1465012563,102651222,-326898549,1586368010,-939764236,64838,62660351,16678528,-998046091,-10032882,65027715,-128814080,-16712728,-2147232738,1962999166,-195129851,-386323221,-90439448,-534839506,-326413053,-401554045,-1944125194,1586365534,-42041100,-16026366,110098806,520029112,2122318776,-1368063234,-1879345409,-16533498,-352077794,-1444349535]},{"sector":10,"length":512,"data":[788175872,64233215,-2081649835,-1209528123,1586241280,-195129852,216781035,-2081649835,1187381996,183173630,-2081649835,1187381996,-30539522,772031502,71700222,1381061456,508909143,-2081649914,-1911683860,-956499362,1426128454,63446783,-25264035,1428517888,4647161,-30475620,772031494,65281791,1141833262,1586388228,-59310086,62391951,62398207,117884035,1600019743,1482381658,1141308974,117321220,2122318918,91554046,1560462467,46433231,1183566685,241077008,-1962127733,2123041366,108432136,1929397902,39751174,-1023119733,-1995422071,1317604958,173443340,-1995932023,1586234998,4623362,369801411,-1073008691,12063348,-1473262314,-1207339649,801982080,74825739,57983027,-1023409736,-946937972,-1083790914,-678756260,-1543393863,378119667,867698168,-1172189915,378077649,280495604,-1172189915,378077452,800589302,-1172189915,378077901,698353146,-853167096,13810209,99751561,-853210952,-466435295,1949252780,1021256775,-31623857,-1407355703,1178394404,-906096011,615256692,1967537375,856096263,1512612442,-730478082,104382514,359946803,1512506936,-796258187,1512390273,24413183,672544832,-1007041702,704711656,-1596593201,102914601,102914602,-12821973,-315484812,-41224822,71964298,72949386,73010826,-1967422232,173681694,839219419,-1144919809,1513176704,-385649664,868467654,872822976,951874650,1952067846,858828814,-1959539255,-1341371874,-2144088784]},{"sector":11,"length":512,"data":[5911102,-919399308,-855625544,1141803827,1125550604,3192844,1048589261,1946158444,773753353,19839066,512373709,-620078545,783811960,-1607217918,102914601,102914602,-12821973,465054068,-1338782464,688273663,-1979419558,945432862,1952066054,705595908,721827930,-1979419558,-1336268010,-1976316646,173681694,839350491,1882367,512439245,582485079,-1942762240,-1329164594,1462171456,-619182844,783872139,113408,512373709,-620078547,-13498508,-855626312,-1403927757,1513293566,-1962877147,1105952984,1998191488,-1847280,1499084199,-20723714,-346411002,654769910,-386864294,-176881394,1512376007,-471105519,1946223080,277992,-1073028233,113762164,2120229,1512384209,-126498562,1512377985,-1075085312,-1576987928,1252153899,-390796540,698482951,72983130,-941053461,1034843136,-1451819006,-1519075318,1512376007,651231233,-922854875,785512565,243358245,-2147460571,1156088299,-27758079,-379964922,-639041675,72851968,-1560318743,-2014837396,-1979550464,1513005767,-385917719,-469106566,-5242252,-1571147870,1256785229,6875391,-32748893,-379965178,1541996349,1958742784,277778,765594999,-224245670,149987848,-369154839,1072234283,-1342016256,-1576590335,317282860,6678783,-1571149150,1441334362,5892351,-1571149150,-85392294,1632510,113693045,-369161152,199818989,-943426304,542778630,-18880128,-919383471,334223755,179881982,-1947601152,1942684360,197524994]},{"sector":12,"length":512,"data":[-1407879726,-343877494,-2147126736,-529135109,180456270,-1017554177,-335544391,-3610381,850920309,6569216,1689781110,844219136,-386037011,-973209521,729040444,1312605694,-973198476,527713340,1396491774,-973198732,1161610750,-973205132,192172092,1228719614,-315488908,-28389378,1506118343,-389546301,1279000595,-353635980,1006635752,-18320058,-339214651,1631366370,539755122,861032899,-1997632814,-1408482506,-527776258,1346166564,1139284853,1214346495,1929380925,1408172635,-661979342,205964161,-346343670,1968389338,-14358501,1028145780,1014169604,844361474,-2116515073,168576707,-1142203625,225788732,1979647464,-1997602269,-351517906,553418922,-58677900,1308980527,334220798,1947073664,184320012,-13498508,-335941886,-2066874857,183858674,-2012973834,168576310,-2012973870,-133413866,1499135370,1431260611,1227769171,1291864398,1163089231,1850017597,1936288871,1917191784,1751346789,1953842181,1191602275,1634562661,2001930094,1936286821,1766197096,1936289390,1884489576,1936289377,1867516520,1735750770,1702061429,1635010823,1851877740,-1737547008,-1284621968,-546257552,661714544,1467038577,963824753,-109910162,712184690,1869831027,7572339,460208501,1198861685,-1888133515,-1082809483,964113525,1635209070,-1837663369,-680017033,1752691575,-2089928327,-1350986375,-143014279,662309753,964402298,-914638994,-92544133,1065102203,-797156484,-345097859,394132861,1602104958,-1887538306]},{"sector":13,"length":512,"data":[964691070,830480238,1652575104,-1484745856,947962752,1399732610,2139252098,-947743102,159570818,1937076045,1886999653,1632372837,1635084142,1209361767,2053730927,1635020399,1852134252,1769236851,2037672310,1919243795,1633905012,1852134252,1769236851,2037672310,1970226191,1415933026,1936028264,1684828008,1952661785,1097168489,1818583907,1952543333,1349414761,1768320882,1225614700,1919251566,1953527154,1702125906,1920287506,1148350323,1819308905,1698986337,108618092,1869440333,1209366898,2003071585,1130721889,1869836917,1886737266,1953656688,1919895058,1698981219,1819631974,1920287604,225603443,1635020626,1852795252,1818717761,1917848933,1918987625,1953841785,258895732,1868784979,1918985326,1953841785,158232436,1667853379,1668238443,1096488555,1818583907,1952543333,1349414761,1768320882,1563518316,1665227542,1701602659,1769234802,1917873775,1818846831,375206501,1667449179,1919249509,1869182049,1869762670,1701603686,1528192307,1701012289,1634887020,1852795252,1718579792,879062121,1146817629,1867535183,1702129257,1527799154,1684957527,1349744495,1953393007,190673509,1701800016,1115187566,5459785,1937064451,1919243014,107766121,1869639241,1342403698,1292055123,100685907,1299672908,1208315237,1835355497,1296909571,1631978752,73757548,1702195796,1717980931,40783618,1493397326,83915621,1700946252,1867319404,1701668214,1174828142,1869898593,1342898290,1953393007,1767076453]},{"sector":14,"length":512,"data":[1342989690,1953393007,1866691173,108162924,2003792455,1409902708,1936028264,1684828008,1818575877,83917153,1818324307,1699546732,1836411236,1918979077,100689255,1836216142,1376218209,1919252069,1410033011,1936613746,1701994864,151024750,1937076045,1886999653,1632372837,1635084142,1209361767,2053730927,1635020399,1852134252,1769236851,2037672310,1919243795,1633905012,1852134252,1769236851,2037672310,1970226191,1415933026,1936028264,1684828008,1952661785,1097168489,1818583907,1952543333,1349414761,1768320882,1225614700,1919251566,1953527154,1702125906,1920287506,1148350323,1819308905,1698986337,108618092,1869440333,1209366898,2003071585,1130721889,1869836917,1886737266,1953656688,1919895058,1698981219,1819631974,1920287604,225603443,1635020626,1852795252,1818717761,1917848933,1918987625,1953841785,258895732,1868784979,1918985326,1953841785,158232436,1667853379,1668238443,1096488555,1818583907,1952543333,1349414761,1768320882,1563518316,1665227542,1701602659,1769234802,1917873775,1818846831,375206501,1667449179,1919249509,1869182049,1869762670,1701603686,1528192307,1701012289,1634887020,1852795252,1718579792,879062121,1146817629,1867535183,1702129257,1527799154,1684957527,1349744495,1953393007,190673509,1701800016,1115187566,5459785,1937064451,1919243014,107766121,1869639241,1342403698,1292055123,100685907,1299672908,1208315237,1835355497,1296909571,1631978752,73757548]},{"sector":15,"length":512,"data":[1702195796,1717980931,40783618,1493397326,83915621,1700946252,1867319404,1701668214,1174828142,1869898593,1342898290,1953393007,1767076453,1342989690,1953393007,1866691173,108162924,2003792455,1409902708,1936028264,1684828008,1818575877,83917153,1818324307,1699546732,1836411236,1918979077,100689255,1836216142,1376218209,1919252069,1410033011,1936613746,1701994864,151024750,1937076045,1886999653,1632372837,1635084142,1209361767,2053730927,1635020399,1852134252,1769236851,2037672310,1919243795,1633905012,1852134252,1769236851,2037672310,1970226191,1415933026,1936028264,1684828008,1952661785,1097168489,1818583907,1952543333,1349414761,1768320882,1225614700,1919251566,1953527154,1702125906,1920287506,1148350323,1819308905,1698986337,108618092,1869440333,1209366898,2003071585,1130721889,1869836917,1886737266,1953656688,1919895058,1698981219,1819631974,1920287604,225603443,1635020626,1852795252,1818717761,1917848933,1918987625,1953841785,258895732,1868784979,1918985326,1953841785,158232436,1667853379,1668238443,1096488555,1818583907,1952543333,1349414761,1768320882,1563518316,1665227542,1701602659,1769234802,1917873775,1818846831,375206501,1667449179,1919249509,1869182049,1869762670,1701603686,1528192307,1701012289,1634887020,1852795252,1718579792,879062121,1146817629,1867535183,1702129257,1527799154,1684957527,1349744495,1953393007,190673509,1701800016,1115187566,5459785]}],[{"sector":1,"length":512,"data":[1937064451,1919243014,107766121,1869639241,1342403698,1292055123,100685907,1299672908,1208315237,1835355497,1296909571,1631978752,73757548,1702195796,1717980931,40783618,1493397326,83915621,1700946252,1867319404,1701668214,1174828142,1869898593,1342898290,1953393007,1767076453,1342989690,1953393007,1866691173,108162924,2003792455,1409902708,1936028264,1684828008,1818575877,83917153,1818324307,1699546732,1836411236,1918979077,100689255,1836216142,1376218209,1919252069,1410033011,1936613746,1701994864,151024750,1937076045,1886999653,1632372837,1635084142,1209361767,2053730927,1635020399,1852134252,1769236851,2037672310,1919243795,1633905012,1852134252,1769236851,2037672310,1970226191,1415933026,1936028264,1684828008,1952661785,1097168489,1818583907,1952543333,1349414761,1768320882,1225614700,1919251566,1953527154,1702125906,1920287506,1148350323,1819308905,1698986337,108618092,1869440333,1209366898,2003071585,1130721889,1869836917,1886737266,1953656688,1919895058,1698981219,1819631974,1920287604,225603443,1635020626,1852795252,1818717761,1917848933,1918987625,1953841785,258895732,1868784979,1918985326,1953841785,158232436,1667853379,1668238443,1096488555,1818583907,1952543333,1349414761,1768320882,1563518316,1665227542,1701602659,1769234802,1917873775,1818846831,375206501,1667449179,1919249509,1869182049,1869762670,1701603686,1528192307,1701012289,1634887020,1852795252]},{"sector":2,"length":512,"data":[1718579792,879062121,1146817629,1867535183,1702129257,1527799154,1684957527,1349744495,1953393007,190673509,1701800016,1115187566,5459785,1937064451,1919243014,107766121,1869639241,1342403698,1292055123,100685907,1299672908,1208315237,1835355497,1296909571,1631978752,73757548,1702195796,1717980931,40783618,1493397326,83915621,1700946252,1867319404,1701668214,1174828142,1869898593,1342898290,1953393007,1767076453,1342989690,1953393007,1866691173,108162924,2003792455,1409902708,1936028264,1684828008,1818575877,83917153,1818324307,1699546732,1836411236,1918979077,100689255,1836216142,1376218209,1919252069,1410033011,1936613746,1701994864,151024750,1937076045,1886999653,1632372837,1635084142,1209361767,2053730927,1635020399,1852134252,1769236851,2037672310,1919243795,1633905012,1852134252,1769236851,2037672310,1970226191,1415933026,1936028264,1684828008,1952661785,1097168489,1818583907,1952543333,1349414761,1768320882,1225614700,1919251566,1953527154,1702125906,1920287506,1148350323,1819308905,1698986337,108618092,1869440333,1209366898,2003071585,1130721889,1869836917,1886737266,1953656688,1919895058,1698981219,1819631974,1920287604,225603443,1635020626,1852795252,1818717761,1917848933,1918987625,1953841785,258895732,1868784979,1918985326,1953841785,158232436,1667853379,1668238443,1096488555,1818583907,1952543333,1349414761,1768320882,1563518316,1665227542,1701602659]},{"sector":3,"length":512,"data":[1769234802,1917873775,1818846831,375206501,1667449179,1919249509,1869182049,1869762670,1701603686,1528192307,1701012289,1634887020,1852795252,1718579792,879062121,1146817629,1867535183,1702129257,1527799154,1684957527,1349744495,1953393007,190673509,1701800016,1115187566,5459785,1937064451,1919243014,107766121,1869639241,1342403698,1292055123,100685907,1299672908,1208315237,1835355497,1296909571,1631978752,73757548,1702195796,1717980931,40783618,1493397326,83915621,1700946252,1867319404,1701668214,1174828142,1869898593,1342898290,1953393007,1767076453,1342989690,1953393007,1866691173,108162924,2003792455,1409902708,1936028264,1684828008,1818575877,83917153,1818324307,1699546732,1836411236,1918979077,100689255,1836216142,1376218209,1919252069,1410033011,1936613746,1701994864,151024750,1937076045,1886999653,1632372837,1635084142,1209361767,2053730927,1635020399,1852134252,1769236851,2037672310,1919243795,1633905012,1852134252,1769236851,2037672310,1970226191,1415933026,1936028264,1684828008,1952661785,1097168489,1818583907,1952543333,1349414761,1768320882,1225614700,1919251566,1953527154,1702125906,1920287506,1148350323,1819308905,1698986337,108618092,1869440333,1209366898,2003071585,1130721889,1869836917,1886737266,1953656688,1919895058,1698981219,1819631974,1920287604,225603443,1635020626,1852795252,1818717761,1917848933,1918987625,1953841785,258895732,1868784979]},{"sector":4,"length":512,"data":[1918985326,1953841785,158232436,1667853379,1668238443,1096488555,1818583907,1952543333,1349414761,1768320882,1563518316,1665227542,1701602659,1769234802,1917873775,1818846831,375206501,1667449179,1919249509,1869182049,1869762670,1701603686,1528192307,1701012289,1634887020,1852795252,1718579792,879062121,1146817629,1867535183,1702129257,1527799154,1684957527,1349744495,1953393007,190673509,1701800016,1115187566,5459785,1937064451,1919243014,107766121,1869639241,1342403698,1292055123,100685907,1299672908,1208315237,1835355497,1296909571,1631978752,73757548,1702195796,1717980931,40783618,1493397326,83915621,1700946252,1867319404,1701668214,1174828142,1869898593,1342898290,1953393007,1767076453,1342989690,1953393007,1866691173,108162924,2003792455,1409902708,1936028264,1684828008,1818575877,83917153,1818324307,1699546732,1836411236,1918979077,100689255,1836216142,1376218209,1919252069,1410033011,1936613746,1701994864,151024750,1937076045,1886999653,1632372837,1635084142,1209361767,2053730927,1635020399,1852134252,1769236851,2037672310,1919243795,1633905012,1852134252,1769236851,2037672310,1970226191,1415933026,1936028264,1684828008,1952661785,1097168489,1818583907,1952543333,1349414761,1768320882,1225614700,1919251566,1953527154,1702125906,1920287506,1148350323,1819308905,1698986337,108618092,1869440333,1209366898,2003071585,1130721889,1869836917,1886737266,1953656688]},{"sector":5,"length":512,"data":[1919895058,1698981219,1819631974,1920287604,225603443,1635020626,1852795252,1818717761,1917848933,1918987625,1953841785,258895732,1868784979,1918985326,1953841785,158232436,1667853379,1668238443,1096488555,1818583907,1952543333,1349414761,1768320882,1563518316,1665227542,1701602659,1769234802,1917873775,1818846831,375206501,1667449179,1919249509,1869182049,1869762670,1701603686,1528192307,1701012289,1634887020,1852795252,1718579792,879062121,1146817629,1867535183,1702129257,1527799154,1684957527,1349744495,1953393007,190673509,1701800016,1115187566,5459785,1937064451,1919243014,107766121,1869639241,1342403698,1292055123,100685907,1299672908,1208315237,1835355497,1296909571,1631978752,73757548,1702195796,1717980931,40783618,1493397326,83915621,1700946252,1867319404,1701668214,1174828142,1869898593,1342898290,1953393007,1767076453,1342989690,1953393007,1866691173,108162924,2003792455,1409902708,1936028264,1684828008,1818575877,83917153,1818324307,1699546732,1836411236,1918979077,100689255,1836216142,1376218209,1919252069,1410033011,1936613746,1701994864,151024750,1937076045,1886999653,1632372837,1635084142,1209361767,2053730927,1635020399,1852134252,1769236851,2037672310,1919243795,1633905012,1852134252,1769236851,2037672310,1970226191,1415933026,1936028264,1684828008,1952661785,1097168489,1818583907,1952543333,1349414761,1768320882,1225614700,1919251566,1953527154]},{"sector":6,"length":512,"data":[1702125906,1920287506,1148350323,1819308905,1698986337,108618092,1869440333,1209366898,2003071585,1130721889,1869836917,1886737266,1953656688,1919895058,1698981219,1819631974,1920287604,225603443,1635020626,1852795252,1818717761,1917848933,1918987625,1953841785,258895732,1868784979,1918985326,1953841785,158232436,1667853379,1668238443,1096488555,1818583907,1952543333,1349414761,1768320882,1563518316,1665227542,1701602659,1769234802,1917873775,1818846831,375206501,1667449179,1919249509,1869182049,1869762670,1701603686,1528192307,1701012289,1634887020,1852795252,1718579792,879062121,1146817629,1867535183,1702129257,1527799154,1684957527,1349744495,1953393007,190673509,1701800016,1115187566,5459785,1937064451,1919243014,107766121,1869639241,1342403698,1292055123,100685907,1299672908,1208315237,1835355497,1296909571,1631978752,73757548,1702195796,1717980931,40783618,1493397326,83915621,1700946252,1867319404,1701668214,1174828142,1869898593,1342898290,1953393007,1767076453,1342989690,1953393007,1866691173,108162924,2003792455,1409902708,1936028264,1684828008,1818575877,83917153,1818324307,1699546732,1836411236,1918979077,100689255,1836216142,1376218209,1919252069,1410033011,1936613746,1701994864,151024750,1937076045,1886999653,1632372837,1635084142,1209361767,2053730927,1635020399,1852134252,1769236851,2037672310,1919243795,1633905012,1852134252,1769236851,2037672310]},{"sector":7,"length":512,"data":[1970226191,1415933026,1936028264,1684828008,1952661785,1097168489,1818583907,1952543333,1349414761,1768320882,1225614700,1919251566,1953527154,1702125906,1920287506,1148350323,1819308905,1698986337,108618092,1869440333,1209366898,2003071585,1130721889,1869836917,1886737266,1953656688,1919895058,1698981219,1819631974,1920287604,225603443,1635020626,1852795252,1818717761,1917848933,1918987625,1953841785,258895732,1868784979,1918985326,1953841785,158232436,1667853379,1668238443,1096488555,1818583907,1952543333,1349414761,1768320882,1563518316,1665227542,1701602659,1769234802,1917873775,1818846831,375206501,1667449179,1919249509,1869182049,1869762670,1701603686,1528192307,1701012289,1634887020,1852795252,1718579792,879062121,1146817629,1867535183,1702129257,1527799154,1684957527,1349744495,1953393007,190673509,1701800016,1115187566,5459785,1937064451,1919243014,107766121,1869639241,1342403698,1292055123,100685907,1299672908,1208315237,1835355497,1296909571,1631978752,73757548,1702195796,1717980931,40783618,1493397326,83915621,1700946252,1867319404,1701668214,1174828142,1869898593,1342898290,1953393007,1767076453,1342989690,1953393007,1866691173,108162924,2003792455,1409902708,1936028264,1684828008,1818575877,83917153,1818324307,1699546732,1836411236,1918979077,100689255,1836216142,1376218209,1919252069,1410033011,1936613746,1701994864,29806,2139062016,2139062143]},{"sector":8,"length":512,"data":[2139062143,2139062143,2139062143,2139062143,2139062143,2139062143,269488255,269488144,269488144,269488144,269488144,269488144,269488144,269488144,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2075262976,730091169,736005063,1958947807,-204961020,-2091991132,-268175477,-2092163525,512429174,914981708,503415886,1048806478,1946190668,1277045014,-1949594749,-1954330082,-851462954,-1962249695,1002698999,1921273406,-1950090762,-385972257,1198653588,1131679036,1064569404,-544473465,-360000973,1946172588,650676786,1513883018,1094452855,537133682,-58710902,-2146928806,57819644,975225984,1191736772,-1948458426,-1950091017,-17759237,-1949701182,-2117862925,1954762494,1015041543,1174959197]},{"sector":9,"length":512,"data":[1006647272,1174631741,-1007041544,-2075249093,1017912179,1006924810,1005679885,1938050614,171748364,222098804,-129044108,-2091991101,-2075249013,1946098152,909886419,108168270,1946095080,1017955073,1022325792,1324053513,1364444152,-947126477,-218101575,16352175,-1064564875,-1912598483,2932672,-1908569306,49095,-1957046645,-1947038759,-2086210613,276037881,12124336,648999440,1962950016,-1007068184,868481115,221783753,643181172,1011287434,1022916128,1341420603,1006996006,1192195072,175389500,108404796,1095107720,80145131,-1007133184,1448330233,-24443305,-1064380276,1946220931,1341719312,1191545382,91511868,1543882278,-1442346425,1962949699,1583286264,585679707,-1961790976,13009399,1312196865,-1898410876,-29038400,-1193899069,567098624,1040234691,-1950146099,-1199355362,-919387646,567136651,-92073358,-1559399168,512459596,12092234,-1021194942,1464910841,1321141846,-5314429,-2118236046,13009774,1256731787,-2147126530,225706490,-1073828376,-337083570,-337415171,-24647639,-24435598,-2089909826,881525958,1929258216,1036159765,242483200,-167767367,1853997025,-268175477,1577559283,-1933354913,-390033704,762447038,1040149224,628359168,-394048861,1321205648,-12392317,367531890,-40572928,512489587,1357415242,-2147025153,856096256,-2118204582,13009774,-957860725,-401771779,141753877,1962998400,23914502,-33519127,-402229814,2145976768,117080064,-907541129,-2139755775]},{"sector":10,"length":512,"data":[41224170,-889295125,887623285,-2140835327,378012146,1558907968,259377918,1912677096,773228627,1813416026,-2142639355,91685882,-352188952,82477119,82316149,-2009763327,-351517930,83525679,619186295,-1960283646,-360659977,-402098939,460456759,-20711541,-352160310,1976237583,14018571,378013298,15402819,-1073900056,-389840050,-24379972,1017956659,1008431664,739735353,-1948135120,-773729831,1925907425,-2134375927,41025749,-551231253,208947260,74596668,74860092,-1007207602,-919341173,1017962890,1022456368,604927545,1916878047,2001091815,-348705565,-785372158,-773729823,65130977,-338595128,-44635943,-768344437,1949187200,-7608304,-779400588,-489487183,1965964416,-919386561,1915763884,2000239671,-802149325,-791115040,48287968,809282776,960237938,808193399,1017960450,1006924336,1391949369,280085386,1689903606,-137219328,-805086479,-147076469,-1090614333,-964465023,-399209720,57867345,-1023286656,-2118189429,46564206,1055405195,-2146733316,125108474,1512376007,-20774896,-401050166,-160104699,326017,548991095,-18820864,-1543866935,-20751835,-401115702,-629866775,1996683651,47317,-906043183,631503477,-889273510,113706869,2120229,-24394813,-2089909826,881525958,1929109736,1461094404,-1293368572,-26446594,-2096204342,1668769017,1512640136,72945288,1976237763,1694073614,243814775,243817002,-20773798,-2096204342,1064789241,1512771208,71962248]},{"sector":11,"length":512,"data":[1976237763,83460888,-108843657,-2010614784,1230646542,150081160,149950088,1976237763,132218888,1512836744,1961691843,-1996508926,-2007355634,-1023062770,1962819816,1976237818,1242466569,822541836,-889273510,-2092363147,477561849,51136187,-2010674471,-1022606042,66683721,1186663031,-1965489396,205824519,-1999962429,-1954351338,-2097627169,-1330986958,2144639,280013555,-218095431,-1178586454,-1426915311,1944648587,-1084919045,-1343716530,-1102220550,-964465023,-399209718,745732849,1929068776,16416807,968834677,540847235,280623988,1947024384,1946827788,1950039048,-492000764,-80418576,-1075117454,-1971128133,-2092319985,141889338,-134192152,-81991485,-964495173,-1007091705,695585534,1962769640,1978469076,-2097628184,1931493248,839355104,-1157103900,-670858503,91488316,1996443450,-351303476,-38147881,-318067852,1237041013,541032579,126531443,134145074,58923451,1946172632,-11585019,260612982,1465309163,-1400702786,913571900,-1979123521,847443742,-1426390017,-1190593345,-1047920608,-133962762,2092934387,2144521,-470367862,-1527515133,-1190527809,-1047920624,-133962762,1583326451,-92739389,1321158770,-105584509,-24428430,-2089909826,881528006,1928983784,-96212951,-92265358,-970164992,473350,-2118189429,247890798,-689425269,-2012974343,-402179818,41089594,1321189611,-389810045,1321204270,-20711037,-971344438,473606,-2118189429,281445230,-1494731637,-1999342855,-351847914]},{"sector":12,"length":512,"data":[1976237774,990299664,887619591,-2000653571,-351847658,1976237754,1074186011,-402652921,-1418396583,1946220931,1694073766,243900791,-1679096000,121374407,113704962,132926,1962686696,16352206,-108803724,-775653532,1007585761,1041139975,-9180921,1848884742,-402651463,700185068,144752238,1928997096,-94967802,-389871624,-126681084,817152775,54272461,-1590801294,-1064435668,-125059021,-230045557,16352174,-2144967308,-227213251,637781891,1946172800,-1174959274,-1359871872,1555103055,-234848071,-947651410,735021826,144752590,-1899983842,-1527576616,-661733236,-661905173,-1598046066,1124451848,567089588,58131004,-968817210,-969277115,-2091122107,700318663,702830,-1598118669,-104597496,1158086851,1768712046,1174825075,1668179314,1967392104,107504500,1836213575,1392995937,1768187255,1174890611,1768844905,1392994419,1768841584,1342859379,1970565743,1936029031,1950943077,1634298977,-1930690450,-1945989535,-1903260036,-1900048728,-1895526672,-1869246688,-1867478014,-1864593214,-1859874573,-1856728776,-1945988407,-1829334300,-1826122992,-1821600936,-1795320952,-1793553406,-1790667478,-1785948837,-1782803040,-1945987279,-1755408564,-1752197256,-1747675200,-1721395216,-1719628798,-1716741742,-1712023101,-1708877304,-1945986151,-1681482828,-1678271520,-1673749464,-1647469480,-1645704190,-1642816006,-1638097365,-1634951568,-1945985023,-1607557092,-1604345784,-1599823728,1970228489,2035574131,1275618672,1969712737,358967137]},{"sector":13,"length":512,"data":[1769107272,1953394554,1699966049,1953067886,1953068649,1700139897,1667855474,1699966049,1953067886,1953068649,1866731385,1701601909,1701996628,1819240563,1665210724,1702259060,1701012289,1634887020,1852795252,1718579792,224750697,1702129225,1886745202,1952535156,1967329893,1919906674,1886611780,1148805484,2036427877,1835355398,360280687,1685217608,1701994871,1936880963,1968403055,1919905904,1866863220,1147495282,1969317477,1967354988,1919906674,1953452557,1869182049,1735278958,1343055212,1634560370,1967290738,1852798068,1667584783,1633971823,1967290738,1852798068,1768702729,1867279203,1528195939,1701012289,1634887020,1852795252,1718579792,828730473,1096488541,1818583907,1952543333,1349414761,1768320882,1563583852,1665227542,1701602659,1769234802,1917873775,1818846831,375206757,1667449179,1919249509,1869182049,1869762670,1701603686,1527536948,1347637060,1953393007,274559589,1852397403,1937207140,1852403536,1567778164,1869107211,2020175461,1397705026,1967260416,1699939955,1818323314,1886275846,57963119,53629776,5788493,2003782662,91055437,1699572040,1296368493,1174732877,1702063201,1970426884,1716454245,1850671718,57626114,7562585,1650543621,1292397669,1835365999,108293733,1952670022,184578671,1852403536,1400006004,207977065,1852403536,1131570548,1919904879,1869760262,157840503,1701996628,1819240563,1698956644,7954796,1634554629,1292266604,1969841253,1632372077]},{"sector":14,"length":512,"data":[6645618,1919897094,124543341,1702258002,191198066,1851880020,1918988403,7630437,1970228489,2035574131,1275618672,1969712737,358967137,1769107272,1953394554,1699966049,1953067886,1953068649,1700139897,1667855474,1699966049,1953067886,1953068649,1866731385,1701601909,1701996628,1819240563,1665210724,1702259060,1701012289,1634887020,1852795252,1718579792,224750697,1702129225,1886745202,1952535156,1967329893,1919906674,1886611780,1148805484,2036427877,1835355398,360280687,1685217608,1701994871,1936880963,1968403055,1919905904,1866863220,1147495282,1969317477,1967354988,1919906674,1953452557,1869182049,1735278958,1343055212,1634560370,1967290738,1852798068,1667584783,1633971823,1967290738,1852798068,1768702729,1867279203,1528195939,1701012289,1634887020,1852795252,1718579792,828730473,1096488541,1818583907,1952543333,1349414761,1768320882,1563583852,1665227542,1701602659,1769234802,1917873775,1818846831,375206757,1667449179,1919249509,1869182049,1869762670,1701603686,1527536948,1347637060,1953393007,274559589,1852397403,1937207140,1852403536,1567778164,1869107211,2020175461,1397705026,1967260416,1699939955,1818323314,1886275846,57963119,53629776,5788493,2003782662,91055437,1699572040,1296368493,1174732877,1702063201,1970426884,1716454245,1850671718,57626114,7562585,1650543621,1292397669,1835365999,108293733,1952670022,184578671,1852403536,1400006004,207977065]},{"sector":15,"length":512,"data":[1852403536,1131570548,1919904879,1869760262,157840503,1701996628,1819240563,1698956644,7954796,1634554629,1292266604,1969841253,1632372077,6645618,1919897094,124543341,1702258002,191198066,1851880020,1918988403,7630437,1970228489,2035574131,1275618672,1969712737,358967137,1769107272,1953394554,1699966049,1953067886,1953068649,1700139897,1667855474,1699966049,1953067886,1953068649,1866731385,1701601909,1701996628,1819240563,1665210724,1702259060,1701012289,1634887020,1852795252,1718579792,224750697,1702129225,1886745202,1952535156,1967329893,1919906674,1886611780,1148805484,2036427877,1835355398,360280687,1685217608,1701994871,1936880963,1968403055,1919905904,1866863220,1147495282,1969317477,1967354988,1919906674,1953452557,1869182049,1735278958,1343055212,1634560370,1967290738,1852798068,1667584783,1633971823,1967290738,1852798068,1768702729,1867279203,1528195939,1701012289,1634887020,1852795252,1718579792,828730473,1096488541,1818583907,1952543333,1349414761,1768320882,1563583852,1665227542,1701602659,1769234802,1917873775,1818846831,375206757,1667449179,1919249509,1869182049,1869762670,1701603686,1527536948,1347637060,1953393007,274559589,1852397403,1937207140,1852403536,1567778164,1869107211,2020175461,1397705026,1967260416,1699939955,1818323314,1886275846,57963119,53629776,5788493,2003782662,91055437,1699572040,1296368493,1174732877,1702063201,1970426884]}]],[[{"sector":1,"length":512,"data":[1716454245,1850671718,57626114,7562585,1650543621,1292397669,1835365999,108293733,1952670022,184578671,1852403536,1400006004,207977065,1852403536,1131570548,1919904879,1869760262,157840503,1701996628,1819240563,1698956644,7954796,1634554629,1292266604,1969841253,1632372077,6645618,1919897094,124543341,1702258002,191198066,1851880020,1918988403,7630437,1970228489,2035574131,1275618672,1969712737,358967137,1769107272,1953394554,1699966049,1953067886,1953068649,1700139897,1667855474,1699966049,1953067886,1953068649,1866731385,1701601909,1701996628,1819240563,1665210724,1702259060,1701012289,1634887020,1852795252,1718579792,224750697,1702129225,1886745202,1952535156,1967329893,1919906674,1886611780,1148805484,2036427877,1835355398,360280687,1685217608,1701994871,1936880963,1968403055,1919905904,1866863220,1147495282,1969317477,1967354988,1919906674,1953452557,1869182049,1735278958,1343055212,1634560370,1967290738,1852798068,1667584783,1633971823,1967290738,1852798068,1768702729,1867279203,1528195939,1701012289,1634887020,1852795252,1718579792,828730473,1096488541,1818583907,1952543333,1349414761,1768320882,1563583852,1665227542,1701602659,1769234802,1917873775,1818846831,375206757,1667449179,1919249509,1869182049,1869762670,1701603686,1527536948,1347637060,1953393007,274559589,1852397403,1937207140,1852403536,1567778164,1869107211,2020175461,1397705026,1967260416]},{"sector":2,"length":512,"data":[1699939955,1818323314,1886275846,57963119,53629776,5788493,2003782662,91055437,1699572040,1296368493,1174732877,1702063201,1970426884,1716454245,1850671718,57626114,7562585,1650543621,1292397669,1835365999,108293733,1952670022,184578671,1852403536,1400006004,207977065,1852403536,1131570548,1919904879,1869760262,157840503,1701996628,1819240563,1698956644,7954796,1634554629,1292266604,1969841253,1632372077,6645618,1919897094,124543341,1702258002,191198066,1851880020,1918988403,7630437,1970228489,2035574131,1275618672,1969712737,358967137,1769107272,1953394554,1699966049,1953067886,1953068649,1700139897,1667855474,1699966049,1953067886,1953068649,1866731385,1701601909,1701996628,1819240563,1665210724,1702259060,1701012289,1634887020,1852795252,1718579792,224750697,1702129225,1886745202,1952535156,1967329893,1919906674,1886611780,1148805484,2036427877,1835355398,360280687,1685217608,1701994871,1936880963,1968403055,1919905904,1866863220,1147495282,1969317477,1967354988,1919906674,1953452557,1869182049,1735278958,1343055212,1634560370,1967290738,1852798068,1667584783,1633971823,1967290738,1852798068,1768702729,1867279203,1528195939,1701012289,1634887020,1852795252,1718579792,828730473,1096488541,1818583907,1952543333,1349414761,1768320882,1563583852,1665227542,1701602659,1769234802,1917873775,1818846831,375206757,1667449179,1919249509,1869182049,1869762670]},{"sector":3,"length":512,"data":[1701603686,1527536948,1347637060,1953393007,274559589,1852397403,1937207140,1852403536,1567778164,1869107211,2020175461,1397705026,1967260416,1699939955,1818323314,1886275846,57963119,53629776,5788493,2003782662,91055437,1699572040,1296368493,1174732877,1702063201,1970426884,1716454245,1850671718,57626114,7562585,1650543621,1292397669,1835365999,108293733,1952670022,184578671,1852403536,1400006004,207977065,1852403536,1131570548,1919904879,1869760262,157840503,1701996628,1819240563,1698956644,7954796,1634554629,1292266604,1969841253,1632372077,6645618,1919897094,124543341,1702258002,191198066,1851880020,1918988403,7630437,1970228489,2035574131,1275618672,1969712737,358967137,1769107272,1953394554,1699966049,1953067886,1953068649,1700139897,1667855474,1699966049,1953067886,1953068649,1866731385,1701601909,1701996628,1819240563,1665210724,1702259060,1701012289,1634887020,1852795252,1718579792,224750697,1702129225,1886745202,1952535156,1967329893,1919906674,1886611780,1148805484,2036427877,1835355398,360280687,1685217608,1701994871,1936880963,1968403055,1919905904,1866863220,1147495282,1969317477,1967354988,1919906674,1953452557,1869182049,1735278958,1343055212,1634560370,1967290738,1852798068,1667584783,1633971823,1967290738,1852798068,1768702729,1867279203,1528195939,1701012289,1634887020,1852795252,1718579792,828730473,1096488541,1818583907,1952543333]},{"sector":4,"length":512,"data":[1349414761,1768320882,1563583852,1665227542,1701602659,1769234802,1917873775,1818846831,375206757,1667449179,1919249509,1869182049,1869762670,1701603686,1527536948,1347637060,1953393007,274559589,1852397403,1937207140,1852403536,1567778164,1869107211,2020175461,1397705026,1967260416,1699939955,1818323314,1886275846,57963119,53629776,5788493,2003782662,91055437,1699572040,1296368493,1174732877,1702063201,1970426884,1716454245,1850671718,57626114,7562585,1650543621,1292397669,1835365999,108293733,1952670022,184578671,1852403536,1400006004,207977065,1852403536,1131570548,1919904879,1869760262,157840503,1701996628,1819240563,1698956644,7954796,1634554629,1292266604,1969841253,1632372077,6645618,1919897094,124543341,1702258002,191198066,1851880020,1918988403,7630437,1970228489,2035574131,1275618672,1969712737,358967137,1769107272,1953394554,1699966049,1953067886,1953068649,1700139897,1667855474,1699966049,1953067886,1953068649,1866731385,1701601909,1701996628,1819240563,1665210724,1702259060,1701012289,1634887020,1852795252,1718579792,224750697,1702129225,1886745202,1952535156,1967329893,1919906674,1886611780,1148805484,2036427877,1835355398,360280687,1685217608,1701994871,1936880963,1968403055,1919905904,1866863220,1147495282,1969317477,1967354988,1919906674,1953452557,1869182049,1735278958,1343055212,1634560370,1967290738,1852798068,1667584783,1633971823]},{"sector":5,"length":512,"data":[1967290738,1852798068,1768702729,1867279203,1528195939,1701012289,1634887020,1852795252,1718579792,828730473,1096488541,1818583907,1952543333,1349414761,1768320882,1563583852,1665227542,1701602659,1769234802,1917873775,1818846831,375206757,1667449179,1919249509,1869182049,1869762670,1701603686,1527536948,1347637060,1953393007,274559589,1852397403,1937207140,1852403536,1567778164,1869107211,2020175461,1397705026,1967260416,1699939955,1818323314,1886275846,57963119,53629776,5788493,2003782662,91055437,1699572040,1296368493,1174732877,1702063201,1970426884,1716454245,1850671718,57626114,7562585,1650543621,1292397669,1835365999,108293733,1952670022,184578671,1852403536,1400006004,207977065,1852403536,1131570548,1919904879,1869760262,157840503,1701996628,1819240563,1698956644,7954796,1634554629,1292266604,1969841253,1632372077,6645618,1919897094,124543341,1702258002,191198066,1851880020,1918988403,7630437,1970228489,2035574131,1275618672,1969712737,358967137,1769107272,1953394554,1699966049,1953067886,1953068649,1700139897,1667855474,1699966049,1953067886,1953068649,1866731385,1701601909,1701996628,1819240563,1665210724,1702259060,1701012289,1634887020,1852795252,1718579792,224750697,1702129225,1886745202,1952535156,1967329893,1919906674,1886611780,1148805484,2036427877,1835355398,360280687,1685217608,1701994871,1936880963,1968403055,1919905904,1866863220]},{"sector":6,"length":512,"data":[1147495282,1969317477,1967354988,1919906674,1953452557,1869182049,1735278958,1343055212,1634560370,1967290738,1852798068,1667584783,1633971823,1967290738,1852798068,1768702729,1867279203,1528195939,1701012289,1634887020,1852795252,1718579792,828730473,1096488541,1818583907,1952543333,1349414761,1768320882,1563583852,1665227542,1701602659,1769234802,1917873775,1818846831,375206757,1667449179,1919249509,1869182049,1869762670,1701603686,1527536948,1347637060,1953393007,274559589,1852397403,1937207140,1852403536,1567778164,1869107211,2020175461,1397705026,1967260416,1699939955,1818323314,1886275846,57963119,53629776,5788493,2003782662,91055437,1699572040,1296368493,1174732877,1702063201,1970426884,1716454245,1850671718,57626114,7562585,1650543621,1292397669,1835365999,108293733,1952670022,184578671,1852403536,1400006004,207977065,1852403536,1131570548,1919904879,1869760262,157840503,1701996628,1819240563,1698956644,7954796,1634554629,1292266604,1969841253,1632372077,6645618,1919897094,124543341,1702258002,191198066,1851880020,1918988403,7630437,1970228489,2035574131,1275618672,1969712737,358967137,1769107272,1953394554,1699966049,1953067886,1953068649,1700139897,1667855474,1699966049,1953067886,1953068649,1866731385,1701601909,1701996628,1819240563,1665210724,1702259060,1701012289,1634887020,1852795252,1718579792,224750697,1702129225,1886745202,1952535156]},{"sector":7,"length":512,"pattern":269488144,"data":[1967329893,1919906674,1886611780,1148805484,2036427877,1835355398,360280687,1685217608,1701994871,1936880963,1968403055,1919905904,1866863220,1147495282,1969317477,1967354988,1919906674,1953452557,1869182049,1735278958,1343055212,1634560370,1967290738,1852798068,1667584783,1633971823,1967290738,1852798068,1768702729,1867279203,1528195939,1701012289,1634887020,1852795252,1718579792,828730473,1096488541,1818583907,1952543333,1349414761,1768320882,1563583852,1665227542,1701602659,1769234802,1917873775,1818846831,375206757,1667449179,1919249509,1869182049,1869762670,1701603686,1527536948,1347637060,1953393007,274559589,1852397403,1937207140,1852403536,1567778164,1869107211,2020175461,1397705026,1967260416,1699939955,1818323314,1886275846,57963119,53629776,5788493,2003782662,91055437,1699572040,1296368493,1174732877,1702063201,1970426884,1716454245,1850671718,57626114,7562585,1650543621,1292397669,1835365999,108293733,1952670022,184578671,1852403536,1400006004,207977065,1852403536,1131570548,1919904879,1869760262,157840503,1701996628,1819240563,1698956644,7954796,1634554629,1292266604,1969841253,1632372077,6645618,1919897094,124543341,1702258002,191198066,1851880020,1918988403,7630437,2139029504,2139062143,2139062143,2139062143,2139062143,2139062143,2139062143,2139062143,269516671]},{"sector":8,"length":512,"data":[4112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385875968,-1575509598,-561264853,-1020534997,-930413452,398435571,66554785,354302960,-1962117471,-1985932002,27399990,-2086529250,10556734,506009204,-880041707,-1592582517,1068816011,175251917,-1007093877,-1575535045,-1007028622,-24649845,1912640744,1947024455,1946827843,-1946253505,-1965935649,3976426,-930467212,1006996006,1007056730,67269185,-2145088992,142039804,1916927104,549748739,141935674,-589150649,-1007093877,-251397237,-907296002,-1007029365,-1592263039,-2142369932,141843772,3663942,58015036,-104597434,389430211,-1407487070,74713660,-243987140,-1575537093,1017908339,1022718986,1324446733,398443512,389450657,-15079262]},{"sector":9,"length":512,"pattern":0,"data":[1002689395,1923225398,-15865850,-1396506253,-277602244,-344716996,1405352014,-1946209455,571847,-108810253,-1945668352,1060288,750764174,1032529408,12568462,1507232512,-225715829,-1493972085,1946220931,-1191137264,-1359867904,4030502,-111417227,-1007133757,942065971,1445622797,1191545382,-126476228,-193709252,92939855,259260476,1950039111,1981824010,1174702086,-957682879,-128057340,1405352387,-1962518698,-1898410754,16352192,-117239692,92939855,1952201799,96871941,126502748,3949482,1594357877,-389850274,292683810,-964561013,914948352,-661872105,1156104334,-695483394,-851640136,12108577,-1021194946,-1592582517,859964088,-841905207,-2095943135,225771770,-1952377437,-1197403362,567099904,1355020739,-1090103721,-1360486121,-1102548225,-964457398,-399209728,91422282,1946286720,-22157299,-392095809,-478937621,-2014828053,-1960545538,-1941258498,-1962621309,-31135692,-1031072398,1946157117,1227022,1254089206,66554764,128250864,-1017618594,319620608,740695833,1161771058,1582846283,1970236763,224224627,10]},{"sector":10,"length":512,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-65536,-1,-1,-1,-1,-1,-1,-1,1442840575,519892107,-1899459578,-1077899560,381265020,-205508096,-1880613206,15617,-1528297099,520385281,-1090421271,-1431526254,-92995524,82805535,606340551,604128710,866423482,-851659575,-1545768415,-1832934278]},{"sector":11,"length":512,"data":[2210214,-1426849872,-1912060277,108432344,-1952017729,-1527575986,185237123,1325335410,176063242,-955943402,1444422,-661733236,-392095809,57932937,-1107250199,-964457398,-399209728,1567816482,1929081320,-19231912,1000635527,1956779830,540847109,-1957759628,-1592279090,-141832405,-2136632641,10778942,-957872012,2030487043,-1527578460,1912868840,854087207,-1404150271,74800444,-1535572226,1249197372,-1575537093,1017922676,1007711291,-336497872,-1517109494,-1575537093,-2136199052,10778942,1000997237,1956779830,222080033,171705460,1048635765,1962976377,909879809,175415831,1947024556,1946828013,-957853975,-1082822144,820551959,-385649926,-617349299,-2087957826,881524934,1403359935,-2132528468,10779839,-2048384651,-1961070077,1319433160,1952267436,-1438797821,-396962933,-396492647,-2098724071,50522880,994270192,-932050338,-1535500661,-1946441752,-392096994,-400622688,-695475430,567099828,-1898411002,-91545664,-1264282950,522308950,-883089657,1927478760,-76355567,-1557787534,102670611,-73930721,-1070349537,-1592548570,-695525693,1018480947,561127885,-1592548570,1891293323,-1899983708,-1186941736,567083017,-1958608712,866194206,-841905207,-1262280927,2048822080,-1517110620,-903098485,851648973,-1500333084,126540291,1962998403,-1941258724,-1962752381,254038068,-471283458,78731265,3991762,-420882316,192236033,-2087957826,881525958,-2097034775,58132218,-2097032983,192219114,-2087957826]},{"sector":12,"length":512,"data":[881526470,1241625065,1951013748,91572760,-1293351029,126501633,1996683907,27781379,1963190915,-1941258733,-1962359165,15668,28836724,25225472,1980037763,12380419,33482826,-1977106601,1610189544,855764200,1253988032,180781964,1541944459,1034968577,-1593656406,-1979707207,3949319,-492174476,29878518,1442841016,-2087957826,881527494,1577137640,-1146470992,243966146,-315449151,-1968562000,-387698169,-498925267,26994931,1442841272,-2087957826,881527494,1577126376,-1146470992,243966178,-315449151,-1968562000,21817351,-386538941,-25099919,745709847,-1575537093,1659381367,-24422655,-1941258666,-1962883453,-125769676,-998045069,-119150590,-420805774,-594845858,41388342,1946544771,57952774,-402609687,126484785,-670833622,-1101610965,-964457398,-399209716,-1336016742,126528061,-1941258666,-1961965949,8972340,17295454,1442841016,-2087957826,881528006,1577088488,-1968554576,-1101659833,-964457398,-399209712,-396492702,45613281,1253987840,214336396,1340617867,1034968576,38242986,-21895082,12839006,1442841528,-2087957826,881528006,1577071080,-1968554576,921174855,11003904,1442841784,-2087957826,881528006,1577063912,-1968554576,451413063,9169152,58051326,-1006735639,98814091,-487586900,-930370309,1371776243,1931939901,65551633,1681725555,1025471232,645070858,-768397845,-148434759,-1439691535,-768359797,-150738759,-1439691535,-768359797,-150969159,-1439691535]},{"sector":13,"length":512,"data":[179421835,806154742,214207146,-1017533904,-800005070,-790048536,-387395352,783351721,254040234,-1537164461,394975235,167411803,816842103,-1975057016,-1332941886,179350029,378061738,1461625024,138840918,1988876430,331776774,-234627445,-1532968513,548586123,-208936202,50644611,2144752,-208952077,8701569,549056515,-1952124160,80118259,65589505,1096176,1600038131,1347863327,1930820483,-1500332518,-75238653,1913353227,1015039489,-133663489,1015219947,-101157377,-1329373608,823560992,1049357832,-141883347,-1962430394,-695472425,-299889428,105856640,1342600977,1491922156,-1962823442,-695472425,-1336895252,-287864062,-1729309045,-1950338480,-695472425,-1327461652,-287864057,619501195,1048637151,1946158670,633637385,-389012462,-997531638,205588166,1946265600,1091469317,78123020,243271028,-2145383359,537675070,-461365388,1946265810,80510979,57935016,-1476277120,-2147257336,547889356,-864025740,-155176440,24380612,29685312,34341492,1354693809,168567302,856459464,1125550290,1010207492,1044286213,-1463514619,-1473743840,-15502076,-1996227066,-1996226506,-2147220930,67388174,117379563,914949112,1049166842,243270652,-1476262845,-1473743864,-15502079,-1996223994,-1996223434,-2147217858,268714766,117379563,914949124,1049166854,243270664,1493697603,1310079067,-150703098,-119932965,137182859,1179056011,-2135894389,-2063341330,-387131509,254051581,-695474038,-387014480]},{"sector":14,"length":512,"data":[-678722319,-2064914196,-523116335,-523116335,1352189194,-1062152565,-2066224914,-387131509,254051537,-695474038,-386998096,-678722363,-2067797780,-523116335,-523116335,-989136757,-695512936,-1561411533,-947190717,-997535497,205588166,1946724352,1091469317,44572684,243271028,-2146431935,537675070,-461368972,1946724597,46956547,57934504,-1962357632,-1962591178,-1979367874,-789917484,-1310011158,-154066431,105954257,-787869918,389552006,326575732,66979583,67122825,67255945,71503488,-15602940,-1996228602,-1996228042,-2147222466,33833742,-997588303,-772357854,570839227,-2034169329,1946630151,-15501530,-1996223994,-1996223434,-2147217858,268714766,117379563,914949124,1049166854,243270664,1493697603,756452187,-420942840,-2132768125,-387185214,-360676387,-154892795,880083652,105651850,544529162,477446312,-2021064910,117311048,977471052,1929792798,-1960792029,-301453034,26995193,-972666718,17189894,-378191704,105383622,1275512320,-571801594,193216128,-385649408,1268777090,-1978915834,-2147071938,-133549849,205700688,205733504,-163286016,628374727,1962949760,205889559,205784586,1009045750,-534583414,393601082,334169342,1963080832,-351994354,17102346,83756404,-2147277696,192151612,205864458,-166968160,1492656848,1049158706,1048841281,57936965,-2078225280,1946960958,281837571,604391584,-1564210481,602605128,-2147071840,-821671898,1101148196,1158054924,-2147126260]},{"sector":15,"length":512,"data":[537282574,205784708,243271028,-1961884088,-1962591178,-972734914,279302,-1324988256,-1310141947,-155115007,105954257,-1056305374,121112454,326575732,66979583,67122825,67255945,71503488,-15602940,-1996228602,-1996228042,-2147222466,33833742,-804894560,-790048536,570601960,-1143867711,253888080,126271754,645138232,117379959,914949130,1049166860,243270670,-351271869,67567377,104237316,138316036,1125023748,-1070462972,105387658,-657401136,-657401136,105448970,853052312,-790966080,-790966056,1241909976,-930375674,193216128,-1978502144,-1979299010,31949039,-305078282,-167647872,1275512541,-2131230714,1962939006,42854659,71569150,71700222,1183575179,710839084,-2144842101,754750,-588709003,2042628608,2044398084,-1040140252,117374770,365757508,71569150,-1564344136,28771921,71567102,251532749,-2132212668,-1092580863,1048579138,1946160195,264566369,1015033460,-1977584384,168576278,-166968298,1021477074,-355407152,-1979578904,988947188,-32016910,-2146178300,242549308,183174398,1946223862,-2147156475,1015022372,-1977650176,-804502250,-387264278,-502660650,205788810,-355413258,-941036848,-255164415,-997531102,-1142370166,-790441983,1091995874,1950394380,-2134146812,-1964756480,-804502250,-387264278,-1031536226,-864025740,1142327809,-789917684,26011882,57983620,604163200,-339473872,-388986327,-489684614,-494869808,1091995696,1161723916,309600268,-64690038]}],[{"sector":1,"length":512,"data":[1946273270,-167638014,41157317,1453523212,-470994426,886699530,1948297248,-1982988798,839275534,1947248895,-1982857726,-972664290,279302,915132554,1049298236,28378430,-772353758,570839227,-2033120753,1947678743,-15501530,-1996227066,-1996226506,-2147220930,67388174,117379563,914949112,1049166842,243270652,-1325267901,-155115006,105954257,-1056305374,121112454,326575732,67766015,67909257,68042377,71503488,-15602928,-1996225530,-1996224970,-2147219394,134497038,105973446,1141309183,1174863364,251579140,251528260,347407430,-1212021320,7530499,28898930,7006402,62453874,-386364734,-160300960,-1933441096,-1144811813,1374185756,-1192136192,28819974,1912621032,-1040008970,1049156403,971508612,-1192070656,837337604,-2131201536,475966,-75103628,1963130752,-2076276732,-1040009205,367526839,-2131332608,554814,12068213,-402540606,-277741564,117316075,365757508,71569150,-58717581,-33131260,-117279539,-17213245,-33274874,-1023130106,-623839694,-623847728,-623847728,-623847728,-695544112,-28916029,-1299924990,-872659319,105987712,-1946651648,-1962520034,-972663794,413958,-776819720,498268082,1773355955,-1246523469,-172762189,-961281578,1723233204,549105080,-272722755,1103225023,-2101014333,-859327034,-1597242422,-858713650,366436307,-1481313868,-390555210,-1380106822,12591038,834891202,-3760187,1070263751,1473173964,-573302575,565455575,-575216971]},{"sector":2,"length":512,"data":[1723544760,1539231677,-1329450048,-775591997,516450502,785162699,1943123919,1087920596,733306036,-1967575369,163423419,1589680831,-1882986558,-825820475,-53787192,298811084,-942352430,-1917560872,1857513909,-1027880007,-742448195,650281664,449164740,1774792135,-1060289333,1053974735,1809396693,-1615479884,62498743,1371402428,-1363078209,-641444670,2043099077,-2100590135,-1445988403,-1479177518,-340491047,-491270475,498877625,1237285566,2143475393,1405486276,-1563834937,953008843,-707597616,-1696978987,95820212,-1917178952,-1665252420,-54429249,935637698,617052358,231458762,1137740494,-1630126893,1203023834,1907898806,1924979898,-1245722690,-406641215,-1647942716,-339050809,-808560693,-1663855152,1986939350,1684630625,1918988320,1952804193,168653413,1918980132,1955229025,1763730802,1818326638,224748649,1850680330,1684825447,543516521,1634886000,1702126957,604638578,-2123927979,1734964332,1344303717,1835102817,1919251557,1327761933,1953261927,1881171817,1835102817,1919251557,1445202445,1701343849,1768713317,544105838,1634886000,1920230765,604638569,-1603116720,1920230765,1869488239,1822455328,225404009,1632642058,1701675890,544174708,-1602851223,1868851564,1344539149,1835102817,1869771877,1852796448,1818326560,225404009,1917068298,1919252073,1953459744,1936615712,1819042164,757097573,1850286125,1852990836,1159752801,1919906418,168636704,1936017188,1852795252,1919508846,1869488229]},{"sector":3,"length":512,"data":[1852383342,1818326131,757105260,1919229997,1920296306,1953392928,1701737061,168636704,1936015908,1769108852,1886611310,1919381362,1634561377,1701408288,1701257332,1953721995,1701604449,543453797,1226845485,1919251566,1713399150,544503151,604638513,1768256084,544367970,1751345518,1852383348,1818326131,1919248748,757932148,1953384736,1701737061,1699094642,1919249512,168636704,1769096228,1953854070,1852141161,543843616,1953721961,1701604449,543449458,1226845485,1919251566,1713402990,824208485,1327761933,1767991912,543257710,1864395109,1629513068,1852728691,1970566245,539831584,-2072811149,1852141161,1919514144,824206696,1126435341,1920233071,1684106351,1847620207,1852383343,1818326131,544171105,1159736621,1919906418,1953392928,1869509221,168636704,1852785444,1819243124,1919902817,1868656160,1936615712,1634492788,757100388,1917132845,1763733362,1919251566,824209262,1143212557,1702259058,1869488242,1852383342,1818326131,1869898092,539831584,1869771333,1763730802,1919251566,824209262,1143212557,1702259058,1869488242,1852383348,1818326131,543450476,1293954349,1869767529,1952870259,1970228512,1847616883,1713402991,1684960623,1193544205,1769239397,1634627183,543519337,544108398,1953721961,-2106823583,539831584,1919117645,1718580079,1867325556,543519605,1920233065,1635153263,224750690,1698833418,1920300147,1936158313,1735357040,1835884914,1768824929,1730180197,1936624485]},{"sector":4,"length":512,"data":[1819042164,1685218661,539831584,1919117645,1718580079,1967988852,1847620457,544499049,1870030183,1852138606,1411648013,1651074418,1847620197,1952998249,1936615712,1819042164,1953654121,539831584,1919117645,1718580079,1867325556,543519605,1751345518,1701257332,1684960614,168652389,1769096228,1953854070,1852141161,543843616,1953721961,1701604449,543449458,1293954349,1852142453,1853188896,1696621924,1768431722,1935766644,1327761933,1767991912,543257710,1864395109,1629513068,1852728691,1970566245,539831584,1919510888,1696629876,-1804853143,226059385,1866671114,1869771886,1868849516,1869488242,1936615712,1634492788,757100388,1816469549,1970228512,1847616883,1702043759,1668179232,1953391989,168649074,1852785444,1819243124,1919902817,1868656160,1936615712,1634492788,757100388,1867325485,543519605,544170350,1868787301,1634890862,168652644,1769096228,544367990,544108398,1953721961,1634495585,757100404,1867325485,543519605,544108398,1987015284,225408097,1917068298,1919252073,1953459744,1936615712,1819042164,757097573,1852383277,1920099700,544501877,1886221674,1830842981,1769173865,168650606,1936017188,1852795252,1919508846,1869488229,1852383342,1818326131,757105260,1633886253,1768710518,168653413,1852385124,1920099700,1769238645,1763733103,1869771886,1650554485,168650092,1936015908,1769108852,1886611310,1919381362,1634561377,1701408288,1701257332,1953721995,1701604449]},{"sector":5,"length":512,"data":[543453797,1327508781,1919247470,1801810530,1936158313,1769107571,1919248238,1701408288,1628048756,1702325857,224881018,1918116874,1700948325,1768824946,544499811,1953721961,1768713313,544502373,1226845485,1919251566,1953527154,1836403245,225600880,1667853834,1730180200,1853187685,225338724,1917068298,1970435689,1701734772,1785012334,1936615712,1819042164,1684107877,539831584,1919055457,1937011823,1701280098,1768300652,544435822,1702129257,1327761933,1767991912,543257710,1864395109,1629513068,1852728691,1970566245,539831584,1802724715,2037676389,1852142443,1954114336,544106859,1953854832,225801588,1866671114,1869771886,1868849516,1869488242,1936615712,1634492788,757100388,1816469549,1702195232,543519854,1763730788,1919251566,1668314482,544121449,1931505518,1852121189,1852142947,543257204,1126435341,1920233071,1684106351,1847620207,1763733345,1635021678,1868849516,539831584,1701736291,1919906915,543515680,1702129257,1886745202,544170375,544170350,1868787301,1634890862,168652644,1769096228,544367990,544108398,1953721961,1634495585,757100404,1869619245,1667855470,1869376613,543777824,1702129257,1886745202,1634541684,1851876206,168650100,1769096228,544367990,544501614,1953721961,1701604449,757932132,1819634976,1819306356,1852383333,1920099700,544501877,1886221674,544436837,1853189990,604638564,1953719623,1852731241,1701996897,1852796448,1936615712,1819042164]},{"sector":6,"length":512,"data":[757932162,1970040864,1969580403,1663071090,1818326625,1936876905,660867597,1702129257,1886745202,1852795252,-2106429408,1953391987,604638579,1953719618,1852404341,1919972199,1634887535,543255917,1952803182,-1956288736,1635021678,1701145708,757097586,1699553325,1701081701,168650098,1701080687,1701995122,1735289195,1919972211,1701277289,1730179954,1852798565,225338724,1918116874,1700948325,1768824946,544499811,1953721961,1768713313,544502373,1293954349,1701996645,1226859890,1919251566,1953527154,1836403245,544367984,1969644903,1852138606,1143212557,1920362866,1852404853,1696624229,1852383338,1818326131,1634887020,757932132,1819634976,1819306356,1986076769,1953460834,2036495220,1918987367,1327761933,1767991912,543257710,1864395109,1629513068,1852728691,1970566245,539831584,1634298220,1869422702,543257710,1802724715,2037676389,1852142443,1954114336,1953393003,604638596,1953394499,1634496370,544370532,1763733358,1635021678,1868849516,539831584,1868787269,1634890862,544436068,1769103734,1881174895,1953391989,1679848293,1852383333,1920099700,1768124533,168652450,1852785444,1819243124,1919902817,1868656160,1936615712,1634492788,757100388,-1553129427,1885959276,544436076,1701736291,1919906915,1679848293,1852383333,1920099700,1636266101,1852121199,1953394531,1868849522,604638579,1986622020,1847620197,1763733103,1635021678,1952541804,757932143,1769170208,543519859,546793840]},{"sector":7,"length":512,"data":[1965058404,1869619310,1667855470,1869376613,543777824,1702129257,1886745202,604638580,542659405,1937076045,1919164517,1919252073,1936615712,1819042164,168649829,543509540,1953719655,1852731241,1701996897,1481854240,1970228512,1696621939,1763734643,1635021678,226651244,1766663178,1936683619,544499311,542659405,1937076045,1700929637,1920300147,1936158313,1735357040,1835884914,1870078049,544498802,1854629223,1818326131,1919247724,604638564,1937072461,1768256116,544367970,542659405,1953721961,1768713313,225735269,1917068298,1970435689,1701734772,1852383342,1818326131,1634887020,1766662259,1936683619,544499311,542659405,1937076045,604638565,1852142401,1635018094,1293971041,1869767529,1952870259,1481854240,1970228512,1814062451,1702127969,1634363503,168652393,1852785444,1819243124,1919902817,1481854240,1818584096,1970228512,1763730803,1635021678,1868849516,1126435341,1920233071,1684106351,1679848047,1766662255,1936683619,544499311,542659405,1937076045,1852383333,1818326131,225404001,1917068298,1919252073,1818584096,1481854240,1970228512,1763730803,1635021678,1952541804,604638575,1937076045,1919164517,1919252073,1936615712,1819042164,168649829,1936017188,1852795252,1919508846,1701060709,1970238240,544434546,1953721961,-2106823583,1294207501,1869767529,1952870259,1970228512,1646290291,1970565989,1735289202,1869770867,1835102823,1998610797,1952739951,-1956288736,1635021678]},{"sector":8,"length":512,"data":[1701145708,168649842,1969311012,1701999731,1919246953,1936615712,1819042164,1953654121,1227098637,1635021678,1919249516,1679848033,1920362866,1852404853,1713402469,1293972116,1869767529,1952870259,1970228512,168650099,1702052132,1952804462,544104801,1919117645,1718580079,1867325556,543519605,1953063276,1785229157,225339745,1866671114,1869771886,1868849516,1701060722,1867325548,543519605,1953721961,1684106337,604638575,1953394499,1634496370,544370532,1293971300,1869767529,1952870259,1970228512,1763730803,1635021678,1868849516,1143212557,1702259058,1701060722,1766662252,1936683619,544499311,1937076045,1852383333,1818326131,1869898092,1394870797,1668573559,1635131496,1936029036,1935765536,543450483,1696624500,1953720696,543649385,1937076045,1919164517,1919252073,1344539149,1835102817,1701999754,1920213107,1836281441,1629516649,1701257333,1869182067,1767992942,1696621938,1953720696,544501345,1814062436,1869815905,1936290421,1394870797,1801545827,1635216485,1701081697,1868832878,1701278319,1702258023,1634607214,1646293601,1635021669,543452769,1953719650,1852404341,1919972199,1634887535,224488813,1884234762,1852795252,1919252339,1629513076,1870012526,1851877490,1701733732,1632444526,1920234357,1700948325,1702305906,1919251561,1701602663,1952805993,1344539149,1835102817,1919251557,1685226614,1713401445,1953790316,543515745,1819044212,1769497888,1919251571,1701080673,1769104416]},{"sector":9,"length":512,"data":[1953854070,1713401449,1830843028,1852142453,1260653069,1768649849,1702060398,1936422260,1931506789,1920100713,2037675109,1701605152,1936941421,1701605217,1851875702,1785229088,1701669217,168652389,1918980132,1952804256,544436082,1851880052,1919247987,1936680041,543973664,1953394531,1634496370,544370532,1965059685,168652659,1717912612,-2023133591,544433519,1936941424,1935762529,1918988320,544153697,1953394531,1634496370,544370532,1936291941,1953391988,1868832869,1970228512,168650099,1918980132,1952804193,1948281202,1718837618,1953067621,1818304617,1769104416,544367990,1936290661,1953391988,604638565,1936291909,1735289204,1970228512,1679844723,1702259058,1852121202,1701601889,604638564,1730176332,1769239397,1634627183,543519337,1936291941,1953390964,543515680,1931501932,1769108847,1936007283,1667309684,-2106168972,1109658125,1635021669,543452769,1953719650,1852404341,1919972199,1634887535,543255917,1667327335,1702259060,224686693,1867916298,1851877490,1701733732,1632444530,1920234357,1700948325,1801527410,1769367924,225735269,2017797130,1702130537,1684955506,1919164517,1970435689,544106868,544380006,1702065517,1801527406,1702259060,224682354,1817125898,1935764837,1819238771,543258213,1634363503,1864396393,1635018100,1797287521,1953790340,225350804,1816470538,1852793632,1819243124,1919902817,544105760,544174965,-1602981019,1952669984,1684108905,604638575,1953394499]},{"sector":10,"length":512,"data":[1634496370,544370532,1936291941,1953391988,1868832869,1970228512,1629513075,1635150196,168652644,1769096228,544367990,1936290661,1953391988,1952522341,1635150196,168652660,1769489700,1852404851,1867325543,543519605,1986622052,1914729061,1987013989,1713398885,544042866,1869440365,168655218,543509540,1953719655,1852731241,1701996897,1769497888,1851880563,1701060724,543255584,1920298867,1696625513,1931506803,1919971445,545418601,1814062436,-2106777503,1919512429,604638565,1953719618,1684955489,1936024096,1769108852,1886611310,1919381362,1634561377,1953068320,1751476000,1701279077,1702240366,1785296754,1685218660,1445202445,1634234991,1852138606,1293972069,1953723745,1651074418,1763734117,1629516915,1679848309,1394634085,1667851632,544367976,1718906469,1953395301,1919907616,225338724,2017797130,1702130537,1684955506,1919164517,1970435689,544106868,-2073266591,1634628455,1919295588,1830841990,1701736041,604638580,1835363407,1634956129,1986358383,1752113249,1852399978,1768910880,1952806003,1830843764,1953720693,1635021673,1159989773,1868767340,1869771886,1868849516,1852121202,1869837600,-2106235360,1952805408,1684107881,1701060719,543255584,1869440365,224487794,1866671114,1869771886,1868849516,2019893362,1702130537,543519854,1293971300,1702065519,1952805408,1684107881,1633951855,1835363616,1634300578,1143212557,1702259058,1936007282,1702130537,543519854,1869441394,544174963]},{"sector":11,"length":512,"data":[1819042148,1701650529,1769107309,604638561,1936291909,1735289204,1970228512,1679844723,1702259058,1768169586,1818386803,168649829,543509540,1953719655,1852731241,1701996897,1769497888,1851880563,1701060724,543255584,1920298867,1696625513,1679848563,1667330946,-2106168972,1109658125,1635021669,543452769,1953719650,1852404341,1919972199,1634887535,543255917,1667329641,1717922164,1445202445,1634234991,1852138606,1293972069,1953723745,1651074418,1679848037,1953194341,1701410409,168653938,1769489700,1919251571,1701080673,1769104416,1953854070,1763733097,1953194350,1919252073,168649825,1701596964,1936941421,1701605217,1864393078,1767991912,1869619310,1702130537,1851875700,2038721312,1953731700,604638596,1663069253,1920233071,1684106351,1679848047,1293970533,1702065519,544105760,544174965,-1602981019,1936024608,1769235297,1868849526,1126435341,1920233071,1684106351,1696625263,1953720696,1702129253,544171040,1937076045,1701060709,1769234803,1868849526,1143212557,1702259058,1936007282,1702130537,543519854,1634953572,1986622580,225408097,1867326474,543519605,1986622020,1847620197,1763734639,1635021678,1684368492,1277430285,1701257317,1869182067,1767992942,1679844722,1634476133,1970238240,544434546,1936009070,1634738292,1852383347,1818326131,168657516,1936015908,1769108852,1886611310,1919381362,1634561377,1701408288,1701257332,1953721995,1701604449,224686693,1632445450,1920234357]},{"sector":12,"length":512,"data":[1700948325,1768824946,544499811,1953721961,1768713313,225735269,1917068298,1970435689,1701734772,1785012334,1936615712,1819042164,1684107877,1327761933,1767991912,543257710,1864395109,1629513068,1852728691,1970566245,1126435341,1920233071,1684106351,1679848047,1293970533,1702065519,544173600,1953721961,1684106337,604638575,1953394499,1634496370,544370532,1293971300,1702065519,1868656160,1936615712,1634492788,168652644,1769096228,544367990,544108398,1953721961,1634495585,168652660,1970228516,1679844723,1702259058,1852383346,1818326131,744777068,1851876128,544501614,1851877475,1881171303,544502383,745090856,746204960,744697632,1684955424,543305504,1635151465,694446444,1277430285,1701257317,1869182067,1767992942,1679844722,1634476133,1970238240,544434546,544502629,1953721961,-2106823583,1835606060,1936945008,1701601897,543515680,1851877475,544367975,168650084,1953656688,1764698144,2049908780,1664032812,544498976,1763729967,1818326638,1936024681,604638505,1953719618,1852404341,1919972199,1634887535,543255917,1854629223,1818326131,1919247724,1981820004,1851880037,1769104740,1981835118,1881173601,1953656687,1701408288,1869422708,1768711527,168651626,745090856,746204960,543371040,790654565,1852776546,1684825447,220817257,1632445450,1920234357,1700948325,1852383346,1818326131,1919248748,1092627572,1751348078,551646572,1852727659,1667853856,1730180200,1667594085]},{"sector":13,"length":512,"data":[1818588008,1702305908,1852138610,791153165,790637673,790637690,1853169763,1647255652,1735292192,1769237633,168634727,1769096228,1953854070,1852141161,1936615712,1819042164,1684107877,1634410540,1852383342,1646290292,543257721,1953656688,791153165,790637673,790637690,1668227171,1647255656,1768386336,1734964332,168634721,1785220900,544106849,1852142433,1953785198,1881156725,1953788527,1696620905,1870012521,1635131497,1635018857,671747425,1752328566,1819043173,1852141161,745090848,746204960,543371040,790651242,168634722,1852785444,1819243124,1919902817,1818584096,1970228512,1763730803,1635021678,1868849516,1846152492,1702043759,1702195232,1663067492,1768058209,1696625249,1970282604,1869902437,1764698144,2049908780,1664032812,790657312,1869488226,1822455328,1936680041,604638505,1953394499,1634496370,544370532,1293971300,1702065519,1936615712,1634492788,539783012,544170350,1869619330,1990292339,1830841445,1918985333,1919905824,168649076,745090856,746204960,543371040,1647255653,1986947360,1684630688,220820335,1917068298,1919252073,1936615712,1819042164,745501793,1886218528,1769173871,1701603682,1835098912,1918986594,1869619301,224490610,1764698122,2049908780,1664032812,790652192,1869488226,1635131502,1701079404,604638505,1937076045,1919164517,1919252073,1919705376,2036621669,1936615712,1819042164,168649829,543509540,1953719655,1852731241,1701996897,543515680]},{"sector":14,"length":512,"data":[1931501932,1769108847,1936007283,-2107367308,1763738986,1635021678,226651244,1698833418,1920300147,1936158313,1735357040,1835884914,1818304609,-1956288736,1635021678,1701145708,168649842,1969311012,1701999731,1919246953,1953720608,1751348000,1763733103,1635021678,1701407852,168653938,1769096228,1953854070,1852141161,1684369952,1763733089,1635021678,1919249516,168649825,1785220900,544106849,1780510319,1935745135,1701736037,225801332,1866671114,1869771886,1868849516,1701060722,1867325548,543519605,1763729785,1635021678,1868849516,1126435341,1920233071,1684106351,1679848047,1867325551,543519605,1763745898,1635021678,1868849516,1143212557,1702259058,1768366194,1852383365,1818326131,1869898092,1428425229,1818386798,1869881445,1936286752,1701601889,1970228512,1679844723,1702259058,757932146,1852785440,1819243124,1851871264,1763732581,1667309683,1702259060,1227098637,1936683117,1818388851,1701060709,1937925152,1769235297,544367990,1730176364,1769239397,1634627183,543519337,1814062436,1869815905,1936290421,539831584,1344300396,1701736033,168654177,1663067492,1768320623,1634891111,1852795252,1953719584,1952669984,168650345,1701400100,1869422708,1768711527,1646291818,1970565989,1735289202,1869770867,1835102823,1965056365,1948284009,1668489317,1701536104,544105836,1126182189,1768320623,1634891111,1936025972,1919248483,1936269421,1701251597,1769235297,1919247734,604638564,1937072461]},{"sector":15,"length":512,"data":[1768256116,544367970,1852727659,1667853856,1679848552,1953194341,1701410409,1998615666,1701081701,757932142,1702122272,1970431349,1718839150,543452261,544502633,1769237345,604638582,544104779,1702129257,1634625824,1986622571,543257189,1986622052,1769239922,544105838,1260399917,1920233071,1886153839,1818586721,-2078249371,1801527410,225864052,1750017034,1852399978,1696620916,1870012521,1869619305,1635021673,-2073354143,1939108985,757105780,1752113197,1852399978,1819631988,1852776565,1953194272,1769367913,225338734,1867392010,543519520,1684370800,1701060709,1952670067,1918989929,543974688,1953394531,1634496370,544370532,1159736621,1632641132,543974766,1663067492,1920233071,1696623727,547386483,1769235297,168652662,1886210340,-1586269329,543974774,1634952548,1635150196,1868767346,1869771886,1868849516,1868832882,1970228512,757097843,1634738221,1818586729,543515680,1953394531,1701605234,1769234720,1868849526,1227098637,1936683117,1768057203,1679844716,1952543593,1635150196,1763730802,1919164524,1919252073,539831584,1852727632,1869376613,543777824,1953394531,1819045746,1852383343,1853187616,1852795258,604638565,1650552405,1948280172,1768169583,1818386803,1867325541,543519605,1986622052,757101157,1867325485,543519605,1970169165,544434464,1769235297,168650102,1886210340,1769173871,543517794,1679844708,1667330946,1702259060,1701585010,1936025376,1852795252,1919508846]}]],[[{"sector":1,"length":512,"data":[1701060709,543255584,1920298867,757101417,1812598061,1701650533,1931507054,1769108847,1936007283,1667309684,224815476,1766728714,1830843493,1818584943,543910505,1953719650,1852404341,1919972199,1634887535,543255917,544500085,1931502964,1801545827,1852140645,539831584,1936291149,1970169197,544434464,1667327335,1702259060,224686693,1632445450,1920234357,1700948325,1634410610,1847619182,1952998249,1634034720,1986622571,1953654121,1919252256,544105828,1293954349,1836283233,545353317,544502633,1769237345,604638582,544104779,1702129257,1634625824,1986622571,543257189,1986622052,1769239922,544105838,1293954349,1701671797,544110958,1629516420,1986622571,1327761933,1767991912,543257710,1981835621,1881172335,1953720687,1797284193,-1804306044,545551475,1746939181,1769105769,1768710518,544172907,1629515375,1768518763,1701734774,604638574,1931505486,1970282597,543515749,1634952548,1986622563,1696625249,1868767340,1869771886,1868849516,1701060722,1867325548,761623413,1851072557,1852132640,1701060771,1867325548,543519605,-1602981019,1952669984,225408617,1833509898,1936945008,1818588833,1936024608,1986622561,1663070817,1920233071,1684106351,1679848047,1867325551,543519605,1293954349,544566885,1293971300,1702065519,1769234720,1868849526,1227098637,1936683117,1768057203,1679844716,1952543593,1635150196,1763730802,1919164524,1919252073,539831584,1970169165,1818584096,1970228512]},{"sector":2,"length":512,"data":[1763730803,1969627246,1869183598,168650094,1970228516,1679844723,1702259058,1852383346,1818326131,778331500,1632641056,1701667186,1936876916,743780128,742731552,542650144,1814065006,1701277295,1970479218,1919905904,778331508,1277430285,1701257317,1869182067,1767992942,1679844722,1634476133,1970238240,544434546,544502629,1953721961,-2106823583,1275727150,1881174885,1835102817,1701999754,1429151859,1160716332,1479483436,543518240,1953394547,1970040864,1970479219,1919905904,779321972,1294207501,544434549,1953719650,1852404341,1919972199,1634887535,543255917,1854629223,1818326131,1919247724,168636004,1634885968,1702126957,790655858,790637653,1852121157,542650144,1952803182,1701145888,1852776562,1936876900,1853187444,168636004,1969311012,1701999731,1919246953,1936615712,1819042164,1953654121,1632641070,1701667186,544367988,539776303,539772207,1998608431,1701081701,1768824942,544499811,1919444333,1953396000,1953722981,1954182273,604638510,1986622020,1769239922,544105838,1953721961,1701604449,778330482,1918980128,1952804193,544366962,539776303,539772207,1797281839,1696624225,-2073288598,1701996398,1986945312,1633971844,168636019,1768507428,544105842,1920297569,1935745129,1701736037,779449460,1633034272,1937009004,1952804201,743780128,742731552,542650144,1696622949,545555566,1952806260,221148532,1699947530,543254560,1953721961,1684106337,1818566767,1852793632]},{"sector":3,"length":512,"data":[1819243124,1919902817,543515680,1937076045,168636005,1931505486,1667309669,1635020901,-1603461010,1869357171,1634738291,1701683314,1936683636,743780128,742731552,777531168,1126435341,1920233071,1684106351,1679848047,1867325551,543519605,1953721961,1684106337,538979951,1881174863,1837331041,1869771877,1429151859,1160716332,1479483436,1868656160,1868657440,1767992608,1918967923,1869900133,168636019,1769096228,544367990,1953721961,1634495585,539914100,1918980128,1952804193,790653298,790637685,790637669,1869488235,1635131502,1768188268,604638510,1986622020,1663070821,1869508193,1700929652,1634692128,543450468,1836020326,1953068832,544106856,1684957527,779319151,2017796128,1461744745,1868852841,1629516663,1948279918,1629518194,1852399975,604638510,1730176332,1769239397,1634627183,543519337,1881171310,544503141,1701999752,1634231072,545417074,1937076083,1852397344,1937207140,1359613230,1953786229,1461746277,1868852841,1696625527,1936007284,1702453619,545595514,1987407726,779444581,1109658125,1970565989,1735289202,1869770867,1835102823,1797284205,1847619169,544499049,1970168182,1461744745,1868852841,1730179959,1684106341,1998614117,1701081711,168636014,1770612034,1734960238,1852397344,1937207140,544105760,1651470960,544367973,1768845423,779580773,1411648013,1651074418,1797288549,544108129,1751345518,1870012532,1767317614,2003788910,1969299571,1701257331,1701077356]},{"sector":4,"length":512,"data":[1702305902,1852138610,1107954990,1684956517,1394634341,1461740905,1868852841,1965060983,1981834350,1970500197,1852139619,1701401376,544433440,1701737061,221148277,1917068298,1970435689,1701734772,1634410606,1785012334,1684106272,544432484,1854304870,1852397344,1937207140,1092624430,1970041718,1461739892,1868852841,1864397687,1713399907,-1804373356,1734942827,221146725,1782653962,1634300533,543778080,543780726,1633968492,1461739892,1868852841,1936290679,539910516,1936289616,1461745012,1868852841,1936290679,1780506996,1920540769,545551465,1701082485,1701145708,168636014,544165412,1881171315,1701078389,1918984992,544366951,1663069285,1920233071,1684106351,1679848047,1701081957,1852397344,1937207140,1393167662,1634167905,543515680,1684957527,544438127,1970675833,1635150949,1763729696,1852142702,544366964,1864393068,1634887024,1856137571,604638510,1868767311,1869771886,1868849516,1634607218,1869619311,1931502948,1663070821,1701999201,1868849511,1881170208,1769239137,1868832882,1852397344,1937207140,1393167662,543254881,1461743460,1868852841,1696625527,1852142624,1847616884,1835103855,1702129253,604638510,1869638985,1651078003,543517801,1953721961,1634495585,1679844722,1702259058,1852383346,1634628896,1936028448,1852795251,1768169573,1852397344,1937207140,1426722094,1919509363,1767317605,2003788910,543498355,1919969650,1918989935,168636005,1667845412,1869836146,673215590]},{"sector":5,"length":512,"data":[1293953362,1702065519,1769096224,544367990,1936876886,544108393,808595000,1866664461,1769109872,544499815,539575080,1919117645,1718580079,1866670196,539914354,859322673,960049453,538979890,543976513,1751607666,1914729332,1919251301,778331510,1193544205,1769239397,1634627183,543519337,1814062436,1869815905,1936290421,1667845408,1869836146,673215590,1293953362,1702065519,1919252000,1852795251,841889824,1124732208,1920561263,1952999273,692267040,1667845408,1869836146,1126200422,779121263,943272224,959524147,539898425,1970230304,1919164531,1937009007,1937928736,-2106166683,168636019,1667845412,1869836146,673215590,1293953362,1702065519,1936015904,1769108852,1886611310,1919381362,1634561377,1919243808,543517043,808595000,1866664461,1769109872,544499815,539575080,1919117645,1718580079,1866670196,539914354,859322673,960049453,538979890,1701604417,1667592736,1852142696,1869575712,1751474802,1701082479,168636014,1667845412,1869836146,673215590,1293953362,1702065519,1701991456,1919246953,1919243821,1852795251,841889824,1124732208,1920561263,1952999273,692267040,943272224,959524147,1293955641,1869767529,1952870259,1919894304,538979952,1701604417,1667584544,543519848,1651666806,1818323045,778986868,1294207501,1869767529,1952870259,693250080,1970228512,1679844723,1920362866,1852404853,1919252000,1852795251,841889824,671747376,1126181187,1920561263,1952999273]},{"sector":6,"length":512,"data":[1667845408,1869836146,1126200422,1869640303,1769234802,824209007,758331449,842610993,1699553326,1852121188,1919770995,779383940,1294207501,1869767529,1952870259,693250080,1970228512,1864394099,1767991912,1919252078,544172403,808595000,1126697485,1866670121,1769109872,544499815,1919117645,1718580079,1866670196,1919905906,1869182049,959520878,825045816,775043385,1767983904,543779691,1701538159,1952801909,1684631584,1952806020,778994820,1126435341,1920233071,1684106351,1679848047,1293970533,1869767529,1952870259,693250080,1970228512,1444963699,1769173605,941649570,221262382,1886339850,1734963833,1293972584,1869767529,1952870259,1919894304,1634889584,1852795252,943272224,959524147,539898425,1685017632,1814066031,1679848303,1667592805,544436072,1702061426,1684108914,539915119,1126435341,1920233071,1684106351,1679848047,1766662255,1936683619,544499311,539578920,1937076045,1700143205,1868657522,841889824,1124732208,1920561263,1952999273,692267040,1667845408,1869836146,1126200422,779121263,943272224,959524147,539898425,1685017632,1679848303,1768256105,544436084,1702061426,1684108914,221148015,1917068298,1919252073,1818584096,1667845408,1869836146,673215590,1293953362,1702065519,1919243808,1852795251,775430245,168636466,2037411651,1751607666,1126703220,1766662185,1936683619,544499311,1886547779,959520814,825045816,775043385,1968447520,543782004,1768169577]},{"sector":7,"length":512,"data":[1953786226,1869815913,1914728302,1919251305,1769234806,604638510,2003790931,538976288,538976288,538976288,1701080909,1702125938,538976288,538976288,1953718598,538976288,538976288,538976288,1667329621,1701602659,1702125938,538976356,1651073350,538994028,538976288,538976288,1702457165,543518318,538976288,538976288,1769496909,1701601645,538976288,538976288,1819047246,538976357,538976288,538976288,1735287116,1835098490,538976288,538976288,1768777031,1818584164,538976356,538976288,1818586707,538976288,538976288,538976288,1702260303,1701737330,538993772,538976288,1684367694,1701276018,538976288,538976288,1953786189,1701995884,538976288,538976288,1701343048,538976288,538976288,538976288,1701734479,538976288,538976288,538976288,1735296588,544039283,538976288,538976288,1836216142,538995809,538976288,538976288,1650552403,538976354,538976288,538976288,1667457359,1919249509,1684107877,538976288,1633970504,538976371,538976288,538976288,1953001291,1819047285,1852141161,538976288,1701867342,538976353,538976288,538976288,1751738699,1953790308,1954835844,538996372,1953391948,538976367,538976288,538976288,1701080909,1868849522,538976288,538976288,1768988754,538996580,538976288,538976288,1092644686,1701602659,1868849522,538976288,1635149124,544366951,538976288,538976288,1701080909,1868849522,538976288,538976288,1768988754,538996580]},{"sector":8,"length":512,"pattern":0,"data":[538976288,538976288,1634952516,1701602659,1868849522,538976288,1953391948,538976367,538976288,538976288,1768187213,538976367,538976288,538976288,1869374806,538994019,538976288,538976288,544108366,1701012321,1634887020,538996596]},{"sector":9,"length":512,"pattern":0,"data":[26171981,327716,53739552,76284724,1847472128,5232,30,786433,343802953,358023168,0,164954990,883]},{"sector":10,"length":512,"data":[0,0,0,0,-1192457387,-538443774,-28915946,1586167808,-1846786,-1207631689,-397409028,1532696344,-2080487681,2082078334,1575324645,-326412861,-402608456,1448548018,1443133067,1350583949,1528578024,103463003,-169322928,-1923392741,-397377466,-1956963190,1418104312,381243647,-396996352,-998038629,1975520006,1418104077,-2115481345,-1072997597,-947190668,-2037562133,-397344940,190522224,-152078912,285174150,1183706228,-396996480,1532697576,1342582712,463398998,-2037556389,1448148850,1528533992,2028492379,-2037818369,-952369326,-125058946,1600044267,-1017256565,-1192457387,401080324,-402396394,-706211597,1958742800,-62470154,-1343750144,-1982297316,-2013856162,1946225511,541560070,-2080487799,1963851390,-58817750,-2095942535,1953430654,75399180,-2095549440,1969355902,103921682,171227216,367061072,1183472475,-2092504068,1946418814,-25263354,-1341885158,-2093552786,1954152062,-25263342,-2146667410,1946158206,-25263207,-1198295711,-11534328,867761782,884494342,-1612165110,147096341,-1979824501,1978268742,1575324671,-326412861,-402518856,-11135634,-15610826,-857209738,-10790132,-1206793162,-397408712,1532697378,292864011,298596095,1342585784,1528500712,1975520091,30140675,298465023,-402360577,1532693776,729445440,1996443840,513730564,1950374747,-902365332,164292625,1963370587,-902365350,163506193,1963998299,-192508564,922702077,1692930504,-10790132]},{"sector":11,"length":512,"data":[-401486794,-1923409174,1375597710,-538382197,-970237158,-17267063,298465023,-17004915,443476048,-1098687653,2113994488,-58290896,149442814,-2046600194,1111359224,-954302976,218753542,94431232,74907472,1342517944,-2095778840,117376708,719917250,-902365439,445442065,-125400741,922702078,922685896,-1746398774,113541914,410370059,1342586296,51497121,1358887046,1527664104,-2133292197,-1418395585,298333951,298596095,1528427496,-1073285541,963907600,298596095,1528447464,512487563,1082790348,468209919,-1073063159,1085803893,922701830,-2048388660,-10790119,-15610826,-15610826,-401487306,-998045400,-868811002,-902365423,474277905,-1072997541,-202895755,922701828,2092437962,-11540219,103366272,725251072,922702016,1642598860,1079728925,922692468,246944204,884494342,-337096694,113541907,-397409872,-1738801750,1946181933,863495,99306868,103352006,-868811008,-902365423,105035793,334948432,-1207516029,-397407700,-10808280,-15610826,-401487306,1532691780,-17135991,259309579,281151231,105691216,332064848,-1207440549,-397408906,1583027136,-1017256565,-1192457387,1676148762,-1202301165,726663428,-129070647,-1511501743,1183406872,-1746382610,113541916,1342244024,1528337384,-1206793565,726663428,922702281,2078806474,113541916,1342244024,1528330216,-1206794077,726663428,922702281,1609044424,113541916,1342244024,1528323048,-1206793053,726663428,922702016,1139282380]},{"sector":12,"length":512,"data":[113541916,1342591672,1528380392,200951433,-1187941184,1347485743,1528490984,-398030501,58048523,-1157576727,-670892031,-2132255095,141842751,1954103168,11725059,103352006,11200768,1370773254,-1014095411,369528358,650152960,1443387,-13428107,-1341128519,-1359807389,-2128212363,1970827069,2105747189,91488258,103352006,-351838464,106859377,126492555,-386692272,173737829,-1200851776,-1924135334,-397409980,1532697238,-1670070261,1342594232,-1962516853,-397393913,1532697218,125157387,103352006,-1204557055,-1957689761,126551646,-68661184,190536471,-402164288,-1070859458,1586172907,1074236166,96647248,308471888,28859227,1005080576,1325357841,105284356,75399938,-2088602368,2097284222,94812176,306112592,112731,286845008,-935919781,74877713,1586226897,-26149114,1527362536,1958742875,45934620,106859344,-1191284481,-397408974,-998043124,112646,283437136,-935919781,396683281,-1947169957,-1978546146,-397344960,173737598,-14519104,-401487818,1029379978,360054787,298333951,1528266216,-1947711863,-1961768930,-12531984,106859264,1996437503,386328814,1187470171,-352321036,-195130594,1988879313,-1204748538,-397408808,1532694944,1342177720,1527806440,-1946925313,994575430,914289734,-772514165,108432355,1031813259,51672108,-25886733,1528241640,1955321995,-8879874,-1950976724,-472779682,-16353653,-294191312,1528194024,1988869611,-1947807484,1888159326,742162686]},{"sector":13,"length":512,"data":[1988827764,-1650188,-471269776,1586191126,-27751674,2021716107,276114687,1342547640,1527849960,1342177720,1527774696,1342188728,-1980873077,-397348282,1532696780,199902857,-955812672,129094,1996434411,4176126,-227082416,-2097040920,-1073019196,1996429173,32565502,1975520091,-129579259,1996423169,35711230,-935919781,86960145,281059931,1853226812,33062531,1048600949,1963001385,-935919831,99792913,171227216,275834960,705086595,803754176,2033998842,28837237,721611520,-196703808,1187448299,-2097151500,1963062398,-935919857,175564817,-196703909,276086795,1342523576,1527802856,1342177720,1527727592,281022080,-2145064176,-284114906,116792811,1963987136,-125926634,-1206881023,-397408952,-1201991616,-397410303,-950333670,1098246,11790592,1342188728,-386763009,1532696548,199902857,-1962314560,509656,-364476096,-2131599733,1735655487,1358710413,1528627688,-2131599733,1966735743,-330920665,-1744336304,1586092171,1736963814,91488779,-352313299,-228685050,764938122,-397410240,1532697830,1342244024,-397361109,1532696912,-1192212855,-1185939071,-11468778,-1259801994,113541890,192266251,1996443728,-102635278,-1207516029,-397408671,-10807057,-387387274,1996446488,345434352,-330920613,-59310256,1528600040,-364475557,-2081274231,1946219134,-12261117,281165443,1086331649,239659088,-1956684197,12803557,166346371,-1593213952,104400886,75237866,-1022888799,166338187]},{"sector":14,"length":512,"data":[-2020875311,12781482,-2081649835,1187385068,1183521523,-129595128,1374834317,371910737,1187404635,1183534835,-163149562,-1996208501,1183709254,-397389582,1532696080,16678531,1183517557,1967368,388425808,-28931237,-1017256565,-2081649835,1187385068,1183521523,-129595132,1374834317,366930001,1187404635,1183666163,-397389582,1532696016,16678531,1183517557,1967364,384231504,-28931237,-1017256565,-1957363517,74907628,-402229505,1532696818,-443826133,-1957313699,49054700,-16353537,-605551498,190536472,721712576,-11408448,870844022,37575435,-1207599616,1089144824,-16353537,-1209531274,1079728920,1996479861,74907398,1527354856,-28931749,208977931,-402229505,-1956963586,351010374,-11485141,1072170102,-10790133,-337116042,-1410639094,-1017256565,-2081649835,-2091499796,-16247234,379651700,12511496,1859929798,903694022,1357530765,1528149480,1357530765,1372475021,1373392525,-2095757336,1183516356,-196703766,-1982839157,-164892090,-1946925426,-1977159074,1116273472,-24951050,737180682,-1974473738,1033434690,1165295684,-1728626038,1586092171,1736963780,91488779,-352313299,-146634236,5127576,1116350325,-661939976,-155033975,34301831,539821428,-1979389184,1033435202,158662736,1963654787,-339727585,-24951258,-1963885302,-1952909758,-966882856,191334390,765228034,-1679097824,-1728757110,720661130,-1547629623,-1956771818,1438866917,-326898549,-230242532,1187478016,-1929379596]},{"sector":15,"length":512,"data":[-1924078522,-1185811890,-397344721,-998042690,-461471738,-1207601665,48955393,-443826133,1048822621,1962870808,135831812,-4200253,721843528,135832512,-19076925,-210386933,-352321096,-326412816,-1207243645,-11534292,1527361046,201082505,721778112,21359040,108461904,-402360577,-997982818,1958742790,-59310327,1527896040,-994516501,1996443664,64874500,448289627,-994553848,870862864,190536466,-385649472,-994574202,1996443664,70445060,-994550949,1139298320,-661955822,281118662,281327616,305457232,-1965520037,1343275911,1526796776,477413386,1343276216,1527913960,1979712317,281327631,303097936,-958887077,1098631,1343276216,1526774760,745869372,1343276216,1527903720,1979712317,-60912865,773750656,367531636,276121855,1342709432,1527525352,1342177720,1527450088,1342244024,162404095,-96040613,175489035,-386107649,-379847330,-11469001,-773323658,-10790143,-1477903754,1174625041,1996443898,54519812,1996446555,294971642,-96074917,-1962654071,503708742,1996443648,287500292,1183669083,1996443658,-92864516,-2096605441,1996424900,-53679876,1958742875,-59310122,1543307752,-386238721,-10809164,-1377239946,28859152,1575324416,-1957363517,250381292,15877831,71732035,-1913108855,1347482182,1527941096,-25263269,-1207602176,65798143,-1946794357,12803557,-2131981483,1952187518,75399174,-1341885137,717446401,1438866880,2122378379,108277508,755269248,28312693]}],[{"sector":1,"length":512,"data":[-1070939299,-1957313699,149717484,-62470399,-2037579776,1183448824,106859518,-397408374,173801398,-1961921344,1200227934,-1477947391,-1073062913,1996434549,108462078,1526780904,1975520091,-25755889,-402360577,1532690628,74760203,150752896,-385976577,22745234,1996488262,108462078,1526868200,1975520091,-25755889,-402360577,1532690969,74760203,83644032,-385976577,22745190,1183579718,1996443902,23848966,-1072997541,1996427125,74907646,1526815976,1958742875,-61964284,141604866,-25755824,1527777768,1958742875,141735997,-25755824,1527773672,1958742875,-25755859,1527781864,-1946270207,-11469242,-756545930,190536448,-15764032,1996488310,12838916,-1072997541,1317012596,-2037579268,-11469064,-1981282186,-1956947185,-443810746,-1957313699,1586190060,4161540,2139102324,376781313,1988822922,-1979414522,1149763911,38061569,112640,1586170091,509446,-1956724693,1438866917,-326898549,142129154,74907472,1526956520,-2133292197,91553855,-352041333,1086556936,-352041335,1575324640,-326412861,-1610421117,1352140912,-402360577,1532694916,201213577,-15960640,1609041014,1174625039,-1608717564,1352140912,-1979824501,1346372678,1527865320,-28931749,-411713525,-1962654069,1438866917,-1202262901,-11532176,-2098723722,-259302401,251193430,-1072997541,1924664948,-396996600,1532694250,91602955,-351765314,-1998039545,-259302401,108461910,1527685096,106859355,453066624,-1956757312]},{"sector":2,"length":512,"data":[1438866917,1448602763,1342730424,-402360577,-1956905163,-1410836488,190536462,-1207012160,1464862834,1527684584,1975520091,-1075292405,-259302642,132904707,-13244329,1475382107,-402229505,1532694092,-550773109,-972661245,1586167815,20938758,1581301787,1575324511,-326412861,-16353537,-1763179402,190536703,-15043392,2011694710,1174493966,108461830,-402360577,1532755761,-352321096,-1950340350,1438866917,1448602763,-2147197301,175374399,973176704,1182991477,1996423684,-23599100,-1012901,1996424310,232187910,-561292453,-1962648021,29755006,20807680,1581301787,1575324511,-1957363517,149717996,1183536727,-62486266,-2147191157,393478204,973175936,76157301,-153580648,17524615,75498356,-1975106016,-806858748,-1073062916,1149897844,-1008185343,-1073062916,1187412085,1586168062,4161540,2139105908,611662337,-1952970870,-128022056,191334390,-1979223038,539818054,1586169323,738691588,-28932032,33834627,1358841482,-402229505,1532691096,108314635,-385875528,1182990700,1586168326,775913476,2139104117,359923713,1342261130,1543264744,292864010,-2147197301,1962934911,-373282040,1988690240,73304836,-397408374,173800506,-16026432,1996424310,216459270,1996435691,222095366,64523099,1200227934,-28931841,-65738672,1975519835,142522380,108461904,1527545832,74907483,-402229505,1532693620,-1996063093,1586168958,4161540,-1058471051,142653440,1459063632,1526783464,-1963422885]},{"sector":3,"length":512,"data":[-28932091,1191183814,1342735288,213182550,-1072997541,1183522421,105840388,1929791033,-12785405,-1979294069,-1410838521,-1073062917,1542186100,1342735800,210298966,-1072997541,1183529589,105840388,1929791033,-15668989,-1979294069,2145931271,-1073062917,1183573108,105840388,1929791033,-17503997,-1979294069,1676169223,-1073062917,334226548,108461910,1527517160,108461915,1527539176,-1979300351,-397345210,173800258,-972786496,-1973617082,1586232902,105316102,-1073084536,904463220,-59310081,1527527912,1962934845,-60912885,1543653318,214982,-386107649,-379911316,1600061115,-1017256565,-1275051,1996424822,246212612,1174625115,1575324420,-326412861,-16353537,-236452746,56318734,-443874234,-1957313699,-2091493396,1946158206,108954374,721712384,-14292032,-739769226,-125084917,1325694467,1996783161,108432362,-2142895637,-277610436,87557258,-947129227,-443850914,-1957313699,82609132,1343135928,-402360577,1532694794,225820683,604939680,1967144000,-339727553,74907477,1527719912,-244006901,1342736568,-402360577,1532755848,201082505,-1961003840,-2012771624,130481734,74907392,1543483368,225755147,-1946270070,126418014,-335544392,-28931563,-1996726645,25133063,-5344256,-639105930,-443852018,-1918844067,1975519752,-1308183536,1948372479,143434248,-1918697552,-789080056,-1925283645,175374344,143460038,143433728,129238251,-466476595,-1957363517,250381292,425600,1187386997]},{"sector":4,"length":512,"data":[1183652339,-397389582,1532693568,-17676662,105285824,67520138,73304928,-2012985601,73304839,-972798209,800078343,-104863664,1958742619,73304843,-972798209,166419463,-16490869,130417734,-213465553,105286215,-1946663288,1183384646,-229732870,-370650799,-2091164917,1962999422,74907401,1527579624,113706731,1247722,-1946270069,12803557,-2081649835,1187453676,-953679618,143582790,-1979711560,1183443014,671135980,-1374224560,1183406857,1975520234,-28915944,12059648,385830916,-1990522450,-1072960954,216597365,-431569151,1085802656,12079104,1996443776,93513732,-1996045181,1950411846,-431569099,-2135422794,28856321,1996443779,93382662,-1996045181,1950410822,-431569127,367724755,-361300144,-387418369,-998045694,-297387770,-1192688780,-25755904,-1411329,32042102,113541895,200165001,-942312000,149939782,98977479,-263796983,1183536896,-230258196,1357923981,184739920,2122537819,2104819964,-387156225,-950336272,-5050,753288903,-263796983,1183536897,-230258200,1357923981,181856336,2122537819,1366622460,-387418369,-950336316,-6074,1491486407,-263796983,1183531776,-163149564,1357923981,178972752,2122537819,628424956,2028357319,-263796983,1183531777,-163149562,1357923981,176875600,2122537819,91554044,15091399,-360807680,-16288768,1978198646,2122537736,125108204,-387156225,-2091187104,1962928254,-394854649,1527010280,-1947842933,12803557,-2081649835]},{"sector":5,"length":512,"data":[1996424428,-140318716,-62486181,-955812544,130630,1190534379,125043196,50218695,-15734016,-806878090,1950374671,-28915729,1183514624,1575324670,-1957363517,74907628,1527459816,-1017256565,-2081649835,1187450604,-1958542862,1183385158,71732214,-1913108855,1347482182,1527374824,-28931237,-1017256565,567095476,91423292,1342619699,57655243,145035,-25037013,57806848,-99614530,-998123634,1945833934,-400615920,-1070395440,306833488,-850591816,-1312388319,1222693636,162833206,906606267,-461170804,1737045758,-83964,1737045584,1355872010,107448630,141003062,-1339651786,-1980300535,-1946156490,-136434749,-850742053,512505377,118884848,245415932,722587833,-205507633,-1960896854,-485646834,-388890878,-1444409030,-387108081,521535560,168900351,168769279,168638207,1357801960,-1023344152,358064430,62445710,113718784,371722674,254994512,907128552,228605569,125163222,-13217704,-1207065578,-11534081,1862906390,12058627,-1994273483,-1945510882,235527686,620804127,-854251334,-2095114719,897086,244070004,244059570,109972922,-1960441360,-989844426,-1945259002,920335322,229646079,521536883,906948585,230164165,62642828,520041984,521538992,166725262,739150630,-1908481280,654259137,1946172800,899380,-217461058,-1190431578,-1070366721,561360626,503768555,-141877497,-1324746305,1093446660,-523104910,1093446802,-1039530638,384756650,310047,167356288]},{"sector":6,"length":512,"data":[1140897983,175251917,1954595574,-108036091,2034974729,230473447,-401752897,-1128398649,230473485,-1023365144,871140181,1427827657,28961931,1427303168,1465314443,-352255815,-326413048,28923734,-922070783,-1061282187,247512846,-1107263512,-1094775364,7792653,228605569,74831574,228988671,-1089618242,1642597822,230604288,-401752385,333971559,1958742798,-469084143,-2096401072,1962935422,71747333,283640063,-469084160,1183516533,-850611196,1566465825,-1307669565,-1157111027,520028162,-987886160,-1207313386,567092480,440303647,225705994,169582622,169612997,567092660,-147078369,1330580083,-152892021,-219426305,1945582531,82805518,1158350219,-887806,-1007752419,735873881,990540504,1913266718,-1864956,-1070378527,16656873,-2081649835,1448543468,1443133067,-2096080408,-125107516,1342719629,1443264255,-2096035352,1183385284,-396929284,-998043473,-62485756,-443850914,-1957313699,82609132,750671447,602428938,46433040,1183709323,1996443654,170702852,282126416,-1996045181,750320710,-396931062,-998043533,-62485756,-443850914,-1957313699,49054700,-13937065,1963228729,1354771209,-352295448,1988857941,105155076,52742283,980746812,1963508214,-2116121843,-167107349,17482887,76228724,-1996209109,-1072955834,-11527042,1284113524,1374497287,-2096940568,1178142404,-2146994946,-1088420276,1150025727,-956004092,580,1600046987,-1017256565,1342177720,-1023409688,-2081649835]},{"sector":7,"length":512,"data":[1448542956,722085054,-25261569,1187449067,-2080374786,909707462,343018340,-2096741130,-396955276,-997982372,-495697918,-1864045753,17071747,-947190667,1183515627,-1956684034,46292453,-1957326848,73305068,167190075,12060274,200014089,567099060,-2017065614,-385873415,-1957359940,82609132,1048641330,1912801778,142510595,-1995815285,149620806,-2081649835,-13499156,-1946255736,-930412986,16533190,1971323049,1073785104,116787061,1971326209,-62470652,72780672,-955645148,567098804,37556851,-150375168,1946222785,10479875,242215417,633441171,3998976,-1274448635,-1205744322,-387247872,33375942,-851181384,-2134706655,1317012596,1190543612,57950460,-1962880023,11077190,-1457753086,158597123,1085589811,-1108794931,-851528704,72780577,-851246920,-161092831,1971387462,10938627,1962934953,10414339,-1946157127,1107474641,-638115379,-1258334579,186764607,-2146077504,1964703614,-1948649713,1107474641,-919395891,567099572,-779368141,-851312456,-966268127,-1962869434,-1528297394,139364608,-112906,1190594421,1962934790,-18776061,-1274784117,1931595068,229370115,-28903789,-150505985,132678,1051996277,1183457741,167977990,1452015174,-851594236,-1814400479,33375990,1190597749,1946157320,29982733,-1207675253,567100161,1190575986,1031094524,-1207675253,567100160,-919420533,1946157349,-149901054,525894,-914357388,-149013728,-1274383863,-1205744322,-941025280,-61994242]},{"sector":8,"length":512,"data":[-2013148800,-1962280561,1575324611,-339135805,166502876,-1054617353,-2136422093,-914357387,-1957313791,49054700,990142091,1913255710,12122374,862513929,139365312,-2013896221,1963067897,-1606516390,1977013773,-1575551228,139365133,-1274653045,1931595071,-351685628,-108530114,930381833,167356288,-61384965,-91491701,635685003,1015025076,-2147126006,67762575,1959017132,1964653593,-108036089,99287561,-498662008,734497771,-379691070,-108852075,-2146995199,-344716740,-2013862165,1950353913,1140897816,-1023991347,158662688,-1258334579,1914817855,-351620908,-12138964,-11105024,567099316,-1072970894,2122520948,527696136,-1946157127,1107409105,28910029,-8486912,-1341688822,106334989,1451988715,-2137724154,1963655038,12512219,-2081649835,1586170092,-149013756,-1207471607,-369555200,1048644629,-690614880,385811573,-2013917790,1948256761,1107474443,-779368141,-546168371,167348214,-1955695488,119408214,1183432755,-62486018,-1957275652,-1980593158,1317795942,-1338449144,1974399498,295888970,1979754557,49054534,12246155,36191490,-2135293069,-1948112128,385518548,139365127,1946827948,1962621708,-186471911,-352312600,990752874,-402426373,-1331036137,-62456054,216589291,1591929600,-1201738913,1005125628,1364414715,-903098485,-1957621021,1085539422,1918443981,-28966643,108513339,-1957143719,-2086681606,2122516676,527761662,-1274776674,-165745911,1074395527,1586170740,440369158,-336067723]},{"sector":9,"length":512,"data":[12122380,-1962480868,1177288262,-127497220,585719646,139365131,91605259,384418187,106334987,567099572,162792563,-1072962325,-2013863819,1950353913,-2133161206,58006079,-103814152,-350486344,-186056503,-806813680,-1957363696,-1948808212,-1898410786,75402176,-4603853,-1917914369,2123104117,-18170,-772296974,-24643285,-150714741,1946157510,-783703038,329642985,-1952123959,1576700915,-1957363517,-1948808212,108432350,-661848437,-1070350194,-218103879,-1949173842,-947190658,41157032,-372160092,-921459213,-208952077,-1017251189,-1947432107,-1931572265,-1950314792,2123039862,-1178586362,-1359806465,-114568713,91530995,-14827493,-1946973185,12803578,-1947432107,-1898410793,75402176,-4603853,-139529473,-1953412655,12803578,1475119957,-1962467754,652413006,2123094411,871860996,-139529536,-1949629479,108432382,1149937395,986264575,74972997,1229522036,-1047801353,-443850914,-1957313699,-1957275668,185209142,-2092665610,1946158206,74907454,-2080402968,-125107516,889138411,-2080406040,-952433980,478879358,1966946688,1996445463,-1947708668,113542143,141934603,-956103541,-1878332608,1015236166,735016192,-1956684096,-1866244635,48955830,1755383990,1977879052,1745274632,-335544564,-1606516458,1977013773,-4500727,-1575550977,-846046451,-1023364063,1458342741,183272279,-839498042,-2012985717,624752454,641469044,1187382900,216779768,-872790330,1157187270,1157121734,-1913366900,1183446598]},{"sector":10,"length":512,"data":[108956658,1569392011,72190722,-1962519157,2106263669,1593791754,1476156914,-1995932021,39684357,-1996206711,1971914325,172330760,-164428686,199756011,114185,1971914123,180650764,-443851169,-1957313699,-1957210388,92996734,-1962779253,1435173965,141921030,-854950517,2123061025,-1996125946,1300824669,106268932,-1895271031,74582597,149681715,-1106722328,92995585,1594652041,1575324510,-1957363517,-1957210388,92996734,-1962779253,1435173965,141921030,-1962248705,93194366,1594252686,509026765,-544286836,-1945600373,105221893,-1996063093,39684357,-1996206711,1971914325,172330760,-164428686,1676151019,114184,1971914123,-1956749556,12803557,-1947432107,1603011678,-1945662458,1468793423,1575324420,-1957363517,2123061228,-1962467836,-1178586145,-1359806465,-1965426879,-74774970,944746226,855798789,1606913023,-1017256565,-1947432107,108432342,-1341890933,1958742783,663399468,1960852035,1010904308,-2134304230,-1056825119,-528072444,440156460,-511653606,79757856,1959017025,482351828,-225732353,-1957313699,73305068,200004491,440156460,1627653235,-1975318648,1975519751,-1017277713,-2081649835,1465262316,-1945733493,-1178562864,-1070399472,-203391347,-1073042261,-125102988,28362891,-771235456,-754732576,-532477713,1988880363,-17660,-14308285,-1961593856,-1329034248,132218881,61989074,1126363091,-1813678880,-443851169,-1957313699,552371180,1988843350,-1898935290,1096128,2123218995]},{"sector":11,"length":512,"data":[-1398017056,343195658,-930350965,-511704656,-1310666233,149934851,-403972029,-1157335413,-1404829697,1946222373,-1946645740,-2147372856,-523106335,-271383631,1977631522,1583322085,-1017256565,-1947432107,-1898410793,75402176,1317789579,-1978277112,-527825338,116727,1235878516,-1410078255,-1426863853,1569979019,-1957363517,72780780,-851246920,-166759903,1946289734,29488649,12059764,-1846937331,-1957363706,-348539668,-326413051,1451965364,-383660796,-1957362052,-1959086868,567084118,272494963,-1829997312,1124567699,175374396,74727228,-243979716,-107871310,-1957308949,108462060,721712895,99111104,1575324416,-1957326653,585925100,-1957275903,-1098053514,2122579678,108331012,-1995576856,1183450182,-2009070588,96880389,96880442,1187399516,1183467507,-129595388,-1912963447,-1924078522,-397282738,-997982940,-260144380,-955157504,218753542,-465138944,722072995,-1873810496,-18970995,-72816560,1073923203,-1948105079,-16054658,-969203851,-259325314,-85268394,-1962752893,1979649016,-368654583,-352318455,2122944541,-495568634,113707134,2230762,-2037532181,1464925918,-2080700440,1599997124,-1017256565,1475119957,-1962649973,119408254,567105204,91941215,-2081649835,1448542956,704923274,-28931612,-2147058037,1966735741,-2142812414,91511869,1966030208,25001990,-167021568,1964047942,4030469,1086195317,-1878725824,-1971322690,86376006,81152,-2145009637,29655040,783872011,1996443648]},{"sector":12,"length":512,"data":[207415302,-1962621821,1962871800,208320560,468211536,79987709,510967819,1342992312,-49485737,184861827,-1206946624,1464863860,-2080571928,-1073019708,-830274699,633768768,61931968,-267654957,-1071266165,-754536191,-1947202584,-1956684090,-1866244635,-2115204267,1459697388,74877782,-1207533941,1448086649,-2096358936,-1073019708,113708148,133610,-369098824,2088763703,611662337,1946172544,41713670,-1964805120,-661940220,191334390,-1929022463,65740871,764937354,65732704,-1995689496,-1912669562,1358875782,1342183096,21882966,184992899,-1201638208,1448086652,-2096383512,-1073019708,79208564,-1923723263,1358888070,-2096356888,-2037840188,-1072955656,-397375372,-997983750,212226,2045313908,-88670209,12380414,184730755,-385649216,-2033778840,722534113,-393836096,-427390466,-460929026,-1996480002,-939597178,581,1166655531,138774794,-17135989,-1996125880,-1974072251,-1728126586,-27465648,-1996176253,1170670661,-1962934010,-1946229114,-1979783018,1435045445,-494499312,2041342,-1957633839,637461126,95487968,-1974409005,721347462,-754732572,-2037755672,522583780,-2037690368,-534380828,-754601727,-2037755672,-388956443,-397351894,-998045244,440764684,-1994631799,1435047493,306546968,722752905,-1956684096,-1866244635,-2081649835,1187390700,1183456491,-263813116,1358448269,1356613261,1357530765,-2080722968,-467007804,1946222397,112645,-1070923029,-1017256565,-1947432107,1102316630]},{"sector":13,"length":512,"data":[501817805,-1957363709,1336942316,-352037237,-326413047,-1957777378,800327766,448012749,1312563661,1451951733,105810692,567140490,-1940873392,-1948610878,-853887789,1486772257,48687391,-1259566251,1075957017,1586167988,856131844,12803520,-1964209323,-1270217642,-1272853234,106859264,-1070397559,-1957313699,16562412,41281616,209731203,-16485376,-1207140330,-397410049,-443874717,45663069,-257627904,-1175047338,-466485182,-533549828,-192873502,-401771435,28901316,1021857792,112642,110084958,817106050,-224190003,113161,695468604,166725262,738627110,352750592,-1715457270,864026809,-1364266241,1195899765,169033353,-218103879,-1949173842,114641,-1912569410,-1408634850,-76275652,-143390404,1869876540,1802813450,1017925191,1021867040,1021604873,173831181,1012430016,1009021986,1107522652,-919345941,1547480129,574421620,-788331404,-1047800853,-787224111,-898301528,-1404173845,729025852,661962762,-1166794180,57957436,871164738,1017921993,1023046748,50623522,-1948521519,334090689,1963043025,379055058,222202143,1205273354,-687609903,-18710462,-997465557,-1962274909,385549272,1065956871,918897475,-1431565805,-92946422,-266432970,8502793,-1070398485,540847274,154991476,222099316,-1073054604,-1992918924,1313030975,1948269740,1946762465,1947024605,1958742626,1948400734,1952201767,-454317565,-1404974797,-93037508,108274236,-1426891600,1555091947,-1426855471,581961331]},{"sector":14,"length":512,"data":[1321593770,1947024556,1958742574,1948400682,1952201911,-320099837,-1404974797,-93037508,108274236,-1426891600,1555093995,-1426855471,581998195,869133226,521579200,1991,209856255,518818645,166725262,740199206,868453888,871773120,-17921,242539275,4096038,108265472,-1371099406,-947127691,1191060544,-422445429,-402650695,-1957688582,183822534,101323171,-1960900834,869829583,-481730570,906267430,164496955,1448153205,164544343,-218102087,1499357095,-1993996940,-1404878017,1975519914,651879162,1562316681,-1957363517,509040364,72780551,-1391606082,276087355,208967232,-1178586217,-1359806465,-336857205,-1956749418,46292453,-326413056,74907479,201313256,-1843366720,-1070335349,-218103879,1238497198,-2130705733,-703750082,-16484906,-1274174954,1596050752,-1034033781,359792642,-443826125,-126631075,1763408,-1947979176,1942183397,976903,-1711276104,-1017256565,32039986,-173882624,1977879049,-230784990,208798473,208871996,74588220,116065712,41292604,-2068114512,-1550264564,-1966929430,16247748,1458342741,74877783,-2129880901,1946823934,211467026,171245185,-1665463948,1157529868,-1958185718,619676158,-993558262,105182730,-164072180,863305989,-1073018997,1149836148,-956004092,33555012,148935,105676802,285591042,-352321096,12079892,1911050242,190536692,-1996196672,869526279,1566465984,-326412861,1988843350,-2114024698,-2130041617,-167066425,594808837]},{"sector":15,"length":512,"data":[1552603955,-108530169,393494537,-277682090,75400024,856454144,-1996126016,76087877,1594115209,12803422,681126030,685844653,689252621,695216446,-1192457387,-1209532047,861361902,-129594944,-1946466680,-1985214858,1183319670,1958742782,-125926650,-1962509056,-1561724858,211729156,1480335404,618071415,-1341986033,-771510016,-79297824,-759038249,-79263512,-774337640,-1476448541,1451894824,113150,-352050200,-1983892558,1183445062,-297367050,1224492681,-336312695,-28931426,108342588,83644032,725389803,1317013109,-2014641668,125116476,50089600,1023376617,-2146994909,-377422770,1317076849,1793657084,-28407041,1965750656,56027151,393854987,1317066999,267060476,842066304,-163148819,-150992197,-1983839261,1055520326,-196687873,921239552,-28407041,1965750656,52619276,343523339,-335544392,820609039,1183575346,703476,-1056709641,-369867127,1183514381,1970027774,-61964282,1008921360,-2147060410,-350159794,1968061464,-45187066,1007610640,-2147060404,-351994546,-45187068,-19142392,1023297162,-385649308,1765540238,-2014772363,1970617345,25487619,58021948,1006732265,-385649288,1866203522,-1662450827,1952660481,1953709082,1953381415,1953512529,1950694496,1950825479,12314883,-402606615,-1098055036,118947471,28921770,32237824,184715240,-1944947201,1975520192,-1090052596,243993847,-756478723,1317754625,839377908,1974399680,727273217,-372275207,1508377021,-129594622]}]],[[{"sector":1,"length":512,"data":[-62458197,855864336,1055501248,-62458114,-402295504,971702828,-167628824,1964571974,-12138960,1095943,861013782,-1749119534,311038,-1191010328,-1098055664,861470354,310994,-972910616,989762438,-352319047,-12138984,1095943,-768407786,-23937395,-402651970,79233648,-1883337472,21490174,-2131867905,-1975452594,537722438,-2081387624,2130769022,-955812845,455750,1732053739,-955943680,128070,-24134003,-1149185,1465316470,-167217409,1946484038,269942538,138838797,-16192758,-2096298474,-2096625594,1190529732,242516220,16023171,-11073419,-2096296938,-24968508,-149981849,8453190,-11073419,-2096297962,118883012,759005222,-2142829195,-1191051954,-1336410113,1336865280,-2013713575,11528655,1090276992,184174278,1187395051,82511871,671041222,-2130950410,1187451252,-973077776,-1305415098,-11140527,-957131128,-351208890,-62458354,-2147191680,-972882610,-167183802,1947270214,16443397,-303558933,-62458368,-1727826880,-768408853,1090275062,-771027084,1317014397,-654900739,-150941053,-193035302,-955810560,128070,1719665899,-661915652,91609611,15746759,-344027904,1317668630,-1947389190,904459382,-45681151,-485592062,1031808518,1325823024,805684774,-167711935,1950415942,-45681103,-972327935,-953290170,127046,1190535403,192152060,737298118,32523975,-166728960,1946352710,-230242807,-263796960,1183514625,734079990,41807942,1460060211,-62458287]},{"sector":2,"length":512,"data":[-1962445556,-400510264,374341808,-226587385,-386904437,-162004858,1946745926,-62458355,-1962445564,-399461688,1599668368,1810386951,1190549504,125043964,548587659,-385844248,1988885513,1988734216,1988870920,-796152568,1988727469,1190576904,141828348,-1895830552,-1007121470,-1946166296,1975520248,-1010790909,-1732049122,73304919,2013417471,-12612854,856000519,113467328,1347637841,-2096820760,1499071684,-49913,-370415243,-141878301,1475890689,-1406730445,201312488,200794872,91512831,-506169,434357247,1475890689,-1031078093,201305320,200794872,91512831,-506169,1476248575,2146831251,1977289482,1976699654,-1843729662,-235417037,-1829636205,805622663,58079548,-1426110974,-347159925,-819242536,1606679623,1575324510,-1588002621,-1002763742,-1003813261,-503326473,-85213133,1458342741,-1107009909,1547241910,1259172614,17793099,1980259385,140282115,1575324510,-326412861,1317754710,-386301180,-1229254025,86566921,-1612181645,-402296315,91424030,-342245325,1566465792,-1957363517,384599020,1988843095,1367390212,1375732154,54824272,734147481,178626,-1036781357,1385808427,131655760,-1981135223,1586228310,-1948004090,-1962069825,309702,200931225,-2096663086,2114061950,1183532801,-1983446264,904461382,3979270,1380995737,1620048,-1185918311,-963968659,1174661623,-1715010808,-2096217083,1347551442,-1962441240,172395464,60414603,1389564865,125102160,1183565963,-1713730804]},{"sector":3,"length":512,"data":[-753680125,1676169298,-1949791481,-628421050,331416473,1476789203,1511396109,-364510963,-1913891311,1183404100,105286648,-163149496,-1995815285,1048834630,1946160476,-297366249,106883152,184730755,-2130086720,235989614,15490691,-1947580789,1600056406,-1017256565,1475119957,2123040542,-1178586364,-1359806465,1339684673,-49920374,944221938,855929861,-1962742848,-1956643641,12803557,-2081649835,1465262316,-1945733493,-1178562864,-1070399472,-203391347,-1073042261,-125102988,28362891,-771235456,-754732576,-532477713,1988880363,-14308348,-1961397248,-1329034248,132218881,61989074,1126363091,-1914276640,1583349572,-1017256565,567089588,-1019215692,-1964209323,-1270217642,-1272853234,1075957017,-1207679430,24510463,12803392,-2081649835,2122518252,141819910,-2147066229,276103231,-16222465,-1444412298,79987697,-1878898199,294531,79176821,300437505,46433261,200427145,-955550272,201976326,-373282048,1187447334,-352254968,2122551317,141755400,166332103,-437583838,-1996208501,1183445574,138806266,-62486200,-2147066229,1952186751,25133062,-2139917009,91511871,1966030720,-129579159,1586167808,-2012771834,-1073021370,1191136116,-228685050,-1997388033,-230257913,1945912889,-368654569,-2097143287,1962935422,-92864628,-2081649688,-2115304764,1560182400,2122319476,-1099616258,1204213899,1191140607,-125926408,-1917881084,1183448903,-228684814,-1990457402,1558836318,2139131905,578107905,1586169738]},{"sector":4,"length":512,"data":[621250802,1183383583,-230227978,-957194613,1200437767,-230258431,33965699,1187448299,-1962934026,1065354846,-2147126180,578105151,16154243,-1410853259,-1958738690,1191178846,-1962440462,1191178846,973588210,-351910145,1996460087,-92864760,-386500865,-997986172,1975520006,-11540221,-386238721,-997987198,64523010,1586100830,-8421134,-2147060644,1966079871,-229703933,-957194613,1183538183,-1992277766,-1192627130,1065390080,-2142538450,1965949311,41910341,-2146667428,1949237887,41910278,-13404928,1586229838,1547665650,1065355892,956658735,-344787874,1178190731,-385648908,1183055579,1586168326,4161542,1200451444,105285889,1065379819,-2143914706,1952186751,25133068,-2147060689,1962934655,105316132,1065407723,-2145225681,494141503,972179083,360119366,1191118730,-228684814,1191118728,106859270,1968979840,-230257703,2013021753,-25564925,-1947056385,130478686,106859356,1952202624,792690693,1191117685,106859270,1946173312,-12654333,-2131599733,1966800767,1544013318,-1947056385,130478686,-96040192,-1017256565,-1185872301,243729408,1347489028,1542112232,218367631,198872153,117667008,-1047805093,14917097,1458342741,108432215,-1475984246,-1469549438,-949717696,580,192151976,1467224232,-1996206965,217981964,-1997593598,-24443324,170192769,180668289,1552603955,1963501575,1963239500,17167902,-25083019,208931372,171245185,-25098636,611650116,167348214,-1189252032]},{"sector":5,"length":512,"data":[-1924071423,1398211710,-2081881624,28903108,-1203836160,1283522559,1558913030,2112378451,-161785085,1946682948,-1962112042,-903150508,-1961588414,-1991638443,551748180,1962889553,-941075708,113542120,75271001,-2012981621,1975597845,-1967115330,485164102,-2013872077,1948256761,178660,1397772369,-2096926232,-1070397244,-773076853,-1017291169,-18775999,2005662803,174033672,602668851,-1470381173,1396864257,-1962510453,-566556577,860567156,-1878201345,1006523533,65106899,-1390185744,-260832856,994639499,52655041,-1961659664,27831760,-1039933836,-1962933755,-29062665,-1064573717,105352027,-116897911,-1990518293,158662220,-1054082813,721783112,-1980169223,-963966849,-1007101300,1207326545,1668546818,-1962880280,-1476097026,721646593,1094797768,184842123,55342326,856257486,-1000768,1072378083,-1591343338,4001028,-1172933600,-801406976,-355400078,585889909,1913191043,-1948069603,-796178238,41140483,-755515341,-397229533,1935278126,-252017907,280495476,-102569216,-796189717,-1996204245,2139685959,175606536,1108642122,80212483,2005532670,-1017553142,1207357579,259261442,74943306,1926642510,-27838203,1396848243,-1898017711,-754667066,-1207732760,1207308288,175375362,512476675,-1020589584,-661929074,567102132,275929945,1207353995,74712066,-27817654,-117314568,2005620675,175586056,2005599093,-29512442,-1962380033,66987262,1341320176,1610058575,1048772803,1962938046,452615]},{"sector":6,"length":512,"data":[247334655,1448579267,1343048888,-2081867800,-259325244,58062347,-2147449879,2121531452,1342178232,1580662614,36628493,-1207516029,1385762320,63341392,38201430,1375913091,19458128,-1995614045,722295318,64982015,4161758,126490996,-1952921461,1736963800,91554827,1965947264,-8173818,-1948353533,-2132933665,309592127,1342178232,1614217043,30861325,-351878013,512462856,130420064,1612614400,20938765,-1556037605,1599999324,-1957326653,82609132,1988843095,142377732,-385647357,2088960173,58591496,-2097109783,2114127996,142377737,-385647351,2089484417,1825014026,-1023442681,-2095612409,1963133052,140282641,-2020875311,117771570,-1878201600,1552650384,-1948004088,-1995623289,-940049338,57999363,-1946401025,-276624772,-1178105018,-369688211,1166919819,-1713796351,-1037319629,-754974023,734147576,63112130,67501126,506112,737802137,-621282218,50887811,1413157493,1963490318,75268890,-1206617086,300613633,1144636043,1978956814,75268870,736918529,-1956684096,-1866244635,-1947432107,1317733958,-1949824246,158664782,-150714741,146955745,-503885056,1183570059,174520068,1183569923,65140484,-1034069037,-1957363704,1988843244,33601540,-425793456,-2116121767,-2130041621,185255107,-2146732864,-955775412,33555015,1283460331,1204225030,-1929379582,76087623,-956021623,580,12803422,-2081649835,1586169068,-149013756,-1207602679,720046336,542455,-2092403584,1946159742]},{"sector":7,"length":512,"data":[-1949748454,1107409105,1265770957,34227959,51279104,1444087366,-1205307128,-335997440,-27883210,-1946401143,1107474641,1174610381,139858694,1317735801,-61436930,-851312456,-1948718303,1317733974,172395016,567100084,-1484782222,-369292807,-1957302051,508975084,75401991,-1962510709,139365343,179047651,-1442614080,-1070401310,-1014256909,-443850914,32097117,-1957363712,-1957275668,-1070398346,-1394920551,-76275652,-143390404,1949121616,1965767684,960277505,808198007,-472835214,-880028975,-472778101,-472788271,-654060847,-670836973,-352267645,758929628,-150506093,13796312,1600051959,50013,0,879,0,0,0,0,0,1377850189,1412263541,543518057,1919052108,544830049,1866670125,1769109872,544499815,539583272,809056561,1766662188,1936683619,544499311,1886547779,1867317272,544433526,1701603686,1851859059,1701978212,1701667182,1768300659,544433516,543452769,1701996900,1919906915,779314537,1867776000,1987013920,1852776549,1919885413,1919905056,1768300645,980641132,1448037632,794501189,545005657,1566125359,1919179552,979727977,1634753373,1717397620,1852140649,828730721,774777947,1679842606,1769239397,1769234798,28271,1914728276,1835101797,543236197,1701996900,1919906915,1291860601,541414991,542715739,758063228,1528847705,1986622052,1532836453,1752457584,1919509597,1701667182,1768169521,1835101810,12901]},{"sector":8,"length":512,"data":[1683693600,1702259058,1885035834,1567126625,1701603686,1701667182,1884495921,1718182757,544433513,543516788,1633906540,1852795252,1684955424,1835101728,1718558821,1701344288,1818846752,538968165,538976288,538976288,538976288,538976288,538976288,538976288,1713402479,1936026729,1970239776,1851881248,1869881460,1987013920,536882789,1936024608,1634625908,1852795252,538976288,538976288,538976288,1701860128,1768319331,1948283749,1847616872,1814067045,1952539503,544108393,1948280431,1713399144,778398825,1936016416,1634625908,1852795252,538976256,538976288,538976288,538976288,538976288,538976288,1663049760,1663069793,1769172591,1864397939,543236198,1986622052,1701584997,1919251572,1684955424,1819239200,539782767,1768169569,1952671090,7959151,538976288,538976288,538976288,538976288,538976288,538976288,1634607136,539780461,1629516399,1836016416,1634625890,1852795252,1716068398,1970239776,1701994784,1987013920,543649385,2037149295,1701736224,538976256,538976288,538976288,538976288,538976288,538976288,1713381408,744844393,1970239776,1851876128,1936482592,1852383343,1685417059,543236197,1701603686,1701667182,543582496,544567161,1953390967,538976256,538976288,538976288,538976288,538976288,538976288,1948262432,1701978223,1701667182,1701344288,1818846752,1752637541,2032168549,1830843759,543520367,3044457,1683693600,1702259058,1885035834,1567126625]},{"sector":9,"length":512,"data":[1852991844,828730721,1884495904,1718182757,544433513,543516788,1701996900,1919906915,1870209145,1635197045,1948284014,1701978223,1701667182,538968110,1852991844,845507937,538976288,538976288,538976288,538976288,1667592275,1701406313,1752440947,1701716069,1634607223,1864394093,1752440934,1768169573,1952671090,779711087,538968064,538990895,538976288,538976288,538976288,1886418259,1936942450,1881174885,1886220146,1735289204,544175136,1718513507,544043625,1634038371,1852795252,543584032,1768169569,1952671090,7959151,538976288,538976288,538976288,538976288,1919885344,1702260512,1769109362,1735289204,543584032,543516788,1953719652,1952542313,778989417,790634496,538990893,538976288,538976288,1126178848,1702065505,1919950963,1953525103,543649385,1663070068,1768320623,1663069554,1952540018,544108393,1629513327,1919509536,1869898597,1864399218,538968178,538976288,538976288,538976288,538976288,1919252079,1953067639,543649385,1948280431,1679844712,1769239397,1769234798,3042927,1701336064,1769435936,543712116,1830836527,1646295393,1919950949,1852142437,1852383348,1701344288,1347371808,1145914201,1986946336,1852797545,1953391981,1918989856,1818386793,1409298021,544434536,544825709,1864394082,1920099702,1701078121,1769414766,790653044,1864390957,1752440942,1868767333,1851878765,1768693860,3040622,684837,7405634,9240690,13107399,17760479]},{"sector":10,"length":512,"data":[22413584,30998923,41222696,50332353,59310918,64226186,72483849,75826308,1631782087,1953459822,1987013920,1931812965,622865696,2675,1852727619,1830843503,543520367,1953265005,1701605481,1818846752,1948283749,543236207,1735289203,1713399148,174419049,1868234752,679275,1920298835,1629513059,1679844462,1769239397,1769234798,1629515375,1948280178,1931502952,744844641,175318304,1699872768,1919513969,1881171045,1835102817,1919251557,1936289056,1735289203,1850277898,1768710518,2004033636,1751348329,622865696,2675,544173908,2037277037,1918988320,1952804193,544436837,1931812909,1632436234,1679844715,1667592809,2037542772,1931813408,1528839970,542994041,1984888832,1920430693,543519849,673215269,796091737,1093627726,1059679340,710672640,1543514670,620759552,6497635,771763758,3103744,1931804764,540949792,2126629,1567827291,1329790986,1296259408,5832772,1056987437,23552,1869771333,3154034,544165376,1751348595,1818846752,1919885413,1919509536,1869898597,31090,1090519040,1814062962,544502633,544173940,1735290732,1702380800,1868963939,1952542066,1920099616,1107325551,1713398881,543517801,1651340654,29285,1953451520,1869505824,543713141,1701998435,1919242240,1936943469,544108393,1768842596,25701,1766195200,1696621932,1953720696,1916993651,762540911,1769366884,1814062435,7040617,1635151433,543451500,1986622020]},{"sector":11,"length":512,"data":[101,1635151433,543451500,1969713761,1953391981,1867776000,1634541679,1864399214,544105840,1701603686,115,544165376,1667330163,1701584997,1864397926,1701060718,1701013878,0,1818838528,1835101797,1869881445,1869357167,1375758190,1819636581,1869881460,1634476143,6645618,1936019968,1668445551,1701060709,1869374561,1998613347,1684829551,1667460896,1426092661,1869507438,1696624247,1919906418,107216896,107808364,109577863,109708937,110954123,113182383,113313472,115541713,115672804,116524774,118621956,118753043,119932709,121308986,121440060,123078485,123209559,124454745,125634428,2426779,1650552405,1948280172,1701060719,1702126956,1936024608,1634625908,1852795252,-65536,774569983,1141506090,1920232549,1746953573,1713402721,1684960623,544104736,1869771365,1852383346,1970239776,1768169586,1952671090,544830063,1970435187,1920300131,1377840741,1394634357,1148084579,543912809,1914728308,1767993445,667250,774766638,3801088,3813212,6029312,771764060,3026432,12124,1869479936,1852121204,1751610735,1835363616,7959151,1650552405,1948280172,1886330991,1931505253,1668445551,1851064421,1701601889,544175136,1634038371,1679844724,1769239397,1769234798,1426091631,1818386798,1869881445,1769109280,1679844724,1769239397,1769234798,1426091631,1818386798,1869881445,1634038304,1869815908,1701016181,1634620672,543517794,1730178932]},{"sector":12,"length":512,"pattern":0,"data":[1931506789,1668445551,1869422693,1768319332,1769234787,1948282479,6647145,1650552405,1948280172,1702043759,1701060724,1852404851,1869182049,1869422702,1768319332,1769234787,1948282479,6647145,1650552405,1948280172,1701257327,1869815924,1701016181,1953784096,1969383794,7562612,1650552405,1948280172,1702043759,1701060724,1852404851,1869182049,1952522350,1651077748,1936028789,1224736768,808333656,49,0,474611712,372178944,0,5,0,0,0,0,1130299392,1279870559,1313431365,4017990,0,0,0,0,0,0,335544320,-2122219264,257,0,0,0,0,385875968,225034,0,0,315686911,3776,69312,0,16908288,0,33685504,0,58982400,0,67239936,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33554433]},{"sector":13,"length":512,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,536873660,538976288,538976288,673720360,538976296,538976288,538976288,538976288,1210064928,269488144,269488144,269488144,-2079322096,-2071690108,-2071690108,269488260,269488144,-2122219135,16875905,16843009,16843009,16843009,16843009,269484289,269488144,-2105376126,33718914,33686018,33686018,33686018,33686018,269484546,2101264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1697579007,771777912,7627106,1836016430,2768640,6041390,0,33691136,201919768,134679564,50271766,-16641523,0,393216,16778752,1048576,100664835,1157894146,84231493,889521413,5242928,536870912,1481650208,805308423,1347891248,536870919,32,1611137024,1616928864,1879048288,2021161072,134678648,458752,526344,134219776,671612928,1819047278,1577,0,613294080,613295246,613295246]},{"sector":14,"length":512,"pattern":0,"data":[9358,0,2031615,5898299,9896056,13893813,17891571,21889328,-65171,3801118,7798873,11796630,15859923,19857680,23855437,23124,5526352,5522512,28800,223346689,1968377172,1852788078,1466266964,1750361189,1769096821,7627091,1181638986,1632461413,1919959410,1249468749,1967812213,1735737708,1332766035,1867412579,1667581046,0,354877440,354882855,0,878,0,0,0,1010571252,1196641614,15934,808466002,755633456,1635021600,1864395619,1718773110,225931116,196618,808466002,755633459,1953392928,1919248229,1986618400,543515753,807434594,150997517,808866304,168638768,1869488173,1852121204,1751610735,1634759456,1713399139,1696625263,1919514222,1701670511,168653934,218168320,16711690,762213746,1701669236,1920099616,2126447,911343618,221392944,1713384714,1952542572,761753193,1852403568,1970479220,1919905904,1869488244,1869357172,1684366433,16779789,808866304,168636720,1970151469,1881173100,1953393007,1629516389,1734964083,1852140910,658804,16777215]},{"sector":15,"length":512,"pattern":0,"data":[24926797,14,4063264,30146559,128,25296912,30,1]}],[{"sector":1,"length":512,"data":[1179864142,4410965,1142969165,1444959055,1769173605,908095087,692267040,2037411651,1751607666,959520884,825045304,540293433,1919117645,1718580079,1866670196,1277194354,1852138345,543450483,1702125901,1818323314,1344285984,1701867378,544830578,1293969007,1869767529,1952870259,1819033888,1734963744,544437352,1702061426,1684371058,32,0,0,0,0,-134214912,1,536936464,11,268500992,186646784,129024,1048576,11870209,-1140785152,12910848,66049,13697234,0,-788475392,1060045056,0,0,0,0,0,-65536,65535,0,-65536,65535,0,-65536,-1,65535,-65536,65535,0,658688,0,1092878346,1397600512,1397703712,1919243808,1852795251,673199648,1866672451,1769109872,544499815,825768241,960049453,1766662196,1936683619,544499311,1886547779,1667845152,1702063717,1632444516,1769104756,757099617,1869762592,1953654128,1718558841,1667845408,1869836146,1092645990,1914727532,1952999273,1701978227,1987208563,18900069,11665526,45088783,0,1124073472,1414419791,1395546450,1266521,38797490,352092336,-13761164,1006633774,-821988616,508960262,47184,-1890002802,-1895703034,-972956666,16897030,30738118,-687421952,1364393985,1465275730,31171323,1970850046,-922870668,-922876044]},{"sector":2,"length":512,"data":[29168756,-1564112128,243270102,-402521644,963772531,1053049323,1760035292,1345221120,508711251,304592902,520564685,1482381658,1048581234,1946223067,30777349,-2132267029,30777347,-710793237,-687407615,30777345,30883456,-1609141247,1397752277,102650449,-854448200,1511982895,1918393177,1566466009,-2141496998,33676094,-1073084299,243991669,119472614,-367097393,-401176319,-435255039,-2134297855,16922686,1444813940,31209157,1393054861,1465255454,-854448456,123625263,526277407,378344427,508756472,-1202235898,801968678,520576607,-1962642853,-1576539176,117309909,225575383,-1962809183,-1107170794,31982147,861389568,-388877367,57868860,-2097060119,1015026374,-385649663,-1958346411,38570772,31463049,31592073,31721159,367525890,-1956613630,-1958328820,20987908,-2130582522,-66984898,690516480,1359078406,31592075,31463051,31725059,-1996435069,-1996365298,-402530282,712114656,-469317799,-1962934271,-1593710058,1144717800,990475522,494142548,309645835,1179005955,113683938,-385023531,-380043038,1418395871,-367621884,173312769,-401847157,-344850016,1178995851,-1974380969,-466484668,30672630,-2145094654,-16656834,1582892661,11004255,30803514,-1185318795,-2142175231,-33434586,30672630,-402295550,1651638448,-1962650485,860882508,508646381,-1202301178,801968680,520576862,1918393177,54770278,1342243001,102650195,699946583,1580190994,1495205727,1265784923]},{"sector":3,"length":512,"data":[30672630,-402295806,518717596,1006652648,638874881,-1558690421,-1960443037,1705187909,32153859,-402436189,1582891320,1177813855,-108836538,-385649664,116850518,1946288596,-737741305,192217345,-1576080392,1582891477,-972625057,16897286,1019437049,639005959,1946172803,1364219664,-2096264410,-1070464313,1482271475,-2091793569,-1960424761,642205453,326370616,20807718,-947714700,-2096895227,-337500217,1007545337,1191474433,637922296,-134119996,646628185,-58719781,-1608485884,-2010775082,-700547067,309592321,21350182,-1943665845,113705821,328166,-1958257685,-1107171826,1460011851,-599866288,1166747137,407144830,-2138731738,440699136,-1996363103,1599603780,-58699001,-2096597756,414779078,-1961170176,-433159396,243991297,-885325338,48956023,-1993946229,1179076365,243882822,109248998,-217906714,-315374684,102650195,683169367,1580190994,1495205727,-1172344229,-225770941,1392574649,102650449,699946583,1580190994,1511982943,41048921,-710802453,-1102003455,210436939,-108969663,1299579128,16300369,-2124831501,-1174341399,-225770685,16841089,-1185865098,1364394240,1460018770,304724054,1600008141,1499078407,-215977381,-377398876,-739573504,508711251,-1202301178,801968681,520576862,1918589274,1487205122,37994179,-1962467834,-1178586114,-372178432,1443343347,304920606,1579102157,-125058162,71694118,796164096,-947693738,571658,1006996006,-2012842976,-498710780,-2000669965]},{"sector":4,"length":512,"data":[-1184997628,-695533567,1460033054,-854448456,1577541423,-385649889,-661978998,1912650216,-128573923,-855570760,991261487,-1945012745,1002540248,1577678273,-720976353,1441480961,1398218590,1053034065,-1004142116,-1960418979,1128349967,8503107,8195721,201245059,638416073,92800906,-2092350649,-210435847,1599822087,-1560155487,378339455,1253638269,834816,1460033054,304855123,1599811533,1914658311,106307099,304592983,123678669,745676638,-12745946,-1004130956,-13571779,1946157373,106307296,767054679,1529859346,526255967,1946162749,-720976180,-974438143,30738118,-1009915071,1460032336,-854449992,859796015,495593179,-854452552,640905775,638010763,-1089905269,-947846589,1031995902,-2096597760,1962999421,957475586,956855581,58064453,-2096370695,-487914257,1166613897,123730174,-1195157413,-661782528,-402506845,443679272,-2096516678,-355397694,-355341615,-1031542063,-669611759,5695489,501744619,-737741309,292913153,30672630,-401968032,91357614,30674560,856051728,748758720,1958742784,-1195340281,567101696,116807687,1947206100,310037,567099060,16483147,833943157,30938763,-1258814485,31105100,503718349,119408158,869413663,8437449,1136594058,8502786,-1296063245,1136533248,1057392386,1090946818,1057392386,1060538626,868823810,960398290,1148518402,-2029351960,-2029895930,-2029895418,-1996341498,-2130559178,-838806466,-401050368,243269876,-2139094572]},{"sector":5,"length":512,"data":[-285092826,31065798,112640,-2138042901,83939902,113640821,-1560214984,-1242889671,30672630,-385649536,1048772801,2080375353,-130118342,-1588570623,103350849,915079743,-829750721,1094093656,-1918569726,1577187390,-1157627463,11665410,512623286,-1480719813,34269184,30674560,-2095977720,125108729,30674560,-2147095804,536990734,30672630,-160926456,67228678,1049452916,1048576504,2080375352,-1947389171,503371294,14163598,-2143360117,1946157182,1183464971,92808704,-286570683,871861023,313033,33035917,567103156,-2131228558,1073861646,62397931,112896,-1308622149,-1895844352,-1107150050,-1981284207,-637090303,536412673,-1205943545,29032748,47360,11730870,-1912602434,-402506978,775749992,1073968129,-1021315605,-1262472442,170904852,-1340049984,-852118481,109850145,-1993474043,503317278,129638158,-1271943168,522308901,-1205998600,28901378,178944,-4849486,37428878,-402613058,113639708,-112197158,1397801735,861341266,868323017,305051903,801964210,14943884,14827145,-1307431240,-1943024382,-1996428282,-1207899586,78778926,109850573,1049166076,783810810,-855199214,-536441809,-566327040,99215360,14419596,14302857,16254604,16137865,-1945709336,-1996427258,-1207898562,145887790,109850573,1049166084,113705218,168624405,22939334,436651812,-956301311,167844870,130869248,17186441,-402646552,1105723438,1357402368,1493725696,1532626783]},{"sector":6,"length":512,"data":[-2096829608,-1007088444,-1205971376,567108352,1914636062,238455048,268864513,-1017618943,-1153171272,-768409600,-427810355,30310401,-851181128,12108577,113476,567136819,-1207841152,567100417,-852446013,369507617,-336067723,146712,-4520589,-1157370881,28835842,47360,-4849486,1397801977,106386769,-1981183150,-2013195746,-402581706,-922025274,-318038924,652739957,-402396416,141689264,17164378,82534151,-116996989,1594295531,108198234,1482381661,-998046485,1355020552,512447059,-75300590,-402295297,65732652,1929410536,-1151749105,567083008,-997989326,283900166,1962933123,1958820619,11593735,-116996989,1532625778,102679384,33129247,45357941,-854226394,-1031135455,503362024,124985094,22383142,-336059955,184726543,638153929,567088522,-210417337,1472405496,-1957493168,-1962467590,-65359655,58044146,-1957963477,1476877259,-1070349473,1333053707,-1273035234,-2083026112,678756857,1344217549,-402290138,509083738,108207878,1111536888,647766477,1964653952,-339637502,-401682687,451674107,-1494724267,1508477951,41099725,-935654421,-398784652,-1962773000,-1021354559,-1157617736,28639236,-98109,-956952204,504132992,356420871,178433,-1006698264,1053054726,-16056050,-2094655628,1962410045,87696912,975570802,24576325,-347650055,-1022926871,18351759,-1835803853,18626295,473364371,167412481,-1031797386,-2147226825,1095905474,74825739,963959563]},{"sector":7,"length":512,"data":[1963194755,175931405,-16419540,1090594102,-108846357,-2146601721,1965820540,624361221,283853057,1963719043,175931403,-16419540,1090594102,-338545773,869413799,406257600,-768359679,561301771,11543988,1965373478,1698178570,973370369,638481860,1407714698,1191277567,1967735367,-897100061,863300875,440304461,729088001,67519626,1161438768,-352160511,1966095390,1959922436,-348912892,389972199,141950721,1229537858,65752911,1476394938,183040299,1935237118,-1872368893,-2134209711,1946158716,1959332621,1195985158,1577184071,-922021653,-346160267,-425207,-919403915,1014300427,1359370069,1048824115,1962934554,121959955,-1006078705,1525154428,-402593022,65732986,1912611048,1594317063,82533981,-116734845,18497155,1912960256,-13702909,18482887,868417536,18522578,18613959,-1343750134,-2021107458,-2092760802,58015995,-33425176,-1192331831,-2021062131,1128464670,-1023285016,-164408490,-25114317,-1962379777,-1962867012,-165286945,141820614,15383748,418104204,1912607549,2571533,-1128003465,-1014234890,-1128003861,-1014234918,1979710339,-98282,-336002187,18522892,-1107296328,-164429823,-2096305160,57934075,-2097130264,1928856774,1976109830,-1667241214,1963064960,1364546089,-1202694394,801965312,1968766780,-1193768183,801965314,1945698795,1493655301,-998045973,845830,32201309,-68677937,-1017226241,-4632489,-222285057,1238497198,-2084348072,494207483,16924291]},{"sector":8,"length":512,"data":[1024881919,192282623,18522448,16916223,-16454824,-352255458,-2134297830,108331006,55413286,942541291,772044085,-2096935542,1945699527,-921962451,-25159308,637891839,65733947,1963277102,1225386754,-947714700,-102503676,-25162638,41285887,52823822,108135037,-1977160398,113657613,-1023409900,2088819507,292880390,18778055,1128475936,18778054,-1494727904,-617390848,243847731,1149894932,1992374793,-1967052258,121960176,-1978370944,-2021127612,-2092760802,58015995,-33522456,-2131986994,1946159228,139212813,1277823091,-1965979128,-922023860,1156981876,208998151,268911862,-1977219468,32196357,512198744,-75283711,-402426560,-906100671,1157028981,410353671,343209482,-2012593014,1124146823,1967192963,2353155,-327823618,252134646,1156974709,41160711,-771093269,110037108,-889323240,48822389,1371755776,119428870,-617362549,18759309,1929082088,1493655301,-998046485,1573124358,805782774,-1977216395,-398372859,108264538,21334566,233568336,168135206,1191474368,737536833,29578745,-16706042,285213951,1702131781,1684366446,1920091424,622883439,-1928917455,-2096250562,46342337,17372678,33563648,50344960,67128064,100685312,117465600,134251264,167811840,-16731392,318816767,544173908,2037277037,1918988320,1952804193,443773541,1970365778,1684370025,1918988320,1952804193,1830842981,1769173865,1225680750,1818326638,1931502697,1668573559,1850281832]},{"sector":9,"length":512,"data":[1768710518,1701519460,1919907705,1632642148,1701667186,544367988,1970037110,1869488229,1852383348,1819042080,1684371311,1851879968,1343972711,1835102817,1919251557,1818326560,1847616885,1629516911,2003790956,1343972453,1835102817,1919251557,1818326560,1847616885,1629516911,2003790956,1225876581,1818326638,1881171049,1835102817,1919251557,1918980110,1159751027,1919906418,238101792,-448885497,-87981811,117424896,67094,131096,196652,19660863,19726412,19791984,1226244241,1919902574,1952671090,1397703712,1919252000,1852795251,622201357,1818304561,1684104562,1852383353,1818326131,224683372,1766199306,1847616876,1713402991,1684960623,1277626893,1935958383,1970234144,2037544046,1701868333,1768319331,1852383331,1836216166,1869182049,168636014,1310984717,1430672204,1528841038,1769104475,1564108150,1952542811,1768316264,1634624876,224224621,1946815754,1683693600,1702259058,1885035834,1567126625,1701603686,1701667182,1394614304,1768121712,1936025958,1701344288,1818846752,1868767333,1767994478,1735289198,1970234144,2037544046,1701868333,1768319331,-771093149,455127567,1852420096,1836216166,1869182049,168636014,1049429774,-1048506652,432210212,-1761562112,16756736,-16777216,0,1014783323,993864510,-953286622,1055238,-1993409536,772803854,269420231,-953286656,1057286,113716736,4115,-1375287506,777870096,279971527,-953271172,1041281542,113716779]},{"sector":10,"length":512,"data":[993857716,1929699816,-18413,495658579,1930377766,178179,19130715,473336110,1431786256,270802573,453441070,1131749392,91351212,-706200462,-399019004,410322182,453441070,91562000,-352018968,116796966,1950421019,468405790,1007126574,772175165,270208640,1525170945,-1396346107,1124567086,776912619,269563529,509486,538872110,495658512,270808717,792494126,-2144455052,141828668,453441070,1416954128,21465638,959374386,1930431750,228666898,1138807056,651690819,-1998053493,778693376,269420231,1626013697,21465638,-784276430,651690976,-315486326,259311883,-1960422589,13035551,1128362843,787669571,269420231,887816195,21465638,-784276430,651690976,-466483318,54583505,260712152,-921965262,1396903796,-400585946,1935343709,-498908405,113716978,266255,777740125,269291147,269459758,288787246,378220048,-1976692717,-133163746,-1960423229,174343,-13761163,772803846,1962949760,108825,-953284235,34606854,1343154944,-4979792,1476435688,501744619,-104638463,642864579,839405450,1959332845,158305549,1929525480,976904,-335939870,780742150,1509429282,-2144943267,1946157182,-152353533,-2144419003,269490958,1929365224,645934666,1357844507,270442798,19842603,1477450758,506891054,1015033360,774272256,989822080,-953284235,152047366,639625984,1946173315,133637657,309657601,252102446,-352321008,9889801,-116528136,-1336931605]},{"sector":11,"length":512,"data":[-385895421,-128450557,-1960421437,-1993472897,638587710,-2010774136,776995173,638591649,1476543881,175440188,72714534,105744678,37509867,-1993996683,1357579349,-395049156,-462157764,108332604,72714278,71057131,-1590816907,641732636,637814153,-351904372,1971922475,1301030404,-165261306,1946223175,-352014332,1207313929,91488770,-1645739344,-165259264,1947206215,7137283,-970013857,1095430,126559824,410370059,1465013072,252102446,-1275066096,-402411265,1516240731,48978011,669713387,33597840,-953281932,1052422,26929152,255755054,259328272,1948254377,113716746,4111,771799784,280444544,772764929,269434499,772240640,269420231,-1017642999,-1976674736,1958742532,1966750746,2088775181,108331009,312878,-1360524821,1174500098,1591733062,1381417816,-1976643446,43771908,-1073083278,216534132,76033536,1178993131,1583016171,1937784003,1918974988,2004499525,-337697727,1460032317,279527053,1946483328,-1539404540,356003344,1364203380,-1274605998,-1144878491,96075775,-17920,1499079117,1569402456,1166945793,742605571,1607935616,1019435783,1007186480,738490169,-104597456,1381191875,2139825751,92939782,74825738,166461364,252102446,-1275066096,-402411265,1516240463,1354979419,-1302965675,76164610,1912731880,-9574340,453441070,225708048,527777084,25067558,-344886016,116796947,1947209755,1966750734,2122327562,1551171584,643623750,1962952250]},{"sector":12,"length":512,"data":[1958742557,-347781550,1178215955,1178957056,1157925422,4602406,1162230389,-164714517,1074797318,-148500620,2097735,-2144991372,1946157182,133637666,410255376,158677564,8290342,-351439616,1962949646,2122327559,57948672,772205561,270415497,1566203640,1464910680,1049308758,-1976692708,1958742532,6285331,-970054539,17872646,80096862,1072389888,80096862,-148480256,1962934535,113716786,135183,1448618475,168069678,-400657216,192151597,1929451752,1195788034,787082054,772806050,1191183558,289311022,1482645008,1946288297,-4960247,954729904,1405311229,-1373729455,637200,1946630702,-119389436,-1017423551,2287788,1407719540,773223680,270206710,787313696,270206710,1309242433,-336001301,-1018234879,1364444152,762580284,695468092,628361788,41779238,857633282,1569335003,79921923,3768358,-919401100,1124698662,1946237478,1022943748,-1017423603,-970043053,537924870,455508014,540860176,154941044,742142580,540815732,1015024757,-1341688544,-1069922784,-2144985365,1912668797,650720023,184765834,-1156877111,641925123,125043002,540866786,784554841,772806050,270206710,772175105,270208640,-339723744,607030759,1960655632,1966029834,250345731,1007414264,772175151,270208640,516159552,-2094116010,1054782,508569461,1431786065,-1896467706,1660991710,-611573299,1560795915,525949535,774468696,269891209,404654382,915090960,-1909583850,-2096097250]},{"sector":13,"length":512,"pattern":0,"data":[276037692,141689914,1996571706,99350787,-336902586,526277624,-1308203069,-1342175805,4457845,22806528,28639744,1112670645,-1064507253,234885125,303903,787971,244039822,-108331002,-34108593,-1202674445,-883949516,-661863540,-1898410424,1032128,-1342172999,1202648063,-1014237301,-1077899704,78708751,-789068149,-628299565,74698795,-768878452,-268181293,-947135858,-388771593,-802438516,-1064565645,-522989013,-1030817789,1322289836,1187548077,-31145334,91598908,-341118036,1974615046,-1968901267,1946265794,20102833,512433934,872153092,-930370094,-1031072797,-1064385789,-2080863315,292880383,-501415642,16417267,-2129234704,-351272766,1086360796,-276578162,486614544,-339702200,-1950118942,-1962932162,50334262,33948144,1060096,-1064380274,-100663109,-410265970,784698363,1085550591,-1191181637,-896794602,482007694,-1205744383,567102719,1801675088,1713398885,543517801,1663071081,1970434671,357488,10485909,73138347,2486]},{"sector":14,"length":512,"pattern":0,"data":[19421773,1507359,32,61276159,1693647048,20381696,30,78315521,279445504,283049984,303431680,320929792,321519616,321978368,323026944,324337664,64290816,18154344,27722039,32833847,34930999,37028151,39256375,41287991,71565623,99221815,108658999,142410039,151454007,154599735,311]},{"sector":15,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[1344285984,1414416722,1769239840,2037672300,1293954336,1329864787,1700143187,1869181810,540418158,1126777640,1920561263,1952999273,943272224,959524145,1293956153,1869767529,1952870259,1919894304,1766596720,1936614755,1293968485,1919251553,543973737,1917853741,1919250543,1864399220,1766662246,1936683619,544499311,543976513,1751607666,1914729332,1919251301,543450486,26]},{"sector":2,"length":512,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309760,0,0,0,34212352,2561,4359,0,0,0,0,0,0,16776960,-256,255,0,0,0,0,0,33554432,161546240,177081451,167643720,169216577,168624128,707398157,707406378,707406378,220465677,220464908,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1358430208,-846790472,1354979370,-846790216,784554026,78972614,772205567,78972614,-2168832,-30509710,772060934,79169278,-1187086290,125042692,-1190199762,777644804,78134912,1347515648,551947184,-460324373,1493050400,1444823669,-1456028370,-8617212,1964989952,117321267,-970062680,308998,-1207515602,788201476,78972662,1342600703,551952560,12183640,-1607577350,-1574042438,777520313,78122750]},{"sector":3,"length":512,"data":[788492520,78972662,772109823,78458623,-11081521,-2144456846,305214,-30530443,772057094,79038206,8251643,113651450,1342178486,79339566,79274542,251539032,786957480,788475647,1223,0,0,0,0,0,-1241057746,745930500,-504866380,1252208134,512306694,-1993472436,772165134,105911945,1379305774,1049177606,-1943140780,772167198,106432140,116797123,1979647158,1560983563,1253711630,111601670,1048587971,1962935516,-2144419071,17098046,777058164,80680588,-786003666,-87520252,-1464020850,503773956,1381061461,521033558,-1946188312,990175006,1912930334,16509194,9955741,-1962851863,990175006,1929707550,-1237417744,192217092,79405136,79103544,-388074664,-2137258063,318526,1956500084,-1237417964,1668612100,79470672,79169080,-346524840,1007127234,1018786842,-972720883,318214,494209340,81464970,-151467648,-470994215,-31412189,1359272710,1493669352,-350915511,1963474066,-619774460,1914715140,-620298748,125626372,81725183,79169222,-1237417984,57999364,-385913623,216530969,1516134399,526211929,-1909523961,772067094,80815755,784554235,83508864,1343517696,512437843,1353975035,1527094248,113651288,-1023408902,-96567250,510984196,1370771539,772113384,83566217,-343684212,-397364208,1532495220,-100219346,-389873404,113639667,-1962932995,-1962614498,-1962607090,-1274756586,88860735,16509084]},{"sector":4,"length":512,"data":[83705472,1476621312,1922903019,15651,512433780,-74775358,512358403,243991775,-936704770,118360035,-201581904,-11277910,-1209529168,10610694,83691206,-518091777,144631812,-973032216,318470,81856199,10616831,81765125,-402244120,129892443,3964945,1894264436,-49887744,-695533564,-1677193240,-2147449624,326974,-342031500,91463130,-352317208,81896402,81528518,96659457,-385946391,118359484,-402320706,915080457,48760134,285720069,-1106971928,-152566493,98625540,-1090056509,1203638535,-1106343151,-53597436,-1063148301,4205828,-1962622813,313072,1381172931,900998320,772041704,81069708,-752973522,151960068,632562864,1510234088,516097883,-986820016,-1341861098,-400182236,1482294340,-2144419041,326974,1408984949,1448563281,236848725,-1962471905,348214,85114372,-167478040,813007044,16770945,1980563331,835331,79969929,-1114904623,-141884118,-1962648344,-402308042,129893461,71690257,-402316354,233505865,79955655,915079423,988284238,-49873404,1560747780,1499094878,-809487781,1979841664,788475397,-130284341,-2143482253,-385649408,-469042203,28312437,1975519951,-805326845,-1472298962,208928772,1426065848,1317268619,-815988474,104719410,-1207601664,-336920575,-1475936722,106429188,-971043298,320774,-125050671,84055551,236849010,81520671,-1226269665,788176381,78122750,1918830367,-326412870,-33134973,113692509]},{"sector":5,"length":512,"data":[-402586395,-1957362503,72256748,285720157,269948555,-1070349320,82118342,77588481,285687424,326432768,-1962932040,1426381110,1988750475,915102980,-956758825,320774,-452540733,-1007157244,81542784,-1958841344,-402333410,113704579,-402586371,-1696070012,-603535618,113704964,-64287,-1559953247,129893599,-1070167791,312836,88880779,-1107089176,585631011,67954691,1048626168,1962935516,-1957313791,73305836,637996637,82314950,113649152,-1157626647,1005064455,-1946449151,975613170,-352160763,1031808521,1196454912,-2144931861,17098558,1060907637,-2144983435,359935549,4030502,1017962357,1023112255,183989294,-351439424,-1073042394,775685748,-974391435,641778563,1962950528,1048585904,1963001065,-383840763,45613209,247724288,-385432033,-75431676,1333072135,82329216,-968329984,17098758,-518091949,-39458812,83691206,94824449,-956449560,318470,81856199,10616831,81765125,915100507,1390937416,-386692350,915079747,1189610826,86228482,1526874344,-1962726936,-2081190917,909852870,91555008,-352320058,-1106343159,-53597436,-1063148301,4205828,-1962622813,313072,1946173312,-326413046,1560567438,-2080437527,-16457410,129907829,3964945,552088692,-49887491,-695533564,-1677410328,-2130889496,326974,-392362380,-622068505,-402099299,-588710723,-1546654724,113640673,-402586404,-1007156628,-418986458,-225771516,-1073042180,-45155467,1965702316]},{"sector":6,"length":512,"data":[113649158,1006699751,637957439,82249414,104474113,-462093082,1048585980,1963001063,-1085913527,-1185479446,548405260,1605039100,687913046,1577128168,521013022,-1090614522,146343147,540847104,-492174476,83083000,1948269696,-1439780850,-1409285191,57942076,653845162,520095174,-1950152946,990167102,1912913470,571397,-1957313543,73305836,-1962471843,3965170,1959073141,4241665,-1073042772,-119402892,213393166,-1195116288,-1007091711,915087118,-2091514688,914964678,80086208,-64886784,83691206,-1041737216,-397239293,-1654981579,-1957670541,2088775410,57948673,-1271600296,7071769,344600144,-2145334656,246702570,-1275044632,5761049,192266810,-401689510,-1957167027,1510796246,1122504372,263739392,-1948873984,-2096840650,914964718,80086208,-2134640384,318526,-661974412,-956583192,17104134,-402410520,300678089,-1593515613,-542964480,-603535868,300417284,-389810175,32045682,-2144419072,1007934,1394483828,1646183726,1527250447,1959967,703078861,-1672274432,1646183726,-1659896305,149626715,-855636248,1239073,-1202564925,-768462078,-2010242611,1510262294,1381024600,775094968,80090762,1482301901,3976387,233312116,-1393104128,91497532,-352320536,-397163530,175374597,269958785,91704864,602468843,784554753,90185356,-1993466098,-1979361762,1089175768,-1557217230,-1993472684,772102158,89790089,1547077934,1049177605,-1943141026,855990790,1688415936]},{"sector":7,"length":512,"data":[1721970181,768117765,-1557266416,163054952,773967172,89529995,-1023996302,141890048,-1207610182,267083008,1511426862,1419849221,922693125,-400620192,13369101,0,22,0,0,238747648,65536,-1672282112,-1959898544,-2096831722,175439866,-855505992,33667119,28848077,1512164708,-401755304,1537015811,777395907,81213125,279799,235566088,1074185759,1659374862,-1021354496,246651987,1358946024,378220114,-92076829,-1207274241,801964546,-855505736,1677768751,1482301901,1405311901,269944575,113642163,-401797568,116850729,-2147479997,243336820,33558083,239273719,108331520,269944519,-1017446400,-1156695134,113639432,102108736,239214216,-1014051956,239273671,113704960,69202,-397388258,1086060714,-684276466,105155332,238854958,1008664366,138709774,238854958,1008664366,526276622,49927,257097728,117321372,772670632,255473407,943128366,922693135,-1664413898,-1475412434,46832900,0,0,-58720256,1008563488,1947825921,117321232,-1993470111,772760094,258213516,113651407,-822079647,1563361070,15,0,0,-1925283794,460652815,-599883730,326369284,-1776927954,772568335,78134912,-83593984,785359284,261238527,0,-2144468992,34573630,-2144459147,318526,992878196,1963967510,1048587799,1962935464,-469042417,-58718860,-1342015998,-813648896,-1070661842,1048587791,1963003789]},{"sector":8,"length":512,"data":[1048587793,1946158300,1048784393,1962938262,-13709567,1019438,521075200,41103309,-30475541,772057094,79038206,788142568,80418501,-853200968,382021153,481821869,-1205744347,-986831595,-854631146,622311457,-1844001490,-1205744369,-986831611,-854618602,622114849,-1072249554,-1205744369,-986831580,-855321834,622442529,-1323907794,-81670908,-1869604403,62446219,-54794189,-75443321,-1203735295,-919376896,-1960836933,16890610,-1974470261,231447044,628228096,270437166,16483077,-2094130306,-16456898,-930409612,-585201362,378220036,1085801699,-1959801427,-1961956415,-1274770702,1489213,904090,-2094087424,318782,861083262,-1959900197,-1207639274,802008384,-586758354,1526726660,-398589768,12844097,1314017288,538976288,1275592736,540103760,2105376,1414548488,538976306,1275592992,540234832,35659808,1430325248,538976344,134225952,827150147,538976288,1329793024,538980941,73760,542003792,538976288,-353873228,-1927346437,118366839,-149860161,-2147482556,1465258356,-1190476157,-1494024184,58023519,-134091783,-1943656845,638467614,81337996,-684291802,-954266108,-16456954,-1123610881,-175435440,-401536833,183173133,-24955707,246969855,-1950090977,1192069877,-336067613,141818113,-401526337,468385822,60794611,1193118457,853570974,-1776383489,-484538097,-1928935932,-1007156977,227210635,-133962937,1945698795,-1928935929,384499727,60794611,1193118457]},{"sector":9,"length":512,"data":[853636510,-1004631553,-1928935921,-1007156721,-1710551624,20384050,-849084232,1291827233,8653,-50724864,240127628,1929325032,101825247,900999344,109846989,512296137,682624199,567092660,-1341554502,-852118481,-855208927,-887191292,-1271943164,-1339962075,-852118509,939953185,907970831,255638031,632558512,363864525,567096756,257885836,257760905,-1341167942,-853167083,-1273515999,-1943941835,-1995467770,-1173384674,397414296,567092660,900994224,109846989,512298946,-960884800,-1273712625,-1339962075,-852118523,-1878619103,-1910601457,268024335,632554928,884220365,109846989,512296107,481297577,567096756,78579340,78454409,900995504,109846989,512296115,12059825,1009765816,-150572032,1962984643,92518930,632560816,431628749,-1273384944,-1205744347,848956174,-1207879927,581109372,20429074,304352905,50331832,990204422,-1558022463,-1064431068,-1912522824,666417624,-108269173,-56298499,-661733236,-1946077395,-1898970158,788475602,4642,0,0,0,2925052,141869067,-1262449146,119655753,1930068968,-337212924,-1906831811,-1195340072,801964288,175489034,1913195496,116385795,20718827,263718517,451672331,618268358,-1574916094,1050814002,642425382,-1574545758,1856120418,426965030,-402182424,12060475,-2011050697,-2145182954,91565562,589039302,-398167505,243861490,914957820,-12835330,3945844,45351796,-2144570631,86432062]},{"sector":10,"length":512,"data":[1072170357,236776194,651927839,-1306119635,-2131560948,-125107972,1963657656,9496581,1928921579,1941629698,-2139559166,2415166,518521717,17086469,-2130318104,1912986874,185972742,-402139672,-1591343670,-953801337,388335366,3964940,-400681356,-2095118402,-1343733562,-2019482107,3964965,116124789,-401927496,95946662,95152129,-633438170,443875620,-1912602440,-1176816680,1051983877,-498916915,1377209337,822130693,12059627,-402199732,12060534,102878540,-883900365,-13703215,2080458661,151120129,1258432770,-1996330494,-1308451326,-1207870718,29032748,47360,11730870,-402652994,943524793,1073968129,1286927851,567132210,618282624,-1957268224,-1960387282,652190205,-1070415730,-234878535,-947171410,-930364117,963954955,-1064503413,12114062,650153472,290457287,-970579936,538006022,1309757631,1966750848,-108836607,-1190955512,-175439864,-175397645,-586758610,-336068316,1494153473,-1047602802,-1574035280,-605477326,-633438208,276103204,505863585,-1912602438,83796954,32241695,-1574915847,-1142348226,-633438208,276103204,505863585,-1912602438,79536858,32241695,-1574915847,-1679219126,-633438208,326434852,505863585,-1912602438,79340250,520403362,-117314568,1453465776,-2139493594,2415166,-576647051,12197414,-1562735104,-132184900,-1325858325,643998240,1048599275,1962943706,652058896,47646,-1146955122,-336060668,548468993,-349802846,1048598075,1962943706]},{"sector":11,"length":512,"data":[55568387,-402586696,-128056291,1048585963,1946166490,-620313081,65732900,-134007576,1048580843,1946166490,-620313081,65732644,-134012696,163057011,-633438206,57933860,-1023026712,1048613008,1962943706,50587651,-603535620,915079204,-543086883,-1076326874,2088772919,292829697,567089588,-1023487862,-1331019516,-336025030,738494993,-1979222464,-123427632,347604203,1014167819,589078566,661914680,-141863254,567101364,-1201797517,367725332,1975519916,-947171589,996081291,637891783,-1440539488,1443752952,1203042187,1935548877,185907203,1085878898,768051968,-936696521,28902259,1017818112,1006924842,637957439,618399430,-121632255,216728181,642770914,624115337,-116647496,57876238,1325544681,624115337,1023725032,645201920,651902593,125118086,618333894,-2129794303,-1842947266,-972720858,2415366,243861621,914957820,1048585726,1963009243,624409111,-402586952,158532321,1946157629,203077632,31713785,618413696,-402426623,915210978,478815543,-1203704960,567100425,-1023988622,645206528,618872461,-849346376,-2028244447,2669054,-1968835588,1327701006,-76214984,893290823,-100219355,-919404507,-1169163893,109838593,918890222,12265196,-1972587488,231447044,57802752,-2147419415,19266110,-571931787,-66707968,618413696,-1274579967,629783066,12067277,170905015,-385649216,431227062,1090789837,-1205470302,802010884,636763785,-157040500,-197752027,-157213147]},{"sector":12,"length":512,"data":[-1327985115,20310075,225822987,753402032,1976109825,-335995132,63015807,-2131194938,24379453,-1557788864,-1262541324,24936485,638088250,-1440351328,-206947664,2105550500,91512063,1543882278,-1899983801,892767192,-402608091,-1527578393,-919384396,-853166918,-1104645599,935273908,13756453,-1983994637,516326181,1547534374,-347143308,-1993979913,-400214722,-213843785,-1089606748,-1070455372,-218087239,-10360406,113647367,-385800710,1465319160,-1273100715,-1272853159,1560747777,-335978913,1431787104,1397759494,-1193768110,567100416,8446593,-851528548,1532665121,1560747864,108289631,-116714568,-1158137877,378086711,512500510,498737952,16889891,1912681704,539917,113641588,-134208290,1048581099,1946232030,-569981429,297271588,32241931,-402426888,359793410,618413696,-402295551,82510149,-117440328,770245490,15870,1945633141,48293891,509019843,-1174500601,-1359871936,-377289099,1239021376,247662431,471239199,47139,-2010726258,-2147162602,19193150,1049448308,113648867,-972479261,2417670,-1898411002,219920576,-1207789080,-1813509374,243926786,-922082076,-315480204,-1088100930,-1957293744,-957283370,582483972,1310838117,1966750848,-108836607,-1190955512,-211943416,-1205926236,653656128,117769405,79602449,79864640,83756547,-1559953245,328927,1049857,-388896559,-388896559,-368749917,4646,-1906831621,784371416,774301091,-400105565,599262216]},{"sector":13,"length":512,"data":[132168229,616047053,128825893,113648077,-1023335206,-1085254057,179053879,-1442614080,1487599851,-339517602,-850372607,-2096795089,199951044,1962936637,-2081494270,-1007091004,-1984292172,-1172189915,12133687,-850480128,-1961397727,-47893706,470170284,-50760413,914966086,401089845,-1262225408,629783066,1337205197,74588621,-134216216,-1023409992,624246411,-64641090,-1073042772,-1195115915,567096616,589563532,589438601,-852152392,671517729,639535395,890484771,109846989,512303920,364389166,-1943941835,-1994180602,-1205651938,567096599,591136396,591011465,-852159304,872844321,840861987,889567267,109846989,512303916,481829674,-1943941835,-1994178554,237190686,616039943,-1994273483,-1943740642,119857414,623098051,-855121734,623163425,-855134790,130007841,772709376,128595711,-516489426,922693156,1019946207,773616898,128714494,386801422,-2145068868,35969598,887620468,-1337150464,-819868161,-1405190098,611647495,-1408827858,236916231,618183703,618282624,-402295806,116064271,-402586184,1286930097,567148464,683211471,382017061,567092002,623884319,639026462,522308899,505746360,590223045,-1205919283,-987880171,-853330410,397942561,382017061,567092026,622114847,840353054,522308899,505742776,589960901,-1205919283,-987880164,-853328362,-1006952671,637275787,637417099,637548169,637681293,503316666,754974904,-661782512,521309672,1962934333,300677123]},{"sector":14,"length":512,"data":[208994108,41290044,512559536,-684848990,151045113,151585545,151587078,521033246,652293773,-822160845,29083955,217874432,-58718860,-1188793087,243868983,-1894897949,-2144934650,192220412,124983356,652674758,-972690687,2549510,-2147483207,41225724,-58717518,-1979353342,179188,244000629,243869184,12134115,283738880,652545673,915086934,-644995586,520094918,-418986402,28901414,-387698176,57869309,1593377204,2011743007,12110847,-1916760576,-1157627842,330827050,16824832,1912612328,96871947,-1057077468,-260694212,112726386,-16729600,1912606184,1019280902,250967564,-1021374969,-398489306,91357795,1134883836,1396491075,1295793745,15944,0,0,0,0,0,-1,0,0,-1,0,0,-1,-1,0,0,0,0,-1,0,218103808,10,655360,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,542330148,542330692,1936876886,544108393,1126703158,1886339881,1734963833,824210536,758200377,876165425,1667845408,1869836146,1126200422,544240239,1701013836,1684370286,1952533792,1634300517,539828332,1886351952,2037674597,543584032,1919117645,1718580079,1816207476,1769087084,1937008743,1936028192]},{"sector":15,"length":512,"data":[1702261349,1397760100,861341266,868323017,305051903,801964210,-1710846930,1049177609,783813016,-855461358,109850159,-1993471582,-1207328706,78778926,-1943130163,772387334,162545289,-1307431240,774884614,160827020,-1807840978,129427465,-1845064658,1049177609,-1943139952,772386310,162283145,772284136,161875596,-1539405522,305051657,801966258,-1173976018,1049177609,-953284168,218748678,113651210,774113824,165414599,-953286656,168418822,223012864,-1136752338,240576521,-1069643474,250144777,-1002534610,252700681,-935425746,1697801,-402640664,-397344701,141688914,1510432601,82532443,-116603773,508973251,-849149768,520560161,-1993471374,772395062,164759180,-1195157410,12272640,-841862400,31883297,-1207841152,567100417,1140897987,855638459,-2145268270,28836302,-1021194940,567095476,1964377661,418117635,1929380413,-17659,45810667,112640,-1308622663,-100682240,1460031683,1435733,-25162126,74774783,48963334,-141877490,1476878173,861099715,-2134297610,158728190,-1128494290,-337671415,46593576,-1003615884,-1945526084,1025174467,242352147,1996498749,-1127993847,-1014232660,-1003616277,-1945530180,-293949,-25159819,-117213697,-1557262869,-4716068,114175,-336005581,16483084,1424491380,80118528,184972024,-352160311,-25125734,1378448641,1460031829,83933264,-12832819,-1962314408,84064472,32190413,1594192889,116087047,-402209661,1516044300]}],[{"sector":1,"length":512,"data":[248447467,1543502824,1347928926,855637945,-139529536,1599621585,33260483,-2094128779,-16140226,-12773004,1343059455,165454126,-1205928146,99309577,-1205928146,857402121,-98103,-1977219468,166396749,1966422062,1300901380,80184067,-131238919,427084043,1962933888,87762437,992871403,-352160507,91506953,-352008317,208861667,-117440896,118358645,41747238,-315488654,1192069670,-704199122,1354956809,1465209171,-376745466,-736196306,914894345,-1192752679,1959332862,1978469155,3139589,-1024982037,1510961665,117510120,1959922271,63760387,-998046485,82573574,-111517945,1499269234,46433115,-998046485,1355020552,-1959898541,-2096507874,91619323,-352310040,7858179,1504972659,-855637829,-2082196959,-336001340,-294128,-1053095052,-1326971020,113541888,1510175481,516118619,-108847354,-1273268991,361375234,-1977671219,11659458,1931413022,1435117063,-132002559,45354987,158648587,-854226394,1967736609,-1021314829,1392922711,119470731,447797643,1974399740,1272523523,123456395,868441944,1959332800,520494671,-678739788,1963063683,522308904,92939856,1476418280,1931413022,1085601798,-1675506366,440238118,-1047854475,248447467,-335545368,-397322982,-376701018,1931595097,990636802,990344392,41285864,526238091,2603203,-1258289989,-25115903,-166628097,209027270,1049429790,45681111,-16783360,777455299,164642500,393543435,4031270,638612728,124912954]},{"sector":2,"length":512,"data":[21314086,1207501175,1609165639,-1892760825,856283654,781358043,165558007,922168979,-92075554,-2147125751,65746882,1378927232,1975520065,1960512260,66683708,2088767093,108342282,-415826130,619397385,1963456899,175931406,772175148,166147839,-2095977663,208997369,738884736,-13760907,1091168054,-338545773,869413794,922693312,868420058,1959332818,-1339706335,624436736,942017141,74711397,242598970,-402290138,24379211,1229080391,-2024348811,1961692106,-2094117579,646206,1149906037,640680966,1963017530,1008724738,184841520,50623698,786950964,165232256,1107850751,1330202946,-1174148273,727187455,-33560327,57891167,1368418283,2088815243,225705990,108316939,1195854153,-346160661,1976109840,166419971,1979709827,197735170,1430156543,860948055,1048784585,1962936796,121959955,-1006078705,1072169596,-402593023,65732696,1912611560,1594317063,82533981,-116734845,-599882962,91553801,719913842,113716991,2524,785527747,772398241,165545671,-1578631158,-2010228482,1124720775,1967192963,14215171,-311047682,772410808,165709705,-941079741,-617364736,425088,-953281675,537518215,776160045,165709766,-1410841824,-617390848,-2010197453,-1979066866,-1053161148,-1054204042,1157034122,359956487,772424842,165709704,1090224963,2145911669,1976499712,142377195,940405760,141756492,-1979167702,139234001,628410635,252134646,1156975733,108269575,1191545382]},{"sector":3,"length":512,"data":[777519595,165709704,1090224963,1139278709,1976172032,121960155,169440640,-1978305290,-2010248636,1124720775,1967192963,2418691,-344600834,252134646,1156974709,41160711,-771093013,-1892808332,-32908794,-386435638,-1017839614,509019729,868977415,-532771365,-58464247,123667826,-2096829607,-1007089980,121960029,638743856,1095763338,1945987816,1166681606,-336048127,92939789,74760202,-169131705,-1017775829,-2145496495,142000378,254067338,48958644,520544906,567138187,184188959,-401443592,192150831,-494221174,-511041075,-1274876936,1510240768,-2096829607,-1007090492,236324353,3670035,4718612,5308437,5701654,6946839,7405592,9371673,9830426,10813467,11665436,13172765,14090270,14942239,15794175,1769101075,1881171316,1702129522,1696625763,1919906418,1986939148,1684630625,1768846624,1867385204,1701978228,377054305,1635151433,543451500,1769366884,1914725731,1702195557,1141535859,543257697,1869771365,1850286450,1768710518,1701060708,1701013878,1902473760,1953719669,1918988320,1952804193,175338085,1801807187,1920099616,1225945711,1818326638,1830839401,1634296933,1887007776,1699942501,1919906915,1953459744,1970234912,1343906926,1953393010,1864397413,1864397941,1634738278,544367984,1869771365,1918308722,543519849,1819631974,1919230068,275935090,1684104530,1969317408,1696625772,1919906418,1852131087,1818325605,1767990816,1701999980,1954039057]},{"sector":4,"length":512,"data":[1701080677,1917132900,544370546,118370597,291782285,21021057,369492675,268436228,452986368,1006635264,1442840320,1850281472,1768710518,2004033636,1751348329,1918980132,1952804193,1981837925,1702194273,1953459744,544106784,1869376609,543450487,1735287154,1632640101,1701667186,544367988,1836216166,1847620705,1663071343,1701999215,1343124579,1702064737,1920091424,622883439,-1928917455,-2095929026,-3966271,102110726,117463040,134245120,151025920,167804672,184586752,201371904,218156544,234934272,738260480,755045633,771838721,788631809,805425153,822212097,839002881,855808257,872611585,889417473,906214657,923005185,939806977,369407745,1920099616,1914729071,1768186213,1713399662,224750697,1175528458,543517801,544501614,1853189990,604638564,168430857,1701603654,538321952,1668178275,1684368485,544825888,1919250543,1919906913,168632868,1819033866,1818846752,1663071077,1701015137,543450476,1864399202,1634887024,611479412,1818838560,1818304613,1633906540,1852795252,1650553888,1646290284,1679844449,1702259058,776013088,690227725,1953720652,1953853216,544503152,1847620457,1629516911,1734964083,543450478,1629515636,1986356256,224748393,1699881482,1701079411,1881175150,544502369,1344300655,1414416722,1936615712,1819042164,168649829,1769099329,544437358,1702109281,1713403000,543517801,1818847351,1870209125,1918967925,1937055845,543649385,1701344367]},{"sector":5,"length":512,"data":[1397563506,1397703725,1836016416,1684955501,168636019,1346439693,1414416722,1143954208,1986356282,1566925673,1110399776,2053731130,1528847717,1949979951,1936417641,1528847665,1949977903,1936417641,1528847666,1949979439,1936417641,168647987,538976322,1528832032,1899647279,1702521203,794501213,1528847700,1769104475,1564108150,1952542811,1768316264,1634624876,542860653,1563307566,794501213,1528847683,224219183,688524554,1143939104,1986356282,543515497,1884495904,1718182757,544433513,1919950945,544501353,1769366884,221144419,538982410,1933197871,543521385,538976288,1937007955,1701344288,1953392928,1634628197,1969365100,1919247974,2053731104,1763716197,2036473966,779314548,544279053,978661152,1801677172,538980723,1767986976,1948283764,1931502952,1768121712,1684367718,2019650848,1836412265,1836412448,544367970,1663067759,1801678700,1667855392,1713402731,1948283503,1881171304,1953393010,168653413,538976288,538976288,538976288,1869881376,543515168,1767994977,1818386796,168636005,790634601,1769224781,846424931,1394614304,1768121712,1936025958,1701344288,2019650848,1836412265,1836412448,544367970,1663067759,1801678700,1667855392,1763734379,1635000436,544433515,1881173876,1953393010,168648992,538976288,538976288,538976288,1751326752,1667330657,779249012,544410125,978530080,1801677172,538981235,1819033888,1952539503,1948283749,1931502952,1684367459,1919249525]},{"sector":6,"length":512,"data":[1701344288,1701868320,1768319331,1847616613,1700949365,1718558834,1869374240,1948281699,1936417641,1919903264,538970637,538976288,538976288,538976288,1801675106,1970238055,1881171054,1953393010,778530409,542181901,978399008,2053731185,538976357,1701860128,1768319331,1948283749,1830839656,1835628641,1847618933,1700949365,1718558834,1818846752,1629516645,2003790956,1763730533,1752440942,1919950949,544501353,1969583473,168636005,790634551,538976340,538976288,1377837088,1987013989,1629516645,1713400940,1936026729,1869768224,1752440941,1919950949,544501353,1969583473,168636005,790634595,538976323,538976288,1126178848,1701015137,1881174892,1953393010,543649385,1948280431,1881171304,1701012850,1735289188,1818846752,1835101797,1851859045,1970479204,1902474082,1953391989,538970637,538976288,538976288,538976288,1701603686,1701667182,168636019,790634601,538976336,538976288,1092624416,544433252,543516788,1667592816,1852400741,1768300647,1634624876,1629513069,1931502702,1702060661,1852142961,1768300660,1634624876,544433517,1948282740,1881171304,1953393010,538970637,538976288,538976288,538976288,1969583473,168636005,1414203917,543518841,1313428048,1769414740,1970235508,1634738292,1701667186,1936876916,544175136,1886611812,544825708,543516788,1953394531,1937010277,543584032,543516788,1852404336,1970348148,778401125,118360589,321339021,90292609,369557443]},{"sector":7,"length":512,"pattern":0,"data":[536871176,872415744,855641856,1375736064,1677726208,1996493568,-2097146880,-1660939008,1850283776,1920102243,544498533,542330692,1936876918,225341289,168624650,1851867938,544501614,543519605,1313428048,539828308,543519573,542393678,1313428048,352980308,1313428048,1970348116,543520101,1713402729,225209461,1380980234,542395977,1969583473,1936269413,1886217504,168655220,1667449103,544437093,1768842596,168649829,1986939165,1684630625,1769104416,1931502966,1768121712,1633904998,1852795252,1162545677,1919906418,1852776563,1936288800,1701060724,1701013878,1684957472,1952539497,1752440933,1763734625,1829375348,1646295393,1718558821,1768697190,539911534,1634036816,1663067507,1801676136,779381024,118360589,411909773,17809793,369557443,335549957,889198336,1140856832,1358960896,1627396608,168633344,622862346,1936269361,1920295712,1953391986,1646295404,1735289189,1769107488,1684370542,538053133,540091680,1763734377,1970348142,224752997,1766199306,1847616876,1713402991,1684960623,1343425037,1852339297,543518049,544173940,1735290732,1176046093,543517801,544501614,1344302697,1414416722,1702195488,168650101,1049429774,-1048503903,-3997547,453056006,452985856,1701667150,543584032,1953720684,1986356256,543515497,1314017371,236993117,993955079,717325082,195]},{"sector":8,"length":512,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,65280,1566244864,725499004,2243389,1980155694,-67108838,1762560302,113716762,6763,2114373422,771751962,443483847,-953286656,1528498694,113716829,1014766348,235325230,774585883,454035143,-1779942595,-1206684922,643039231,975576459,-1207733489,-379912190,-1993473757,1394243638,512578903,-164750720,538605318,-391363723,1014105893,1946585576,112912439,-164751243,538605318,1374160245,774302470,444008182,1310618689,-2010244117,1966947335,243281414,1124145783,1929842408,-2010207035,-1091878137,914959950,-970057107,-1993474041,639269918,915217803,-2144462208,913583932,574390318,-164755340,18511622,-1977199499,-466484921,1762015534,772961050,-786798175,54739936,529213144,-352286488,113716841,72299,-1977196309,-466484921,65065280,260712152,-921965262,1396903796,-400585946,1935343814,-498908351,113716978,203371,-1977207573,-466484921,65065280,126494424,-523115470,651690816,-315486326,259311883,-1960422589,6154271,1124823899,787669571,443221703,1599930372,244002395,-1590814103,-1959912853,773483830,443487883,1897826862,1355020314]},{"sector":9,"length":512,"data":[-1459123418,91553794,1762066222,1015033370,-1457949440,158662657,1795606318,-352320998,61886478,-1628897356,65755136,1476468200,1438906819,1334453841,200094216,-1928497975,-1461188241,-402099453,-152961010,772205561,444477065,-1017292296,8290342,1157854208,-1018824981,1997439022,-957870054,776631039,444016256,-1590800145,-970253702,2013659438,-1959897062,773487158,1962949760,2088775206,158677759,1795606318,-352319206,1065559583,639202304,67575,-953281931,35285766,-402003200,-336068458,183236877,-1274826672,256255,1472460888,75467558,1866369326,92808730,23431206,2124492368,1166616090,20731906,-1993995659,-1993997227,1525352013,108331580,72714534,121393387,138209396,104653940,-2010773899,1055589461,259327036,444113198,1166616128,1569465860,640412422,637826441,1342590348,38270502,-1341885439,638184196,33703926,45090164,1476453864,38270502,-402426864,-1017184076,319211054,642777115,-1073018997,1397758069,-953264302,152726278,-1325419520,-10754045,1482381919,65733355,-1450151957,309624832,1795606318,-402653158,-2094137041,152726334,11097973,772961344,443221703,-186122240,1048784384,1963530859,16820544,-953281164,1731334,48031744,771973096,443235971,-1457097463,309592576,1795606318,-402653158,-2094136638,152726334,11079541,772437024,443221703,-488112128,1048587777,1963006739,1048784399,1962941035,113716743,596587,1448133464]},{"sector":10,"length":512,"data":[168069678,1008366784,772633914,97408,-970062219,166395908,1929648872,-347716095,-1017618721,-796241322,-402355666,208798727,208977930,771755240,32179336,-387234234,1019436634,1007448960,1011184225,608270202,1396567007,1049450246,-92267771,-1929087996,773521470,393483576,240275792,-1973046265,-17470,-1174403655,567148543,777541978,771841419,1124287886,645934147,1527209943,-2144448317,-2145749234,1999011886,-1976632038,1948990468,1965898762,243281415,1174542967,1476395752,1381060803,868823894,-1976675374,1958742532,15853634,-466470542,-489559925,-756493871,-1960021504,-775844902,-388902430,527564997,-774774063,1912650984,332595990,11790536,-721220238,-402599549,57802921,1539042118,1526762985,1996944942,175374874,-755510793,-2097036669,-1960443695,-1977219465,1962949636,-1274957817,-1871385601,76162630,1618214972,116796998,1971329655,1278944798,2000056835,1413162502,640578049,1996966971,641364520,1996837947,640871200,2080590907,637959960,2080461883,1278944784,2081062663,1413162524,-352157947,164004628,-1250572034,1795606318,-1342175718,-335563775,637644818,199959690,1795606318,-1342174950,-385895421,1516174629,-1664919463,1996944942,41222682,1889387421,-104597502,1915763907,2000239624,-131060732,1355020739,643256915,637960075,-1073085046,-4979595,-953284117,152726278,-1325419520,-52434941,1482381919,1381322947,771928662,1021838474,-398691838,-164692411]},{"sector":11,"length":512,"data":[135952134,1027345780,-2144985227,1962934654,773057393,444008182,1007580176,638219578,32384,-347710347,1178216028,169702656,1179808960,638839621,1962952250,-1976678843,975586564,980746310,-1477753530,1996944942,259276826,38270758,125042720,8290342,639792128,1050615,977016948,-2144990859,1962934398,1007610637,638022912,973110912,-336002188,914959878,1593318010,-1017619110,777410384,444087947,168069678,-401378112,611647583,319211054,777912603,1593836742,777928683,1593836742,17299238,775058688,443221703,703266818,-1976674728,1958742532,3008542,1558711156,1191342849,-347715770,1906454249,80096794,-1993455872,1578790206,11098207,1342796802,95485876,1492895976,-1924049981,-1189410274,976093193,1124365319,1497495778,1381024603,168069678,-398953280,745668883,24937262,638481466,1050615,-2144461196,1962934652,1008733207,1007776353,739080058,-1261401504,-402214657,132905849,1795606318,1509951770,-391330984,410255394,1962955752,116796950,1948260983,116797165,1950423671,116084233,-134091783,-1007107250,222056787,3943796,171714932,-2144983692,1912734333,651899678,-2096931446,-2144992061,225706041,-1977169613,975586057,-503024639,1494039800,1364443995,1896269358,-2144460774,-551913690,913580092,846465340,829697084,209002556,1965046912,1176547335,518766650,41779238,857174529,1300899529,1959332611,244491,20588099,-119404684,1532567612]},{"sector":12,"length":512,"pattern":0,"data":[1906454211,116796954,1963006583,243281414,975182455,-1914180672,991592494,1007318237,-117213905,-336064789,1966029835,243281414,-130016649,1398152899,1950253870,661979162,1381047888,856053079,-1193373962,567108352,-619979892,1516199175,1951932249,914959913,-1993467278,773485598,443692683,1948159534,3965722,70914164,1144653938,-117213439,1178994155,1543039979,12787550,92]},{"sector":13,"length":512,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369098752,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8454144,637862017,536936448,640223782,641803829,643376717,644949605,646522493,9877,66051,648095449,18874624,-1591289600,1143931174,8388864,-1574512384,1110376742,8388864,-1389963008,1362034982,8388864,-1205413632,1395589414,8388864,-1020864256,1429143846,8388864,-836314880,1294926118,8388864,-1591289600,1412366630,8389376,-1591289600,1127153958,8389376,-1591289600]},{"sector":14,"length":512,"pattern":0,"data":[1345257766,0,-1591289600,1060045094,16842752,131073,4194304,33620224,4,32,16974081,-16777216,16777216,66561,16711680,16842752,261,65280,0,0,2816,79616,536952848,9527]},{"sector":15,"length":512,"pattern":-65536,"data":[18,132112448,1380976700,538976334,2367520,-532676608,149555183,827609164,538976288,54,134209600,1347160452,538980948,-57312,-532611073,171051023,861163596,538976288,-65536,-1,-1,-1,-1,-1,0,0,65535,-65536,-65536,0,65535,-1,-65536,-1,0,-1,-1,-1,65535,-1,-1,-1,-1,-1,65535,0,-65536,0,65535,65535,-65536,-65536,65535,-1,65535,-65536,-1,-1,-1,-65536,-1,-1,-1,-1,-1,0,0,65535,-65536,-65536,0,65535,-1,-65536,-1,0,-1,-1,-1,65535,-1,-1,-1,-1,-1,65535,0,-65536,0,65535,65535,-65536,-65536,65535,-1,65535,-65536,-1,-1,-1]}]],[[{"sector":1,"length":512,"pattern":0,"data":[-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-65536,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"sector":2,"length":512,"data":[0,1380974592,1163152969,1162108754,213843,79168540,99681621,842268702,538980656,16785440,13893632,65537,70778881,74974270,4791045,453326363,907740233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,842334238,538980912,16785440,131073,65538,81002496,85263636,1415256844,5,453050367,1528499254,1364,16776960,13851,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,872422912,540553266,2105376,33554689,16777728,1895825408,-1325035259,1226509061,55122698,453134619,54,0,0,0,0,1226509056,122231566,453396763,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1845501440,1852730990,7237230,1]},{"sector":3,"length":512,"data":[16777472,218104064,1309019654,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-352321536,1661413126,67608327,17233664,554109703,16776967,538976256,538976288,536870944,538976288,2105376,-256,-1,-1,-1,-1,-16776961,83886079,1023881984,1560758023,16776967,538976256,538976288,536870944,538976288,2105376,-256,-1,-1,-1,-1,-16776961,83886079,2030530304,-1727560953,16776967,538976256,538976288,536870944,538976288,2105376,-256,-1,-1,-1,-1,255,67108864,-1257788672,-720912633,16776967,538976256,538976288,536870944,538976288,2105376,-256,-1,-1,-1,-1,255,0,1392508928,1243516243,1200565760,1200369166,1405836048,-1675719341,1200565760,1200369166,1405836048]},{"sector":4,"length":512,"data":[-299987629,1200565760,1200369166,1405836048,1075744083,1200565761,1200369166,13327120,1275857160,1802127949,198650877,198642647,317460240,394859694,-59380,1397753374,1448563281,1048649486,11151988,683159925,-773795584,-773795360,914960096,915080846,-293393806,-610062808,914959879,-1929771043,-1899197486,-69170218,-1909028050,-1085189626,-1923675249,771770910,138020551,-2094071809,997588799,509742,48896,41912622,72322094,771957439,-1087864951,-1993473168,-1195429249,2139696643,110149436,310348078,1044891438,-953286656,4854855,771887593,1962950531,260124178,-2094104576,1963006591,784347910,-385336669,102629878,1381061456,521033303,712261249,829751466,-788518728,-773795360,786485728,109983369,712128139,774434435,772266915,131937929,-1949135622,-1948873012,-1959855136,1376161334,193970001,-1675719337,113716736,-63430,-12614866,-953276555,-1090518777,-1993474030,-1943141761,2139948111,-1928917486,-819244977,4863629,-216894323,2011800622,1065561601,772961537,-2147479679,444564270,856061185,983772864,22866184,1397753374,1448563281,1048649486,11151988,683159925,-773795584,-773795360,914960096,915080846,-293393806,-610062808,914959879,-1929771043,-1899197486,-69170218,-1909028050,-1085189626,-1923675249,771812894,138020551,-2094071809,997588799,34064174,2408192,41912622,72322094,771964095,-1087864951,-1993473144,-759221633,2139696643]},{"sector":5,"length":512,"data":[111918908,310348078,1044891438,-953286656,15602759,771803625,1963081603,260124178,-2094104576,1963006591,784347910,-385336669,102629550,1381061456,521033303,712261249,829751466,-788518728,-773795360,786485728,109983369,712128139,774434435,772266915,131937929,-1949135622,-1948873012,-1959855136,1376161334,193970001,1075744087,113716737,-63430,-12614866,-953271435,-1090518265,-1993473994,-1943141761,1455359055,2139696643,60866344,847218990,772009151,-1086554231,-1993472314,-953281921,15943,340248366,485163328,1065561744,772961539,-2147479679,444564270,856061185,983772864,-1878922488,2009411324,2139303426,1500905222,142574382,777156095,-1006471227,592971324,-352094784,1476825156,1979711293,-31995,1448556404,-1929377607,1955400317,1587999498,1976116063,1166747167,1200172550,784370694,638076809,772294027,-1945483383,1200172736,-1878594804,-348273626,2143563453,1166681614,1947417602,-1090056680,79235103,1974399488,310793,-347147989,1592496157,1166681744,-1090056690,96012323,1974399488,376397,-2091978453,-167574330,-1003569101,-13758849,772286628,638484420,-2147269237,-1993997876,1048773445,1962879604,1950253848,158662698,712246983,166396074,-94742128,-510930290,1516199675,123231065,1398000415,1606692446,1560227342,-13739258,784534111,772702148,1025132427,57999360,1023610601,57999363,1023612649,57933826,771948265,622610315,57950208]},{"sector":6,"length":512,"data":[-1107102231,521017584,1223,306547494,1442989193,637826189,-1995553397,642139652,-1995422325,1978162692,1200500238,2139827768,1334521402,1200303664,75036,-1959918476,-1959911345,-964491180,1976705802,45476099,125159715,122732595,781195755,620905867,259326208,1195853639,53368838,122696775,786295625,1023558795,292814832,474972462,-1003601920,-1993994625,-2098658491,-115454,-1959917451,-1071439804,-964488331,1195854378,1476806471,877069102,-347535536,-1959898724,-1071441340,-2094133643,1963006079,21948675,22997337,411009838,-385649407,-1959919477,-1071440828,-380042123,992870728,58081351,771828713,1025131659,57933825,771825641,591286155,772568265,620905867,58000384,771812841,150913,1284189700,1278946844,772044320,1361071243,1465261574,608471854,-1959911600,118366836,511675182,444435246,1048511278,1583326451,777586463,773868585,773606441,773999617,1497255681,411009838,-385649407,-907411644,1149971968,146714,-1444347020,1376147712,784829271,-784709845,-1959898904,-134005633,1510312750,777513681,590905227,772240594,1244954371,123204981,-1959854285,-1071440820,-2010774411,-134004723,1925266248,1516199699,1284189703,1277767200,1275145760,-18683614,992921643,74850380,541887278,777395793,1344554123,1955278367,-1527556318,1495227999,778030851,-1959916151,690888780,19800140,1516184140,-22353657,474778414,541866798,-1959918474,690888780]},{"sector":7,"length":512,"data":[690888780,19799116,-346480052,777621525,638484420,201541063,1333866112,-381681636,-2094137107,1962942588,-26285821,-1071425530,1659569013,508647312,724486027,-388941241,1011286830,-1959855989,-1959911348,1354826501,507773742,910637870,525866870,-1003593895,-953807233,-2146696379,474972462,-1628880896,-1959897344,773740093,1344554123,1955278367,530903842,777543518,1495205257,1300311647,-385744894,1460076036,243254318,541362990,306546982,574917422,239438118,608471854,272992550,38127142,1392924168,-1003594157,-13758881,123405916,1610559070,1166747146,-2147474173,179832692,1166616192,621240067,141918208,38634286,-38868735,474972462,468402176,-53548656,243254318,54904614,199983114,2143563408,1170679310,-1023410173,440896302,1962934333,-1870927101,1946157373,277768,2045446260,160295056,1810563955,1975854736,621054739,1601503233,587353227,772437449,4720327,-1964376322,-775845118,-1194816536,-920420349,1967737460,71600916,213434403,775779712,4720327,1726611438,2139303426,57999640,-1198510613,-789118975,474423598,847219502,710380334,998247096,-351176758,521048110,-1191433239,82542602,-2147239792,-1207776791,154009601,-1959912377,-1959909249,-1031069609,575089454,179882043,1474393984,-18350,1191545134,-126531001,1465081690,1448171090,474450734,1946157349,2005610005,1149972004,1073751298,1178994804,1195853382,1465839595,105155419,1962934077]},{"sector":8,"length":512,"data":[1498566940,118380294,123711474,1493923161,1532975710,-377484616,-1993473450,1128678919,1237332803,1582945141,-1956946086,2005610186,1200303652,75036,-1959918475,-1993462153,1381448311,1465078102,-2147436453,556716279,-2127691196,-16842140,40141102,-1959854593,-49916,777075572,-108851317,628447743,106517073,-234418601,1493655471,1499138933,-1201710498,-404127734,126430721,38568238,233537536,1532515216,474972462,1347649536,1179010651,860046150,-1653257792,1516132699,-1202302113,-789102592,474423598,418389645,17286958,1204235776,771751938,542663,180585216,-920399309,-1959904652,2425412,772764800,620905611,527712256,40141102,-1959886849,-49915,776081780,-2127690357,16777804,239569198,1193984899,1179010631,-1024767674,58053155,1577097705,1465275227,236848721,-1960899065,1114934771,74746670,-1929218931,773386302,-2096605815,2106395335,571654,-1527556266,-947691937,-243971542,1599670047,-1928771608,-2095517666,-2094134589,1962607231,-2146781176,65624926,777739777,35276743,1204235776,1358954558,-1959897513,-1959904129,-1959908785,19209287,772043776,589320075,773289161,620905611,91488512,378670,1179010560,1229408070,1600054763,-1878398119,-953263266,203335,475499310,-142606152,784475088,857491337,14844352,10283392,771791337,1855361,1334521352,1976116010,9693443,780110638,38112046,1962934565,1195853578,-260748985,781221355]},{"sector":9,"length":512,"data":[3178371,213387895,1218653824,-1872631040,780086062,-782766127,785353711,590890891,772240585,1228162819,778040693,775716611,-1959916149,-970059145,-970058748,772276804,772951177,935111,1149840896,1599296272,-561314034,106823470,173932334,1149972059,-2147474173,179831668,2445440,192174208,243254318,54888742,784539406,774799243,589975435,772830409,620905867,762650624,1195853639,787510601,774143883,589320075,-352094775,-1959882732,2425413,-352095200,1195872268,1967736647,-339725331,-1959897421,-963964297,1342183173,773026957,1178993801,1577880622,33867566,93007360,38045998,772214366,236093323,29550879,440896302,1962935357,-2146650106,1023519465,443875329,474450734,1963458597,-2146650106,771833065,-14915711,-373279753,3998085,-385649408,54392996,-352094976,37589059,-1207536640,384401420,1200303617,1073751324,-1070398092,-1929312023,-2095517634,-1959916857,-12778939,1025078527,108331006,-377487176,-1959919379,-1071440315,12060276,14674304,612338478,678923054,38112046,1950351397,1195853576,-347716025,1334521583,1328229920,1200303650,75036,179834228,1976116096,11266307,781195243,774799243,775059339,-1205186677,-920420342,-1830222987,16824320,218234893,-789117952,38084910,772049710,-12778103,-1207142913,-789114880,38084910,781198827,150913,1166749200,-2147474174,12064117,785446688,771900705,3178371,-2094135948]},{"sector":10,"length":512,"data":[1207829093,1179076423,-920434362,-1959875723,-920437169,503722100,118380374,777133838,773750667,1461351819,377326382,-1976643021,1121387284,778020083,1511544201,119496287,1044891438,-1070399488,1351636459,474450734,1946157349,2139827723,1334521402,-1877873888,780110638,709856046,811043630,678744611,611633443,38112046,1946222629,1166749204,1073751298,-953283723,788528901,148935,1195853568,-663402169,1204235864,771751998,18499527,2143563264,1166616078,-1959869693,20781639,1023964160,57933828,-402483991,57869303,503482089,326485286,62393483,49906560,-383843212,1418396284,-359678,-383843211,773784176,774799243,589975435,1360164041,-1959895465,1958886149,1195853615,-227194553,2139827801,1334521380,1976116000,36956419,777934673,-1036319349,-907476107,1195853568,-277526201,35383641,444564270,774272260,-2125572215,1962974459,1245089035,1418276352,33155406,4914049,915212405,-1993473892,-387363244,2139303425,2020868144,38112046,1962934565,1333866095,1512046620,1465274706,-1959866069,-769443769,53348212,-347458489,2133536501,787468590,775716611,-890761845,1594258433,954947934,2005610128,80096786,1153838612,-1993471998,-953281972,3652,272927022,241128275,786336519,772169215,1527406079,54823726,626613855,74743808,24504665,1448563290,2139827718,2106273310,-339725544,-2094100363,1963203199,1468608038,-1661238962,-1928628992,771770934]},{"sector":11,"length":512,"data":[-380742519,-75431621,141885514,10237581,1314162990,1510025961,106321746,-2094083797,1963006079,1200303648,1959928632,1191390727,-109753804,1477376139,-405669845,-405674031,451667921,2139827856,2106273310,-339725546,-769421311,-1976694668,1257767685,-18287381,-352095232,-1959882663,-970059145,-970058748,856162884,227159753,411009838,772436993,-1189983095,132841473,1153904272,1191182610,243042606,-1993451506,1398214724,118382419,-13705589,-13760931,1599801949,54823726,1971322917,-1066055415,-346071545,1577553928,-1997973153,777410816,622610315,12066816,218330144,-789118975,38019374,1179010630,787838281,150913,1200303648,536880412,-2094134412,771818061,-14915711,777412319,992247691,773354743,589320075,-1206881079,-789110784,38084910,1195853639,1593144649,2139827798,1962359598,1334521368,1959338794,536918032,556716279,1195835973,1967736647,-1070375179,-1198518037,183205895,-2146781040,-1198521109,-1003585533,-1993994625,113443653,2005610070,80096786,1153838605,1398213122,118382419,-13705589,-13760931,-147977635,-2147482812,123625307,-1959911741,71113287,772830464,642664331,1024685509,1148518399,1032866795,1467285505,326485286,780110638,709856046,276089123,38112046,1965031461,1195853609,-260748985,612338478,542083886,276089123,38112046,1965031461,1195853581,-260748985,-343930952,-1959882727,33867525,38045952,183222323,-2146781040,-1198521109]},{"sector":12,"length":512,"data":[-1003585533,-1993994625,-1021377723,1200303646,81178,71108724,-385649664,-987365234,777393013,774143883,774000523,-1927260277,210305652,259311907,-1996125394,1195835972,1179010887,787344201,773869451,774000427,53106571,-1991883055,1959338772,93007375,1191330953,1179076423,-303347386,780110638,709856046,259311907,-1996125394,1195835972,1179010887,1592650569,542608174,710345518,28918338,-1981623552,-2084556012,259458298,-343930952,179867658,-1878725760,780141496,638484420,520308105,1465274563,-1959918050,-946994049,41913134,-134150472,-147124109,-561247115,-147077236,-336001931,133730306,1482579743,195,0,0,65535,0,2752512,65535,0,0,65535,0,0,0,0,0,0,-65494,0,0,-65536,0,0,0,0,0,0,2752512,65535,0,0,65535,0,0,0,0,0,0,-65494,0,0,-65536,0,0,0,0,0,0,2752512,65535,0,0,65535,0,0,0,0,0,0,-65494,0,0,-65536,0,0,0,0,0,0,0,1191116800,542395983]},{"sector":13,"length":512,"data":[8224,0,0,0,538976288,538976288,0,0,0,0,0,566624256,573514227,577184341,580854413,585441996,594944841,599073679,606282695,0,613491819,617161891,623912155,632759669,637216217,644228637,652289670,659695369,0,552730624,561783126,565453198,2752512,720896,1245197,42,0,0,0,102629376,1381061456,512579159,118364400,74958118,38767398,139954982,-1676244690,1976705818,113716746,2103798,638391785,19203979,-385649408,-2091712373,-1070396733,435725102,436380462,436511534,445555502,445686574,445817646,436773678,436904750,445948718,446079790,446210862,444900142,-2113485010,771762714,445384391,-953810902,-327097,71797030,273123622,306678054,340232230,357009446,373786662,390563878,407341350,508004646,541559078,575113510,608667942,642222374,675776806,1244316547,-1166683613,-1014803621,378220042,-1960437092,-29556153,638481919,589186955,637957568,-16627769,717456383,1976705866,-1014801439,727208202,100740801,124983952,-1845067474,1360003098,58050851,772550121,1025150113,57999402,1032868587,57868303,1023483881,57999375,1023484905,57999376,1023515625,57868321,1023610345,57999393,1023611369,57999394,1023667433,57999395,1024168425,57868329,1023469545,57999401,646978539,167921607]},{"sector":14,"length":512,"data":[198240640,-133773522,771751961,445384391,2045313060,44117759,-1801245158,378220058,-1993467388,1025152534,242614271,1979710083,1204233737,-377484286,-1031077757,1360002853,-754973511,-494839328,53407744,1931121670,12747012,-1801245168,378088986,724441750,1931120646,15368454,777613840,445781547,1933595250,12747012,2009152272,-494841280,-1185869825,-489488380,1522664281,-1031732109,-494858240,1381036032,108249387,268495489,-1071445902,-769452683,1482297717,63449928,113716976,6796,1526649833,737215320,-20256311,33998638,788528922,436471495,-953745409,-2146696633,-1959861269,52071486,-1510002945,777198126,446437003,38243110,1962933053,-1873089789,239569702,403061550,506885402,521032022,-1927671618,146343551,1504113408,561323870,38258470,-1590755332,-1993991668,-1590819769,-1993991654,-1590811065,-1993991652,434841671,144780944,-49894,-1590816907,-12772854,637957631,134367175,520300160,1959928650,781314818,445384391,-379912176,-1590755800,-1557259768,-1590814060,-1557259766,-1070392682,446210862,-1774286034,633834266,-1185869825,-523042812,15171929,100871920,74652308,268486529,445948718,-1774286546,378220058,642980508,1023559563,1500905468,679447334,-14301301,79253775,1507906304,-268376191,642188070,-947846029,992874496,1998231102,-352095180,992907274,1998230534,773354536,446170823,-1557200897,-1993467244,773494334,446307977,781193195]},{"sector":15,"length":512,"data":[588945569,637957568,201476039,-769439104,52823412,1536486175,-1776907474,-1801376230,-49894,-92075915,-385649153,724435071,1931120646,15368454,779710992,445781547,1933603442,12747012,2009152272,-494841248,-1185869825,-489488380,1522664281,-1031732109,-494858240,1381036032,108249387,268495489,-1071445902,-769444491,1482305909,63449928,-1734267152,1958748954,113716746,1120908,788331497,445384391,-953286621,35291654,113716736,727684,1526522857,737215320,-52762167,446210350,343261219,788529080,773458083,639240867,201476039,-54597248,512437843,-953804134,-2146696633,-55645861,-1942058194,788464410,439264767,1461423807,512437843,-1590814054,-1993991650,-1590816697,-1993991648,-1590816185,-1993991646,-953803193,8263,575129382,-953810944,9287,38258470,-2094596099,1963000959,1048784395,1963727502,-1876104408,75465510,778401026,438976131,772502784,445529731,-348162808,-2094100413,169512510,954938485,1204233872,780143618,639247520,773080968,639247776,773146504,639248032,773212040,639248288,773277576,639248545,-350730359,-953774057,-2146696633,439001390,440895782,439132462,474450214,438477102,175489059,-1945712850,-352317414,-953249768,572165126,-1902039552,1191257626,637956902,2639745,784554768,446437003,113716819,6806,-1744386258,771751962,445791883,-14301301,79253775,1507906304,-268376191,-1878654162,-2130414822]}],[{"sector":1,"length":512,"data":[772800711,773492899,445791881,38243110,1962933821,-180967,-1343683724,1200301568,1958748958,1204233745,-335544830,-1960407028,-1071440313,-1813445771,2139825664,633834280,-1185869825,-523042812,15171929,1191388912,-2130414810,772800711,445791803,1819623282,-1878639826,1966502426,2005476963,1603020322,1200301604,1942043422,1204233773,637534238,773867401,446039609,-1557265293,19274390,947070535,675774758,820711424,1204233872,-343929854,-1054109657,508004646,542083366,-1777432274,1325475354,637956902,2639745,1958748944,113716743,-58728,1243546406,57987619,788477417,52074145,784870384,446185091,772240640,445384391,-379912176,-2094073188,135919678,225711730,38258470,-953253878,572126726,737215232,-92345911,1229325451,-130118866,-2059784679,276044282,38258470,146309132,-123523584,-94443239,1049177671,-8185352,-385649656,-953222576,1737734,113716736,2300556,-2113485010,-385866470,76282424,-920434362,-1574039947,-953279998,639273990,-98375424,-1557247674,-953279998,656051206,-99424000,1229325451,436445742,-1945712850,-385865958,76282368,-920434362,-1574039947,-953279996,672828422,-102045440,-1557247674,-953279996,689605638,-103094016,1229325451,436576814,-1945712850,-385865446,76282312,-920434362,-1574039947,-953279994,18516998,-105715456,-1557247674,-953279994,588942342,113716736,137858,-1946575895,776553988,773457826,445384391]},{"sector":2,"length":512,"data":[-953286621,35291654,1976115968,-109123325,117386822,591993476,-385649207,776403312,444860159,113716809,137868,-1946591255,592004612,772699593,773458082,445384391,1240006659,776554233,773458083,445384391,971571204,1174703097,161623625,113716762,268940,-1946605591,592004612,772699593,773458594,445384391,300482565,776554233,773458595,445384391,32047110,1174703097,195178057,113716762,400012,-1946619927,592004612,772699593,773459106,445384391,-639041529,776554232,773459107,445384391,-953286648,1707526,-121444096,1229325451,437101102,-1945712850,771754010,437126855,-1444347904,1048784632,1980242446,1204233748,780143106,435553991,-251461599,-1914058453,571640,235285294,1942502170,118359577,773460159,437140995,235798830,128250650,-385875783,106035304,280954638,1040395802,-930407922,772252915,437126657,784870233,445384391,1172897801,1174703096,1976116041,413281806,113716762,662156,1190670313,413347401,113716762,2300556,-2113485010,-385873126,76281880,-1574024890,-953279975,588942342,113716736,727682,-1946681367,592004612,772699593,773462690,445384391,-370606068,776554231,773462691,445384391,-639041523,1174703095,463613513,113716762,858764,-1946695703,592004612,772699593,773463202,445384391,-1310130162,776554231,773463203,445384391,-1590820849,776477190,588908195,-1207011904,-1557200897,-1557259768]},{"sector":3,"length":512,"data":[-1981212150,144781047,1975526170,178335251,1975526170,-18421,436773678,436904750,-1946719255,776553988,773463458,445384391,-1590820849,776477190,588908195,-1207011904,-1557200897,-1557259768,1105795594,144781047,1975526170,178335251,1975526170,-18421,436773678,436904750,-1946737687,592004612,772699593,773463714,445384391,233373714,776554231,773463715,445384391,-35061741,1174703094,530722377,113716762,1251980,-1946752023,592004612,772699593,773464226,445384391,-706150380,776554230,773464227,445384391,-974585835,1174703094,564276809,113716762,1383052,-1946766359,592004612,772699593,773464738,445384391,-1645674474,776554230,445515463,-1557266426,-1071441374,-2094133132,18484286,-2094132620,35261502,-953281420,555387910,-160241408,-1945712850,-385870054,-953223576,488279046,-161552128,-1912158418,-1962932710,776553988,773464994,588915361,772830400,437010051,772961281,437010051,773092354,445384391,770244641,113716982,1514124,787882985,445384391,434700317,784348150,773465250,773465506,773465762,773466018,773466275,445515519,1229325451,438608430,438477102,581119560,772437018,445384391,-504823784,113716981,2169484,787863529,445515519,1229325451,438673966,438477102,581119560,786330650,445384391,-1243021287,117386997,76225166,-1574024890,-1590814170,776477218,1947869859,113716924,1710732,787846121,445515519]},{"sector":4,"length":512,"pattern":0,"data":[1229325451,438805038,438477102,581119560,781874202,445384391,1911095323,117386997,76225166,777013574,1209672353,438477614,-385649320,-920387721,-1574039947,-953279960,471501830,-179902208,-1912144082,776554010,773466275,1209672353,438477614,-1945712850,-385867494,-13699800,-1961193978,776553988,773466530,1209672353,438477614,-1945712850,-385867494,-13699832,-1961193978,1346979332,438477102,581119560,58021914,587256809,772699593,773466786,445384391,-571932642,117386996,1229331086,439001902,438477102,581119560,1048784410,1962940970,113716746,2169484,787789801,445384391,-1377239009,117386996,76225166,-1574024890,-1590814165,776477218,773464739,438976131,785937664,445384391,-2048327647,117386996,76225166,777013574,1209672353,438477614,-352094888,-920416175,-1574039947,-953279956,538610694,-195368704,-1912144082,776554010,773467299,1209672353,438477614,-1945712850,-385867494,-13700036,-1961193978,776553988,773467554,1209672353,438477614,-1945712850,-385867494,-953224164,555387910,-200087296,240584274,445038343,771752890,639272097,124912955,1194161226,653585223,-802482805,208915003,-2079456978,737215258,-1876694071,-2078932690,737280794,-2103365942,-1935462886,-1878004966,643434335,167921607,-339137664,123703300,-205854374,-1942060242,58007834,1509364200,1499094878,520575067,195]},{"sector":5,"length":512,"data":[0,0,672006144,131072,1039859712,91532608,-265355474,1398100007,1448563281,-953285090,2618374,244067840,-343201780,1962998403,-1675719408,1245089024,914959872,434841588,33194896,512558965,233505006,49972112,512558709,32178496,-2096270599,91619325,-352305176,12052483,-197752018,-24929241,772830208,773474187,773473417,776882059,-1655815031,1600003847,-1956947622,138841068,-31128206,218360831,1183383553,-2041029368,-2094084128,1963203199,-1869574027,440911662,-1959919615,-41726353,860124415,20310208,947186235,271485230,-1928917464,774371134,772702089,-401586292,3992524,28842868,17950720,-197229778,175374375,512437843,15214580,-335979775,485226527,-1206260744,-253231103,1048784384,1946167284,-1959898358,-400034786,-128253729,1313326894,784596991,68845443,-970059915,19396102,440911662,300613633,2139303568,141885722,-167328210,32178215,-397053191,1349648467,-1528250317,1961507584,780742196,118368272,670514829,243239214,273124398,-348460974,1946172506,686553347,440911662,-2144468988,2618942,-1993472907,-336048553,1204235795,771752986,670449280,772044032,-129083511,12210883,1334521344,2139827754,16417582,-108849803,772830208,91565369,-352321094,80184300,-2082018487,578093306,542083886,612338478,1962998403,16352021,959320180,-1174047443,-320143359,1225049987,-92018965,-117213952,1526202859,-17725]},{"sector":6,"length":512,"data":[709856046,780110638,1979710083,16352035,-147972492,536871493,-1959915404,81173,-953227659,268436037,-947659029,-655668988,1979710083,1334521392,2139827744,-359644,-108846219,773747712,148983,772830240,20780427,786855168,148935,-2082542832,-347536185,50136,0,0,268369920,65535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65536,262146,8,0,0,0,0,0,0,0,-65536,-1,65535,0,26345472,33161670,39977518,46269074,721650,0,16781313,-1343728864]},{"sector":7,"length":512,"data":[-402164985,-346355499,777752657,1962950531,712030232,78760243,1494149331,775995651,-399871325,216734563,1048784528,1929456546,-1876432125,-507574514,361440774,-1575581394,1048784427,1962945442,213406540,178944,-768423629,-2098659402,-1590797560,1494100594,4047147,-2130087408,756023489,-219475968,-523116335,-523116335,243254318,239453990,-1993998336,-953806771,-59579,54904614,568950787,83526402,113707382,65608,1469077739,58053155,646991851,-1962771061,-1107029490,521012244,-1959897519,1959338804,-1960421597,-1960442755,41782541,41192790,1600038643,-555219083,-346464767,1179016726,-722777767,587221153,-955877952,67127302,1599692288,-347453625,-1590796374,-1071436892,-1494678667,-1090056704,-919402783,-1960423081,992871037,1915462158,8448259,2106271319,227223042,771915149,-1929218107,-1494021516,-352095137,1398378591,-620504693,-1433957586,101264939,1364929446,776107917,1023558795,779485183,38112038,38045998,71666470,71600430,105220902,105154862,138775334,138709294,172329766,172263726,-352145688,518557715,2139303428,57999642,1502611179,-1877415073,1197424985,-9377465,-2094112935,1946229375,1204235782,771751962,237662881,1036069721,158470144,268484993,-351272915,-773795342,-773795360,2143563488,1166616078,1300833806,784347920,-2095427701,57934329,645923768,-402438775,-2094136190,510984511,444564270,1394046209,-1928169587,-836022193]},{"sector":8,"length":512,"data":[341805870,236093325,-216068601,-2094113884,57934655,771792873,86667937,-1557266392,1494100594,4047147,-2130087408,756023489,-219475968,-523116335,-523116335,239438118,1946601262,771751978,774612129,732300835,-1475988690,1975526187,115457792,-919402738,-1576125650,-783322325,1464234728,1381191761,41782054,41257766,521013006,-1929377607,-24444300,-218357584,-970567762,-1943142395,774632974,737425033,-1157627208,915210242,28912626,-1227738624,103803135,1498962778,1195852127,1388554987,512437843,-634704990,-745809149,772686987,735741833,1024476299,175505414,4720327,-379912176,1144717645,-955616494,302008326,1055480576,-2021052927,-1993462862,-1960068473,104666180,-955615744,285231110,585718528,-2021052927,-1993462846,1529598647,-1960421551,-1960442243,1976115981,-628403436,-1299216082,307006251,-1165022930,-1914086613,272927488,242731067,1980168579,1208403730,-385875200,113705183,131144,1442895593,786074451,733644683,306985809,1284178803,1505831698,-1299216082,-2021052885,-1959908422,1529602743,-561294765,378130827,512296923,-920451107,1195849076,1376095014,121318995,1515915381,-379692198,1128464523,1967801155,777673708,-1959918455,852548,1073745168,38045998,1179010630,1523051337,1465867867,142445350,1023773478,1500971009,980729891,38112038,846512163,209486638,1394046209,786074448,733644683,1532543011,104675188,-349014272,1347653653,-1959863669]},{"sector":9,"length":512,"data":[590070407,1952143552,408864,-1957487753,-2021052710,-782554166,112874,-920401269,-523042188,-1543108306,1515806507,1381454275,732209454,-16556207,1927861057,22669571,-763000018,1200172587,-125085922,205884206,407341358,-2054476193,-1993462814,-1959910329,774630021,774784905,733119883,575113518,-1165653202,1200172587,-2063389146,-1993462862,-1959911353,774619781,858539913,45699520,2139303424,57999640,83886521,1229455392,-1993410187,777601095,735741323,877103406,309840,1967833091,1200172795,-1959896522,774621837,1362120585,411009838,588477697,772502729,774000387,-350204023,-1959882747,-920444849,-1590815116,-1039979918,788231497,712117899,944736558,712155950,2139303513,1769275672,578781998,1366717440,1460018774,1468739154,521032226,810010414,-1959919616,-1959911817,-919398796,1091340846,947882798,-13433001,-1527556527,1594251614,880739118,1525511498,611814190,947882798,146736983,76230144,1174767910,105268806,2130914911,-394966476,520576858,367745374,1334390416,-1925501398,158542786,-1031435474,1200172587,1204235818,771752218,1962950531,-2054476270,-1993462870,132847175,1204235920,1509949466,-1916577441,1448166007,74746711,75336486,1091406630,1604776769,-955681698,553666566,-1872499968,1955288918,2106271238,93005318,-754974023,-1958723360,1604776904,-955681698,570443782,-1874859264,1955288918,2106271240,93005320,-754974023,-1958723360,1604776904]},{"sector":10,"length":512,"data":[-955681698,587220998,-1877218560,1955288918,2106271242,227223050,-1494007487,661937759,4720327,-953286620,6727,20939566,777196917,773087115,1722311,-1959896320,154015303,1496033286,-1532940719,-388808405,773288793,18513795,-1957490572,786105305,732596107,-1475999442,12802859,1799258158,1098186802,860901638,650153664,771800225,640151715,12455563,-233928402,1975585575,682211341,670081838,-1557215092,653928434,12322503,-1943656430,-83837426,772233560,845874886,49921,0,0,-65536,65535,0,-65536,65535,0,-65536,-1,65535,-65536,65535,0,658688,0,606339082,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,1294214180,1329864787,1700143187,1869181810,540418158,1126777640,1920561263,1952999273,943272224,959524145,1293956153,1869767529,1952870259,1919894304,1766596720,1936614755,1293968485,1919251553,543973737,1917853741,1919250543,1864399220,1766662246,1936683619,544499311,543976513,1751607666,1914729332,1919251301,543450486,106058576,-1899416745,-1191234623,11670062,-1943130163,775077894,851328649,-1307431240,774884610,851969676,-968980178,305051698,801965234,-670659538,1049177650,783823574,-855199214,109850159,-1993461060,-399328706]},{"sector":11,"length":512,"data":[-1943140835,775075846,850804361,-737768402,1049177650,669528786,109850118,-1993461044,-1204630978,145887790,-1943130163,775086086,853425801,-251214034,772410674,859440838,113716772,13046,-133773522,-402650574,-1993472385,-399318466,820510745,4450304,5433425,1599670386,1482381831,-998046485,1355020556,12066390,505531747,175251207,-365524690,109850162,1482568428,1140897987,855638203,-2145268270,-830471706,1140963329,-1195171379,29049856,-841862400,30310433,-851181128,817152801,104669645,-133991146,37558507,-1157270784,65798143,-1207958853,12124161,-1241468416,1355020799,1465209171,-376745466,-299988690,914894386,-655871245,1959332610,1978469148,2549765,-1175976981,1510502913,117507816,-2096829601,-336001340,1516177156,1560703737,-346530983,147096324,1397801977,512437842,-75287826,-402295297,65732652,1929410536,-1151749105,567083008,-997989326,283900166,1962933123,1958820619,11593735,-116996989,1532625778,102679384,33129247,45357941,-854226394,-1031135455,503362024,124985094,22383142,-336059955,184726543,638153929,567088522,-210417337,1472405496,-1957493168,-1962467590,-65359655,58044146,-1957963477,1476877259,-1070349473,1333053707,-1273035234,-2083026112,678756857,1344217549,-402290138,509083738,108207878,1111536888,647766477,1964653952,-339637502,-401682687,451674107,-1494724267,1508477951,41099725,-935654421,-398784652,-1962773000]},{"sector":12,"length":512,"data":[-1021354559,-1157617736,28639236,-98109,-956952204,504132992,-247558905,178482,-1006698520,-1003596026,187886142,639071487,-134201981,975573108,638022149,1996571962,1195899137,123726315,110046915,-617401612,-147942765,-1825376202,-130615506,167412530,-1031797386,-2147226825,1095905474,74825739,1014291211,1963194755,175931406,772175148,855717631,-2094732479,242550777,738884736,-13760907,1093861686,-108850709,-2146667253,1965820540,922693126,-1824443647,-1561603533,-1070345677,-197722322,-768359630,561301771,11543988,1965373478,1698178570,973370369,638481860,1273496970,1191277567,1967735367,-897100061,896855307,1048784461,1962947318,105155116,975581188,41222469,809246699,-771029899,872612980,-2144409621,-13438146,1111623797,1330596169,-4586517,-114599937,1610481640,-352095399,-1957588889,108822730,185431040,1225159881,-347650231,283860481,58050827,-2096501922,41287673,-16004813,1465204340,-919383802,-163675346,326434866,252134646,2093222005,41019394,-1964506901,-402396415,124911650,1566508889,-2096829602,788073156,854998659,1912960256,-13965053,-167327954,-1023410126,-1590767053,-953273610,171112454,-22943744,-2021118376,-2092748038,58015995,-33420568,-1192397367,-1993471475,1127414407,33155139,861099715,-2134297610,158728190,-490960082,-337671374,46593576,-1003615884,-1942829380,1025174467,242352147,1996498749,-1127993847,-1014222126,-1003616277]},{"sector":13,"length":512,"data":[-1942833476,-293949,-25159819,-117213697,-1557262869,-4705546,114175,-336005581,16483084,1424491380,80118528,184972024,-352160311,-25125734,1378448641,1460031829,83933264,-12832819,-1962314408,84064472,32190413,1594192889,116087047,-402209661,1516044300,248447467,1543502824,1347928926,855637945,-139529536,1599621585,33260483,-2094128779,-13443522,-12773004,1343059455,855023918,-568393938,99309618,-568393938,857402162,-98103,-1977219468,166396749,1966422062,1300901380,80184067,-131238919,427084043,1962933888,87762437,992871403,-352160507,91506953,-352008317,208861667,-117440896,118358645,41747238,-315488654,1192069670,-267991506,868417586,108822747,773027072,855279559,1128475936,-91765202,-398254030,861733035,785527771,854593160,973685898,706705089,-152007999,1954547524,172263957,-91781074,-75283662,-402426560,-822214529,2088823669,225705992,1929923640,139209224,1284166026,1959332616,121959973,-166955761,1947207492,92939782,1476520775,-91781074,-75283662,-402426560,-906100669,1157028725,427130887,359986698,772424842,855279496,1090224963,619185013,1976499712,121960171,-167217905,1947207492,168684290,772371666,854853263,-143275266,1426064104,1460031939,-880081122,1049484083,1374171898,1594192635,82532615,-116996989,1156996547,309669895,1342540326,-63379391,-1977219469,-128974523,-1977217557,1958742533,-348043516]},{"sector":14,"length":512,"data":[1442393077,369492419,83885825,2017792256,1684956532,1159750757,1919906418,238101792,87985415,549552954,369492675,83885825,1632636416,543519602,1869771333,824516722,1049429774,-1048364503,117424925,66326,131084,786464,1226244169,1919902574,1952671090,1397703712,1919252000,1852795251,623643149,1868767281,1881171300,543516513,1986622052,1663070821,1869508193,1700929652,1768843552,1818323316,1684372073,822544909,1635151433,543451500,1953397107,1864398945,1380982894,1163152969,1498623570,1868767315,1881171300,543516513,1986622052,168653413,-1928917497,-2126886338,-1023373887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-65536,0,0,0,0,0,0,0,0,0,0,255,65280,1566244864,725499004,2243389,-953286656,3861766,243871232,-1993458825,775649574,997930633,243871484,-953271584,3858950,113716736,15093,-435763410,771751994,1001522887,-953262757,2084287494,113716796]},{"sector":15,"length":512,"data":[725498806,-1207515346,1362836795,-1185523886,-1404960769,1963575528,243871481,1449016251,-1156674770,-2133118149,41230908,-620047370,76230773,1948269885,1025522959,154995316,1023767613,443877693,1178404038,1364655755,119408198,1493673203,-4764066,-1156645074,1229343035,173982079,1605662207,1223186778,-1206684919,643039231,975576459,-1207733489,-379912190,-1993473757,1396371254,512578903,-164742409,540732934,-391363723,1014106584,1946762472,158197815,-164751243,540732934,82314613,774302473,988677878,1310618689,-2010244117,1966947335,243281414,1124154094,1930019304,-2010207035,-1091878137,914959950,-970048796,-1993474041,641397534,915217803,-2144453897,913583932,574390318,-164755340,20639238,-1977199499,-466484921,-536463058,772961082,-784670559,54739936,529213144,-352286488,113716841,80610,-1977196309,-466484921,65065280,260712152,-921965262,1396903796,-400585946,1935343880,-498908351,113716978,211682,-1977207573,-466484921,65065280,126494424,-523115470,651690816,-315486326,259311883,-1960422589,6154271,1124823899,787669571,987891399,1599930372,244002395,-1590805792,-1959904542,775611446,988157579,-400651730,1355020346,-1459123418,91553794,-536412370,1015033402,-1457949440,158662657,-502872274,-352320966,61886478,2145976244,65755136,1476460264,243281603,-402113810,611450939,-299466706,777058106,725283233,100740806,777534191,988886667]}]],[[{"sector":1,"length":512,"data":[3964974,-790099596,351008768,772926457,987891399,-1336934391,-385895421,-128450506,642864579,839405450,1959332845,158305549,1929623016,976904,-335939870,780742150,1509440245,-2144943267,1946157182,-152353533,-1007041723,2139825751,1049177604,-2010760474,1703421445,-1590800383,-1993983243,1012400709,638219521,637818249,-351908471,1963080794,1435051526,1011936004,1021867015,1021604872,637957382,-352037496,1963211838,-274649585,-1993981894,-1943665595,736822877,74811686,105745446,1207314000,74711298,166397104,38270502,-1341819902,17885186,1207314008,57937922,1593892840,113651395,1342192573,185043750,1343780288,777474643,987891399,-4980727,1541931952,1532649471,-1456411816,309593088,-502872274,-402653126,-2094136016,154853950,11082101,773288968,987891399,-1041760256,1048784387,1963539170,-352064766,11112556,772961408,987891399,753401856,1048784385,1963539170,1073785172,-953281932,3858950,15853568,-499219666,1031080250,1946288297,113716754,15074,772130024,987905667,-1457097463,309592192,-502872274,-402653126,-2094136010,154853950,11079541,772437024,987891399,-488112128,1048587777,1963015101,1048784399,1962949346,113716743,604898,1448133464,168069678,1008366784,772633914,97408,-970062219,166395908,1929822696,-347716095,-1017618721,-796241322,-402355666,208799406,208977930,771755240,32179336,-387234234,1019436634,1007448960]},{"sector":2,"length":512,"data":[1011184225,608270202,1396567007,1049450246,-92259411,-1929087996,775661630,393483576,240275792,-1973046265,-17470,-1174403655,567148543,777541978,771841419,1124287886,645934147,1527209943,-2144448317,-2143621618,-299466706,-1976632006,1948990468,1965898762,243281415,1174551278,1476395752,1381060803,868823894,-1976675374,1958742532,15853634,-466470542,-489559925,-756493871,-1960021504,-775844902,-388902430,527564997,-774774063,1912650984,332595990,11790536,-721220238,-402599549,57802921,1539042118,1526762985,-301533650,175374906,-755510793,-2097036669,-1960443695,-1977219465,1962949636,-1274957817,-1871385601,76162630,1618214972,116796998,1971337966,1278944798,2000056835,1413162502,640578049,1996966971,641364520,1996837947,640871200,2080590907,637959960,2080461883,1278944784,2081062663,1413162524,-352157947,164004628,-1250572034,-502872274,-1342175686,-335563775,637644818,199959690,-502872274,-1342174918,-385895421,1516174586,-1664919463,-301533650,41222714,1889387421,-104597502,1915763907,2000239624,-131060732,1355020739,643256915,637960075,-1073085046,-4979595,54283499,642203509,162792842,54584566,92940024,-453638732,653787968,1195836810,-399668442,309526578,-33306749,787576264,987891399,-4980728,-1977215765,45154149,-350909658,113716747,604898,61931444,1610379752,-1017619622,1448236368,-1976696142,77654020,48774258,116797182,1946696430]},{"sector":3,"length":512,"data":[1966947341,2122327583,1517617153,-164752405,272297478,977014388,-2144990603,1962934398,1173046853,4602406,-1073078923,1162230644,975573995,779419718,76164678,1178216005,1176728832,648538949,1050615,977016948,-2144990859,1962934398,1007610637,638022912,973110912,-336002188,914959878,1593326321,-1017619110,998127245,-12811474,267059828,240144926,939571231,567137931,-1021355432,-919383471,168069678,775713984,998063744,-2146470912,74777083,812923452,745811516,758910187,792471156,775692916,-1326965132,-1273072898,179998976,199423744,51475922,-1861324095,-1967264954,99350744,32241734,1522633721,1364247385,1448302162,788497896,17908982,-402426530,-953286399,3907590,113716736,15266,-1543059666,771751995,1000736455,-970063872,20675846,1877475763,777876223,171679907,-396397349,1349713762,1000514350,1383389962,1407713971,776041215,171680931,775321051,988612342,775648514,988034699,754941056,1153839221,-953274625,3861766,243281408,771898093,997658251,2032569134,915091003,1474902907,-15669000,-1557241998,-620086362,-1590798475,-469091424,-164737163,20638982,205260916,41239415,-164708302,70970886,205261940,201590900,406597490,-796251273,1000513838,561374218,-1590759286,-469091420,-930474123,1000775982,225829898,1583081610,145817524,-335907352,-1268884720,-402411265,-953222550,154853894,113651200,1509964669,1354979417,76164694]},{"sector":4,"length":512,"data":[1975519814,1149906680,1008733438,1008301168,1008563297,1311012205,-29062610,1882988556,1631323764,334170740,-301039570,116065338,-317816786,-970063558,1577123396,1397801816,512437846,1065368303,845116712,-402158876,1299448205,74786876,1165149438,108341564,1030933758,574366580,-2010248075,-398244348,762445963,468193259,772240130,1128662152,-2010249334,-347912700,76033732,21284398,509440,-398003317,-1993473761,-348462026,915090960,-970048781,-953286652,154853894,-1325419520,-396665340,-1017579110,777409360,988749451,574359434,-398253707,309461039,21284398,1190365952,771809000,988034697,-1959915285,775615286,771753158,987891399,-4980727,1532889520,1492736488,126570691,1946213608,1965177892,586973197,-2010243467,1128482308,2078861547,772240129,1128662152,-2010249334,-347912700,99350997,312878,1354979576,-1959897513,775614270,-1073085302,1609044852,774141184,1002243782,-970039807,-346095612,-970039745,643760132,67575,-953273739,37413382,1479142144,76164694,510967818,1946168808,18409483,1179058803,-370457017,988324398,312878,1049177671,1600010980,33597784,-1269823116,-402280193,-1017579342,512577875,163134386,121253376,-498924428,1532576248,585673923,-401050624,376766547,-301533650,-311156678,-301533650,158613818,-116987058,1324876267,1405352131,1947024465,1946172461,1946827817,2105550373,510788098,-1977165005,-1014824099,964699652]},{"sector":5,"length":512,"data":[856519680,160048841,20588099,-119405452,1532562748,777081795,988284614,645934624,1021262574,1010201632,1009939465,1009873964,-2146667232,125116476,977674416,639560640,16940416,-919398542,55413286,192203019,1124074427,1946237478,1022943751,-1017423584,988324398,-301533650,108331322,-301039570,-1069932486,781051883,-583320841,792463988,-336002187,200013838,108343100,-301039570,-1007140806,777213470,988495491,1344763136,1465012510,-164428203,12115598,-1943941789,131795931,1499094877,695490591,-382301906,512306746,-1959904533,775612726,988487310,1946172547,1912879632,21248520,-336002185,-347716091,1583085803,1189987103,-184483584,-33488826,16908358,2118614784,67240007,1199505410,1342719870,4017746,827609164,1347158077,4010580,861163596,1380974653,4012622,827609164,1275084090,976376912,1347158077,1027224404,4668416,1195770625,1196967759,536870912,1199505410,16795518,2130706564,4685383,32769,1197557631,16843008,0,6,16795503,4683009,8389376,2118614784,71,0,16777216,106385920,-61465005,309708070,1049429774,-919386390,501797427,-199563020,115416717,1962934077,1048587860,1963018119,15692,-970061708,4687622,-2144454421,71794494,-13751691,1124524294,1048784451,2114193121,113651208,-352303225,-1959898343,23259167,-2012821970,719847495,116087552,-2029599186,-397213625,-346295360]},{"sector":6,"length":512,"pattern":0,"data":[1048587943,1962952583,113716746,1761,-134091783,123412318,1405311583,1364598359,1049479475,-986822855,1397195574,1542688744,1962934077,1048587895,1963018119,117321327,4016008,772305920,1200031430,1407314688,2134802478,175440711,73370414,-352274456,-2144432059,21462846,-2144459403,38242366,-1959917963,82511455,140479278,1199808814,1946157117,134164001,38242606,781195499,1199521408,772371716,-402235509,116064276,-2029599186,367525959,-2064950285,1595891289,509068123,-74755754,-1916193961,776432702,1199781573,-218699693,-49829,-2144451980,21464894,37567093,1026913280,141819904,-2029599186,-504692665,772276014,2131378051,-1590796521,-1993455741,1195835973,1049449303,-1175959700,-1041540110,-2029599186,-1175781305,526276959,509068127,-986820266,-1958247626,96939771,1195835400,-1409283911,175374396,1946220931,1236052485,-108793109,772175104,1200031430,526276864,509068127,773787222,1199650443,41913134,134596398,-1404614912,208928828,91503164,24395068,-252990294,-1017176226]},{"sector":7,"length":512,"data":[-1,13305856,251723990,19596567,17105205,18284872,18284823,22217043,18284823,18284823,21168407,1385176555,824202820,3158574,65538,16385,129024,65537,-351797248,1094795774,1094795585,1094795585,1094795585,1094795585,1094795585,1094795585,1094795585,1094795585,1094795585,1094795585,1094795585,1094795585,1094795585,1094795585,1094795585,1094795585,1094795585,1094795585,1094795585,1094795585,1094795585,1094795585,1094795585,0,0,0,65535,0,0,0,771751936,11280009,-1375302610,1347865344,1431786065,777192990,11280069,-1961734261,1200231511,646589954,-1002831861,213782391,-268199936,2143612931,-14742002,-352079836,516238858,1204224172,-1275068398,-1274877055,516238849,1200160940,520575747,1499094877,-976527784,-973034466,-352252345,-1407269406,306693888,1334575159,-1194005740,-773127424,250150706,-352161280,-1212748858,-1326191871,1002699016,1929395990,63081462,1057373121,-1947437312,1242467009,1944113920,-2147436541,-1031026549,3614455,1259,1347551248,-1101639341,-506396486,772573486,148679,1979648512,-1205957856,1552494080,1149840900,1418276358,1153904136,771751946,772570249,-351386484,1153904158,771751940,772177033,-1962392436,771799070,772430985,772555913,-1274129271,-1340145909,-169291520,1482381662,-338705574,-1869574141,20987292,-401733260,-13697040,1342223406]},{"sector":8,"length":512,"pattern":0,"data":[146035283,-1340145874,1522699008,1482408507,-1070341003,-878865997]},{"sector":9,"length":512,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-65481,485031935,857624576,785944256,-100373855,771777699,-1559991135,1478426726,1781464878,-970039292,-16725498,-1206482130,-359680,229903988,-1340145874,772453376,11542271,50017,0,0,0,0,0,0,0,0,0,0,0,1073872896,16777216,1,1130,0,-256,236847359,-855002081,-1178394847,-768409590,-1072958985,-397277836,-2141519887,45363394,-1933368883,-1945834994,-66786290,567095476,-291250042,33570052,4000370,1024160259,477234944,-384435782,645988652,-134283260,722630,1980155659,-972419818,605452294,11286213,773211274,377751040,-401189446,1959133072,540847122,154991476,742193012,132903796,-385800727,1017905396,1022718989,1022456842,1007514656,1007252489,1006990380,-1394117376,-596328438,-663483076,-730592708,-277602244,-344716996,-411816900,-948687044,2121412668,2054633788,50325582,-482443218,1853293316,-2144440716,33874750,-75296140,-2124451324,1937768699,512306777,2078999775,924748078,378220032,112198879,8452993,-92206987,577904640,-1057037359]},{"sector":10,"length":512,"data":[16841601,-92206987,309477376,-1057037359,33618817,-1057093516,67173249,-1574024843,992870474,1946171166,512306742,465174583,-20781034,803940843,1912798083,16482602,774141700,3620491,-271383119,-768359541,-770967561,-97844108,-1993416957,771767582,81987326,-1157680919,-1981278834,-373279746,-5242347,-452557266,1975519748,1161604330,1698432116,-970061451,318982,1023346921,1006924865,785413473,81659590,-17307391,-559931634,1975519748,55633925,-922874645,166200693,-402396412,41093148,1048621035,1962935524,29223171,-1190862943,-503905280,3618551,-1593819229,95486013,-768352045,3618551,24433163,82223936,989856261,1912618758,1023854377,855642112,33601746,3618551,24433163,82223936,989856261,1912618758,29353993,-384455494,1086259020,4169984,3802667,3935882,103542066,-85852094,82183723,1023410619,594677742,1023410875,460464092,1023411387,326254520,1023412411,192053104,1023414459,57868000,855646395,-1946945582,1944703432,-1056751359,855638789,926349266,1959922432,109527041,512098370,1951268921,958282252,999453952,1962951174,378124940,-1577231384,1592263903,379173629,-1577234456,1390936119,380549885,-1594014744,-466485191,-1157806872,904402636,4039165,-1157809944,703076078,-264339203,1198784516,50332088,50348550,-150673914,50345766,318865926,83985430,-763166705,1095936,-661917193,-634664308,21494657]},{"sector":11,"length":512,"data":[-930347661,-1912518907,-1946799168,342800894,111473660,1342708664,248192774,-1177406713,750714881,-402540800,-1086193531,-1070395282,-66977607,1858055155,112912,-133839066,1170614015,1726545666,-953794048,637534213,148934,4329099,1359733577,-402652743,1497497677,28964322,273596160,1107312872,82185867,-1089543351,-1185869714,786956289,-497466880,771862773,11280069,772622216,82316939,772689801,82448011,-955232375,73929287,-334591186,340756740,116943081,1381047895,-123475885,525949531,868419423,808234203,154931058,-1818752137,-150992198,-338164766,-2134683924,17096254,378212213,1169425510,-58693683,-336366462,-264339390,997523460,12064395,1962932867,-15879156,-1275023330,-1340145910,-247561472,125173508,83050115,-1340574465,-182023445,-249641980,126428676,38258470,-970551152,512754759,74061509,-12724084,990148095,-1207601982,567092505,-768359649,12173963,-1090056702,-400682898,-1021315024,-370606286,365738751,118377586,-1106219329,196673580,-1493959680,-947832203,-964624364,1639514132,1973875456,-465666005,611582468,-1391429186,3606075,2143165045,104574224,276103229,82052806,3653376,-1190102594,-1527578604,1172882424,197392891,1344501211,-1207545006,567096601,74063497,74188428,-1207669062,567092505,82314951,1527186654,1354979418,-851246920,1971338287,-1202518508,801981200,11542153,11667084,-128448677,-1017579069,1946148072]},{"sector":12,"length":512,"data":[351844870,-1275024663,-1340145912,1975520000,-2134641135,1589249652,9824533,-384512070,-1397096305,277781,-2065104013,81896192,81724985,-542964874,-552170748,-16141308,184594462,-1174047296,1709905246,12064393,11542155,11667086,11929228,83035788,82910857,-2146464986,292875257,1978333568,2005607997,1200498177,-337736957,2139170523,1972408322,2139104809,578129924,-1070335093,-173881974,132356,512350211,-970587980,-953751035,32178501,55413798,683280363,-96278507,1296417785,1482184781,118370392,-1089727810,-424083070,-1096486142,-1916858689,5355780,1740154099,-1088303819,-1229062134,571658,141862643,-401313606,-1007027704,-1266679623,-2140680896,175374588,-511509376,346077938,1186260459,-58693683,-2131266430,-311099140,863125564,509083832,275693319,1741551499,1962998912,-1381106472,41205771,-796133150,-1174643573,-2126381053,-1392246589,-1116355781,1975663533,-1259347272,-2140680895,-143359236,1962998912,-2113484888,-1996488703,-1274969058,-2140680894,-143359236,1962998912,-1161655408,-1073015601,1860764533,363641599,58055435,-134257431,1978663107,309519,507110355,74843359,81731209,81731211,79283083,-1444162816,208928783,79254339,-1981558016,1527045918,1741505460,1954741376,16548087,-58715276,-2146732922,108168700,-384455494,686423829,1712753151,-388287740,113769937,77595880,1945988584,-51910651,1048626169,1962935524,4170007,3614455]},{"sector":13,"length":512,"data":[-150732615,-553239567,-972721148,33874950,50168,1380974592,1712753454,-850938876,1961101927,-2097381352,1515908724,-58719568,-2146995060,41389564,-335999824,1482356739,1371734387,-146800455,-1947038735,1364416976,17155979,1238946048,-388906749,-388896559,-1023163508,25429547,79239282,-739276032,736822253,1912701998,16613638,-385649904,1532559558,-1957434061,-773944382,-654093845,-494808181,229711871,-770970669,-1958542988,-2082960437,125175033,1481239179,-1957641685,-1207671274,1481655296,-850242736,173759079,1131312612,1354825304,1499000290,-469086120,1460014452,526319243,-2079945170,-1912280319,-218004450,1978469285,1358452772,378220188,1219757158,-469080115,-58716044,-2131856254,108302076,212884058,1486734329,378220227,12059750,-850242748,173759079,1478260196,1961101904,-335596796,-1946799358,-341445683,-2097381192,-998014604,-2146899194,-764116228,-1341995901,-1544816382,512475186,-41877116,108204032,67173761,61867635,201376641,134268289,-611398261,860969821,16613833,-1962445248,1073790413,1397869867,1073789266,-372126165,41078075,-16069237,102631540,1610058582,737937183,-1260745751,378220100,1481639014,-850242736,173759079,-2146732828,-277576964,-117264296,1492648683,-998045837,-706086650,195425024,1511683309,1381188187,991953081,-1962772787,1979648717,-336186620,-335596618,1566268082,1978469208,11135235,1372140368,-1672457480,1712753454,-850873340]},{"sector":14,"length":512,"data":[1961101927,-2097381359,-58659212,1510438030,-116608934,1486684907,-2096860326,1354958020,378220114,1202979942,-469080115,-58713996,1525576834,-2147307430,125078780,2005793920,-116609022,1526203371,-2096860328,784532676,25431691,1912864829,268451081,-1070398349,61867755,201376129,460717834,12179854,1995520832,-164412925,-372126165,-851750317,-846527882,-1895886615,1073789377,57866555,725810995,-336997937,-1672415005,1712753454,-850873340,1961101927,-2097381359,-58659212,1510438030,-116608934,1486684907,1342177475,378220114,1169425510,-58693683,1525838978,50008,118358016,-1089506370,-424083070,-1096486142,-1916858468,5355780,1048683763,83887342,-1006236558,637578270,118507403,315426539,-523041103,-761014133,-31519218,-972754938,33874950,84175544,78708751,-896735021,-1185889789,-503906288,-1996389725,1476494358,81729163,-67058953,112265333,-1039932717,569049715,248649355,82722433,74646784,201386625,-1036316814,113707895,1256,-133895517,363641539,250972136,12843295,50331648,318865926,1359053846,-150990663,-16098831,520490100,-1064372341,-1510737269,-661732360,-152309109,1397774166,102650449,-2103369970,-2078897407,67120385,-1191126397,-235470832,-225716082,-947650933,6273344,67063,100078708,158597122,16940419,629343093,180847613,520611554,1482381658,1388535391,1917078849,543520361,1629516649,1634890784,1634559332,1864395634]},{"sector":15,"length":512,"pattern":0,"data":[1766662246,1936683619,544499311,1886547779,1952543343,778989417,1936287828,1869770784,1835102823,544434464,543516788,1886351984,2037674597,543584032,1919117645,1718580079,1866670196,1919905906,1869182049,1397567086,1296126509,1447645764,2117,0,0,418709504]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1145913682,1702259058,2017796154,1684955504,1293968485,1919905125,1632444537,1701273966,1869488242,1919950964,1852142437,604638580,1145913682,1702259058,2017796154,1684955504,1293968485,1919905125,1951604857,1937077345,1869116192,1696625527,1919906418,1378093581,1917078849,979727977,544165408,1702131813,1684366446,1835363616,544830063,1767994977,1818386796,604638565,1145913682,1702259058,2017796154,1684956532,1293968485,1919905125,1632444537,1701273966,1869488242,1919950964,1852142437,604638580,1145913682,1702259058,1631723578,2017796196,1684956532,1293968485,1919905125,1632444537,1701273966,1868767346,1869771886,1751326828,225339745,1095902218,1769096269,540697974,1869771333,1852383346,1954047264,1701080677,1701650532,2037542765,1819042080,1952539503,225341289,1095902218,1769096269,540697974,1635151433,543451500,1634886000,1702126957,604638578,1145913682,1702259058,1850286138,1717990771,1701405545,1830843502,1919905125,604638585,1145913682,1702259058,793321530,1919230031,544370546,1701012321,1852404595,1919164519,543520361,1869440365,168655218,1296126500,1986622020]},{"sector":3,"length":512,"pattern":0,"data":[1226848869,1919902574,1952671090,1397703712,1919252000,1852795251,1378093581,1917078849,979727977,1668172064,1634757999,1818388852,1634738277,1701667186,1936876916,1702043706,1919906915,2053731104,1684086885,1953723754,168649829,1292504356,1869767529,1952870259,1296126496,1986622020,1702240357,1869181810,775102574,1981822768,1970565737,1679846497,543912809,168639041,538976292,1936278560,1769152619,540697978,168651556,538976288,1952671059,1931506287,979729001,1646273568,1936028793,538970637,1816207392,1633906540,1852795252,1768846624,606091892,1667592992,1936879476,538970637,1766072352,1952671090,544830063,1920233061,980641129,168633376,36]},{"sector":4,"length":512,"pattern":0,"data":[20077133,40,165871648,118358015,128,79429648,30,1]},{"sector":5,"length":512,"data":[0,0,0,0,-1192457387,-1108869118,971527740,-28915944,636157953,-771858805,108432355,1756901631,2078822432,79987524,1342197944,1344301240,-2092667416,1191118020,71732222,2130593337,543733971,471001168,-402471805,113705326,268445352,1343226040,-2095976216,144900804,539943,-1834938251,648586022,299624528,-1560099709,1048782600,1946167048,1354771223,1342177720,-2095560984,146277572,-85438464,46433045,-1557753695,78718744,648554195,648560259,-955878144,-14243834,2017362943,1383333922,-1202667477,-397410298,-998041585,168216324,-1207171033,-1202706800,-397400310,-998029776,647799044,-1560280795,-1073010936,1048585333,1962944144,168216349,-1207893977,-1202706800,-397400310,-998029816,647799044,-1560280795,1756899080,1756909601,1558728736,79987459,655898367,-2096010008,144769732,1958742823,146734,54336372,1027240960,1047789573,1946160957,112706,357296208,-352140157,467974158,505936,394127440,-2096839549,2255934,1048785780,1962943086,1354771235,-352320072,467974202,571472,-457647381,163074075,-1194202368,-1202709532,-924123126,1344433848,-352317000,1849590550,141885474,-1202667477,132841476,1344433848,1342181560,-2095634712,-2115500860,137821980,349693991,1577239683,-1017256565,-1192457387,31981590,1187468859,-956301060,126022,16664263,-163133696,1340669952,-96024830,-1866989568,179851302,-118992857,79987509]},{"sector":6,"length":512,"data":[646987395,-385649664,-256376413,-1777977050,-2092141274,1962999422,653566278,653661835,-1980873079,283897942,-1963172213,-2021070266,1191125032,-297336836,653156036,1183319946,1975519978,1354771427,1344201912,-2092785176,1187448004,-956300802,64582,-1207840279,104408816,1265968790,16678531,-190757516,-166294746,-297367258,-336570743,-60912880,-1997912438,-14686073,1191181382,-295779090,-2012771802,-1073026490,-1070865547,518305872,1112336464,-955988861,128582,-16678423,-1591275002,104408728,309536530,-1946526069,-1977150922,-1568176124,-96010469,922739179,1183655674,401101042,79987522,-1728887158,1946177597,-385647013,1060962476,1025143808,1014235201,1342180280,1343988408,1342183096,-2095419928,669583044,-129579263,-1070923476,-126419120,-2095724824,1191118020,-125926920,-360840907,723195880,1860718784,46433043,577519235,-943885056,19033094,15788288,577912451,-944933632,19034630,14739712,578043523,-945982208,19035142,13691136,577781379,-947030784,19034118,12642560,578174595,-385649664,113770362,74358,-2097107479,2259006,1743324020,2013710335,-385875678,1379729562,1035301888,-1066139565,1946178877,5717451,1206507892,-1874951169,2004156198,1586173163,305564666,-2012968409,-14982521,117439046,-1734269166,302397734,-1578929625,20784784,1024553984,846462978,1946157885,605475,1156255860,1342180280,1343972024,-385870408,196673285,1656246272]},{"sector":7,"length":512,"data":[196628507,-17307392,1342180280,-384081224,-1070858519,243792,348252240,-1207647101,-397410293,-998043019,-955913470,60486,-1557752671,-1734269170,655532838,15498883,-1461124236,1816036349,125042722,577781379,-2096204544,2255934,1048780404,1946165878,1354771223,1342177976,-2095811864,196609220,652759040,46433042,1575324510,-326412861,-399512904,-950650800,130630,-786659641,-2033778688,119064,-786790713,683147264,1996443680,1078519812,-16464765,-2037578634,-397357032,-998031302,74907396,1344005304,-2092945944,1586169028,25133060,-952011718,2558470,647018521,655013968,1110632528,-2096839549,2558014,1586177653,647012356,126370052,-972792181,-1959132857,1204159582,-2037579774,-11481064,-1545075594,79987519,-1207666945,-397403164,-998031402,73304836,1543667584,-1259797643,1086556928,-2037559232,-397357032,-998031430,411471108,1183535312,197892,1068034128,-1962621821,1204159582,113728514,1191192330,84166283,312672259,73304871,764938122,279117888,647018535,655013968,1100671056,-1593523069,19211932,654877440,108314635,-1557753695,1048782600,1962944264,6076488,74907472,-2093836056,-2037840700,-1072967658,2092434805,-15275230,-1712847754,46433087,1208239619,-803830213,2125991284,1996443682,1055188996,-1929067389,1355815046,-402360577,-998031658,367650820,187107491,-971737920,18440198,-1558826264,-1070914950,374007888,-402471805,-974645356]},{"sector":8,"length":512,"data":[408021015,-1207666945,-397403164,-998031646,1354771204,-150988616,-1949230426,511872496,1996443857,248899588,-1559837565,-35051768,138314496,913637415,-786790657,-786645373,-955485184,13703814,478594816,-1207959343,-1493762024,-259272422,-786529651,259188816,-1560099709,-1098832120,16765210,1048822642,1964123912,134661923,-956301273,13703302,448692992,91554257,518457030,448692993,74842577,-786788609,16678531,1048788340,1962944264,-28915914,-1098711040,1962987802,178193,74907472,1342182072,-2095664664,1048774340,1962944264,74907410,-2097123608,1996423876,19851270,-2096970621,2558014,1048785781,1962943084,448200468,512134609,1996443857,74907398,-352041240,448200466,512134609,1996443857,74907398,-2096782872,144902340,445040423,-956301103,30481542,138314496,108265511,-786921785,-1098711040,1946210584,-13702909,1575324510,-326412861,-402651976,1448555920,16664263,74907392,-2093089816,-1991769404,451673158,-1946394997,947913846,185365852,-955746853,130630,-243969,2122579022,997982460,16678531,1988834677,74843132,1949973632,1547468842,2122566261,-999030532,-1560329078,76161640,-1205704286,-1202716580,-397401496,-998035108,1958742788,-2085295170,2130771070,-62470389,1586167808,509444,66877067,1149895798,577282815,1772225674,6076450,577288272,824633424,184861827,-1962183232,2123103326,976846852,1988823669,73305084,82118]},{"sector":9,"length":512,"data":[-443850914,-1957313699,16955628,1446299624,1344268472,-402360577,-998032170,73304836,1962950528,168216371,-1206321113,-1202706800,-397400310,-998031652,138314500,410320935,-1610326389,1090791056,1586169736,21480964,73304890,149446,-1207666945,-397403164,-998032242,74907396,-2093161496,37552836,-1957661440,2139096158,1198864897,654851715,-968854272,-950271417,2558470,71732039,-1560280315,1586177810,-1744336380,-1560264659,-1866979568,179851302,1709723687,79987518,623287457,144900097,1958742823,647012614,-14219101,-2037578634,-397345024,-998032350,74907396,1344005304,-2093214232,1586169028,25133060,-952011718,2558470,647018521,655013968,1041950800,-2096839549,2558014,1586177653,647012356,126370052,-972792181,-1959132857,1204159582,-2037579774,-11469056,-1947728778,79987515,-1207666945,-397403164,-998032450,73304836,1543667584,-924253323,1086556928,-2037559232,-397345024,-998032478,8817924,1183535359,197892,999352400,-1962621821,1204159582,113728514,1191192330,84166283,312672259,73304871,764938122,279117888,647018535,655013968,1031989328,-1593523069,19211932,654877440,108314635,-1557753695,1048782600,1962944264,6076508,74907472,-2094104344,-2037840700,-1072955650,-2135423627,-15275230,-2115500938,46433083,1208239619,-16873925,-2101867148,1996443682,986507268,-2147171197,788463806,-2037576332,-11469056,-1209531274,-1928598726,1358889094]},{"sector":10,"length":512,"data":[-402360577,-998047646,74907396,1344005304,-2093294104,1996424388,993191940,-1962752893,73305072,-1560395638,-397204888,-998032608,-1947170046,1082786910,577348351,1342201016,1344432312,-2094087192,1765606596,-2095811550,2558014,-2068312715,1996443682,978380804,1577370755,-1017256565,-1192457387,1709703178,1183536690,-96040698,986900560,50513027,1183447622,-1955206152,1065417310,-2143849170,1965949311,74907435,-2093304856,-259325244,-972792181,-1207894208,-11534244,-2031614858,79987501,1204213899,1182990337,1022034938,49956483,783824619,1996443648,775612666,-1996176253,-1072955834,1183516277,-28931592,738084491,1183447622,1996443900,74907642,-2093320216,1183516356,-96075268,972572299,-2089616826,1342201016,-402360577,-998036183,-163149564,91602955,-350058824,74907413,-2093339672,1174602436,1178290180,-1207077642,-11525496,2011694198,79987513,1575324510,-326412861,-402547528,-1202310772,-1924136832,1358915718,-2096405016,1996424388,1686539526,-1947709186,79987513,1344441016,-26966387,960292944,-1207647101,-1924136944,-1924077498,1358849158,-2096531736,-253163836,-398002688,-2089782256,2256958,2122344820,1668558577,-1928956161,1358849158,-2093398552,1183646916,-2037559055,-397345180,-998033162,579778564,1686539600,-404205314,79987512,-16091393,-2037577610,-11469212,1692927094,147096575,-10058103,-1928956161,1358849158,-2093415960,-1866988348,-2037559262,-397345180,-998033230]},{"sector":11,"length":512,"data":[-9835772,1183648374,1996443880,25225224,-1996045181,201286790,-162431808,1964042310,1983808331,510918690,-150988616,-1946196818,141951984,971720331,812778308,1183516789,21248489,414721654,1689188096,66096127,1962870902,24444675,1357399693,-16353537,-1880619914,180650753,-10058103,-10043773,-1928432384,-397350842,-998045352,1720092930,1723761663,57999615,-1191247127,-1924136832,1358915718,-2096468760,-1098709820,1964179302,1720108806,-1962934017,1593796230,-1017256565,-1192457387,501743902,-28915920,1048576000,1946164967,172949251,16402119,-955716864,65094,-1946532097,1178143302,-385648902,2122514599,57934078,-1207918871,1861681176,138806266,-244087,-2037578122,-397345054,-998033426,-62485756,1342179589,-18708851,933029968,-1207647101,-1924136944,-1924079034,1358881414,-2096638232,1183385284,1195518,1586170229,159351036,-1961200384,1178143302,-1953729030,2139159646,-2089549815,318668419,2062091124,1379827967,292814873,299952211,-1996307325,-1072955834,1743324021,-60912641,-16549889,-11337353,1996424822,7661572,-1995783037,1273626182,-28931073,-1017256565,-1192457387,1038614532,-415334353,57933854,-955756801,64582,1182992363,1191122948,138841084,2013021753,105286452,1342179589,84166283,-397410295,-998046646,1958742788,1379827929,276037657,-402229505,-998043294,-28931838,-1032536053,-335788405,-18429,-1017256565,-1192457387,-639106526,74907438]},{"sector":12,"length":512,"data":[-16873843,921233488,-1962621821,151324742,-2037559296,-397345026,-998033770,108461828,-34175347,919136336,-1962621821,151324742,-2037559296,-397345290,-998033802,-158954236,-2037559043,-397345026,-998033704,-91846396,1975520254,-24736444,213405950,2095599616,79987466,-17135989,-2147244567,2025022,1048784500,1946165868,-158954230,347623677,-1928795392,1358820998,1342182328,-2096476440,-236452668,-91846391,1916699646,-881524702,518391494,-88177919,91554558,1609154603,1816036099,309592098,-34175347,1030224,169470032,-385563517,-2037579508,-1202651658,-397410290,-998045177,1354771204,-16873843,833284176,-1996176253,738063494,-2037559104,-397345290,-998035048,-28931836,-34292093,-385649153,-12779331,-385649153,-1224802123,166264308,46433079,-17398135,-17262967,-385976577,-998033672,-528054014,-493450755,-158954755,1076730109,-226064128,-360280579,-1224781571,-1545011726,79987512,-11485141,1358818998,-34556161,-323551408,951642365,-1276620718,-460945096,-426341891,-158954499,-124351490,-528077826,-493478915,-426361859,2134932733,-460965114,-1925679363,1358820998,1344070840,-2093655576,-457702204,230182940,954748928,79987465,577177286,-189333759,809560317,-16595837,938016374,46433072,-71191,-386009930,-998035414,-25755902,-2093997592,-2037579068,-397345026,-998046886,-91846398,1958743038,-24736497,-457682690,-68661221,-26613452,-1993961311,-2080511866]},{"sector":13,"length":512,"data":[2255934,113732981,9998,-1924087765,1358820998,-2096846616,-2037840700,-1072955654,-2037572492,-1202651658,-397403164,-998034238,-390660348,72083709,-385694589,1586232870,647274504,1048774536,1946165876,-1809416187,1586232870,647274504,393479992,1342177720,-34175347,72869968,-1996176253,201259654,-1196460608,-1924071425,1358820998,-2096994840,-2037840700,-2037514502,-1202651658,-397402652,-998034338,-88177916,-2039152386,-1993961311,-1577124730,-2037832024,-2115371554,-88177920,57934078,-16743447,738057910,922702016,-1224792296,-1507864,147096322,-17135991,1517666315,-1993961311,1358814854,-11485141,-14215114,-385942346,-998046928,-91846392,-499220226,913571867,1344136376,1344070840,-2093748760,-1224801084,1994981116,46433027,1344136376,-2096990744,-457702716,230182940,-1192734720,79987463,-17135929,-1465778177,-561628890,-385649155,-1098645645,1962999546,168216381,-1957232345,-1543570298,1183524620,655270666,-1559476597,-1866979568,179851302,-1377284057,79987509,647759606,-1593478143,116074128,623287457,-2037841919,-1098645766,1962999546,-55115922,49801470,-1996307325,201259654,-1928235840,1358820998,1344005304,-2093789720,1273693380,-1979162997,1008739335,-2147257312,1586176007,-1744336376,-2094592349,2255934,28840821,-2037559296,-397345290,-998046995,-91846396,-88177666,259260670,-34175347,467974224,855959632,-16464765,-2145227258,1827390,887686005,-91830274]},{"sector":14,"length":512,"data":[-973078274,1827334,577177286,-31332095,-1017256565,-1192457387,-1175977980,1586189866,-2012771836,-1073021370,1586175348,-2012771834,-1073021882,1178079604,721712382,-15209536,1191117894,-1948783866,1988822110,939821574,-1192725241,-1956773887,1438866917,45673611,712173568,-1560000885,113714956,1207969546,1344704696,1344735928,-2093705240,116786372,1946232476,647012613,-1667168533,75046,-1946270071,1438866917,45673611,708241408,-1560000885,113714944,1224746762,1344733368,1344704696,1344735928,-2093703192,116786884,1946232476,647012613,-1667168533,75046,738084489,-457682752,333991966,-28931278,-1017256565,-1192457387,-370671614,168216361,-949223385,-2128147450,235325216,-956301273,304549894,105286400,-1960373085,312673350,647018535,655013968,871819344,-167459709,19307526,-1868495500,-1593382106,19211932,-28931840,-1017256565,-1192457387,-1779957758,168216361,-949223385,-2144924666,235325216,-956301273,19337222,71731969,-953740637,-14216186,647018751,655013968,866314320,-167459709,19307526,-1868495500,-1593382106,19211932,-28931840,-1017256565,-1192457387,1105723394,168216361,-1958674393,279118918,647018535,655013968,862382160,-167459709,19307526,-1868495500,-1593382106,19211932,-28931840,-1017256565,-1192457387,99090434,168216361,-1958805465,212010054,105286439,-1960376669,279119942,172395303,-1205399901,-1202706688,-1202706800,-397400310,-998034596]},{"sector":15,"length":512,"data":[-1677265402,91488550,-349794143,647799046,-1996488411,-443810234,-1957313699,309484,-953633816,2558470,71732032,-1960375133,111347270,138840871,-1960374109,245566022,-62486233,1344733368,1344704696,1344735928,-2093807640,116786884,1946232476,647012613,-1667168533,75046,201213577,-1592953408,1178150544,-972720900,18604550,-1946270069,1438866917,45673611,675997696,654968519,1183530496,655139588,1344704696,1344735928,-2093846552,116786372,1946232476,647012613,-1667168533,75046,-1946270071,1438866917,45673611,672065536,-1274657142,655008579,-1560000885,-1866979568,179851302,837308455,79987506,647759606,-1593478143,116074128,623287457,1183383553,1575324670,-326412861,-402651976,-950655024,2558470,138840910,-1960374621,279118918,647018535,655013968,837740624,-167459709,19307526,-1868495500,-1593382106,19211932,-28931840,57982987,-1207924759,-11534187,-400213706,-998047235,106859268,-1766324344,922701824,350758201,79987458,-1996071285,-1732771513,922701824,15213881,79987458,-1996071285,-1699216569,922701824,367535417,79987458,-1996071285,1468597575,-62470393,1183514624,10356220,959905616,27519013,-1962621821,1586232438,155224070,-2080618753,1913650302,1354771421,1344201912,-2094061080,1183515844,-443851010,-1957313699,309484,1445395432,654968519,-1866969344,179851302,635981863,79987505,647759606,-1593478143,116074128,623287457]}]],[[{"sector":1,"length":512,"data":[1183383553,1958743038,8907011,1342215608,624506623,-2097072920,1586169028,-1207465980,-11534186,-400213706,-998047413,73304836,-1207875703,-11534184,-400213706,-998047433,73304836,-1207744631,-11534182,-400213706,-998047412,73304836,-1996142711,1187448663,-1962934020,-1643774906,922701824,-622320327,79987456,-1946388853,1082655838,-62456055,268205699,-1070867086,518305872,778102864,-1962621821,-1956708794,1438866917,-1070338933,-2144979992,2254654,1187448180,-16775164,1340605558,46433061,-1017266133,-1192457387,300417026,1187468838,-352321282,-28931300,1342210053,624506623,-2097123096,1586169028,74877950,1191116936,105286654,1929266745,1354771420,1344201912,-2094139928,-1956772668,1438866917,45673611,634054656,-28915882,501940224,-1946263925,9045110,-1014280040,1342210053,624506623,-2097110808,1191118532,105286654,1929266745,1354771419,1344201912,-2094158360,-1956772668,1438866917,79228043,629336064,-1996208501,1183579718,-62486266,-1202667477,-397402396,1589915014,126494460,1575324568,-326412861,-402651976,1183524184,-28931836,-1996077429,-1070859194,518305872,761063504,654073540,-443873397,-1957313699,309484,-1960497176,1183384646,105286654,737953417,-457682752,870862878,-60898259,638028582,-1962780789,1438866917,79228043,620947456,-1996208501,1183579718,-62486266,-1963172156,-2010773434,1354771207,1344201912,-1959985688,1438866917,79228043,618063872]},{"sector":2,"length":512,"data":[-1996208501,1183579718,-62486266,-1946394940,-1993996218,1354771207,1344201912,-1959996952,1438866917,79228043,615180288,-1996208501,1183579718,-62486266,-1946394940,1451952198,126428682,39291174,-1202667477,-397402396,-443863906,-1070349475,-1205568536,-1202706800,-397400310,-998041793,-1677265404,359924006,1344704696,397797456,-1207647101,-397410303,-997982695,-1957313790,178412,-1591457816,279127696,168216359,-1201331417,-1202706800,-397400310,-998035860,-1677265404,125108518,646987395,-972589567,18802182,113645803,-2097144090,2527294,1187448693,-352320770,-28915963,1183514625,1575324670,-326412861,-402647368,1183523824,77060,1979716925,21620995,781434883,442017791,15746758,150881991,-330905856,1187446785,-956301078,192070,-972984855,-956239802,785990,49039047,-958141696,-956239802,196166,-1292601,-959190272,-956239802,261702,-1292601,-364460288,1187446784,-385875474,1187381554,1187447024,-352320258,-263797021,-28915968,-924123115,15746758,50218695,-330905856,1187446785,-352321046,-263797043,-28915968,-370475005,15746758,100550343,-958469376,-956239802,1048134,32261831,-364460288,1726545921,-263796993,-28915968,1187446794,-352320788,-263797016,-28915968,1187446795,-352256020,-263797032,-28915968,-286588916,15746758,234768071,-330905856,-1830092545,15746758,251545287,-957420800,-956239802,1048134,1187439595,1187447024]},{"sector":3,"length":512,"data":[-352317186,-263797032,-28915968,-840237039,-1041217850,385763015,-962073856,-943591354,1572422,1187421419,1187447024,-352321026,-263797119,-28915968,1978204163,75399679,1081868588,889486977,-969310463,-1962872762,1183384646,-18290178,420944124,423041319,425531730,427628904,429070728,431561129,433330633,435100132,436541946,437983760,439425574,755254923,356319233,-385649152,-1073545054,-1476448621,1183521620,655008766,-1544665461,1183524620,655270890,-1561311606,1183459088,655467244,1344704696,1344735928,-2095748376,-1209465660,105286400,-1930148215,1187444318,1187384306,1187381491,1187381496,1187385593,1187381498,1187381755,1183523068,655008766,-1544665461,1183655692,655533042,1183556843,-196703994,-956932468,-972295610,-973016250,-972949434,-341706426,105286597,-1930148215,1187444318,1187384306,1187381491,-1427439112,738492033,-2130019327,20251774,1441334143,49735935,1342177720,-2080682776,753599172,446306970,446306970,446306970,449387209,449387209,449387209,454892233,453122845,454892290,454892317,449387209,-1202667477,-397402396,-998037146,-1677265404,829686054,655099591,113704962,9998,655361734,285656576,-1866989273,179851302,2028490791,79987476,-1207794712,-397410303,-997983527,1575324418,-326412861,-402652488,1187455236,-956301058,2558470,647018679,655013968,3127376,699721808,-2147040125,2527294,113714292,-1224595702,1344704696]},{"sector":4,"length":512,"data":[1344735928,1342189496,-2094426648,1048774340,1979655824,-28915963,1183514625,1575324670,-390057021,113713328,-1224333558,1344704696,1344735928,1342189496,-2094438936,-1834940732,-1957313754,-390056980,113713292,-1224268022,-1560000885,-1866979572,179851302,800608295,1005080576,113541929,-1957313699,-390056980,113713252,647898794,648808134,-1643723264,113639718,-956160353,-1339645946,-1576614106,-970540762,19309574,648349383,113649362,-956291417,2535430,-1308178686,-956301018,-265899002,-1241069786,-971415770,2537478,649660103,113705473,75451,649922247,113714928,425666239,650184390,-771307776,-956301018,2544646,-704198912,-953747418,1596381190,-637090279,-1799878874,-608677854,-337096666,79987495,1344444344,1344724664,-2094555672,-1699216188,-508014558,-1880600538,79987495,1344445880,1344726200,-2094562840,-1598552892,-407351262,1944604710,79987495,1344447416,1344727736,-2094570008,-1497889596,-306687966,1474842662,79987495,-1560000885,113714962,9998,655623879,-1017305430,871140181,526313664,-16353537,1558709366,79987707,-16730136,250087542,46433273,-1070349475,-1205911576,-397400320,-998036936,168216322,-953867481,-869855226,654483743,-1205401949,-1202706688,-1202706800,-397400310,-998037096,-1070349562,-954266648,606538246,654358581,647018576,655013968,695920720,-1593391997,-1029495150,-1006188762,-1593835482,-995940608,1354771238,1344201912,-2094599704]},{"sector":5,"length":512,"data":[12059844,-840413145,46433065,654968519,113714468,530851600,-1557724511,12068614,-1866969049,179851302,770199591,113541929,-1202667477,-397402396,-998037834,-1070349564,-2145479704,1663038,922684020,-236445062,46433277,-326412861,-402649928,-950657416,19335686,654358556,647018576,655013968,3127376,671541328,-2146909053,-14249922,-1444347020,1376175616,-1801387751,424977190,-1574530400,1183652179,971526392,46433065,-150991688,1344705574,1343050424,-100609,-14247882,-400095690,-998037250,-163133686,1542127616,-150991688,-259262866,-1963696501,-1962061184,899272,-1946784009,1384679664,-196673792,217349763,213393789,-160499968,1586229387,1387823348,-931848179,-150991432,-259262866,5406918,-1193874688,1861681165,-2133292042,16801727,-654852069,-1577695489,1178147156,-955812874,62534,-1070876949,518305872,632875088,1577370755,-1017256565,-1192457387,-1914175484,-28915939,1187446784,-352321284,-25263325,-1205504768,1861681165,5375484,71732048,1342179589,-2081249816,1183384772,-62455810,957961377,-713884602,941183904,74841670,65781803,-1962933832,-1866244635,0,0,0,0,-1205972836,-661781364,774292129,-1591762781,-1557256508,1478434722,-1608581330,2080521247,1275181062,-822081560,-397671496,508559360,76331014,-1064380274,134111208,567105567,1397760205,861341266,868323017,305051903,801964210,-1173976010,1049179682]},{"sector":6,"length":512,"data":[783819448,-855461358,109852207,-1992940862,-1205682114,78778926,-1942605875,908251654,584072841,-1307431240,909102342,582354572,-1270970058,796564002,-1942618112,908243462,581975689,-838431690,1049179682,-1684397364,905969711,583403148,-1002534602,305051682,801966258,-637105098,1049179682,-952753448,220392198,113653258,908337972,586155719,-952762368,170062342,794139136,-1942618112,908254726,584859273,-402646552,1139277872,1390956800,1493725696,1532626783,-2096829608,-872870716,-1205971376,567108352,1914636062,914961930,-1942609180,1579345414,12108632,47940,567136819,-2147359104,28836302,-1021194940,-1153171272,-768409599,-830463539,1140963329,-1262280243,1025625392,58004998,1025043448,91422722,-335544389,178947,-1191181896,11665408,-1007026250,1431766608,2177690,-2146536960,1962475518,-350288380,-1960901118,123690487,1398197080,-919341517,1979711104,-1127991799,-1014226212,-956946197,906589186,583056580,451658636,1912607549,2571534,-1003091593,-1943876420,906488771,582008004,-75250804,-2145946113,58064894,906882041,-1205669725,29229055,-118082816,-75297557,-402426880,-964493228,108197892,41273611,-2137220373,695534078,105993554,12079191,1009765637,158685439,45668491,-349188859,91486465,-346486945,113541894,1560284392,-821957798,-268274,1472945755,-18096,-1359822798,1481232887,-75250849,908162305,584597123,1025078527,225837055]},{"sector":7,"length":512,"data":[-257870256,520042018,-346545448,520041989,451617496,-25114317,637957375,-352105078,892872201,-1977219979,-947715251,729020676,1959332856,-98279,992347508,637790981,41223483,1950943723,80184069,1928979435,-98294,637564408,1912765699,653079046,910626186,585762502,1397801728,106386769,921275218,585637513,-315193290,557488674,-922025984,-318037132,803734901,-402396416,259129794,17819738,-771072249,1676149620,-2096829690,-336001340,1516177156,1560834809,-998024359,-2096829694,-872871740,911364944,585637515,1979710339,2942981,2011694059,-1274055936,47961,-466476595,-116996989,-75296533,990606591,-402164543,-998047568,57866502,-1017619622,-2095118818,460653049,-1977220428,522308885,-1310145910,520494592,-1977219213,567083349,-1274024968,1959332610,361375241,1229398477,536408949,105928643,519736147,-1327920377,-1359807462,-651492491,1540066123,-1017161721,-921976781,102649716,-1958693857,33129431,567093365,-1977200609,5957637,520494680,-1258813837,567099968,1031808668,-1962773222,-821957695,-268274,1364531947,-1946179864,567106025,199950963,125093947,1979246651,1572965122,666419999,310016,-2134703691,292880382,1971373814,-1928913396,-1188893890,-1572862,1460061182,-465648586,1962871586,1032005143,276101120,1912945190,1161438727,-117344511,-370456761,918751071,586024591,-1835803853,-231278794,-147418334,-2094861770,91621882,-348667264]},{"sector":8,"length":512,"data":[818053123,-1073004206,-620034955,-108839820,-2146536189,1965820540,922695174,-348052741,133792548,2088767093,108342282,-80281802,300630306,1963719043,175931404,906392876,586888959,-768371903,-768367893,-13189069,-1021120970,-921972173,632562036,942014640,638219557,1946248504,1975794180,92939790,1946110952,1111967489,1457747273,-317994361,911029620,586169987,-1976797952,805570116,21314086,535495285,74788924,74764811,-404016125,-314671050,141950754,1229537858,65752911,1476394938,-1509077,1935237117,9365763,-2134209711,1946158716,1959332621,1195985158,1577184071,-922021653,-346160267,-425207,-919403915,1718943499,1359370069,-2093561549,2289726,1156987765,141889287,-402490172,686489959,218580214,1156975732,108269063,201802998,2093222005,24504322,1156976363,91556615,-352175384,50980867,-352298776,2287619,123275122,-346137249,180650756,1048786681,1962943216,-385650171,-952697086,2289670,-768359680,586195254,-234436810,-402650590,911801977,586450824,1090224963,-655883403,1976172032,168671469,-192444106,-398245086,868417735,108822747,907244800,586450887,1128475936,-192428490,-398254046,861733035,919745499,585764488,973685898,706705089,-152007999,1954547524,172263957,-192444362,-75283678,-402426560,-822214529,2088823669,225705992,1929923640,139209224,1284166026,1959332616,121959973,-166955761,1947207492,92939782,1476520775]},{"sector":9,"length":512,"data":[-192444362,-75283678,-402426560,-906100669,1157028725,427130887,359986698,906642570,586450824,1090224963,619185013,1976499712,121960171,-167217905,1947207492,168684290,906589394,586024591,-143275266,1426064104,1460031939,-880081122,1049484083,1541939956,1594192636,82532615,-116996989,1156996547,309669895,1342540326,-45946815,-1977219469,-128974523,-1977217557,1958742533,-348043516,1442393077,-768385597,-952713165,270725638,-153406720,1965033284,92939814,218580214,-2136469899,608371572,113718911,664306,235357430,-952760459,170062342,-161944832,1963984708,93005352,218580214,-990506891,1124365440,914351232,586286791,1156972554,125111815,-234436810,-352318942,93005354,39160614,218580214,-956952459,1124365440,914351744,586286791,1156972554,125111815,-234436810,-167769566,1950353220,-1269673942,-1916784072,-853347306,906392353,586876614,172263980,1482356875,738870470,-1946381080,172263623,-393214741,-619971447,-768408204,1431449010,-952738365,170062342,8185856,-1070345677,-197229770,544538658,-402618392,-13238122,1092812598,1149943859,8972293,-13172938,1149911330,8185860,-197229770,544538914,-402628632,-13238162,1092812598,1149943859,6350852,-13172938,1149911330,5564421,-197229770,510984738,-402307958,-13238202,1092812598,-402373494,-13238214,1092812598,-402645016,-1017839570,11548852,586421901,225649101,-200882378,905969698]},{"sector":10,"length":512,"data":[587138758,1150010157,121959938,1023964432,58064995,-1023384648,-200896714,243807778,-1092082966,976636411,1965222414,3192837,910246224,586430207,-952738365,170062342,8382464,17253622,-2143937164,2295102,1149900149,2081176578,2115451908,1348579334,-1341854911,859918448,-153996352,1948256068,88377868,905997544,587020031,121960001,-167348960,1947207492,71600652,905991400,587282175,54823489,905988328,587282175,38046273,17253622,-2143939468,2295102,222039157,204210812,41222204,585632944,-1262266885,-1929334728,-853347306,907244321,587531975,-969539583,975372550,-49887690,918760994,586417807,-368146378,-84678622,238696009,91562730,1342189752,-13221567,-1021119434,-2145496495,142000378,254067338,48958644,520544906,567138187,184188959,-401443592,192150168,-494221174,-511041075,-1274876936,1510240768,-2096829607,-1007090492,404096767,6291457,7602178,8847363,10027012,11010059,13107212,14549005,15400974,16056335,17367056,18481169,19791893,21757974,22806551,23593260,24641837,34210094,38207791,45351216,53805361,62128434,69206323,80937268,85786933,1668172055,1701999215,1142977635,1981829967,1769173605,168652399,1970230038,543515506,1752457584,1902473760,1701996917,352980324,1867385357,1818846752,1914729317,1634496613,224683363,168628746,1713401678,1936026729,1684300064,168649829,1818838563]},{"sector":11,"length":512,"data":[1633886309,1953459822,543515168,1768976227,1864393829,544175214,1702065257,168650348,1936607513,1768318581,1852139875,1768169588,1931504499,1701011824,219154957,1885688330,1768120684,622880622,218762545,1681984013,1735289188,221324576,168630026,1713385765,677735529,1914710387,1634496613,224683363,168629258,1713385765,677735529,1629497715,1684366436,219613709,544165386,1701603686,1868963955,543452789,824516653,1344342541,1936942450,2037276960,2036689696,544175136,1953394531,1702194793,773860896,168635936,1376390419,1634496613,622880099,673201969,692989785,1091177743,622879844,673201969,692989785,1885688339,1701011820,1768300659,779314540,168626701,1346720405,1162035532,1919179552,828733033,1885035834,828929121,1818846813,1835101797,1683693669,1702259058,1532836402,1752457584,1528847666,542982447,1565536091,1378835232,794501213,168648023,1280329042,541410113,1769104475,976315766,1634753373,1563519092,1701603686,1701667182,1919179552,845510249,1885035834,845706337,794501213,1528847696,542986799,1565732699,1462721312,794501213,168648021,541067789,1919179552,828733033,1885035834,828929121,1818846813,1835101797,1884495973,1718182757,544433513,543516788,1920298867,1713399139,543517801,1713402479,1936026729,1879706926,1683693600,1702259058,1532836402,1752457584,538991922,538976288,1394614304,1768121712,1936025958,1701344288,1919509536,1869898597]},{"sector":12,"length":512,"data":[1998616946,1701995880,1818846752,1629516645,1948280178,1700929647,538970637,538976288,538976288,538976288,538976288,538976288,538976288,1885696544,1701011820,168636004,790634628,538976321,538976288,538976288,538976288,538976288,538976288,1935959105,2003136032,1818846752,1948283749,1701060719,1852404851,1869182049,1768169582,1952671090,779711087,1851867936,225734510,538976266,538976288,538976288,538976288,538976288,538976288,538976288,543519605,1752459639,542322464,790655599,2004033621,1751348329,221148005,539001354,538988591,538976288,538976288,538976288,538976288,538976288,1869762592,1937010797,1919903264,1852793632,1836214630,1869182049,1700929646,1701998438,1885696544,1768120684,1629513582,1818846752,1919885413,538970637,538976288,538976288,538976288,538976288,538976288,538976288,1684300064,543649385,1869815905,1701016181,1818846752,168636005,790634607,538976338,538976288,538976288,538976288,538976288,538976288,1819305298,1936024417,1634038304,1852779876,1713404268,1936026729,544432416,1819043191,544432416,1919970933,1667593327,224683380,538976266,538976288,538976288,538976288,538976288,538976288,538976288,1701603686,168636019,790634678,538976339,538976288,538976288,538976288,538976288,538976288,1819305298,1936024417,1818846752,1763734373,1818304622,1970479212,1919509602,1869898597,1936025970,543584032,224749684]},{"sector":13,"length":512,"data":[538976266,538976288,538976288,538976288,538976288,538976288,538976288,1953719652,1952542313,544108393,1701996900,1919906915,1126182521,1869508193,1937055860,1769414757,1948280948,790652264,537529665,538976288,538976288,538976288,538976288,538976288,538976288,2004033568,1751348329,1292504366,1462706208,538976288,538976288,538976288,538976288,538976288,1461723168,1937008993,1919903264,1970239776,544175136,1702063721,1629516914,1936286752,1700929643,1701998438,1734697504,1768844905,221144942,539006730,538989871,538976288,538976288,538976288,538976288,538976288,1885688352,1701011820,1965564019,1952539760,539587429,2037149295,1818846752,1948283749,544498024,543519329,1701080175,1752440946,168652385,538976288,538976288,538976288,538976288,538976288,538976288,1931485216,1668445551,1768300645,779314540,1851867936,544501614,543519605,1752459639,1701344288,541142816,1953068915,221145187,-1928917494,-2128003010,-888792127,18220545,327679,1954039057,1701080677,1917132900,544370546,118370597,794836621,-887045757,18220546,327679,1918980110,1159751027,1919906418,238101792,-2076275449,499221295,-326412853,2123060823,172329732,-1962570928,1300955741,106269444,1594389899,535206485,1465712640,-1996063093,39684357,-1996206711,1971914325,-997548280,1477199241,1577731465,1575324511,-326412861,2123060823,172329732,-1962570928,1300955741,106269444]},{"sector":14,"length":512,"data":[1594389899,555522645,1465712640,-1996063093,39684357,-1996206711,1971914325,-997548280,1477199241,1577731465,1575324511,-326412861,2123060823,172329732,-1962570928,1300955741,106269444,1594389899,577411669,1465712640,-1996063093,39684357,-1996206711,1971914325,-997548280,1477199241,1577731465,1575324511,-1224292413,-67108829,598347401,598476487,113704960,9151,598738631,113704960,1566254198,611845831,113720444,725492858,612107975,434649917,-1206684922,643039231,975576459,-1207733489,-379912190,914948364,1465066425,-1054962347,-1207503325,1047863331,111470764,233322354,-399346682,376768062,599262966,-402295520,585827800,599262966,1310422081,126359787,91569468,599264896,-1612168447,-1396083962,-347928696,914968259,130425774,-1122072320,495658531,599864973,1949252736,574390321,116787060,1963008952,1200236112,971256321,1931717126,598384913,1128521937,-1960388605,8448031,113731307,74668,-1977196821,-466484921,65065280,260712152,-921965262,1396903796,-400585946,1935343803,-498908353,-1408841742,-352320733,1200236083,1088696833,-670834479,839354918,1088475620,-1977165821,200094223,1125086409,529213011,1526748392,1128467059,113767138,271276,-1956946083,-1591498226,915088300,378217390,512369584,-1007148110,126559824,1962934953,-1442382076,3964963,27859061,-955747072,35892230,1343154944,-4979792,1476433128,283640811,-104638463,642864579]},{"sector":15,"length":512,"data":[839405450,1959332845,158305549,1929529320,911368,-335939870,-1087469307,1566177315,2122327747,57933824,1173809989,-1207009085,-924315613,-2143128833,-282871770,599499088,100779563,-1957157959,-2145141962,594870332,989822080,113707125,598956,-2094653717,410255423,17299238,-955157248,35892230,-402003200,-336068461,183236877,-1274826672,256255,1472460888,75467558,598752905,637896742,1342268808,639877025,1476543881,175440188,72714534,105744678,37509611,-1993996683,1340802133,-395049156,-462157764,108332604,72714278,71056875,-1180627339,-1993981917,-1943665595,736822877,74811686,106794022,1207314000,74711298,166397104,38270502,-1341819902,12576770,1207314008,57937922,1593872872,2131150531,642777124,-1073018997,1397757813,113727314,598956,61931444,1610572008,-346530982,268478743,113709172,9132,-2097039128,153332798,65733237,-1450165013,326369536,598476487,-1293418496,53143554,598490755,-1457294071,276038144,598476487,-1696071680,-1405189374,242551075,1948254377,-1408841975,-402653149,1048576175,1963009151,-1405189363,108331043,598476487,-1017642999,76174928,410304522,192231996,97408,80086389,-402003200,24314866,-487897530,1455642718,-1966044590,65071108,-1073083534,199756660,-352024576,-347716095,-1017226518,208896060,1114792252,1048017468,988536612,-1923676589,-2145095362,74712314,611073677,393483576,508711248]}],[{"sector":1,"length":512,"data":[-1973046265,-17470,-1174403655,567148543,-1957144230,1166934365,742605571,1607935616,1019435783,1007186480,738490169,-104597456,1381191875,2139825751,92939782,74825738,149684148,598476487,-4980727,921174960,1532649470,1431356248,45241938,1139278986,-398822909,116850546,1946690488,1966947341,2122327582,1853161473,116789995,1947214776,1966750734,2122327562,1517617152,643492678,1962952250,1958742556,-347781552,1178215954,1178825984,642057354,1962952250,-347781575,-1207503189,259276835,38270758,125042720,8290342,639792128,1050615,977016948,-2144990859,1962934398,1007610637,638022912,973110912,-336002188,-1154053883,1516173347,1354979421,1398166097,10283094,1678165854,-956301276,2385414,1745274624,-402653148,376570017,170157219,-401050405,1701970069,170157731,-401836837,1500643465,170158243,-1957530149,-2094775778,527696635,170157217,-1975355932,610705864,964027402,378267786,-75291544,-2046659327,-1961432087,-1591450602,-469097370,-930472075,170158241,-1978239516,1694139368,-1031732109,1583023980,129040308,-335739672,-1268884721,-402411265,113769721,598956,-1017620134,608319117,1962884227,504359682,522080338,-1959264072,1478610390,1371742042,-1966525614,1958742532,1094615099,259260452,1963064192,1949973508,1949187120,1007479596,1009153069,1008890927,-400657362,510852673,-1164902220,-487129078,292934155,242401539,-1075100015,-336013174,-336050683]},{"sector":2,"length":512,"data":[-1047791359,1354979674,1049318999,76161977,292864010,1962956776,2131150368,-966917852,-346095612,80109113,-148480256,1962934535,-1408841939,-352320989,-1974052827,1958742532,2811931,1541933940,1191342849,-347715770,598909674,1191183558,598621833,-1453826210,158597632,-1325419440,-65279995,1364443992,611720845,973081017,1124365319,1497496034,1381024603,-1073085302,401094004,-2094370303,1949958524,133637645,494141456,97408,537663349,292708668,225933884,-796237780,112263092,-335818520,-1408841978,1509951779,-391330984,376700960,1962955240,-1207503340,-294379485,599262966,1309242433,-336001301,-1018234879,1364444152,762580284,695468092,628361788,41779238,857633282,1569335003,79921923,3768358,-919401100,1124698662,1946237478,1022943748,-1017423603,113660243,-2145377358,-551307226,913580092,846465340,829697084,209002556,1965046912,1176547335,518766650,41779238,857174529,1300899529,1959332611,244491,20588099,-119404684,1532567612,598909635,599262966,-2147126015,539211790,-353648582,599862925,427089211,309669692,1200247033,-57153281,76154226,1492947176,-336065045,1966029834,-1207009275,-1007140829,-2091690466,2340158,508568949,1431786065,-1896467706,1660991710,-611573299,1560795915,525949535,-1994034088,-1994149066,-1960594146,-1910262986,-2094811874,276037692,141689914,1996571706,99350787,-336902586,526277624,-326412861,2123060823,172329732]},{"sector":3,"length":512,"data":[-1962570928,1300955741,106269444,1594389899,-128063403,2123061085,-1996125946,1300824669,106268932,-1626835575,1166656650,1166628876,-1956684278,1438866917,247000203,76998656,-1608610986,105286180,468191112,74907393,-2096301080,1183384260,-1607008262,216983588,-1996307325,1183577670,-163169798,-1070922370,-1962896663,1177287238,-196703754,15877831,-193035520,-1947763712,1979970678,-1608611068,939821604,-2090633977,1946219646,-193035497,-1973980160,-466944188,26339408,1023591555,1182007297,-1980479861,1183579718,-62486030,-1980348789,518780998,-1946394997,-1977311178,-27358464,939816587,-15633152,-1014237106,-112897,2122579014,-595656456,16285315,1183516789,71697396,1187449835,-16776974,2095707214,-443851009,-1957313699,309484,1443087336,16664263,5040128,1183455211,1357130492,-2097080600,20775620,-14584576,1191181894,-27358210,-1979418997,-62486528,-629817334,425600,-1014294667,334218755,67008139,76153974,1963345464,-339309611,1589652226,-1017256565,-1192457387,1709703178,-1070901757,-1979824503,1048837190,1963009216,-373282043,12058802,-1209511935,46433032,-1205424477,-397410048,-998045526,651207426,1342178744,385631885,650557520,1117409310,-1996192768,-1072956858,1183516020,-948311046,63046,-1946788213,-1977176522,8975942,-1946788213,-1977167818,8975942,-2114566401,16840318,12115580,1183666177,-1588586756,1344153296,-2080371558,-96040700,-1166688245]},{"sector":4,"length":512,"data":[-1993944927,1187510342,-1962934026,126548062,-259267542,1962309177,-1373730039,-163149274,1191116936,-129564682,16154241,-941851647,19185670,-11933440,1575324510,-326412861,-402652488,-950664560,65094,-771852661,-960724762,192217126,650624128,721712384,-1960449088,-422445450,939804298,1999029892,-947636213,-1207602650,216727553,-2080487681,1912995454,-18233,1575324510,817103043,37495245,550306419,-1962636097,721420854,16679415,-1107070448,-1896214528,516194775,276036391,-135782634,1354773249,-1207666968,567102719,922674307,617096841,-1004107466,-1312388316,1222693636,616735542,915011331,-1014235134,-604512725,567102132,958303286,-66644443,-1188656961,-819255520,-1426866125,1005068054,-400615936,31982482,-1232126,-14329290,-14329802,-400206282,-397359886,-1934098206,-1193767420,-952762365,69518854,2078822460,66971649,1342242744,616961791,567095476,-1205519453,567096576,623320713,623445644,12066574,992131621,521544141,631508619,109981411,-1960434375,-989844426,-1943689722,920335322,631381759,521536883,906055145,631899845,62642828,520041984,521545122,624494222,739150630,-1909005568,654259137,1946172800,833836,-215672130,-1190431578,-1070366721,427142898,503768555,-141877497,-1406844225,-22244968,1208054976,385344170,310047,625125248,1140897983,175251917,1954595574,1116700677,2034974757,632209127,-400183617,-1363279710,632209189]},{"sector":5,"length":512,"data":[-1023374616,-1091794091,-2000738680,8251430,-1088049474,1961371054,1426320128,-1363219317,632209189,-1107269912,-1363204690,7137317,184596968,-2096401216,1962935422,71747333,263782655,375552,625117174,-1274776575,1126288702,132707042,71731968,567102644,631508619,45811683,-1575026944,382017061,12068135,522308901,627326592,504198144,-987404896,-1272617450,522308901,1945582531,-1957736694,-597235,-1007490095,242480955,-1962610813,38079237,503313012,12840683,-1192457387,-397410052,1048773243,1946166634,1779891972,16758821,40495184,-1017256565,-385875272,-1957036453,1926769628,1813920522,-1962642907,870449123,-28972608,-1175047338,-466485182,-533549828,-192873502,-401771435,28901294,753422336,112642,110084958,45753710,991311872,-1909885915,639973638,2885262,626919052,-1181106125,-13402112,1974382322,-1991817221,-1188733890,-1359806465,-779365897,-1107295809,512622721,1017914681,1023112224,1022850057,175076365,1198224576,540847182,154986612,222094452,-1073062796,574380148,1547445364,-347995276,1103705060,1952201900,1948400890,-338623740,-775844909,-1462692887,-339053311,1017925121,170619917,1009218752,1018852386,1107522652,-919343893,1547480129,574421620,-788331404,-1047798805,-787224111,-764083800,521574379,626409097,-783821053,-2133392409,-500433182,1487127691,64523045,906434299,1128480649,626800325,-1073042772,-2118190475,512636416,65742137]},{"sector":6,"length":512,"data":[-1398095821,-76275652,-143390404,58002748,167804905,-352094784,-1992912775,1313030975,1948269740,1946762459,1947024599,1958742626,1948400734,1952201767,-454317565,-1404974797,-93037508,108274236,-1426891600,1555091947,-1426855471,581961331,1321593770,1947024556,1958742574,1948400682,1952201911,-320099837,-1404974797,-93037508,108274236,-1426891600,1555093995,-1426855471,581998195,869133226,521579200,1991,627975935,1441565525,624500366,-1047803597,-108271221,741772105,1962281728,650546704,16000,-234458112,1974355374,1083655674,-41157084,-989600303,-1084809450,-2048393207,-812949760,-133956213,626667145,-561117410,-481692109,993820947,-1996131261,1162150014,-1073042772,-303891851,369118857,-443851489,-1957313699,509040364,72780551,-1390037314,276087355,208967232,-1178586217,-1359806465,-336857205,-1956749418,46292453,-326413056,74907479,201313256,-1844153152,-1070335349,-218103879,1238497198,-1275067717,1596050752,-1034033781,-796196862,617088515,104412530,628303042,1342181125,61987025,-645076781,624500363,-1056715989,-661929074,567102132,605057624,-1029486352,780899620,369173704,-1950145336,-74323513,-1070394510,-1017256565,-397346701,-1957167080,1942183397,976903,-1711276104,-1017256565,32039986,1050854144,1977879077,993951779,225575717,225649212,91365436,132842928,1980972176,-1156337662,-1730730640,-1020972125,-135543670,-1947432107,507184222,108143936]},{"sector":7,"length":512,"data":[-116850504,1051986923,91365837,625117126,-7542528,-2081649835,1586169068,1075723012,-1207602651,720046336,542455,-2092403584,1946159742,-1949748454,1107409105,1265770957,34227959,51279104,1444087366,-1205307128,-335997440,-27883210,-1946401143,1107474641,1174610381,139858694,1317735801,-61436930,-851312456,-1948718303,1317733974,172395016,567100084,-1484782222,-369285822,-1957298395,82609132,2122907442,105286654,1187432587,11075836,-1458539136,125124608,629475062,-972786304,-1954481082,52692054,1035257610,309535181,1962934845,12711689,-385649663,-369557343,-1953235235,83895745,1963262013,-851528695,285259809,1187440875,12059133,-165556924,74744002,1090276992,1090275062,-706149516,105286400,1946288297,239901,-919402124,567099572,-1275019287,-1960719042,12059734,-350106301,1190563943,58032380,-1459574807,57999362,-1191141399,-779354113,-851311944,-1915095263,1068826454,-1073012275,2122323316,259332863,-779363849,-851311944,-1261882591,857853248,-1194226743,567099904,-963614485,-1962869434,-1528297394,139364608,-112906,1190594421,1962934790,-18776061,-1274784117,1931595068,-31987453,-28903789,-150505985,132678,1051996277,1183457741,167977990,1452015174,-851594236,-1814400479,33375990,1190597749,1946157320,29982733,-1207675253,567100161,1190575986,1031094524,-1207675253,567100160,-919420533,1946157349,-149901054,525894,-914357388,1075723040]},{"sector":8,"length":512,"data":[-1274383835,-1205744322,-974579712,-61994242,-2013148800,-1960492401,1575324611,-339135805,624271836,-1054617353,-2136422093,-914357387,-1957313791,73305068,74767115,33443712,-1017256565,1458342741,629586775,1962950531,-1207493079,1944584197,855995649,619420096,-1543625664,-2002573946,80188965,-964493311,-29047036,915013630,1317741964,-1898411004,649408,-443851169,-823540899,-93044480,-2080448128,-227283207,-66947189,-1459713107,1212314625,359907643,-268185461,1946265773,96600884,-141885438,-335657847,1962839014,-1980169460,-1054081460,-351958712,-17235195,-963903924,-779298164,91541819,-1809937370,41912613,113649347,1023550874,628424702,-268173685,1946265773,1224641522,-1116487365,-268185461,1946265773,96601058,-141885438,-335657847,138906598,74760203,351000718,-1710293466,-1945013211,1003982040,637891783,630201998,-1125435509,856061835,7006400,225756731,1077936420,6219928,1308495220,1894654,1318454644,-1936069810,1003588824,637826241,-1960471389,38242567,-1013333965,-28996783,57934248,1095354411,2147465793,-1776927962,-788236763,-1946847766,1925579713,1925317397,601028365,-389665854,141885452,-355347721,-1070340747,1364378457,1946164712,-24422632,-234622837,-16890681,108497407,-684992885,-27948726,-1017489064,-768389037,1347572254,1342177720,266870534,147096320,536869507,41179994,12833291,1458342741,2122516055,947191816,-1960523585,1183516246]},{"sector":9,"length":512,"data":[125126660,1912624104,-1958155481,1210390582,-147123852,1149963636,205949186,3860566,-2093976738,-25099066,74655000,108384779,-1711276104,-628417045,-787496061,-754732581,-850873109,-1830194655,1418265737,406227202,130036517,-443851169,1317782365,972524300,208929356,-2130393469,1965365502,1072429554,470014603,-745850510,-147078770,507053685,645080258,-787496061,-773074469,1005310443,50951671,624533977,-1064380373,567102132,-147124878,378078325,-2020465470,-1009677564,-1947432107,-1931572265,-1950314792,-1070398338,-218103879,-9073234,-1190756725,-1359806465,-114568713,1183579783,29816580,-1543343104,-202780343,-204926043,-1946973276,12803578,-1947432107,-1948349481,-24443274,-1064380276,-4603853,-139529473,75402193,27838347,1235485300,-1510741551,-1527527149,-91491445,-1957313699,-1948808212,-1898410786,74877888,856063627,-17984,-772296974,-1493960405,-1071970956,-1946157283,1576700915,-1957363517,-1932030996,-1950314792,-1070398338,-218103879,1238497198,1576700817,-1957363517,508975084,75401991,-1070344309,-218103879,-141865042,-1962508661,139365343,24489714,139340609,-24389129,-1527516277,1589808042,12803423,1458342741,183272279,-839498042,-2012985717,624752454,641469044,1187382900,216779768,-872790330,1157187270,1157121734,-1913366900,1183446598,108956658,1569392011,72190722,-1962519157,2106263669,1593791754,1476156914,-1995932021,39684357,-1996206711,1971914325]},{"sector":10,"length":512,"data":[172330760,-164428686,-1276638997,114425,1971914123,180650764,-443851169,-1957313699,149717996,74877782,1342177720,1347469355,-102700970,-1995914109,1451882566,-49670,-92074891,-1207470593,-342228993,45649964,-1070903296,-396996528,-997983814,-62486264,738088585,1996443840,-126418950,-106633130,-1962359677,1452014662,-443851010,-1957313699,509040364,-972362621,-1949436858,1183319110,1948597493,1948662794,-163133946,-972231733,-959711162,-968558778,-1941637562,1183707734,-263812620,-1962508661,39684869,-1962652277,1972045397,175505160,-1911914869,106794501,1593791839,1476156912,-1960896994,93063806,-1962523249,92866686,-1996333687,1435042893,141920518,1913275791,-336186620,-121575416,-1962933826,209029381,520799363,-443851169,-1957313699,-1957210388,92996734,-1962779253,1435173965,141921030,-854950517,2123061025,-1996125946,1300824669,106268932,-1895271031,74582597,149681715,-1091013144,92995585,1594652041,1575324510,-1957363517,-1957210388,92996734,-1962779253,1435173965,141921030,-1962248705,93194366,1594252686,509026765,-544286836,-1945600373,105221893,-1996063093,39684357,-1996206711,1971914325,172330760,-164428686,401082603,114424,1971914123,-1956749556,12803557,1458342741,1586372183,108432132,-1962391922,1317735038,530903820,-443851169,-1957313699,73305068,-1945739380,38767623,-1962649716,12803557,-1964209323,917767254,-12770867,-955746817,371536646]},{"sector":11,"length":512,"data":[1444080384,-1996065141,1552483396,105679106,861803657,12803520,-1947432107,1586169414,-1948775670,192219230,-150714741,1575324643,-150992702,-1949791261,1727464518,-1949826294,-470350778,-443821821,574045,1408011093,1465274961,1427506718,-1962248507,108446980,-1408348533,158490940,91454268,1149820932,1576067839,1595868951,1532582494,-899816053,-1957363702,1381061612,102651734,12080406,1914817891,108971025,-1978773877,92808708,-136165562,392020019,1583292167,-1956947622,181034469,0,0,0,0,0,1377850189,1412263541,543518057,1919052108,544830049,1866670125,1769109872,544499815,539583272,943208753,1766662188,1936683619,544499311,1886547779,17,0,0,0,419758112,-79,100663807,-1308620798,-1341814784,-1308622591,-1341942528,6029404,6029404,6029404,774504540,6029354,2764330,788545839,1378811984,5451520,788550959,1060044887,11665452,-5242860,83886079,134263296,-20480,327679,524466,589744,176,-256,255,0,2573,167772160,-1308616704,-1342160604,1142969165,1444959055,1769173605,908095087,692267040,2037411651,1751607666,959520884,825045304,540293433,1919117645,1718580079,1866670196,1277194354,1852138345,543450483,1702125901,1818323314,1344285984,1701867378,544830578,1293969007,1869767529,1952870259,1819033888,1734963744]},{"sector":12,"length":512,"data":[544437352,1702061426,1684371058,-1308592864,-1342138368,196607,2621618,65456,16711680,1526726656,1044151389,574307627,589840384,1919771433,1919443826,822698798,941633838,909127478,3617071,-2147483616,1076140836,1663640360,1920234349,779249763,774965603,909647921,792080431,-1577044175,36,452984832,-1946156996,-1308598268,-1342157824,1127949512,1279870559,1313431365,937798,1704114,-2130701136,16875905,11665415,1622147093,1124371493,11665413,548405259,40,402784790,202115341,369624844,219348758,419365394,318812672,18919424,369144320,1010610176,1196641614,15934,808466002,755633456,1635021600,1864395619,1718773110,225931116,196618,808466002,755633459,1953392928,1919248229,1986618400,543515753,807434594,150997517,808866304,168638768,1869488173,1852121204,1751610735,1634759456,1713399139,1696625263,1919514222,1701670511,168653934,218168320,16711690,762213746,1701669236,1920099616,2126447,911343618,221392944,1713384714,1952542572,543649385,1852403568,1869488244,1869357172,1684366433,16779789,808866304,168636720,1970151469,1881173100,1953393007,1629516389,1734964083,1852140910,658804,-5111594,-5242868,-1,-1,14990,24248320,117341060,1112671989,-1064507253,234885125,303903,787971,244039822,-108331002,-34108593,-1202674445,-883949516,-661863540,-1898410424,1032128]},{"sector":13,"length":512,"pattern":0,"data":[-1342172999,1202648063,-1014237301,-1077899704,78708751,-789068149,-628299565,74698795,-768878452,-268181293,-947135858,-388771593,-802438516,-1064565645,-522989013,-1030817789,1322289836,1187548077,-31145334,91598908,-341118036,1974615046,-1968901267,1946265794,20102833,512433934,872153092,-930370094,-1031072797,-1064385789,-2080863315,292880383,-501415642,16417267,-2129234704,-351272766,1086360796,-276578162,486614544,-339702200,-1950118942,-1962932162,50334262,33948144,1060096,-1064380274,-100663109,-410265970,784698363,1085550591,-1191181637,-896794602,482007694,-1205744383,567102719,1801675088,1713398885,543517801,1663071081,1970434671,1078384,534126504,542187576,555950220,801383040,810299400,967916023,983133578,1847474979]},{"sector":14,"length":512,"pattern":0,"data":[29776461,75,235995168,161087487,128,152764432,30,1]},{"sector":15,"length":512,"data":[0,0,0,0,-1192457387,770179108,-565801622,-330920624,1711269968,-167459709,1946282566,-565801704,-565801648,1714415696,-1207647101,-397409305,-998041316,108461826,-402360577,-998047564,364308484,-1172700232,1347551232,385631885,-599356080,45633558,28856320,345657344,-1995950584,62454342,47642,1183666258,-1924131076,1343675462,1342177976,1342178488,906499226,-96040696,906541210,575846408,529446992,536918096,260880464,213432400,260808784,-1605311446,-397406368,-998040624,178190,571472,13482064,366274640,1023853699,544538625,1342242744,1347469355,1342177976,1342179256,-2095459096,45615812,1776832512,46433048,-397361109,-443869088,-1957313699,10533100,1466514408,-532232618,108461825,-402360577,-998047236,1619445252,1187447039,-352321026,-27358417,1988879313,-1926168826,1358913670,-2088969240,1183515844,-28952316,-793243788,-2037559296,-397344928,-998015804,-28901628,956581515,-914424250,1342231224,-10451315,2091575376,-1962621821,1028129862,545062913,1342242744,1347469355,1342177976,1342184888,-2095500056,1471679172,-1226289152,46433047,1208239755,2097152573,16758816,1354771280,178256,2013264,420210768,-1207253885,-397410217,-998041715,106859266,-1979424885,-397371385,-998021908,106859266,-1962778741,-1744336184,-386823344,-998021928,1975925506,106859329,-2147328117,1966735743,106859317,-2147328117,1962934911]}]],[[{"sector":1,"length":512,"data":[106859305,-2147197045,1966735743,16758813,1354771280,178256,-1561833392,180650776,1342199736,-2095635224,-1159200060,1619430658,-129594881,16008903,10283264,16139975,-96024832,1183653930,1183666402,568873200,79987538,16664263,-1961694464,1988886110,-2012968200,-16171897,1191181894,-364475400,1928873529,-27358234,154961862,-260141824,383940237,506119,2122556914,494141666,-1933693,1187382901,300613856,14698182,1342177976,-387811585,-998047584,-528580604,-1205767168,1178143764,-1206881048,1178148850,-1207405336,1178143756,-16157208,-1410799498,46433040,13895423,14712448,1541997428,106859519,-402360321,-998016054,343298,1996425586,70445062,-16595837,-1310194058,46433029,-16353537,-286784394,79987463,-443850914,-1957313699,-390056980,-346659032,106859289,1015035787,-2146470609,1967063420,41713673,-402426624,1325334646,105284356,75399938,1591375104,-1957313699,-390056980,1018717940,218014473,218111628,218302150,33998352,-397410291,-998016182,218407426,-2096298590,1948058750,75399942,-1978960610,-467007930,1354771280,1183452395,1357130246,-1202667477,-1202716671,-11534334,518521974,180650775,1342199736,-2095734552,-1017314620,-1192457387,-1914175486,-28915866,-4718292,-1070903296,28856400,1996443648,384821502,-16071549,2122448454,2114009854,1354771425,-1961531160,1438866917,-1070338933,-2123999256,137561214,2122385271,1929886724,16758798]},{"sector":2,"length":512,"data":[1816656,-12392368,-2147171197,1997276798,108953606,-1207012607,-1202716417,-397410277,-997982424,142508036,-2147059937,1929447038,16758798,1816656,-15800240,-2147171197,1981679742,108953638,-2146274300,1946551934,108953612,-2147060727,1963656830,16758798,1816656,-18683824,-2147171197,1963067006,142508078,-1207011811,-1202716417,-397410277,-997982520,71759364,-2146143229,1981548670,16758798,1816656,-22091696,1560593539,-326412861,-1645690829,75399269,-1207011817,-1202716417,-397410276,-997982576,108953604,-1207012804,-1202716417,-397410276,-997982596,142508036,-1207012804,-1202716417,-397410276,-997982616,868441348,1700456640,539625159,113643386,-973004756,18885894,539887302,788973115,113639456,-972943494,34568966,259786439,113707454,164892542,260048582,-2130262268,-954229745,-1274051834,-2063153377,-954217457,-468744442,-1996044513,-956301297,638470,-1073297662,-956301303,-871775738,-1006188791,-972427767,640518,164890311,113713152,2518,165152455,113707468,166595034,165414598,-1677277440,-955252705,2072070,-1610168576,-954207713,-299916794,-1543059959,-692583649,-1514647552,-1243066337,79987576,1342233016,1344252088,-2089244696,-591919932,-1413984256,-1712828385,79987576,531891911,113707008,8118,532154055,113708052,166600634,532416198,14661635,532527184,2020534352,-1207647101,-1202716446,-397402176,-998016928,15054852,532920400]},{"sector":3,"length":512,"data":[2018699344,-955988861,2083846,-838416640,-956301281,203411462,-771307764,-972427745,85971974,1342236856,1344263608,-2089277464,-340261692,-659009536,434655263,79987576,1342238392,1344265144,-2089284632,-239598396,-558346240,-35106785,79987575,1342239928,1344266680,-2089291800,113706180,8164,535168711,113704960,202121192,535430855,113641966,-1207885844,-1202716425,-397402131,-998017084,1376175876,-956301278,2249734,1443284736,-956301278,2252294,1611056896,-956301278,2253318,1476839168,-956301278,2251270,1543948032,-956301278,2253830,1711720192,-956301278,2254854,1778829056,-956301278,2255878,1845937920,-956301278,2256902,1913046784,-956301278,2257926,-66664960,113642252,-972354297,17629702,218957510,-49887742,113639436,-973075192,537724422,219219654,-1957313760,9484524,-949808152,1696723526,-1962647925,1183384647,74973176,-9402739,1997203536,-1929067389,1358917766,-2089329176,1183384260,-230257162,-230257328,2014636112,-1962621821,2013201502,1887866116,-571977473,79987574,-9402739,-370129271,-88604387,-397193216,-998017286,1975520004,12904707,1342242744,-386894081,-998017306,1975520004,11593987,1342244024,-386894081,-998017326,1975520004,10283267,1342245048,-386894081,-998017346,1975520004,8972547,1342246072,-386894081,-998017366,1958742788,17873015,-260636848,-2089379352,-1073019708,347629172,1996443649,1988684016]},{"sector":4,"length":512,"data":[184861827,-1202359104,-11534054,2011754614,79987574,1148502027,1342251192,-386894081,-998017434,1958742788,19249203,-260636848,-2089396760,-1073019708,716710516,1996443649,1984227568,184861827,-1206815552,-11534033,870903926,79987574,1148567563,-1544534389,512494846,113642752,-972026621,852486,1983965264,-1576876925,94506244,178189,1354771280,1342177720,1342177976,1342180024,-2095960856,1471679172,-1360506880,46433040,-1947187457,1065414750,-385649664,-443810088,-1957313699,3193068,-949908504,119878,-1962647925,126485087,-303542120,46433117,-1962647925,126354015,-1962647925,126485087,1020282504,1008499777,-1961328806,1602946142,25133058,-1962117830,1602946142,41910274,-1205832704,726663423,-1202696000,-1202716670,-397410298,-998043223,1030154,271312976,-1962752893,1602946142,-1576564222,-2036199584,-2029599232,113654272,-1207959416,1344143494,384059021,-767128240,-1070903274,-1202696112,-1202716671,726696130,-1706012480,137757217,199640713,-1205832512,726663423,-1202696000,-1202716670,-397410298,-998043323,1030154,264759376,-2096970621,1994712190,-465138933,1183439095,-464584732,1154959046,148260550,-1981528437,1183701062,1183666390,-873967402,79987573,14843523,1187397748,1187398871,1183517142,-666465820,1356220045,1356220045,-2089440792,2122515652,141820130,-1982445941,569108038,15091399,-599356672,1024458789,-920977407,-28407743,1183452139,-28931882]},{"sector":5,"length":512,"data":[15091399,-427916544,-1205832704,726663423,-1202696000,-1202716670,-397410298,-998043487,1030154,254011472,-2147302269,1946222206,1354771220,1342181560,1342230200,-2096339480,-1293351228,-733574400,179950123,82966272,-330921936,735331979,-2131626030,1451765954,-297351443,257990656,-957856120,-1929320122,-22811578,1477644,50775565,1183649805,803754220,46433140,-1576205150,1183649029,218735592,218830476,219023046,-398029552,1947265104,-1576876925,279055631,16758797,1354771280,1342177976,571472,268429392,-1207253885,-1202716417,726663169,45633728,179851264,-420982784,180650767,267404999,8822852,1183334444,-263811598,-263811760,1955129424,-1962621821,1438866917,-289870709,1598220289,377931606,-956284418,33450118,-297351424,1586193697,71797510,-768375,1183646839,770199716,79987571,1352943245,-2089582104,1183384260,-297366030,-297366192,1949886544,-1962621821,1602946654,25133060,-1961593542,1602946654,-2012771836,1023283846,1006926913,-1927512486,385775750,1518767440,-1706027265,137757595,-25655670,-1952301052,-1961694449,1602946654,-1576564220,1586171787,71795462,260808706,-973061470,973095686,4458182,1611020288,-1206029041,726663423,-1202696000,1347420162,-2096167704,1471679172,-2031595520,46433037,503333560,-897151664,-1924131074,385750150,1354771280,28856400,-1028108288,-1070903168,563761232,-1995950590,-1072979386,-4710284,-1070903296,45633616]},{"sector":6,"length":512,"data":[112742400,-1226289152,180650766,1342181304,-2096285464,-1098710332,1994718922,-897152242,-1982269442,-79226,-956380530,1157524358,-26573114,-897152248,1820756478,1787203070,-2037559042,-397345174,-998018254,1992196868,1232339198,-26507578,1787217476,-2037708290,-2037776694,-2037514644,-1924071830,1358850694,-2089612824,-1098709820,1946222198,1787202313,-1572435458,1187455979,-1962934110,637431942,20779008,1103698688,-335786360,1787202060,-62486274,10634951,-1568767232,-1205832704,726663423,-1202696000,-1202716670,-397410298,-998044163,1030154,209709136,-2147302269,1962998910,260808795,-957987192,-1929320634,-22813114,1477644,50775565,1183649805,-1075293978,46433137,-1576205150,-4715259,-1070903296,112720,178256,637008,229369936,-1207253885,-1202716417,726663169,45633728,179851264,-1830268928,180650765,267273927,4366404,1183334444,-297366032,-297366192,1916069968,-1610300285,-467005557,-1996472275,-1924076986,385834630,377916752,-1706027266,137757499,195184265,-1205832512,726663423,-1202696000,-1202716670,-397410298,-998044355,1030154,197126224,-1929198461,1358913158,-2089738776,20775620,-1204849664,-1924136652,1358894726,-2089767960,-2037578556,-1924071586,1358894726,-2089788440,-2037578556,-1924071658,1358913158,-2089776152,1586169028,73370374,973176704,1586183541,73370374,-2037905526,1094516242,1513893244,2122525055,594805252,1342177976,1347469355,1342177976]},{"sector":7,"length":512,"data":[1342180024,-2096318232,1471679172,988303360,46433035,-1962704919,1602946654,-2012771836,1023283846,168457263,-2096728896,1963066494,1585876247,-2037559041,-397345256,-998019048,20363268,13494608,-15694137,82509824,-15694081,-1962516853,-1232403361,9109264,-32340344,74723132,-462045174,-1962516853,-1241316233,1015086864,-972524241,-2033844220,-1962869146,1602946654,1547665412,1586170997,73370374,1543602048,1586170740,73370374,1966751616,178208,1354771280,178256,702544,201844816,-1207253885,-397410217,-998045047,106859266,-2147197045,276126783,-16359797,-2037578633,-397345256,1038839672,-10582387,411471184,1776832766,79987567,-10582387,1874651216,1023591555,259260417,1342258104,-31947123,1862985808,-1962621821,2013202014,411471108,-102215426,79987566,-31947123,1871505488,-1996307325,-939584890,16716934,-16454912,-1946217338,-2130766666,788404410,-1166014604,1962999320,347507690,414875903,460664574,-31868288,-2146142930,1560156858,-1166014604,1962999322,-28916218,-15799552,-1946217338,973017734,1929319558,310807482,344361471,-16454657,-1946217330,-2130766666,1560156346,-2037517963,-1924071912,-397368250,-998019408,347507460,-1539127553,344377088,-352321281,344391428,347507711,-1535475457,-2147060694,1962976378,347507692,-1535475457,-1205635798,726663423,28856512,45633536,95965184,-756527104,180650762,1342199736,-2096540440,2122318532,57934078]},{"sector":8,"length":512,"data":[-1610526999,-2037903477,-2033779078,-969212293,16678022,-31932800,-1207601920,65732925,1352943245,-25524595,1844111440,-1929067389,1358854790,-2089790744,-1073020220,1586185332,71797510,-1945305437,-972226530,269288198,-402360321,-998019490,218407426,-1207106142,726663423,28856512,45633536,95965184,1256738816,180650762,1342199736,-2096575256,-2033777980,4324886,-1914013953,385797254,377916752,-1706027266,137757499,195184265,1343255744,-2096471320,1996423876,144435362,-1610431357,-2037903477,-2033778922,-969212137,16717958,-10582387,377916752,1172852991,79987565,-15300979,1873668176,-1929198461,1358875782,-2089955864,20775620,-1204849664,-1924136641,1358894726,-2089985048,-2037578556,-1924071732,1358894726,-2090005528,-2037578556,-1924071658,1358875782,-2089993240,1102578884,-2037559295,-397345076,-998019860,347507460,427986431,-2037559042,-397345076,-998019880,-863597308,-2037559042,-397345256,-998019832,411471108,1541951742,46433133,-15563127,-1165954933,1969028631,21215247,411471184,-1578610434,79987564,-26820992,-1961396992,1602946654,280398596,788580095,-1962516853,33493126,-1952447417,377915407,394708735,-2033829121,-1929314536,1358913158,-15300979,1818421328,-1929067389,1358894726,1342194360,-2090036248,-1900542780,12079135,-1934077920,-1195880433,-2037559284,-397345256,-998046436,260880394,1825368144,1023591555,58064904,-1207891735,-397402112,-998019910,212226]},{"sector":9,"length":512,"data":[-152501386,213432320,1823008848,1023591555,58064960,-1207900951,-1202716345,-397402226,-998019994,1975520004,13625603,1342262456,1344245432,-2090053144,-1073019708,-1159134347,22132736,529446992,1815930960,184861827,-385649216,1438122149,-1900523519,669536287,79987564,58048523,-1207922455,-1202716327,-397402226,-998020078,1958742788,22919294,529446992,1811998800,184861827,-1200851776,-1202716319,-397402226,-998020114,1958742788,23574618,529446992,1809639504,184861827,-1203211072,-1202716307,-397402226,-998020150,1958742788,24295478,529446992,1807280208,184861827,-1205570368,-1202716297,-397402226,-998020186,1958742788,24950802,529446992,1804920912,184861827,-1203472960,-22863986,2001932,50775565,113643533,1342180610,-2090098200,77726404,218472973,1342177976,-1202667477,-1202716671,-1202716670,-397410294,-998045811,5748746,101705808,-956119933,529460294,-1098898197,1948974610,314474503,326451198,-1202667477,-1202716671,-397410099,-998046910,-15668474,1586228294,-2012771604,184423046,1590654400,-1017256565,871140181,1455614144,957091000,57934918,-1207909911,104538093,58002446,-1192225304,104538069,292883470,-1202667477,-1202716670,-397410102,-998046990,534296582,202245691,-1070914955,112720,13285456,47769680,721863811,548950208,-843558912,-941076480,113541890,991943608,1963724294,1354771234,1342193848,1342229176,-2096976408,-1070922044,2144336]},{"sector":10,"length":512,"data":[13482064,43837520,-1207516029,104538078,578096142,-1202667477,-1202716544,-397410102,-998047102,1354771206,1342185656,1342229944,-2096991768,-508033340,235289375,722564364,28856512,-860336128,1474842624,113541890,957093048,57934918,-1610558999,-467006438,203006032,202940496,-264902576,-1207516029,104538045,913640470,705435808,575841252,-1559488096,446702164,576103180,-1202667477,-1202716656,-397410102,-998047222,1354771206,1342185656,1342229944,-2097022488,-1061681468,369507103,-1607043828,-467006440,-1608360285,1621298201,203071522,723673763,548950208,-893890560,-873967616,113541889,-1202667477,-1202716640,-397410099,-998047302,532920326,202769979,413152885,-1545328116,429924952,576365324,-1559487840,-1070914980,178256,13350992,26011728,721863811,548950208,-843558912,2078822400,113541889,958395064,57934918,-1610558999,-467001351,536387664,-164167856,-291510241,-1207516029,104538021,913645556,-1558186335,-123723164,-1545328097,-106945946,577282847,-1202667477,-1202716668,-397410102,-998047442,1354771206,1342185656,1342229944,-2097078808,-1464334652,-200918241,-1590266593,1789075446,536387618,1822680106,536453154,723676835,146297024,-893890560,-269987840,113541888,-1202667477,-1202716640,-397410099,-998047522,531347462,536086075,-157206923,577807135,706738336,577938404,-1558185568,-1070914956,112720,13350992,11593808,721863811,548950208,-843558912]},{"sector":11,"length":512,"data":[-1612165120,113541888,-1957313699,964844,-950783000,-1224674746,1358055053,1358055053,1342189496,-2090280984,2122319556,125108466,13567686,-953554176,-1224543674,1358055053,1358055053,1342189496,-2090290200,2122319556,125173746,13567686,-972690686,16830214,13581952,-952535806,-1224281530,1358055053,1358055053,1342189496,-2090302488,1183516356,164144116,133318343,-196687945,1183645696,1183666418,800608498,1642614784,113541992,-1017256565,-1192457387,-1712848894,138840915,376750091,1946157373,146715,-407362956,1944604675,46433026,1586177515,105286148,468387592,-1979425141,-789182906,267061024,-1979425141,105259527,184436360,-1207601728,48955393,-443826133,-1957313699,571628,1448297448,-402360577,-998021206,-28931838,1325335531,6076670,-25755824,-402360577,-998046707,1975520006,3127316,-25755824,-402360577,-998046727,1958742790,-28931115,-1996208637,1183579206,-62506748,-661974411,1183319946,1952201976,1949252615,15329539,-956539253,1996423175,108461828,-2090407960,1187448004,-352321282,-25785583,-2147060221,58011452,-10746682,1996488262,1730471942,990037123,-512229818,-2147066229,192217151,1342276536,1722738771,-1962621821,130481246,-62455972,-231681,-1712845706,79987558,-2146673013,695545407,98176,-2051529867,1996443649,1719592968,-1207647101,-11533945,1911032438,79987558,1342278072,-351504641,-62485698,-335919479,-96010493,-1963303285]},{"sector":12,"length":512,"data":[-129595385,74722876,-311050230,1965965184,509478,-231681,971507830,79987558,-956670325,1191128583,-92864518,-401967361,-998021596,-15537404,1996426358,1712777224,-1962621821,130419294,-443851264,-1957313699,440556,-950931480,-1466,2122386667,1979842810,-93421284,1996423680,-28930566,-1070903274,88840784,1183385654,1975520252,-92372003,-2128120832,33618558,-4710281,-1070903296,45633616,263737344,518541312,180650754,1342179512,-2097110808,1183515332,257860606,257689287,2122514432,158662906,-956014965,-335544569,73304840,-1980086645,38258439,-443875328,-1957313699,309484,-950967320,201391174,1342963896,505409720,1354771280,906316698,-28931832,544522251,1342242744,1347469355,1342177976,1342181304,-2097042200,146279108,786976768,46433024,-1558187871,113708902,3940,-1962385781,126483526,-1017256565,871140181,1359407296,-402360577,-998047720,1438866690,-1070338933,-11471896,-538442634,46433279,-1957313699,964844,-1202659352,-397410238,-998021349,8828930,1729226832,-2096970621,1962935422,178203,4241488,13482064,-48961456,184992899,-955943488,2098246,184829579,1024554176,326369282,1946165309,67255573,485169012,280263,-954537216,66630,1187451883,-352321020,71747340,99287043,67389127,-817987584,494207488,133318343,164143543,-1913370999,-1924074938,-1202654650,-397410257,-998021880,74907398,-1957726744]},{"sector":13,"length":512,"data":[1438866917,112782475,1346037760,1183432747,-96040452,1342177976,1342210232,1342229944,-2080603672,-1073019196,-2014772364,-1372127488,85891596,-558364618,-11526647,1996487798,29268730,1183385654,1958743038,165591121,-1070903266,-59310256,-1694861569,137757834,201213577,1343255744,-2097111320,1996423876,-20649730,-1207778173,1344145886,-231681,-1097139594,-1995950591,-1072955834,-397406092,-998047625,-25755902,-2080465432,-4717884,-1070903296,45633616,213405696,250105856,180650752,1342440120,-1946246168,1439391205,247000203,1333716992,-1996208501,1183576646,-196703994,-1995946357,1183512134,-112818164,-2012592502,1975056454,-1981535729,-54985658,-96040692,1358055053,1358055053,-1974769432,1973613126,1575324431,-326412861,904446003,16758863,1354771280,178256,74907472,-2092201752,-397409596,-997982315,1438866698,-2001146741,1326376960,-2109833130,57999361,-956261912,16742534,2025229056,-2143107329,2022113056,2025751039,1912635647,2022098924,-352321281,2055635758,-1631321345,-2094596230,460587071,-8485238,1996961830,1194862312,-1948093951,-956335946,-12287934,-34682,-1946191738,-2043083194,510918520,-8872309,-1979418997,2122745856,536519167,536614539,-8747383,-8612215,1988866283,2142928902,292832511,1988877963,138840580,91553848,-352321096,1589652226,-1017256565,-1192457387,1642594350,-465123506,1187465216,-1929379354,-1924082106,-397351866,-998022270,-700019964]},{"sector":14,"length":512,"data":[-942389623,1695016006,-1685817,-398014465,1187446789,-939524118,60998,-1980479863,1183709766,1183666420,1183666390,-1813491484,113541987,-1924087765,-397356474,-998022632,-532218108,1183432747,-62486018,-1979955571,1183576646,-62486048,49432195,-1947050357,126481478,654073540,-1960441973,-89980329,-65631969,-100236513,-1070923233,-767128240,1641211984,25298630,1575324417,-1957326653,44742892,-951210008,1107121798,-1702443264,-956300803,33419910,1518782208,-956295426,33421446,-192493824,-1979702019,-2037905850,-2033779200,-969212415,16646790,-1928825089,1358823558,-2090778648,-2037578556,-397345280,-998022233,1975520002,142016270,-18905459,1633871952,-1979399037,-467008442,-1996472275,1358819462,503350968,1451658576,-1706027267,137757499,-28670327,544522251,1342242744,1347469355,1342177976,1342179000,-2080534296,263719620,317214720,46433276,-2012985718,1187429958,1187396287,-2034761536,1676169216,46433121,1946157373,26130446,-1102672560,1622337616,-1207647101,-1924136826,-397361594,-998023004,-1102672636,8829008,1624696912,-1979399037,-2037906362,-2033779368,-969212583,16603782,1342177976,1342181560,1342230200,-2080833048,-1073019196,-1866988171,-1207702783,-1924136552,1358780550,-2090837016,-2037578556,-397345448,-998022461,1958742786,16758816,1354771280,178256,964688,-52434864,-1207253885,-397409277,-997983391,71731714,-39811448,-39745850,-1568225734,-1699217155]},{"sector":15,"length":512,"data":[-2037559295,-397345376,-998023156,1149683204,-2037579522,1343684000,-34437491,-1224781802,79232602,-11526624,-1912736586,385742982,1354771280,563792,518719542,-34044217,-1224802303,79232498,-11526624,-1912736586,385742982,104045136,-2037839818,-1072955830,-4710284,-1070903296,45633616,246960128,1256738816,180651004,1342440376,-2080715544,413205188,1058080,-28670327,1946161213,27703467,538687568,1609361488,184861827,722499008,45633728,-843558912,-202878976,-2141787145,773857598,1048598389,2083528738,574521424,1233074464,539180672,-2143126480,958407486,1048591231,2083528740,608075828,763312416,539311744,-1205439232,-1202716671,-1202716670,-397410099,-997984342,-91845370,-1070903043,-773304240,113542137,-29063482,1153335297,1299513598,-34044217,-1224802303,79232498,-11526624,-1912736586,385742982,104045136,-2037839818,-1072955830,-4710284,-1070903296,45633616,246960128,1860718592,180651003,1342440376,-2080771864,116785860,1963008024,1153335475,57999614,-56599,-1694633290,137757156,-28670327,-1323299679,636015369,-1140522881,1418103047,537698814,-388823631,-1996484827,-1577191802,522526732,545687808,-1311626241,1634396184,-34169205,-1056716501,-2046569709,-787218860,-40073591,-39938423,-1995637085,-972226538,873267974,218367686,84329994,-4716019,-1070903296,112720,230182992,-756527104,180651002,-33782131,-128522160,-1207778173,1347420162]}],[{"sector":1,"length":512,"data":[1342229944,-2080989720,-1073019196,-2037572491,-1974403686,-467008442,-1136226992,1283886416,-1696050946,147096325,-2037571349,-1924071942,1358797446,704923274,1183666404,-2037559108,1343684400,-2097026584,45616324,-1202696192,-397410099,-997984690,1975520006,276234053,-15829249,1996426358,142016266,-40204659,-21561520,-55115779,105286397,-1974410198,-1924135866,385768582,814124368,-1924131073,1358843014,-25262451,-1136226992,124184656,1996441067,-91845360,1996443901,175570702,-16222465,-131402,-1912734538,1358797446,705054346,1183469796,-2037559292,1343684188,-13597043,-2037559274,-1924071860,1358855814,1354516109,-2095871000,-1279778108,-1511501823,46433100,1342177720,1342193848,1342230200,-2081054232,2122319556,58064828,-1207886359,-1202716670,-1202716671,-397410099,-997984890,1958742790,178221,571472,13482064,-177149872,1023853699,376700929,1342177976,13285456,-178460592,184992899,-385649472,1048772826,1962869186,-1036583153,85891585,113707062,-65086,-40204661,179950123,82966272,1451657264,-1702458370,-137221123,818053361,-27814264,-27752762,71731712,-28932472,-28866874,1451658496,218014718,218109580,218302150,1451658512,65556734,46433117,-1576205150,-2037576443,161742406,186027021,235324941,-2037575667,-397345210,-998023966,219128322,-1207103326,726663423,45633728,-1202696192,-397410296,-997984047,16758794,112720,1354771280,1342177976]},{"sector":2,"length":512,"data":[1342180024,-2080851736,-2033775932,1141899042,738231968,612796480,579243519,-2037559041,-397344990,-998023850,-36706044,-1017256565,-1192457387,233308280,1187468872,-956300920,-8634,385763015,-498678016,1187446785,-1979702048,1183320646,-1924741492,-1907964358,28751872,-1941533360,1537927248,-955988861,-8634,31606471,-1941533440,1183666198,-11528482,79232630,-11526624,1183703158,726669026,-1706012480,137756680,200689289,-1201441600,726663423,-1202696000,-1202716670,-397410290,-997984247,67352586,-158603184,-352140157,-498677937,1996423169,537180382,1996443678,-498692640,865751062,-1995950586,-1072957882,-4710284,-1070903296,45633616,246960128,-957853696,180650999,1342440376,-2081011480,413205188,1058080,1039550089,-1317797872,-1696696577,137757156,-2131343735,773857854,1048588661,2083528739,591298602,595540256,539246208,-2145616848,958407742,1048581503,2083528741,624853006,125778208,539377280,-1205832704,726663423,-1202696000,-1202716670,-397410290,-997984427,67352586,-170399664,-2096970621,1946191998,11790595,-1962123637,121232454,-1070919308,4241488,13547600,-217257904,-955857789,100422,-2012592502,1187439686,1187396325,465043686,1183666208,1575506148,79987546,384059021,29538384,1183666206,726668938,1347440832,1342177720,1342226616,1347469355,906109338,-163149560,544522251,1342242744,1347469355,1342177976,1342181048,-2080979736,62393028]},{"sector":3,"length":512,"data":[1189629956,46433269,1358710413,1342213048,503886008,-1036583088,1554180097,-1995783037,-1072957882,1183543157,1037183996,1702166667,-1342143767,607057418,-1329034464,590280292,-1950285024,539336904,-2117598312,-1995124503,1586224206,968985356,-385649401,-4653246,-1070903296,45633616,196628480,1323847680,180650998,1342242744,1342177720,-1202667477,-1202716670,-397410294,-997984715,-2008627446,-1092026368,16759037,1354771280,178256,964688,-166205360,-1207253885,-397409277,-997985146,145799170,-1945876855,1586169438,74892296,155486758,-1962850424,1992558686,-2071321084,126353546,-2012592502,1187444806,1183645945,218014712,218109580,218302150,-129594096,1505552464,-1576876925,94506244,178189,112720,13416528,-241899440,184992899,-1206815296,726663423,28856512,-1202696192,267059232,1342242744,-1202667477,1347420161,1342182840,-2081061656,45615812,280514560,-826781696,1474842624,113542129,1962934589,140413783,704726922,-167071260,-2010118927,1200288326,-152819199,818184433,-957127032,-1929317306,-22810042,1477644,50775565,1183649805,669536498,46433113,-1576205150,-4715259,-1070903296,112720,397955152,384323584,180650997,-1962123637,1149896822,1088694785,-1956771959,1438866917,582544523,1149167616,-532232362,1183449089,-465139704,988104390,15091398,1342293176,1357137549,-2091372568,1183646916,-1924131100,1343684166,383665805,1354771280,28856400]},{"sector":4,"length":512,"data":[-1061662720,-1070903296,563761232,-1995950590,-1072958906,-4710284,-1070903296,45633616,246960128,-1763160064,180650996,1342440376,-2081220376,1183646404,129519842,-14790656,1996424310,1517742334,-1995783037,-1072958906,2122516085,545064930,1342242744,1347469355,1342177976,1342181048,-2081139480,62393028,-1008185340,46433266,-1341890933,40367626,-1962850558,1200096862,73304833,704931722,55544512,-1056707286,-1946663287,1988822622,-2012968444,-25755897,906305178,-528579832,-1955236608,1200227934,-1947981311,121309790,-1070919308,4241488,13547600,-271259568,-955857789,122950,-2012723574,1187445318,1183645947,218014714,218109580,218302150,-96039664,1471998032,-1576876925,94506244,178189,112720,13416528,-275453872,184992899,-1202227776,726663423,28856512,-1202696192,1441464352,-1979294069,-467009209,990535307,-1197378553,726663423,-1202696000,-1202716670,-397410293,-997985419,16758794,112720,1354771280,1342177976,1342180024,-2081202968,1187449540,-385875744,-4653472,-1070903296,112720,364400720,1055412224,180650995,1342177976,1342181560,1342230200,-2081484312,20776644,-1957202688,1200227934,-1310447103,82966026,-196704208,704726922,-2131626268,1720201412,-163133707,-196702976,-1945305437,-972226538,269288198,1358186125,-2091458072,77726404,218472973,1342242744,-1202667477,1347420161,1342183352,-2081238808,1586170564,108432138,704726154,126435556]},{"sector":5,"length":512,"data":[1575324510,-1957326653,18004204,1447180264,27543239,1015465728,-956301057,43078,-6797625,-1639528449,1187446785,-1979702118,-2037902778,-2033778872,-969212087,16730758,-1927383297,1358907526,-2091529240,-759692092,-2037559295,-397344952,-998025796,1216777476,-1924131073,1343658054,1342183096,505414840,-1703477424,379471501,1354771280,563792,1183385654,1958742950,57600259,622860449,1183383568,1064358,-337050763,30783490,538687568,1440802896,184861827,-385649216,2122515158,192217512,261502719,906305178,-955913464,108614,1344281528,-12679539,1434642512,-16464765,1996429942,578223900,705971850,1183469796,1996443666,305594276,272039712,406257440,238485280,204930848,1049005344,1996443903,143124486,-1994734461,-1072978362,1877541748,178178,571472,13547600,-310581168,1023853699,2020933633,1342300856,-402229505,-998025906,1975520004,38070531,1342303672,-402229505,-998025926,1975520004,36759811,1342306488,-402229505,-998025946,1975520004,35449091,1342309560,-402229505,-998025966,1975520004,34138371,1342312120,-402229505,-998025986,1975520004,32827651,1342313912,-402229505,-998026006,1975520004,31516931,1342177976,1342185656,1342229944,-2081624600,20776644,-1204194304,-1202716670,-1202716640,-397410099,-997987114,1958742790,28371203,-1977321729,-467004346,306612816,108461904,-2096935960,1183385796,1958742950,26274051,1342177976,1342193848]},{"sector":6,"length":512,"data":[1342230200,-2081645080,-1073019196,-1098706059,1962999612,106859276,22118275,1743324020,106859265,22118275,1183516789,1363622308,-4710284,-1070903296,45633616,297291776,2062045184,180650992,1342440632,-2081494552,1183515332,918790,-293171888,-169324290,79987539,84297355,-397410290,-998026170,81154,498601844,-2037559294,-397345042,-998026348,108461828,-17922419,1401350224,-1929067389,1358884486,-2091640344,1183384260,-957314142,234811010,-962431349,184479618,-962431349,16707714,15746759,-230242496,-2037579775,-397345042,-998026262,-196703998,-17922419,-1913239927,-1924075450,-397348794,-998026086,178180,112720,13416528,-340727728,184992899,722695616,146297024,-843558912,-1679273984,113542123,1183662059,1996443800,578223898,-14780673,1183456374,1357130260,1343374986,-15960321,1996425846,276233992,-1928431873,-11493306,1996429430,74907414,-402229505,-998042850,1015465762,-1207959041,-1202716670,-1202716656,-397410099,-997987518,1975520006,112671,1095760,13482064,-349378480,-2096708477,1962907774,-1505310931,501940224,27150023,-1737031936,505414840,-1703477424,379471501,104045136,1183385654,-1501658202,-385649408,922746078,513413014,-2096613883,1947379326,-1501658344,-15567872,1088988790,46433263,-391743745,-997986970,-1736539390,-14715649,-459630474,-1995950591,-1072978362,-397406092,-997986533,-1502150910,-2081603096,-1956773180,-1866244635]},{"sector":7,"length":512,"data":[-1192457387,1038614536,71732030,-1946532215,1183385158,168487934,-12159808,1191180870,-94467074,1183319946,-27358216,-411826376,1342177976,13285456,-362223536,184992899,-1960675904,1065417310,-1962380032,1065418334,-1961986980,1065354334,-2146798244,1962934655,-339727612,112643,-1017256565,-1192457387,-773324792,71732029,-1946532215,1183385158,-94467074,1965703040,-16520337,1586231878,-2012771590,775747654,-1073085324,1065414005,-349932288,-28901629,-1963041141,-129595385,74722876,-311050230,1946173312,25133062,724596014,-1955861568,2139159134,91564545,1191178731,-27358210,1183319946,1949187320,1975519748,4161773,1586178421,25133306,-1194298368,988479489,-1963303285,-129595385,956194443,1006924807,-1961790145,1065417310,-5213184,1191180870,-10098178,-2131075445,-814404033,704741248,1586219381,4161790,-443838485,-1957313699,8960236,-952301592,385842310,2022098688,-939524097,1505350,30820039,-800667904,45613092,28856320,-877113344,1005080576,113542121,1903542283,-1962647925,162617159,2133190867,129762560,-1946532215,95508295,254142675,-767129344,626476939,1183383583,1996443864,-92864558,1342316728,-2092961816,1586170052,578289418,-14649345,1371020919,-639086590,147096383,-1962254709,1194981958,-1961855714,1194971718,-1962380000,1194973254,-1207536606,-1360461823,178179,-877113264,-1209511936,113542120,964018187,-1962647925,196171079,522578131]},{"sector":8,"length":512,"data":[-62486272,-1319811189,636015365,1183383615,1430752206,-1996480731,1586229830,-62485750,1963345721,-834237514,1963476793,138840750,-8485240,-8419642,-2142845382,71731968,1342180869,-8485235,1338697808,-1962621821,235209798,1541951488,46433104,1946157373,42121231,2122747216,-1444392705,79987535,-1929087233,1358921350,-2091934744,-2037578556,1343684478,385762957,2055638352,726669055,1347440832,1342177720,1342226616,1347469355,906109338,-196703992,376750091,-1202667477,-1202716668,-397410099,-997988374,-373282042,1996423885,112894,-632910512,-1224781802,110821244,-1995950583,-1072958394,-397406092,-997987289,-193528062,-2081796632,-2037579068,1343684478,384845453,1354771280,72981072,1183385654,1958743028,-51884016,46433259,-386631937,-997987806,-25755902,906305178,178184,8435792,13285456,-411768752,184992899,-385649216,45678241,79187968,-893890560,1541951488,113542119,376750091,1342177976,1342179512,1342229176,-2081995288,-1073019196,1183524469,-754339358,8332776,-1995981819,1183578694,-754601502,992744,-1949153655,522576454,-666466048,1342177976,1342178488,1342229176,-2082010648,-1073019196,1586181749,-96040182,1930577721,-30676733,1183517557,340212178,518587251,-96039938,1964132153,-767128813,1964263225,-666465525,1930839865,-33298173,1342177976,1342179512,1342229176,-2082030104,-1073019196,1586181749,-96040182,1981302585,-35657469,1183517557]},{"sector":9,"length":512,"data":[440875474,-756481162,-96039939,1964525369,-767128813,1964656441,-666465525,1981564729,-38278909,1342177976,1342181560,1342229176,-2082049560,-1073019196,45618804,548950016,-893890560,1541951488,113542118,594919435,-1310439797,636015371,1183383583,-465138692,-388823631,-1996472539,1183567430,2041316,-1192081783,-1202716670,-1202716656,-397410102,-997988830,1975520006,173968180,972834443,-385649913,192281925,969819787,57868871,-1946339095,121240646,1183519605,38222286,1183517557,71776754,518587251,178429,2144336,13285456,-438769584,184992899,-1959365184,1183517278,205994492,-85392522,-1962183172,1194970694,-385649138,1183579373,205994492,1183519605,239548878,1183517557,273103346,-756481162,178428,4241488,13285456,-443750320,184992899,-1961790016,539357254,-196704000,1946165309,-55842557,1342177976,1342177720,1342229176,-2082118168,-1073019196,1961427828,-263812099,-1996488411,20837446,-1961790464,539357254,-196704000,1946165309,-44701437,84166283,-11534322,1183450230,1357130248,-386894081,-998047278,-196703992,1962934589,-61871869,-1946341655,1438866917,-893850485,950724608,-1961075061,-1874425593,-1207535873,-397406360,-998028120,340167172,-958249336,-969219258,-16718778,1183647350,1307070690,79987532,383927949,261535824,-2037559266,1343684406,1347469355,112720,12630096,1354771280,35756624,1183385654,1958742926,16758815,1354771280]},{"sector":10,"length":512,"data":[178256,1357904,-390862768,-16071549,602443382,46433255,-8747379,8435792,203208784,922701854,-1847062634,180650830,193873545,-1205898048,726663423,-1202696000,-1202716670,-397410284,-997988235,-1904804086,-2082019864,-1098841404,8454010,28837492,15264000,653658800,243928094,-316011491,1586217219,1363642628,203505280,-2146995108,789324094,565762165,1183666188,-974630766,79987531,-8616307,-62485168,-230257328,948342096,1183666431,1307070610,180650980,-13072755,444006224,-2080815640,20776132,-1928104960,1358920838,-401049857,-997983842,81156,1586170741,-1874425060,2112423817,73305087,-1995815285,1586189639,138840836,-1957214327,1183515742,1397197068,-1962647925,1451953734,1497860368,-1923393655,1358920838,-402360577,-998028480,948342020,1183535359,918788,1261365328,-2147171197,-15983554,1586170229,1346881028,-1962415359,1204159582,1586167888,-1874425060,-1070921847,-1017256565,-1192457387,-303562636,-1983894730,1183419974,138840972,-1945305437,-972226530,269288198,1262544976,-1576876925,94506244,71731981,-1996488411,20840006,-1206553344,-1202716417,-1202716479,-1202716671,-1202716670,334168080,1342242744,1342226872,1342177720,1342177976,1342183096,-2082010904,1187449540,-1603984480,1183321973,-1840869978,-1605989040,2209872,1261103184,-1207516029,726663423,-1202696000,-1202716670,-397410273,-997988651,-1837203446,-2088077567,1963037310,105286258,-961657208]},{"sector":11,"length":512,"data":[-969232570,-16732090,1183648374,99111086,79987530,-401967361,-998028646,81154,-2068312460,1183666178,-370650962,79987529,-1928825089,-397365690,-998028836,-1371108092,-1070903274,-1904804016,-1702070529,137757834,201213577,1343255744,-2082033944,1996423876,-455808770,721601667,-1207702592,-443875327,-1957313699,13023468,1446366184,30820039,-2008627456,1187446784,-956300916,65094,164234951,1183645697,-1229434738,1183666188,1183666384,1996443866,477560608,1342819000,1351370381,-402229505,-998045845,-666466030,57982987,-1962721815,126555742,-565802680,-2012068214,1187438662,1187396321,-2034761502,1183666178,770199776,79987529,735987339,6601170,805630455,-1947646328,-768876986,1451880951,734170078,702930,805630455,-1947580792,-768876986,1451880951,-565802274,1183330308,-330905877,-532247296,-1766305770,-1924129265,1343654470,1347469355,112720,12630096,1354771280,35756624,1183385654,1958743000,16758815,1354771280,178256,1357904,-447223728,-16071549,-941041546,46433251,1342344888,-402229505,-998029046,1958742788,43628629,108461904,-2092369432,-1073019708,-1531427724,1996443650,1223223302,184861827,-1204587328,-11533652,-672659850,79987528,578076683,1342355640,-402229505,-998029114,1958742788,46315537,108461904,-2092386840,-1073019708,-910681995,1183535106,918790,1218504784,184861827,-385649216,45613516,548950016,-843558912,-1545056256]},{"sector":12,"length":512,"data":[113542112,1946157373,178233,2144336,13482064,-527636400,184992899,-385649472,1996423580,340167204,-1974410198,-11529658,31983222,147096567,198723209,-385649472,45613436,1085820928,-826781696,1407733760,113542112,343261195,8945283,1586171509,-700019962,1951483705,22210819,-1962516853,1194972742,-1205832623,726663423,-1202696000,-1202716670,-397410287,-997989323,67418122,-492509104,-1962752893,235210310,-2037559296,-397344966,-998029392,105286404,1342180869,-2092432920,20775620,-1206946816,-1924136245,1358903942,-2092478488,1996424388,981896454,1105744127,79987527,-12941683,1205135440,-1996307325,-259271610,-12942650,-730428659,-12877114,-730428662,-12811578,-263796992,1187463168,-1929379342,1358903942,-2092456472,1183384260,981896692,-163149313,1357923981,1357923981,-2092411416,45614276,28856320,-860336128,1810386944,113542111,326483979,-1202667477,-1202716664,-397410099,-997990570,-1925256442,-11469242,1996428918,511115040,-1977846017,-467004346,306612816,209125200,-16091393,1996425334,242679568,-14518529,1996429942,74907416,-402229505,-998045990,-2008627422,45613057,280514560,-843558912,-1552384,113542110,309706763,1342177720,1342181560,1342229944,-2082543128,1048774340,1963002314,-1941518538,1183645697,-1229434738,1183666188,1183666384,1996443866,477560608,1342819000,1351370381,-402229505,-998047054,-666466030,58048523,-165399,-1710254538]},{"sector":13,"length":512,"data":[137757982,1575324510,-1957326653,5814508,1446130664,-1995500360,1586280518,573618362,-1945324893,-1962101730,1065551966,-1956350719,1065551454,-967019263,-950223290,46662,-994675061,-1977173922,1116209472,-1236860993,1068924547,1187441270,1183645950,1996443838,-207820790,1023722627,527761409,649617092,-12419197,-2094641803,1979663487,106859334,67527,-955752821,-1962934265,1065551966,-1957333760,1065551454,-385649664,-826801670,1996443650,1172367380,184861827,-385649472,1183645901,1183535294,918788,1167517776,-402597911,1187382235,1187470526,-1962934090,1589950070,1082795704,-1086158847,-2085206273,1983886974,-9508374,-1592631669,126422868,536755840,-402426623,516162833,-1977217870,-467006137,-1996488155,37600326,-1959103488,1065554526,-16616448,308185871,1962950531,-1201748778,1115652902,639137279,-12288125,1586172277,17286918,140413696,1991,-385948439,-555154597,-1236875266,1988820992,-1306606410,1082795532,-1472034815,-2085206273,1980479102,-1270429975,-1471771392,209125200,-2081228312,-1073019708,1586206069,-1950487802,1204159582,1586191374,256361988,343342848,84166283,-397410290,-998030212,-1236875516,1988820992,-1306606410,1082795532,-1948349695,8914038,-2085206273,1980479102,73305061,804806,-1006346613,638366262,-2012396406,1586188359,-1305033724,1149969932,1363642642,-1006346613,638366262,-1994505077,1586189639,-1305033724,1149969932,1464305952,-1006346613]},{"sector":14,"length":512,"data":[638366262,-1994636149,1586189127,-1305033724,1149969932,1418405400,1497860378,-1956948087,918815838,-1960440654,-1960438716,1200166484,1599572317,-2095948149,41156671,1586171903,4162322,1589915253,2139301560,276168514,1149207334,-1962314241,130484318,401276928,-402506008,1586168741,-1200176110,1078233894,65734537,-1962699544,1183518302,-1168733256,1468598153,274631426,-1962102111,-1995656170,39291143,65781803,1577058744,-1017256565,-1192457387,-1645739942,1586189871,-1962439922,1183384151,-1202288202,-1961861493,39291655,-1995656541,-1207127018,-11533599,-2048387978,79987523,1555973830,11814599,-1267299584,649486020,-2013183862,1191165762,-1266777164,-957712833,-1929314746,-11485626,-1570186,79987696,57982987,-1006580247,638366238,705513354,140772,1035749001,1031012354,-2095948149,41156671,1586171903,4162322,-1645673612,-1235303424,1115652902,639137279,-12288125,1586172277,17286918,140413696,1991,-402618135,-2098659001,-1270429952,1988820992,-1306606412,1082795532,-1505589247,-2085337345,1980478590,-1303984407,-1505325824,209125200,-2081364504,-1073019708,1586179957,509702,-1270429952,1988820992,-1235303244,21006886,1988877963,-16742380,2122560582,-428458060,-971743605,-352305337,308185890,1946173315,-1961885950,1065554526,-385649408,921239395,-13375230,-955883893,-1962934009,1183518302,-1202287690,1468598153,274631426,-1962102111,-1995656170,39291143,-15436033]},{"sector":15,"length":512,"data":[1996427894,242679568,-15960321,1996425846,108461832,-402360577,-997983248,-1169782510,1575324510,-326412861,-402651464,-189256168,1996443650,1109321748,-1207647101,1183387412,-60912390,-2147431960,18873918,-1159199883,106859265,67527,-955752821,-1962934009,1183518302,-61436934,1468598153,274631426,-1962102111,-1995656170,39291143,-15436033,1996427894,242679568,-15960321,1996425846,108461832,-402360577,1183447920,1575324670,-326412861,-402650952,922693020,922681794,922685272,-1070919850,-62485168,-1231400938,-1995950588,1183709254,1186484474,347623424,-11526641,-402537930,-998030364,-129595126,544522251,1342242744,1347469355,1342177976,1342181048,-2082617112,62393028,937971716,46433244,536741574,5761025,-1017256565,-1192457387,770179076,-28930771,4634704,253016144,922701854,-1847066174,180650819,201082505,-1205832512,726663423,-1202696000,-1202716670,-397410290,-997991051,67352586,-605755312,-972897149,18873862,-1962933016,1438866917,146336907,752543744,29505279,1347469355,1342177720,385631885,79075920,1183385654,1958743032,16758816,1354771280,178256,964688,-584849328,-1207253885,-397409277,-997991534,-96039678,178256,257603664,922701854,31982018,180650819,200820361,-2096728640,1946352254,16758816,1354771280,178256,964688,-589305776,-1207253885,-397409277,-997991602,-1036583166,-25755903,737965823,1183666368,-1706027268]}]],[[{"sector":1,"length":512,"data":[137757878,-1946663287,1438866917,79228043,741533696,1358841485,705649312,817385700,-11526622,-402537930,-998030700,-62486262,544522251,1342242744,1347469355,1342177976,1342181048,-2082703128,62393028,-404205564,46433242,536741574,573618176,-1945324893,-1962101730,-1866244635,-1192457387,-706215602,1187468843,-956301176,1479238,-9271609,-2033778687,2424686,25315015,1753663232,-1979710977,-559801786,-553204215,113654281,-16774688,-558365578,1776832521,79987519,706365066,1996443876,144631812,-1996176253,20810310,-1206291200,726663423,-1202696000,-1202716670,-397410286,-997991451,141945098,-1202667477,-1202716544,-397410099,-997992522,73304838,-1957083253,1183406935,-128546314,1342177976,13482064,-677844912,184992899,-2130086464,8451694,16277123,-16091393,1996425334,-159973384,-1992165400,-1979775866,-63850,1996425846,-126419192,-386500865,-2037824958,1451884414,1976699776,1958742788,75924234,-1769799169,-956236026,33519238,2022098688,-385875713,1996423382,142016266,-9009525,-8874357,-2097151699,1347551450,-1958649880,1191380062,1599542109,-9795959,-9660791,261502719,-1070903214,-62485168,-1231400938,-1995950588,-2037675450,-1769210108,-2043019514,662044534,-8874439,1996431733,142016266,-2097151699,1347551450,692130792,1444542022,1720094200,1996443903,-1928795146,1358915206,-16222465,-15770058,-15770570,-401631690,-998031160,-1975088886,212743935]},{"sector":2,"length":512,"data":[257832703,257701631,-10045697,-9402739,-1919266794,-1995950591,-2037675450,-2043019408,309657446,706365066,1996443876,142016266,-2096468504,-2038233404,-2097021066,16742550,-16480629,-16345461,-8874439,108156279,-9009607,45632887,-1202696192,-397410099,-997992894,1958742790,-16848637,-10058099,142016336,257832703,257701631,261502719,-2092942360,1183386308,1975520138,-9639677,-629807024,-16595837,-1679259018,46433240,-1191224855,-11533560,-605551498,79987517,1433714699,1342378936,-402360577,-998031926,1958742788,52344900,74907472,-2093106712,-1073019708,716714868,1996443651,1034479620,184861827,-1205701440,-11533519,-1746402186,79987517,292864011,1342389176,-402360577,-998031994,1975520004,1354771217,1342177976,1342230200,-2083156504,45614788,28856320,1183535104,5244164,-713496496,184992899,-385649472,1183449253,1357130266,-402360577,-998045565,178180,1095760,13482064,-716117936,184992899,-385649472,45614566,-1202696192,-397410099,-997993158,1958742790,97577219,-2011674998,-956361082,989796230,-15169850,511115008,-15300979,1015474256,-1207647101,-1924136113,1358894726,-2093189144,1187448004,-1912602630,385816198,-96039600,381177878,79187968,-11526624,-1912639818,385839750,1354771280,563792,1183385654,1975520138,80603395,-1207608087,1347420162,1342229944,-2083209752,-1073019196,922691445,513413014,-2096613883,1962969214,610175792]},{"sector":3,"length":512,"data":[1183385483,-2008627206,-1706033151,137757156,-343259511,-1774780648,85891599,922683446,513409474,-955763195,-16662010,-1036090369,259325697,29505279,906305178,-1039743224,-1191182591,-397409469,-998036660,576621314,-768931957,-150992199,-2010118927,126585926,-235417045,-2010070400,1187417430,1183449230,-2075752424,8734406,-1551087987,378277118,113642752,-1928327933,-397374394,-998032346,218407426,-1928526430,161711174,186027021,235324941,1183649805,132665476,46433084,-1576202334,-4715248,-1070903296,178256,146296912,-152547328,180650967,1342242744,1342177720,-1202667477,-1202716670,-397410294,-997992483,-398014710,1183466511,-364476392,1357399693,1357399693,-2093186584,45614276,-1202696192,-397410099,-997993574,1975520006,578223895,706233994,1996443876,309788422,-2082300696,468388036,-15960321,1183457910,1357130264,-16353537,1996428918,-554637292,-15940477,45646406,-1202696192,-397410099,-997993646,1958742790,21358851,-2011674998,-956361082,989796230,-15169850,258521088,377916752,-1645719297,79987514,-9140537,-2037514241,1343684374,-9140595,1996443670,537180306,-1224781794,-2037514386,1343684466,1347469355,905971866,-954275064,33518214,1958149888,537180415,-1224781794,-2037514386,1343684466,906376090,-1975088888,527745035,1342242744,1347469355,1342177976,1342182584,-2083070744,1996425924,-716380022,-1593654141,270868504,-1975088896,1946161213,1958150062]},{"sector":4,"length":512,"data":[31759103,1183385654,538687626,143035728,1105744127,79987514,-14518529,1996430454,440830496,-1974410198,-11528122,922714742,922689554,922689552,922689560,922689550,-2037571572,-11469048,1189610614,449086445,193611401,-1205898048,726663423,-1202696000,-1202716670,-397410284,-997992875,-1971912950,-2083207704,1586168516,-2109306108,1968260921,21948675,1342242744,1347469355,1342177976,1342181816,-2083116824,79170244,736710660,-1773761279,213301328,2055638352,1183666431,1996443792,71731972,1342180869,1342819000,-9927027,74907472,-2080941336,1183388356,-1205802102,726663423,-1202696000,-1202716670,-397410284,-997992999,67483658,-733419440,-2096970621,1962969726,73305050,964839051,544493895,1342242744,1347469355,1342177976,1342181816,-2083149592,79170244,401100804,46433236,-1960681845,1183401991,407276180,-958904696,-969221818,-1207903674,-1924136123,-397354938,-998033200,-1807316220,1689899563,82966272,-515471312,731137675,-1980631086,-1031039914,179950123,82966272,-498694096,731137675,-1980631086,1183487062,-2010119020,1187439430,1183645924,-1202710824,1344147350,-16611699,-1070903274,-1202696112,-1202716671,726663360,-1706012480,137757217,193611401,-1205898048,726663423,-1202696000,-1202716670,-397410284,-997993223,-1971912950,-2083296792,-1070923068,1095760,13482064,-792401840,-1962490749,235209798,-2037559296,-397345102,-998033308,71731972,1342180869,-2093435416]},{"sector":5,"length":512,"data":[20775620,-1206946816,-1924136115,1358869126,-2093480984,1996424388,-1299804924,-169324290,79987511,-21854579,948496464,-1996307325,-1946190714,-1300052240,-1232400898,-2100887684,-1962213709,-956334922,16692354,15222471,-364460224,-2037579775,-397345102,-998033322,-330921726,-21854579,-1913764215,-1924077498,-397350842,-998033146,-126490364,-9271609,1996423169,537180410,-1224781794,-2037514386,1343684466,906376090,-1975088888,91537419,-375097,538485247,-1996484571,272468550,-1194757120,-1202715822,-397402085,-998033462,1958742788,258521106,538687568,934864976,184861827,-10127936,79231606,-11526624,-1912639818,385839750,104045136,1183385654,1975520138,56604738,538687568,931719248,184861827,-1206750016,-1202712728,-397402085,-998033546,1975520004,-92864733,505414840,1857486672,1921420799,-1706027265,137758259,193611401,-955943744,-1466,-1960550773,126483014,-1202667477,-1202716664,-397410099,-997994670,-443851258,-1957313699,10402028,-954014744,-2490,385763015,-96024832,1187446785,-1962924808,1627718726,1183535104,918788,922806352,184861827,-1955957568,235209798,1183535104,6358276,917956688,-1979399037,-2037905850,-2033778846,-969212061,16737414,84166283,-1924136863,1358914182,-2093591576,-2037578556,-397344926,-998033221,1958742786,73304868,709904266,1183469796,-1014280186,1342180869,-2097130520,1048774340,1946160302,-339727612,73304897,709904266]},{"sector":6,"length":512,"data":[1760055524,46433025,201082505,-1192856384,1344145886,1347469355,76192336,1183385654,73305084,709904266,1088966884,46433025,201082505,-1195477824,-443875327,-1957313699,7649516,1445068776,16664262,-2012854646,1187427398,1187396277,1996423350,-1270444796,900917328,-1929067389,-397364154,-998033850,-96040702,-506169,-2141131777,1962999422,-16520344,1988885070,-1267040006,188183644,-1192198666,726663423,-1202696000,-1202716670,-397410286,-997993959,16758794,112720,1354771280,1342177976,1342180024,-2083389208,1187384004,1988821502,-1270692102,-129564928,-772245877,-96039962,-1920187767,-397364154,-998033504,1975520002,-129594478,-2080749943,2080438910,-25264045,-1957858048,-422446474,-963874165,-1923304382,-397364154,-998033548,1958742786,16758862,1354771280,178256,1226832,-778573744,-1207253885,-1202716417,726663169,45633728,179851264,2129154048,180650961,33441478,1353991821,-2093532440,1183449796,1357130248,-2097147160,1183384260,-16389124,-2014578098,1575324510,-326412861,-402648904,1187455184,-956301058,1812000838,301090503,-230242528,1187446913,-956301068,18019910,-554154297,-96024823,1183711231,1183666416,-739749648,79987509,33310454,1183516276,-28931600,-1544534389,1183517870,1575324670,-326412861,-402645832,1187455096,-1979705628,-467007930,-1996472275,922746438,28839086,1183666176,-1202710810,-1706033130,137758982,201082505,-1205898048,726663423]},{"sector":7,"length":512,"data":[-1202696000,-1202716670,-397410286,-997994319,-59310326,-2083572504,1586168516,1464306436,-1947318647,1183405383,-1372127248,112652,-431583920,1996443670,82746084,1183385654,1958743036,16758815,1354771280,178256,1226832,-798496688,-16071549,-353829770,46433230,212743935,906305178,73304840,-548182144,503963320,73304912,726890495,-1706012480,137757834,-1191426423,-1202716671,-1202716544,-397410099,-1070871542,-1017256565,-1192457387,-1645740022,138840607,1076749354,-96040704,112720,1996430928,1227006,93690448,1183385654,-27358212,-15828993,2013203575,74972934,-11485141,31985783,-397389258,1183397372,-128546314,-1962654069,1446577750,1920563192,-163170043,-4689293,-1070903296,45633616,330846208,-1360506880,180650959,212743935,906305178,165591048,-1070903266,-1097183152,-1995950591,-1072956346,-558357644,726670857,1347440832,906267290,-62486264,503963320,1354771280,29268560,1183385654,16759036,1354771280,178256,833616,-816322480,-1207253885,434831472,1342242744,1347469355,1342177976,1342182072,-2083570456,95947460,-1092071420,-1950340147,-1866244635,58263239,243859456,646513667,914949125,-1979972601,-956077042,224774,-2130262272,-956301309,225798,1040631552,-950183164,2080653318,1107740476,-953467388,1023689734,124250171,-4713613,-1960422401,255469085,45613939,216619776,2067171585,1431786243,58924685,58328822,-1405192928]},{"sector":8,"length":512,"data":[1913123560,123463735,-1930939788,-166300409,537098758,652739957,-165483769,1090746886,-347202700,1007126552,-2147125955,17005070,133032003,-2001942157,-1007992057,1882622286,509443,58662537,-1927443674,-2147253450,829697852,1948400768,2047276551,1349845251,21465638,104457266,292750188,-788304735,54739936,529213144,-352288536,1845938022,-352321277,1200236126,1088696833,-670834479,839879206,1959332845,642990863,-1142415477,1064524544,-220052669,57542343,871038979,21465638,-784276430,651690976,-466483318,54583505,260712152,-921965262,1396903796,-400585946,1935343700,-498908406,1845938162,1560282115,244013919,1856045932,1882622723,1914080003,1948158467,1355020291,-1459123418,74776578,57411327,1962949760,108824,113707125,131950,-1336930581,-385895421,-346554220,17885187,-1007041704,-1977200299,-315488177,225757451,-402034803,141754972,-503312920,99351030,58797705,-1017292296,8290342,1157854208,-1018824981,58330752,-3610608,645939826,1357841274,721649057,2063991238,915101699,1015022461,-2145159936,1966800764,1845937928,-352319229,1065559582,639136768,67575,113709429,131950,-1813509653,233568256,1342893049,-4979792,1476396008,643286008,-1996193909,637760062,-2010774136,-1588592283,-1993997439,1012400709,638219521,637818249,-351908471,1963080793,1435051526,1011870468,1021867015,1021604872,637957382,-352037496,1963211837,58433806]},{"sector":9,"length":512,"data":[1166616128,1569465860,640412422,637826441,1342594444,38270502,-1341885439,638184196,33703926,45090164,1476449512,38270502,-402426864,-1017184090,71763654,-1960423424,1975520007,1381191703,1845938007,-1275066109,-402411265,1516240736,753621083,1947205801,1845937936,-402653181,1048773069,1963524974,134261015,113710452,878,-2096968472,151219774,65733237,-1450165013,326369536,57542343,-337117184,73656323,57556611,-1457294071,276038144,57542343,-739770368,1849590531,242551043,1948254377,1845937929,-402653181,1048576175,1963000903,1849590541,108331011,57542343,-1017642999,76174928,410304522,192231996,97408,80086389,-402003200,24315179,-487897530,1455642718,-1966044590,85583876,-1073083534,199756660,-352024576,-347716095,-1017226518,208896060,1114792252,1048017468,988536612,-1923676589,-2147206850,74712314,70532749,393483576,508711248,-1973046265,-17470,-1174403655,567148543,-1957144230,1166934365,742605571,1607935616,1019435783,1007186480,738490169,-104597456,1381191875,2139825751,92939782,74825738,149684148,57542343,-4980727,568853424,1532649470,1431356248,45241938,2095580298,-398822908,116850546,1946682234,1966947341,2122327582,1853161473,116789995,1947206522,1966750734,2122327562,1517617152,643492678,1962952250,1958742556,-347781552,1178215954,1178825984,642057354,1962952250,-347781575,2047276715,259276803,38270758]},{"sector":10,"length":512,"data":[125042720,8290342,639792128,1050615,977016948,-2144990859,1962934398,1007610637,638022912,973110912,-336002188,2100726021,1516173315,1354979421,1398166097,10283094,738641758,-956301308,273926,805750528,-402653180,376570017,168045731,-401050405,1701970069,168046243,-401836837,1500643465,168046755,-1957530149,-2096887266,527696635,168045729,-1975355932,70164936,964027402,378267786,-75299792,-2046659327,-1961432087,-1593562090,-469105618,-930472075,168046753,-1978239516,1694139368,-1031732109,1583023980,129040308,-335745048,-1268884721,-402411265,113769700,590702,-1017620134,67778189,1962884227,504359682,522080338,-1959264072,1478610390,1371742042,-1966525614,1958742532,155091003,259260420,1963064192,1949973508,1949187120,1007479596,1009153069,1008890927,-400657362,510852673,-1164902220,-487129078,292934155,242401539,-1075100015,-336013174,-336050683,-1047791359,1354979674,1398166097,-7804842,17908982,-402426530,113705193,1068,70125255,113704960,1072,70387399,113639424,-1291779063,-8919039,748901234,1960512004,-9705387,782452594,1960512004,-402476215,963837789,168046755,-164661797,33782022,915092597,2088764272,712322303,788481222,58263239,243269632,-1962802311,-1962671346,-1962670810,-385611978,585693652,-1554484481,-620100558,748769653,1977879044,2030499402,141820163,1064766524,-1070464395,58328822,1007449092,67662860]},{"sector":11,"length":512,"data":[1009545740,-1977059560,70164944,527819786,815919242,1977879044,-1580692970,-469105614,-393605771,-4956581,-1981282128,1527770107,-1325419426,-75569149,57542343,113639433,1509950473,1354979417,1174702678,-109723638,217990282,1953512480,1952529432,1970093083,1149914656,1008733438,1007055984,-351701919,2047770640,99288067,58265216,-29047295,-1017618944,-1957275824,-1979483330,1958742532,5761041,113647733,1577124935,1593836742,-966903317,643760132,67575,113716597,131950,1448617451,-1073085302,719854452,-401902592,41091419,1179076167,1956834027,312835,1883146567,1482644995,1946288297,-4960247,-840432208,1405311226,1042189649,637188,74712890,1106895427,1354980185,168069714,-399149888,712114455,973175939,-148501132,1946161159,24936477,202863872,1918975008,2004499473,-1973408755,-1325419312,-92084218,113706731,590702,-1396484006,1946165480,5367830,116790389,1948255098,2047276782,158613763,-116987058,1324876267,1405352131,1947024465,1946172461,1946827817,2105550373,510788098,-1977165005,-1014824099,964699652,856519680,160048841,20588099,-119405452,1532562748,-967748669,537097222,58336896,1948269791,1946762294,1949056050,1965046833,540835852,548407157,-339723706,2105550366,393347330,-1977169613,-922025139,62589812,975586048,-502828031,1495284984,1956823899,2047276547,91554051,58330752,-339723744,-2094101014,1960655619,1966029849]},{"sector":12,"length":512,"data":[-1974404846,1592328007,-1979354373,-78125052,-133305512,792464107,243271029,-130022534,1398152899,58146435,1344632064,1465012510,-164428203,12115598,-1943941789,131795931,1499094877,628381727,58013321,58138249,58013323,58138254,1946172547,1912879632,21248520,-336002185,-347716091,1583085803,-1957313761,-1957275668,1166738558,93016074,-1962779253,1435173965,141921030,65557855,-1957208585,92866174,-1996333687,1435042893,141920518,-1983608161,-1990718395,1599998533,-1017256565,106058576,-1899416745,-1191234623,11670062,-1942605875,906252806,72367753,-1307431240,909102338,73008780,1480493366,305051652,801965234,1778814006,1049179652,783811688,-855199214,109852207,-1992948658,-1710994370,26104,1241943094,1049179652,-1942617016,906257926,73678473,6691226,109852160,-1992948642,-1207673794,145887790,-1942605875,906260998,74464905,-2096707786,906628356,80479942,113718820,1160,-1979267274,-1711273468,26067,1980140598,1049179652,434635892,3205120,1358971880,1912623848,123689224,-346530982,214205188,1448135673,1660991518,119415245,906654239,75249289,2114358326,-1017618940,-1153171272,-768409600,-427810355,30310401,-851181128,12108577,113476,567136819,-1207841152,567100417,-852446013,369507617,-336067723,146712,-4520589,-1157370881,28835842,47360,-4849486,1397801977,106386769,921275218,75505289,-2060023754,1493735940]},{"sector":13,"length":512,"data":[-922025984,-318037132,803734901,-402396416,259129794,17819738,-771072249,-974650508,-2096829690,-336001340,1516177156,1560834809,-998024359,-2096829694,-872871740,911364944,75505291,1979710339,2942981,2011694059,-1274055936,47961,-466476595,-116996989,-75296533,990606591,-402164543,-998047568,57866502,-1017619622,-2095118818,460653049,-1977220428,522308885,-1310145910,520494592,-1977219213,567083349,-1274024968,1959332610,361375241,1229398477,536408949,105928643,519736147,-1327920377,-1359807462,-651492491,1540066123,-1017161721,-921976781,102649716,-1958693857,33129431,567093365,-1977200609,5957637,520494680,-1258813837,567099968,1031808668,-1962773222,-821957695,-268274,1364531947,-1946179864,567106025,199950963,125093947,1979246651,1572965122,666419999,310016,-2134703691,292880382,1971373814,-1928913396,-1190886594,-1572862,1460061182,2084488246,1962871556,1032005143,276101120,1912945190,1161438727,-117344511,-370456761,918751071,75892367,-1835803853,-1976109258,-147418364,-2096854474,91621882,-348667264,818053123,-1073004206,-620034955,-108839820,-2146536189,1965820540,922695174,-348060525,133792548,2088767093,108342282,-1825112266,300630276,1963719043,175931404,906392876,76756735,-768371903,-768367893,-13189069,-1023113674,-921972173,632562036,942014640,638219557,1946248504,1975794180,92939790,1946110952,1111967489,1457747273,-317994361]},{"sector":14,"length":512,"data":[911029620,76037763,-1976797952,805570116,21314086,535495285,74788924,74764811,-404016125,-2059501514,141950724,1229537858,65752911,1476394938,-1509077,1935237117,9169155,-2134209711,1946158716,1959332621,1195985158,1577184071,-922021653,-346160267,-425207,-919403915,1668611851,1359370069,-2093561549,297022,1156986997,141889287,-402490172,636158612,218580214,1156975732,108269063,201802998,2093222005,44230658,1156975595,91556615,-352098328,25749504,585630699,1493660160,1583177479,-998046485,-2093549302,297022,57804149,922682857,76023495,868417536,-2002700590,113718788,656522,1493073128,-1937274826,-75283708,-402426560,-906100216,230223221,-2021050870,1128465548,-1023281176,-164408490,-25114317,906589695,74759364,686539660,1946339062,-1127991799,-1014234024,322771691,1024356864,158793767,1690092598,-339506172,-1127991801,-1014234040,1979710339,-98281,-336002187,-2002569715,-18428,855638461,216791286,1946221443,5564419,-133904765,-922024334,-1695874443,33456284,1431447925,1347880529,-855310152,1493122095,-661976715,-855309640,-117314769,123667827,-2096698535,216532676,-346399488,-401682687,1583087611,-1185916981,-1070399489,-772296974,-1017161655,1963064195,1048786465,1962869872,-49895,911215989,906266785,74456831,906357592,74456831,-919397653,1962933888,1300899334,638184195,74790200,55413286,-117127293,200813427]},{"sector":15,"length":512,"data":[-2145815351,91553790,-351978714,87762435,166396533,-2096794551,-471137081,-2146798855,1979252734,2097358336,839283202,227157741,113653319,-1023409022,2088819507,326434822,-1937258698,1127030788,-2017053117,1126171788,1560325096,-768353485,-2112976842,155486724,527876410,-259342038,-2147007242,1149900148,-2021116406,-2092759924,58015995,-33521688,-2132052530,1946159228,139212813,1277823091,-1965979128,-922023860,1156982132,208998151,268911862,-1977219468,32196357,-2021116328,-2092759924,58015995,-33537048,-153389623,1971324740,1962281497,172263957,-1937274826,-75283708,-402426560,-822214620,1157032821,141889287,268911862,233505396,158650890,-2046390474,1976237572,190711,106021717,-1962467753,-1915014197,-402355138,91421486,-346486945,113541892,-161627143,1966081860,92939794,367542608,637957116,1342260618,638446584,-1073085046,1095173236,-114559509,861782869,918565842,76154567,-617414640,537347318,-1977211275,121959941,-1475447539,1124299904,-952729820,168069638,121959936,906458382,76154567,1491795978,268911862,-1960433547,121959941,-166693619,74744004,2145681475,-1979267274,-167769596,1963853636,113718791,656522,-1960432917,1435182597,121959938,-166693619,74744006,2145812547,-1979267274,-167769596,1963853636,113718791,656522,1074218230,1380985460,-1070450508,76289677,108208589,-1828272586,1149905924,1526237962,172279384,-77076436,1149814667]}],[{"sector":1,"length":512,"data":[-1878725878,201022696,855995611,1378726610,912114517,76154567,2095579146,869413632,1048786624,1962935436,8906784,906008296,77018879,-1967115455,-1998060220,922695168,-1975450473,2095580228,1048786432,1963000972,6285344,905998056,77018879,-1967115455,1625818180,922695168,-1975450473,1424491844,1048786432,1963066508,88377886,905987816,77018879,71600705,905984744,77018879,2091073,1426075368,-1338460989,-1944679168,1931595012,113718797,1164,-1761163722,-1950143228,1156973124,141889543,1979736893,6535171,110048963,-2009725812,-402357746,910817937,75632186,817366389,1094799360,-1942552778,1381090052,-1057325026,-1031141258,213126948,-494271765,-678748410,-2145443379,1962412794,-97064942,-930477197,567141002,-336010870,1912648706,-346465788,79987460,117425145,76566,131244,196800,327910,393475,459022,524586,590162,655737,721308,786874,852483,918050,983618,1049191,1114747,1180344,1245908,1311464,1377024,1442593,1508168,1770390,1835937,1901484,1967031,2032591,2098151,19661798,19727369,19792969,19858583,19924146,19989749,20055355,20120950,20186559,20252157,20317768,20383451,20449002,20514612,20580208,1226246075,1919902574,1952671090,1397703712,1919252000,1852795251,220793357,1970230026,543515506,543452769,1735549300,1679848549]},{"sector":2,"length":512,"data":[1702259058,1918967923,1752440933,1634934885,168650093,1225395488,1818326638,1847616617,1700949365,1718558834,1918988320,1952804193,225669733,1850281482,1768710518,1634738276,168650868,1225395487,1818326638,1679844457,1702259058,1701868320,1768319331,1769234787,168652399,1460276523,1229869633,539051854,1713401678,1936026729,1919252256,1868963941,543452789,1914728308,1869902693,168650098,1225395498,1919251310,1633820788,1886743395,1936286752,1953785195,824516709,544106784,1986622052,841293925,638192954,1850280461,1953654131,1936028192,1701998452,1918989344,544499047,1679847017,1702259058,976299296,1344342541,1936942450,2037276960,2036689696,544175136,1953394531,1702194793,773860896,168635936,1460276556,1229869633,539051854,1802725700,1702130789,544434464,544503151,1931503215,1702195557,224748398,1885688330,1701011820,1936286752,1953785195,1919885413,1852793632,1970170228,1718165605,223039264,168632842,543516756,1953718636,1818846752,1635197029,1869488243,1701978228,1919906931,168649829,705301795,1176513066,1936026729,1919252256,1633820773,1684368227,544240928,706752805,168634922,1393167656,1668445551,1868832869,1847620453,1663071343,1635020399,1646292585,1969972065,1768300656,225666412,168630026,1970499145,1667851878,1953391977,1835363616,226062959,168640522,1314013527,558321225,1818838560,824516709,1936263693,1914724640,761553253,2037149295,1818846752]},{"sector":3,"length":512,"data":[1376390501,1634496613,1948280163,1713399144,543517801,1311725864,220151593,1936019978,1701998452,1818846752,1702043749,1852142961,1696621923,1919906418,219613709,1818838538,1919098981,1769234789,1696624239,1919906418,219875853,1936607498,1768318581,1852139875,1768169588,1931504499,1701011824,220465677,707406346,1953451552,1818386720,1869881445,1936028192,1701998452,1818846752,707403877,705301802,707398157,1699881002,1919906931,543649385,1701603686,1919295603,1679846767,1702259058,976299296,707406368,223414797,1380013834,1196312910,1766203425,622880108,1997147441,1663071073,1735287144,1629512805,1919251558,544500000,544432503,1801675106,1965057125,1376390512,1634496613,1948280163,1713399144,543517801,1311725864,168640297,1936278542,1953785195,622869093,235539761,1635151433,543451500,1702125924,1225656845,1818326638,1948279913,224750953,1867389706,1970238240,543515506,1986622052,1886593125,1718182757,224683369,1867389706,1918989344,544499047,1986622052,1886593125,1718182757,224683369,168624650,705301798,1277176362,1769239401,1713399662,1936026729,544108320,1986622052,824516709,707403834,1124732202,1953719634,1936028271,1818846752,1948283749,544498024,1701995895,1667326496,543450475,1646293109,1937055865,543649385,543516788,1262698818,1663062101,1634561391,221144174,1359613194,1414743378,541413967,1986622052,540684645,1986622052,1530540645,1752457584]},{"sector":4,"length":512,"data":[1818846811,1835101797,542989669,1565732699,1345280800,794501213,1633958466,542991732,977350491,1702125924,794501213,1769224773,224224621,538975754,978071387,1701669236,794501213,1528847693,542985775,1564749659,168626701,1679827014,1702259058,538982961,1667592275,1701406313,1752440947,1919164517,543520361,1998614127,1751345512,1701344288,1667326496,544241003,1701603686,1918967923,1953701989,1684370031,1225395502,1919164448,845510249,1634753338,1717266548,1852140649,1566928225,537529693,538976288,538976288,1884495904,1718182757,544433513,543516788,1701603686,539587368,1914728308,1869902693,221144434,538983946,538989359,538976288,1936020000,1701998452,1768300659,544433516,1629515369,1931504748,1768186485,1952671090,1701409391,1852383347,1701344288,1952542752,168636008,790634572,538976336,538976288,1836020304,544437360,1868981602,1914725746,1869902693,1735289202,1634038304,1852779876,1713404268,1936026729,544370464,1701603686,1751326835,1701277281,1769152612,224748398,538984714,538976288,538976288,1701344288,1935764512,1633820788,1886743395,1718167584,1886413088,1919971186,1702125929,1953784096,1969383794,544433524,543519329,695494003,1309281582,1110384672,538976288,1377837088,1869902693,544433522,2037149295,1818846752,1814066021,544502625,1851877475,543450471,1864396399,1700929650,1701998438,1701344288,1701868320,1768319331,1679844453,778400865]},{"sector":5,"length":512,"data":[546703885,541142816,538976288,1699880992,1919906931,1864397669,544828526,1701603686,1751326835,1701277281,1852776548,544370464,1702127201,1752440946,1886593125,1718182757,543450473,1702125924,537529646,541404960,538976288,1699880992,1919906931,1864397669,544828526,1701603686,1634476147,1663071347,1735287144,1629512805,1919885428,1918985504,1919248748,1634235424,1752440942,1886593125,1718182757,224683369,538972682,538976288,538976288,1835627552,168636005,790634573,538976332,538976288,1953719634,1936028271,1819176736,1768300665,544433516,1851877475,543450471,1864397921,1634476146,544367988,1851877492,1701344288,1701868320,1768319331,1948279909,778399081,541002253,541929248,538976288,1699880992,1919906931,1864397669,544828526,1701603686,1751326835,1701277281,1769152612,543515502,543516788,1953718636,1667326496,779122027,541985293,541994784,538976288,1699880992,1919906931,1864397669,544828526,1701603686,1752440947,1847620705,1869357167,1919248238,1769497888,1864397939,1752440942,1701060709,1852404851,1869182049,1768169582,221145971,538986762,538985519,538976288,1936278560,2036427888,1768300659,544433516,1948282479,1646290280,1969972065,1768169584,1948281715,544498024,1668571501,1886593128,1718182757,1952539497,1936617321,235539758,574524679,-1212055203,100780808,-65258,1158742020,1852142712,543450468,1869771333,824516722,1049429774,-1048353314]},{"sector":6,"length":512,"data":[100846368,-65258,1343094788,1702064737,1920091424,622883439,-1928917455,-2090466754,1439374785,1448602763,-1962639733,-1957688763,39684869,-1962652277,1972045397,-1705681144,21684,2123061085,-1996125946,1300824669,106268932,-1626835575,1166656650,1166628876,-1956684278,1438866917,1448602763,-1962639733,-1957688763,39684869,-1962652277,1972045397,-1705681144,21994,2123061085,-1996125946,1300824669,106268932,-1626835575,1166656650,1166628876,-1956684278,1438866917,-1070338933,-1962699800,-443874234,-1957313699,-390056980,-397016188,1586102290,-1946211836,-1978879946,1592011264,-1017256565,-1192457387,1709703178,-1070901757,-1979824503,1048837190,1963001214,-373282043,12058802,-1377284095,46433044,-1207170397,-397410048,-998042464,212902658,1342178744,385631885,212121680,-778416098,-1995950583,-1072956858,1183516020,-948311046,63046,-1946788213,-1978922442,8975942,-1946788213,-1978879946,8975942,-2114566401,16840318,12115580,1183666177,-1588586756,1344146608,906599322,-96040696,-1166688245,-1995657055,1187510342,-1962934026,126548062,-259267542,1962309177,169773833,-163149300,1191116936,-129564682,16154241,-941851647,17137158,-11933440,1575324510,-326412861,-402652488,-950664560,65094,-771852661,-1531150106,192217100,212188288,721712384,-1960449088,-422445450,939804298,1997317252,-1518061557,-1207602676,216727553,-2080487681,1912995454,-18233,1575324510,817103043]},{"sector":7,"length":512,"data":[37495245,550306419,-1962348865,721420854,16679415,-1107070448,-1896214528,-1631288873,276036386,-135782634,1354773249,-1207666968,567102719,922674307,92677769,-2111403722,-1312388347,1222693636,92316470,915011331,-1014235134,-604512725,567102132,-148992970,-66644475,-1190624577,-819256672,-1426866125,1005068054,-400615936,31982482,-1232126,-16377802,-16378314,-402254794,-397371518,-289931038,-1193767416,-952762365,1946518534,2078822505,66971649,1342242744,92542719,567095476,-1207567965,567096576,98901641,99026572,12066574,1754446373,521544141,127667851,109981411,-1960442377,-989844426,-1945657850,920335322,127540991,521536883,906055145,128059077,62642828,520041984,521537434,100075150,739150630,-1909005568,654259137,1946172800,833836,-217720642,-1190431578,-1070366721,427142898,503768555,-141877497,-1408892737,-22244968,1208054976,385344170,310047,100706176,1140897983,175251917,1954595574,9404421,2034974726,128368359,-402151745,-1497497438,128368391,-1023374616,-1091794091,-1463875416,8251400,-1090017602,1961363368,1426320128,-1463882613,128499463,-1107269912,-1463875672,7137287,184596968,-2096401216,1962935422,71747333,263782655,375552,100698102,-1274776575,1126288702,132707042,71731968,567102644,127667851,45811683,-1709244672,382017031,12060133,522308901,102907520,504198144,-989453408,-1274665962,522308901,1945582531]},{"sector":8,"length":512,"data":[-1957736694,-597235,-1007490095,242480955,-1962610813,38079237,503313012,12840683,-1192457387,-397410052,1048773243,1946158632,672595716,16758790,40495184,-1017256565,-385875272,-1957036453,1926769628,706624266,-1962642938,870449123,-28972608,-1175047338,-466485182,-533549828,-192873502,-401771435,28901294,753422336,112642,110084958,45745708,-115984384,-1909885947,637925126,2885262,102499980,-1181106125,-13402112,1974382322,-1991817221,-1190782402,-1359806465,-779365897,-1107295809,512622721,1017906679,1023112224,1022850057,175076365,1198224576,540847182,154986612,222094452,-1073062796,574380148,1547445364,-347995276,1103705060,1952201900,1948400890,-338623740,-775844909,-1462692887,-339053311,1017925121,170619917,1009218752,1018852386,1107522652,-919343893,1547480129,574421620,-788331404,-1047798805,-787224111,-764083800,521574379,101990025,-783821053,-2133392409,-500433182,379831435,64523014,906434299,1128480649,102381253,-1073042772,-2118190475,512636416,65734135,-1398095821,-76275652,-143390404,58002748,167804905,-352094784,-1992912775,1313030975,1948269740,1946762459,1947024599,1958742626,1948400734,1952201767,-454317565,-1404974797,-93037508,108274236,-1426891600,1555091947,-1426855471,581961331,1321593770,1947024556,1958742574,1948400682,1952201911,-320099837,-1404974797,-93037508,108274236,-1426891600,1555093995,-1426855471,581998195,869133226]},{"sector":9,"length":512,"data":[521579200,1991,103556863,1441565525,100081294,-1047803597,-108271221,741772105,1962281728,650546704,16000,-234458112,1974355374,1083655674,-41157084,-989600303,-1084809450,-2048393207,-812949760,-133956213,102248073,-561117410,-481692109,993820947,-1996131261,1162150014,-1073042772,-303891851,369118857,-443851489,-1957313699,509040364,72780551,-1392004930,276087355,208967232,-1178586217,-1359806465,-336857205,-1956749418,46292453,-326413056,74907479,201313256,-1844153152,-1070335349,-218103879,1238497198,-1275067717,1596050752,-1034033781,-796196862,92669443,104412530,628295040,1342181125,61987025,-645076781,100081291,-1056715989,-661929074,567102132,605057624,-2136782608,780899589,369165702,-1950153338,-74323513,-1070394510,-1017256565,-397346701,-1957167080,1942183397,976903,-1711276104,-1017256565,32039986,-56442112,1977879045,-113344477,225575685,225649212,91365436,132842928,1980972176,-1156337662,-1730738642,-1023020637,-135543670,-2081649835,1448543468,721831102,-1877611521,-2096741130,-397014156,-998046928,24395778,147227463,123483705,-947132813,-443850914,-1957313699,149717996,1287542359,105286918,1459373705,-2097026584,-125107516,1342588557,1443133183,-2096930328,1183385284,-396929288,-998047150,-129594620,-443850914,-1957313699,149717996,1988843095,121932294,-96040552,1143850635,-754732794,-775386120,-775879712,115607008,-151501175,1954743876]},{"sector":10,"length":512,"data":[105182726,-2146732992,-1205860788,283770879,1157009409,-277544698,33967232,-284793728,1149878315,-1980200190,1157037182,1601506310,-343810421,61933124,-1014236205,-670833711,-2013862959,1963001572,1291747654,-2130283514,1963349246,-92864717,-2096070680,-1073020220,117386613,-25098686,108332620,-351663432,817401860,71600416,1586168969,38258680,130417152,-1878463743,10283094,-167590781,1963460164,-2116121831,-1324989205,-1946430717,65262019,-152841768,17228935,1015763060,-1962640341,-1992293308,-128021756,1208108939,184697993,1460895487,-16485121,-1914111370,113541899,-335788407,1586204698,8910586,259268614,1342177976,1347469355,183822419,-1962359677,1183450204,-351827964,29331479,1355254528,1342457485,-386238721,-998044848,-62486266,1962704441,-18093821,704923274,-1956684060,-1866244635,-2081649835,-1957297428,1143800902,-754732794,-775386120,-775879712,115607008,-1191295351,-397409792,-998044580,73304834,184829833,-2146470720,-1962408369,1204289118,-352190462,1586204695,105873412,-28931324,71797056,-939630965,66119,-1962647925,71601139,1204225929,1577058306,-1017256565,-2081649835,-1957296916,117376118,-25098686,141887052,184436423,-1878201590,106233473,1187456117,-165662466,1963722308,-2116121831,-1324989205,-1946430717,65262019,-152841768,17228935,-1070922636,-963955221,-1324989395,-1946627325,65065416,98619841,1183385316,-28931076,-1996209015,-60912892]},{"sector":11,"length":512,"data":[-1996357448,1149829703,17286658,33967232,1577058744,-1017256565,-2081649835,-2091515156,1946158206,108953947,125044300,1409711745,-1955171066,1200227934,-397371385,-998044004,1958742786,105286500,-1324989395,-1946627325,65065416,98619841,1183385316,108462078,-2097132568,1586168516,509694,149447,106859264,-1070861429,1200161929,-1876235516,-2130289013,168428671,2139162484,1965043716,122128920,1105744024,46433038,158646283,-402229505,-998047736,-443851262,-1957313699,82609132,1988843095,-1962988796,52692548,1182073404,134628598,-561309323,105180033,-70057039,-472792181,-472786941,115640310,-1960348671,71576324,201082505,1343979200,-1979419393,1352140612,-2096536600,1178273476,-2146994948,-1088420276,1150025727,-956004092,580,1600046987,-1017256565,-1192457387,568852836,-1957275655,-2037578122,-1599865186,138840840,-1962372957,-2069691322,-1710831864,-956301304,563206,41740544,1948597376,39381251,144443079,-1070923775,-1559720797,-1767700344,143303432,-1559718749,-2036135790,142779144,-955740509,537437702,24936448,1178367280,145098439,871039024,1965767808,-1945698547,-1845049592,-352321528,1015058466,-2096270048,560190,117380469,267061394,142739199,1015024107,-3050195,1174965766,1352139914,-2096630296,-1073020220,-1202263947,-397408094,-998045850,-2081387772,565822,117378173,-1566504818,-1546062072,1015023778,-14453458,1174967302,144488534,121432144]},{"sector":12,"length":512,"data":[-1962621821,-1673624592,175964168,144443079,251592705,76155028,4603288,1312633460,1026913280,544473192,1962961981,-1979267322,-2097151480,559678,1015022965,1174500684,1962949760,25749787,143263431,-471138303,143263431,-605356016,143263431,-739573752,-1986526070,1040096390,175374405,1946175293,5782789,117377397,-2038232952,-1960771940,771660934,356319331,-385649152,-1073544940,-1476448621,512455654,529205392,-1995925343,-1878621433,1776878088,117411841,113707158,2178,1342180024,-2097053720,1374225092,146313217,-1863259392,143001343,143132415,143933059,-955681536,17341958,-1878529280,144574151,117374976,113707156,264348,143277699,-385649400,-1070923640,-1995928925,104463430,661915810,-1995922783,1048837190,1946159246,-1576614135,-352321528,780374034,-1593505630,-1073018718,-1070923139,-2096586077,34115590,1342181560,-2097086488,985137860,-806858752,46433027,16547459,1048781428,1946159246,-62485739,-1560279763,-1073018718,-1070923139,-351755613,113741831,2210,143666819,1095684,12511312,-385694589,280559391,-13637376,-397361109,719913442,28872959,-1863062784,-23283969,-385697304,1048837913,1946159242,1321634563,-2142765429,91488317,1965374848,734497781,1444827334,-2096894488,-141883708,1946172544,-42145533,144195203,-1957071616,-167214050,1948255815,-18353,1938968043,1939370670,1939370904,1924035490,1940026274,1940026274,1925345942]},{"sector":13,"length":512,"data":[1940026056,1938322338,1923773346,1940026274,1048802178,1946159258,-1740733677,276103176,142876299,537282550,82556789,-1868960954,1577621665,1575324511,-1957326653,418153452,2122536535,74713604,144049919,143277699,-2096663550,268995134,512431733,126552208,-1996335221,1451883590,-1878621186,720045064,144064131,-1961790464,-1962373090,-62486265,16664263,-1878070528,143662731,-1986459765,1451883590,-1878621186,1048773128,1946159234,-62485747,1962821131,71731973,-1070923029,-1962367837,-2096586698,562750,2122525301,612172030,168066691,80090997,1183532589,-27882500,-763111177,-1982138624,1451883590,-129579010,99287041,16271047,-398029568,1996486795,1996445444,-59310082,-2096508440,1048774852,1946159252,-1477945567,46433033,144445067,1317652523,-1878660108,1177552070,189383051,-1980399680,244053070,92932232,-922024824,1631324020,746587004,-2142812640,1962999677,-1774287895,343212040,185109665,1946718726,-125926645,-1207601920,48955393,-397361109,-998047054,-1956684286,-1866244635,-2081649835,1448546540,294531,29234292,143696128,-1929886071,109312606,-385742704,1048772753,1963985034,-1877046505,-1962439928,1183384151,-94991880,143656579,-1877611772,143662731,1183385483,-129594884,-2080743796,34115590,143277699,-1962052336,1175189574,-1206618630,166397790,16547459,1706559861,-129595129,-1946526068,1452013638,-230258182,737433225,-1808385546,-1961069560,-351757298]},{"sector":14,"length":512,"data":[1589940238,-230227982,4161574,994448756,-351240498,-1002008339,1191178846,1065363186,-1946979072,721986110,-1908505602,125108232,18802775,1443021955,-362753,1877538934,113541889,143539843,1460106240,-2097085464,1599996612,-1017256565,-2081649835,-1868495636,-28931832,1728347779,2122516084,74794756,48955824,1183367210,-1807842308,108331016,144443079,2122317830,225706236,144457347,-955878144,17341446,-2009661696,-1674117368,74907400,144717567,-100609,-2096658410,2122320580,309592316,142753411,-16026368,-16211914,-2096657898,1048773316,1946159234,-1673624814,192217096,144717567,126752511,-2096970621,134778886,144967367,-1935605760,-1845097720,-15502328,385875574,-998045808,1958742786,112645,-1070923029,17360976,-1017256565,1458342741,144326275,-1959824128,-16219106,242745935,-1962654070,-2012741833,-337368572,-11300853,-1779956618,79987702,-16288448,-351757818,117411845,1566443672,-1957326653,49054700,1048794711,1962936474,74877769,1115616779,922686955,922683524,1575487654,79987702,-16485056,-1962370554,-1073000762,512431742,1342113924,-1596229630,1066076326,92801023,-588520406,144326275,-1962445568,100729926,1599998104,-1017256565,-2081649835,1448542956,-2096597365,563774,485183605,142882559,637820612,1352140682,-2081030168,1967129796,-1710817532,71761672,189712011,-1961003840,-16219106,-730332593,637820612,512427914,1066076292,92801023]},{"sector":15,"length":512,"data":[-756292566,144326275,-1962445568,100730950,1599998104,-1017256565,-2081649835,1448545004,144717451,1183432747,-96040452,145112707,957904176,1946719238,-2046412526,956724232,1963499014,-1509505274,-1962926072,1443406398,-2096733720,1183384260,737684472,1048773758,1962936462,758939672,1048777589,1966082214,1352182796,-2080465432,1325335236,-1505852424,192163848,125763339,143539843,-2095483904,1946158206,-96010490,-2097127448,566334,1191118452,7006460,143539843,1462138112,-2080464920,2122515140,158597124,16416387,904397685,-1539407104,158597128,16547459,1038615413,-126419200,-739748322,113542142,143539843,-955419648,537437702,1642616576,46433278,-443850914,1048822621,1946159244,2865157,548930539,132665344,46433278,817402051,-68661248,46433277,144981635,-2095614704,559166,1488455284,-1878725888,1342208184,-2080514584,-1866267964,-2081649835,1448543468,-955877749,130630,1965702272,-1877046513,-2092987640,34115590,-1874269370,1965898880,-28915962,726073343,809271551,1015035260,959479609,1963496510,809271307,113706613,3147942,-1952971638,-773729841,-774962207,-2084043807,-108318487,809271366,1015022972,-1948156359,-268960186,1586231435,-1958770428,-1956684090,-1866244635,-2081649835,-1101659412,1317668716,-1878856956,3964998,205130356,28898933,-1878791424,-1956724693,-1866244635,-2081649835,1586169068,-31573244,-1207602683,720046336,542455,-2092403584]}]],[[{"sector":1,"length":512,"data":[1946159742,-1949748454,1107409105,1265770957,34227959,51279104,1444087366,-1205307128,-335997440,-27883210,-1946401143,1107474641,1174610381,139858694,1317735801,-61436930,-851312456,-1948718303,1317733974,172395016,567100084,-1484782222,-369293824,-1957301563,149717996,990142091,1912995358,151042055,-223352327,100698102,-1207208928,-919387646,567136651,-2013861006,1954547200,106335086,-1070397666,-1979824503,1476197446,-1946514602,-127497742,-485994869,-234180524,-397773394,-1472397100,-2092403200,-594869524,1023541434,57868840,721453242,-1949004830,-1962469638,1017907278,990671882,-1441172229,602469602,-1335760128,1979398925,1632259,-16076630,-471073722,-352317976,-346071326,860220245,-308418112,-1957604528,-473289777,73304848,567099572,1174474098,1958743038,1482381574,-2084308341,74647748,518719924,100698102,-1962183616,1065354846,-133991142,-1191637781,116071424,738084491,1720450118,-379625736,1317794257,1976109832,-373191931,1452011973,-851397626,-1274776799,199551753,-153061952,1074135175,-628422028,1964654464,-806619133,469809401,-1587951125,-1002764758,-1003813261,-503326473,-85213133,-1947432107,-620034978,1333789812,-443874818,-1957313699,-1151904020,1065551730,506033408,374791,1963029480,-1715457275,608183531,124953598,-1777896285,66759,-955988349,-65980,125318793,-1945874805,-390033704,1583284233,-1017256565,1090572009,-511640972,-285637634,2005660275]},{"sector":2,"length":512,"data":[-1951532030,1946265854,-1053079486,-796191373,-1464995837,53769217,132546,1149892491,-1947800578,51148030,-28538375,-1991720661,50719493,-28508423,-628308341,-784608884,-1943665292,-1995997154,650314367,126224070,-115454,-24435340,-1464995837,-1947044863,-1053079298,-796148365,-1464995837,65172481,132546,1149892491,-1947800578,-1073018809,-661781388,-31058709,1946650126,-1931965423,1959214039,512632325,931858300,2005646571,-390057210,-969211798,19139956,-392675264,225706078,-385987074,91488284,-347189610,-1931965287,1958820817,-2136791548,-1995994361,-1070398905,-1957575783,27852357,-936705164,-1170128567,992378879,1980203542,1978323204,63015925,51737286,-150113598,734143442,846022,-755562379,-445257007,-1017528269,501764434,1461220352,-259260789,1153954307,-1979711746,-695531913,-1991583957,1499004501,1347666778,1377751603,28856402,520507392,-2097147928,-92075836,1532633087,-771030412,-1957363517,106387180,556675,-2034288523,106334981,1208239755,1407715189,-349736448,-701068472,292833285,225769275,-1996340085,-397013946,1935540282,80118576,97975937,-771029901,-4716939,501979647,-1014769013,-1310994161,-1259613437,1914817864,76124905,-1996335991,856020534,1583286208,-1017256565,-1962127733,38550007,-964490124,-687963900,-101550843,-628408341,963779587,-1047604341,108394299,92282425,-1014815117,-774123249,-773074453,1979137003,-1579613431,-668269065]},{"sector":3,"length":512,"data":[1253359758,225583565,74839867,92280457,-1962637422,-1957313583,-1948808212,-1898410786,75402176,-4603853,-1917914369,2123104117,-18170,-772296974,-24643285,-150714741,1946157510,-783703038,329642985,-1952123959,1576700915,-1957363517,-1948808212,108432350,-661848437,-1070350194,-218103879,-1949173842,-947190658,41157032,-372160092,-921459213,-208952077,-1017251189,-1947432107,-1931572265,-1950314792,2123039862,-1178586362,-1359806465,-114568713,91530995,-14827493,-1946973185,12803578,-1947432107,-1898410793,75402176,-4603853,-139529473,-1953412655,12803578,1458342741,-385830057,-1957363384,73305068,100539963,-75296387,-166953984,1074135175,28837236,855829248,1575324608,-1957363517,-2091428116,1187384044,1183567350,-146372604,175383868,108275260,-872921402,1187384555,1187433466,1187398905,1452033272,-163148300,-1947056503,92997246,-1962779253,1435173965,141921030,1426750859,1576165119,2123061244,-1996125944,1300824669,106268932,-1895271031,74582597,149681715,-1091713560,92995585,-2096335479,1583286980,-1017256565,1458342741,75402071,1569392011,72190722,-1962519157,2106263669,1461832970,-1996063093,39684357,-1996206711,1971914325,172330760,-164428686,2078804203,114413,1971914123,-1956749556,12803557,1458342741,75402071,1569392011,72190722,-1962519157,1979648117,142510858,1569588622,567107334,-678683049,2123095950,-1895461880,2123040325,-1996125946,1300824669]},{"sector":4,"length":512,"data":[106268932,-1895271031,74582597,149681715,-1091756568,92995585,1594652041,1575324510,1317732547,71731978,-1962518901,509020286,177470471,-2095876928,242551545,175755787,-139842128,13796315,-141829385,198325138,-150833984,-235432975,80971666,1983462448,-1440283646,-1022639477,92856949,92712015,-1912650616,-952434364,1599664754,1575324510,-1957363517,-348539668,-326413051,1451965364,-383660796,-1957303174,-1959086868,567084118,272494963,-1829997312,1124567699,175374396,74727228,-243979716,-107871310,-1957308949,-348146452,-326413051,1586184372,172919556,106349854,1914642893,207522565,938018697,-1957363476,105286636,185228939,140413912,1183517557,-1947994364,146955749,-1947994368,71732168,51013367,71732168,-788274185,-1034033781,-315490296,-523172125,-85798191,-1957363517,-1957276692,-1073018298,1317737845,105286408,-235417037,1183570059,-1947076860,-1959203885,140413896,-1962518901,-372177850,-355345455,-921970479,-201853835,1727525003,1183551754,65468168,990671569,125240918,1178273394,1308718596,1586942515,1575324507,2242,1408011093,185222795,-1961527872,1183516750,-137219322,71732209,-1031015945,1173082675,1586219147,106334984,-788248949,-774123031,198758890,-134974007,-137851917,-141489562,-788330394,1446710386,1913091846,71711499,1177224822,173415176,453264939,-621345194,-628893449,-443852032,574045,263258472,1694513664,-1157591040,285271552]},{"sector":5,"length":512,"data":[80897,1408011093,1465274961,1427506718,-1912070216,23576280,-1006630727,-1960438146,-49915,20779892,-1960610816,325616,-1206160000,652804102,46564097,325449,-2096401280,-169737530,-385874760,76218641,-2147480447,-1551892699,2126774278,898180630,567095220,663177,788108,919238,102140673,-853888000,176079905,-1559917786,-953810944,1023410181,57999360,-989802775,1317739094,1308669972,57876941,-1207910167,-661780449,-1559345525,2126774280,37652752,67537920,137265920,108208896,-385873736,915079325,1053032454,1149960194,92874264,71665958,138774822,638993547,637683081,637945225,-1962261111,-1993991612,-1993995195,1149964357,1166616092,1166616078,1173825042,1946287888,1702962700,654180368,1066369,-1967115518,-1993992892,213455941,47872,1008615562,638022656,1125597576,-970525982,-1962928319,1166550723,-1980038378,-1946156482,-1006631930,-14284162,982789,-1207012352,567103232,1053034866,1491664898,1354771455,-1912070216,238977240,225705984,919238,169264384,-853888000,391993377,1583292167,-1956947622,415915493,-326413056,1448235347,369499735,274631509,-1962125627,1085540942,124920269,-1996065083,1572875012,1595868951,1532582494,-899816053,-1957363700,1381061612,102651734,1455772950,-851332086,721580577,118971840,1516134175,-443851943,576093,1408011093,1465274961,1427506718,-1912070216,108432344,1963064963,23576067,-2147482377]},{"sector":6,"length":512,"data":[112723573,-1878529280,2147427457,392020019,1583292167,-1956947622,46816741,-326413056,1448235347,369499735,49054549,673527,-987007872,76160118,108159292,41122620,1093459972,456921714,-466481549,-654884800,-1994885435,13363460,-385875016,1455751367,1124120604,141763021,1946157629,11921731,-973189495,80155766,1183514625,206092,1946157885,81162,37555060,-1204653056,-1863778292,343328000,1223,-1961077051,1035209286,2104631757,-1994885435,-1872434428,621561483,272433168,-1207536640,1709899788,343328144,132295,-1961077051,1018433102,1366434253,-1994885435,274121732,-661929588,-851311944,-985763295,478877814,722753221,-851397431,-986811871,478877814,567099060,1455760242,172395292,567098804,1992628082,-1962637032,-1193606184,-661780266,-1979824501,721421447,46433216,520558429,1499094623,1575324507,1426070218,1364454539,509040210,-1202383354,-661780254,-1962931010,1202982486,863117773,-946937972,-1191179073,11534464,-1162939652,-785710976,637959876,-902099573,146278003,-1877939456,-1993946485,176079893,-218100546,1572875172,1595868951,1532582494,-899816053,1426063370,1364454539,509040210,-1269492218,773967129,-1744594270,1074427589,-491256695,-1915187704,503359550,178263,1354771280,906459290,-1472299000,57933824,-134091783,10880711,113704960,164,-1507929700,517053696,113705126,131212,-1275067713,-1944679666,-1272853248,841075993]},{"sector":7,"length":512,"data":[-1945748508,-133991424,-772210197,-16735075,-2097116154,285248574,12573052,-1942060288,-813819392,-1976693068,-855401962,-754536159,-1593793490,512426148,521011366,-1996065083,39618820,392020019,1583292167,-1956947622,147480037,-326413056,1448235347,369499735,240567637,-851246920,-989236703,210307702,65781803,1560281784,1595868951,1532582494,-899816053,-1957363700,1381061612,102651734,1455772950,172919564,-851246664,855929377,1560341440,1595868951,1532582494,-899816053,-1957363702,1381061612,102651734,-1006217962,-1047786410,172395271,-1273995637,1914817858,108446986,1418265737,1572875010,1595868951,1532582494,-899816053,-1957363700,1381061612,102651734,1586189590,142001422,-1962388341,28838476,1914817879,1572875010,1595868951,1532582494,-899816053,-1957363702,1381061612,102651734,1586189590,-138179834,-1207469608,567098880,-1070923150,520558429,1499094623,1575324507,1426064074,1364454539,509040210,-1957358074,-1007219618,108265487,-2081365117,-75296573,-787778560,-773074453,-336866837,12292100,-850873328,-989367775,76089462,392020011,1583292167,-1956947622,147480037,-326413056,1448235347,369499735,240552789,567097012,1979711293,5748742,1351643883,1342759608,-1407284961,-1441363712,-1341224704,-1365026816,205949696,108265788,-352299080,1183551567,1195270,1874331261,-1874728192,721977028,92874432,38111526,721733507,1166616256,11444482,-2096789210,-1432288057]},{"sector":8,"length":512,"data":[92874240,-1993949141,-1398734267,1166616064,650128132,-1593424503,-1993998160,-1070921659,520558429,1499094623,1575324507,1426066122,1364454539,509040210,-1202383354,-661780449,-2096073077,57999870,-150902850,1971322884,440326,-1962871831,-1670860,104237439,-852511744,169773345,201755648,235324928,378208512,448004102,2126782925,93005318,637534371,1479,1962934333,12118275,-1559607669,2126774280,37652748,67537920,1325447168,57876941,-2097111063,587204654,146278003,9627904,407179,147140,639124619,-1993996919,-1993997243,1149962309,1166616086,1166616066,1166616070,440699658,205883686,272992550,639386763,638469513,638731657,-15710729,638350337,1074561,1166092030,855769104,356813504,340101414,-1157624647,1082785792,1946172446,1099441671,-220052713,390186534,650349312,51791240,37652987,67537920,108971008,-16384218,1946157070,-10884861,-1202667477,-661780449,933504,-972196864,3590,661189,567089844,118971736,1516134175,-443851943,838237,1408011093,1465274961,1427506718,1023821451,1702166528,1023952523,1568407552,2130707261,-841446593,4035345,-1324974336,-336866546,81229,78711423,229762003,1055648723,2130707005,-754405108,-754011677,-339476757,212269,246483583,263316435,518777811,1946158141,343316,-1174007937,-1030819840,-90074,-335795193,178181,-1070921749,-2012580155,118971676,1516134175]},{"sector":9,"length":512,"data":[-443851943,576093,137758902,137758903,1408011093,1465274961,1427506718,1023952523,108265474,-352321096,1183551548,81158,71109492,-1207536640,703266818,891533456,1992630733,-1944286962,1455751748,378088978,-1943140340,-1945629154,-1160081718,599263352,723635493,118971840,1516134175,-443851943,1100381,1448543774,1397838421,149862480,-1064380274,203357998,1499158536,1600019802,516890375,1431721734,1347637586,-1912017224,784371416,135012095,1515805528,123690589,-808464609,1408011093,1465274961,1427506718,-1912017224,891599064,-1993465395,772338974,150406796,-628176244,-1207371334,567092516,392020019,1583292167,-1956947622,46816741,0,-13722624,1007219998,-855476990,-1957310685,1381061612,102651734,1586189590,1459664910,1886527949,-1995934011,38570260,-1996204919,1418266188,172787976,-1174404935,1586167808,1107408910,1282548173,12144722,47616,-1207017845,567099906,-1995934011,1418267716,33532174,2427252,33555966,-1996434813,1418268740,-1957078510,12062302,1914817858,148289555,1586223246,-1948581106,-1996487545,-1070918586,520558429,1499094623,1575324507,1426066122,1364454539,509040210,-984279546,76221046,-1962510651,1017908814,1007252065,67466107,-12285728,392032482,1583292167,-1956947622,181034469,-326413056,1448235347,369499735,1660991573,292692429,-1962508604,76156494,1174767654,871883335,118971840,1516134175,-443851943,202033757]},{"sector":10,"length":512,"data":[1593881098,18132993,620802560,1397600256,1853182496,1835619373,1766596709,1918988898,539828345,2037411651,1751607666,1663574132,959520809,539768888,1919117645,1718580079,1866670196,957444210,-1912557056,553627648,16780544,4337408,788545839,1160708186,4992768,788551983,1345257555,5058304,788549167,1060044868,1414548480,1347158065,1342190164,1124093522,1308642895,1090538581,1275091029,976311376,1414548480,1342192178,3821138,978210627,1280658944,1430323258,1543518808,774528000,6029354,6029404,774504540,1347158058,1275081044,3298384,5132880,5132099,5002574,5788993,827609164,1347158074,3813972,978211408,1313817344,1431175226,1090533964,3823701,6029312,2752554,2764330,1543527424,1262698818,1543524437,1128350208,709907787,1061109550,1128350208,1230001483,1077947972,655424,1313817344,1280266836,1061109550,1124073216,1430995777,776227152,4210752,2764288,1262698818,1145655381,1077952558,1296189696,776948034,5066563,1145913929,1127109455,1124093263,1095585103,1127105614,1291865423,1397703763,1398362926,776947968,5462355,776228163,4544581,704643164,1162095146,709317954,1377839658,1869902693,1713399154,543517801,1702125924,544434464,1681010725,842016045,807742820,681010,1143613994,1196769861,539634218,1970365778,1702130533,1633951844,1763730804,538976371,842016032,807742820,623731762,174338608]},{"sector":11,"length":512,"data":[1543527424,1128350208,777016651,1296189696,776948034,5066563,1145913929,1127109455,1124093263,1160660045,1124091224,1095585103,1127105614,1291865423,1397703763,1398362926,776947968,5462355,6029404,544173568,1752457584,1869768224,1852186733,7632997,1881173870,543716449,1836020326,1701733920,1845523576,1634738287,1713399924,544042866,2019913318,1224736884,1229081922,1329802831,1112080461,1397703757,1297040174,1297040128,1145979213,1297040174,776947968,5462355,1329877837,1498623571,1296236627,1480928836,655429,1262698818,3035221,707657820,1128350208,1230001483,1077947972,1094844480,1347767107,1076773961,43794496,10420402,50331568,671134208,16756736,-16777216,0,1014783323,993864510,-1308617950,-1342173952,-1,11665412,-5242872,83886079,134263296,150974464,45056,-65536,65535,0,658688,0,1572874,4269234,542330288,542330692,1936876886,544108393,1126703158,1886339881,1734963833,824210536,758200377,876165425,1667845408,1869836146,1126200422,544240239,1701013836,1684370286,1952533792,1634300517,539828332,1886351952,2037674597,543584032,1919117645,1718580079,1816207476,1769087084,1937008743,1936028192,1702261349,675291236,1668426019,1768779636,157494884,540094005,808400440,858861365,88211456,690169920,1886743907,779249008,774965603,909647921,792080431,14129,1376]},{"sector":12,"length":512,"data":[0,27019,12388590,4980914,990217904,1229348675,1230980428,240076366,436253184,1355776,25264513,-1308621055,-1342171904,149816862,-1308621501,-1342174464,9120,33691136,201919768,134679564,318707222,-16641523,219283456,219283456,1,0,258,0,514,0,900,0,4326402,7864498,432,-1308621822,-1342147584,1848116956,694971509,1970153472,2714732,589311275,11665428,548405267,0,1782606400,1782606400,1010240,1310898,1013802160,1397575228,4079175,808866304,168636464,1953701933,543908705,1919252079,2003790950,50334221,808866304,168637232,1852383277,1701274996,1768169586,1701079414,544825888,658736,911343625,221851696,1847602442,1696625775,1735749486,1886593128,543515489,544370534,1769369189,1835954034,225734245,16515082,-16774643,1853190656,1835627565,1919230053,544370546,1375732224,842018870,539822605,1634692198,1735289204,1768910880,1847620718,1814066287,1701077359,658788,911343617,221327408,1847602442,543976565,1852403568,544367988,1769173857,1701670503,168653934,-1308567552,-1342172417,-1,-1,-1,26622,34996224,186172240,1112672631,-1064507253,234885125,303903,787971,244039822,-108331002,-34108593,-1202674445,-883949516,-661863540,-1898410424,1032128,-1342172999,1202648063,-1014237301,-1077899704]},{"sector":13,"length":512,"pattern":0,"data":[78708751,-789068149,-628299565,74698795,-768878452,-268181293,-947135858,-388771593,-802438516,-1064565645,-522989013,-1030817789,1322289836,1187548077,-31145334,91598908,-341118036,1974615046,-1968901267,1946265794,20102833,512433934,872153092,-930370094,-1031072797,-1064385789,-2080863315,292880383,-501415642,16417267,-2129234704,-351272766,1086360796,-276578162,486614544,-339702200,-1950118942,-1962932162,50334262,33948144,1060096,-1064380274,-100663109,-410265970,784698363,1085550591,-1191181637,-896794602,482007694,-1205744383,567102719,1801675088,1713398885,543517801,1663071081,1970434671,6452336,9633947,7405690,157155416,200084838,278530934,439622212,410523895,442374789,523509622,506994264,559947026,588915679,580526813,638396075,731917237,679487679,790572001,785723136,837824163,939668558,1040332108,1019297152,1106592270,1075134924,1168785317,1137132548,1111180199,1109148197,1189889838,1254377111,1248545414,1240615484,1263552540,1260997439,1426475803,1431983391,1715623424,-2089458042,-2067430396,-2038659759,-2028501336,-1995077845,-1968141920,-1955427474,-1946055710,-1931834331,1730242407,1745458280,-1795397485]},{"sector":14,"length":512,"pattern":0,"data":[15686221,327704,9109536,47841279,695928832,8981834,30,219873281,148242569,223674902,232718473,157941897,534]},{"sector":15,"length":512,"pattern":0,"data":[-1,1998848,1163067433,1380275796,16799832,75,2048,-1993474048,771758622,1836684,773739467,1711813,-1744681078,58048523,-1341648407,-1987988477,1528759111,1296257227,168296526,1314014539,1160662085,345432,1397703690,776225103,89348435,1480919808,1397310548,1498623563,184550995,1229210962,774911314,88430661,1163004416,894585156,1163412782,1376518149,1380533317,776752193,88430661,1163004928,1314015556,1160655952,345432,1279542537,1160662601,345432,1128350218,777016651,88430661,1396771328,1313294675,1297040174,1158348805,1110590808,1160662601,345432,1229933064,1480928846,184550725,1329808722,777143638,88430661,1380387840,1096042049,1127107650,347471,1397574667,1347769413,1163412782,1393229829,1262698836,1127109189,347471,1094929930,776292419,88430661,1129188096,1162363713,1480928818,201327941,1129136713,1162363713,1398362926,1477115909,1145131604,1395545682,349017,1331180040,1329802830,184550733,1464748375,776229455,71653445,1480919306,776750403,71653445,1280050954,1480928819,167838789,1229210962,1160655954,279896,1145393675,808735305,1163412782,1292566532,1145393747,1160663625,279896,1313429258,774910002,55462210,1162676520,776950356,54876229,31]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,817123667,1532568013,1947600445,-339725564,-1944168909,-1093103928,-1070399413,1958742956,54542342,-1946817552,1579106502,-1269823917,1478610258,113714938,4915293,1594788902,1527249664,-1945221239,28577871,16229609,0,0,0,0,-1192457387,1843920978,-88582641,1996443659,74907398,-2096740376,-259324220,159184395,4909142,-1962752893,1962281968,-137983174,-1012776,-1928848842,-397365690,-998042348,-773944572,448266211,-1371108088,348317776,-1929067389,-397365690,-998044594,1010237186,205842440,-1962752893,-443851066,-1957313699,178412,1443823592,67403395,1085804405,-1209511928,46433024,-1427521493,75399936,-1207274238,-397408170,-998047582,61335554,-166989685,2122544245,125108484,-1962886680,-2090341392,1946354814,75399942,-1206356731,-11531201,-401878986,-998047063,200313604,-1962639882,-396301370,-259325555,192280075,33848963,484967797,200313602,-399804938,-259324845,578156043,84180611,922688628,-1545074632,46433035,1024187368,175439873,138032895,-2096393752,-167050556,2122560885,-1351351036,185319400,-1196919360,-397408152,-998047734,1587342082,-1017256565,-1192457387,837287938,727078670,1460202486,-2096408088,-1958346044]},{"sector":5,"length":512,"data":[-963967906,-670834479,-16040053,1600055669,-1017256565,-1192457387,99090488,-794733042,-62486261,-1982314867,1924726342,12118280,957076129,57867334,-16728087,1290337398,46433026,108380171,-369101384,1586168000,-1744336132,1086557008,-934900400,334293072,-1962490749,126549086,-1913615464,1183434818,-1962284038,130480734,-96010464,972965515,-277677498,-1963172213,1174509575,-62455812,1342180024,-1946257665,1191181406,-1744336132,342026320,-1962490749,126549086,671128,1941439869,-1207702776,-11532170,-35062154,79987474,1342180024,-11485141,1374223990,79987476,-60912816,-1963178241,-397371385,-998042588,-934900474,174647376,-1962752893,1065417822,-385649664,-794689738,-62506741,922684021,1273497662,46433034,-1956724693,1438866917,179891339,218556416,-1995714399,1189870662,66995851,-1995714554,-661914554,93849482,1183383555,198353402,1174651691,-163149318,-96040112,1397801731,-2095816216,1183516356,-62520330,-506231,-1070859658,-126419120,-2095803928,1069024964,1996443660,11266300,-1996176253,-1072955834,-79845763,-400067073,1183383856,1958743032,200843545,737693323,722194446,-1070903103,-126419120,-2095819288,-1070922044,-172489749,1575324671,-326412861,-402651976,-1202320280,-397407169,-998043026,-2081387774,-370670650,-62486272,1131724811,722195105,-969147322,1586182524,751209468,-1207465981,-1957688257,1346436166,-2095969304,1586169028,-1744336132,-62521024]},{"sector":6,"length":512,"data":[-237941,1302395974,-1962440692,1319173214,721913868,-1207702592,-1956708365,1438866917,-1070338933,1443625960,1586183659,-1744336380,1086557008,108461904,-2095957528,-1073019196,1586174325,-1744336380,1988876427,3702790,1183517045,-804902140,-1959793909,126485598,198040,-1593555455,1178143698,-1961331964,1065354334,1393587200,-2097147160,-1073020220,-172447627,-1207702529,1566507003,-326412861,-1914126285,1586189835,-1744336380,-24907637,-1928430323,104530752,91425746,-352321096,1589652226,-1957313699,178412,-1593089048,1183386576,-1962087426,126549598,198040,-1946270207,1065418334,-1593347072,-667218990,-761141902,1943550731,-339506428,-1950340350,1438866917,112782475,187099136,-62485162,1354771280,1342962616,-2095861272,-1073019196,-88603020,13953535,1358841485,1342184632,504124600,-59310256,-2095863320,-1073018172,-1444347020,-25263360,-385649636,1554055328,-754667252,30551008,286019590,-1207152106,-11534310,-15969738,-1207152586,-11531296,1441332342,180650753,1920319499,1342179512,141571839,1342958264,-2096039448,-1073019196,1048598389,1963002867,200581456,200677003,206571009,206706193,200816383,-2096253976,-794623292,1975520011,-147963,922694635,922684408,922684498,922684496,1996426192,16181500,185255043,722892224,200843766,198182403,-351546717,-737784,-155319317,-59310081,-2095931416,-963968316,1575324510,-326412861,-402640200,-1923741144,-1202663354]},{"sector":7,"length":512,"data":[-1202716666,-397407237,-998042988,1958742790,10283267,-1202667477,-397407237,-998042918,1958742788,8972547,1358710413,1342177976,1342962616,-2095938072,-1073019196,-1070894475,1379336016,1345781516,-59310324,-2096683544,104532164,745868368,206706235,1183655541,922702078,-14808072,-16003018,1793653878,180650770,209043467,957085857,74841670,65795627,-3394,1996482166,-59310104,-2095941656,1996424900,300607740,-1979530109,1352197446,1342962616,-2095952408,65733828,-1946158402,-443851066,-1957313699,178412,722034664,1996443840,142016266,-402360577,-998046046,138820360,1446717813,-1926990582,-11469242,-14807946,1996424822,300214276,185255043,-1962117696,1178143814,721712638,-1207702592,-443809802,-1957313699,571628,1460211688,106859350,1183528959,-397393912,-998043940,75399940,-1207536383,954793985,-96024830,334168065,-772120949,108956643,1239953919,46433040,-1946532097,1178141766,-1192919814,-1957689224,2013202014,52815874,184861827,-2095942464,2114061438,-477178,-1207830807,-253165564,-96024831,985137153,1586188288,41418502,-2096130072,-1073019708,-2048326795,106859264,-1979555957,1076729863,-1880600576,46433029,2088026123,-1962516853,2139095647,1886730753,-16359797,1877475959,46433038,1039943305,108920899,-369102408,1586168215,41418502,1074284171,236906576,-1962621821,2123103326,1547272200,1586174580,39815942,163712,2058882676,-947171320]},{"sector":8,"length":512,"data":[-1175957440,79987469,1342733496,1074284171,229304400,-16464765,1183578694,-96061180,29232252,20965632,-369100360,1586168123,-1948003846,838796926,-2096982808,-1073020220,535364469,-94467327,-772126977,108956643,1183527423,4523272,228780112,-1962621821,1178141766,-1106871046,-85327881,143112192,-94467248,2123097041,-399376634,-998047225,1958742788,-96010432,956581515,796785222,1342738104,-772120949,108956643,-454544897,79987457,292864011,-1946532097,1178141766,-1202160390,-1561788411,-475648,-1107253015,-1561788413,143964160,-94467248,2123097041,-399376634,-998047313,1958742788,-96010445,956581515,931002950,1342741176,-772120949,108956643,-1930939905,79987457,527745035,-1946532097,1178141766,-1196917254,1273757688,-772120949,108956643,1065359755,-1106938577,1139539967,-369013,-472778170,-16351605,3926065,-1996307325,-1072957370,1586176372,-112817656,-1957476472,1183451230,1413974264,956581515,-1283655098,-1962933576,-1106711568,65798140,-1946157378,-1956684090,1438866917,112782475,111863808,16533191,3061760,74907472,-2096260120,1183384772,1958743038,-958887092,1191116807,-25755650,-2096328216,1183384260,146938,1996426615,9300222,184730755,-955812416,-954,1996431339,216721662,-352140157,702470,-1979947273,1183579206,-96010246,1912603197,3193068,74907472,-2097118232,1183384772,-58817788,1343845631,-2096350744,37552836,-15894784]},{"sector":9,"length":512,"data":[954729590,46433024,125157387,16533191,-15668480,-1779956618,46433036,-919934838,-2114171383,34339966,2122385266,1913258236,-62470395,1183514624,1575324668,-326412861,-571949005,-1961432315,1191117918,-1744336380,-2013865845,1963198951,-339727612,73304843,1962950528,112866,-1957313699,-390056980,65734064,-1962653953,1183450206,1946630150,1573096435,-326412861,-402652488,1586169236,71761668,1966030720,73304840,1962950528,-339727596,73304870,956188298,-15567609,1191118406,106859268,1183319946,1975519998,73305060,453066624,-1948715072,1438866917,45673611,88795136,1342189240,-402360577,-998047300,74907396,-2096413208,-1073020220,-1779891339,74907392,-2097113624,-1073020220,-2048326795,6076416,74907472,-2096360472,-1073019708,1996452981,10872836,184730755,-9996864,-68680586,46433024,1517666315,1342189240,-402360577,-998044696,-28931836,947175435,1342189240,1090406027,198371408,184861827,-1959561792,1177288262,539908,-1070913409,-25755824,-2096384024,1177224388,54348030,-1206681856,283836417,-402360577,-998045010,539906,-1070862986,-1017256565,-1192457387,-1981284350,-28915964,1586167809,4161540,1191122036,-1744336380,11003984,-1996307325,-1072955834,1183573109,1575324670,-326412861,-402650952,1448543320,1342189240,-402360577,-998044852,-96040700,91537419,130472075,738142976,-773878794,-460878877,-129595128,410304523,74907472,-2096411160]},{"sector":10,"length":512,"data":[20776132,-137815296,1207012313,-646646261,16416387,1586169460,772261626,1600046731,-1017256565,871140181,66513088,1342188216,-402360577,-998044948,1975520004,4175889,74907472,-2096440344,-1073019708,28837236,721611520,1438866880,45673611,63105024,-1744550262,1946165309,1024753420,91488265,1962937661,-28915938,1183514624,1025240062,-244056017,2080389693,4078858,2084431742,-941460480,130630,-443817749,-1957313699,178412,721648616,1996443840,175302660,-1996176253,250347078,-1963041141,1194853958,-16026113,1183579726,-28952316,1586227829,509694,-1017256565,-1192457387,1105723396,71731971,-335657335,-62485990,1726501016,46433279,141934603,-2130813301,259340863,-1946269953,126549598,184305288,-2460224,1183579726,-28952316,1586172018,-2012771586,1547500614,977011828,1191175541,-28931074,-1017256565,-1947432107,-75299746,-1207140582,567100424,255658355,855930112,-1207702592,-1017315327,1458342741,-1190889845,-1392771070,141869066,-796261708,-219471411,-502725954,-1017291027,116165461,1183466164,73304842,-1945741628,1914817985,-1207637246,127533055,1465303901,1387529758,-1269620275,1596050736,1008191363,-2096923134,314051527,-1093104126,146344197,-8127488,1360164095,-947693993,1587999498,158619999,-348273626,-339725335,112643,1583292167,817103043,37495245,550306419,-1962798401,721420854,16679415,-1107070448,-1896214528,1858372055,276036364]},{"sector":11,"length":512,"data":[-135782634,1354773249,-1207666968,567102719,922674307,152315529,270960950,-1312388343,1222693636,151954230,915011331,-1014235134,-604512725,567102132,-2061595594,-66644471,-1190408001,-819262352,-1426866125,1005068054,-400615936,31982482,-1232126,-16144842,-16145354,-402021834,-397348286,314048738,-1193767422,-952762365,-1073147386,2078822414,66971649,1342242744,152180479,567095476,-1207335005,567096576,158539401,158664332,12066574,232700453,521544141,183242379,109981411,-1960441467,-989844426,-1945440762,920335322,183115519,521536883,906055145,183633605,62642828,520041984,521538282,159712910,739150630,-1909005568,654259137,1946172800,833836,-217487682,-1190431578,-1070366721,427142898,503768555,-141877497,-1408659777,-22244968,1208054976,385344170,310047,160343936,1140897983,175251917,1954595574,-1903198203,2034974729,183942887,-401934657,-155320158,183942922,-1023374616,-1091794091,-692122666,8251403,-1089800514,1961364214,1426320128,-155259765,183942922,-1107269912,-155251978,7137290,184596968,-2096401216,1962935422,71747333,263782655,375552,160335862,-1274776575,1126288702,132707042,71731968,567102644,183242379,45811683,-367067392,382017034,12061043,522308901,162545280,504198144,-989220448,-1274433002,522308901,1945582531,-1957736694,-597235,-1007490095,242480955,-1962610813,38079237,503313012,12840683,-1192457387]},{"sector":12,"length":512,"data":[-397410052,1048773243,1946159542,-1240006908,16758793,40495184,-1017256565,-385875272,-1957036453,1926769628,-1205978358,-1962642935,870449123,-28972608,-1175047338,-466485182,-533549828,-192873502,-401771435,28901294,753422336,112642,110084958,45746618,-2028587008,-1909885943,638158086,2885262,162137740,-1181106125,-13402112,1974382322,-1991817221,-1190549442,-1359806465,-779365897,-1107295809,512622721,1017907589,1023112224,1022850057,175076365,1198224576,540847182,154986612,222094452,-1073062796,574380148,1547445364,-347995276,1103705060,1952201900,1948400890,-338623740,-775844909,-1462692887,-339053311,1017925121,170619917,1009218752,1018852386,1107522652,-919343893,1547480129,574421620,-788331404,-1047798805,-787224111,-764083800,521574379,161627785,-783821053,-2133392409,-500433182,-1532771189,64523017,906434299,1128480649,162019013,-1073042772,-2118190475,512636416,65735045,-1398095821,-76275652,-143390404,58002748,167804905,-352094784,-1992912775,1313030975,1948269740,1946762459,1947024599,1958742626,1948400734,1952201767,-454317565,-1404974797,-93037508,108274236,-1426891600,1555091947,-1426855471,581961331,1321593770,1947024556,1958742574,1948400682,1952201911,-320099837,-1404974797,-93037508,108274236,-1426891600,1555093995,-1426855471,581998195,869133226,521579200,1991,163194623,1441565525,159719054,-1047803597,-108271221,741772105,1962281728]},{"sector":13,"length":512,"data":[650546704,16000,-234458112,1974355374,1083655674,-41157084,-989600303,-1084809450,-2048393207,-812949760,-133956213,161885833,-561117410,-481692109,993820947,-1996131261,1162150014,-1073042772,-303891851,369118857,-443851489,-1957313699,509040364,72780551,-1391788354,276087355,208967232,-1178586217,-1359806465,-336857205,-1956749418,46292453,-326413056,74907479,201313256,-1844153152,-1070335349,-218103879,1238497198,-1275067717,1596050752,-1034033781,-796196862,152307203,104412530,628295950,1342181125,61987025,-645076781,159719051,-1056715989,-661929074,567102132,605057624,245582064,780899593,369166612,-1950152428,-74323513,-1070394510,-1017256565,-397346701,-1957167080,1942183397,976903,-1711276104,-1017256565,32039986,-1969044736,1977879049,-2025947101,225575689,225649212,91365436,132842928,1980972176,-1156337662,-1730737732,-1022787677,-135543670,-1947432107,-620034978,1333789812,-443874818,-1957313699,-1151904020,1065552336,506033408,374791,1963029480,-1715457275,608183531,164668414,-1777741149,66759,-955988349,-65980,165033609,-1945874805,-390033704,1583284233,-1017256565,1090572009,-511640972,-285637634,2005660275,-1951532030,1946265854,-1053079486,-796191373,-1464995837,53769217,132546,1149892491,-1947800578,51148030,-28538375,-1991720661,50719493,-28508423,-628308341,-784608884,-1943665292,-1995842018,650314367,165938886,-115454,-24435340]},{"sector":14,"length":512,"data":[-1464995837,-1947044863,-1053079298,-796148365,-1464995837,65172481,132546,1149892491,-1947800578,-1073018809,-661781388,-31058709,1946805262,-1931965423,1959214039,512632325,931858906,2005646571,-390057210,-969211798,19139956,-392675264,225706078,-385987074,91488284,-347189610,-1931965287,1958820817,-559733244,-1995994359,-1070398905,-1957575783,27852357,-936705164,-1170128567,992378879,1980358678,1978323204,63015925,51737286,-150113598,734143442,846022,-755562379,-445257007,-1017528269,501764434,1461220352,-259260789,1153954307,-1979711746,-695531913,-1991583957,1499004501,1347666778,1377751603,28856402,520507392,-2097147928,-92075836,1532633087,-771030412,-1957363517,106387180,556675,348076149,106334985,1208239755,1407715189,-349736448,1681296200,292833289,225769275,-1996340085,-397013946,1935540282,80118576,157613697,-771029901,-4716939,501979647,-1014769013,-1310994161,-1259613437,1914817864,76124905,-1996335991,856253494,1583286208,-1017256565,-1962127733,38550007,-964490124,1694400772,-101550839,-628408341,963779587,-1047604341,108394299,151920185,-1014815117,-774123249,-773074453,1979137003,-1579613431,-668268155,1253359758,225583565,74839867,151918217,-1962637422,-1957313583,-1948808212,-1898410786,75402176,-4603853,-1917914369,2123104117,-18170,-772296974,-24643285,-150714741,1946157510,-783703038,329642985,-1952123959,1576700915,-1957363517]},{"sector":15,"length":512,"data":[-1948808212,108432350,-661848437,-1070350194,-218103879,-1949173842,-947190658,41157032,-372160092,-921459213,-208952077,-1017251189,-1947432107,-1898410793,75402176,-4603853,-139529473,-1953412655,12803578,1475119957,-1962467754,1988822142,-1948284154,216205390,1958742700,-119363069,-1426866126,1600045963,-1017256565,1475119957,-1962467754,652413006,2123094411,871860996,-139529536,-1949629479,108432382,1149937395,986264575,74972997,1229522036,-1047801353,-443850914,32097117,-1957363712,-1957275668,-1070398346,-1394920551,-76275652,-143390404,1949121616,1965767684,960277505,808198007,-472835214,-880028975,-472778101,-472788271,-654060847,-670836973,-352267645,758929628,-150506093,13796312,1600051959,-1957313699,-1286121748,139365121,855918219,184124370,-1952906891,300484222,-1957363711,2123061228,-1962467836,-1178586145,-1359806465,-1965426879,-74774970,944746226,855798789,1606913023,-1017256565,-1947432107,108432342,-1341890933,1958742783,663399468,1960852035,1010904308,-2134304230,-1056825119,-528072444,440156460,-511653606,79757856,1959017025,482351828,-225732353,-1957313699,73305068,126538635,292864010,440164652,1090782323,-1975318648,1975519751,-1017277713,-1947432107,-1931572265,-1950314792,2123040374,-1949857020,719521870,376897083,-1056717173,242481211,-251410549,1330575619,-56298499,-947187477,41157032,-372160092,-921459213,-208952077,-1017251189,-1947432107,-1898410793]}]],[[{"sector":1,"length":512,"data":[75402176,1317789579,-1978277112,-527825338,116727,1235878516,-1410078255,-1426863853,1569979019,1317732547,71731978,-1962518901,509020286,177470471,-2095876928,242551545,175755787,-139842128,13796315,-141829385,198325138,-150833984,-235432975,80971666,1983462448,-1440283646,-1022639477,92856949,92712015,-1912650616,-952434364,1599664754,1575324510,-1957363517,73305068,567099060,16409065,-1209234603,72780623,-1957361429,-1957775380,448006230,-8379955,-1962511026,1317733462,-840463866,-96933599,-1947432107,1183515734,-851594234,-1962577375,126421086,16392681,-1259566251,1426451263,1085598859,-1962647925,-987887026,567084630,-1962577377,126422110,16383465,-1947432107,1317733462,1124186118,-337042995,-1957363463,73305068,-1962389877,28837462,-383660713,63958,0,0,1377850189,1412263541,543518057,1919052108,544830049,1866670125,1769109872,544499815,539583272,943208753,1766662188,1936683619,544499311,1886547779,168624145,1330795077,2112082,1635151433,543451500,1953068915,3041379,1635151433,543451500,1701603686,1701667182,1850277934,1717990771,1953391977,1835363616,779711087,1986939136,1684630625,1919252000,1852795251,1836412448,745694562,1919903264,544498029,1953723757,543515168,825306674,958410016,775502126,1701860096,1768319331,1696621669,2037544046,1935767328,1953459744,1970234912,1763730542,1752440942,1702240357,1869181810]},{"sector":2,"length":512,"data":[1635000430,778398818,1970225920,1847616620,1713402991,543452777,543516788,1701603686,1413829408,777143638,776296517,1986939136,1684630625,1769104416,1931502966,1768121712,1919248742,1867776046,1634541679,1663072622,1634561391,1814062190,543518313,1634886000,1702126957,3044210,1936943437,543649385,1634886000,1702126957,1375743602,1768186213,1394632558,1163285573,1480928850,1768300613,3040620,1936876886,544108393,1818386804,1936269413,1919902496,1953527154,1750335534,1163075685,1380275796,1818846752,1852383333,1701344288,1701868320,1768319331,1881171045,543716449,1847620457,1629516911,1836016416,1769234800,543517794,1936876918,778989417,1701336064,1763730802,1869488243,1919905056,1886593125,543515489,1981836905,1769173605,1948282479,1701601889,2003136032,1953391904,1936025970,1918304302,1852404841,1163075687,1380275796,1163412782,1818846752,1849765477,1986947360,1684630625,1952542752,1869881448,1413829408,777143638,541415493,544432503,1667592307,1701406313,218115684,1919243786,1852795251,1650553888,1931502956,1701012341,1969648499,544828524,1633972341,6579572,543516756,1936876918,544108393,1851877475,1998611815,543976553,1701536116,1717986592,544498533,543516788,1954047342,1835627552,1870209125,1701978229,1918989427,1870209140,1931506293,1702130553,538968173,538976288,1702057248,1163076128,1380275796,574566176,1919903264,1818585120,168624240,1696624462]},{"sector":3,"length":512,"data":[1769108590,1713402725,1684960623,544106784,1936876918,544108393,1818386804,1699938405,1948283764,1981834600,1769173605,1847619183,1700949365,1752440946,1293972577,1329868115,1701978195,1953656688,1869881459,1881170208,1919381362,221146465,1766064138,1634496627,1969430649,1852142194,1702240372,1869181810,1635000430,979725410,1163075616,1380275796,1919179552,979727977,1752457584,1681981533,1852121188,981037684,538976288,538976288,538976288,538976288,538976288,1163075616,1380275796,1919179552,979727977,1752457584,1768300637,1634624876,1847616877,7237166,1701602628,1696621940,2037544046,538976314,538976288,538976288,538976288,538976288,1448363347,1528844869,1986622052,1634744933,542992500,1701603686,1701667182,1162096416,1163150668,1362058016,1413826901,658781,1683693600,1702259058,1952542778,538991976,1884495904,1718182757,544433513,1633906540,1852795252,543584032,543516788,1448363347,1160663621,1713390936,778398825,1713381376,1852140649,543518049,538976288,1394614304,1768121712,1936025958,1701344288,1818846752,1835101797,1718558821,1701344288,1869770784,1835102823,538968110,1852714606,538976288,538976288,538976288,1667592275,1701406313,1752440947,1397563493,1397703725,1919252000,1852795251,544175136,1914725730,1919905893,543450484,1948282740,1881171304,1919381362,3042657,1143939104,1413827653,1919885381,541339424,1698963488,1702126956,1752440947]},{"sector":4,"length":512,"data":[1702240357,1869181810,1635003758,543517794,1920233061,1868963961,1752440946,1886593125,1718182757,543450473,1735357040,778920306,790634496,1162433873,538976340,538976288,1210064928,1936024681,1701344288,1936026912,1701273971,1887007776,1818321769,1679849836,1819308905,1684371809,1920295968,543649385,1701602660,1852795252,6713120,538976288,538976288,538976288,538976288,1702240288,1869181810,1635003758,543517794,1920233061,167784057,1314013527,541544009,1866670125,1667331182,1870209140,1931506293,2004117103,543519329,1684956534,1713402479,1763734127,1919903342,1769234797,1629515375,1953853282,1701345056,1919248500,1929404704,1768121712,543385958,1735357040,544039282,1802661751,1769414771,1293969524,1329868115,1702240339,1869181810,775299182,1226845746,1936269428,1936683040,1818388851,1752440933,1291875425,1869767529,1952870259,1935763488,1953459744,1919252000,1701406313,1752637540,1701344357,1752440946,1919950949,1634887535,1769414765,1931504748,1701012341,1969648499,544828524,544109938,2030069353,1965061487,1948280179,1394632040,1163285573,1868767314,1851878765,1869881444,1634231072,543516526,543516788,1735357040,544039282,1936876918,544108393,1651340654,1629516389,1979737198,1769173605,1948282479,1701601889,1716068398,1970239776,1853190688,1701344288,1869770784,1835102823,1952866592,1663070821,1735287144,543649385,543516788,1936876918,544108393,1818386804]},{"sector":5,"length":512,"data":[1852375141,760433952,542330692,1936876918,544108393,741486134,1970239776,2036428064,1936682016,1919885413,1919902496,1953527154,1952539680,1919885409,1953392928,1969516402,1931502947,1702130553,1852375149,1650553971,1953066089,779314537,1667845408,1869836146,1763734630,1869488243,1701978228,1852797043,1818388851,1868963941,1851859058,1869357177,1864397683,1633951858,1701273965,1919885356,1919903232,1936682016,1919885428,1919902496,1953527154,1679844453,778138721,1330511872,540689748,1448363347,1679839813,1667855973,1869488229,1869357172,1684366433,1867784238,1952669984,1952544361,1163075685,1380275796,1919252000,1852795251,1885696544,1769239151,536897390,538976288,1970239776,1937075488,1869357172,1948279905,1394632040,1163285573,1480928850,1701060677,1701013878,544106784,1920298873,1313817376,776423750,777214291,1413829376,1481786710,4325464,6029388,8454254,15270069,19267853,22741320,26083700,33948113,40895051,47841978,54133502,61866862,71107584,79955062,89916689,92471296,101647819,110822999,120194786,1905,126748557,2003,771754001,3014704,6029375,1448363347,1160663621,1140868440,1413827653,1431371845,5522761,1162433873,1162084436,1163150668,1481982208,1330397952,2378563,827150147,1297040128,1329791026,1124086605,3427663,5132099,5525580,827609164,1414548480,1347158066,1275081556,1308644435,1342196821]},{"sector":6,"length":512,"pattern":0,"data":[20050,145033377,145819820,146475190,147065024,147654856,148310226,148834523,168624128,1413829376,1481786710,88,248971264,34734080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1127942420,1279870559,1313431365,20294,0,0,0,0,0,0,-2122252268,65921,0,0,0,0,0,34736556,67,0,0,3440,33691136,201919768,134679564,318707222,-16641523,0,0,0,0,8192,536870912,538976288,538976288,673720360,538976296,538976288,538976288,538976288,1210064928,269488144,269488144,269488144,-2079322096,-2071690108,-2071690108,269488260,269488144,-2122219135,16875905,16843009,16843009,16843009,16843009,269484289,269488144,-2105376126,33718914,33686018,33686018,33686018,33686018,269484546,2101264]},{"sector":7,"length":512,"pattern":0,"data":[0,0,0,0,0,1010565120,1196641614,15934,808466002,755633456,1635021600,1864395619,1718773110,225931116,196618,808466002,755633459,1953392928,1919248229,1986618400,543515753,807434594,150997517,808866304,168638768,1869488173,1852121204,1751610735,1634759456,1713399139,1696625263,1919514222,1701670511,168653934,218168320,16711690,762213746,1701669236,1920099616,2126447,911343618,221392944,1713384714,1952542572,543649385,1852403568,1869488244,1869357172,1684366433,16779789,808866304,168636720,1970151469,1881173100,1953393007,1629516389,1734964083,1852140910,658804,16777215]},{"sector":8,"length":512,"pattern":0,"data":[10508877,22,13631520,55771135,128,41091088,30,1]},{"sector":9,"length":512,"data":[0,-1869611008,503939560,-1305048266,100773893,117727464,1912612024,918894088,-1897396834,1810374402,-1869561079,638148072,187909515,505115840,-1960421626,1958742789,192233475,-402444056,58000769,1594179560,1072176903,-1869561079,906572264,721632929,-388879397,736625302,-1869561079,906567144,-1157415263,-1959329793,-402441194,333972094,-1869561079,-1962342936,1552811604,720538380,-397009216,62391265,-1003916800,-1992948097,906337854,94373516,20808486,-471334027,-1205922299,801968641,1444814686,-1226260438,-120032509,-873980066,-1075264760,781225992,269964,-108847338,-1962117887,1173738,1912624872,-117314808,565707635,145025024,-1909580093,-1962933218,147162101,1284183179,71600898,520516747,142665923,-1943105392,369099806,33129247,-2094657931,1946170237,-387282169,32178188,-1207733255,1676148769,-1125596408,4778239,1428100803,2105746974,896794675,8251479,-399609251,611452207,-1945473655,1166609477,39684356,-1995944567,1149961813,-1996125948,-1590295428,1166607164,166459406,-352312136,2209796,-1017307143,639508246,3374467,-396938380,1935474743,-1960151764,174864693,-980671627,1963748409,780875292,1815675708,-1961724658,772114692,-1996488543,914959876,-336068608,57932033,520102328,-1831171133,198085521,52720882,1942492115,200444678,-2095548943,-645725718,1444875776,863341350,114518,1577327848,856157021,565724918,-389809920,-1869609074]},{"sector":10,"length":512,"data":[508647174,863863590,237794304,1972053535,71628595,527761407,-184424061,-1590290061,-1959393840,-1962553826,63515601,734532563,64481535,520102328,-402170023,-1866266794,122218640,-1962779509,118883404,-2029797697,-1105260839,1015024133,2080732160,1225188132,-352226301,-2091493391,-1431565114,-92946422,-975599778,300091004,729662793,-160039157,1226847,118286585,88443843,521067148,721712267,1962281929,175913743,1413154421,1090614540,-303352693,1569446542,-386375889,-2084370718,1962947452,1050752572,793020675,54305078,-399424375,678560018,-1959568247,-628358580,2143559438,1002474502,990148087,-1995541310,1468597879,-1982165496,1150036860,-119894483,-1665642301,102950921,96345870,3964938,125765500,-352226301,-999887884,-16054660,992408180,175451973,827165478,-902051037,-1004140940,-420795523,17155878,1381191680,-1960421858,-167040139,526257781,-2147388413,-126615492,-164932066,-1640068810,109852165,-1910110816,1443245381,369309160,302102559,123678669,1532632926,1979648856,-342955262,650377373,238253451,73174303,-167037045,2084255604,-1943243510,205798336,-2127157899,67320382,906589533,990067873,326438468,394859659,41262,-1993472887,-1962934218,-1949570062,-348877858,-15419,-1,-1,-545259521,-536880129,-1207976193,478134271,536806399,-24443106,-1979683864,-253394712,-256572812,50348520,521049792,-1097561298,108512515,729085451]},{"sector":11,"length":512,"data":[-1979692056,-253460256,158721290,795708198,1949264955,1632269,-1048166336,-120339829,1959069042,-1193940181,116981792,-1007187169,-461315958,1022370831,839021936,-790048576,-1964453656,48812232,717488833,1150010340,-2147440382,45089396,-461315958,1895596272,254018677,-527826932,1961944192,1157022465,-109838076,516104368,184059478,721450239,-1394922798,-746530814,-1071496704,521074037,-2146826818,561774652,1547306356,50689027,-269811340,123718283,-2091493626,-1494020922,1491891550,-119633064,1979654851,-115384825,-1023409224,-1106460029,1015024133,1951890432,24380165,1150022891,1942108929,-336592124,1036135401,208797714,-958756013,1082720256,1539320577,1418317827,56395777,503383238,-1950340345,80184318,783002539,132863,172334,-2083877973,-963965719,-1527570594,520542347,-1031027720,1376578179,780371,-2056037797,616061016,1355020544,-1962277442,21793790,2080390272,990606653,17003767,-251461299,-147067925,-251459979,-504627573,-661856373,-1527529330,2143624791,1962871558,861767944,-349471291,-966844428,1971912709,24979713,-963920917,727435051,-208944189,184960139,158663748,80147339,583680,-1229434685,58124297,96359254,22842122,2080390272,50623507,-2131563533,-143327176,16865419,-437583524,247684699,650152991,-1926013557,-166995081,2084121204,956658987,91499844,-349473595,1166747373,725911851,759532326,237847689,651899679,-2093785721]},{"sector":12,"length":512,"data":[-1023408513,164804688,100865000,-1919090909,898303100,1651832355,712350877,906914955,54275643,1959009397,1821058570,775632431,242549566,993445260,1963302958,909850117,898303390,-359982988,-1962775509,74193897,1821052018,-1947522298,-400881556,-24443277,-1326762613,855917619,1278411356,106181384,-1056193781,-1191591413,123535393,1049308867,-14483456,905906548,429870,-1207637248,-1007091676,1460033054,911299408,94254789,-1202463949,801968662,-1203342757,801968660,-347929740,918784749,2367118,69259,994302860,504395211,753457550,940492032,-425216,-2145389451,1509949502,-611579020,204291,-337932733,512636627,149422896,1482381568,526255967,839814083,876528640,-1359807488,650314100,-47674,-219479325,1602956995,-2094611702,276037693,861768486,1006628584,74783836,-1021682549,-1977170951,1149764677,1166747166,440699147,861768486,-1979724056,-1062003620,38046403,1883041828,-617384075,303478867,1918578637,303347820,712257485,4031270,-1960434572,1144717893,639333634,993215883,309670724,793086758,1966031931,1166747145,826555185,-347929740,313283,106307072,521556823,94256836,1492682728,526255967,856031014,548950235,1479527698,975573874,1124299781,-986255381,-972706250,-1014235388,-1398720829,1397801733,1465274961,-402252203,915079602,-1070463566,1929155816,-975598519,-1590294921,1144587068,909866289,956513953,846540612,620905611]},{"sector":13,"length":512,"data":[1883046128,1023767552,578093056,187397317,-1898482186,108512729,-1640593098,512505349,1877476768,-1205922050,801968641,1676193003,520616193,1516134237,-1017619623,-1960406896,-478083747,57966720,637571049,187915659,-385649189,870842500,777395713,-1962510395,303347912,58011597,187397317,-2090437386,175506169,1963194755,6285315,-922003477,-1960437131,1552485725,1569400333,257722639,345335,-402426752,887816316,291343142,638672009,-1995219573,1157043036,1954545669,6481925,-1960437013,1552485213,49906443,2088961652,141885493,1656007,895256832,-349473595,-400597364,-1950154566,-1993994916,1552616797,1569269263,291277583,291342630,638803083,638803337,345591,-402295680,300613652,638278795,638279049,1656263,1569269248,-1202601163,801968428,1448330073,-1960899042,780528,-402002498,1579089925,-1392579749,24494090,-854674237,16050960,-2147483648,125112572,58048522,785383344,155135743,-873025560,-873017368,-873007128,-873003032,-872997912,-872980504,-872965400,-872904472,-872888088,-872565784,-872572952,-872560920,-872527896,-872500760,-2147370928,-1017632051,-2130593712,-1017632051,977490753,1413894944,1919705376,2036621669,544106784,224752501,1297219594,1394621006,1277187142,1713392451,1684825449,1869488243,221257844,1397882890,1394620995,1847612486,1763734639,1179852910,1768693844,168653939,1634226944,540697970,1702129225,1818324594,1920099616]},{"sector":14,"length":512,"data":[168653423,134217728,1312768,0,2388,2392,2396,2400,2404,2408,2412,2416,2420,2424,2428,2432,2436,2440,2636,1426194432,681994,8388864,1946844928,1177486090,4992768,4410927,0,175377023,4140801,16843009,-16777216,255,0,0,521011200,168304267,-1107039357,1552484869,-957152511,-1958281468,-1207301618,76087296,-964442485,-1544035822,-896794624,-752106612,-787495293,-772877858,65982958,800610034,-1994273483,-1945551074,-1207353082,1136272687,-1272853239,639749458,50529990,213842687,9486090,-218095943,1048782501,1962934340,2009409103,75268890,-1203407612,1001979920,98694912,251985926,-774319872,-773271064,1204233960,637534234,1578915724,477561126,476024358,1735,113770495,-65534,263879,-953810928,134235142,1458569984,444580902,72190758,637959565,1479,356894502,-953810944,5957,-499398781,-617350166,-1275066951,1126288702,-1201997342,567095552,-850656840,512790561,1912647912,-850217972,1048585761,1946222596,-16664570,-1593786904,-1073020884,-1064434060,567101876,-1274982936,-843042288,1979661359,-16599034,-1207919128,-617395454,-1950118394,-1943024133,-955578432,62391924,8710399,-880015865,172326,4047659,-1207732720,-617410560,-523116335,-523116335,-1962880125,178335432,1228298,84272887]},{"sector":15,"length":512,"data":[13796106,134611758,13796106,108516155,-1053095307,146278006,3991553,788466104,176621254,-1869574143,-2029599186,-1906835446,16825552,-385985559,175309499,401139338,381694720,197380944,807424,84934912,1213407237,4543041,855638715,-19778615,50102478,-192272777,-2010242443,772558094,206505670,113651248,503385168,1258721070,312844,1228290862,1090614796,376767036,1292289582,772669708,206243471,113716801,206703689,-25158165,1008235522,773092617,206374598,-1892807167,1091324678,1225180974,235688460,1194757407,-466464756,1476612584,317195891,55109632,-2025947090,24445194,1291827395,-1195171379,-617391872,119655686,855638715,-1023297847,-1275035202,-1910387358,47579,1049429774,12192328,914957824,1055394889,-49909,-1612119179,15616,163056501,-2116384000,1946845179,9299971,176398630,-2128704730,1912307978,-402098934,12058775,-2128491188,1963613947,1048585791,1946225288,113649171,637602440,168298041,-1557789581,1374358024,637534648,176621254,106307073,344609111,4319314,123689306,344465246,-2029599194,770375690,174193537,-2144986251,17467710,-970535308,17467654,168180006,637825802,-351663453,1694204172,-1207536630,82313219,-11867904,1980316867,-1928744958,772656926,-402475817,12844682,151193857,151586313,-930341367,750311566,113409,-1241513799,-1107250433,803733504,19873026,-348126348,12787701,0]}],[{"sector":1,"length":512,"data":[0,-16777216,16777215,0,-16777216,16777215,0,-16777216,-1,16777215,-16777216,16777215,0,168624128,0,603982336,1303445569,1329864787,1700143187,1869181810,540418158,1126777640,1920561263,1952999273,943272224,959524145,1293956153,1869767529,1952870259,1919894304,1766596720,1936614755,1293968485,1919251553,543973737,1917853741,1919250543,1864399220,1766662246,1936683619,544499311,543976513,1751607666,1914729332,1919251301,543450486,106058576,-1899416745,-1191234623,11670062,-1943130163,772670726,235093641,-1307431240,774884610,235734668,188647726,305051662,801965234,486968366,1049177614,783814171,-855199214,109850159,-1993470463,-401735874,-1943140407,772668678,234569353,419859502,1049177614,1223167511,109850120,-1993470447,-1207038146,145887790,-1943130163,772678918,237190793,906413870,772410638,243205830,113716772,3643,1023854382,-402650610,-1993472196,-401725634,820510745,4450304,5433425,1599670386,1482381831,-998046485,1355020556,12066390,505531747,175251207,792103214,109850126,1482559025,1140897987,855638203,-2145268270,-830471706,1140963329,-1195171379,29049856,-841862400,30310433,-851181128,817152801,104669645,-133991146,37558507,-1157270784,65798143,-1207958853,12124161,-1241468416,1355020799,1465209171,-376745466,857639214,914894350,-655880648,1959332610,1978469148]},{"sector":2,"length":512,"data":[2549765,-1175976981,1510502913,117507816,-2096829601,-336001340,1516177156,1560703737,-346530983,147096324,1397801977,512437842,-75297229,-402295297,65732652,1929410536,-1151749105,567083008,-997989326,283900166,1962933123,1958820619,11593735,-116996989,1532625778,102679384,33129247,45357941,-854226394,-1031135455,503362024,124985094,22383142,-336059955,184726543,638153929,567088522,-210417337,1472405496,-1957493168,-1962467590,-65359655,58044146,-1957963477,1476877259,-1070349473,1333053707,-1273035234,-2083026112,678756857,1344217549,-402290138,509083738,108207878,1111536888,647766477,1964653952,-339637502,-401682687,451674107,-1494724267,1508477951,41099725,-935654421,-398784652,-1962773000,-1021354559,-1157617736,28639236,-98109,-956952204,504132992,910068999,178446,-1006698520,-1003596026,185478974,639071487,-134201981,975573108,638022149,1996571962,1195899137,123726315,110046915,-617411015,-147942765,-1827783370,1027012398,167412494,-1031797386,-2147226825,1095905474,74825739,1014291211,1963194755,175931406,772175148,239482623,-2094732479,242550777,738884736,-13760907,1091454518,-108850709,-2146667253,1965820540,922693126,-1824453050,-1561603533,-1070345677,959905582,-768359666,561301771,11543988,1965373478,1698178570,973370369,638481860,1273496970,1191277567,1967735367,-897100061,896855307,1048784461,1962937915,105155116,975581188]},{"sector":3,"length":512,"data":[41222469,809246699,-771029899,872612980,-2144409621,-15845314,1111623797,1330596169,-4586517,-114599937,1610481640,-352095399,-1957588889,108822730,185431040,1225159881,-347650231,283860481,58050827,-2096501922,41287673,-16004813,1465204340,-919383802,993952558,326434830,252134646,2093222005,41019394,-1964506901,-402396415,124911650,1566508889,-2096829602,788073156,238763651,1912960256,-13965053,990299950,-1023410162,-1590767053,-953283013,168705286,-22943744,-2021118376,-2092757441,58015995,-33420568,-1192397367,-1993471475,1125007239,33155139,861099715,-2134297610,158728190,666667822,-337671410,46593576,-1003615884,-1945236548,1025174467,242352147,1996498749,-1127993847,-1014231529,-1003616277,-1945240644,-293949,-25159819,-117213697,-1557262869,-4714949,114175,-336005581,16483084,1424491380,80118528,184972024,-352160311,-25125734,1378448641,1460031829,83933264,-12832819,-1962314408,84064472,32190413,1594192889,116087047,-402209661,1516044300,248447467,1543502824,1347928926,855637945,-139529536,1599621585,33260483,-2094128779,-15850690,-12773004,1343059455,238788910,589233966,99309582,589233966,857402126,-98103,-1977219468,166396749,1966422062,1300901380,80184067,-131238919,427084043,1962933888,87762437,992871403,-352160507,91506953,-352008317,208861667,-117440896,118358645,41747238,-315488654,1192069670,889636398]},{"sector":4,"length":512,"data":[868417550,108822747,773027072,239044551,1128475936,1065862702,-398254066,861733035,785527771,238358152,973685898,706705089,-152007999,1954547524,172263957,1065846830,-75283698,-402426560,-822214529,2088823669,225705992,1929923640,139209224,1284166026,1959332616,121959973,-166955761,1947207492,92939782,1476520775,1065846830,-75283698,-402426560,-906100669,1157028725,427130887,359986698,772424842,239044488,1090224963,619185013,1976499712,121960171,-167217905,1947207492,168684290,772371666,238618255,-143275266,1426064104,1460031939,-880081122,1049484083,1374162495,1594192635,82532615,-116996989,1156996547,309669895,1342540326,-63379391,-1977219469,-128974523,-1977217557,1958742533,-348043516,1442393077,369557443,536871176,872415744,1191184640,1375808512,-1811862272,-1342099968,-117362944,1023410944,1850283777,1920102243,544498533,542330692,1936876918,225341289,824514058,1919705376,2036621669,1936615712,1819042164,168649829,540091662,1953721961,1701604449,1158286692,1953721929,1936485473,1818846752,1752378725,1852404321,1851859047,1869357156,1852402531,1633886311,1768055152,1769236844,1864397669,1870209134,1746956917,543453793,1802725732,218762542,1213406986,541413953,977678171,1667330163,1528847717,1815759919,1936417647,218762589,538987530,1933198895,1701011824,1092624416,1668246636,1936028769,1818846752,1886593125,543515489,544106792,1702132066]},{"sector":5,"length":512,"data":[1713383795,1713402479,761621609,1918986355,543649385,1868983913,1952542066,778989417,541526541,978071328,1801678700,538976371,1937007955,1701344288,1836412448,544367970,1713399407,1936026729,1634235424,1633886324,1700929646,1668246560,543450475,1864397921,1948280174,778399081,1395329549,1163018568,1851876128,544501614,1763730786,1635021678,1684368492,1684960544,1142977125,1213420367,776752197,118360589,357187213,26198401,369492419,134219778,419430144,1850282752,1717990771,1701405545,1830843502,1919905125,2017792377,1684956532,1159750757,1919906418,238101792,-566326009,952206102,369492675,335544581,603980544,788530688,1342179584,1778384640,1867780864,1634541679,1881176430,1835102817,1919251557,1850281587,1768710518,2004033636,1751348329,1918980132,1952804193,1981837925,1702194273,1953459744,544106784,1869376609,543450487,1735287154,1632640101,1701667186,544367988,1836216166,1847620705,1663071343,1701999215,1343124579,1702064737,1920091424,622883439,-1928917455,-2129192386,-1023372607,11667761,-5242729,0,255,-953286656,1555974,-1993409536,773304590,397608647,-953286656,1558022,113716736,6071,1929747176,-18413,495658579,1930377766,178179,19130715,-1070167762,1431786263,398990989,-1090062802,1131749399,103475372,-1897382798,-399019003,410322367,-1090062802,91562007,-351971608,116796966,1950422975,468405790,1007126574]},{"sector":6,"length":512,"data":[772175165,398397056,333988609,-1396346106,1124567086,776912619,397751945,509486,-1004631762,495658519,398997133,792494126,-2144455052,141828668,-1090062802,1416954135,21465638,959374386,1930932486,-1314836974,1138807063,651690819,-1998053493,778693376,397608647,1626013697,21465638,-784276430,651690976,-315486326,259311883,-1960422589,13035551,1128362843,787669571,397608647,887816195,21465638,-784276430,651690976,-466483318,54583505,260712152,-921965262,1396903796,-400585946,1935343709,-498908405,113716978,268211,777740125,397479563,397648174,-1254716626,378220055,-1976690761,-132663010,-1960423229,174343,-13761163,773304582,1962949760,108825,-953284235,35107590,1343154944,-4979792,1476435688,501744619,-104638463,642864579,839405450,1959332845,158305549,1929607144,976904,-335939870,780742150,1509431238,-2144943267,1946157182,-152353533,-2144419003,269991694,1929365224,645934666,1357846463,398631214,19842603,1477951494,-1036612818,1015033367,774272256,989822080,-953284235,152548102,639625984,1946173315,133637657,309657601,-1291401426,-352321001,9889801,-116528136,-1336931605,-385895421,-128450557,-1960421437,-1993472897,639088446,-2010774136,776995173,639092385,1476543881,175440188,72714534,105744678,37509867,-1993996683,1357579349,-395049156,-462157764,108332604,72714278,71057131,-1590816907,641734592,637814153]},{"sector":7,"length":512,"data":[-351904372,1971922475,1301030404,-165261306,1946223175,-352014332,1207313929,91488770,-1259863376,-165259264,1947206215,8644611,-970013857,1593862,126559824,410370059,1465013072,-1291401426,-1275066089,-402411265,1516240731,48978011,1055589355,-2147440240,-953281932,1553158,16705536,-1287748818,645204247,1950351529,113716754,6067,771802088,397622915,-1458604791,175382528,-1291401426,-402653161,-2144468510,18371134,-2094133387,1553214,-953284747,152548102,1354979328,76164694,443858954,225786428,24936494,772175104,-352320314,55633929,1178993011,1482612715,-1974315325,76164816,1912815080,1958742540,845836,-352024530,-347716095,-1017226520,208896060,1165123900,1098349116,1038868260,-1923676589,-2145891010,74712314,407387789,1947547694,1381060631,1706297102,-4472182,375295,-838860870,1482250785,22907694,54890030,-2144582845,123721510,777044827,398397056,645934720,788338623,725353610,758909556,-2144467083,35110670,190534,1364247384,-919382446,777245235,-1073085302,-236436876,842625536,-773288988,-388902430,745668818,-1047799157,-774774063,1912653288,-773664481,12380369,-754772366,-1276590061,51212800,13730773,1912646120,-1142209021,9300315,116797019,1946294207,-137234678,29524946,637587843,637958027,3933322,28313461,1961623476,-1977203056,1946172420,-164739488,-2145927418,992353909,913441612,992347767,779223380]},{"sector":8,"length":512,"data":[122436390,980559991,89406246,854270071,55327526,108992636,22297382,992350332,176097100,992353404,41878868,-964487957,1976106505,113716917,399283,-4980304,28316395,-349926874,113716747,595891,-4979792,1593661160,-1017620134,116797084,1963071423,-1648124670,-1007156624,809288697,960235634,808191095,-1007041544,1465013072,109021990,168135206,-1274776128,772402175,397608647,-4980727,283640752,1532649469,1431356248,45241938,-402355666,1014104434,788415976,398395126,1007514632,639595837,97920,334197109,-1090062802,242487319,175454780,8290342,1180464384,975592683,494207046,1383383050,334185798,4602406,776357237,642057354,1962952250,-347781574,116797095,1950357439,1207379471,1946165250,2122327559,578027520,268957478,1008235520,638154042,32384,250285429,125108284,8290342,-117214150,-1993472277,-132660682,1482512990,585673923,-401050624,376766547,-1090062802,-311156713,-1090062802,158613783,-116987058,1324876267,1405352131,1947024465,1946172461,1946827817,2105550373,510788098,-1977165005,-1014824099,964699652,856519680,160048841,20588099,-119405452,1532562748,777081795,398001862,645934624,1021253567,1010201632,1009939465,1009873964,-2146667232,125116476,977674416,639560640,16940416,-919398542,55413286,192203019,1124074427,1946237478,1022943751,-1017423584,398041646,-1090062802,108331287,-1089568722,-1069932521]},{"sector":9,"length":512,"data":[781051883,-583329848,792463988,-336002187,200013838,108343100,-1089568722,-1007140841,777213470,398212739,1344763136,1465012510,-164428203,12115598,-1943941789,131795931,1499094877,695490591,-1170831058,512306711,-1959913540,773306934,398204558,1946172547,1912879632,21248520,-336002185,-347716091,1583085803,49951,-1867380995,-374341594,1038155772,112,1766066701,1701079414,1702260512,1869375090,319425911,1970231552,1937075488,1634214004,1948280182,1713399144,543517801,1095649623,858665010,1763718712,1752440942,1869750373,1864397935,1870209126,1646293621,544501615,1986622052,1946815845,1970413679,1767317614,2003788910,1852383347,1752057120,1701015137,1867325540,168650084,1853443673,1296039963,1044140859,1262435645,1094799954,524302,2359322,2031638,1245224,2162716,983047,1638415,-1308677144,-1296083186,118359552,1594339058,-376708655,-1062797522,11665609,28311568,11665409,-5242865,234881023,16777984,-256,-1308619009,-1342175232,-1308622388,-1342174464,-1308622464,-1342171904,231112708,1431178700,538976332,925728,2556082,50331568,151040512,-20480,1966081,1769472,1769472,1966080,1966080,1966080,1966080,1966080,1769472,1966080,1966080,1966080,1769472,1966080,1966080,-65536,1158021119,788574720,788770818,83951616,270578176,218935296,218893580,3340,-16777072]},{"sector":10,"length":512,"data":[11665422,-2135949303,11665409,-1867513822,0,65535,-1308620287,-1342162688,50659342,184594944,62697472,83951616,201372160,9482240,100597760,-956255744,26259457,738243072,-20480,11665410,1689256029,-1308622317,-1341874432,-2147418113,1167753216,-1891529151,1162167680,-1907799735,-1835888497,1431279951,-1701226155,-1633837925,1330200991,-1499093675,-1431721817,-1364349781,-1296977745,-1229605709,-1162233673,-1094861637,-1027489601,-960117565,-892745529,-825373493,-758001457,-690629421,-623257385,-555885349,-488513313,-421141277,-353769241,-286397205,-219025169,-151653133,-84281097,-16909061,-2147450625,-1908324966,1166053185,1229538629,-1869640119,-1722838382,1498764623,-1667523943,1100979869,-1521135799,-1465407835,-1398035799,-1330663763,-1263291727,-1195919691,-1128547655,-1061175619,-993803583,-926431547,-859059511,-791687475,-724315439,-656943403,-589571367,-522199331,-454827295,-387455259,-320083223,-252711187,-185339151,-117967115,-50595079,385875709,-16776960,35651584,790769166,979196764,725499004,522992445,419475969,110592,67305985,134678021,202050057,269422093,336794129,404166165,471538201,538910237,606282273,673654309,741026345,808398381,875770417,943142453,1010514489,1077886525,1145258561,1212630597,1280002633,1347374669,1414746705,1482118741,1549490777,1616862813,1145258561,1212630597,1280002633,1347374669,1414746705,1482118741,2088458841]},{"sector":11,"length":512,"data":[1132428925,1094796629,1162035521,1229538629,1161904457,1330594113,1498764623,606360911,1092887588,1314213705,1067951694,-1398035799,-1339940319,-1263291727,-1195919691,-1128547655,-1061175619,-993803583,-926431547,-859059511,-791687475,-724315439,-656943403,-589571367,-522199331,-454827437,-387455259,-320083223,-252711187,-185339151,-117967115,-50595079,33554173,302035457,-2143506432,751501683,-1152180608,521013935,-887137321,11665426,112197643,-928593898,-928659291,521936805,522067742,505355807,9759,1190400,687866368,687865856,11665445,1823473715,-1308622323,-1342161664,-1,-16777216,11665416,1320157193,1095639119,538985805,637542432,216961,1297153,917682,67568048,50856703,50856706,67175426,50529537,67569407,84346625,67176453,67569925,67570181,50924293,67570689,67702017,50859777,50532354,51187970,50860546,51138562,34217986,34218242,67195906,50550527,67195393,50934274,51139843,50943747,67982081,67183617,67184133,67184385,67983873,-254,118166527,84153346,117773569,84154111,67835649,84154370,17111297,118168066,67836674,117578754,67443972,67444479,67969023,34218239,34218242,118170114,50934274,67576579,67183617,84803333,353637375,421009174,488381210,522133278,-1308565470,-1342101760,-1308622589,-1342173952,4084,34,3276802,262144]},{"sector":12,"length":512,"data":[505,50331910,65536,4032,8978466,65536,140,2,327680,99223020,54395681,9175829,1547330304,1634625911,858665010,16791096,0,537327158,209059587,1479999286,-2144809725,204862,-1598277771,10,1544192,1376256,2293760,2097152,1900544,1572864,720896,1114112,196608,0,65732608,771809512,274870015,-689437717,788475392,65736806,771804392,275394303,-1024982037,788475392,65736814,771799272,275918591,-1360526357,788475392,65736822,771794152,276442879,-1696070677,788475392,-338751362,201372160,-1892765696,772856582,282920591,2045256653,788475392,-1892806437,772857606,283182735,1709712589,788475392,684527839,-889168920,-100646936,554092078,-796000253,519825291,-1899852202,-876377126,-33544216,-1912397554,-1962572266,-1962572762,4622572,-1559891295,-257882748,92709637,1515805528,526212958,1347669767,-13760844,1477534494,50011,8388608,9437184,513605631,1465274630,1731642670,1053044241,79237483,-1477182464,1583286132,-1658910887,-1940892733,-2036126000,646524432,-930344824,-1598238578,772125703,291708671,259309579,277258542,-1959866226,1477478438,-1261704357,1007734031,839283719,-855461660,839234576,-1106195008,521015992,607956220,246679924,-855636037,-67966192,7405035,393216,2228224,2,262194,33095680,262,66304]},{"sector":13,"length":512,"data":[264241152,7340066,65548,0,244011264,-18743280,20499289,1245362,1329814704,1381256789,1498623577,-1308619693,-1342163968,393653,699650,187630592,-1325072384,100663307,3041,844551,2490624,28639233,2359296,738197504,754986496,14848,217382914,992739328,184594944,168669184,540029505,1685217608,1701994871,1920091424,168653423,918894116,1959068982,-1869551609,909559094,125093125,1460031976,-402511430,123724698,1017925977,-402295782,2115931182,512306693,-880016004,117365646,-1070398769,-358533552,1161504258,520509487,-1070342261,-538390389,-986309106,-402311626,-678752593,-1959360844,-150795970,1954545863,390588441,-1073022325,54268020,-350289036,-1003069489,-385534402,-1956707167,607956218,129173620,281874100,-18091029,-1379205120,194032128,-20480,-1,2945,24117248,54198678,1112671035,-1064507253,234885125,303903,787971,244039822,-108331002,-34108593,-1202674445,-883949516,-661863540,-1898410424,1032128,-1342172999,1202648063,-1014237301,-1077899704,78708751,-789068149,-628299565,74698795,-768878452,-268181293,-947135858,-388771593,-802438516,-1064565645,-522989013,-1030817789,1322289836,1187548077,-31145334,91598908,-341118036,1974615046,-1968901267,1946265794,20102833,512433934,872153092,-930370094,-1031072797,-1064385789,-2080863315,292880383,-501415642,16417267,-2129234704,-351272766]},{"sector":14,"length":512,"pattern":0,"data":[1086360796,-276578162,486614544,-339702200,-1950118942,-1962932162,50334262,33948144,1060096,-1064380274,-100663109,-410265970,784698363,1085550591,-1191181637,-896794602,482007694,-1205744383,567102719,1801675088,1713398885,543517801,1663071081,1970434671,1012848,169216530,169740826,170265122,170789418,171313714,171838010,172362306,3147]},{"sector":15,"length":512,"pattern":0,"data":[5855821,65625,32,155320319,-150993406,28176,64,0,0,0,0,0,0,0,0,40448,35081]}]],[[{"sector":1,"length":512,"data":[-1,-1997223872,1633847551,1852400237,111,0,0,0,0,0,0,0,0,0,0,0,0,36608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33554432,67239936,0,503316480,1026,0,0,240,-16777216,255,0,-251658496,-252645136,-252645136,-252645136,-252645136,-252645136,-252645136,808464624,808464432,808464432,808464432,808464432,808464432,3158064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-16777216,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,516161536,1772093485,1200104961,918887937,-953286615,37382,105155328,589204526,564342272,777192960,2170623,772293771,771760547,2170623,-2144991397,1930625663,1738550792,1200104961,784539393,11339519,-1993471115,771763486,3081868,1392924619,-1388410066,-773336832,516173543,-1993474003,771764637,3376524,-346093733,110046933,-1892810717,771760390,2819727,688295726,110046720,-1892810391]},{"sector":2,"length":512,"data":[771844102,23529103,777193047,11353739,-405674031,832408366,-2054279680,-1993473997,771763486,3081868,-379648165,-13762049,771843894,23607039,1765211950,922693121,-13762519,771762998,2176767,590806830,505146112,117317390,1048781066,1962934445,1343655117,1378257174,-1139339754,1381309664,1465058897,756991062,1200236032,23568897,873027048,23634624,1772240676,689342721,724470016,-1505852672,125042723,23594742,1448506816,1593755624,1442933993,1593753576,243236902,871461889,-1144549633,-2068316139,-1943024362,1959201728,-326413038,95966982,1730054656,-60883199,-396535720,-13500056,23535242,-2016943151,-56474,554436294,19130879,-352235544,2139104803,930350082,41910310,640709640,151158656,-2144982668,1946223231,2139104918,-663485950,41910310,645952787,1024280459,141844488,1936066621,18016259,654273769,-1576188022,-1977220964,9413127,23568636,554436154,211959412,144697377,8466056,8588936,-1962986925,-1610520802,-2021130084,-1885339473,-913864704,-1700701440,-1545022685,28311685,-2019368750,-1194817024,-523042815,9282376,306678566,637562275,-1559345269,-1960443867,664997959,1200301568,114438932,689882195,1207313920,123404804,1048780916,1946165500,1065362956,638809368,-350857333,-49907,-1960441739,-1960436649,100866631,-763166591,-2096198912,-4239360,-741682177,-1947216920,-136895542,198124503,7316417,7411336,-2027517352]},{"sector":3,"length":512,"data":[583859712,7840452,41910310,-402295548,65732692,1577273064,1493654367,1048796506,1962934445,1343655454,1378257686,168754710,-1391526111,1430159360,41222166,115919647,-369497325,113769887,123,1381061456,106387029,-401802008,1594297761,1499094366,-373073829,1048576166,1946157175,93776118,-1058529165,2007060485,-2061043968,1492124416,8726263,-372127605,4923022,521053683,-1175950101,-1186433787,1172832257,-400723196,-1974467181,7839968,1510384616,-1031074958,8726263,-998029077,18999556,-150636824,-1962900186,1357500872,-150964319,-989821658,50350390,1487270896,585834254,-402584087,-1974467245,1342207782,1912706280,780884169,1053032569,-1108869083,653744133,100728965,109248549,-2147418001,28950,989890465,1996516614,1829120455,82503680,1053037939,243990565,512631708,-1510801333,-1700716786,-389289181,460588312,-402616927,275906893,2440900,7941771,-1593482264,-1360321638,-1593799959,378142831,-919404431,7151243,-2028065983,85160448,-763363327,1364414464,81913938,1482381658,1053091444,-1957625819,90302657,-1957268903,653740225,103350407,1053032557,-1006239707,638780726,117456000,1464936821,512477491,-538443635,-396927228,109249802,-2147418001,28950,1040406879,-555605094,2440841,-2080423447,16805638,7411328,-1707212032,-336535005,756991207,1200170496,1204233731,-1023410158,7159427,-396397568,1131545616,1946440680,7184664]},{"sector":4,"length":512,"data":[1912634600,7184856,2440900,7941771,-352017432,5367869,1962934713,-1609659644,46065699,646582643,-1070464915,2440900,1929714664,-1951995107,-1593816778,653721709,-930414459,1053092305,512622629,-1510801333,1872830222,7578368,-1577029216,516161653,-953810899,16778055,7315907,7409290,7538219,7671322,-1005912540,-1950105334,112840,-1974935341,-1948199987,-150959346,1976050641,-943458302,31494,1228850176,112640,71166033,-1957399975,-150959858,-1928453167,-18599424,1944703428,852295418,-775881024,-772115735,-1974447647,-136039740,-1006598874,50350398,-1957668616,-402622162,1498940386,-921968638,512478581,512295053,243990667,780861577,501743737,1371797513,-989928398,-93066799,-1070412546,-372129538,-506332558,-997568431,653780018,1053032581,-134021047,-528068520,568874758,1913085700,-1957668825,-402622162,1498940298,-921968638,156811381,-1962898682,-1962898658,-1962899186,-402622162,-1007155004,-116996989,1745286851,242499585,87475206,1015031315,41223936,113737451,123,7814784,-1590004736,103481479,104530039,57802861,1342205345,1476574184,-1001386636,-1979701954,-402622682,693633826,-150967034,16811302,-2097142522,16805638,7411328,8888576,7145019,103355767,-2048393107,-1006144510,-402643650,-1700723990,-2083198173,27966,1843924852,-1005947902,-1593825986,-672661395,-109385470,8062663,1048576000,1946157175,-2029089942]},{"sector":5,"length":512,"data":[1997417216,1829649152,-1962642944,-1207931634,-523042815,243945800,-523042697,36628560,1968199769,-388396281,233505378,8982027,504093067,-504889205,2033093383,624870400,693131264,-1979683578,-402622682,113705590,123,-2061043880,621150464,1862697728,377487616,-1593835407,104530055,762773613,7145001,1963055080,-1928426741,-388396288,233505290,9244299,504093067,-1981284213,624870407,35973120,-349988191,1832813500,41222144,243939819,28835949,1222693632,26929232,-1962445479,30468313,235605483,-645201783,9117195,-955822104,31494,2033093376,624870400,7184640,-385751576,-1588462212,378142831,915013745,199950695,-397258416,1499070815,1361212760,15011467,118360547,-234821697,1493988527,-2147483387,-589168430,990767961,-344637867,-1054123943,2011416715,8062663,1304363008,1872843008,1897302528,1731627520,918816257,-2144988411,1963393084,1347572056,-1949748393,-1996452578,-402617570,1482623009,17127770,13795328,-947704439,-992026110,1476413758,24504400,-1959038375,8054977,4800196,1442860478,244011351,747316124,1944647219,1583307013,50513539,-500983234,-104597274,-1001367357,-402634434,1918370111,4646934,1304413176,-2094167296,1364656839,1493611240,-1947016609,-1962876098,-1996460266,-1979652203,-1979682538,-1996396746,-2097076331,-8191289,855798336,-482440705,-448888064,74653696,15009535,2074330105,7315712,-1610580573,646578289]},{"sector":6,"length":512,"data":[2141389159,1906361088,1730578944,2131110657,544602112,721448865,989887750,1929411334,653742099,915088282,-268238775,2064001880,-103221504,8888771,7800363,7145019,1839268722,1829120256,624870400,1872872192,1897302528,1731627520,121825281,8982153,-2097116253,309657597,553518723,1475329,780730401,-41746311,109298687,-2097078014,2163734,7941769,-1006633597,-1979682911,-1979682538,-1996396746,-1996453090,-402618098,780732117,-1950154631,-385844946,243991999,-164420708,367526891,73066752,597429899,65795635,-1962932248,-385844946,844104754,-2061043740,-775386368,-997566231,653780018,-259325819,-2027489341,-1656846080,-1626960896,10593024,-1962905695,-1962905322,-1090485490,-1059848193,-405544237,-953956213,-819734537,103534859,-628948863,-1592560896,103350401,653721761,100728965,-1070399331,516215347,2145910825,-1861827072,516162560,770179141,1159644406,1200301568,-792408061,113689548,-352059247,-1861827067,1049167872,109838493,646447263,113639585,1342177442,-1962905695,-1962905322,-1090485490,-1059848193,-405544237,-953956213,-819734537,103534859,-628948863,-315467520,-763117309,689882112,1370112,4529860,-990525464,637551902,-805091445,-1009987388,-1996445277,-2097108202,2161726,-165278091,1946289223,-1559836921,-1006633216,10819209,-1023368285,-1947979181,2022148824,-1948004063,-786209137,278367203,313494305,851663649,-773288988,-1903477019,-41933978]},{"sector":7,"length":512,"data":[-1023314689,-950709498,31494,1228850176,-1656846080,-1626960896,-1593391360,-402652928,516226824,1215430729,1944605446,1913084672,597336383,-148450765,642780023,839927690,1744250596,1191388694,1602954766,-754667247,-138214421,-906077736,-1040269022,-5185398,-372195074,-930350475,1720682843,-1022928093,189122342,-970587648,637669445,152061383,1170679296,637534478,1131975,648211200,1024149387,1450311744,-59514671,1324032372,4161574,-2144933516,326396223,-381714394,-2144989836,913697599,41910310,640644496,605374346,1978678512,1200236069,1961901077,1963042843,2139170327,1965961992,2139104775,141767178,222807590,1124199169,-1007041544,-524544242,244002331,-1959910404,774085150,1758467723,266922066,281183066,-852426568,33,0,0,1342177280,1431458131,236869462,117311007,1048579358,1946225950,-1342059255,289269984,109311979,-2097078010,2164758,-1957275824,-1564177721,1460014365,87999534,1166550547,1426546434,620656104,219980351,219688584,219420297,219557513,-752641375,219849704,597729629,8062523,251593845,1049297019,109978526,1364656203,1509758952,844781663,-17418,-489439021,-930356269,-738737373,-787756253,858841945,403057627,1137908493,-76289583,-1588441013,-470348518,1482356739,-763116797,1138438912,-76355119,-397286959,190382099,-19368503,118300174,1566465823,1482381658,1397903555,-1656845993,-1591834368,-1891726848]},{"sector":8,"length":512,"data":[-1675720192,516182784,-1477964524,4956669,838901667,488540927,-1350071795,10265088,13207434,184586146,-2146667310,402689854,113640823,-1005059953,-973060834,134254854,638393504,-402569336,-2007302101,-2013229250,-1006592994,637551902,215031,1594193280,-1017619877,-401793632,1379667983,1533014389,2095667290,918888191,-35058412,242,0,0,0,0,263454720,-1910571218,1347601166,-1101639341,-506392962,772573486,772037769,772162697,772297865,672967,2089364992,1150037516,772518926,244195071,1593174225,1515739993,1397772995,2126403153,786551054,-953283447,1092,108824878,138710062,173836590,205818158,240421166,51179,0,-1667158443,65402659,13796294,-165770450,-4331485,-1590770851,-436788324,-763116029,512437760,1911104502,117321471,-1957617398,653733569,12460954,-1946749180,378220248,1307059190,1505758207,-1545074060,251538957,-1007148790,771752632,554307326,50169,0,0,772214278,257965707,-1557217229,-1959915676,1227073038,-1426062843,-1070335262,244002475,776545190,258096779,-1073495669,258384686,-1413467221,-503315963,1405290490,512437847,-1959915676,772760126,-1959908983,772759614,-1993466999,1594844206,1465107291,1714326318,1049308687,-1959915678,512306715,1532956518,775630531,829689702,1680751406,1445557263,915091031,-1959915678,915091002,-1959915680,-1959897806,772759598]},{"sector":9,"length":512,"data":[-1959906423,772760110,1599945353,-7083938,-1377282621,-7608065,-1957313699,1048587969,1946165515,771960345,-2027019348,724435014,774089774,598617603,6195502,-305062933,-1406270674,1183198755,786706944,598486571,-1372716242,1585983011,32080640,-1340177618,19726371,377695744,1560290224,777343427,598224387,4638510,724500479,774088750,598355459,4638510,861798399,-617393207,1543473128,-1959869607,774089782,554385024,840135936,787337709,-1959916918,774090294,-439287158,-1959916565,915090954,-1959910482,915090946,-1959910488,1049308722,-1959910486,-1957670085,1189631425,1364942332,971557171,-1017423361,-385950744,777387705,554385024,772502528,598486531,5147438,-305066517,-1406270674,1317678627,1575825920,57985291,-1006664728,-1338080466,913571875,1714326318,1049308687,-1959910484,772760118,554385024,-350849792,786813189,-305059189,3899438,-439225484,-1959917077,998452778,-386436096,1355022148,1448235347,-30517929,-400487930,-2094071886,2338878,-30476939,1562446350,1499094623,1405311067,-397258671,1482358630,777345881,598224387,4622638,-1473369298,771960355,-1993464918,-379781034,118423164,-1472296146,244002339,-1959910490,723757614,49120239,1974465276,322645566,1838020469,774582014,-1959910488,774089790,554385024,772699136,-1959916661,774090302,-118946933,787337725,-315487350,-1371632850,59387427,-439229390,-1107434775,784596991,597821127]},{"sector":10,"length":512,"data":[1460011008,-1506374866,772214307,598228619,-4665717,783021055,598359691,-1410085237,-1405187282,869174051,1048587968,1946165515,-204930302,772235178,598738631,12779520,4161574,-1977218700,2418695,-1007555773,116165461,1183733590,73304838,4161574,-1977218700,583687,1609689923,-1017313442,1431458131,1342372026,-1341865341,1111682563,535310519,1493791744,-863977078,-1877939376,-400509110,-277544946,1493559939,1575928202,-1017423526,-2124590251,-788463643,735433173,-527766327,-952449246,-169736332,183530829,12803583,0,0,0,50462976,117835012,185207048,252579084,319951120,387323156,6424,0,0,0,0,0,0,0,788475392,-2097142824,-176880901,297292624,113482,-13698404,-2145134562,-2010218525,1527975454,788175960,601366271,762691594,1242675280,-1677721157,520040186,1398088664,981459843,840398042,787123190,315656074,-796490194,-2021118446,1566249680,-1976643752,974311615,-1979288325,-335596833,512372442,-169143538,1964571523,16352024,-2094132363,2338878,-30536844,-400487922,-1070398543,8710607,1965161347,1976110043,788175995,601366271,125091851,118407219,1343417023,597336366,54888742,1049177688,-1943137531,772998918,554307326,50036943,-30520713,773917198,374671046,56879105,168230446,1048784417,1946166192,-343886033,-15210197,1951011133,117321464]},{"sector":11,"length":512,"data":[188555530,1036678227,997476880,1964440704,1946500111,1946565653,1963408401,-8591101,168754734,788475425,1397760984,1465274961,-400685483,104595974,-1959915404,774110734,554501830,-384898303,-1959919449,774110222,554501830,-86906880,1273496435,1560747776,1499094623,-90417061,-669057234,113651235,771953391,317720262,512306688,-1943137551,772993798,318572231,-953286656,1244934,-1157165568,-1993464830,772994334,318178956,-272955634,26142994,-32601298,138471459,844320195,-1635111169,-1976692016,-2145290089,-620544030,-1003562237,1528893631,-2147391511,225706490,771876480,2110986,20351022,915025444,-427809791,906636801,1172897824,16483073,-75284108,-2089520127,1970537211,1963195267,8513795,1946483587,133923660,-75260044,-2085063672,158599931,305462145,-68591756,-1157165314,166270253,-1406947839,-1440503773,-1205623261,-1959871810,773915710,553793163,1477422,512437793,-1959911170,-1121734642,-571931391,244002304,-1959910502,774088222,603854475,603758894,-402602007,-1041694518,113651200,-402581930,-1243021122,-402411520,-1377236749,1959922176,1364414582,1242675282,-90383565,-669057234,1975520035,-1193964780,29051409,788175872,601366271,-478096394,1532582528,-2142735272,1450443258,1946352256,66748448,-92259468,1432843524,1560308200,788476499,315661962,2022670382,-346341343,1407735060,844324096,-1635111169,-2144464176,-2145290097,244002395,-397073498]},{"sector":12,"length":512,"data":[-346224914,-13479136,-794916306,-1484771822,1539252600,844304363,-1635111169,-2144464176,2132900007,-13479077,-794916306,-1752551918,-1201987208,-30491970,-819918322,168754734,113651233,-402581931,-30539705,-1021244922,0,18,-1202716672,551944203,551813355,-1017585606,-13698404,774098974,374881920,101741317,1053044311,-165276923,1594097989,772371719,374867654,12052480,772860879,374750848,772306176,598752899,-82807808,1493630510,10217494,1494154798,-1008669930,1950350464,234651683,322778484,-2141162459,1366583548,1948590653,788475397,-164748316,19136774,216789876,-311043317,222199854,-445382367,1426507310,-1595408106,-1663374337,520040186,1431315428,-2002785141,1482492006,1426507310,-58719978,772175117,374736582,-8787967,1048587983,1946231808,782953426,554319488,782398720,374671046,-10622975,-30500885,505481742,1053109847,234759153,516104031,1053109847,100541425,-30531745,773917190,554319488,785872129,374750848,772306176,598752899,784823296,374947456,773551360,599342720,772830464,599408256,772306176,599473792,-385649664,-1202716539,718110721,1048587864,1963008266,378285679,-1993468336,236343846,484490263,-264339410,1886585891,1364414494,1448412754,1048587863,1962939993,-24188923,788277106,374685312,778401024,319110852,21362214,638743810,16862592,788081128,319110852,23429158,1048588030,1929651184,1566465845]},{"sector":13,"length":512,"data":[1532582407,-1909579944,773214230,374482571,-2130593712,777530061,554307326,-986818786,-31198914,-1021354227,-1609605018,102672399,520589291,-1592809201,-890543770,1463713838,57933846,-402217496,-2144405239,1463870,-953282444,31494,-106960896,1443284526,-2144468970,1464126,-202898572,113651204,-352315819,788176000,599793407,1476853294,251538966,24385108,1048784591,1946166192,777461274,603012805,1593851264,-68586209,788440296,374605510,786295553,374605510,-1663702182,-1190724050,-13698525,774095902,599330558,1347768527,1183575179,71731466,-2144445096,2165310,-30534284,-98321658,-870383826,-30499805,-1658602738,100664010,1053044311,-2144988411,123666493,1397808245,1465274961,772152917,374671046,113651201,-402581930,520617339,1516134237,-346530983,-1677705031,1048784634,1962943408,117321232,-13753414,774096926,599396094,772165839,421594766,1548326,41158824,74777768,-638887929,1012982864,-193636269,388399142,1476918016,-1173946834,520039971,-30530616,774093326,374671046,113651201,100734551,554077742,243279385,117702679,-805455640,171868206,57999393,787986664,601632511,1951399040,788475397,1396450272,105969525,-1912586056,396371648,1946724352,117745666,786592856,374816384,772764928,374802118,113651201,-402581931,-907281043,1431306240,-1947432112,1183386182,777869316,374671046,113651201,-402581930,788200599,602414847]},{"sector":14,"length":512,"pattern":2162721,"data":[-603549906,242457625,-486095058,771751936,15009479,-970063872,18240774,1443284526,1827143958,1355521532,-326414251,-1995815285,1566049350,1426507310,-970063594,18241030,-84128024,-333512914,110046755,781982172,374671046,113651201,-402581930,-878838733]},{"sector":15,"length":512,"data":[2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,2162721,0,0,0,0,773787166,597821127,-953286656,2338822,243871232,-922016858,-315409804,-1472820434,46607907,-1959854081,774089270,-64825,-1405711570,1048587811,1946165515,46607897,-1959919616,774090294,711,-503134845,-232462133,-305020129,181806,-1372157138,46542371,-337260288,227,0,-852159048,197168161,-1206946621,-661782464,1509062,1330886668,-50719283,-1912586056,1913047000,-367905792,-65536,0,0,-464519168,-1868419488,-1973296099,-427815712,-421493151,548469345,1492852966,861079247,-88043840,2400550,639535910,-1851576832,512306717,-1766318701,614671901,244065792,1543176230,1397801735,-1900006650,-1851707712,512437789,653925779,637543587,2498185,113651451,117448080,12802139]}],[{"sector":1,"length":512,"pattern":538976288,"data":[-1574043648,45358591,-1023536947,4622894,812917820,242558524,1476654,914894366,548412929,1077679339,-1607595915,1090788863,3934443,-956431243,28955186,-855002112,-1024768752,1477166,915025438,45358593,1354961101,281874356,281871284,1997965358,914894366,-1017635208,1997965870,915025438,45358712,12783821,777455104,318324420,1595801382,-1017991161,1448235347,1342592343,1476426472,872398056,-1123568686,-397205696,216596320,-1868550401,1964194845,-13965064,322702004,1387267189,1236271851,496345646,28922715,1527827712,1086128307,-388877537,-1813446864,1599932415,1532582494,1463713838,57933846,771753448,-887253600,1381061456,106256214,872373480,-1123568686,31989849,-10163969,1583308039,1482381658,1392924611,-1895877808,1424327,-854162248,197168175,235631815,1344220856,28858118,1532545792,-1010606329,207,0,0,-993737510,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,12567748,538976435,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,11739168,1413554355,1414415700,978210633,1931493664,1869181541,1679848309,543912809,1869771365,1634214002,11739251,1668227251,1920103779,1998611557,1701603688,1769109280,1735289204,544175136,1986622052,775954533,11739168,1699881139,544830068,1059680808,538992422]},{"sector":2,"length":512,"pattern":606348324,"data":[538976288,11739168,538976435,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,11739168,-993737536,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,551142596,-993732060,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-1077623612,539013888,538976288,538976288,538976288,538976288,538976288,538976288,-1289740256,1461760768,1769236833,1713399662,1931506287,1702130553,1752375405,1868854389,-1288802697,539013888,538976288,538976288,538976288,538976288,538976288,538976288,-1289740256,-993738752,-993737532,-993737532,-993737532,-993737532,-993737532,-993737532,-641415996,36,0,0,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,606404607]},{"sector":3,"length":512,"data":[606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,-16636892,-16580862,-16580862,-16580862,-16580862,-16580862,-16580862,-16580862,-16580862,-16580862,-16580862,-16580862,-16580862,536936194,4096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16777472]},{"sector":4,"length":512,"data":[1077936385,1077952576,1077952576,1077952576,1077952576,1077952576,1077952576,1077952576,1077952576,1077952576,1077952576,1077952576,1077952576,1077952576,1077952576,1077952576,1077952576,4210752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131076,776,0,0,0,0,0,0,1140850688,1397631824,113651200,771761466,626722444,1495173422,-30487771,774191622,624559870,973536814,117321253,-30530246,774191622,624559870,973536814,117321253,-30530246,774191622,624559870,973536814,117321253,-30530246,774191622,624559870,973536814,117321253,-30530246,774191622,624559870,973536814,117321253,-30530246,774191622,624559870,973536814,117321253,-30530246,774191622,624559870,1381061456,1448433414,-31519202,-1960769018]},{"sector":5,"length":512,"data":[-786089442,-1948003869,-1557869433,-2020924216,-895277874,1619495716,610050852,610437003,-1960550749,-1977271778,-2145290097,645234913,626597572,38243110,1962935101,4188165,-2143474709,-402164480,175243386,-2042814485,-402426624,251583984,1579098378,1510432605,777542489,610017023,-936444114,168754724,1566449441,1499072351,13326427,637534208,-1559345269,-1960434053,2107838535,2067711014,1031808550,-1005554679,774199582,610017023,-937492690,102558500,1495188567,520039973,-13753252,1596246046,-2144991417,57934141,-1008892952,626603716,272927526,639916707,-1559346037,-1960434600,1453527620,1418405412,1149969942,102912020,-1550310087,-1973935020,-1088080370,-892076033,-271324973,-685520245,-819734537,915063051,378086714,1352868946,609526052,609617411,624166459,1172833655,-1958548736,-1591455722,243999826,243541076,309601593,1912626920,609657132,628408331,624166459,378213746,1386292304,9037860,882971506,1443248421,-2081719004,2381374,1223164788,378258177,1386292304,-366024668,1979710851,23390213,1419844210,-754208476,-1578071072,179381334,-930357037,609763012,-119045144,-368645949,1979710851,20768773,1419851378,-754208476,-1829729312,244050641,-903142500,1480508497,-413472732,31510872,-1591453690,103490868,103359572,109257814,-2097077168,2380310,-373102397,1962933635,10414339,-1090056674,915088700,512632153,-1174657701,-1527578597,624206111,-1591390557]},{"sector":6,"length":512,"pattern":0,"data":[1252205656,609919269,-1591391069,378217552,-164486062,624299658,-738197569,-740109376,600345575,601356231,-1546581041,378086736,119416146,774192315,610017023,-937492690,18802724,1386309234,1343654692,-1144442076,585695231,1510379241,1480493860,-1676768476,-386518237,-1667111270,31510819,-2094770170,19156998,609359491,624206080,609617449,109980395,1049306202,-164420520,597429899,-427628463,31510872,-2094770170,19156998,609359491,624206080,609617449,609395139,609228427,-2081888280,91619325,1912610280,1480508442,609657124,-906097743,-930357037,1105786419,1443284966,-1023410140,-1090052578,512632124,-1960434341,-64661194,-218096711,882974628,625910565,-1560262239,1268852042,625779456,8062663,1352728576,1377209124,-1963576796,-1088080370,-1059848193,-405544237,-953956213,-819734537,1352913163,1377208613,-1157161435,-13753028,774134814,617094911,1912610792,609394972,609228427,-4470477,-400299777,4800196,597429899,-1612122573,116835301,1954555200,1495188502,624927013,55019814,-941961240,2381318,-993789696,-1205511906,-1993998080,-1007156409]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]},{"sector":10,"length":512,"pattern":0,"data":[]},{"sector":11,"length":512,"pattern":0,"data":[]},{"sector":12,"length":512,"pattern":0,"data":[]},{"sector":13,"length":512,"pattern":0,"data":[]},{"sector":14,"length":512,"pattern":0,"data":[]},{"sector":15,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]},{"sector":10,"length":512,"pattern":0,"data":[]},{"sector":11,"length":512,"pattern":0,"data":[]},{"sector":12,"length":512,"pattern":0,"data":[]},{"sector":13,"length":512,"pattern":0,"data":[]},{"sector":14,"length":512,"pattern":0,"data":[]},{"sector":15,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,33565068,512,1073741824,567085492,251446265,1192135711,230699776,1397760000,567095476,427230012,-58718862,-2096336118,1555694788,-2824070,-956204055,-14615546,553427455,1760953857,-1206113048,-1880621056,-1161937657,-970060683,6876166,1915815623,-1889861632,-395774458,1659372582,514517021,1913347560,1048587787,1962961132,161015814,-402574359,158664312,-394675270,636092286,545712129,186783208,-955877952,1349054470,-1090056668,-4709530,1751551,-1582566404,104556794,57877402,857971361,-1707673646,-4029661,-1560281067,-146267232,-1557947866,100869022,-123526246,-266957976,597336424,450887685,554410688,-1407809234,603758883,188645422,41156641,-805052207,-1993444750,52669974,778662608,554385024,-788368128]},{"sector":9,"length":512,"data":[378089184,-805100630,-1993451918,52668438,776827600,257955465,1148375043,1645644078,1926234895,264405819,78722674,-1993413933,778620950,603721355,1912797571,243871259,-1959910490,1378064926,1510356456,20799603,-1174047488,65764040,-394620486,1189871262,-394536774,1055653526,53397644,778620934,771771299,-1318520671,787010308,1758463489,-803304658,281248616,109981190,-930320565,958846979,117441054,1156254834,-1151859784,567083008,317204459,1275181062,1048584653,1946251827,1036553447,-1401446400,-1151859784,567083009,28877426,-851397800,-1958169567,-1184303074,-338493436,-1938677299,4956974,-1575072280,-1494735888,1751296,-1975588469,1013502342,1007580160,1967108097,1367322626,9889865,-387587495,65537485,101902342,-2096630296,7483710,-2101737867,-35854215,1760575105,58009996,-400593688,62390390,1226738520,-1205744273,-1959897087,-848345314,109981217,-1910083765,-1275057146,-383660727,503751070,-1974316203,73722065,-376755342,21465677,-2010201078,-1960740730,22513877,-439228975,-65141970,323455776,277252398,357010209,310806830,1566267937,-1178400993,-1061945318,-486556696,-1957444615,-2027933991,-1017437832,102630942,-1269344683,-2094936750,520495811,-13374581,-2095070170,1920270331,71825190,-260734976,71797542,-1769633490,1200301601,-2054607350,-1960435300,-1993470905,639737477,772687755,564168073,273124134,-1568306898,39041057,-1702524626,28555297]},{"sector":10,"length":512,"data":[-1736079058,-1958807007,-1958870922,-1833434538,1053229857,1040205449,771903116,563262857,-1802139346,521075489,250144907,315065088,1583318763,119474013,1371797535,1448281630,-1940565417,-1946842145,-1161720597,1397751809,106254929,1398232606,1242675282,1358954683,-2124861491,1514425851,1399092571,-1152773704,-896860157,1529859401,1962932608,-1948284078,787887086,561546378,-1053147356,55975797,787874806,554742981,-1940662132,1539521475,1815677557,956658950,158599260,-24951202,-338660838,-896903142,-796210690,-1152773704,1405026308,28556802,801965838,1375764713,1511838952,58048523,1032877547,-126746424,-397258422,1499077924,1962934589,1743278571,-661956323,-529212917,-661929330,-1976633805,606173316,1194993215,1445229837,-167512573,280282414,651725857,1963083579,105155345,1963408166,138709769,71777062,1180567924,1914371715,1478028233,222791718,71812902,-1943666093,-953809329,637645575,1593986956,1560747870,1482381658,1912759784,503524890,1866014972,957052179,108336463,-1995212919,-1023535745,1576982505,1532911450,-1017569529,1912782312,48490542,661962763,1979842621,67124569,4005750,1025865224,779489280,1981284413,-234436809,-955776920,6878214,-348067064,1760731994,1760822983,871038976,1760691911,113705984,16804084,113714667,67135730,1760822983,401277440,1760691911,113707008,67135732,-224196117,-200882328,-1207959448,653722624,922183924,-22862950]},{"sector":11,"length":512,"data":[67156003,1760700151,597309175,-1021051741,-795948916,781848764,1867187852,-1064558834,-1200664157,567105536,-1200666717,567105538,1235477554,14608495,12061554,43051008,1975172669,-1871123709,1867071107,-385649407,62390401,113496,1668424141,-1151860296,567083072,-1946127128,-1933537592,-1938860770,-1150330594,-1330090163,-754667153,63605992,503810498,603592331,603463310,-850722632,728899361,1476638800,1226738478,-1205744273,-1959897087,-848345314,20731937,12061556,35448832,1975172669,1275115526,-1194581555,-1959897085,-848344802,1476507681,1193184046,773967215,1867187854,117057513,748758780,868257280,-1174893632,-1359806465,1946499110,-2080906750,-1943141433,774109190,603602569,106386974,251104031,604159751,-218086471,526278565,1460060935,-1191149121,229638272,477474546,721453240,-2134928959,-231755776,638416302,-880796278,1828421664,-269810316,-117314568,12781407,0,-2147483648,1526726656,-2147483537,111,538976288,538976288,2105376,0,0,0,0,0,0,538976256,538976288,538976288,0,0,0,0,0,0,-2015656192,-2015655973,-1864661029,0,0,0,0,-1274654384,102878546,840942879,-20280595,772830409,553393667,-15106173,1606748788,133227033,-1007134631,-111650553,1397752003,1448432209,-1205991849,-617395454,-74726514]},{"sector":12,"length":512,"data":[-1073008691,686490229,-851017544,1958742831,369145887,2141728717,1169757301,1397865028,-852819528,1979661345,-352252923,-1070349565,1583286047,1532582493,50008,0,1124120656,-2143539251,1392907893,-851242824,512306735,-1943138674,1527681030,-1007134713,-1262266119,520039945,-1262285170,520039944,-1262285170,520039946,12783246,0,729073931,-184105426,-1276641245,-1960676609,653733569,12460954,-1946749180,-3938096,309641227,-166295250,113651235,-134142987,112835,45663225,788130560,603274880,772306177,603330187,-1006655256,0,-1823862597,113455053,118393902,113716755,317330181,17221422,773752851,318967436,-116996306,772997394,318443148,1258720814,-36181905,49927,0,0,-852184058,512306721,-1943133199,119796486,503759864,364388110,773967157,601890441,-502887378,429963811,-853207624,890877985,-1993465395,774102046,601753228,-1206284102,567092505,-852160328,512306721,-1943133244,-1172060666,280500403,-1205744347,567096585,-937522898,109850147,599401418,621393945,330834381,773967157,600579721,-838431698,415611427,-853208136,892319777,-1993465395,774101022,601491084,-1206650694,567092527,-852155976,512306721,-1943133212,-1172052474,565712564,-1205744347,567096613,-400651986,109850147,-558226454,623228953,649601485,773967157,602676873,-301560786,438811171,-853203272,891861025,-1993465395,774098974]},{"sector":13,"length":512,"data":[600966796,-1206490950,567092520,-852162376,512306721,-1943133248,-1172061690,146282613,522308901,49927,0,0,256,-1157627904,-1007157120,16841601,-1977218701,1947024391,-1144784894,-1007091456,-1513405,-1977218702,1947024391,-104597502,2000239811,1915763720,-131060720,2001091779,1916877832,-130601980,1019476419,1007318841,738619952,-119262672,1371797955,254075018,338137092,-997841088,-388889423,338137092,-1017567424,-796241838,567083700,868440664,-6494007,-1024975758,1377137407,-779368189,-922498813,56281603,-8066872,-420806030,-1966881800,-4986682,-2030056984,-3872572,-1494695286,-4396801,-1209482106,-389575937,-1343684711,-389773569,-1014300758,-385905432,-997785694,-1006658072,-402653000,-1103233598,-385649478,-2094136013,7483710,-1645673612,-1329966591,-855001983,-2144445919,7484990,-1169010828,162825029,-1202052659,-1880621052,-768388611,1376905960,-1266462278,1512164617,869895001,299493586,-2090878382,567085492,47194,1476225512,298182742,-1266451014,1528941833,297396314,-2087470510,567085492,79319642,-855001982,79190561,-46077952,-1047834031,-661920777,-1173252376,162824723,1499079117,-628375157,-661920777,1376879336,-1266532678,1512164617,-1118678187,1565917183,-41724603,-385650150,-1957363528,307751125,-2095745955,-1957462045,306964691,-2096794536,48988131,-343156597,838861752,-52369198,-1914109069,-2134706688,129746293,1086518915]},{"sector":14,"length":512,"data":[-390397067,-2007868798,1199572055,1204175108,-717545466,-970061196,24260614,705054662,-1261204654,1512164617,-1957538042,-628468779,-1976631502,1535635607,1954595574,1242609707,-855636549,-1161937617,-494920075,-1962986881,964699866,1376482815,-1266441286,1512164617,-2144986389,192151609,-2085504430,567085492,1376381786,-1266434374,1512164617,-385392806,1516109629,-2144445093,24260670,-1169028747,162825223,-1202052659,28442632,-151244312,175374790,-1266403910,-350106359,2092601352,-855001980,-994422239,-855001982,-1007068639,-386042648,1903361418,58011452,1006778089,1022391328,1022129161,-385649872,960233638,-1612119178,-389467392,1299381708,1997601155,1095939,1206408017,1918458875,-397192943,1499200361,108314635,41338939,-2094086005,7484478,-953276811,24261638,243871232,12085490,653733380,-147953422,774085174,774110371,-349962589,28436874,-233948370,786069352,1760824969,772014264,1760831223,-1707673810,-22860253,-9967325,-1169008549,162825162,-346414643,1505382921,-855001989,-605529567,1007317756,1006990379,1258386477,-12588552,1094508324,1513926514,1093446519,1381061456,-768408034,-397225846,190452745,1024685248,242352328,1024745448,108331009,1499078407,520571115,1482381658,-796241072,-1964444110,103493136,37578998,1026520064,443875333,-331448274,527761512,-1308620616,-85137407,1963116278,-336186862,4034577,1024160768,108331015,1040146921,1482424319]},{"sector":15,"length":512,"data":[1692992373,-1949791489,-62592813,725355890,758923380,-1645673611,786074368,1760312960,1393587200,-13444726,-762853842,-128253592,1442746601,-1947389357,-1207848215,1397751811,-91428779,-1302832291,-91953148,-369599141,1397816945,1448432209,-164441718,772796648,1760953899,1962935613,2073606672,567085492,1499094366,-336045989,1516068514,777542489,1760312960,1393587200,-13444726,-762853842,-128253336,1442721001,-1947389357,-1207848215,1397751811,-97982379,-1302832291,-98506749,-369599141,-2144403955,6876222,-1974267788,788476633,1758627782,-369599744,1398144501,-376705742,62390962,1431523328,1576661480,78796891,1543105000,-689309603,-78845699,-385649675,1405288787,-1191569944,-806879230,-1092002823,-79107843,537715570,544498492,-478907844,309621052,292845116,58027068,1006670313,-378505863,-991362604,13297920,1392577513,771758779,1760312960,1428059392,-1293186221,243712,-397061296,1532885378,1086518872,78775669,1543075304,-1484771747,1274898641,-128200331,788355305,1760560839,1405887568,1392515771,-397749365,724438737,1533605382,1962935613,-2017055226,1258318033,-128195211,1023225065,1020294261,1016362104,1008366694,1009218670,778401139,1916143302,-78321407,856081966,115933554,243281661,771826689,1760312960,-384535552,-2144404235,-31194842,-331448274,57933928,-1191385879,45219848,20351534,-471313628,-756458504,113716988,94769,-953284629,7483654]}]],[[{"sector":1,"length":512,"data":[-95623168,-454491277,1965047038,-55318212,1005113482,1009939194,1019382330,1345549678,47187,1039706600,1482406590,-1343683723,-92542976,-1993469070,-383517682,-806814587,112888,-101152280,2080619203,567085492,1698481145,1458059381,-2115079430,1979973881,16351505,-2129627640,1980760313,536918287,12127723,-1190597884,65734656,772800697,597298825,-1993414191,-383542258,1648163893,451415413,783446778,1761218185,1023157481,-341412508,-106370908,1631362930,2050792306,1630312311,-331448274,276037736,853051987,-2017054977,1526819026,-67638792,-466463915,28502155,-402652232,1566308342,-68949512,1945750760,-10360573,-131798959,-402652744,-1168508962,45615104,-137041920,-970013703,2359302,16497897,0,0,1750338061,1633886309,543516771,1668246626,1769152619,1713399162,1394635375,1414676813,1986622020,1936269413,1634562848,1919249516,1634235424,1752440942,1124732261,1297044036,1667592992,544370548,1702521203,1126178862,1297044036,1769104416,544433526,1819044215,1953459744,543515168,1751343459,221144165,168633354,543516756,1869440365,1915582834,1684632421,544501349,1953656688,544108393,1394632303,1414676813,1986622020,1936269413,1634692128,778331492,220465677,1970231562,1851876128,544501614,1684107116,1095586592,1917080658,543520361,1852139639,1931501856,1819043176,1869770784,1835102823,1970481184,1629513827,1292504435,1329868115,1752375379]},{"sector":2,"length":512,"data":[694971493,544370464,1684957527,544438127,1914729321,1768844917,539912046,1953068369,1852397344,1937207140,544370464,224749684,1701344010,1881173100,1919381362,539782497,543452769,1852139636,1634692128,1297293412,1146376769,1702259058,604638510,1297287693,1146376769,1702259058,1902473760,1701996917,1397563507,1397703725,1919252000,1852795251,825111328,544370464,1702125932,168636018,1701336100,1763730802,1852383347,1717990771,1701405545,1478521966,1830835021,1919905125,1869881465,1634692128,1297293412,1146376769,1702259058,604638510,1380011347,1769096276,1663067510,1869508193,1700929652,1634692128,543450468,1633903970,543519605,543516788,542330200,1986622052,539783781,1162692936,1498623565,1762266451,1869488243,1869357172,1684366433,1126178862,1801676136,1701344288,1313817376,776423750,542333267,1701603686,1919903264,1679843616,1667855973,1768439141,778921325,225671539,1836016394,1684955501,1852402720,168636005,1460276516,1768845921,540698478,1650552405,1948280172,1937055855,543236197,1802725732,1667326752,1864394088,1752440942,1886593125,1718182757,543450473,1986622052,604638565,1633094157,1852403314,1461729895,1702127986,1667326752,1735289192,544434464,544501614,1767994977,1818386796,1852776549,1701344288,1380205344,1679838543,1702259058,604638510,1297287693,1146376769,1702259058,1852793632,1969711462,1769234802,1763733103,1869881459,1634476143,778397554]},{"sector":3,"length":512,"data":[220465677,1936607498,1819042164,1851859059,1868767332,1734960750,1936028277,1701344288,1095586592,1917080658,543520361,1802725732,1667326765,1735289192,1769239840,2037672300,218762542,1095586570,1380209746,794501206,1528847704,1769104475,727410038,1566387580,1563307566,1429166880,794501213,545005635,542986799,541470555,1311711356,794501213,1528847692,2082493999,542191392,1395597436,537529693,538976288,538976288,1768835419,1667318644,1767073128,1528849786,1131309399,1701340001,1702521171,1528847709,1161446703,1701668204,1767076974,542991738,977416027,1717990722,1767076453,224224634,789187850,538976344,538976288,538976288,1142956064,1650553705,544433516,1953067639,1700932965,1684957544,1667326752,1735289192,1919903264,1819042080,1769104416,779314550,1919158797,543520361,538976288,538976288,1699946528,1663071092,1768448865,1864394606,1869182064,1864397678,1886593134,1718182757,1679844201,1702259058,774468392,1701336096,1701868320,1768319331,168649829,538976288,538976288,538976288,538976288,1986622052,695412837,1818851104,1634213996,1998611830,1702127986,1667326765,1735289192,1936286752,1701601889,1853169764,1936942444,1970239776,1684300064,221129504,538979082,538976288,538976288,538976288,1634616608,1936026722,1769109280,1647142260,1852401765,1633886308,1852401763,1868963943,1752440946,1886593125,1718182757,543450473,1986622052,168636005,538976301]},{"sector":4,"length":512,"data":[538976288,538976288,538976288,1634953540,1936026722,1819042080,1667326752,1735289192,1919903264,1701344288,1701868320,1768319331,1679844453,1702259058,789187886,538976341,538976288,538976288,1142956064,1869488239,1869357172,1126196321,1330785604,1633886285,1852401763,1869422695,1701606756,789187886,538976323,538976288,538976288,1461723168,1702127986,1818304627,1852383340,1836216166,1869182049,1969430638,1852142194,544828532,1998614121,1702127986,1667326765,1948280168,1634213999,1679844466,778793833,789187872,538976338,538976288,538976288,1126178848,1918985580,1752440947,1633886309,543516771,543452769,1953719666,1937011297,1095586592,1917080658,778401385,1177487885,538976288,538976288,538976288,1918312480,1936028777,1667326752,543450472,1635017060,1717920288,543519343,1835888483,543452769,1836020336,1914729584,1920300133,673215342,1634100580,695495797,789187886,538976334,538976288,538976288,1142956064,1853056367,1998615591,1702127986,1667326752,543450472,1635017060,1717920288,543519343,1835888483,543452769,1836020336,1914729584,1920300133,221148014,541863690,538976288,538976288,538976288,1701990432,1953391990,1297293427,1146376769,1702259058,1869768224,1869357165,1852400737,1953046631,1718379891,1953392928,1886724207,544367984,1869440365,221149554,542519050,538976288,538976288,538976288,1936278560,2036427888,1297293427,1146376769,1702259058]},{"sector":5,"length":512,"data":[1635021600,544437620,1936942445,1936025441,1701345056,1869357166,1852400737,168636007,538988847,538976288,538976288,538976288,1936027460,1953459744,1936286752,2036427888,1635021600,544437620,1868983913,1952542066,778989417,1395591693,538976288,538976288,538976288,1766072352,1634496627,1629516665,1953064036,1634627433,1852383340,1836216166,1869182049,1650532462,544503151,1380011347,1769096276,1931961718,1635021600,779318644,1850280461,1631810665,1399154787,543521385,1884495904,1718182757,544433513,542330200,1869440365,673216882,539574859,544370534,543516788,1751343459,168636005,1131309399,1701340001,1702521171,538976288,1667592275,1701406313,1297621107,1701650515,2037542765,1112221728,1868963881,1752440946,1633886309,543516771,1752459639,1852397344,1937207140,789187886,1816476229,1852140901,2053722996,1394614373,1768121712,1936025958,2003789856,1851878688,2036473977,544433524,1763731055,1919903342,1769234797,1948282479,1869422703,1629513078,1852776564,1769218149,221144429,977415946,1717990722,1767076453,538994042,1701860128,1768319331,1948283749,1931502952,543521385,1948280431,1914725736,761553253,1634035809,1969365092,1919247974,604638510,1919117645,1718580079,1297293428,1146376769,1702259058,1936278560,1631789163,543516771,1936876918,544108393,825241141,1866664461,1769109872,544499815,825833777,960049452,1766662195,1936683619,544499311,1886547779]},{"sector":6,"length":512,"data":[604638510,1631783437,543516771,1702521203,539238458,1702132066,1124732275,1701340001,2053731104,1752637541,543517801,1852732786,543649385,1684957527,980645743,1646273568,1936028793,168626701,538976288,538976288,538976288,1802725700,1667318560,1735289192,1635013408,225670516,1769104394,538994038,1634038304,1633886308,543516771,1920409632,543519849,1751343459,538976357,1717990754,1852404325,755633511,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,606940461,168626701,544370502,1886152040,2037653548,572548464,1918987603,1987208308,574566176,604638510,538970637,538982975,538976288,1936029984,538976288,538976288,2032148512,220492645,1059069962,538976314,538976288,544433529,538976288,538976288,1869488160,168633376,977215520,538976288,1847599136,538976367,538976288,538976288,544173600,1376390436,544042863,544370534,1818566692,1852140901,1864397684,539238502,1702132066,1634017395,168650851,1919248468,1634213989,1646290294,544105829,1633886244,543516771,1937009000,538970637,1851858976,539238500,1751343459,1768759397,1936028531,539232781,538976288,538976288,1936029984,538976292,538976288,1847599136,538977391,538976288,538976288,1868112941,1970086005,1931506803,1768121712,1948285286,1746953576,544502639,1986622052,1868963941,543236210,1886220099,1936942450,1679844453,1702259058]},{"sector":7,"length":512,"data":[218762542,220464906,705301770,1836008224,1936028272,543450483,1986622052,1633886309,1684367459,1634301472,1936680992,1919164532,778401385,1460276516,1702127986,1751474720,543452777,1635017060,1818851104,1700929644,1836016416,1953786221,1646290021,1919903333,1868767333,1851878765,1919950948,1953525103,1952805408,1936618101,604638510,1918306829,543519849,1768449378,1679844462,543257697,1819044215,1953459744,543515168,1835888483,1702130793,1700929636,1701998438,1836016416,1684955501,1869770784,544501869,1970562418,779316850,2361869,0,0,2604,0,0,235343360,-2066497761,179959691,-64966656,-1031034125,922210867,-141327151,-1820012234,1328595584,-1073015416,-619976075,384362101,256000,1006633192,-1610386400,199787728,256000,-1409285912,141828156,-1261401520,1478610178,1364414659,106387026,-6166498,1583286047,1482381658,195,0,0,0,0,33554432,2,0,-1929379840,-1199225578,567097344,1285555826,-2066701691,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100663296,-1038710702,805353605,71049677,163060084,-1038185916,1914817925,112709,268485367,12073332,-1271600384,-1977496238,-24788466,1329211081,112673,-1004133261]},{"sector":8,"length":512,"pattern":0,"data":[1488459359,65140224,1207379672,1950351427,1207379473,-1199570877,57999360,1509949880,45662983,1392044800,1381390086,-1152773704,801964032,1308328282,-1206880956,29051409,-164639488,1600028867,868440583,-386405440,1551237077,353089602,-896804045,-2127573687,1974316539,15626,95946100,-397677824,20840273,1024095232,1014235138,-352320840,-1193637319,567100424,-1073019790,508697972,-388789421,494070058,17334144,1952063323,243717,79172843,-1206916352,183173121,-352319560,1512004357,100909107,-1178375946,280494106,441162,104673229,1364489216,1381390086,-1152773704,-850329600,-2124785361,1967410683,297290006,113482,802017674,1585497078,1951991647,1579739912,-346486945,1976777220,-779398876,-12326838,1501937827,1760953899,1946157885,81181,87894644,-501451776,2746525,-645246525,-851179336,-1072998111,-376761740,1758561990,-1947931901,-779696407,-605355672,-2033784437,-352229167,1426464466,1387550550,-1014816307,-1960901086,654259179,-75292732,645428479,280567,653292928,1393262465,639202641,1426947969,638678345,1393524609,638154056,722567040,535495285,192905510,-948612013,226459942,-1082834111,260014374,-1217051859,293568550,112227652,-1930196141,113351,1927807464,503524890,2000232700,957642003,259331455,-957707435,6869382,1527049053,-24843513,1608117186,520576350,195]},{"sector":9,"length":512,"data":[0,0,448331776,-779464448,-164443394,-397157749,-2007302135,1502081175,516156386,-2094115241,2161726,-13423499,-1202528370,801966083,199134298,941323511,225707349,1962884483,-348273395,526343922,72714947,-5048341,300479467,15657728,-16777216,1662421038,788475528,102664287,1381061456,777344854,-2006776122,-823635201,724458237,1030288902,1467285507,890484818,-1993465395,780689182,-2006907252,-1199020870,567092499,1595836718,109850248,-1973778335,229920962,240656845,112927,-1157627462,634202508,378220123,-1909553057,-1199021794,567092499,1516134237,123231065,378154527,1573095523,1499094623,520575067,195,0,-266434258,109850248,114002162,1448562974,-13433074,-1912026696,-1175047208,-784267406,1587934185,119495007,59172878,59631630,203,0,0,102651734,1354773404,-1453810531,1165328384,1349517496,1486683037,1879091613,860962164,633637833,74711043,-534001525,1751555174,262144,-1670996634,-1654237082,43366,158662660,1507918656,-352320328,1507918609,-352319304,12098825,-1207702784,520552450,12803679,0,0,0,0,771751936,-1985724800,772109312,-1014389343,-2124982699,-1207697172,-594817587,855638457,504859090,-840201465,-1070376667,1065475211,511036877,16940931,2143557749,1031874052,242591066,-1606514386,109850249,-1960408670,-998178235,1583285248,113651293]},{"sector":10,"length":512,"data":[771852708,-1014389341,-1993474048,780797974,-1985855869,-401836800,-1070334067,-1576649938,-1271630711,1025625392,146284291,-1342016188,1053044238,-970552928,788479557,-1979179381,-1205744317,259129344,-1606499282,1569334921,-294850,-1019215500,135694638,922693258,-1511486968,194599423,-1023314496,-1606499282,2106271369,67056132,25896667,-1946067963,50114,0,0,0,0,235077633,16836639,58048523,-2121240597,637605063,1313095041,1642791796,1976009104,1300964866,-1878095362,1032529546,205883942,624297670,-1707179776,1929904163,-1173769206,567114000,-2121254933,2333246,-972524256,35993094,-2121265429,2333246,-972720880,19215878,-1700721743,-1561799901,-1833229004,-1965554806,967022599,-337671387,113689345,-1962803168,-91582450,206015014,-523187970,-466427696,-964562805,-1960434592,76088391,105351974,637682825,1560561607,1334584869,1204233734,639982852,-83472500,1200236282,-792134132,853594336,-2114941980,639945926,-1995946101,1200301572,38045962,138921766,-1943656976,-1977218481,-922874809,-523181872,205980198,-466433794,690417803,-2080700297,-2082331197,195,-849870152,786706977,-1198810461,29054979,-1272853248,-2094936750,-1004141333,650152991,-109047926,-2144832442,762600185,1951267200,1157201927,569049716,25133862,640447752,1393065857,774141252,-1952891264,772633600,-1952903426,-351839400,-1872106734,-1727594962,1347618443]},{"sector":11,"length":512,"data":[1086360656,643350670,1292402561,642086227,1124761473,641561924,1158446977,-1959430824,1334519547,-773730045,-773729823,-796132127,-1359854672,-1031026421,-2144986508,-294304707,25002278,-428527278,58556710,-562744272,283899442,52871310,-1908407481,-10753600,-768360397,-1723957202,57933963,1342620803,777520056,-1952833909,-1064558131,-1912598267,-970041152,9148678,195,0,-1,1493056,1683947553,1818391919,16997,-1993474048,771756574,1312396,1460018891,521032275,306103342,1569334784,1977289218,-396949969,123667400,1532626547,-887158945,239453990,-1943666688,-953806771,-2130705595,222676518,646000128,2147418116,-622084045,54904614,-756318205,0,0,1073741824,65792,0,0,0,0,0,0,0,0,0,0,1242578176,-13761164,-2097124306,-160102917,247119544,8634119,1347571919,12144983,-1549718015,-201618688,1482643883,-1672478288,520040186,1347944560,12144983,-1549718015,-201618688,16352175,1951948633,503427123,1347618390,-1960901039,109981427,-1959919489,1342209310,-13698404,1476423710,12188555,-1477182463,123426905,74784606,-1017619720,-1017619719,-2134706437,-58717580,-2146798590,91489276,1882128174,1048587776,1946222713,19130627,-1909586352,637564678,604011424,2057448992,777520896,8011392,1406497792,-13444469,8448897,-2084601810]},{"sector":12,"length":512,"data":[1968963328,15984899,853183315,-2132049409,-1082118656,1526988931,105950835,-1940827561,-1090056511,-1993998189,-1993996211,-466484131,-523123578,-1174042330,62390276,1498140033,1476878170,-1293352077,1460031488,12210514,-1090056704,79167635,1464585601,138775334,78762547,-738197569,-740109376,600345575,601356231,1607535567,71631654,637588099,1963738427,1429939726,1493726478,1476878170,1509897705,1476878170,-338603184,-338564143,-1941705775,1036190656,1482399744,-58700430,-352095230,1397788742,1448432209,773719639,10684103,-2065149103,-1961266434,-2113981734,771784939,8620030,1583286047,1532582493,-18552488,-13444469,8448897,-2088253906,119537408,1516068447,1448631129,521018967,8062522,-1477966473,-402396416,1595867142,182878,1431458131,-1595372720,-1880620933,-1961725440,1435845,104467314,41287803,2078861291,-1014342912,1532582493,372920515,125042804,1929395944,868441602,2066123456,65065216,633441240,55050303,-167740666,-33524426,-1058963260,-268252150,7747130,908725618,-973209482,-1048513931,1491987264,8062506,1381061571,146015831,-13698404,1912631326,1071742989,7671432,914933502,1594294390,1918589274,1947633668,49920,-2147279197,141820668,-402644248,149618699,1912604392,1435651,-1907161405,-1962901754,-1677689570,520040186,123404400,102669507,2132708910,915090944,-74776451,209057595,-1931965360,-1950139453,594827487,524189742]},{"sector":13,"length":512,"data":[158597635,520550279,2131136046,-919449344,506366510,-1007158269,125108225,123315699,-775709409,-654095391,1917049131,-336998140,1503982571,100723179,642799443,638737803,-1961605746,8436219,-1359868496,1962998147,-1174697207,179306624,-377377038,-638123904,800127883,678801138,604342822,1967406303,-232017679,773092782,7931590,1095936,776722827,8619974,1492509439,-1022928033,-930285077,1923088445,91994630,-1207925015,96160272,1026542848,1987361470,12107827,-8132576,-1505853394,1718878467,1946221696,1048587834,1946157177,1443241487,115888983,1583307522,1248993031,54904614,45678848,4712448,-2129229010,-754667264,-1497202206,1435051523,1301030414,-1262225136,91601417,-1976688179,-2147244506,-998242332,-1998943440,21480999,-855002076,-1173769183,567084409,1085972459,-855002107,516159521,-922018034,-2135813771,332204212,-771074446,-315469196,-1992302208,-1962902770,-2096778791,-472710717,-2128705234,2131659776,2097596160,-352082432,2141425674,2097596160,-1962934272,-788496618,-773664286,65196514,-2130674410,1929510850,2097578246,-402522112,602406921,-1021315072,113506591,890484823,-1993465395,-1946128354,1923296960,19446272,-853208136,-1022927071,800610054,773967157,7085705,-1557217140,-1514536850,623884288,123675085,195,1834158605,1685353057,1679849074,1818391919,1969365093,1919247974,543649385,1634623853,544367975,544501614,1953721961,1701604449]},{"sector":14,"length":512,"data":[168636004,537529636,220471332,1970226186,761621602,1717990754,1852404325,1919164519,1919252073,1851876128,544501614,1814062434,1701077359,1852383332,1629515636,1112364320,1141509422,1869488239,1937055860,1752440933,1701060709,1701013878,1751607656,1836016416,1684955501,544370464,1701344367,1869357170,1747805281,224946025,1769239818,1769236844,1948283749,1869357167,1394631777,1414676813,777409092,776296517,117901837,1344538375,1667323473,1936811620,-471763340,-202250524,589428468,858859044,-1549715916,-1280203100,88454836,1634035286,1701999988,1140916481,1297312847,-1957739438,-1308160276,-855067520,847147539,-1295348746,1941655936,-1191135737,28835841,332265730,-1095014542,309505,2005371473,101695239,-67099463,1968811762,13101315,-502217853,1027506407,1014235142,-1191117125,616431628,1866367232,1951771144,25082633,-1107295047,-2020999131,2133067635,326483978,-1979314241,1359443847,-218313077,58022318,-2097117975,-555609917,-497433858,1027506312,2004090886,146047154,1869747149,-896797134,-1152286542,11929459,-1207959111,-112066047,1918505933,29277014,1358955705,125273994,-1190782273,-218365944,997480878,-502217853,29277162,-2147482439,84375487,-1014823052,-336272880,33667099,125144971,125089674,-116952133,141693901,158416513,-1250645419,-497433858,-1962611811,-1950090779,-850217755,583238433,-947651701,104119819,-67106631,-478894349,-2095070170,-394919941]},{"sector":15,"length":512,"pattern":2162721,"data":[16827384,0,0,0]}],[{"sector":1,"length":512,"pattern":2162721,"data":[]},{"sector":2,"length":512,"pattern":2162721,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[2162721,2162721,2162721,2162721]},{"sector":4,"length":512,"pattern":0,"data":[17740,0,262146,0,32800,2,0,0,0,0,4096,39,84,0,76,0,196,2,244,0,0,0,252,261,0,0,272,284,354,0,355,0,40960,1,45095,50,0,0,0,0,0,0,0,0,0,0,0,0,50331648,275,0,8261,1,1,0,40,4096,8213,2,1,0,65536,131072,1447318277,17496,16974080,6292224,0,0,49,70,7864327,134217729,33555968,458752,-1744764897,385877760,10223872,3997703,117481473,16791552,458988,-1291780025,218105600,9961728,2162695,117480449,16781824,39]},{"sector":5,"length":512,"pattern":0,"data":[1963128963,267839749,-125632512,-352160507,868481026,-1676834871,-486539264,-1740797176,-1996488704,-1178339313,5,2040013,1166671873,-1572797412,236,41151,271628288,-1279688704,-855638016,385876768,539020544,-855637760,25184800,0,0,768,3,1482048595,538976324,-2147483648,0,0,0,0,0,0,0,0,0,0,1230128467,542332239,1263749444,1381123360,1090540111,1919251232,1937076073,1936286752,1919230059,544370546,544432488,1969447791,1684370034,1768453920,1998611820,1769236850,1948280686,1919164527,543520361,538979903,1953394499,1702194793,1818851104,1701978220,544830068,543516788,1919250543,1869182049,11886]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]},{"sector":10,"length":512,"pattern":0,"data":[]},{"sector":11,"length":512,"pattern":0,"data":[]},{"sector":12,"length":512,"pattern":0,"data":[]},{"sector":13,"length":512,"pattern":0,"data":[-1044203761,-490663702,-1982856444,38933,2604544,550305792,65547,42403954,40099,583268352,862873943,1394619960,1146639940,1986348064,543515497,1700145184,1869181810,775037038,10544,1447318281,1147094104,82500]},{"sector":14,"length":512,"pattern":0,"data":[19356237,65550,65568,23920641,212009546,2886,30,195100673]},{"sector":15,"length":512,"data":[0,0,0,0,0,-1,0,0,-1,0,0,-1,-1,0,-1,0,218103808,10,655360,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,542330148,542330692,1936876886,544108393,1126703158,1886339881,1734963833,824210536,758200377,876165425,1667845408,1869836146,1126200422,544240239,1701013836,1684370286,1952533792,1634300517,539828332,1886351952,2037674597,543584032,1919117645,1718580079,1816207476,1769087084,1937008743,1936028192,1702261349,73828,41943042,538988611,538976288,131073,33685632,5260032,0,16852480,15105,1023488259,84225,0,1426153728,1378812161,545259520,1442930944,724500737,0,1426153728,1060045057,16842752,257,16776960,0,0,369557248,805306636,1140851200,1442841600,1811940608,1862347776,-1207882496,77312,973156097,-1342099455,486617345,1459696130,-905891070,1850283778,1920102243,544498533,542330692,1936876918,225341289,1850283274,1717990771,1701405545,1830843502,1919905125,420089209,1970499145,1667851878,1953391977,1936286752,1886593131,224748385,1330841098,540693586,1919898444,1763734388,1953853550,1684955424,1769109280]}]],[[{"sector":1,"length":512,"data":[544433524,1970496882,544437356,1948282740,1931502952,1701147235,1629498478,1818846752,1864379493,1851859058,1701344367,1701060722,1701013878,218762542,1330858762,1528845394,542986799,1848323931,540811357,1769104475,976315766,1634753373,1563519092,1701603686,1701667182,1046159409,1919179552,845510249,1885035834,845706337,1818846813,1835101797,224211557,1666923786,1634561391,2082497646,1330847837,1528845394,542986799,1848323931,1046159453,1919179552,845510249,1885035834,845706337,1818846813,1835101797,224211557,2030701834,1378820128,538976288,538976288,538976288,538976288,538976288,538976288,1986351648,1702064741,1752440947,1869815909,1864397938,1919247474,1752440891,1763734625,1931488371,1937011311,1948277280,742465647,538970637,538976288,538976288,538976288,538976288,538976288,538976288,1948262432,544105832,1869881401,221130784,538996746,544090927,538976288,538976288,538976288,538976288,538976288,1394614304,1937011311,1701344288,1818846752,1667309669,1685221219,543649385,1663070068,1634885992,1919251555,1852383347,538970637,538976288,538976288,538976288,538976288,538976288,538976288,1663049760,1836412015,778969198,540871181,1919179552,828733033,1885035834,828929121,1818846813,1835101797,538980709,1667592275,1701406313,543236211,1701603686,544175136,1931502946,1702130287,168636004,1528832118,1986622052,1564095077,1952542811,1717383784]},{"sector":2,"length":512,"data":[1852140649,845507937,1884495904,1718182757,544433513,1768300641,1998611820,1701995880,1701344288,1919906592,543450484,1970302569,1936269428,544175136,220226914,538976266,538976288,538976288,538976288,538976288,538976288,538976288,1953701920,1684370031,1342836014,1868767264,1851878765,538976356,538976288,538976288,538976288,538976288,1701860128,1768319331,1629516645,1836016416,1684955501,1869117216,1864394099,1970304117,1936269428,544175136,1931502946,1702130287,168636004,1049429774,-1048510103,29557585,-16706042,285213951,1702131781,1684366446,1920091424,622883439,-1928917455,-2096840898,46342337,-16706042,234882303,1936875856,1917132901,544370546,118370597,82001549,-1021460093,106058576,-1899416745,-1191234623,11670062,-1943130163,771756550,1064585,-1307431240,774884610,1705612,406751534,305051648,801965234,705072174,1049177600,783810600,-855199214,109850159,-1993474034,-402650050,-1943076989,771754502,540297,637963310,1049177600,-1914175452,109850367,-1993474018,-1207952322,145887790,-1943130163,771764742,3161737,1124517678,772410624,9176774,113716772,72,1241958190,-402650624,-1993408754,-402639810,770179094,1021858048,1493725696,1532626783,-2096829608,-1007088444,-1205971376,567108352,1914636062,914959882,-1943142340,1577074182,12108632,113476,567136819,-1207841152,567100417,-852446013,369507617,-336067723,146712]},{"sector":3,"length":512,"data":[-4520589,-1157370881,28835842,47360,-4849486,1397801977,106386769,787057490,4202121,1161201710,47769600,477415691,91614475,-352311576,28960771,-396752782,1594294534,-998046485,82573574,-111517945,1499268722,82532443,-116865917,1381191875,1075743534,-294144,753403253,-402396416,259194999,12278196,841075968,113542116,-2096043015,192217083,125092155,-2097106712,1928922820,1482381827,520494787,1963063683,637711387,567088522,-389903841,102629553,638022431,-855550582,267122721,-922025292,-1977218700,1193397525,-118262455,1347928863,-91532538,-645200098,-218359120,721647022,-880063527,1599604571,197145539,508523721,1085546246,-108800117,-852986623,642785057,1525155210,102651904,-133795041,-851296076,-2144953311,41228861,32227723,-68677937,1427827711,-5838767,-849745525,-352160991,1959279371,-118998265,-1047854475,-1195172003,79364135,-1023298304,1962933888,-2134444527,119409781,4406925,-402652487,113508095,1053044311,-16056260,-2094655628,1962410045,87696912,975570802,24576325,-347650055,-1022926871,1174834990,-1814351104,922168978,781385802,4863735,1980365443,935493637,-1031797781,188830256,184841664,-2093189925,242549753,738884736,-13760907,1090540342,-108845845,-2146536185,1965820540,922693126,-348061613,200901393,2088766581,108342282,1396113198,865288448,866315218,784348114,4601599,198325187,-1272875831,637579301]},{"sector":4,"length":512,"data":[175449400,23410726,-1002830732,-1977217419,-11802619,1195835763,-478852798,197822294,1295348973,1212056366,745865216,67519626,1161438768,-352160511,1966095391,1959922436,-348912892,1048588007,1979646021,1229079048,-347123895,-17917,-386323625,1499463167,1743455091,-896839280,425088,-922022540,1229522548,32196423,185658206,1577285065,-108852757,855799295,1962871753,106386750,784937809,4734595,-166497024,1963919172,41731080,-352161304,25880576,585630699,1493660160,1583177479,-998046485,-2094073590,18494,57804149,788474601,4720327,868417536,1218522834,113716736,655434,1493082600,1283950638,-75283712,-402426560,-906100214,230223221,-2021052918,1128464460,-1023280664,-164408490,-25114317,772371967,3456139,686546827,1946339062,-1127993847,-1014235112,322771691,1024356864,158793767,616350766,-339506176,-1127993849,-1014235128,1979710339,-98281,-336002187,1218653709,-18432,855638461,216791286,1946221443,5564419,-133904765,-922024334,-1695874443,33456284,1431447925,1347880529,-855310152,1493122095,-661976715,-855309640,-117314769,123667827,-2096698535,216532676,-346399488,-401682687,1583087611,-1185916989,-1070399489,-772296974,-1017161655,1963064195,1048784417,1962868784,-49895,776998261,771770529,3153663,772139864,3153663,-919397653,1962933888,1300899334,772401923,74790200,55413294,-117127293,200813939,-2145815351]},{"sector":5,"length":512,"data":[91553790,-351978714,87764483,166396533,-2096794551,-471137081,-2146667783,1979252734,637996546,1912765699,653079046,776408458,4327110,-617364736,425088,-953281675,536890503,776160045,5015494,-1410841824,-617390848,-2010197453,-1979694578,-1053161148,-1054204042,1157034122,359956487,772424842,5015432,1090224963,2145911669,1976499712,142377195,940405760,141756492,-1979167702,139234001,628410635,252134646,1156975733,108269575,1191545382,777519595,5015432,1090224963,1139278709,1976172032,121960155,169440640,-1978305290,-2010248636,1124093063,1967192963,2418691,-344600834,252134646,1156974709,41160711,-771093013,-1892808332,-33536506,-386435638,-1017839614,509019729,868977415,1279167963,-78518272,123667826,-2096829607,-1007089980,121960029,638743856,1095763338,1945909480,1166681606,-336048127,92939789,74760202,-169131705,-1017775829,-1064384372,-1142368114,-401443847,-75236664,-1274645249,-855592884,-855591903,31320097,426798,-2094136832,33554494,-13761164,-1157627890,-343207936,567101620,-620034445,1793848437,-1341776304,-17658,-1174405190,118358021,-1275067457,773967205,276165,-1912602433,365412295,-964490101,16824322,-133971669,128250876,-661759969,78758030,-472654453,-2135299189,539015168,-1410072781,-1174278936,-846528254,16968065,1068817203,-805101107,108316715,-260718581,45615339,-385894912,-628424265,-377369973,447742210]},{"sector":6,"length":512,"data":[-234814785,1258386862,-343680725,222265602,-2096598006,121111235,-1958542988,1187462891,-1157627904,46072064,-1962037247,1104096205,91598578,1963605376,1221037047,-1983698096,-481862905,-941430014,-1929379833,12517999,-1948284159,4162547,-1679228043,-1959525632,1958742788,-1957210542,103493371,91684864,12121651,773163777,5675,-13433481,-1962868550,1925331912,785025794,15875,3539758,-1152363776,783029703,652249815,776406410,-505398569,1599822065,990016862,-1951763518,-1951994914,1962359795,1444186934,-846463657,-175386837,67013454,-56298502,56057439,-896837902,1600038131,63802199,1104030666,-24385071,-1510739453,1187462751,50331902,-10884803,-1962868545,-1946615027,218482445,1976115978,16956148,-903098997,-1275067973,1914817856,1958820612,309262,-1997996106,-1274957824,-1339962036,-850611200,521018913,11716915,536402920,-849169213,-1092907487,1048576129,1946157184,248066886,18988807,2145964595,-49919,-1071434380,-1959908235,-2130615522,1946243835,989561127,772306177,212928198,-2116621454,1963017979,1705061898,10694145,-1194923264,45481987,-1023403288,-1157550920,-4849663,1040159464,57934131,-1326060736,-850611200,7989281,855638715,-8787767,1286865328,113451469,-1899459554,-1195340072,567096067,1963063936,1459796053,-1090518597,46006544,899329,1114776013,18587950,18850606,861340344,17874907,-1191116098,567083021,-1590810510]},{"sector":7,"length":512,"data":[-1557266149,-1590820579,-1071447779,992876660,1946230534,113651217,-1191247870,29054724,17874688,119480781,-1236119357,375039,45861171,-17176576,12802138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16711680,0,1208403758,-67108850,990808366,113716750,3645,1342621486,771751950,239142599,-1847066624,-1206684923,643039231,975576459,-1207733489,-379912190,-1993473757,1393445430,512578903,-164753838,537807110,-391363723,1014105633,1946519016,95873079,-164751243,537807110,1307051381,774302469,239666934,1310618689,-2010244117,1966947335,243281414,1124142665,1929775848,-2010207035,-1091878137,914959950,-970060225,-1993474041,638471710,915217803,-2144465326,913583932,574390318,-164755340,17713414,-1977199499,-466484921,990263598,772961038,-787596383,54739936,529213144,-352286488,113716841,69181,-1977196309,-466484921,65065280,260712152,-921965262,1396903796,-400585946,1935343814,-498908351,113716978,200253,-1977207573,-466484921,65065280,126494424,-523115470,651690816,-315486326]},{"sector":8,"length":512,"data":[259311883,-1960422589,6154271,1124823899,787669571,238880455,1599930372,244002395,-1590817221,-1959915971,772685622,239146635,1126074926,1355020302,-1459123418,91553794,990314286,1015033358,-1457949440,158662657,1023854382,-352321010,61886478,-1628897356,65755136,1476468200,1438906819,1334453841,200094216,-1928497975,1860700527,-402099453,-152961010,772205561,240135817,-1017292296,8290342,1157854208,-1018824981,1225687086,-957870066,776631039,239675008,-1590800145,-970256820,1241907502,-1959897074,772688950,1962949760,2088775206,158677759,1023854382,-352319218,1065559583,639202304,67575,-953281931,34487558,-402003200,-336068458,183236877,-1274826672,256255,1472460888,75467558,1094617390,92808718,23431206,1352740432,1166616078,20731906,-1993995659,-1993997227,1525352013,108331580,72714534,121393387,138209396,104653940,-2010773899,1055589461,259327036,239771950,1166616128,1569465860,640412422,637826441,1342590348,38270502,-1341885439,638184196,33703926,45090164,1476441320,38270502,-402426864,-1017184125,-687421906,642777102,-1073018997,1397758069,-953264302,151928070,-1325419520,-10754045,1482381919,65733355,-1450164501,309624832,1023854382,-402653170,-2094137099,151928126,11085429,772961344,238880455,-1159200768,1048784384,1963527741,536914191,-953283980,933126,31057920,-683769810,259326222,1027506990,125108238,1023854382]},{"sector":9,"length":512,"data":[1476397326,777408707,-1073085302,977017460,-2144465547,1962934652,80096774,-402003200,24314695,-538229178,1455642718,785418834,887620746,168587779,-401836864,-2010251252,1174530820,1525214022,-2143501474,1631325299,2050767986,-551274377,106116331,-767652521,356003342,1364203380,-1274605998,-1144878491,96075775,-17920,1499079117,1569402456,1166945793,742605571,1607935616,1354980103,1225687086,-2144436210,-49395418,1006930478,1007318059,772240685,239668864,48776706,1354979328,861295185,1406284745,168069678,-398297920,963772657,-393485262,-774774063,1912656616,-1948611796,-773664319,12970193,-489611406,-1125592623,51802624,-389540909,225575091,-779889405,11134976,-347733134,-1914086469,-164734208,34490630,-772339084,-1031548169,13730561,108497702,1006930470,-1341688576,-335563775,642158708,3933322,776364148,239666934,639530368,1912818747,637957942,1912689723,1278944814,1915254535,1413162554,-350193915,1278944818,2132311043,1413162502,638614529,2131184699,639400970,2131055675,-2095781118,-922875450,-953240203,101596422,-1274957824,-1340937217,613033473,-953283605,151928070,-1274826752,-44046081,1482250846,-164717373,34490630,-1013120395,-134057827,1019476419,1007186480,738490169,-104597456,1381191875,2139825751,92939782,74825738,166461364,1023854382,-1275066098,-402411265,1516240153,1354979419,-1302965675,76164610,1912697576,-28383172,1225193006]},{"sector":10,"length":512,"data":[225708046,527777084,25067558,-344886016,116796947,1947209289,1966750734,2122327562,1551171584,643623750,1962952250,1958742557,-347781550,1178215955,1178957056,1157925422,4602406,1162230389,-164714517,1074678022,-148500620,2097735,-2144991372,1946157182,133637666,410255376,158677564,8290342,-351439616,1962949646,2122327559,57948672,772205561,239875721,1566203640,-391330984,410255394,1962955752,116796950,1948257865,116797165,1950420553,116084233,-134091783,-1007107250,222056787,3943796,171714932,-2144983692,1912734333,651899678,-2096931446,-2144992061,225706041,-1977169613,975586057,-503024639,1494039800,1364443995,1124517422,-2144460786,-552711898,913580092,846465340,829697084,209002556,1965046912,1176547335,518766650,41779238,857174529,1300899529,1959332611,244491,20588099,-119404684,1532567612,1134702275,116796942,1963003465,243281414,975179337,-1914180672,990794286,1007318237,-117213905,-336064789,1966029835,243281414,-130019767,1398152899,1178501934,661979150,1381047888,856053079,-1193373962,567108352,-619979892,1516199175,1951932249,914959913,-1993470396,772687390,239351435,1176407598,3965710,70914164,1144653938,-117213439,1178994155,1543039979,1052974942,1044140371,3950669,67305985,134678021,202050057,269422093,336794129,404166165,471538201,538910237,606282273,673654309,741026345,808398381,875770417,943142453]},{"sector":11,"length":512,"pattern":0,"data":[1010514489,1077886525,1145258561,1212630597,1280002633,1347374669,1414746705,1482118741,1549490777,1616862813,1145258561,1212630597,1280002633,1347374669,1414746705,1482118741,2088458841,1132428925,1094796629,1162035521,1229538629,1161904457,1330594113,1498764623,606360911,1092887588,1314213705,1067951694,-1398035799,-1339940319,-1263291727,-1195919691,-1128547655,-1061175619,-993803583,-926431547,-859059511,-791687475,-724315439,-656943403,-589571367,-522199331,-454827437,-387455259,-320083223,-252711187,-185339151,-117967115,-50595079,16776957]},{"sector":12,"length":512,"pattern":0,"data":[]},{"sector":13,"length":512,"pattern":0,"data":[6183501,37,19071008,78381055,128,72286224,30,1]},{"sector":14,"length":512,"data":[0,0,0,0,-1192457387,-1947729918,1187468841,-402652930,113706689,67514,1586178027,-1170830586,-1650425,21674032,1054664784,-1207647101,-1202716606,-397409974,-998031666,-1173946620,129671431,2097432121,21674193,146597968,-402471805,1183383637,201898238,574154832,-2096970621,1963000958,101836805,2122526699,460587262,1342991032,-2096953112,-1073085756,1152916341,79187968,1609060352,-1207178488,-1202713490,-397407126,-998046800,1354771204,-2094522392,-1956773180,1438866917,280554635,685828096,-230242474,1187446784,-956301060,-3002,16664263,-96024832,-1410793472,-1173960959,-1207959545,-1202714720,-397407140,-998040241,-1606515964,57933831,-1207893271,104401912,997525414,-1576272736,109055082,-968881046,973892358,-112953,-16454657,-1593023482,104400808,57805924,-1962847767,-1962427874,-1978899402,1149732868,-1173946624,-1193481465,104401920,1534396326,-1962146655,-1995700714,1451882054,-1961825288,1183513694,1854376176,-62456052,-990492929,-1977158050,-263813113,-478822390,-375097,-16454657,-1593023482,104400808,57805924,-1962872343,-1962427874,-1978899402,-2071492604,-1173946624,-2299129,-1593023482,104400808,343084132,129638027,207894155,-2021129078,117375236,-538245190,206978689,259328499,721880552,-35106624,46433062,-2130663959,-586394050,-2096204535,1962996350,-230242552,-1880489985,17086464,440400,117499984,-352009085]},{"sector":15,"length":512,"data":[-1606515841,1937047303,512431851,915081146,76156004,12879752,129631999,207881983,956803233,1913414662,127967713,1023410477,527892488,781434883,40347647,1342227640,-352321096,12892339,-994530581,79187968,-1197085952,-1202716476,-397410300,-998046539,112644,1023372009,1157777922,1392658946,1241664002,1241664002,-955913470,62534,-1559780191,-1465840544,207921927,16023171,1290339188,-25263106,-2095418368,1962998398,-226589932,-1207012096,-1202716604,-397410300,-998046134,-92372220,-2095811584,1962999422,8697870,309328,103868496,-2096839549,1946219134,-25263340,-1207012096,-1202716412,-397410300,-998046186,-25263356,-2095418368,1946221182,-226589932,-1207012352,-1202716412,-397410303,-998046218,-230257916,1575324510,-326412861,-402651976,1183524490,1183401988,38516988,-62485680,-28931776,485419088,-1962621821,-60913192,1962950528,-27358236,1946173312,74907463,-2093192216,1077936836,962127952,-1996307325,-1072955834,-1070919819,243792,93644880,-352009085,74907423,-385976577,-998032414,38647812,-25755824,-2093247000,1183515844,71731710,-1962654069,1438866917,1522068619,638117888,74907478,-2093214744,37552836,-1962314496,2139096158,91503105,-1662402517,74907392,-2080419096,1183384260,-1965520124,1093507079,-28931840,1353074317,-385976577,-998039692,1958742532,-381225201,141824000,991832296,242613830,1342194872,1342178488,-2096823832,1337459908]}],[{"sector":1,"length":512,"data":[1183666178,1340625062,79987515,16664202,1187489350,-1610611979,-1952969688,-25806352,-1070922628,12059627,-381253312,2097051193,-1715459323,1996425707,549251326,-1996307325,1451879238,-1505325587,-25755824,-2095098392,-4717372,-443851009,-1957313699,11319532,1445282280,-10975603,108461904,-2095308312,1996424388,993978374,1023591555,393543682,-2147066229,1966735743,8697870,309328,73984080,-1929067389,1358911622,-2093279256,54330052,-2145618688,989813182,-1098905739,1952251738,8697870,309328,71100496,-1207647101,-1924104192,1358911622,-2093683224,1950352580,8697865,309328,-1070917397,1485213008,1474842879,79987516,-1207012032,-1202716540,-397410302,-998046718,74907396,-2080502040,1183384260,1485212932,15225087,46433278,-1962522999,126485598,4271512,-11106679,-1979294069,1093507079,1418103040,1454833663,522840319,184730755,722302144,95965376,-1276620800,79987459,-11225345,-2095116568,-1073020220,-1070920332,374864,60352592,-2096839549,16733886,698365564,-2043045876,746454870,-11237749,-11106759,1183654516,-1224781656,-1041694890,79987485,276086794,991722728,1962890886,-347670777,242524160,1342194872,1342178488,-2096935448,1190593732,1947205867,1354771213,1342179256,-2096940568,-1098709820,2080440148,204054566,1418082712,-14909953,-639105418,46433081,1929397053,1421278990,504293631,184730755,-1207011904,-1202716540,-397410300,-998046978]},{"sector":2,"length":512,"data":[108461828,-2093371416,54330052,-15567872,-1578629514,46433081,1586229387,-12532218,108461824,1353205389,-2093404696,1183646916,-2115481432,46433081,1039615625,57999363,-940093697,1342237510,-11225345,-2095142424,1183384260,-279541267,1979711293,-359661,-2068312459,79187968,-1880600576,79987458,-964921,-213465089,1183711231,-1224781656,535363414,79987485,1575324510,-326412861,-402629960,-950656242,65094,1190604779,1947205865,-176258267,-16550654,1988883782,-1505573131,-1505325824,-28931248,1342193925,1342329784,-2094649880,1191118532,-1505325570,-25755824,-2095286296,-1073085244,-1956724619,868441573,582805696,1342677176,1342987448,-2096169240,116786372,1946224556,127973397,1961381968,79987471,1342177720,-2094939160,1438843588,381217931,579397632,755254923,104660993,58619648,-13724736,-972563801,-956239802,196166,-1292601,-364460288,1187446785,-385875218,1187381406,1187447024,-956300290,126022,1187439595,1187447024,-956299778,16772166,15353543,-959190272,-956239802,589382,32261831,-957748480,-956239802,720454,49039047,-961615104,-956239802,851526,1187421931,1187447024,-352320514,75399651,578552108,839155329,-971276543,-1962872762,1183384646,-330905602,1187447039,-956301078,126534,28842731,-35106816,46433056,120524523,124716874,126814079,123340698,755254923,104660993,55736064,-13724736,-351760985,105286486]},{"sector":3,"length":512,"data":[-1930148215,1187444318,1187381491,300613880,-1996405576,1586295878,-213465354,-129579520,-112802303,-96025072,-79247872,-62470655,-28931296,-1962124125,1587801670,-230257396,-351509341,75399450,897319212,839155329,-1959887103,1554251334,-297366772,-1962123613,1621355078,-263812596,-1978899806,1671621702,127973388,207403088,234743888,-352009085,112666,541780048,-352140157,-49808114,-49786105,-49803257,-167226617,17280006,113716852,134238,207619783,113639424,-973075358,17588998,1342677176,1342987448,-2096253208,28837060,99110912,46433056,-1017256565,-1192457387,-941096958,-28915936,-1070923476,-25755824,-2080495384,1191118020,-25263618,-360840910,-1017256565,871140181,547416256,-16353537,115868790,79987710,1342177720,-2095072280,-1017314620,871140181,545319104,129763015,113641390,-973076546,503302,128911046,-1341733118,-955661817,-888688122,-1274624503,113705479,164890549,129435335,113641962,-956299335,17416710,-1006188799,-956301303,-133577210,-939079925,-972928503,641542,164300487,113705473,68045,164562631,113708032,38406609,164824774,-737753344,-956301303,644614,-670644480,-955493367,1242159622,-603535870,1589117193,-575123454,-1679273975,79987509,166332103,113704960,2540,166594247,113708116,38406640,166856390,39958529,166967376,896591952,-955988861,811014,1711720192,-1962427380,1688405062,-1866244852]},{"sector":4,"length":512,"data":[106058576,-1899416745,-1191234623,11670062,-1942605875,906128902,40648329,-1307431240,909102338,41289356,1950255414,305051650,801965234,-2046391242,1049179650,783811204,-855199214,109852207,-1992949142,-1711118274,5574,1711705142,1049179650,-1942617500,906134022,41959049,1435546,109852160,-1992949126,-1207797698,145887790,-1942605875,906137094,42745481,-1626945738,906628354,48760518,113718820,676,-1509505226,-1711273470,5537,-1845064650,1049179650,434635408,3205120,1358971880,1912623848,123689224,-346530982,214205188,1448135673,1660991518,119415245,906654239,43529865,-1710846922,-1017618942,-1153171272,-768409600,-427810355,30310401,-851181128,12108577,113476,567136819,-1207841152,567100417,-852446013,369507617,-336067723,146712,-4520589,-1157370881,28835842,47360,-4849486,105956345,1419400535,1912602635,-98290,100955384,100854559,1576504095,-883423393,-164408490,-25114317,906589695,43039940,686539660,1946339062,-1127991799,-1014234508,322771691,1024356864,158793767,-2135112650,-339506174,-1127991801,-1014234524,1979710339,-98281,-336002187,-1532807667,-18430,855638461,216791286,1946221443,5564419,-133904765,-922024334,-1695874443,33456284,1431447925,1347880529,-855310152,1493122095,-661976715,-855309640,-117314769,123667827,-2096698535,216532676,-346399488,-401682687,1583087611,-1185916981,-1070399489]},{"sector":5,"length":512,"data":[-772296974,-1017161655,1963064195,1048786465,1962869388,-49895,911215989,906142881,42737407,906357592,42737407,-919397653,1962933888,1300899334,638184195,74790200,55413286,-117127293,200813427,-2145815351,91553790,-351978714,87762435,166396533,-2096794551,-471137081,-2146798855,1979252734,2097358336,839283202,227157741,113653319,-1023409506,1431393104,-1957558697,512308969,-2009726308,-1711103690,2900,594856203,91614475,-352309272,29550595,-396750990,1594294543,57987594,-351902744,113541892,117763065,1928944223,1532583176,-352140157,147096324,1397804025,512439890,-75300196,-402295297,65732652,1929410536,-1151749105,567083008,-997989326,283900166,1962933123,1958820619,11593735,-116996989,1532625778,102679384,33129247,45357941,-854226394,-1031135455,503362024,124985094,22383142,-336059955,184726543,638153929,567088522,-210417337,1472405496,-1957493168,-1962467590,-65359655,58044146,-1957963477,1476877259,-1070349473,1333053707,-1273035234,-2083026112,678756857,1344217549,-402290138,509083738,108207878,1111536888,647766477,1964653952,-339637502,-401682687,451674107,-1494724267,1508477951,41099725,-935654421,-398784652,-1962773000,-1021354559,-1157617736,28639236,-98109,-956952204,504132992,-1623290617,178434,-1006698520,-1003071738,184719422,639071487,-134201981,975573108,638022149,1996571962,1195899137,123726315,110048963]},{"sector":6,"length":512,"data":[-617413982,-147418477,-1828542922,-1506347210,167412482,-1031797386,-2147226825,1095905474,74825739,1014291211,1963194755,175931406,906392876,45037311,-2094732479,242550777,738884736,-13236619,1090694966,-108850709,-2146667253,1965820540,922695174,-1824456017,-1561603533,-1070345677,-1573454026,-768359678,561301771,11543988,1965373478,1698178570,973370369,638481860,1273496970,1191277567,1967735367,-897100061,896855307,1048786509,1962934948,105155116,975581188,41222469,809246699,-771029899,872612980,-2143885333,-16604866,1111623797,1330596169,-4586517,-114599937,1610481640,-385649831,-1957625714,108822730,185431040,1225159881,-347650231,283860481,58050827,-2096501922,41287673,-16004813,1465214580,-919383802,-1539407050,997523458,252134646,2093222005,23586818,1156983019,208932103,235357430,1156974196,141888519,-402490172,250282357,185025782,988284277,-402396414,1491600137,-402396416,124911650,1566508889,-2096829602,922290884,44318339,1912960256,-16586493,-1543059658,-1023410174,-1590242765,-952761692,167945734,-25565184,-2021116328,-2092760408,58015995,-33498904,-1192397367,-1992947187,1124247687,13101123,-2133118013,1962935932,-2016987629,757072552,-969522365,537045127,11266115,870003549,243807954,1149895326,1992374793,-1967052257,121960176,-1978305408,-2009724348,1124247687,1967192963,8382467,-344600834,556160,1278741876,705196808,-779483060]},{"sector":7,"length":512,"data":[185093258,-165317431,1963919172,121959948,637957136,-347667062,-2009704447,1124247687,1967192963,4450307,-613037570,-2147007242,-167110283,1149900148,-2021116406,-2092760408,58015995,-33544984,-152341042,1963919172,121959944,-352160752,1959922189,110048777,-889322846,48822133,1371755776,119428870,-617362549,44580493,1929141224,1493655301,-998046485,1573124358,805782774,-1977216395,-398372859,108264770,21334566,233568336,168135206,1191474368,737536833,1573082617,-1070345677,-1509505226,855642114,121960155,640054560,1156973962,242552071,57966760,914302019,44435143,1156972554,125111815,-1509505226,-352318974,121960024,640185616,1156973963,276106503,1954596086,-461356284,113718911,656038,235357430,-952760459,167945734,640346880,-1960442485,1156973141,276106503,1954596598,-427801852,113718911,656038,235357430,-952760459,167945734,121959936,1344959552,842576978,-1474916928,1931595010,113653254,-1976827217,-125105596,1153849434,-1796723702,-2000188420,82512452,-58070896,91544331,766693939,1573082450,-1509505226,-402650622,-768409476,-2093563853,174142,-2014830475,9889792,-1288241354,-1070382846,-402307958,-13238136,1090695990,-402373494,-2093612932,16951358,1609048181,7268352,-1288241354,-1070382846,-402373494,-13238176,1090695990,-402307958,-2093612972,33728574,1149902453,4646917,-1288241354,1149911298,3860484,-1288241354,535314690]},{"sector":8,"length":512,"data":[3074048,951370581,378339504,567083688,-952758925,174086,113653248,-1020460365,-167623541,1963984708,6503688,1673003894,-1892236544,906143750,43912840,1241235176,-1643234762,-1207601918,1095761968,922695233,1573061288,-1509505226,-402650622,1156972671,494141703,-1187086282,359989250,1006781578,1006926860,-1341751785,-348041119,1349562372,868234049,121960146,-1978895328,1827145028,922695168,-163511631,1965033284,121959942,-1978895344,1424491588,922695168,-1975450955,1223164740,922695168,-1975450955,1156973124,343146759,-1187086282,208994306,41684284,3935276,212861557,1442521832,-1338460989,-1474917120,1931595010,113718803,66233,-1257847242,-969524734,771928326,110048963,-2009726296,-402481650,910818035,43912762,817366389,1094799360,-1472790730,1381090050,-1057325026,-1031141258,213126948,-494271765,-678748410,-2145443379,1962412794,-90642414,-930477197,567141002,-336010870,1912648706,-346465788,79987460,117425145,68374,131116,327744,786525,19660913,19726473,19792048,19857612,19923165,19988778,20054422,1226244558,1919902574,1952671090,1397703712,1919252000,1852795251,1226836493,1919902574,1952671090,1836412448,544367970,1881171567,1835102817,1919251557,386534771,1986622020,1818304613,1684104562,1431511161,1700025154,453643620,1852727619,622883951,543236145,2004116846,543912559,1986622052,705301861,1869837121,1952541027]},{"sector":9,"length":512,"data":[1629516645,1952542752,1769414760,1629513844,1769104416,1814062454,1702130789,168636018,1394543117,1414742613,1919179552,828733033,1683693626,1702259058,1885157938,1567126625,1393822221,1414742613,1769104416,976315766,222572320,1342835978,1919164448,828733033,538976314,538976288,1701860128,1768319331,1629516645,1919514144,1818326388,1769104416,1948280182,1752637551,543712105,544567161,1953390967,544175136,1769173857,1629515367,1952542752,168636008,1528832111,1986622052,1563572837,1752457584,1884495904,1718182757,544433513,1752178785,1667855225,1679846497,1702259058,1684955424,1952542752,1870209128,1635197045,1948284014,1935745135,1852270963,225408032,538976266,538976288,538976288,538976288,543236128,1953655158,543973749,1986622052,168636005,790634555,538976324,538976288,538976288,1698963488,1702126956,543236211,1935832435,1970563444,543450484,1919514152,1818326388,1919164457,778401385,168626701,1886999628,1431511141,542397250,1752459639,544173600,1634886000,1702126957,1948283762,1768169583,1634496627,543236217,1953720684,543584032,1920103779,544501349,1953655158,543973749,1986622052,221148005,-1928917494,-2129438146,-889041471,18220545,327679,1954039057,1701080677,1917132900,544370546,118370597,363609741,-887045757,18220546,327679,1918980110,1159751027,1919906418,238101792,-801207033,499221269,-326412853,2123060823,172329732,-1962570928]},{"sector":10,"length":512,"data":[1300955741,106269444,1594389899,167811669,1465712640,-1996063093,39684357,-1996206711,1971914325,-997548280,1477199241,1577731465,1575324511,-326412861,2123060823,172329732,-1962570928,1300955741,106269444,1594389899,188127829,1465712640,-1996063093,39684357,-1996206711,1971914325,-997548280,1477199241,1577731465,1575324511,-326412861,2123060823,172329732,-1962570928,1300955741,106269444,1594389899,210016853,1465712640,-1996063093,39684357,-1996206711,1971914325,-997548280,1477199241,1577731465,1575324511,1795606467,-67108861,56495753,56624839,113704960,883,56886983,113704960,1566245930,69994183,113720444,725484590,70256327,434649917,-1206684922,643039231,975576459,-1207733489,-379912190,914948364,1465058157,1964936533,1812395523,1047863299,111470764,233322354,-399346682,376768062,57411318,-402295520,585827800,57411318,1310422081,126359787,91569468,57413248,-1612168447,-1396083962,-347928696,914968259,130417506,1897826560,495658499,58013325,1949252736,574390321,116787060,1963000684,1200236112,971256321,1929600518,56533265,1128521937,-1960388605,8448031,113731307,66400,-1977196821,-466484921,65065280,260712152,-921965262,1396903796,-400585946,1935343803,-498908353,1611057138,-352320765,1200236083,1088696833,-670834479,839354918,1088475620,-1977165821,200094223,1125086409,529213011,1526748392,1128467059,113767138,263008]},{"sector":11,"length":512,"data":[-1956946083,-1593614834,915080032,378209122,512361316,-1007156378,126559824,1962934953,1577516804,3964931,27859061,-955747072,33775622,1343154944,-4979792,1476433128,283640811,-104638463,642864579,839405450,1959332845,158305549,1929529320,911368,-335939870,1932429573,1566177283,2122327747,57933824,1173809989,1812889795,-924315645,-2143128833,-284988378,57647440,100779563,-1957166227,-2147258570,594870332,989822080,113707125,590688,-2094653717,410255423,17299238,-955157248,33775622,-402003200,-336068461,183236877,-1274826672,256255,1472460888,75467558,56901257,637896742,1342268808,637760417,1476543881,175440188,72714534,105744678,37509611,-1993996683,1340802133,-395049156,-462157764,108332604,72714278,71056875,1839271541,-1993981949,-1943665595,736822877,74811686,106794022,1207314000,74711298,166397104,38270502,-1341819902,12576770,1207314008,57937922,1593872872,856082115,642777092,-1073018997,1397757813,113727314,590688,61931444,1610572008,-346530982,268478743,113709172,864,-2097039128,151216190,65733237,-1450165013,326369536,56624839,-1293418496,53143554,56639107,-1457294071,276038144,56624839,-1696071680,1614709506,242551043,1948254377,1611056905,-402653181,1048576175,1963000883,1614709517,108331011,56624839,-1017642999,76174928,410304522,192231996,97408,80086389,-402003200,24314866]},{"sector":12,"length":512,"data":[-487897530,1455642718,-1966044590,65071108,-1073083534,199756660,-352024576,-347716095,-1017226518,208896060,1114792252,1048017468,988536612,-1923676589,-2147211970,74712314,69222029,393483576,508711248,-1973046265,-17470,-1174403655,567148543,-1957144230,1166934365,742605571,1607935616,1019435783,1007186480,738490169,-104597456,1381191875,2139825751,92939782,74825738,149684148,56624839,-4980727,921174960,1532649470,1431356248,45241938,1139278986,-398822909,116850546,1946682220,1966947341,2122327582,1853161473,116789995,1947206508,1966750734,2122327562,1517617152,643492678,1962952250,1958742556,-347781552,1178215954,1178825984,642057354,1962952250,-347781575,1812395691,259276803,38270758,125042720,8290342,639792128,1050615,977016948,-2144990859,1962934398,1007610637,638022912,973110912,-336002188,1865844997,1516173315,1354979421,1398166097,10283094,403097438,-956301308,268806,470206208,-402653180,376570017,168040611,-401050405,1701970069,168041123,-401836837,1500643465,168041635,-1957530149,-2096892386,527696635,168040609,-1975355932,68854216,964027402,378267786,-75299812,-2046659327,-1961432087,-1593567210,-469105638,-930472075,168041633,-1978239516,1694139368,-1031732109,1583023980,129040308,-335739672,-1268884721,-402411265,113769721,590688,-1017620134,66467469,1962884227,504359682,522080338,-1959264072,1478610390,1371742042]},{"sector":13,"length":512,"data":[-1966525614,1958742532,-180453317,259260419,1963064192,1949973508,1949187120,1007479596,1009153069,1008890927,-400657362,510852673,-1164902220,-487129078,292934155,242401539,-1075100015,-336013174,-336050683,-1047791359,1354979674,1049318999,76153709,292864010,1962956776,856081952,-966917884,-346095612,80109113,-148480256,1962934535,1611056941,-352321021,-1974052827,1958742532,2811931,1541933940,1191342849,-347715770,57058026,1191183558,56770185,-1453826210,158597632,-1325419440,-65279995,1364443992,69869197,973081017,1124365319,1497496034,1381024603,-1073085302,401094004,-2094370303,1949958524,133637645,494141456,97408,537663349,292708668,225933884,-796237780,112263092,-335818520,1611056902,1509951747,-391330984,376700960,1962955240,1812395540,-294379517,57411318,1309242433,-336001301,-1018234879,1364444152,762580284,695468092,628361788,41779238,857633282,1569335003,79921923,3768358,-919401100,1124698662,1946237478,1022943748,-1017423603,113660243,-2145385626,-553423834,913580092,846465340,829697084,209002556,1965046912,1176547335,518766650,41779238,857174529,1300899529,1959332611,244491,20588099,-119404684,1532567612,57057987,57411318,-2147126015,537095182,-353648582,58011277,427089211,309669692,1200247033,-57153281,76154226,1492947176,-336065045,1966029834,1812889605,-1007140861,-2091690466,223550,508568949,1431786065]},{"sector":14,"length":512,"data":[-1896467706,1660991710,-611573299,1560795915,525949535,-1994034088,-1996265674,-1962710754,-1912379594,-2096928482,276037692,141689914,1996571706,99350787,-336902586,526277624,-326412861,2123060823,172329732,-1962570928,1300955741,106269444,1594389899,-128063403,2123061085,-1996125946,1300824669,106268932,-1626835575,1166656650,1166628876,-1956684278,12803557,-1192457387,401080406,1586189835,25133060,-1978960582,1076729863,-62486272,1187448299,-16776964,1183710326,-1628942164,79987457,-1207601856,2146172927,1353467533,-2094992408,54330052,721712384,-1922241600,-11490234,1743258742,79987456,-344670197,-1996208501,703331910,715802250,1139298532,46433027,108314635,50218627,1586172907,-28901378,1968979840,-27358456,1946173312,-27358298,1183319946,1975519914,74907595,-2095016984,-259325244,-1733541238,201082505,1032090816,-1821048740,1593801961,-1017256565,871140181,173861056,-402360577,-998039448,1996443650,74907398,-2095024152,-930412860,453114243,1574500288,-326412861,870891571,74907402,1342452920,-2096268824,28837060,1307070464,46433033,-1957313699,964844,-972418584,-1961168058,1183385670,-230257160,-230257328,546498640,-972766077,-1957760186,1183385158,71732214,-1913108855,-1924074938,-397348282,-998039436,-25263356,-1207602176,49020927,-443826133,-1957313699,964844,-972439064,-1961168058,1183384646,-230257160,-230257328,541255760,-972766077,-1924140218]},{"sector":15,"length":512,"data":[-1924074938,-397348282,-998039504,-25263356,-1207602176,49020927,-443826133,-1957313699,178412,-16155160,1996424822,88008708,-1996176253,-1072955834,1996426869,527886340,50513027,65733702,-1946270069,1438866917,247000203,156035072,-16490869,130417734,-213465508,105286215,-1946663288,1183384646,-230257158,-230257328,532605008,-2096839549,1946222206,-18427,-1070923029,-1017256565,-1192457387,199753742,-396994807,-1986526859,1586230342,-2012771836,-1073024442,2139099508,192231937,4271512,-2081143159,-1962802106,1183450718,-2009004812,106859271,973162438,-2147197301,209017919,105286483,-397393856,1206591094,1089750667,105286480,-397393856,-997982371,1958742788,-18426,-1962864919,1065354334,-14978048,-1444411786,46433054,2113930045,70825997,108461904,-2095187480,1996424388,108461828,-2095190552,1988822212,11856134,985202315,1166888964,770199553,79987460,-166989685,1996426869,510060550,-1962752893,108397552,1183319178,1968979192,-129579516,312924,1342454968,1342260621,-2095179800,-1073019708,1183453557,1443137784,500492375,-1962621821,-1201804297,-1924135874,-397409979,-998040076,1975520004,-129594810,92931208,-956807544,1183514629,1183401990,71416060,-62485680,-28931776,-27334576,-1962621821,-60913192,1962950528,-129594652,1183516040,-28952314,485032821,-25261057,-1969427633,76085318,1946172544,-12261117,-402229505,-998040128,146690,1136135541]}]],[[{"sector":1,"length":512,"data":[1996443652,487647238,721732739,-1956684096,1438866917,247000203,126412800,435373766,1358055053,1358055053,-1977741336,-466947514,-1017256565,-1192457387,1743257610,1543948039,-1201471476,-1202713524,-1202714720,-397407140,-998040016,-28915962,1183645696,-62486026,-1995986783,1183053382,1586168572,206742012,82511753,49694339,-1191813436,958792773,-1978436601,942015558,652834567,1912686392,-28915741,-1070858241,-96039600,481880144,-1946270069,-1866244635,-1192457387,-202899426,-1923721466,-259267002,1375814854,1358448269,-1108847018,113541917,737695371,38011840,-1996434813,1451876934,-163133468,1586167808,-495008522,-1962833370,25691262,-2081011969,2118383230,-1956684055,1438866917,515435659,111208448,1183667799,-957314074,-1924005564,1448147014,493545558,-1962490749,-1070860202,-2097003517,1183383762,-464090654,16139975,-161576192,-1979416949,-495008767,-16676826,2122577478,-377601034,-443850914,-1957313699,440556,1443253736,294531,698367868,1178179596,-1204388604,1861681240,100899076,370347038,1183386656,-27883012,16402119,-94467328,654079684,1988821130,-16742394,2122578502,-377726726,-335544392,1589652226,-1017256565,-1192457387,-135790586,2122536453,1065091076,-1744033376,2097432121,5814326,-1727762697,203294211,203429395,-1979955575,1187511894,-1962934022,1988885086,-1006597626,-2010710922,-96010496,1492811395,-4658820,721611775,-443851072,-1957313699,8567020]},{"sector":2,"length":512,"data":[1443209704,-1982052723,1183710790,1996443780,-12916732,168084611,-146836288,-1342126266,1183529077,-883520567,-8485239,-947890551,33350,-998089077,654278326,1988821130,-16742146,2122547782,-394518142,-1730394486,1963214395,112645,-1070923029,1575324510,-326412861,-402626376,-1923742406,-259286970,1353205389,-402360577,-997982508,1975519748,-339727612,151308065,71732036,38046016,-1511500202,79987483,636176011,-930381824,453114243,-1956757312,1438866917,1756949643,82896896,-1740206762,1183707275,1996443814,-24451068,168084611,-953781056,-1958475516,-1992293306,1448477252,-2095357976,1190593732,1971323113,105182983,91488768,-352321096,1589652226,-1017256565,-1192457387,-1545076694,1183667716,-28931620,-1962145631,-1995699690,1451881798,-700020233,-958900599,-335553466,-179926216,-1207536320,-342228993,-179926213,-1980279157,1451873862,-632895528,65732608,-2082846977,2099370622,-631338224,651589316,1988821130,-352286466,-599356697,71711640,1183563637,-665416746,1575324510,-1957326653,964844,1443114472,-16728856,904397942,46433050,-375159,703071862,46433050,-1946794359,1178204742,721780470,9628096,16008903,-230242560,1183514624,-163173382,-196723904,1988879742,74843124,-1979294069,1963407364,-193035422,-2095614976,1946219646,-12285354,-397351894,-998047438,81154,1183532404,-28931596,16533191,-163149056,-336050551,-27358434,-1979418997,-60912896]},{"sector":3,"length":512,"data":[939947659,-15567616,1183578190,-28901378,-2080618753,2130770046,-125926436,-1962380032,1174664262,-955520252,62022,-369867009,-1956708488,1438866917,179891339,56944640,-1983894698,1183448646,1715373052,91554052,-1293303765,16824320,374401104,-1560099709,12061120,1139298305,46433046,-1207306589,-1924136955,1343683654,503963832,3578448,1183384598,1958743034,-96040187,1187477995,-1962934026,915142238,1183451584,-1962899210,915142238,1183451638,-16742154,2122446406,2080440566,16824542,-62485168,-157200362,-1706025463,68550656,200951433,-1581615680,1183386102,-163133448,1586167808,705137400,972065764,158660214,163585675,-1997126006,-163119360,-2114435329,16840318,113761404,66662,1593788905,-1017256565,-1192457387,-1880621054,1187468802,-1962934018,-422445450,165723264,-2146732800,647612,-1070922635,1988830699,-1964584450,-2076703674,192350688,165774392,28837234,-15930624,2122579526,-948828674,1593835448,-1017256565,567095476,41091644,499065037,37128964,-2114508032,1913651454,268484099,-2116579590,-82923836,521539699,855767016,1994936512,1291827204,-461168179,646526718,-1992948626,-1962644954,-754667066,-1556723488,-150797208,145033,-567557236,1253366775,-1942609459,369418014,1824521223,246462727,-1070346453,521579251,369114088,59959327,855769576,3604461,-29950203,-63504636,-668669948,14870608,-1912332872,243928,1812383542,1344852484]},{"sector":4,"length":512,"data":[-402555928,-4717571,385830912,817103980,-509402675,889239556,512303565,109839565,521012431,-1171980104,567093232,243998486,786630278,81725070,741772070,-2012822272,869960710,520042203,91424388,1307123478,113587713,-628357492,905970619,109321983,109977366,-1960442657,-486527986,868322870,1031808767,-1188269056,-1061289972,1957098244,2147465483,-1359822797,-437577355,520560134,-390072437,-1852265468,1958805164,-492156927,-1155590409,-1484783612,-1195440920,567100416,-1024062862,-2147126144,1074063503,-1092126389,-1866529136,10676230,-1090088770,-1964505456,-1957313792,127057644,-402156865,-1866596227,110280454,-352291608,-326413053,-1090088258,1726482066,110280192,-402222401,-1175977876,1958742784,75399947,-955943680,16712774,-1157623879,-2013921275,1946223848,-851528700,-220052703,-1962932248,1286865990,243999181,132318854,-16776517,503743518,80549573,-853213000,1048583969,1946158346,195042829,202818821,-853167099,1002643233,1326085111,-485651633,-338558986,-147078158,-276623757,184912644,-227278267,-286581249,-1957363517,16562412,41674832,84950659,-16485376,-1207627754,-397410049,-443874711,45663069,-27531008,735873881,990540504,1912934942,-1864956,-373279775,861339205,4372982,-1392712654,-69017550,1951790208,-5314547,1342177720,-1207816984,-1017249791,85198479,939524794,1946476822,-553218519,109979140,109838380,-1070398204,-2147436135,-1359806669]},{"sector":5,"length":512,"data":[1207661998,37652807,-18171,-772296974,29348235,8502784,81731214,1948269740,1946762491,1947024631,1958742639,-1404156053,-395042756,-462157508,1551109436,1484046346,611590716,57957436,870640450,1017921993,1023046748,50623522,-1949045807,334090689,1963043025,1308748746,1947024556,1958742571,1948400679,1952201914,-320126461,-1404974797,-93037508,74719804,-605302525,-372129397,27840787,-1746152843,1049173782,-687667972,65524039,-18710313,-997465557,-1962606941,385549272,1065956871,918897475,-1431567102,-92946422,906002878,81731214,-1070398485,540847274,154991476,222099316,2145977205,1975519744,-1871058173,1128237366,1017925187,1021015072,1020752905,174224397,1012823232,1009218594,-1442614180,-919345941,1547480129,574421620,1555039860,-773084429,-372155216,108243699,-341171536,1017925317,170816525,1009415360,1018655778,-1442614180,-919343893,1547480129,574421620,1555039860,-638866701,-372155216,-1770804493,-341171536,-1430244403,130490134,654245888,-1957362412,512644588,-919403297,-376716917,-1958086261,184560694,-1911524106,1048585926,1946157056,1169093126,1174042030,-31178601,-439222901,521585923,638807,1593869800,-41169013,780793859,119407872,-164372850,-2129403063,1950563132,8292613,-1431550651,-92946422,1317662178,1562318336,-1017256565,1458342741,-1962467753,-1698823082,-1036276474,-1774186380,865537140,-17984,-141840654,1603726315,1575324510]},{"sector":6,"length":512,"data":[1426064066,-11015029,-873986954,1958743039,-91516396,-4603853,-139529473,45828561,-851397632,-443850975,180829,100913291,896664686,73926201,251995507,-657371136,-388824143,512481676,-886373153,-1014054653,1253365899,1918378445,1223697424,-1794873181,74329739,74323457,-372798525,326302609,-443826125,-126631075,1632336,1575324504,-402164797,-4718578,-443835905,-466435235,-1023409688,168092834,-2145159708,50651454,574360946,540806515,95421810,1016072171,-1342015981,85375763,-643589929,-997539068,-1957300245,82609132,750671447,-335598843,1157009429,192185094,53536854,1073923203,-2092498572,909707462,-428669372,1600046987,-1017256565,-2081649835,1448544492,-1929038658,1183385158,-370649348,46433025,1183709323,1996443654,1642616324,113541891,1459111561,38987863,-1962621821,1600059462,-1017256565,-2081649835,1448544492,-1979287925,-1986525372,-963904954,-1325061075,-1946627325,65065416,98619841,1183385036,105182968,-167349117,1950352964,105676811,-18400,-1878978327,17188086,1283518325,1686110726,-1070862586,-1962785655,-58816008,201737462,-561291403,86829953,-70057039,-472792181,-472786941,97290230,-2126088959,1946498302,1023312134,-13404923,1575549558,46433042,762691595,86640383,87359105,-1061681547,-1878725881,-1995657544,76088388,-940024181,33555015,-352254010,-396980216,-998047588,105182722,-1961265912,753631710,-754732795,-775713797]},{"sector":7,"length":512,"data":[-774372381,-863504669,1349779717,2083208331,71600900,-1962636992,1200355422,1149847554,2130643714,1962891027,-92864764,-2096287256,1183385284,-1877283844,-151363957,537192583,45617012,-1070903296,-397193136,-998044940,73173768,-2012985718,-1877480697,-1962933825,1183666375,1996443652,217377018,-1996045181,2117729350,-385649412,1183514347,1592011268,1575324511,-1957326653,49054700,71732054,-1325061075,-1946627325,65065416,98619841,1183385036,33601790,234940496,-1962752893,1200161886,1958742788,105873423,-27358456,149447,-1877480702,-2147197301,-1962670513,-1992229306,1586168903,38258686,1586167809,-1946973436,126420036,149447,-443851264,-1957313699,82609132,74877782,86640383,87359105,1187448949,-351813378,-25063412,611648828,-1359067449,105182732,-1961265908,753631710,-754732795,-775713797,-774372381,-863504669,74711301,904642603,741197451,-754732795,-775386120,-775879712,97256928,-1946401143,1149894214,-1962637052,12123230,38242562,-972929911,1283457287,28836358,-443851264,-1957313699,49054700,75400022,-2124712960,87295614,2122385268,1963277318,106859382,-1744353398,276490320,184730755,-1956350784,741148230,-754732795,-775386120,-775879712,97256928,-113015,1273497206,46433024,-956408181,1204224007,-1962934270,-208992674,76136491,-352041079,1586204714,75464966,125044672,-1375436927,-1978108660,1352140615,-2096095256,-1073020220,1996425588]},{"sector":8,"length":512,"data":[583686,1577239683,-1017256565,-2081649835,1448543468,721712779,105155327,37487396,1156990581,427100166,-343810421,61932844,-1014236205,-670833711,-2013862959,1946224076,721718055,1183384644,2126515196,1962889243,121932292,132665496,113541899,1962690107,105676807,-16608,-1996209013,38061828,-947191808,-443850914,-1957313699,23378156,1475944936,108432214,-23165299,-1962440029,2057504838,71731975,-955814237,492550,-2113485056,-385875961,1015022204,-385649627,113705560,67462,1990443051,124953351,-1559789405,2124613492,125608711,-1559793501,2023950188,-1878604025,-2147475449,1966080380,113722940,3147664,1015034859,-15895253,-955812346,490502,-1876759808,1965046912,1983808269,359989255,125568767,117379051,166397804,1965898880,2013724625,76170759,-169324392,46433031,-394936309,126662742,124184656,-1962621821,-1942060048,209518599,125306623,-150500191,126657496,1965964416,2114387747,-1202305529,-397408378,-998045892,-2081387772,493118,113707645,67462,125701887,1033372810,846463046,1946177085,6831413,1815945332,-955878144,34042886,1950253824,91553799,1967930496,1015039489,-384076544,113705352,67444,113763307,1050484,113761259,526196,76207083,-1668904552,4537854,1195182708,1023767552,158662744,124913407,-23296381,-1668904160,6499838,1979716925,18147587,781434883,860137471,125443723,-2103369845,-2096658169]},{"sector":9,"length":512,"data":[34044422,-1878955543,125830911,124520135,179830784,2145931264,46433025,-1878961687,-352319304,117412080,117376880,1048774514,1962936190,-2012821751,-352321273,113741831,1928,125699839,126224071,1048772612,1963460468,8972547,1956888619,-62486265,126617145,-1935595660,-62486265,125320835,-955681792,494598,-1877808384,126627459,126656773,41795595,-1935425493,2047247111,280494599,-1552384,46433024,1342192312,-2096902168,2122515140,578027772,125320835,-1961528320,86899782,126657280,41795595,-1935425493,-1878529273,126617287,780337152,-1207695494,-397410288,-998047554,-14685950,-385871688,-1070858449,31647824,-1862325527,-352321096,-1224765197,-1175912804,-15079166,125058691,-1962707968,-24424762,4030535,1031800180,-1946847963,1355164615,-303540706,113541891,1015084939,-385649664,1048837500,1962936194,1847495513,105379335,-1202752480,1307312127,839660272,854995702,855651062,855650828,855651072,838087424,841364000,855651072,855651046,855650824,853553920,126107267,-2095877120,492094,512430197,1207306094,-1217060858,-347732757,-2103340903,-1956684281,-1866244635,-2081649835,1448548588,168066691,117376116,1048774528,1946290036,1950253831,376770567,125443723,1468729227,-62486270,-2080483703,67598854,1048783595,1946158976,2048822033,-1995994361,1187511366,-352321282,512462862,126551930,-62486119,-2080483703,34044422,124534403,-1962052608]},{"sector":10,"length":512,"data":[1175190598,-1962576642,48956486,-1901871061,-1976136953,-2143386873,712310791,16678531,2122523773,393546244,1177355462,-1946401141,-654836138,-150941053,-62486054,-939633015,129094,1187448299,-1929379592,-125048762,1459910399,-100609,-1343685514,147096331,125714051,1461810176,-2096411672,243991236,-936704122,-336310647,80121861,-1047837136,2143292233,-196179467,124915339,76023178,125094155,58483004,1176513664,-8552377,-2081852160,491582,1990268021,2080770823,-2096401401,1962997886,112645,-1070923029,45279312,1577239683,1575324511,-1957326653,283935724,2122536535,343146500,-1593835074,1183385466,-94466824,125437571,9562370,125058691,-1961396976,-1962444258,39291655,-1980217719,109312598,-352057478,512462869,126551930,-1979955575,1586296902,2047247354,1048773127,1963984756,-129594611,1979336203,105297940,2122516971,158662908,-1996075592,1586296902,-129594374,-1980082549,1451881030,972434420,1946648118,-2045867236,-1878070521,-893244,-2144931258,359923775,2127444806,-1863455984,-228670394,653412095,1962950528,-1942057997,-2080494841,489534,-396949643,-998047458,1996445186,-126418950,-2097057816,1048774340,1946158968,65558279,46433025,-443850914,-1957313699,82609132,-1995998559,2122579526,108291844,1191476867,28312693,-1070988565,-2080618872,491070,113706613,395142,16547456,1048776052,1962936198,-2046376186,-16776953,-16289226,-16284106]},{"sector":11,"length":512,"data":[922682486,1996425098,1914109950,180650758,16547456,1048777332,1962936172,-1976107253,1947664135,46433030,124534403,-2095942656,493118,922684277,385812362,-998046088,2047247106,113707015,1934,185038497,1946647558,-25755885,108664575,184730755,-1207601984,48955393,-397361109,-443875064,-1957313699,1048794860,1962936196,1847495471,38797063,1183452792,-13137148,704940039,-1878266908,74907475,-2080991768,1967129796,-2079916281,-1878660345,125961983,-1866244770,-2081649835,1448542956,126107267,-1958120192,-167050122,367739518,124663551,126891775,-2081006104,1967129796,-2079916284,1321634567,377405451,124657291,2013417471,126918875,134168459,-467008120,1048829163,1962936196,71731975,125961729,-443850914,-1957313699,49054700,1988843095,-2076278008,1349844999,922688747,1589905262,126494212,-1552232,79987701,-16485056,-16284666,-963967930,1958742862,1847495453,38797063,1589957752,126494212,124657291,134168459,-467008120,1048826603,1962936196,138840839,125961729,-443850914,-1957313699,183272428,915101271,-1070921846,-1979955575,1048836678,1966081936,2114337048,957510663,1946644486,-2012858106,-955878137,537366534,-1942058240,99112455,46433032,737691273,75377656,125320835,-2145880832,326446396,126893699,-1408469712,-1645719400,46433278,-2080878849,805802046,-16053388,1048774526,1946158968,75399961,-16354304,1609103942,-1908505856,108265479]},{"sector":12,"length":512,"data":[-386119937,1048772714,1962936184,-1612163290,46433278,294531,2122516852,57999610,-2097138200,495166,2122516852,57999612,-16761368,1444870262,-2080451608,1048774340,1946158968,-1878604019,1459625991,-2080480792,1599996612,-1017256565,125189763,-1207602176,65732651,1342185656,-2080503832,-1866267964,1342189752,-2080506904,1048773316,1963984782,1916699415,108265479,-352298824,2025361412,-571977728,46433277,-1957326653,82609132,1988843095,-28915962,1015021569,-1961921238,-1962444258,2047247167,-347733497,1015058504,-955878099,-442,-2130760890,897331260,2134457472,2118007088,-2146732793,108343356,126879431,76152880,-774927464,65130977,65130959,820609992,-2142832245,92024892,2117680256,-28931103,-125046793,-1996202357,1590070079,1575324511,-1957326653,49054700,106217046,-352039286,-2142859262,175374396,-160101318,-352321096,-1070886909,1575324510,-1957326653,82609132,990142091,1912923678,151042053,1190603499,1954545672,176063304,857371648,-1194226743,567099905,1190611826,1962934794,105251598,2030589459,369145896,-1992889351,1183448662,-1194226692,567099906,319178243,226035798,-1946268021,12123222,-350106302,106335192,-1979167093,1119095366,91365837,82356096,-221910531,-2081649835,-13499156,-1946255736,-930412986,16533190,1971323049,1073785104,116787061,1971324507,-62470652,72780672,-955645148,567098804,37556851,-150375168,1946222785,10610947]},{"sector":13,"length":512,"data":[-226629127,633441171,3998976,-1274448635,-1205744322,-387247872,33375942,-851181384,-2134706655,1317012596,1190543612,57950460,-1962879511,11077190,-1457687550,158597123,1085589811,-1075240499,-851528704,72780577,-851246920,-1872237791,-2130950410,-1477901451,174336,-1612119179,-18176,45666699,-148779710,-11104807,567099316,359972875,452951680,-638120075,45666699,857853250,-851397431,-1949748447,1107343569,1760240077,-45693296,139365120,-1996446488,1190529102,125173758,33965815,-2147257088,1452015329,-851659772,-385649887,-158076489,1979711046,105314055,812974082,567099060,604391050,-28964349,-1274784117,1914817853,1190564826,343212541,17319671,-2146601984,1451950537,1124186116,-1083039283,1090275062,1451965813,1124120580,-1047846451,19253554,-1325239296,105314064,57933832,992004480,1912923678,-851528694,402700321,184468969,-914293682,-393246719,-1950119164,851664357,-1579357239,-789117733,-919355101,58032296,-1023293056,-2081649835,1586170092,-434226428,-1207471612,-369555200,-2013859573,1948255464,1107474443,-779368141,-344841779,82348022,-1955695488,119408214,1183432755,-62486018,-1957275652,-1980593158,1317795942,-1336614136,1974399498,13953098,1979754557,49054536,12246155,36191490,-2135293069,-1948112128,385518548,139365127,1946827948,1962621708,-186471911,-352312344,990752865,-402426373,-1331036136,-62456054,233366507,1591929600,-346690721]},{"sector":14,"length":512,"data":[-373279931,1397812217,735021905,-1961827382,1085539422,225583565,201213441,1493595328,-91531173,147096515,162792563,-2013913365,1950352616,106859275,1964654464,216791043,469809401,1183516395,-62510082,1593337483,-265426593,185093771,-1962576439,-266212927,-1274653045,1931595072,-351685628,1975520228,-393742624,175390724,1065409163,-133991142,-1191587861,-907338752,85107033,108250171,-654851029,-1070341633,-1957299477,73305068,74767115,33443712,-1017256565,1458342741,106740567,1962950531,-1207493079,1944584197,855995649,619420096,-1543625664,1587742300,80188934,-964493311,-29047036,915013630,1317733986,-1898411004,649408,-443851169,-823540899,-93044480,-2080448128,-227283207,-66947189,-1459713107,1212314625,359907643,-268185461,1946265773,96600884,-141885438,-335657847,1962839014,-1980169460,-1054081460,-351958712,-17235195,-963903924,-779298164,91541819,1780386854,41912582,113649347,1023542896,628424702,-268173685,1946265773,1224641522,-1116487365,-268185461,1946265773,96601058,-141885438,-335657847,138906598,74760203,351000718,1880030758,-1945013242,1003982040,637891783,107355790,-1125435509,856061835,7006400,225756731,1077936420,6219928,1308495220,1894654,1318454644,-1936069810,1003588824,637826241,-1962513757,38242567,-1013333965,-28996783,57934248,1095354411,2147465793,1813396262,-788236794,-1946847766,1925579713,1925317397,601028365]},{"sector":15,"length":512,"data":[-389665854,141885452,-355347721,-1070340747,1364378457,1946164712,-24422632,-234622837,-16890681,108497407,-684992885,-27948726,-1017489064,-768389037,1347572254,1342177720,266870534,147096320,536869507,41179994,12833291,1458342741,2122516055,947191816,-1962643777,1183516246,125126660,1912624104,-1958155481,1208270390,-147123852,1149963636,205949186,3860566,-2093976738,-25099066,74646718,108384779,-1711276104,-628417045,-787496061,-754732581,-850873109,-1830194655,1418265737,-1103722238,130036484,-443851169,1317782365,972524300,208929356,-2130393469,1963245310,1072429554,470014603,-745850510,-147078770,507053685,645071976,-787496061,-773074469,1005310443,50951671,81764825,-1064380373,567102132,-147124878,378078325,-2020473752,-1009677564,-1947432107,-1931572265,-1950314792,-1070398338,-218103879,-9073234,-1190756725,-1359806465,-114568713,1183579783,29816580,-1543343104,-202780343,-204926043,-1946973276,12803578,-1947432107,-1948349481,-24443274,-1064380276,-4603853,-139529473,75402193,27838347,1235485300,-1510741551,-1527527149,-91491445,-1957313699,-1948808212,-1898410786,74877888,856063627,-17984,-772296974,-1493960405,-1071970956,-1946157283,1576700915,-1957363517,-1932030996,-1950314792,-1070398338,-218103879,1238497198,1576700817,-1957363517,508975084,139365127,-645191965,-1962639733,-222284809,64616366,-1946252341,-1494022538,872367242,-12240183,74712183]}],[{"sector":1,"length":512,"data":[-772322999,1600045451,-1017256565,1458342741,-385830057,-1957363510,73305068,82189883,-75296387,-166953984,1074063495,28837236,855829248,1575324608,-1957363517,-1957210388,92996734,-1962779253,1435173965,141921030,-854950517,2123061025,-1996125946,1300824669,106268932,-1895271031,74582597,149681715,-1091822616,92995585,1594652041,1575324510,-1957363517,-1957210388,92996734,-1962779253,1435173965,141921030,-1962248705,93194366,1594252686,509026765,-544286836,-1945600373,105221893,-1996063093,39684357,-1996206711,1971914325,172330760,-164428686,-1108866837,114411,1971914123,-1956749556,12803557,-1962258805,1451951174,142510854,-66642345,1958742675,184124179,-771027339,766511737,-2082736214,-621346606,865269643,1958742994,-1812859134,-2020412937,1009779923,67270201,-1031034329,-495598837,-1404107384,1149764998,21270015,-227358917,-1956749480,12803557,-1947432107,12059734,1914817859,105313807,-167152638,74711489,-116588360,15405033,1408011093,1465274961,1427506718,-1962248507,108446980,-1408348533,158490940,91454268,1149820932,1576067839,1595868951,1532582494,-899816053,-1957363702,1381061612,102651734,12080406,1914817891,108971025,-1978773877,92808708,-136165562,392020019,1583292167,-1956947622,181034469,0,0,0,0,1377850189,1412263541,543518057,1919052108,544830049,1866670125,1769109872,544499815,539583272,943208753]},{"sector":2,"length":512,"data":[1766662188,1936683619,544499311,1886547779,2097169,1404109057,1414742613,11665413,1555038466,1090542592,620780602,1025522275,1931812926,1143930890,406793984,218149376,-20480,327679,524466,-80,-1308621569,-1342175232,-1342174977,0,-1,0,218103808,10,655360,615645208,1303380033,1329864787,1700143187,1869181810,540418158,1126777640,1920561263,1952999273,943272224,959524145,1293956153,1869767529,1952870259,1919894304,1766596720,1936614755,1293968485,1919251553,543973737,1917853741,1919250543,1864399220,1766662246,1936683619,544499311,543976513,1751607666,1914729332,1919251301,543450486,11665525,-5242728,-1308622081,-1342167040,255,65280,1566244864,725499004,2243389,684837,6029404,774766638,1543527424,3158016,690169920,1970498915,1920234338,822698798,941633838,909127478,3617071,1096,0,10473,5375005,4980914,990146224,1229348675,1230980428,240076366,436253184,1355776,25264513,-1308621055,-1342171904,69010694,-1308621501,-1342174464,4016,33691136,201919768,134679564,318707222,-16641523,167247872,167247872,1,0,258,0,514,0,900,0,4326402,7864498,432,-1308621822,-1342147584,1848116676,694971509,1970153472,2714732,589311275,11665428,548405269,0,698231198]},{"sector":3,"length":512,"data":[698231198,993694,1310898,1009566384,1397575228,4079175,808866304,168636464,1953701933,543908705,1919252079,2003790950,50334221,808866304,168637232,1852383277,1701274996,1768169586,1701079414,544825888,658736,911343625,221851696,1847602442,1696625775,1735749486,1886593128,543515489,544370534,1769369189,1835954034,225734245,16515082,-16774643,1853190656,1835627565,1919230053,544370546,1375732224,842018870,539822605,1634692198,1735289204,1768910880,1847620718,1814066287,1701077359,658788,911343617,221327408,1847602442,543976565,1852403568,544367988,1769173857,1701670503,168653934,-1308567552,-1342174977,-1,10076,23986176,84412416,1112671380,-1064507253,234885125,303903,787971,244039822,-108331002,-34108593,-1202674445,-883949516,-661863540,-1898410424,1032128,-1342172999,1202648063,-1014237301,-1077899704,78708751,-789068149,-628299565,74698795,-768878452,-268181293,-947135858,-388771593,-802438516,-1064565645,-522989013,-1030817789,1322289836,1187548077,-31145334,91598908,-341118036,1974615046,-1968901267,1946265794,20102833,512433934,872153092,-930370094,-1031072797,-1064385789,-2080863315,292880383,-501415642,16417267,-2129234704,-351272766,1086360796,-276578162,486614544,-339702200,-1950118942,-1962932162,50334262,33948144,1060096,-1064380274,-100663109,-410265970,784698363,1085550591,-1191181637,-896794602]},{"sector":4,"length":512,"pattern":0,"data":[482007694,-1205744383,567102719,1801675088,1713398885,543517801,1663071081,1970434671,947312,174787154,188549798,370150554,379065940,645932742,661079616,1188308977]},{"sector":5,"length":512,"data":[-1169555272,-1002757354,-997496461,-1878834131,-1946161115,10664440,25083536,-1952058372,-754667048,64589035,-617393191,17746771,1229736784,1126188372,779251823,960049440,1263542322,1163018583,1668172064,1816207406,1766989932,1937008743,1936020000,1702261349,1953451620,1869505824,543713141,1869440365,-1205569166,1639581952,-853422847,-1946316768,-1102098440,-234683712,-372127093,-2013485581,-1085913353,-1783824128,-352317254,-1783787470,1005260978,280139181,-1783808789,1105924274,280139181,-1783798805,1693126834,280139181,-1783798293,1726681266,280139181,-777779086,-193705235,-919340941,-305013965,-775982006,1257099731,-741228940,393534341,1951067601,-2133601863,192022267,1967844817,-1298813692,785633552,18648970,1946876288,-2082786502,645137145,1951067601,-786468201,-1770763539,-305015855,-778734518,1257099731,-741239692,1929575296,-1081463266,-1968438996,-141863208,-1527516373,-1400312994,-712980478,1979661312,-785126468,74795757,280139181,-75443247,-774737400,74795757,280139181,-75443247,-775785961,74795757,280139181,-478030895,-544866081,-1070353173,16825094,-1948742829,-1949267000,-1947169816,248824,84150786,0,117833728,33622280,67305472,1541,0,134676480,202050057,302026765,537007081,1498619949,1951729235,1818868992,544830569,-67071974,-285211903,747419649,-1325396219,-1930898684,985,-1931964735,24945600,69150345,-1174203204]},{"sector":6,"length":512,"data":[60784640,567089844,1912744680,-1153518508,86638595,88278796,84613816,-2127054512,1916035265,1343105340,913451776,394881,54388752,336210802,638639336,1913054184,1073762360,-400788983,393349657,1912615144,17229842,-972416748,1124074758,51323368,163053728,229920779,-397387699,89656159,1963867402,-339725564,167772439,374125648,-2147039293,1258290945,276967233,446837664,713138689,3121717,587667085,860034068,74589129,-1928969804,352714757,74760763,-403976053,14026486,1946222592,4046361,838916031,22866112,-209715119,1555103140,-1359855271,1642809340,1144194488,978663233,1333089302,2688654,738535144,367060992,169754994,-1021421655,922192647,905969702,1930226051,526342405,-251450901,335551679,196691713,92939776,-697039830,1018298601,1189442848,1508893255,-2104203938,-2086461601,504818601,262165511,1031810238,1375892828,-565698390,-1575699938,1320463136,-2146471050,673720126,-747372499,-1295663639,490536960,25076505,-2048326797,1073065234,-1962205557,-1169259968,1856375392,91537723,-65399,1963605635,1344808458,448414514,512358401,84020816,1230716084,631444998,1285569112,-930400654,-2142551884,541754665,460716356,1288324473,1463787381,1889277794,553758728,1052024056,-1660275750,-958063094,1415547736,-568691811,-972199979,1962944512,-116713032,-195623229,-24439808,-234815303,-2130283090,-2131293975,123722050,428533955,-351591309]},{"sector":7,"length":512,"data":[1883253022,-997840592,1946555965,1174487300,208861695,8502848,10487272,-1342017024,-1925397760,-402548162,5253291,-385875907,-352270616,-1454047113,1963262398,1448549923,369098779,29505163,-1912486751,-388287528,-1067581348,-1994432768,-973024226,-1605309470,8775686,645931682,1241579945,1193377,-1475936640,68694676,1481874950,1968413121,6416414,369181980,373483527,58064895,-342284040,1817896963,658699,17453174,-1431518216,-75447298,1979721795,-686573562,-1073079829,-872485515,-2144950272,1952251517,1170613771,-1442489089,690205954,51263113,521049088,-1746349517,-400620001,-1566522073,77767552,201554827,705077824,-1020917760,107945613,347395886,-1007091161,17367720,1050673281,28967368,750264437,113409,-1828634439,11730870,1609041854,-2144387815,57934145,-1191843008,671151104,1912611816,24373280,635968370,370414597,-27484080,98953416,977291968,1213729542,2019131413,114820894,-398176215,-1522857888,-1103404908,-1182679288,-215676542,-955812442,167811305,540446037,-1708391286,-1921720192,-1962899650,747754510,688788814,-2008412671,423509995,30180065,-1521211549,1074007723,144726273,2118258842,196609653,1109308064,-1796397152,1386357058,-1174648926,1330976263,1329464078,-2141487726,1846196563,-904792422,1232145681,24056281,41992977,-117293865,468192116,-343931151,-2147401726,1355022275,1927483112,-2134641142,91488576,2133115786,297276056]},{"sector":8,"length":512,"data":[1356542794,87018816,337248255,1145957249,671498627,-796259470,1225394712,-1966868455,146295838,-1471896379,262278973,-1571557375,-1106854348,1363485554,507121185,202798095,51871040,270437569,201490691,314049292,-134140660,624428267,-989928398,1917389129,-149131824,152174786,170855727,234668801,565838751,52470400,1912675560,-1075004851,189076530,-1170076911,21282790,17173248,-2065166221,-957320448,1610816774,113770313,-570424486,-1187968767,1622802944,-2129173468,1661247550,1964377636,155362831,-779415423,-352276340,-2038420964,10938583,246957682,-1437433588,407557173,907048464,-1456442858,1946172465,1052002093,139047471,1048578098,1956563556,256118536,7536998,1441337203,-2046376961,-413786622,1913718760,-1935146963,-1960900904,-1212117257,-1469072837,-391393150,-191098866,-1145763244,688894161,180355088,1968709568,-1629452795,526310259,93045511,337545470,-394264574,108135864,-401796680,41092528,96666036,410155142,1466783876,-1788804080,179832180,-977174005,-1592023032,611514880,-1994767221,42247493,67509254,334956582,-1962571503,-1849676328,105744651,-351775351,-1102011964,178258774,-1070390017,1915501707,272640976,-1960997944,2138932201,1615870232,326304333,-922024565,441453685,415755396,1068764651,525403668,-336002258,689449610,777880424,245694525,175359291,-964440693,1286093840,1405333565,178936671,1566715531,14880327,1426270208,173902604]},{"sector":9,"length":512,"data":[1979710339,-1202565101,1023756289,-1877977717,1524119109,1912969304,-1472154601,722302295,1994927324,-1010481144,696037588,-502005243,1912606952,95283213,-399916536,-974597400,-2146164027,-376744898,9871622,-602501806,-419230719,-622264471,145767428,-1274711014,-1921616639,-318767050,-163672831,571649,-2086210564,-2139814663,2088772208,477438207,-1801101184,100731671,1375864337,101385802,-1341848061,669722122,-1182173949,1966483208,-1868549118,-179950472,504385281,-48189369,913237747,39692922,-960754174,134419462,-1601302344,-1408610623,1410597632,92930412,514266752,1510232808,-1030825330,8562,122689147,30545545,1079009467,-669087480,31081473,30803655,-1265020912,185382917,705215939,-2131391720,329100,108389768,97577208,1774142955,608210947,-31361590,84090638,-1544674992,-1023409788,-2036130298,444367617,-2038390782,-1528298725,-1628956372,34632192,-1360518608,-402034172,41026963,-1207634040,-2131162361,8521810,1436778145,2054323573,2018842216,2050680863,1914737888,549815142,-1422907269,-1088195461,678720862,309662886,1946361462,1947471240,99287434,-1453306136,-1396771551,-1970253596,-1935439348,673366572,767230350,-1877474347,1086362136,355906594,-149385215,26649569,26746505,-899413343,1944635414,235274496,375715370,241559650,243377185,169236385,-1454221857,374154178,1973598027,379265550,-39542748,-1801256908,906834957,655212290,-1811545344]},{"sector":10,"length":512,"data":[-1235990978,303384597,252459797,1342999860,512471058,-142278576,-151354381,-389857279,7471160,-987876096,-955808482,138567,-53876705,335593656,-400395765,438500638,1520522565,73532939,74405205,1364526199,1968768089,1212164311,-187687284,530579466,689742339,1210411668,236239394,245148958,34868759,789416724,1246918,65541509,818086002,378142626,1242707918,1947738660,-1206940907,16810017,99093227,553794562,1915648416,-365509332,2889488,-1962475500,-348380458,1341754124,572625595,-300762598,2032243052,-1541351285,-402230464,336134605,1728368203,1350828105,-1953809159,563186261,1459746893,73863915,-461268620,-894662731,196219895,196079508,137499311,103135940,-44670023,-1977465843,404882025,-401898496,27570262,58006076,2139791490,-806867853,297057840,1746665546,-1489597168,-499217149,-922676597,1860707492,1476412705,1375857939,1634865172,218508320,67292208,1579162041,1979188790,-1341865534,-1564462402,-2069298103,-567996679,1289237288,539301669,1242446980,119604261,-831780022,40691960,1043267699,621639061,-1591214079,103981507,-150986565,1778779107,860356680,-1955465262,104309192,-1523505418,789841418,104074500,-1054145910,970666778,-201914834,-163765720,915699471,-77555978,-1993474554,-1641354940,1344351232,64094981,-1929083463,-1023287167,-822163150,-67075968,-1977714942,-1273334284,237764630,51381903,-2011920338,1751454230,708915232]},{"sector":11,"length":512,"data":[19106305,803734903,45463040,-1807462144,1764239363,24448021,-1610611135,-1308461811,-387698168,175313064,-2021350424,362153221,-1010242395,341378387,1980142821,-1016505593,-1269117782,1076398898,512501474,604374919,126205958,-1950711807,-1557790137,-1070397557,-33273974,193630912,117838473,1183975313,127535120,-370847228,-1574567792,-1861412461,127146240,638808807,125830910,-953777600,-133725946,126027775,-1840709641,613227780,950057225,-1960386251,-235449074,422126756,118430032,-1248450926,1247356491,76486527,665144737,1449259313,554520746,141885525,420817481,288644259,1378960647,1074169611,177275686,124691205,-1015720857,1049272461,914950038,-1958895528,1254265288,-32959488,-972824367,1040445579,849930324,1265762382,731256593,-920625260,-905836997,-1273662389,461039871,-649900018,-601750702,4811330,-968127512,1153885444,92340250,1967914565,930906122,412157045,853876752,1791164488,-384571096,88148238,-952373134,-1459570062,-118953213,703267442,-1432265729,-1704852584,1344739447,1137035,251593843,1914232832,1992723204,-16271170,1431749625,141338656,-1140850759,-1790832603,1884018190,-1802827106,-2138336731,634222844,-854982511,1583175718,-1199136061,-1542146557,126429884,1948250614,497656128,1415619392,-1017351007,-1827763649,-1861581188,904399529,768689410,243869163,678422561,-12821968,-1645738635,1918737162,29625366,168601769,1426547894,-500855678]},{"sector":12,"length":512,"data":[-1660718123,1110327378,1464979335,194859858,-1410954402,-1483010896,-1710486955,-2096598380,-1996355388,1515917679,385965913,845088510,1170425641,341128843,102164528,-1960217471,1157053639,1209982985,-1415166693,1899710480,134352573,-121621746,1049167851,2018419302,84077384,-549412809,991523333,158665022,375535241,186915593,909844806,127961236,-738598282,-827699075,93972591,692727658,862490400,1431647204,218697053,-397665900,1229983191,-871069355,-1056160501,-1914123189,-1005433346,173563777,-1802959359,688516010,-1523137014,1763966986,-1067578114,-1945760665,-1866232101,-1064513956,1938086030,-1435749111,1544028706,50815137,87419120,2128402037,-1437818249,-33952353,609695487,81003532,-1985936938,-1583611320,402671063,378116868,-33680428,1116022130,1048787105,175403120,115868067,174071437,-400930935,-796327904,-36203995,1521131663,67374852,-37336189,-1605875517,-503905552,1080952323,-2067595054,2399458,-836513792,782766372,4521368,-1548943426,-1499330702,705132116,-1799984524,1998500936,1185736592,-2099123938,-1454273733,622758779,1420464936,-1587536888,-1891348183,-2009751550,184863815,-1014808521,1032162565,-1019520762,-356499082,-1969755892,-1907872951,-343721984,1596088662,-1954580702,1447913094,1400088635,-1808518238,1929860660,1630144008,1499021072,664183827,1166752323,1824059421,1220328967,64275405,1963091851,1353338913,943628031,37964034,317425899,-1606729556]},{"sector":13,"length":512,"data":[-11006288,260535302,1848002967,-15212084,-1466932541,-20715508,24322307,27567938,13775668,687632016,-1977569278,-503935730,143201536,1065408515,-133663259,-2003673024,-1323496633,307082136,421864705,772278792,-1526070776,270530049,1886913652,1304963722,1325824419,2074308242,67590380,-669003058,300983487,1929230810,52802117,947005998,-888464718,1946168632,1115891979,468046056,1158547815,207289285,34537930,-72015355,-1897366414,1357412172,1359059265,210598283,-1593310539,538389113,-1784441439,864179587,2040479754,22800387,-1560003214,2040353427,1778781184,1946553991,-396684475,436861926,652957856,1065402419,810032715,402983584,322973714,-467614845,285604737,-21986483,520128249,-2029620411,1963198201,-1568427971,-1608663269,82556864,1929873670,856458014,-1324995966,646490240,-722940298,-1834941958,736109035,-26809862,1363568755,915103815,452887363,153844585,33659960,154284092,1966638664,-513456123,-401637868,-488440653,660922882,1868949619,64618,-1274625027,857853266,1334453961,1606690337,-1005191135,124272267,333450,-148504549,1073759047,-2146953356,260046965,1964455974,1194927626,637826377,38371209,-497484140,-1581053988,-1907339152,-396164992,-83035639,2133841176,1711375508,125640329,1679180092,72250453,1078476904,201474932,-394441774,28320011,1928971333,-1559631581,389695296,-2076921112,-452849390,-1625214463,-352160775,811633422]},{"sector":14,"length":512,"data":[1988462848,1412102291,-1926418830,2121026302,141952056,50498040,44963819,2014411448,-2114361624,-10289382,915100274,-1019979071,33675268,-1738652580,244252728,144772957,538728979,-389468534,-1392444578,1639556631,1782483281,947392233,-493848634,-24427232,35656422,6875222,-407565966,965421056,1593376523,-271509269,1645018627,-1782122666,208414472,-1605374,1487878159,-2146420394,-422461343,344584963,-927554939,233754913,327218947,1933347627,48419085,1369987,1006955279,-99880960,-1017234295,990552147,1913088566,2009138701,727521543,-1316678900,1215624270,-760420980,593518593,103484532,1345933711,-1860269284,1344144135,-668266462,1931746875,104285271,994651661,101484792,133705622,-1958871037,-1966525498,851741384,-242528028,-1707081313,-133437358,260372339,-402565326,-1580075014,-1547401517,-1551424108,-1030323824,-13143180,-1789134593,179089664,973567168,1959198720,-185882109,-1327986090,1161438812,-868190977,-225727999,-2136298458,184096162,24508635,1442896885,-93300048,1228669881,928339722,1231564296,136342553,541675,771772392,159552826,111286398,158599228,1328417321,1821762947,1948382766,338167840,431144456,431472239,-738152369,4438318,-1521504525,429928101,1767245258,89080622,1162497300,1459635544,-1929646416,516326162,1867516759,96030509,76152064,1193413428,-947173636,558200231,-1341914361,-125103740,257057391,-1576932604,-1916575892]},{"sector":15,"length":512,"data":[269116726,132893609,161483306,-13370309,742755110,-1166016501,1455459866,1520890705,1326543966,280346674,595601101,1976203624,79952360,19550267,251794950,1174405120,2162687,1986939163,1684630625,7496736,1702258944,1701868320,1768319331,1769234787,1845821551,1954039057,1701080677,1920091421,1919882784,238101792,1073823980,1086423834,71566019,1048577,133386,922749252,318787660,1867792384,1634541679,1881176430,1835102817,1036517733,1377465202,1769304421,12534898,1936270100,1735289203,1344034174,1348363794,544487594,1661235054,779390987,487486563,2030265715,2038694537,2046804853,335621125,754984960,771776001,788560385,13743617,16318464,1886339917,544433513,1143821133,1395213647,1500740041,-1431152275,-1827378071,1486198911,2030595437,1886496108,-1351321742,-103019935,2032167822,-967805585,221149692,1696530954,341532161,118110769,1958501213,1956142440,540684835,503783487,995340807,235113071,-663786311,1864385597,-1878912922,1180876153,-48214496,1074004416,174439567,688812739,107130707,644147299,390532398,1167617609,854925360,14054258,-47245196,-2129002448,805383105,16779018,1307518977,1912602793,-2097149440,-1677718784,-1224733696,67113984,352376320,436214076,671095297,671172120,1869767246,1400401263,1690546832,-880774251,1017171822,-1675075538,603666005,1395459610,-452301054,1853178567,101984612,1920211300,1718840929,248163173]}]],[[{"sector":1,"length":512,"data":[40311829,1969317470,1953276622,1126047218,1093305830,106253966,139928095,1600465209,1299540577,-1878682836,1863480421,1432449909,595550958,-1851637210,73687327,1416783368,-1703682908,606561138,1675863809,1286237995,-1891262099,1635003376,1868916594,1170539311,1684811843,1879184795,1095617168,1144144718,787492818,-2075119213,-414640871,340813429,476408129,1870294304,2037547022,-2128859761,363201,853647,917528,560,1086223,1179754,2547850,11403283,824555803,1855427752,1799190356,545887831,2004132953,1773523089,668306286,2587441,76480801,122561313,1730304774,133974246,442351722,604518998,1401029159,1414742613,-546701306,1230197569,375279175,831415397,1158418003,1450732031,-1595918846,1941987925,-1058798704,498860800,16695681,1124073731,262161,1701990433,-1659584397,1701519481,677613433,1974751589,10366516,515847426,-1020214909,1394606160,861341266,868323017,305051903,864057010,34604684,34487945,34556521,-619767793,68097684,699803663,101656079,1228999695,-402519537,135002941,103434763,136579074,1831408418,186389411,39005466,254815496,113705518,38199885,43444237,187838756,1418068562,167908512,-56498176,691548702,134097061,-14350538,982852871,1040667399,5379335,1023617567,124975104,620758879,-346530982,180650756,777437177,-849132032,520560161,-1004271502,2118530697,1482555976,1155949632,573648827]},{"sector":2,"length":512,"data":[31909074,-1909381504,-270045695,185991446,1397756682,-2057874095,-1992234613,38411913,1783576200,1082920399,-318037132,-433184395,-1188921332,1510961665,2013335272,-1825385974,2063916197,170588422,-111537914,1700355445,34560818,553191444,1217089223,1043474006,-1871233492,259195077,1821137332,-996744142,1948127288,-1902967285,11593735,335770130,1774440507,-117112701,-1273268991,361375234,-1031135443,-1310169820,124982528,1792824592,-632755318,520723089,-203585536,1472405496,-1957493168,1707285498,18526425,721680008,-880063527,1599604571,768566573,-1495514801,677042156,1347768084,-584688476,-1526310824,1109063812,1342413844,41229005,32227723,15208143,451648324,-1494724267,1508477951,-661826904,177785001,-118998103,-1200530142,10162215,-1258289989,-972882234,-956952123,218920320,38643592,-402652487,1336541952,1178518615,469766311,-1383913961,975573108,1912931396,1996564231,126417153,-370456761,429824,855789644,-141388837,-1828563914,-2096496635,91621882,-348667264,1378878723,188834560,184841664,54097115,-2146579456,1965820540,1563885317,1464484098,118629099,-972025340,725758,-1827497853,-1477717453,-1060321964,1336590,-1272904491,42512421,624436736,23410708,74711136,242598970,184505095,-1845398784,-478852798,197822294,34108653,1048792371,-1976863347,1097205316,-189583356,809246443,-762511318,-348912842,1329496295,-15456254,876742773,-1387311287]},{"sector":3,"length":512,"data":[-16777030,-114599937,1610484456,-352095399,173117541,-1966437550,225705990,354748021,1577184803,-1923971166,1426654979,-163927806,451576521,173109308,325911812,252134646,41731155,1541964298,2078802030,873332737,124911648,1566508889,-442327458,1215300906,822029832,-1579594838,911212552,-2007433553,1124226695,1346435971,-102208928,-294519295,-1995829832,1125419010,-1023284760,-164408490,-25755051,851217339,21007106,-165286945,1970537158,-1946020164,-352089917,-1542243048,1423058749,571635456,102827538,-842807544,924239384,204416297,-256347997,1051362493,453966070,1420820689,80118528,1915269880,-1615011066,-125817956,1378448641,1460031829,92922368,-12832819,-1811319464,201508259,84159143,140301919,216592942,307911936,1583050636,2014316997,-1359822798,-1404448265,1197259042,1662288669,376766247,185575712,520088656,-188116976,102427399,108317952,55413286,942541291,1158837557,-2096419324,761529543,2097463544,637869849,1381238075,86901739,1229523356,-350285868,-1978924317,-1727083236,41794722,15545019,1192052272,38536902,868454400,-1073708837,1002901877,769824800,147211075,1850758723,-768402851,134221448,155486757,511099194,-259342038,-2135346016,168891508,2099576833,-822214532,138800245,939856904,141756492,713688362,92983597,1397236885,268831978,1102054843,1102578206,-918863263,1968561269,-1208612328,593036815,739438169,1779225666,1258851848]},{"sector":4,"length":512,"data":[-894686978,-1075251083,1599193941,-1395953839,-1330626931,-76289991,1150579058,912114605,34764080,1095792649,1945917928,1342260610,-336063388,1084101133,1095173122,-114559509,-2145496508,-1811562246,616740470,-351489009,-2072452367,1343674131,-133556678,518525556,188426914,1645404753,-236877312,74580148,1683630939,81593860,-16679156,2086492933,1041498172,574307627,113716736,-65985205,-1993461104,220544526,1318915392,1141330695,-626447865,-603508443,-1834731995,992337415,36036615,921190433,-2146209019,642976024,975576459,-670427889,602496002,1295404545,1394934080,512578903,116806997,2106700,-1404865280,1912981224,86698044,1541945204,1969253893,-402319336,652936434,1091371011,-347201932,126365211,108346684,-2144463852,1124143630,-983388184,346859785,1321134915,1210597975,-1811429808,626073225,-1918627212,1015046198,104231983,1444112418,-2005597881,-1977199615,959359047,-737803003,-1590816141,1138807046,54767636,-400608552,1777008776,484996451,682461792,-2011130816,839879196,1125095917,656976211,1098107078,-489507276,738405618,65623348,151652140,265422656,188112182,1560282166,1532973080,-1587967186,151933237,1142328253,-1979358592,-131774946,120737987,-879155031,1168703278,420200881,158701225,423445515,-1336930581,-1053784317,106430622,18684032,-1007041704,7098709,225642738,-402034803,7537225,250087504,-101260800,-1993472277,-1732226258,-1017292457]},{"sector":5,"length":512,"data":[-1048674266,-347735934,1203979766,-819379696,189428479,-2146825434,1334595823,784739109,625804801,-1809157032,103184975,-8647972,2080996410,540091935,639237763,1323173623,579998325,9859492,1839897638,-1694262518,1472767252,2097446856,-647737282,50694182,-1990000283,-1037661937,-991871912,1435068161,1299787784,1012591366,-2130283262,1357582056,-395049156,-454684016,-2012084676,1413234194,259327177,943756087,-1943055198,170602333,-1934488948,-2077863879,38270535,-1677563990,1946290953,1778561029,2075650058,1561530381,-189692295,635652120,1394640896,-1147004880,-993372295,1269868236,-498573313,-62914011,-1450163954,360055342,28043499,-1438109976,1048784386,438727979,308075708,167874842,386864943,386561056,9949617,-1677628534,2076600,1111820149,780032105,136840330,977017407,-1811673739,-1744422320,931135748,24314601,-538229178,1452052552,550537810,-689428347,755790338,-15511284,534480942,23272,-2143501474,1631325299,2050767986,-551274377,887816192,-1923676589,774231358,393483576,-1577037488,-1274605998,-1144878491,9437183,567112341,1493500250,-1901306426,83886917,-2144582845,123721510,1915766107,1016430600,738490169,113506352,111445804,1977424389,-335563772,672662025,503201309,1426665510,45241938,1627536538,-9000951,71436365,529403252,-833414381,353626993,-1855359984,1745543950,1099586677,1229388216,-836957740,608519762,1158606118,189090630]},{"sector":6,"length":512,"data":[352590634,1950366119,-1760619727,1104093186,625059313,118513954,1330945304,-351449335,1427791964,812595725,1225316137,1516173476,1448584029,1055654113,325526861,1609040586,33104937,1751005187,255847263,850790522,699794888,180656472,-1154619362,671177960,1191342944,-370474426,625386030,1194492426,1579500223,37836895,1347422466,-402319616,1399979303,-635531951,-969819867,-1811309047,-119389418,-2040833727,1317016402,18081848,-2094125966,980550012,516427433,402030720,298000396,230901760,-796237780,105967695,-335750936,690051626,585673817,743696630,135688583,-1944457868,-347207421,1879643910,2147009358,1903430972,701902081,628361788,-2144960512,1912734333,651899678,-2096931446,1628570819,-1403438832,1124664336,-1789773274,355442465,339124264,539511768,1530716144,1010205952,1009939465,204567596,75500661,-1341717096,-1069922784,308616939,1125630802,1527382861,62589779,-905491712,1260407685,1410253600,546373779,781051703,-583326379,175393048,235679548,174160284,1075872810,1398152885,1226440968,508569370,1381335121,856053079,31362806,-611543216,1560795915,525949535,-746258088,-1990375464,694241566,-477230566,1958676995,537147920,973632133,1551302980,355172357,1583085803,1309459487,977338541,73191699,1294880585,1292524898,-1809745837,1296189709,461162306,247189000,-561705444,1929394998,1245076795,242432,1564430394,779633555,973605356,1380205394]},{"sector":7,"length":512,"data":[1397162070,1162035536,1313423918,-12909100,-1600246258,33659208,16908712,1527057329,29230083,-971308611,17367970,1981562671,1310740302,1293972545,16851013,1413563904,-643354063,288753673,-855449950,2073297151,34342503,220465424,130979594,20325382,496653133,1119049237,681844757,2894147,1769109797,544499815,959512656,86847800,1293956153,-1468898455,1869836162,1914573926,306978928,1264914339,413764196,744685586,757099617,1651658784,2037654220,13556381,476856623,1934461538,2100973932,67843446,51384419,1679481857,-838729460,115081390,1881871378,1080824327,1141060099,-1809026813,1327543749,-1982574775,137300779,1672363776,-1828716288,-1875055871,902455811,33566766,444793096,1359151673,462668280,-2145124086,688884992,93701,-1070335387,12374158,-1157163396,3539064,506971392,-1085073834,196705342,-1527514112,529006598,268322246,2081951371,-1745269368,130515458,332266266,2035549554,319174965,453538940,-1996095487,-1602478066,653753360,100891670,2082260112,136189459,-2126021618,491823886,-1552133610,117769289,548961355,2081498112,505940619,1220747275,100791287,-2091775720,12255256,-1591244027,-399628287,494010514,-1394081360,369107975,-1098581109,-1493991962,2139949685,220209241,-1105693686,21134750,382566149,1083121502,1150223377,1478085890,401140481,1212717312,2081234570,1442316082,1518330802,29645331,1347815257,575295826,-665765144]},{"sector":8,"length":512,"pattern":0,"data":[1493193816,-1142536178,-1644166907,-1996283895,780853986,378174485,-1748939996,-365715148,980418560,-1272322304,506638,281911456,373027563,-149326849,109707318,378061566,-768377777,1383864844,-651883892,357071949,-1090341778,810594570,182899206,-896852170,2746758,557222481,230888397,1852788234,1395462874,921918721,-161150730,1377796610,829190245,1509056911,57732507,2008591713,-1318165144,15297640,-1574147071,-793855999,27940283,33292293,-385679073,218891766,373352962,19400460,-149948416,-60603633,124058718,1342293393,1028150337,1395423297,1027818832,-16776409]},{"sector":9,"length":512,"data":[-1073569815,1555284932,8137517,0,0,1,0,538976288,538976288,538976288,538976288,2105376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218103808]},{"sector":10,"length":512,"data":[707668490,0,0,0,973078528,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,312672256,-1223783423,-183596015,953361,-1576104942,-535917551,290383889,-1578628493,-251214317,1089143297,-853953284,32743969,-224247548,12445697,-402639128,544342086,-1979583042,-2147282410,-1023524374,567101364,17501824,16508992,-402546456,99288181,32573126,81717249,-1274941024,-853422772,505888,99155894,-1928826350,-1392442562,-1012159061,160433863,113705089,2450,1912974312,306085931,158662659,-1576930656,-336067822,1697795,1048581746,1962935060,51691278,-1951769424,-1275022601,-132002489,303467203,-233424381,-1591184383,-1005977326,-360705419,-854674367,-853953503,-217695711,225835009,293603015,-2134966257,69068817,-134091783,41794243,567089844,-843644744,1958742575,-1224558568,-12767283,-2146535937,16845582,-843643208,203327791,616039937,-1994273483,-1945994978,117603078,-1207358790,567092516,891533318,512303565,109838965,-1173945737,599263452,-1205744347,-617367801,1354969037,2107834288,-1576488958,312476291]},{"sector":11,"length":512,"data":[-1572852733,1397817988,29048752,768256,42239880,1543103043,41794137,567087540,1951973386,-1094715127,58845201,-2067918101,-1681963518,768258,-1447058189,57534481,-1174397464,1072169746,53864448,-1190985798,753401858,571651,-1274871366,-1021194930,512360631,-343932142,18266688,-848756552,-1928039903,-1560209402,109908478,-207421158,300400401,-1023203608,-4630704,-1325757441,732885504,1238338554,1438865503,-1955599229,767921132,4004897,-2140376574,1543705662,347744372,-851725309,-1977781727,-2147282410,1988968682,759612974,-850938788,762744097,-1190980417,-1527578559,348001003,763268355,-218086983,51690148,567098292,1105730674,116825089,1946288395,4581379,17501824,23586824,8579229,-759231509,43902993,32573126,-1089475839,96932224,-1930952696,-251214334,-998047487,-154968721,-2147415290,94374005,726042625,60819179,726042625,187072707,-488048895,47495935,567089844,-1174404935,1320420097,343024077,17501824,47495688,-402462304,1337196860,-244112947,1912740072,-234437107,-726007806,-402608126,-1447427804,-853887998,1668465441,604148384,-2142211056,771922750,-1897379468,41794303,-402484576,109248768,-402390764,-1447165876,-2080535806,733544647,-1599802624,1183318283,-19404756,-964430453,44678912,-218092615,742820516,-2097083486,67179566,-1272097139,-2145268421,127294,2129137525,-2137265408,127294,-1830288523,364823297,-1275022845]},{"sector":12,"length":512,"data":[1310838087,-1962928920,1559920894,96863348,-1682028708,899330,868459763,3976402,837291636,1174631170,-225836880,-303312758,-1447378098,-853887998,1095969,-1274871366,-350106290,-850414588,-2146930143,2130774822,-2147030024,-2147415282,-1609600263,270795454,1048634228,1949172423,-154928932,-2147415290,-1447153291,41795330,-218092615,-850414428,-2146930143,2130774822,-2147030024,-2147415282,-1609665799,270795454,1048634228,1949172423,-104597284,-225706773,2014336,-1975225298,4253912,-402625560,800718974,-37165055,17499894,-402426872,-1981284169,726043136,18103947,19840397,616794794,-2146143216,536939278,18103947,19905933,62464176,-1012206848,18103947,270844810,-1114831243,82510130,20102541,-1962930759,516325874,1017818112,-503155712,230182904,-1070421238,-1014316118,58003492,-1979700248,1049307974,-1114832620,-1012268754,270844810,548407157,-352320583,17080326,-1962933319,-1929309122,-218026051,60867498,726022145,1187382901,250290219,939591072,108342086,-2013198688,-154981562,536939270,-927005067,3008529,29053891,-851397632,-389850335,305987599,-133991168,-956758293,16904454,102650819,47953,567105972,1528760153,1381061571,-1962570922,1972044381,105745156,-402106997,326307488,-1961787201,1972044381,105745156,-402106997,1593380492,-1017423526,-1207957528,567102467,116793549,1963983115,185005582,125059073,-1274940230,-1977496261,-1274940650]},{"sector":13,"length":512,"pattern":0,"data":[-165556978,16845574,129501556,203328439,506449153,41227973,-853204040,-987881695,-1207797482,567092516,-1672428769,2032074542,2080521218,118361629,646600735,-327154926,1977629249,185499653,-1712844799,1275181311,-998039091,1444859650,17708741,292943371,1660991568,-1993989683,637603382,17833612,3965784,70914420,1144653938,-117213439,-964491541,-118822142,12787550,0,0,2455,34185473,164235699,16908544,-1442206976,83886089,255,0,-1040186880,34187785,788547119,-16580543,0,0,165019648,788597162,63,0,418054144,160566921,1946157117,11397126,-1995969543,-402026442,393347098,160710285,160446091,244044339,-2098722414,-49919,-1007103371,-75375989,1282738603,162477707,973175936,1049430645,-1431567598,82528070,51658381,-51910570,4241758,-1442714815,1962949804,1559920663,-25161867,-2130021284,1946173689,-12204540,183236608,1049485794,1290277330,887880190,165166721,108333523,-117420312,-996071701,163331337,113642869,-2145384004,33622798,-971904008,537509638,-1560213599,161546499,17146625,294298563,990482593,-971868944,-1599930364,-1912158447,-955146735,17928198,-1975612160,-34478063,121540035,-35002350,302464641,108265775,302450431,12840939]},{"sector":14,"length":512,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-16777216,0,255,2086492928,1026244156,-956292549,716038,243923968,113707744,2786,183830215,113704960,2790,193005255,113728859,1014762371,193267399,113716030,993856391,1929681128,-18413,495658579,1930377766,178179,17623387,183449225,-1923786925,-167053538,537587206,-391365003,930219299,1946455272,79554610,116790901,1965034222,72869893,116794091,1950419694,418074139,1027344264,243271029,1124141806,1929711592,126397641,1321462595,182728329,-1996486714,638251806,915217803,1015024375,-2144242641,125051452,183371510,642807041,838944650,-536462876,-1592691958,-523171104,-670874813,-400585946,1726677120,182585031,1592459265,21465638,-784276430,651690976,-315486326,259311883,-1960422589,12314655,1128231771,-940383677,51044870,640936704,838944650,-523157276,-1977165821,-773574137,-670875424,839879206,1959332845,642990863,1424498571,175332096,-220052669,182585031,1599930372,-535917733,182624522,182728331,182851211,182984330,642827256,44631947,-16485120,-2146770938,410320956,1962934697,-502872312]},{"sector":15,"length":512,"data":[-352321014,61886478,-1796669516,65755136,1476464872,1438906819,1334453841,200094216,-1928497975,451414383,-402099454,-152961011,-1996100615,-133499602,650337625,32384,-347798668,-2134686218,269151758,1929365736,-299466686,-1588531446,-970257679,183436801,-248083624,3964938,2088772469,141900543,182585031,518717449,4162342,-148498316,1962934535,-502872303,-352321014,9693193,-116528136,-1336931605,-385895421,-128450557,-1960421437,1049166975,-2010772762,1703421445,-173977599,1166616074,20731906,-1993995659,-1993997227,1508574797,108331580,72714534,121393131,138209396,104653940,-2010773899,1038812245,242549820,1074458529,71665958,106794022,-1993987093,-1943665547,642778717,16926710,78644340,-165279253,1946288711,-402477051,643301522,268584950,1692926836,-960274688,756230,126559824,393592843,1465013072,182585031,-4980727,1625818032,1532649471,-352130216,-1876628733,1946288297,-502872304,-402653174,1048772998,1963526882,536914190,113707380,2786,-2147438616,17533502,1048776053,1962937058,-502872314,1476397322,-1974054717,1958742532,1966750744,24936459,-972720896,166395908,1929547752,-347716095,-1017618718,-796241322,2112357514,168522242,-401902400,76021771,1178993131,1583016683,1937784003,1918974988,2004499522,-337697730,1460032314,192691853,1946483328,2000588036,1947547659,1381060631,1706297118,-4472182,375295,-838860870,1482250785]}],[{"sector":1,"length":512,"data":[-1912513141,1128465221,-685342676,-1017444513,141701180,74922300,-1007144916,1397801977,-1960421550,-1977219457,1975519749,-335563772,-502872312,-1275066102,-402411265,1516240483,1354979419,-1302965675,-402355710,980550112,-151031064,134934022,1027345780,-2144985483,1962934654,-166532242,269151750,977014388,-2144990603,1962934398,1525368410,4602406,-1073079179,1162236020,975573739,1131741254,1157925446,4602406,1162230133,116829163,1950354158,1207379471,1946165250,2122327559,578027520,268957478,1008235520,638154042,32384,250285429,125108284,8290342,-117214150,914949611,1593314033,-1017619110,-1957275824,-1978994882,1958742532,5761041,113647733,1577126794,1593836742,-966903317,643760132,67575,113716597,133858,1448617451,-1073085302,719854452,-401902592,41091340,1179076167,-391976213,312842,-465663673,1482645002,1946288297,-4960247,1558709680,1405311229,-2128704175,637195,74712890,1106895427,-1396483239,1946165480,5367830,116790389,1948257006,-301533458,158613770,-116987058,1324876267,1405352131,1947024465,1946172461,1946827817,2105550373,510788098,-1977165005,-1014824099,964699652,856519680,160048841,20588099,-119405452,1532562748,-967748669,537585670,183379584,1948269791,1946762294,1949056050,1965046833,540835852,548407157,-339723706,2105550366,393347330,-1977169613,-922025139,62589812,975586048,-502828031,1495284984,-391986341]},{"sector":2,"length":512,"data":[-301533686,91554058,183373440,-339723744,-147943958,1960655626,1966029834,233568515,1007348728,-2147125969,1074458126,1444856824,-348224685,628424714,1381047888,856053079,-1193373962,567108352,-619979892,1516199175,1951932249,-382301915,-350320374,-382301430,-350319094,3965706,70914164,1144653938,-117213439,1178994155,1543039979,12787550,131072,0,256,2,33554432,131073,0,786176,0,16781312,16777760,17937152,201261056,170752,1048832,204801,1,-16777216,65540,0,392960,299630594,-16777215,51642379,268435456,102760704,-251657984,529,3071,16777216,805569699,11,-1560150016,741344260,257,0,369557503,738197771,1073742336,1660945152,2013266944,-1879046912,-1694497280,-1224734976,-1207882752,-117363456,385953280,1325477633,1850283777,1920102243,544498533,542330692,1936876918,225341289,1766073866,1952671090,544830063,1213481296,1936288800,1735289204,1919903264,1819235872,543518069,168636709,1919501336,1869898597,1344305522,541611073,1953720684,224882281,1867389706,1651864352,1919509549,1869898597,1936025970,1769497888,168653939,1850281482,1768710518,1634738276,168650868,1819235871,543518069,1769104723,1310747745,1700949365,1936269426,758195488,168636965,-1010515964,1917273267,1768452193,1819042147,1768169593,1634496627,1948283769]},{"sector":3,"length":512,"data":[1679844712,1667592809,2037542772,1920234272,1970561909,1864394098,543236198,1986622052,1919885413,1952542752,168636008,1411451405,541410642,1769104475,1564108150,1952542811,1528847720,542983727,1564553051,168626701,790634555,538976326,1886611780,1937334636,1701344288,1835101728,1864397669,1752440934,1768300645,544433516,1696624233,543712097,1701996900,1919906915,168636025,790634547,538976321,1936028501,1129529632,1763723593,1702130542,1864393825,2019893350,1684956532,1663067237,1634885992,1919251555,168636019,1049429774,-1048505839,29557173,-16706042,285213951,1702131781,1684366446,1920091424,622883439,-1928917455,-2095854786,46342337,-16706042,234882303,1936875856,1917132901,544370546,118370597,334446221,-1021460093,0,0,0,-1,0,0,-1,0,0,-1,-1,0,-1,0,218103808,10,655360,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,606348324,542330148,542330692,1936876886,544108393,1126703158,1886339881,1734963833,824210536,758200377,876165425,1667845408,1869836146,1126200422,544240239,1701013836,1684370286,1952533792,1634300517,539828332,1886351952,2037674597,543584032,1919117645,1718580079,1816207476,1769087084,1937008743]},{"sector":4,"length":512,"data":[1936028192,1702261349,1397760100,861341266,868323017,305051903,801964210,337249932,337133193,-1307431240,-1943024382,-1995169274,-1206640578,78778926,109850573,1049170994,783815728,-855199214,369527855,339642644,-23992300,336725644,336608905,338560652,338443913,-1929469976,-1995168250,-1206639554,145887790,109850573,1049171002,113710136,168629323,345245382,1342621476,-956301292,169103878,-30873600,339492489,-402646552,1105723438,1357402368,1493725696,1532626783,-2096829608,-1007088444,-1205971376,567108352,1914636062,1144424712,1174834196,-1017618924,-1153171272,-768409600,-427810355,30310401,-851181128,12108577,113476,567136819,-1207841152,567100417,-852446013,369507617,-336067723,146712,-4520589,-1157370881,28835842,47360,-4849486,105956345,367547735,-2146536960,1962475518,-350288380,-1960899070,123690487,1398195032,-919341517,1979711104,1018989320,-337671404,46593573,-1128003468,-1014229984,322771179,1024291328,142016551,338476228,116114316,336641220,-75250804,-2146011649,58064894,-1559434247,-4713392,114175,-336005581,16483084,1424491380,80118528,184972024,-352160311,-25125729,1378448641,1460031829,83933264,-12832819,-1962314408,84064472,32190413,1594192889,116087047,-402209661,1516044300,248447467,1543502824,1347928926,855637945,-139529536,1599621585,33260483,1048780149,1962873912,-49898,-1588589707,520033360]},{"sector":5,"length":512,"data":[-346549192,941555460,857402132,-98103,-1977219468,166396749,1966422062,1300901380,80184067,-131238919,427084043,1962933888,87762437,992871403,-352160507,91506953,-352008317,208861667,-117440896,118358645,41747238,-315488654,1192069670,340395718,1397801728,106386769,-1981183150,-2011936738,-401322698,-921960764,-318038924,652739957,-402396416,141689264,17164378,82534151,-116996989,1594295531,108198234,1482381661,-998046485,1355020552,512447059,-75295672,-402295297,65732652,1929410536,-1151749105,567083008,-997989326,283900166,1962933123,1958820619,11593735,-116996989,1532625778,102679384,33129247,45357941,-854226394,-1031135455,503362024,124985094,22383142,-336059955,184726543,638153929,567088522,-210417337,1472405496,-1957493168,-1962467590,-65359655,58044146,-1957963477,1476877259,-1070349473,1333053707,-1273035234,-2083026112,678756857,1344217549,-402290138,509083738,108207878,1111536888,647766477,1964653952,-339637502,-401682687,451674107,-1494724267,1508477951,41099725,-935654421,-398784652,-1962773000,-1021354559,-1157617736,28639236,-98109,-956952204,504132992,1262390535,178452,-1006698264,1053054726,-16051132,-2094655628,1962410045,87696912,975570802,24576325,-347650055,-1022926871,340657807,-1835803853,340932343,1379334035,167412500,-1031797386,-2147226825,1095905474,74825739,963959563,1963194755,175931405,-16419540]},{"sector":6,"length":512,"data":[1091853110,-108846357,-2146601721,1965820540,1530330885,283853076,1963719043,175931403,-16419540,1091853110,-338545773,869413799,1312227264,-768359660,561301771,11543988,1965373478,1698178570,973370369,638481860,1407714698,1191277567,1967735367,-897100061,863300875,1346274125,729088020,67519626,1161438768,-352160511,1966095390,1959922436,-348912892,1295941863,141950740,1229537858,65752911,1476394938,183040299,1935237118,-1870664957,-2134209711,1946158716,1959332621,1195985158,1577184071,-922021653,-346160267,-425207,-919403915,1450508043,1359370069,1048824115,1962939472,121959981,-1006078705,1290273404,-166008063,1947010884,121959948,-167349234,1963722564,41731080,-352232728,5433344,552076267,1493660160,1583177479,-998046485,1048836362,1962939472,-385650171,113770260,5200,-1580059709,113710160,660562,1493079528,341084040,1090224963,-790101131,1976172032,168671470,341084041,-1058520253,-617364736,425088,-2016997003,757077076,-2017049789,1126175828,1560323816,-768353485,340397704,973685898,706639553,-152007999,1954547524,172263956,341084040,1090224963,2095580021,1976499712,142377196,940405760,141756492,-1979167702,139234001,611633419,252134646,1156975733,108269575,1191545382,-2007498261,1125405831,1967192963,4319235,-596260354,-2147007242,-167110539,1149899892,1418168330,-75283692,-402426560,-822214621,1157033077,141889287,268911862]},{"sector":7,"length":512,"pattern":0,"data":[216728180,141873674,340657807,-126498050,1426064104,1460031939,-880081122,1049484083,-2098719660,1594192636,82532615,-116996989,1156996547,309669895,1342540326,-43456447,-1977219469,-128974523,-1977217557,1958742533,-348043516,1442393077,-768385597,113754163,1053778,1157028659,611655687,-167409114,1963788100,1954588685,2133082883,340920007,1156972554,108334599,340920007,1424687114,268911862,-1960434059,121959941,-166759155,74744004,2145681475,340920007,1156972554,108334599,340920007,686489610,637897510,-167619189,1963788100,-2134444529,-2143091596,113737702,660562,235357430,113706613,660562,1074218230,1380985204,-1070450508,341055117,91431373,341509830,172263980,1482356875,738870470,-1946369560,172263623,-393214741,-619971402,-768408204,1431449010,195]},{"sector":8,"length":512,"pattern":0,"data":[2251341,34,13238304,80084991,128,65798160,30,1]},{"sector":9,"length":512,"data":[1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331,1128354899,538976331]},{"sector":10,"length":512,"data":[0,0,0,-1,0,0,-1,0,0,-1,-1,0,-1,0,218103808,10,655360,-1325383388,1142969165,1444959055,1769173605,908095087,692267040,2037411651,1751607666,959520884,825045304,540293433,1919117645,1718580079,1866670196,1277194354,1852138345,543450483,1702125901,1818323314,1344285984,1701867378,544830578,1293969007,1869767529,1952870259,1819033888,1734963744,544437352,1702061426,1684371058,-1308592864,-1342174976,-1308622500,-1342156800,56375873,1342222848,977448960,-1308621988,-1342115840,-1308622500,-1342174720,56375873,1359000064,977383424,1068630018,783286280,71253823,352367104,138391552,1060024320,278335,1376434,3026608,977338368,-1308620708,-1342160640,56375874,1359000064,977448960,11665410,1118830622,70135354,503362048,765952,0,1,2816,33554432,0,11,196608,0,536875008,11665446,61866021,11665409,1353713096,1460032083,-1047606989,783875891,-855592430,168201263,138316032,305051648,801964722,1181324,1064585,-1307431240,-1943024380,-1996479994,-1207951298,112333358,109850573,1049165830,635961348,33983504,4098304,503745536,473860352,271837184,1443468,1326729,-1307431240,-1943024376,-1996477946,-956291010,218118918,-2079930870,113714176,64,4327111]},{"sector":11,"length":512,"data":[-1125646326,742295823,1697792,-402641176,-397344703,141688912,1510432601,82532443,-116603773,508973251,-849149768,520560161,914950258,109838388,1482555446,1140897987,855638203,-2145268270,-830471706,1140963329,-1195171379,29049856,-841862400,30310433,-851181128,817152801,104669645,-133991146,37558507,-1157270784,65798143,-1207958853,12124161,-1241468416,1355020799,-397060346,242352149,-117440896,520488052,521011947,1599993739,1455642631,871773011,-98103,-1131739019,-544538580,-956946965,-1006078974,-1946152772,1025043395,225574931,1996498749,482133000,-339506176,12370950,-2084336640,376831995,1979711104,216791299,-1207943005,29229055,-118082816,-75297557,-402426880,-964493228,108197892,41273611,-2137219093,695534078,105993554,12079191,1009765637,158685439,45668491,-349188859,91486465,-346486945,113541894,1560284392,-821957798,-268274,1472421467,-18096,-1359822798,1481232887,-75250849,-2095221503,-16766914,-12773772,1342928383,-16760671,1476405278,520029419,451608616,-25114317,637957375,-352105078,892874249,-1976695691,-947715251,762575108,1959332856,-98279,992347508,772008709,41223483,1950943723,80184069,1928979435,-98292,235042296,2097358343,839283202,227157741,973522503,1354956800,1465209171,-376745466,3677833,4011656,201245928,186873033,-402295315,65732655,1912715752,250108431,173999873,-402426670]},{"sector":12,"length":512,"data":[82510997,-116996989,1594295531,141752666,-2091165347,82510532,-116865917,1381191875,3677835,1979710339,2942981,2011694059,-1274055936,47961,-466476595,-116996989,-75296533,990606591,-402164543,-998047568,57866502,-1017619622,-2095118818,460653049,-1977220428,522308885,-1310145910,520494592,-1977219213,567083349,-1274024968,1959332610,361375241,1229398477,536408949,105928643,519736147,-1327920377,-1359807462,-651492491,1540066123,-1017161721,-921976781,102649716,-1958693857,33129431,567093365,-1977200609,5957637,520494680,-1258813837,567099968,1031808668,-1962773222,-821957695,-268274,1364531947,-1946179864,567106025,199950963,125093947,1979246651,1572965122,666419999,310016,-2134703691,292880382,1971373814,-1928913396,-1191167170,15204354,1460061183,3423940,393543435,4031270,638612728,124912954,21314086,1207501175,1609165639,110084871,-617414594,922194579,-141361086,-2097135050,91621882,-348667264,818053123,-1073004206,-620034955,-108840588,-2146601725,1965820540,1261895429,585842944,1963456899,175931405,-16419540,1090538294,-108850965,-2146732789,1965820540,1261895429,865288448,866642898,-4181038,-1023394250,-921972173,632562036,942014640,638219557,1946248504,1975794180,92939790,1946113000,1111967489,1457747273,-317994361,-2092092556,16446,1149905781,640680966,1963017530,1008659202,184841520,50623698,-2132284620,-16761538]},{"sector":13,"length":512,"data":[1111623797,1330596169,-4586517,-114599937,1610484456,-352095399,-1957588865,108822730,185431040,1225159881,-347650231,283860481,58050827,-2096501922,41287673,-16004813,1465210484,-919383802,4210307,-164793088,1963919172,41731080,-352236312,121959962,-166956019,1947076420,121959942,-1006078708,1525154428,-402593023,65732690,1912611048,1594317063,82533981,-116734845,4210307,1912960256,-15406845,4196039,868417536,4235730,4327111,-1779957750,-2021107458,-2092761020,58015995,-33500952,-1192331831,-2021062131,1128464452,-1023360792,2088819507,292880390,4491207,1128475936,4491206,-1494727904,-617390848,243847731,1149894714,1992374793,-1967052258,121960176,-1978370944,-2021127612,-2092761020,58015995,-33522456,-2131986994,1946159228,139212813,1277823091,-1965979128,-922023860,1156981876,208998151,268911862,-1977219468,32196357,1149732952,-75283712,-402426560,-906100671,1157028981,410353671,343209482,-2012593014,1124091015,1967192963,2353155,-327823618,252134646,1156974709,41160711,-771093269,110037108,-889323458,48822389,1371755776,119428870,-617362549,4472461,1929151208,1493655301,-998046485,1573124358,805782774,-1977216395,-398372859,108264808,21334566,233568336,168135206,1191474368,737536833,1573082617,-1070345677,4327111,-617414640,537347318,-1977211787,121959941,-1475513075,1124299904,113737508,655426,235357430,113706613]},{"sector":14,"length":512,"data":[655426,1156994283,645206023,-167408858,1963788100,-2134575601,-2143091596,113737700,655426,235357430,113706613,655426,-1960433429,1435182597,121959938,-166759155,74744006,2145812547,4327111,1156972554,108334599,4327111,1156972554,695484423,951341648,378388530,567083076,113640819,-1976827829,-125105596,1153849434,-1041748982,-2000188420,82512452,-55121776,91544331,766693939,1371755858,-92266926,-1979156800,-1274075966,-1979520244,-1960900894,522309079,-133498240,1709707892,-1978960900,-840791352,-119436767,11797227,1499071602,-998046485,-3933948,20518406,33612800,50395136,67176960,83958272,100757248,117543424,134323712,151103744,167887872,184667904,201451520,218235392,235021312,251801856,268583680,285364480,302145792,318926336,335706880,352489728,369275136,386059264,402844672,419625216,436407040,453190400,486744576,503525888,520303360,537081344,553859584,570637056,587416320,604195840,620976384,637765120,738434816,755212033,772006401,788801537,805590017,822383105,839175169,855963393,872755457,889544449,906338561,923132161,939927297,956718593,973505281,990296833,1007091969,1023879425,1040673537,1057461505,386388993,1868787273,1667592818,1329864820,1702240339,1869181810,352980334,1970499145,1667851878,1953391977,1835363616,226062959,1850282762,1768710518,1634738276,1701667186,225600884,1866749962]},{"sector":15,"length":512,"data":[622883685,1886593073,1718182757,543236217,1701603686,1835101728,1862929765,1768169586,1952671090,544830063,1701667182,544108320,543516788,1735549300,168653925,1025525288,1818846752,1142959205,1679834400,1667592809,2037542772,1344683817,1936942450,2037276960,2036689696,544175136,1768383842,1868767342,1852406128,1768300647,1932027244,1632636713,1948280948,1814065007,224882287,1850281482,1768710518,1634738276,168650868,1851867934,544501614,1718773104,544043631,2036539489,1667853411,1886348064,235539833,1635151433,543451500,1702125924,1427900941,1818386798,1869881445,1701995296,543519841,1701996900,1919906915,487198073,1635151433,543451500,1986622052,1886593125,1718182757,1952539497,225341289,1631790346,1953459822,1329813536,1713396048,544042866,1701978209,1987208563,1679844453,1667855973,269094245,1701012289,1679848307,1701408357,168632420,1869566997,1851878688,1886331001,1713401445,1936026729,1192299021,1919250021,1713400929,1970039137,168650098,1634226963,1735289202,1869182496,1769234796,168652399,1668238352,1769349227,1952541807,225341289,1632636938,1847617652,1713402991,1684960623,1226377741,1718973294,1768122726,544501349,1802725732,1634759456,168650083,1818838563,1633886309,1953459822,543515168,1768976227,1864393829,544175214,1702065257,168650348,1986939166,1684630625,1836412448,544367970,1881171567,1835102817,1919251557,587861363,1852727619,1478521967]}]],[[{"sector":1,"length":512,"data":[1498435395,544175136,1701978209,1987208563,1679844453,1667855973,269094245,1701603654,1953459744,1970234912,168649838,1818838549,1919098981,1769234789,1696624239,1919906418,1377503757,1768186213,1931503470,1668445551,1768300645,1932027244,774778409,218237453,824513290,1818838560,695412837,1886348064,224683369,541459466,621158468,221390129,824510218,221390172,824509450,621480461,540157233,1311725864,621559593,841309233,794372128,272574798,1635151433,543451500,1953068915,168650851,1986939184,1684630625,1952534560,1847602280,1629516911,1679846508,1667592809,1769107316,1714385765,1936026729,1886348064,224683369,1984896010,1920430693,543519849,841298213,1700341792,1867394931,1819033903,1493385001,1128677710,1701408879,1768300659,544433516,1668834600,544501861,1684302184,1629515365,1931502702,1702130553,1768300653,695428460,1684955424,1919509536,1869898597,1948285298,1936024946,218762542,1129859338,542724175,1920298867,1528849763,1953719652,1952542313,1567518569,1093622560,790658080,1528847693,1681540143,1566930017,1345280800,794501213,1528847699,542983471,1565929307,1462721312,789187933,1869815840,1701016181,538976288,1394614304,1768121712,1936025958,1701344288,1818846752,695412837,544175136,2037411683,1091177774,1701060640,1852404851,1869182049,1394614382,1768121712,1936025958,1701344288,1668246560,1869182049,1851859054,1919889252,1835101728,1718558821]},{"sector":2,"length":512,"data":[2003136032,1818846752,221148005,538983690,211501359,729266,1886340016,544433513,1701603686,1769414771,1948280948,1629513064,1768448882,1629513078,1769108596,1702131042,1952805664,772410668,548536367,1689255951,1853056367,1663071271,1735287144,1752440933,1952522341,1651077748,778400885,540871181,609038112,186692096,1866706944,1936025968,1818846752,1998615397,543716457,543516788,1751347809,543520361,1920234593,1953849961,1702043749,168635508,-1308610767,-1342173408,1852994932,1718558835,1752440934,1918967909,1986619491,1952522341,1651077748,778400885,541395469,977547040,1702125924,538976288,1866670112,1936025968,1818846752,1663071077,1735287144,1864393829,1919885422,1952866592,1948283493,1931502952,1768121712,1684367718,1952539680,168636005,790634563,-1308594864,-1342174432,1836020304,544437360,544567161,1868981602,1663067506,1952540018,543649385,1751343461,1936024608,1634625908,1852795252,1818846752,168636005,790634569,-1308608173,-1342174432,1768976195,1679848293,1667592809,1769107316,1629516645,1931502702,1768186485,1952671090,1701409391,2019893363,1953523043,1886217504,1864399220,779314542,540674573,1061498656,186692096,1866706944,1936025968,2037276960,1651864352,1701996900,1919906915,745760105,1702257952,1718165614,1886217504,221149556,538978314,3167791,729266,1919243952,1701406313,1634017395,1847617635,1713403749,778398825,540740109,509030176]},{"sector":3,"length":512,"data":[186692096,1917890560,1953525103,1870209139,1869881461,1701998624,1629516659,2036689696,1717920288,543519343,2037411683,778530409,541657613,827928352,186692096,1968418816,1701998704,1936028531,1869770784,1769238637,1948280686,1868767343,1919510126,1870209133,1635197045,1948284014,1986994287,1920430693,543519849,168652385,-1308607701,-1342173408,1936291941,1735289204,1936024608,1634625908,1852795252,1818846752,168636005,790634565,2251053,663730,1969308592,544433523,1836020336,1852404848,1869881447,1852793632,1836214630,1970239776,1851881248,1869881460,1702260512,1769109362,1629513076,755633518,548536375,1706033167,1953720696,543649385,1953719652,1952542313,544108393,1701603686,218762542,1750352394,2004033637,1751348329,542715680,544825709,1881171298,1702061426,1852383348,1701344288,1347371808,1145914201,1986946336,1852797545,1953391981,1918989856,1818386793,168636005,1768444981,1634541683,1700929657,1702260512,1684632178,544105828,1752459639,1496133408,544108320,543516788,1835888483,543452769,1701734764,118360589,123485837,150258049,369492419,83885825,2017792256,1684956532,1159750757,1919906418,238101792,1430162695,549552912,369492675,83885825,1632636416,543519602,1869771333,824516722,1049429774,-1048375175,49949,0,2145104,-2118204530,-868315904,8370503,-1943624461,-1912537058,-280696613,-1746401421,-1343661839,-1477945344,-2142473708]},{"sector":4,"length":512,"data":[64318,-1612119180,77249792,71896704,-1224689663,-1073074227,45623412,1026543031,511049727,-843643208,-1608611537,-1610156286,1954545666,-1224230899,44048011,-2147421311,-2081935411,124119040,-1156603416,-611450848,1139327886,473337102,-1676243708,39094530,-972792692,-973011388,-961476796,-972486588,-972486332,-1205859772,111345691,33998596,-973078268,-16514042,67438278,271312896,-1623293906,57999632,-1156423448,-611450848,-991378546,258009103,44048011,91544331,-843642952,-1605585873,567083258,-1912594245,-100219173,-739573248,71437952,1108246530,-739770108,71886853,71436022,-402295548,-236257015,72025846,-385649376,645922958,-2130901950,17056270,-402280984,116786274,1963197506,-1522627267,511085826,44580480,-1341885184,-1341985793,234743900,72025846,-402426864,117309570,904397560,1108246530,645955588,-386988990,-981269117,-7804885,1048622827,1946157816,-133235149,1258747394,58000388,-1929369880,-402479810,116788693,1947206731,5761027,44373645,71437952,1108246656,1156059140,736985861,1477314243,73467449,109977716,-165280671,268437510,1637946484,73245444,237862,-1593548381,100729959,-1022950309,-1929250113,1048583798,1962935032,-335564796,-396578814,-1094513317,-88145414,225175553,770183027,-972721655,65732612,-352320058,-130121711,175439874,-967837557,1170627589,-154992639,134496774,116794741,1946223689,1685534,-956037469]},{"sector":5,"length":512,"data":[262662,67552768,113704708,-402652155,645926569,-2130836407,-268156122,-1559983199,-1985936303,72590084,-1593511448,104399975,443745369,178424,-956037469,262662,84329984,113639428,-385940476,1738608271,1493580036,-164728316,134497030,512431220,1206387520,88467467,-167464472,134497030,703072117,-351374848,1075743514,187492355,1929401832,1208415758,125108484,54533771,-167044632,134496774,283640692,15254277,1124529666,359925764,71503488,-3098367,1912739560,11200546,-352189976,1393462241,1125023748,15204868,-401837566,512426132,-672660672,-1023350006,71503488,1125023748,-1813511932,-2122681855,-16492226,-1960741105,-402371314,1769079251,-402626584,1634862255,71501558,-1947438078,-402440162,1374358174,-385888071,1232208307,-402634776,-68681314,1124529667,796133380,84174753,104402943,-596442021,84174753,104399168,276563035,721705889,-1190893818,-503906288,-1007957877,1912888040,-389551348,91422532,1929662184,1342620416,-1912316511,73900480,73074233,954730355,-345738748,1107752683,1584726532,443942,1637941248,61023748,73244928,50618787,-1559992570,-1557789603,1738604545,1527130372,1527134468,-955878652,285446,49848320,369190,356944446,565798,637765280,637538722,1181382,899386,-1088522611,-1527578605,-385836311,116785295,1946223683,1124529686,393544196,71501558,639137028,1734,639036161,1734]},{"sector":6,"length":512,"data":[638511872,1734,637987587,1734,75866370,631590,637831073,-1593832541,-1557789559,-1952382963,262350340,59154432,1155622,302433830,230242816,76398080,-218098753,73507236,238374,637816737,-402651485,1570833193,27469316,49848320,369190,637830304,-352319326,1208909832,-1930952444,-1022928884,76363405,-1191116358,12255232,-16640,-848559944,-1559662047,117375808,149619817,71831168,207742977,1363051459,242548740,72564355,-2146994224,-150715610,243271147,-1022884797,688148385,-2096868602,282910,1068768963,54533771,73209483,73864707,-768353650,1914642893,1958820623,1125023749,-1544027644,149619791,71831168,201975810,1107752643,460587268,71444096,-850479874,208903201,44187264,-972721151,16841222,-1274745955,-1021194929,71436022,-1173785599,243991291,65733693,-402362438,125042627,71437952,-970921212,16949766,16400000,-972720895,64006,-167750936,537149958,645973620,-1006959550,71436022,-1173785599,243991324,48956479,-2065115765,-2146995201,67387918,-163698965,1947211078,2122333710,125054494,71437952,-2147095776,-553369050,71436022,-2134805472,-83607002,1258747587,393543940,72025846,-166693624,33835782,116789365,1963983947,-401347824,359792669,585689579,-351374848,2812137,243271538,-350223294,1109819397,-154935548,537166854,-336067724,-1950091007,990152462,1929444366,32241923,230278136]},{"sector":7,"length":512,"data":[-1925804800,37601028,915252467,378340380,1418265082,73174018,17188038,268911814,541894,607430,69678733,37557901,-1946004343,1153827932,1153827334,1153830919,1153826824,915210249,1048577052,1946157816,-1207571710,65732641,-1560272200,113705990,132098,67372742,84330239,1256718596,448286730,67543808,67241671,113639424,-956365820,263430,1477062888,1706348682,567092144,20778354,1023966976,108265472,-385553416,-1007026332,1107752530,91488772,-352030790,-1261073662,1512164634,-1489076029,175439874,44500678,-1475951012,116785154,1963000906,1258747399,91490308,-352148038,1107752463,91492356,-352109126,508988675,567098292,243271795,-400554936,516098563,1048583942,1962935176,-2012822006,113662979,-1174404215,1001653126,-1021369907,1048793170,1962935401,-45029348,-1048327885,-1312716017,-1545022716,50660451,73900800,1705238739,1126596612,1738667780,1527134468,-1591184892,103482459,280560743,971110144,1979994390,1125023751,233506820,104401781,91620435,71503488,-2147095800,134497038,1371757144,73207435,73469577,-388823887,1728447296,1560674564,-1592888828,103482453,91620445,-352035933,1527170822,1493172228,503717571,1225687047,-1591344892,-661781417,958814222,1946444038,-13113243,-2144464781,17866302,-970040459,17866502,116806635,1947205640,646588007,641205209,1198915589,59129485,1259149,-1992392666,74776579,49020848]},{"sector":8,"length":512,"data":[350772400,38529031,-653853146,95545347,-661905806,1627797798,638153988,71437952,13035840,73358,-655778837,12052736,-1929332759,-402422210,-152567558,38856710,-653328858,-8525565,1109819430,-165232892,268714758,-2144974987,281662,-2144984972,279614,-2144987020,280126,1048588149,1946157056,4096086,1333003008,-970565141,-16497658,1174849062,-1813512188,177399810,-970531726,-16497146,1912807400,77850698,1048594546,1946157056,4096007,661979904,-14775514,82176003,-400620002,-400620306,-2144993130,-284933338,637557992,71567046,113649152,-1946155963,104408792,175375457,73358,-369167383,-165218463,134499078,-2014837900,116794880,1963983944,116795114,1971323976,244066018,-1591344031,-1557789609,-1591344035,-1557789607,520553563,71960310,-402426879,650378647,43779839,-14285451,-1023238650,1258747430,460653572,1107752486,326385668,-1173770264,1001653242,1515659725,567098036,-1022779416,-599883738,141885443,-348225498,326369283,-1190556696,915210253,1049428541,-1527578605,-1022788632,1208415782,276070404,958847116,1946441478,237906,73507622,72851750,-1914120050,134673920,1265897472,-2061071834,86390787,-1926072832,-1929166274,637539126,54869632,-1341885184,-1341985793,89253980,-2063139290,651725827,73467449,512624244,-1091895295,-352302104,1111395630,88860675,-2062615002,-2136216829,62,1048577908,1963130880,1501187]},{"sector":9,"length":512,"data":[958847116,1946444038,18779654,646900480,71962240,378389252,1135869971,567083184,28328884,-840965757,-907492575,1144946696,175439875,54789830,1158071900,1119485955,-851725309,-2146929887,537151502,-402214168,650315940,72025846,-1927711472,-1929250242,637539126,64568960,-1341885184,-1341985793,77981788,38420109,1259149,-1729560656,-1178586620,-1359871936,-1436766129,-1012219854,1258747430,796200964,-1105263074,-88145414,76539905,1374162803,-972721664,65732612,-352320058,-650215407,175440131,-967837557,1170627589,505348097,1253973766,38452994,-402366232,259195997,1912610792,312837,96863211,-2146309376,17029438,-125105547,1543882319,83398,1448133407,-402355464,74646632,-185907642,275923260,209148476,1006716042,1476752698,48973382,-1017618695,230229534,322342144,1027509504,648344322,64765568,640578560,71829238,-1928629184,-1929374922,-402400194,-1444413109,899335,64763533,1261197,11576563,2138662,-351824920,1048585798,1946158059,14805016,1208415782,192167940,1259149,37568141,-352251160,116794918,1950352456,-1205926370,111345684,33998596,-973078524,-16514042,67438278,87418880,653566185,170204812,637538744,118106019,-2144943329,280382,-2144986251,281662,-2144989068,279870,-165278859,268716806,-68680843,113649152,-1207958457,45837312,47360,-1107225926,-4259823,1914818047,-6085105,1435651]},{"sector":10,"length":512,"data":[1125023782,216731652,-2145450466,67389454,520417000,1048585923,1962935260,1048585736,1946158059,-1193768149,567100416,8438519,520494708,-1560275272,113705990,1026,67372742,84330239,-1863843836,-201594620,503717571,109979142,1824456960,1162752,11545012,-1105255987,1824457707,196691712,-108790784,-1408470016,58015548,-1442714809,133163849,-1912597569,-1107230690,-398065556,520553233,11599043,40822871,106158475,1599473438,1642594480,1599801090,662034747,-108812557,-352160768,-1205926370,111345684,33998596,-973078524,-16514042,67438278,67758080,-1007454999,-1927346658,-1929110474,-1996359146,1552679508,105170436,121947649,138724880,155502080,657886464,1024888068,39094530,-972792692,-972945852,-972028092,-973076412,-1929377468,637803574,64568960,-1207601920,65732638,-1560272968,113705990,132098,67372742,84330239,2062024708,-1262280957,512435776,-1960442881,-1962646250,-855636466,990409249,1962935814,-398595309,243271034,-402127800,-1796733556,92727299,-100219354,102630400,1292319,-956037469,262662,67552768,113704708,-402652155,243270475,528483400,-117095960,-1336429373,151948033,186026752,-1021195008,74006147,-16484864,-1274779378,-1021194946,567099828,113651395,-1275064162,1161785,57811405,-402611223,963772577,642915846,16785038,567095220,-1275035462,1512164634,440607,567103156,-336002190,113651207,-134147938]},{"sector":11,"length":512,"data":[520494748,448058251,-1658904115,-345541881,1377699371,2002470,-852511743,8436257,567089844,280567642,-850480128,102669345,-1261204705,522308890,980617117,-972769304,67172870,71829238,-1207274112,243269642,-351271864,1292291,-1559814650,113705990,1026,67372742,84330239,1827143684,-2115500286,1355020548,-1269673645,378152502,567083684,1946221443,132904963,1208909862,1526300676,-1017619623,1183123190,-2090175104,171070,1048798069,1962934942,-1572962212,1433731074,16778894,-1107272513,699663099,567083184,-1090244632,1555956285,-756529664,-1927346688,-1090249674,2089353789,73174018,410822,268911814,541894,607430,-1560275016,113705990,66562,67372742,84330239,-1293418492,-1946369279,8436191,727166706,1607437307,-1336911933,-1382400,-12822449,-341179532,-1431549695,1962949697,1472421881,-4260778,-1977157377,2811909,1195836531,11596779,1326150830,1974361264,1314805507,-2080840725,58064894,638118905,-1962933050,1593327814,1444856671,74268291,1343321344,-849149768,914957857,-1943665557,1476685086,1798751526,3965700,70914420,1144653938,-117213439,-964491541,-118822142,1472405342,-2085828301,813107961,1929968003,1965046804,505868,-268189397,-352319303,-348018174,1965046805,768261,-108851989,1342534920,1487548080,-890551894,1604976816,-854674237,243279393,-1023278006,119414278,1241970214,225707012,-1274981190,639749435]},{"sector":12,"length":512,"data":[71968384,-1022943237,1241970214,91521028,-852623176,116794913,1946289226,378152493,-889323262,654293736,637707168,16909882,-165277324,33835526,62523252,-851725311,-1173886175,1001652483,-165273139,67389958,1421477748,-851725311,116794913,1946682442,27769351,567098292,1048585923,1979712513,116794899,1963197515,1048585739,1962934946,124931,59161283,567098292,-1542026714,-1992913662,-850938877,66763297,567098292,-1274837318,-1088303814,-2031615098,251537150,-2144992255,262462,1405345655,-1591324079,29033478,244000256,-1977220094,637797430,67442314,1944106472,1532582400,1364414659,111224402,178948,34507558,915023364,-1977220092,-402389738,7594130,1482381658,1397753539,-1677255087,-1151749114,567083008,113649159,637796602,71829238,639792385,71829238,639792386,71829238,639792388,71829238,641955080,71829238,-348097248,16771198,-352285976,16246902,-352288024,146798,414719861,111355392,113714692,1026,67552806,-970522876,263430,-335582488,5892170,1424508395,1346431744,68957837,44373645,-1946004343,1153827932,1153827078,1153830919,1153826824,548929545,111355392,113714692,66562,67552806,-970522876,263430,1493115624,-385871128,-471208311,113649390,-1660944134,123231065,87947459,1026257920,729022468,1946165053,2112811,557656948,1026257920,729022467,1946157629,4275499,1379731572,-114920448]},{"sector":13,"length":512,"data":[230211051,-1205736704,485163022,-352317512,1095703,297276139,-1207047424,149618706,-352315464,1619971,67543846,33998630,637534212,67372742,113649407,-402652155,113507995,-1090052528,-1108868443,44416764,-217974081,899492,-1090220610,-1527578051,68957837,33166989,-1946004343,1153827932,1153827078,1153830919,1153826824,915210249,378340391,1418265149,73174018,33965254,268911814,541894,607430,-130121690,343212034,69678733,17188038,637542584,67241671,250281985,68957837,637542328,67241671,-1557790718,-970587130,-16514042,84330022,82313220,-1022928642,-14775514,520494595,653968872,170204814,655788838,-87496694,102679327,113444639,-1207493040,-1557790684,-953809914,262662,113649152,654246916,67438278,-37623808,-706214056,639550463,72105600,-385649408,12058895,1161795,57876941,-1946090775,1162202,-1207778429,-661782496,71632582,473337089,38061828,1552679498,105170436,121947649,138724880,155502080,657886464,39618820,-972794743,-972945852,-972028092,-973076412,-1929377468,-956031946,621020678,33998592,-973078012,-16514042,67438278,-46274560,146332467,1008848140,1022850048,-1975028723,-1194292520,567108896,-1877591506,772699147,194057786,976095092,1963692566,1408994005,12826654,-2010195826,-1274310882,179008,-1174404679,567085967,-970047308,134975238,1528766925,-8344341,-1968737280,1696643287]},{"sector":14,"length":512,"data":[-1202576947,-1557790694,-953809914,262662,113649152,654246916,67438278,-54663168,372911706,359926672,-1860814290,638678027,72091334,113649152,-352254905,32241664,784539641,627195520,-1674087168,-1709244626,1946237968,1946172480,2144572,-1047602802,1012488537,1007514626,638153731,16385734,-338171643,1644625454,113649189,-385548038,549055513,-1898344960,1499027905,-100219354,334038272,363843564,917682,15792,196741748,-2062647296,971735110,-401968408,-236451204,35031561,70683905,166782977,-402467864,1048576134,1946157307,-159585534,-2142862074,-588771467,166520841,44242570,-169293058,-2063141126,1584693318,1948514947,66749212,-92072076,33998613,-2097151996,58000122,-1996483142,-352057834,102140200,33998596,-1962934012,-1924642026,-1996219338,1552679508,105170436,121947648,138724880,155502080,84329984,113639428,-385940476,113703828,-117178118,-1007156757,1930677992,-2063141309,813006918,1183125120,81280,80087157,1423872,54336747,-972524288,599392260,1024453376,74776578,116117643,-1174403898,183173123,1183123190,-1174178752,619380745,16465536,-399477504,116787390,1971340933,2418707,-402588184,116786239,1971340933,20441091,1049428144,1122501288,-1472819719,1161727234,-1012600061,72025846,1344894080,-1560279624,113705990,1026,67438278,67552769,-941031676,1751290,-972814685,263430,1492826600,1424067]},{"sector":15,"length":512,"data":[1183125120,-2128690304,1967683579,918892104,2088779339,209009153,1352804013,-448885432,82553668,1155874445,2000584742,594871624,-337956013,-1398127870,-109772740,1526809064,-2144991118,21398798,112855531,243279360,-343914875,2147189073,776500552,1045640901,973175936,648875125,-1924640862,-1421527746,1049429227,-2144975563,88637246,861086581,1124264923,3976362,-202835595,141712128,-2062647258,166396486,637535930,1183125120,-402396288,-1021378173,-167305722,21398790,11539572,1155874445,-1913108248,-1924864714,-402523586,116785181,1946306181,-1929334764,-398117570,915273773,1049445685,48759370,-54327552,1946220931,1235921925,-1916537109,-1929250242,-167642570,71730694,1625818484,-401020160,275969005,1946172544,1547468814,2088765045,57933825,-1929368088,-1929229762,-167622090,138839558,887620980,-401020160,275968961,1946172544,1547468814,2088765045,57933825,-1023409688,-396951376,1231026101,-2133226679,141843513,1543586246,147910,-137828157,-1964503181,-972721421,65732612,-352320058,1341688586,-967047738,-1023409851,-2141825197,24468540,1073447755,-336067713,1600059649,-972635301,17058822,16778894,738627110,-499741440,571718,1912625896,4319254,642191218,-551287414,91576636,72091334,-1899821312,637599750,1443470,992395404,1962939910,-1174457369,1672482816,1974399740,1031874267,-176850833,41780006,-338856704,1031808720,638350336,1949252992]}],[{"sector":1,"length":512,"data":[-236239101,-117314568,855585731,1031808704,1360294912,1587999574,1359574105,-226492231,-370452050,-117314568,-700546621,1967702344,-519649770,803733830,-83442175,113639680,-134217478,-2130632471,776520955,1050033803,82379636,2105550337,326456065,1189021382,1259241473,-970055676,540961798,637597929,1090616704,-970057099,540958726,72025846,-2147126264,-150713562,72027776,14149889,25002022,773485901,1046873798,1258747424,91488516,72033920,1259241726,-1226242044,2105550336,326455297,1762051630,243277886,-2146433973,134496782,637574377,1157725568,113646709,771835616,1046677190,1259241504,113640452,-2147399969,537152270,-2144962069,1968570749,113651226,-1272955281,1008848212,-1201376000,567094785,71962240,643361664,1493269888,-970058891,540964102,2013709870,113647678,-352320436,2105550398,443886849,41779238,773027161,1047856838,113651232,-970965384,17058822,243277291,780141643,1047660230,-351212768,3467278,72027776,113651202,-1021297019,67503815,113705260,1026,67372742,84330239,870842372,104759799,1946238724,101121798,-1007686908,1929393384,-2062647284,243286086,-343914875,-1600049627,129772862,-523041615,-1976633806,54436374,-742261054,787886816,1050875530,-56376829,-1262225408,1361169706,774616146,1050676875,-1573483986,378154558,567099043,-1073063590,-133859847,567094196,-167305533,21398790,116789621,1963083397,1423882]},{"sector":2,"length":512,"data":[1183125120,-1972311168,-1929207018,-402565322,243270814,-167508918,21398790,915212661,-1947729240,-1924076796,-1270553322,1914817851,-1558803955,-1472819966,74770434,512571883,378356965,-135789829,-451506942,-851725244,-2145619423,195390,378148212,915210915,1273496232,-2045870076,-253230010,-1173820671,243269639,-159365499,-2142862074,1676345972,71960310,-1928825855,-1274981354,-1977496261,-1929206762,-402544074,243270678,-167246774,38176006,915212661,65536905,-1925911804,-1270532842,1931595067,4777987,1183123190,-1977584256,-1929206762,-402421450,1048576994,1946175111,899342,1183266445,64765581,-151256856,-2142862074,-1847060107,-2063141374,259358790,71960310,-1928825855,-1274895082,-1021194949,1161115277,-167757080,-2142862074,149424757,890670336,8644677,1448606915,92993631,1945386216,-347650300,-1375686412,-1336996236,141864540,-1371885489,-504692108,1600018255,-273946429,1962949760,772064777,312902,1015040235,1178826076,-402355464,963834881,1968979072,506378,1183125120,-2145326208,460664380,-402355642,309523429,1949187200,1547468805,129632372,-2062647296,1392017478,59119245,567098292,1388574810,44308106,837339902,1015044852,-2146929664,141900348,-402651962,686489643,-1275067194,1914817851,1543816715,-388592826,-622067889,567097780,117311090,-521468927,-2147480902,-2142862066,-851725117,-352161247,891194735,-2028565179,21555270,1183268480,-352160512]},{"sector":3,"length":512,"data":[699663963,1183266445,16778894,-1342149441,119655680,930414652,-1962899480,994486550,1967564566,-2028565213,-851856314,-32542175,-1274806010,-970863301,4622086,179964139,-2062647296,99319878,1183190656,-972166392,4622086,-2147356184,138839566,1023457475,49878669,963781069,12114059,-148779708,1946190018,213405736,67543808,67241671,113639424,-973077499,-16514042,1492404200,16385734,-2062647292,-1477869498,-851528477,-1185889503,915210253,1049446023,854083222,498605818,-385894912,-2136091769,41230588,-1557790540,-2136127835,41230588,-1557790540,-1927330137,-1929110474,-1991862762,1552679508,105170436,121947649,138724880,155502080,309248,-956037469,17039878,67552768,113704708,-402586619,-1448873046,1751110,-956037469,262662,84329984,-1813512188,1696708851,1185486477,-855637319,1185521953,1185220155,104532084,41174695,-1017604629,-404161653,-1961069583,-307762953,1946172544,230249993,-201684224,80109220,21284398,-1189418240,-259325939,-1527514485,-2098662517,3965165,80086901,21284444,119456512,-167740952,17058310,-2051051148,-402608059,-779357839,-398064193,-784600727,96361842,1166393158,-2080617911,1198850297,1962998403,1258747423,125116420,72025846,-1173720060,243269640,-343914875,1208909829,569065476,72025846,-167283424,67390214,1031803764,-2147060644,1969028989,571912,1183125120,-1408701568,1225029038,-1012077750,-2034346154]},{"sector":4,"length":512,"data":[1166393091,567107764,1933936063,59162371,44416599,-1270479425,-1105080992,57886213,1594009022,1912678376,1242464261,182976772,-2147126016,17058318,-1497145761,-2134703756,1962999676,-202652927,2002462,7126529,-348222138,768259,-1021336333,1011372192,-1610255072,48955650,-1549647828,-1572862974,-106823003,54698498,-1610525534,540821583,44041589,738388737,44343872,44238392,243271029,67175498,59155008,-1576805726,-1482554374,431276801,-1057087027,-1023343966,567101364,512427715,-1014103808,172326,-1560199123,-1022950315,237334712,1561758042,-391845884,-1559994975,1537279063,20987140,-1202707597,111345666,33998596,-973078524,263430,67372742,-237311745,-100219304,-1880554496,72983521,1930428221,1095949,539877879,72196866,113706731,-3144627,521019075,-1171971144,567087496,-1274625249,-853233611,512306721,-1943138150,118529030,-1273033186,-1172000731,567092495,1448592159,-1509526106,-336067723,1600059649,-49887293,-1996488634,-1991801074,-1991800538,-62420170,1190137481,1190266567,113704960,18181,1190528711,113704960,1566263234,1204029127,113720444,725501894,1204291271,1239956285,-1206684920,643039231,975576459,-1207733489,-379912190,914948364,1465075455,119442773,-33098169,1047863366,148170924,1038628722,-399346680,376768622,1191053046,-402295520,585828360,1191053046,1310422081,126359787,91569468,1191054976,-806862079,-1396083960]},{"sector":5,"length":512,"data":[-347928696,914968259,130434804,52332800,495658567,1191655053,1949252736,574390321,116787060,1963017982,1200236112,971256321,1934028806,1190174993,1128521937,-1960388605,8448031,113731307,83698,-1977196821,-466484921,65065280,260712152,-921965262,1396903796,-400585946,1935343803,-498908353,-234436622,-352320698,1200236083,1088696833,-670834479,839354918,1088475620,-1977165821,200094223,1125086409,529213011,1526748392,1128467059,113767138,280306,-1956946083,-1589186546,915097330,378226420,512378614,-1007139080,126559824,1962934953,-267976956,3964998,27859061,-955747072,38203910,1343154944,-4979792,1476433128,283640811,-104638463,642864579,839405450,1959332845,158305549,1929592552,911368,-335939870,86935813,1566177351,2122327747,57933824,1173809989,-32603965,-924315578,-2143128833,-280560090,1191289168,100779563,-1957148929,-2142830282,594870332,989822080,113707125,607986,-2094653717,410255423,17299238,-955157248,38203910,-402003200,-336068461,183236877,-1274826672,256255,1472460888,75467558,1190542985,637896742,1342268808,642188705,1476543881,175440188,72714534,105744678,37509611,-1993996683,1340802133,-395049156,-462157764,108332604,72714278,71056875,-6222219,-1993981882,-1943665595,736822877,74811686,106794022,1207314000,74711298,166397104,38270502,-1341819902,16705538,1207314008,57937922,1593889000]},{"sector":6,"length":512,"data":[-888748349,642777159,-1073018997,1397757813,113727314,607986,61931444,1610572008,-346530982,268478764,113709172,18162,-2096975896,155644478,11081589,-954895352,4649478,61794304,1190280835,-352160503,-1872303357,1954545833,-234436848,-402653114,1048772888,1963542258,1073785168,113709172,18162,-2097093656,155644478,11090805,-955026431,4649478,77850624,-2096817176,155644478,11084661,-955223038,4649478,76277760,1190280835,-1458670327,158605312,1190266567,1743257600,-885096447,225771847,1190280835,-955878144,155644422,1354979328,168069718,1008235712,-2146732742,1962934652,312837,-471332373,1174500101,1591929670,1381417816,76206218,1912984040,1958742539,780299,32179336,-353679802,1019436634,1007448960,1010987617,608073594,1396370399,1049450246,-92256323,-1929087996,944224318,1343714325,119427665,-1031117388,-1174405189,-4587515,1512164863,1569413209,54889985,-2144582845,123721510,-2142190757,-2142831090,1191061120,1006930685,1007252523,-2147060435,38206990,190534,1364247384,-919382446,-1974218189,1958742532,8841282,-466470542,-489559925,1760088529,-1960021504,-775844902,-388902430,527564891,-774774063,1912623848,332595990,4843720,-721220238,-402599549,57802815,1539107654,1536173547,1191053046,-150309886,-2083325999,-779943486,2005607936,76162566,125108284,-4980304,-946861077,155644422,-1274826752,-41686785,1482250846]},{"sector":7,"length":512,"data":[116825283,1963083518,-1648124670,-1007156624,809288697,960235634,808191095,-1007041544,1465013072,109021990,168135206,-1274776128,-955716609,155644422,-1325419520,-46143485,1482381919,1381322947,-1979534762,75294724,-1159185806,-33097986,225708102,510999868,25067558,-345082624,-33098222,242487366,175454780,8290342,1180333312,975592171,477429830,1349828618,317408582,4602406,-1975106699,975586564,963969094,-1410644666,1191053046,638547008,537020407,638022656,32384,-148495756,1946161159,1966750744,2122327561,225771520,3935979,-2144991371,1949958270,99350787,1191261833,1566203640,1364247384,1448302162,1577098472,1202718407,113704960,18354,1202980551,-1578631168,-1558810112,-620083280,-1779951500,-1553632768,-620083278,-1981281164,-1554419200,-620083276,512447093,-75282546,-1591774206,-469088336,-930463115,172470945,-1975945756,-1273590808,33260359,-377093515,378214123,-1298053200,1977879111,-1580692961,-469088332,-393603467,1935997571,1824686340,-1268884729,-402149121,267123725,-4956581,48759728,-234436612,1509951814,-1916577703,-2092462538,41221948,1377701867,-1205920176,-695519232,1515725261,1381090079,76204339,997507082,1200438912,-2146470912,74777083,812923452,745811516,758910187,792471156,775692916,1105731188,-1273072898,179998976,199423744,51475922,-1861324095,-1967133882,99350744,32241734,1522633721,1364247385,1448302162,-151025432]},{"sector":8,"length":512,"data":[1577128260,-370670731,-1341733120,-956301241,4698630,-1274624256,-956301241,4699654,-1928935936,28508487,1929345000,1202758483,1433721610,1929341928,1202889543,1232395018,1575486131,-1556516097,-620083276,116797301,1963083517,-197752012,-8617914,-970296020,-953221308,4652294,-49381376,243991110,646662023,915097481,-219592821,-14489352,-1230808974,1977289287,1202757969,1249240074,1190987510,1007186945,1967093516,-155176446,71761414,205261940,201590900,406596722,-796252041,172470945,-1977649692,1203020272,376824842,-1230911350,1977879111,1541966349,-1325419426,-89659384,1583026155,61931444,-939877144,155644422,-1928935936,1499070535,1448133464,172360842,-1963362880,537722436,410284092,460611900,544566588,-29062578,1882988556,1631323764,283838836,1191054976,-2147095804,21429518,16663750,1354979422,1049318999,76171007,292864010,1962956776,-888748512,-966917817,-346095612,80109113,-148480256,1962934535,-234436819,-352320954,-1974052827,1958742532,2811931,1541933940,1191342849,-347715770,1190699754,1191183558,1190411913,-1453826210,158597632,-1325419440,-101980155,1364443992,1203904141,973081017,1124365319,1497496034,1381024603,-1073085302,401094004,-2094370303,1949958524,133637645,494141456,97408,537663349,292708668,225933884,-796237780,112263092,-335961880,-234436858,1509951814,-391330984,376700960,1962955240,-33098220,-294379450,1191053046]},{"sector":9,"length":512,"data":[1309242433,-336001301,-1018234879,1364444152,762580284,695468092,628361788,41779238,857633282,1569335003,79921923,3768358,-919401100,1124698662,1946237478,1022943748,-1017423603,113660243,-2145368328,-548995546,913580092,846465340,829697084,209002556,1965046912,1176547335,518766650,41779238,857174529,1300899529,1959332611,244491,20588099,-119404684,1532567612,1190699715,1191053046,-2147126015,541523470,-353648582,1191653005,427089211,309669692,1200247033,-77666049,76154226,1492867048,-336065045,1966029834,-32604155,-1007140794,-2091690466,4651838,508568949,1431786065,-1896467706,1660991710,-611573299,1560795915,525949535,-1994034088,-1991837386,-1958282466,-1907951306,-2092500194,276037692,141689914,1996571706,99350787,-336902586,526277624,1292289987,-352321464,15654,243866485,914966605,-628406197,-2131963928,64318,116794485,1954563717,451475718,-1927812352,-1958194882,860375862,1292798930,-167647160,1979711293,-1010566972,11670727,1303379977,1329864787,1700143187,1869181810,540418158,1126777640,1920561263,1952999273,943272224,959524145,1293956153,1869767529,1952870259,1919894304,1766596720,1936614755,1293968485,1919251553,543973737,1917853741,1919250543,1864399220,1766662246,1936683619,544499311,543976513,1751607666,1914729332,1919251301,543450486,11665525,531628486,522067740,505356062,203365919,721465856,1329836032,1296259408]},{"sector":10,"length":512,"data":[539972,10748082,50331568,671134208,16756736,-16777216,0,1014783323,993864510,-1308617950,-1342144512,18380,1213603872,20644096,1833460738,1216807752,1220036780,33685504,1984460544,33620040,1216282626,18550,65280,0,65280,0,131073,1215711428,4271881,788546863,1345257549,5451520,788551215,1496252503,1496133376,1048576,1984482304,1143931208,0,1984484352,1060045128,16712448,0,-2080438528,302035456,-20480,-1,-1,12783776,23199744,512,1112671406,-1064507253,234885125,303903,787971,244039822,-108331002,-34108593,-1202674445,-883949516,-661863540,-1898410424,1032128,-1342172999,1202648063,-1014237301,-1077899704,78708751,-789068149,-628299565,74698795,-768878452,-268181293,-947135858,-388771593,-802438516,-1064565645,-522989013,-1030817789,1322289836,1187548077,-31145334,91598908,-341118036,1974615046,-1968901267,1946265794,20102833,512433934,872153092,-930370094,-1031072797,-1064385789,-2080863315,292880383,-501415642,16417267,-2129234704,-351272766,1086360796,-276578162,486614544,-339702200,-1950118942,-1962932162,50334262,33948144,1060096,-1064380274,-100663109,-410265970,784698363,1085550591,-1191181637,-896794602,482007694,-1205744383,567102719,1801675088,1713398885,543517801,1663071081,1970434671,554096,491265234,498671000,818819136]},{"sector":11,"length":512,"pattern":0,"data":[830419286]},{"sector":12,"length":512,"pattern":0,"data":[1030975332,1751607656,1768294925,1030972780,168636466,1935827814,168636733,1717990754,1030976101,168636468,1667331187,809333611,168636460,1769366884,1631413603,1768447034,778921325,225671539,10]},{"sector":13,"length":512,"pattern":0,"data":[1751344448,1718558831,1678380390,1701540719,658809]},{"sector":14,"length":512,"pattern":-151587082,"data":[]},{"sector":15,"length":512,"pattern":-151587082,"data":[]}]]] \ No newline at end of file diff --git a/disks/pc/dos/microsoft/6.22/manifest.xml b/disks/pc/dos/microsoft/6.22/manifest.xml index 3e0d0f1e3..3aaeadfe1 100644 --- a/disks/pc/dos/microsoft/6.22/manifest.xml +++ b/disks/pc/dos/microsoft/6.22/manifest.xml @@ -1,5 +1,5 @@ - + MS-DOS 6.22 @@ -7,28 +7,31 @@ Operating System Microsoft - + + MS-DOS 6.22 (1.2M Boot) + + MS-DOS 6.22 (1.2M Disk 1) - + MS-DOS 6.22 (1.2M Disk 2) - + MS-DOS 6.22 (1.2M Disk 3) - + MS-DOS 6.22 (1.2M Disk 4) - + MS-DOS 6.22 (1.44M Disk 1) - + MS-DOS 6.22 (1.44M Disk 2) - + MS-DOS 6.22 (1.44M Disk 3) - + MS-DOS 6.22 (1.44M Supp Disk) diff --git a/disks/pc/empty/manifest.xml b/disks/pc/empty/manifest.xml index b6fcc213f..372dc21ea 100644 --- a/disks/pc/empty/manifest.xml +++ b/disks/pc/empty/manifest.xml @@ -1,5 +1,5 @@ - + Empty Diskettes diff --git a/disks/pc/games/id/wolf3d/manifest.xml b/disks/pc/games/id/wolf3d/manifest.xml index a9dc9478a..c71809aa8 100644 --- a/disks/pc/games/id/wolf3d/manifest.xml +++ b/disks/pc/games/id/wolf3d/manifest.xml @@ -1,5 +1,5 @@ - + Wolfenstein 3D diff --git a/disks/pc/games/infocom/disks.xml b/disks/pc/games/infocom/disks.xml index 53ce62352..05f0ed611 100644 --- a/disks/pc/games/infocom/disks.xml +++ b/disks/pc/games/infocom/disks.xml @@ -2,7 +2,6 @@ - None diff --git a/disks/pc/games/infocom/hhiker/manifest.xml b/disks/pc/games/infocom/hhiker/manifest.xml index 031ad0ff6..5fd3dc7b7 100644 --- a/disks/pc/games/infocom/hhiker/manifest.xml +++ b/disks/pc/games/infocom/hhiker/manifest.xml @@ -1,5 +1,5 @@ - + The Hitchhiker's Guide to the Galaxy diff --git a/disks/pc/games/infocom/machine.xml b/disks/pc/games/infocom/machine.xml index 97bb111d4..c41cc94fe 100644 --- a/disks/pc/games/infocom/machine.xml +++ b/disks/pc/games/infocom/machine.xml @@ -1,5 +1,5 @@ - + IBM PC Model 5150 (CGA, 64K) diff --git a/disks/pc/games/infocom/planet/manifest.xml b/disks/pc/games/infocom/planet/manifest.xml index 3808c2913..7cec373a6 100644 --- a/disks/pc/games/infocom/planet/manifest.xml +++ b/disks/pc/games/infocom/planet/manifest.xml @@ -1,5 +1,5 @@ - + Planetfall diff --git a/disks/pc/games/infocom/zork1/debugger/machine.xml b/disks/pc/games/infocom/zork1/debugger/machine.xml index d419bb9ab..a4c8af928 100644 --- a/disks/pc/games/infocom/zork1/debugger/machine.xml +++ b/disks/pc/games/infocom/zork1/debugger/machine.xml @@ -1,5 +1,5 @@ - + Zork I (IBM PC Model 5150) diff --git a/disks/pc/games/infocom/zork1/manifest.xml b/disks/pc/games/infocom/zork1/manifest.xml index 1716b9c64..f4c601d7c 100644 --- a/disks/pc/games/infocom/zork1/manifest.xml +++ b/disks/pc/games/infocom/zork1/manifest.xml @@ -1,5 +1,5 @@ - + Zork I diff --git a/disks/pc/games/infocom/zork2/manifest.xml b/disks/pc/games/infocom/zork2/manifest.xml index b2ff1d87e..f9aa6c3d4 100644 --- a/disks/pc/games/infocom/zork2/manifest.xml +++ b/disks/pc/games/infocom/zork2/manifest.xml @@ -1,5 +1,5 @@ - + Zork II diff --git a/disks/pc/games/infocom/zork3/manifest.xml b/disks/pc/games/infocom/zork3/manifest.xml index a918d75c2..856184d06 100644 --- a/disks/pc/games/infocom/zork3/manifest.xml +++ b/disks/pc/games/infocom/zork3/manifest.xml @@ -1,5 +1,5 @@ - + Zork III diff --git a/disks/pc/games/microsoft/adventure/machine.xml b/disks/pc/games/microsoft/adventure/machine.xml index a80403262..6223f1b3e 100644 --- a/disks/pc/games/microsoft/adventure/machine.xml +++ b/disks/pc/games/microsoft/adventure/machine.xml @@ -1,5 +1,5 @@ - + IBM PC (Model 5150) running Microsoft Adventure diff --git a/disks/pc/games/microsoft/adventure/manifest.xml b/disks/pc/games/microsoft/adventure/manifest.xml index 511557aab..d4693131a 100644 --- a/disks/pc/games/microsoft/adventure/manifest.xml +++ b/disks/pc/games/microsoft/adventure/manifest.xml @@ -1,5 +1,5 @@ - + Microsoft Adventure 1.00 diff --git a/disks/pc/games/microsoft/flightsim/1982/manifest.xml b/disks/pc/games/microsoft/flightsim/1982/manifest.xml index 94bab877b..607293c31 100644 --- a/disks/pc/games/microsoft/flightsim/1982/manifest.xml +++ b/disks/pc/games/microsoft/flightsim/1982/manifest.xml @@ -1,5 +1,5 @@ - + Microsoft Flight Simulator diff --git a/disks/pc/games/microsoft/flightsim/1984/manifest.xml b/disks/pc/games/microsoft/flightsim/1984/manifest.xml index b10af2a85..4764962fb 100644 --- a/disks/pc/games/microsoft/flightsim/1984/manifest.xml +++ b/disks/pc/games/microsoft/flightsim/1984/manifest.xml @@ -1,5 +1,5 @@ - + Microsoft Flight Simulator diff --git a/disks/pc/library.xml b/disks/pc/library.xml index 0313ac268..5dc8992c7 100644 --- a/disks/pc/library.xml +++ b/disks/pc/library.xml @@ -2,7 +2,6 @@ - None @@ -69,6 +68,7 @@ + diff --git a/disks/pc/minix/1.1/manifest.xml b/disks/pc/minix/1.1/manifest.xml index 5a5251c72..ec1026c7c 100644 --- a/disks/pc/minix/1.1/manifest.xml +++ b/disks/pc/minix/1.1/manifest.xml @@ -1,5 +1,5 @@ - + MINIX 1.1 diff --git a/disks/pc/os2/ibm/1.0/manifest.xml b/disks/pc/os2/ibm/1.0/manifest.xml index ec7ca7ec8..ceda785ec 100644 --- a/disks/pc/os2/ibm/1.0/manifest.xml +++ b/disks/pc/os2/ibm/1.0/manifest.xml @@ -1,5 +1,5 @@ - + IBM OS/2 1.0 diff --git a/disks/pc/os2/ibm/1.1/manifest.xml b/disks/pc/os2/ibm/1.1/manifest.xml index b19af9757..4eb25d030 100644 --- a/disks/pc/os2/ibm/1.1/manifest.xml +++ b/disks/pc/os2/ibm/1.1/manifest.xml @@ -1,5 +1,5 @@ - + IBM OS/2 1.1 diff --git a/disks/pc/os2/ibm/1.3/manifest.xml b/disks/pc/os2/ibm/1.3/manifest.xml index d74e81be5..f56b56c63 100644 --- a/disks/pc/os2/ibm/1.3/manifest.xml +++ b/disks/pc/os2/ibm/1.3/manifest.xml @@ -1,5 +1,5 @@ - + IBM OS/2 1.3 diff --git a/disks/pc/os2/microsoft/1.0/manifest.xml b/disks/pc/os2/microsoft/1.0/manifest.xml index c0b66615b..8c24b44c1 100644 --- a/disks/pc/os2/microsoft/1.0/manifest.xml +++ b/disks/pc/os2/microsoft/1.0/manifest.xml @@ -1,5 +1,5 @@ - + MS OS/2 1.0 diff --git a/disks/pc/os2/misc/manifest.xml b/disks/pc/os2/misc/manifest.xml index 0c931f5c8..f1d3eeb73 100644 --- a/disks/pc/os2/misc/manifest.xml +++ b/disks/pc/os2/misc/manifest.xml @@ -1,5 +1,5 @@ - + OS/2 Prototype Disks diff --git a/disks/pc/samples.xml b/disks/pc/samples.xml index b1a0d2cf6..11db6b465 100644 --- a/disks/pc/samples.xml +++ b/disks/pc/samples.xml @@ -2,7 +2,6 @@ - None diff --git a/disks/pc/tools/borland/pascal/3.00b/manifest.xml b/disks/pc/tools/borland/pascal/3.00b/manifest.xml index 53d7fe9db..7d88ff00b 100644 --- a/disks/pc/tools/borland/pascal/3.00b/manifest.xml +++ b/disks/pc/tools/borland/pascal/3.00b/manifest.xml @@ -1,5 +1,5 @@ - + Borland Turbo Pascal diff --git a/disks/pc/tools/borland/pascal/3.01a/manifest.xml b/disks/pc/tools/borland/pascal/3.01a/manifest.xml index 44b3347c1..e8038ecac 100644 --- a/disks/pc/tools/borland/pascal/3.01a/manifest.xml +++ b/disks/pc/tools/borland/pascal/3.01a/manifest.xml @@ -1,5 +1,5 @@ - + Borland Turbo Pascal diff --git a/disks/pc/tools/ibm/bascom/1.00/README.md b/disks/pc/tools/ibm/bascom/1.00/README.md index fc29aea28..5c2a929e1 100644 --- a/disks/pc/tools/ibm/bascom/1.00/README.md +++ b/disks/pc/tools/ibm/bascom/1.00/README.md @@ -6,3 +6,40 @@ permalink: /disks/pc/tools/ibm/bascom/1.00/ IBM BASIC Compiler 1.00 --- + +### Directory of IBM BASIC Compiler 1.00 (Disk 1) + + Volume in drive A has no label + + Directory of A:\ + + BASCOM COM 41600 05-07-82 12:00p + LINK EXE 41856 05-07-82 12:00p + DEMO BAS 7424 05-07-82 12:00p + SAMPLE BAT 127 05-07-82 12:00p + CREATE BAT 86 05-07-82 12:00p + COM BAT 410 05-07-82 12:00p + EASY BAT 546 05-07-82 12:00p + BIG BAT 783 05-07-82 12:00p + SUBRT BAT 862 05-07-82 12:00p + 9 file(s) 93694 bytes + + Total files listed: + 9 file(s) 93694 bytes + 64000 bytes free + +### Directory of IBM BASIC Compiler 1.00 (Disk 2) + + Volume in drive A has no label + + Directory of A:\ + + BASCOM LIB 103936 05-07-82 12:00p + BASRUN EXE 31744 05-07-82 12:00p + BASRUN LIB 3072 05-07-82 12:00p + IBMCOM OBJ 3200 05-07-82 12:00p + 4 file(s) 141952 bytes + + Total files listed: + 4 file(s) 141952 bytes + 17920 bytes free diff --git a/disks/pc/tools/ibm/bascom/1.00/manifest.xml b/disks/pc/tools/ibm/bascom/1.00/manifest.xml index e8567f562..48e830105 100644 --- a/disks/pc/tools/ibm/bascom/1.00/manifest.xml +++ b/disks/pc/tools/ibm/bascom/1.00/manifest.xml @@ -1,5 +1,5 @@ - + IBM BASIC Compiler 1.00 diff --git a/disks/pc/tools/microsoft/basic/manifest.xml b/disks/pc/tools/microsoft/basic/manifest.xml index d1b9a706a..825605816 100644 --- a/disks/pc/tools/microsoft/basic/manifest.xml +++ b/disks/pc/tools/microsoft/basic/manifest.xml @@ -1,5 +1,5 @@ - + MS BASIC diff --git a/disks/pc/tools/microsoft/c/2.03/manifest.xml b/disks/pc/tools/microsoft/c/2.03/manifest.xml index f655d807d..51731af33 100644 --- a/disks/pc/tools/microsoft/c/2.03/manifest.xml +++ b/disks/pc/tools/microsoft/c/2.03/manifest.xml @@ -1,5 +1,5 @@ - + Microsoft C Compiler 2.03 diff --git a/disks/pc/tools/microsoft/c/3.00/manifest.xml b/disks/pc/tools/microsoft/c/3.00/manifest.xml index 0108eac12..da53593d5 100644 --- a/disks/pc/tools/microsoft/c/3.00/manifest.xml +++ b/disks/pc/tools/microsoft/c/3.00/manifest.xml @@ -1,5 +1,5 @@ - + Microsoft C Compiler 3.00 diff --git a/disks/pc/tools/microsoft/c/4.00/manifest.xml b/disks/pc/tools/microsoft/c/4.00/manifest.xml index f99a07dc8..4f05f7474 100644 --- a/disks/pc/tools/microsoft/c/4.00/manifest.xml +++ b/disks/pc/tools/microsoft/c/4.00/manifest.xml @@ -1,5 +1,5 @@ - + Microsoft C Compiler 4.00 diff --git a/disks/pc/tools/microsoft/c/5.00/manifest.xml b/disks/pc/tools/microsoft/c/5.00/manifest.xml index 70c18fdca..f6572a716 100644 --- a/disks/pc/tools/microsoft/c/5.00/manifest.xml +++ b/disks/pc/tools/microsoft/c/5.00/manifest.xml @@ -1,5 +1,5 @@ - + Microsoft C Compiler 5.00 diff --git a/disks/pc/tools/microsoft/c/5.10-os2/manifest.xml b/disks/pc/tools/microsoft/c/5.10-os2/manifest.xml index c35c2587d..d52595eaa 100644 --- a/disks/pc/tools/microsoft/c/5.10-os2/manifest.xml +++ b/disks/pc/tools/microsoft/c/5.10-os2/manifest.xml @@ -1,5 +1,5 @@ - + Microsoft C Compiler 5.10-OS2 diff --git a/disks/pc/tools/microsoft/c/5.10/manifest.xml b/disks/pc/tools/microsoft/c/5.10/manifest.xml index 0ce1871d2..aa7042912 100644 --- a/disks/pc/tools/microsoft/c/5.10/manifest.xml +++ b/disks/pc/tools/microsoft/c/5.10/manifest.xml @@ -1,5 +1,5 @@ - + Microsoft C Compiler 5.10 diff --git a/disks/pc/tools/microsoft/masm/1.00/manifest.xml b/disks/pc/tools/microsoft/masm/1.00/manifest.xml index ccfd02f8c..7f571867f 100644 --- a/disks/pc/tools/microsoft/masm/1.00/manifest.xml +++ b/disks/pc/tools/microsoft/masm/1.00/manifest.xml @@ -1,5 +1,5 @@ - + Microsoft Macro Assembler 1.00 diff --git a/disks/pc/tools/microsoft/masm/3.00/manifest.xml b/disks/pc/tools/microsoft/masm/3.00/manifest.xml index db48b9987..a17433635 100644 --- a/disks/pc/tools/microsoft/masm/3.00/manifest.xml +++ b/disks/pc/tools/microsoft/masm/3.00/manifest.xml @@ -1,5 +1,5 @@ - + Microsoft Macro Assembler 3.00 diff --git a/disks/pc/tools/microsoft/masm/3.01/manifest.xml b/disks/pc/tools/microsoft/masm/3.01/manifest.xml index c2aae1802..b429503b7 100644 --- a/disks/pc/tools/microsoft/masm/3.01/manifest.xml +++ b/disks/pc/tools/microsoft/masm/3.01/manifest.xml @@ -1,5 +1,5 @@ - + Microsoft Macro Assembler 3.01 diff --git a/disks/pc/tools/microsoft/masm/4.00/manifest.xml b/disks/pc/tools/microsoft/masm/4.00/manifest.xml index b77163d97..a619236fa 100644 --- a/disks/pc/tools/microsoft/masm/4.00/manifest.xml +++ b/disks/pc/tools/microsoft/masm/4.00/manifest.xml @@ -1,5 +1,5 @@ - + Microsoft Macro Assembler 4.00 diff --git a/disks/pc/tools/microsoft/masm/5.00/manifest.xml b/disks/pc/tools/microsoft/masm/5.00/manifest.xml index 6514fd1f6..5f08b03e2 100644 --- a/disks/pc/tools/microsoft/masm/5.00/manifest.xml +++ b/disks/pc/tools/microsoft/masm/5.00/manifest.xml @@ -1,5 +1,5 @@ - + Microsoft Macro Assembler 5.00 diff --git a/disks/pc/tools/microsoft/masm/5.10/manifest.xml b/disks/pc/tools/microsoft/masm/5.10/manifest.xml index 072b4191b..cceb48adc 100644 --- a/disks/pc/tools/microsoft/masm/5.10/manifest.xml +++ b/disks/pc/tools/microsoft/masm/5.10/manifest.xml @@ -1,5 +1,5 @@ - + Microsoft Macro Assembler 5.10 diff --git a/disks/pc/tools/microsoft/masm/6.00/manifest.xml b/disks/pc/tools/microsoft/masm/6.00/manifest.xml index 8bc54e313..b1e1597b7 100644 --- a/disks/pc/tools/microsoft/masm/6.00/manifest.xml +++ b/disks/pc/tools/microsoft/masm/6.00/manifest.xml @@ -1,5 +1,5 @@ - + Microsoft Macro Assembler 6.00 diff --git a/disks/pc/tools/microsoft/masm/6.11/manifest.xml b/disks/pc/tools/microsoft/masm/6.11/manifest.xml index 842a2394b..90cba8a06 100644 --- a/disks/pc/tools/microsoft/masm/6.11/manifest.xml +++ b/disks/pc/tools/microsoft/masm/6.11/manifest.xml @@ -1,5 +1,5 @@ - + Microsoft Macro Assembler 6.11 diff --git a/disks/pc/tools/microsoft/mouse/5.00/manifest.xml b/disks/pc/tools/microsoft/mouse/5.00/manifest.xml index 3d13bae55..922c799f4 100644 --- a/disks/pc/tools/microsoft/mouse/5.00/manifest.xml +++ b/disks/pc/tools/microsoft/mouse/5.00/manifest.xml @@ -1,5 +1,5 @@ - + MS Mouse 5.00 diff --git a/disks/pc/tools/microsoft/os2/sdk/1.02/manifest.xml b/disks/pc/tools/microsoft/os2/sdk/1.02/manifest.xml index e58161762..c96b0fd68 100644 --- a/disks/pc/tools/microsoft/os2/sdk/1.02/manifest.xml +++ b/disks/pc/tools/microsoft/os2/sdk/1.02/manifest.xml @@ -1,5 +1,5 @@ - + MS OS/2 SDK 1.02 diff --git a/disks/pc/tools/microsoft/windows/sdk/1.01/manifest.xml b/disks/pc/tools/microsoft/windows/sdk/1.01/manifest.xml index 5df180e5c..1ee684d9f 100644 --- a/disks/pc/tools/microsoft/windows/sdk/1.01/manifest.xml +++ b/disks/pc/tools/microsoft/windows/sdk/1.01/manifest.xml @@ -1,5 +1,5 @@ - + Windows SDK 1.01 diff --git a/disks/pc/tools/microsoft/windows/sdk/1.03/manifest.xml b/disks/pc/tools/microsoft/windows/sdk/1.03/manifest.xml index 10379b0d9..08ee6d8cc 100644 --- a/disks/pc/tools/microsoft/windows/sdk/1.03/manifest.xml +++ b/disks/pc/tools/microsoft/windows/sdk/1.03/manifest.xml @@ -1,5 +1,5 @@ - + Windows SDK 1.03 diff --git a/disks/pc/tools/microsoft/windows/sdk/1.04/manifest.xml b/disks/pc/tools/microsoft/windows/sdk/1.04/manifest.xml index 7bc6df384..0ab3d2ce9 100644 --- a/disks/pc/tools/microsoft/windows/sdk/1.04/manifest.xml +++ b/disks/pc/tools/microsoft/windows/sdk/1.04/manifest.xml @@ -1,5 +1,5 @@ - + Windows SDK 1.04 os2museum.com diff --git a/disks/pc/tools/microsoft/windows/sdk/2.03/manifest.xml b/disks/pc/tools/microsoft/windows/sdk/2.03/manifest.xml index b51593b4e..8a172ceab 100644 --- a/disks/pc/tools/microsoft/windows/sdk/2.03/manifest.xml +++ b/disks/pc/tools/microsoft/windows/sdk/2.03/manifest.xml @@ -1,5 +1,5 @@ - + Windows SDK 2.03 os2museum.com diff --git a/disks/pc/tools/microsoft/windows/sdk/3.00/manifest.xml b/disks/pc/tools/microsoft/windows/sdk/3.00/manifest.xml index 90d14bf2a..c5dd80c9d 100644 --- a/disks/pc/tools/microsoft/windows/sdk/3.00/manifest.xml +++ b/disks/pc/tools/microsoft/windows/sdk/3.00/manifest.xml @@ -1,5 +1,5 @@ - + Windows SDK 3.00 diff --git a/disks/pc/tools/misc/enhdebug/ENHDEBUG.json b/disks/pc/tools/misc/enhdebug/ENHDEBUG.json index 9877a7130..2817f8873 100644 --- a/disks/pc/tools/misc/enhdebug/ENHDEBUG.json +++ b/disks/pc/tools/misc/enhdebug/ENHDEBUG.json @@ -1 +1 @@ -[[[{"sector":1,"length":512,"pattern":0,"data":[1351679723,777210435,4674127,66050,-1610584062,260357,131081]},{"sector":2,"length":512,"data":[67108857,1610940480,8390400,184590345,-536018752,16781056,318840849,1611989312,25171713,453091353,-534969920,33562369,587341857,1613038144,41953026,721592361,-533921088,50343682,855842865,1614086976,58734339,990093369,-532872256,67124995,1124343873,1615135808,75515652,1258594377,-531823424,83906308,1392844881,1616184640,92296965,1527095385,-530774592,100687621,1661345889,1617233472,109078278,1795596393,-529725760,117468934,1929846897,1618282304,125859591,2064097401,-528676928,134250247,-2096619391,1619331136,142640904,-1962368887,-527628096,151031560,-1828118383,1620379968,159422217,-1693867879,-526579264,167812873,-1559617375,1621428800,176203530,-1425366871,-525530432,184594186,-1291116367,1622477632,192984843,-1156865863,-524481600,201375499,-1022615359,1623526464,209766156,-888364855,-523432768,218156812,-754114351,1624575296,226547469,-619863847,-522383936,234938125,-15851295,1625624143,243328782,-351362839,-521335104,251719438,-217112335,1626672960,-985329,-82861831,-520286272,268500751,51388673,1627721793,276891408,185639177,-519237439,285282064,319889681,1628831729,293672721,454140185,-518188607,302063377,588390689,1629819457,310454034,722641193,-517139775,318844690,856891697,1630868289,327235347,991142201,-516090943,335626003,1125392705,-247131071,344016895,1259643209,-515042111,352407316,1393893713,1632965953]},{"sector":3,"length":512,"pattern":0,"data":[360797973,1528144217,-513993279,-958699,1662394721,1879048177,377579286,1796645225,-268495167,385969942,1930895729,1635063617,394360599,2065146233,-511895615,-950505,-2095570559,-242935743,412090367,-1961320055,-510846783,419532568,-1827065857,1637161281,427923225,-1692819047,-509797951,436313881,-1558568543,1638210113,444704538,-1424318039,-508749119,453095194,-1290067535,-239730703,462422015,-1155817031,-507700287,469876507,-1021566527,1640307777,478267164,-887316023,-506651455,486657820,-753065519,-237691583,495048703,-618815015,-237167167,1048575]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"data":[67108857,1610940480,8390400,184590345,-536018752,16781056,318840849,1611989312,25171713,453091353,-534969920,33562369,587341857,1613038144,41953026,721592361,-533921088,50343682,855842865,1614086976,58734339,990093369,-532872256,67124995,1124343873,1615135808,75515652,1258594377,-531823424,83906308,1392844881,1616184640,92296965,1527095385,-530774592,100687621,1661345889,1617233472,109078278,1795596393,-529725760,117468934,1929846897,1618282304,125859591,2064097401,-528676928,134250247,-2096619391,1619331136,142640904,-1962368887,-527628096,151031560,-1828118383,1620379968,159422217,-1693867879,-526579264,167812873,-1559617375,1621428800,176203530,-1425366871,-525530432,184594186,-1291116367,1622477632,192984843,-1156865863,-524481600,201375499,-1022615359,1623526464,209766156,-888364855,-523432768,218156812,-754114351,1624575296,226547469,-619863847,-522383936,234938125,-15851295,1625624143,243328782,-351362839,-521335104,251719438,-217112335,1626672960,-985329,-82861831,-520286272,268500751,51388673,1627721793,276891408,185639177,-519237439,285282064,319889681,1628831729,293672721,454140185,-518188607,302063377,588390689,1629819457,310454034,722641193,-517139775,318844690,856891697,1630868289,327235347,991142201,-516090943,335626003,1125392705,-247131071,344016895,1259643209,-515042111,352407316,1393893713,1632965953]},{"sector":6,"length":512,"pattern":0,"data":[360797973,1528144217,-513993279,-958699,1662394721,1879048177,377579286,1796645225,-268495167,385969942,1930895729,1635063617,394360599,2065146233,-511895615,-950505,-2095570559,-242935743,412090367,-1961320055,-510846783,419532568,-1827065857,1637161281,427923225,-1692819047,-509797951,436313881,-1558568543,1638210113,444704538,-1424318039,-508749119,453095194,-1290067535,-239730703,462422015,-1155817031,-507700287,469876507,-1021566527,1640307777,478267164,-887316023,-506651455,486657820,-753065519,-237691583,495048703,-618815015,-237167167,1048575]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"data":[1145589317,1196769861,136323104,0,0,1610612736,780,0,1430406468,538976327,541938497,0,0,-1400176640,149646,230173,1430406468,538976327,541937475,0,0,-1400111104,14895246,20824,1430406468,538976327,542398548,0,0,1568735232,16271500,27998,1430406468,1279415367,541281865,0,0,-1686962176,18106475,51176,1430406468,538990663,541937475,0,0,-1400111104,21383310,26214,1229803588,842222659,541938497,0,0,1219166208,23087246,3130,1229803588,842222659,541415493,0,0,1219231744,23349390,863,1330925638,542266451,541281865,0,0,1939603456,23414140,7908,1414744392,542724687,542398548,0,0,-1399521280,23939214,18639,1414745673,538976338,542721355,0,0,1496186880,25183338,5740,1414745673,538976338,541348431,0,0,1467547648,25576505,576,1414745673,538976338,542393683,0,0,-1698955264,25643115,9309,1162037580,541414222,538976288,0,0,1854930944,26298499,35141,1162559821,538976288,542392642,0,0,-1688469504,28591172,1320,1162559821,538976323,542392642,0,0,1952251904,28722228,335]},{"sector":9,"length":512,"pattern":0,"data":[1096043341,1397050434,538976323,0,0,1849688064,28787802,31542,1145128274,538985805,542398548,0,0,1804075008,30820492,7175,1145128274,538985805,538985549,0,0,1854930944,31344771,48,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229]}],[{"sector":1,"length":512,"pattern":0,"data":[229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229]},{"sector":2,"length":512,"pattern":0,"data":[229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229]},{"sector":3,"length":512,"pattern":0,"data":[229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229]},{"sector":4,"length":512,"pattern":0,"data":[229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229]},{"sector":5,"length":512,"pattern":0,"data":[229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229]},{"sector":6,"length":512,"data":[538976315,1430406468,1396780615,1632444493,1244622195,1836278103,1936941344,1818389861,1931506277,1668445551,1868963941,1851859058,1752065312,1701015137,1818435684,543518319,1142974063,1196769861,1297040174,154864141,1936876886,544108393,842214961,807414881,875638580,825242159,218762550,538983178,544166944,1818850658,1162092644,776426818,743264067,1702065440,990514490,1635215881,757099891,1297104708,757084221,544106850,544163373,1969382756,1868770919,1701060717,778532194,225276769,168639242,538976315,1646292820,1684826485,1111835680,777537365,743264067,1701344288,1297105952,2002853961,543519329,1936876918,544108393,1679844975,1735746149,1937055788,168639077,2003437883,544043873,1346323501,540097869,1852400173,1866870048,1650811936,779642741,544042851,1969382756,1935748711,990514541,540740109,1867784224,1769300512,1142973548,1196769861,1398362926,1752440876,1701060709,1701013878,1769104416,544367990,1936876918,544108393,1679844975,1735746149,1937055788,168639077,2003437883,544043873,1346323501,540032333,1380205613,1380275785,757084477,544106850,544163373,1969382756,2037591655,1701060723,778532194,225276769,990514442,1027423520,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,990514493,540740109]},{"sector":7,"length":512,"data":[2037411651,1751607666,1663574132,959520809,841823545,540225584,1969311776,1867915372,224490602,168639242,1213472827,1330847813,1096242246,1226851666,1380982867,1145656911,572539973,1226855233,539763283,1213483351,542397775,1381122391,1498697281,541478688,542723649,1145981259,1480925228,1397051984,1380917331,540740109,1280331081,742671689,1129204000,1229215052,1109411662,1310741589,1277187151,1414090057,1411400773,1213472847,1096228933,1312903762,1397049684,541478688,1129465165,1414414664,1279869505,744051785,540740109,1314146630,542331717,542265158,1095770177,1128879186,1380011093,1381322784,1163087696,1145979168,1313820192,1380339273,1162301001,1414415693,1313415214,542068256,1313166917,1213407316,541871169,222644308,1142962954,1279612485,1380274255,1161961555,1095322656,541412418,542265158,542723649,1229016131,1142959181,1195461953,1327518533,1414471762,542262600,1111574860,1414089801,1461726297,1213482312,168645189,1313415227,541999392,1230259009,1327517263,1329799238,1095914574,539776067,1414680404,542265120,1162368079,1397315410,1092627525,1230195026,1176520526,743264082,1414876960,541478688,1226854991,990514510,1313817376,1413694798,542003017,1213483351,1162368032,1179603744,1380013908,1380917317,1162368032,1163089184,542265120,1162368079,1162092626,1313426497,1226855239,1213472846,1330847813,1096242246,221136210,168639242,1027416123,1027423549]},{"sector":8,"length":512,"data":[1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,168639805,1632247867,1952802928,1629502056,1696623724,1852142712,1852795251,1634541683,1646290276,1701650553,1701994784,1651855392,543385964,1634561860,539913833,1936287828,1701798944,1869488243,990514548,538976265,1701209697,1864397923,1919248500,1886348064,1734963833,779318376,540740109,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,540740109,2037411651,1751607666,1663574132,808591401,841823025,540422448,1852990806,1109421679,1802465138,990514547,1027423520,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,218762557,1886325002,1852795252,1935762208,1885433189,1852796474,151653733,1769238639,1881173615,979595122,1986622064,224752737,1862875914,1869182064,1869488238,1886218860,1852128009,1701601889,544175136,543516019,543516788,1919903859,1969889396,1696624749,1852142712,1852795251,218762611,156451338,1696604192,941651313,1096026637,538970434,1970365728,168638752,537478732]},{"sector":9,"length":512,"data":[1902452768,808525941,1380125197,538976265,544567653,168637233,1330401108,542262615,1696604192,840988017,168650800,1347768148,542262608,1696604192,807433585,224945764,1431262218,1380274256,538990431,544567653,1684431920,168650854,1296387661,1179602511,1696604243,840988017,1866139960,1702061670,1852383348,1953853216,544503152,1701734764,1701345056,1830839666,1869440366,1935894894,1635021600,673215602,1634953572,1835365235,1919249506,218762537,543582474,223170623,1195525130,1162690894,538976288,544567653,1111835687,660096853,1330514445,1163155525,1380271182,1970365728,990458144,661548900,1935745140,1701672307,1297105952,1869094985,1763734643,1970037614,544433508,1329864801,2019893331,1684956532,168653413,961431895,1347769176,1696604240,824210801,1986083593,543451503,1802465128,543649385,1229803588,1953391904,1998616946,544105832,1852732786,543649385,1461743209,2017029737,1329859085,1431127379,538976265,544567653,1631258929,1684631414,1869572128,1735289195,1297105952,1852121161,544830068,1852139639,1853190688,1735289198,544106784,1165193028,168654189,1128486981,542132563,1696604192,824210801,1768176393,1634496627,1396908153,542132538,1919248503,2019893349,1953523043,544108393,1969447791,224683378,1397310474,1330595920,538976331,544567653,1681590577,1819308905,572553569,1229803588,1953391904,1746958706,1701539695,774778468,1124732194,1212372033]}]],[[{"sector":1,"length":512,"data":[810831433,1902452790,154214517,1952539451,1696622691,1885692792,1852795252,1748381728,544106784,1818322290,1685024045,1141509477,1347769176,538970448,1970365728,990458144,1886418291,544502383,1663064132,1634561391,168649838,1330925638,542266451,1696604192,824210801,1970486025,1919905904,1701978228,1650549857,1713399148,1952542572,761753193,1852403568,1701978228,1953720679,225669733,1481461002,1347442003,538976288,544567653,1933248817,1869639797,1293972594,1931499597,1768121712,543385958,1835888483,1935961697,1330448909,1163085124,1145914196,1970365728,990458144,1886418291,544502383,1629517901,1293968494,1663072323,1634561391,225666158,1936483594,1141509477,1095649090,538985805,1902452768,1143414901,1196769861,1141509415,1347769176,538970448,1970365728,168636448,1330925638,542266451,1696604192,807433585,1296894477,1347769176,538976336,1970365728,168636448,1162104653,1129596243,1696613453,807433585,1852115469,224815460,1158286602,1296257869,538970436,1970365728,990457888,1886418291,544502383,1663072344,1634561391,225666158,1163089162,155272275,1696604192,824210801,1937062665,1146298469,1869881409,1952802592,1952805679,1347637280,544106784,1818322290,1685024045,1426722149,1329874259,1497713491,1902452768,154214517,1702065467,1397703712,542721355,544370534,1970302569,1718165620,1634692128,224683364,1096045322,1230195523,538976346,544567653,1747988530]},{"sector":2,"length":512,"data":[1701067529,661091682,1953702003,543908705,1702521203,168626701,1684956777,1126196837,1212372033,810831433,1124732209,1212372033,810831433,1902452785,154214517,1952539451,1226860643,807425102,1932009521,1818717801,1953705317,220819557,1684956426,168650345,1684956777,1126196837,1212372033,810831433,1124732211,1212372033,810831433,1902452787,154214517,1952539451,1226860643,807425102,1646796851,1801545074,1852403568,168634740,1768189541,1762266470,1701080678,1094918246,1229472596,909136974,1094912525,1229472596,909136974,1970365728,990457888,1668571491,2019893352,1953523043,544108393,543700528,1914728041,762077541,1701080941,1852115469,224815460,1852205322,543581540,1129595203,1414416712,168641328,1129595203,1414416712,1696613168,807433585,1633893129,543712116,1701017701,1869182064,1127227502,1852383336,1634038304,1869426028,168650084,1768189541,1762266470,1701080678,1094918246,1229472596,1144017998,1094912525,1229472596,1144017998,1970365728,990457888,1668571491,2019893352,1953523043,544108393,543704112,1914728041,762077541,1701080941,1852115469,224815460,1852205322,543581540,1129595203,1414416712,168636723,1129595203,1414416712,1696608563,807433585,1869101833,1142975343,541674832,544501353,224932147,1684956426,168650345,1684956777,1142974053,1163282770,1141509458,1163282770,538970450,1970365728,990457888,1886418291,544502383,1646292852,1869357157]},{"sector":3,"length":512,"data":[1684366433,544432416,1769366884,1679844707,1702259058,1852383346,1313817376,776423750,223566163,1684956426,168650345,1229720077,1230980430,1162633038,1902452814,858857589,1815808304,1952935525,1718558824,1852402720,1852399461,1852385312,1685417059,543649385,1684104552,1931506277,1717990772,218762537,757938954,1397760045,1718558800,1952805734,218762611,1095516426,156254547,544567653,543699504,1684291899,1936942450,543584032,1953718604,1734701856,1953391981,1819042080,1952539503,1948279909,1919950959,1634887535,1409944941,156649808,544567653,543711536,1919243323,1634625901,1344300404,1919381362,1226861921,1919251566,1953527154,1667585568,544370548,1953392936,1748120096,1124732201,156649795,544567653,543712560,1852785467,1819243124,1226851104,1919251566,1953527154,1667585568,544370548,1953392936,1748185632,1124732201,156649797,544567653,543699505,1769095995,1633905012,1917132908,544370546,1702129225,1886745202,1700143220,1919906915,1852385312,875700340,168634728,1163018576,1695110222,824210801,991979574,1835492691,544501349,1881171567,1852142177,1397760116,1393167696,1447121744,1970365705,1751462432,1632844576,1948280182,1931502952,1801675124,1768910880,1919251566,1919248416,1141509477,1695105364,941651313,991979568,1735357008,544039282,1969713761,1953391981,1629502323,544174956,1684370293,544175136,1919906931,1768300645,1634624876,673211757,1835212878]},{"sector":4,"length":512,"data":[168634724,758843917,1830825261,1830839662,1869767521,1937055788,1713398885,1948283503,1629513064,1835365235,1919249506,1701735712,1768845165,1948283747,1701601889,168626701,543518317,1919115629,1635131503,1379545708,539775301,1954112100,1446671205,1380012609,1091177799,1094995283,1931493716,1701668709,168653934,1381127491,542328399,220471357,1718159626,1008755310,1954112100,222196581,1679821066,1650729058,1936028793,1695091213,1718183022,1396771341,1413563469,1852121153,168653668,544695305,1381127491,542328399,1935745069,1650553965,1313671693,1635133023,1696608876,606106993,1830825248,1936288878,1946815860,1953722477,1633886322,1920234356,572603424,1396714558,1951621749,1635133554,824980076,1767063596,1951622522,1635133554,757674604,1009527089,556540449,1076641319,1398961491,1982362228,741502049,2053722944,1920226149,1818326568,740895026,1042751804,942357548,222193712,1650723082,1886221344,225604723,1852115210,168652132,1195444749,1830834258,1869767521,1836412448,1818653228,151653732,1953069157,842801261,543698996,1970151467,540551789,1718755371,222192748,1852115210,168652132,1635125773,1851877746,1634541684,544174691,1868787823,1916429668,539783525,981034347,745629042,1668246560,539779691,1751343469,224751209,1297301770,1096040772,1734701856,1953391981,1762200077,543321702,1668246588,222192235,1679821066,1869357154,224553827,1852115210,224815460]},{"sector":5,"length":512,"data":[1718159626,1008755310,1751343469,1046834793,537463309,1830838884,1768448865,168650094,1684956425,168650345,1718511969,540876911,1668312872,694510703,1092626976,1330466131,539697220,226059627,1650723082,1195984928,1767972936,745498222,1464814624,1852399904,168652646,1145918273,541152321,1935961701,1695091213,225272942,1711934730,1918989936,1953390953,1667329312,1864396658,1685021552,1797270629,539785573,1650746465,1869357100,744647523,1667329312,1701734760,1980303885,1634300513,1864397934,1685021552,1797270629,539785573,1801678700,1830825058,1768448865,168650094,1145918273,541152321,1835492723,225734245,1650723082,1684300064,1091177826,1094995283,1696612692,225666158,1852115210,168652132,1852115469,1918989924,1953390953,1667329312,168652658,1145918273,541152321,1835492723,225734245,1650723082,221326624,1297301770,1096040772,1684956448,151653747,1835298405,168626701,757935419,1819307808,1667329312,539783026,1684370293,544175136,1768318308,1864394094,1634887024,1948279918,1936027769,168626701,1684631663,540876920,1862929712,1830841456,1869767521,1818326560,1446667637,1380012609,151653703,1684107822,824211561,1762266422,1886330982,544760937,824210540,168650800,1852402783,1702109285,1902474360,1329340533,1397312592,1043357524,1886332204,746087529,1902452796,539238517,1886330925,1953720684,168640115,1702063205,1818167821,543518313,1954047348,544567653]},{"sector":6,"length":512,"data":[1280331580,1599361865,1864707134,2019846512,1696611372,606106993,1864379680,1936288880,222196596,1684956426,168650345,1852402783,151653733,1651402345,1635138592,1046836588,537463309,1981833828,1702194273,1695091213,1718183022,1678313997,221257826,1886325002,544760937,1886330941,544760937,221323307,1915619594,2020172897,221262112,1852115210,168652132,1414466061,1667329312,1847619442,168652149,1936747892,1695117940,1327527281,1397312592,1848008532,1328246133,1348031568,1113543493,222647105,2019887370,544044137,1886221372,1047688307,1695091213,225272942,990514442,539831597,1702521203,543584880,1948283753,1634541679,1142973803,1196769861,1931506471,1869639797,1713402994,857764463,1768041778,1868767348,1629513060,1836261491,543976545,1881174881,1769173871,778398818,758843917,1713384749,1948283503,544434536,1629515636,1701406819,1629513078,1952542752,1948280931,1701601889,544434464,1634038371,543450484,1595960937,1413563465,1752637505,543712105,1713402729,1701604457,990514532,539831597,1830844770,1919905125,1718558841,1952805734,1752637555,543519333,1717924464,1646295145,1936028793,1748383264,544370464,543700790,543519329,1853189990,168636004,1769146893,1919968634,1634541670,225407587,1920295690,1885955442,606092576,1230965261,1096040772,1734701856,1953391981,1678313997,1969430647,1768256114,1594494320,1413563465,1852121153,168653668,543319049,224933430]},{"sector":7,"length":512,"data":[1852115210,168652132,1769146893,1919968634,1830836326,1869767521,1718159885,1297104672,1929972237,1885698665,168650354,1768189541,151653734,1835298405,168626701,808988169,168638008,1415514637,542398533,1835492723,544501349,1919907684,1970282596,1667853410,1329800992,220677444,543582474,1447645764,168645189,1918989427,168639092,543450121,168636717,544695305,808464440,990447976,1986622052,1629516389,1769108596,1702131042,1393167731,1952543348,544695305,1936090735,1931506789,1952543348,1601791845,1953066601,1953708832,1702125938,1914730855,1769239919,1864394094,1702061670,1225395572,158495854,1864398692,1702061670,1919164532,1919252073,1953391967,990476658,1702129257,1886745202,1634214004,1701602414,1718558834,1952805734,1701054989,1701013878,1835101791,1650729061,1162094368,608654658,153568324,1986356283,543515497,1986622052,1847620197,224750945,1913261322,1751085413,1931506276,1668641396,1701972493,1769168753,1679844730,155132002,808139529,1836412448,544367970,1646290543,1936028793,1869902624,224683378,1768846602,1684627316,1650728992,151600928,540093243,1953066613,541346080,1701080931,1835207181,1679821156,155132002,841693961,1836016416,1684955501,1685021472,1930038629,1970561396,1679821171,155132023,858471177,1635021600,544437620,1685221239,1936853517,537486454,941646436,1886741536,153698088,540355387,1702061426,1684371058,1701972493,1684561777]},{"sector":8,"length":512,"data":[1852121202,168653668,1701972493,1936029041,1953521524,1684283506,168636448,1953696269,1702125938,221935975,1869416714,1936007286,2019711802,1701981789,1684561777,1953705586,1937077345,808532012,168650803,1702129257,1886745202,168639092,1952805385,1695157606,224752492,1919879434,808525927,168650800,1918989427,168639092,1886218761,1768843552,1685021556,1695157605,1718183022,1415514637,542398533,1935961701,168626701,1397641027,1702043732,1852140903,1701978228,1852793953,1998616940,543453807,1818391920,656434025,1096040772,1124732199,1414745679,1684956448,218762611,1297301770,1096040772,1734701856,1953391981,1919907616,1970282596,1667853410,1094985504,220676436,1836278026,543318388,1700946284,2036473964,168650100,1145918273,541152321,1935961701,168626701,1413563487,1702043713,1852140903,2003050612,543453807,1818391920,656434025,1096040772,1594494247,1096040772,1684956448,218762611,1414094602,542398533,1835492723,544501349,1685221239,1651863584,543385964,1415530791,659839045,1230965261,1415071060,1684956448,218762611,1145659146,541152321,1835492723,544501349,1685221239,1651863584,543385964,1147095335,658592833,1634732557,1701340020,1634476147,543974754,1685221239,1230965261,1096040772,1684956448,218762611,1380402186,542135631,1970238055,1415520368,743725125,1313817376,539776083,1145918273,742478913,1094999840,539771220,1163151711,539776088,1094994271]},{"sector":9,"length":512,"data":[168640852,1329793549,542397262,1835492723,225734245,1661603082,1768711277,1679848563,1633755255,1684890412,1920099679,1663857263,1684286563,151653732,1696626532,1717972069,744974124,168650856,544695305,1663854953,1700750445,1919906418,1684890412,1920099679,1814852207,151653740,1830844260,168652141,1142974057,1163282770,151653714,1663072100,1700750445,1919906418,1869495049,1713393184,1948283503,1679844712,1702259058,1635131506,1851877746,1695157620,224752492,2003044618,225340960,1684956426,168650345,544695305,1881960303,1762266480,1380196454,1380275785,1678313997,1835212919,1919246180,158494578,544173627,1868963921,1752440946,1919164517,1919252073,1918989856,1953390953,1818561037,168650099,544695305,168653169,1768189541,151653734,1914730340,1936927858,1953770611,1678313997,1970610295,745961004,168654711,1159751273,1296257869,151653700,2015393636,1158286712,1296254030,1902446916,658251893,222177144,1936483594,1158286693,1296254030,1902446916,658251893,222177143,1684956426,168650345,1718159885,1297104672,1650723341,842216039,2003050548,858941728,539782512,1882468969,1695157613,1718183022,168626701,1397641027,1852121172,168653668,1147079181,541152321,1835492723,225734245,1946815754,1935634543,2003044720,151597088,1650811963,1701275509,544417650,1948274771,673214575,1869835361,1684956448,543584032,1969382756,544417639,692208461,1919224333,1952805490]}],[{"sector":1,"length":512,"data":[544695305,990447920,1970562418,1746955890,543519333,1696622185,1919906418,1970407949,1886609262,544695305,990447920,1969382756,1919248231,1394635559,1752637520,1914728037,690515573,544434464,1667594341,1684370549,1886587405,1969906785,1679848563,808722551,990453864,1969906785,1394635891,2036473936,1768453152,1835081843,1953396079,1919903264,1986097952,1879706981,1650749555,2003044709,151597088,1650811963,1701275509,544417637,1735357040,544039282,1835492723,544501349,1717924464,168654953,1685091184,1678337890,154148983,1701067529,1734833506,1931965029,1869770784,1835102823,1734701856,1953391981,1701998624,544762214,2003591464,544438625,1702043745,1852140903,168634740,846099826,540291635,807434084,808202284,990457900,1969382756,1701144423,1763734311,1919251566,1953527154,1667593760,1936879476,540226080,543452769,673199154,1752461154,1685024032,220820325,543582474,223170623,2003044618,808202272,1852115469,224815460,1986097930,875705138,544695328,741354544,154151984,1650811963,1701275509,544417650,1702129257,1886745202,1702240372,1919906915,858923123,1684955424,540291616,1634038312,1869426028,1864394084,695823470,1936722445,154284656,807434084,151597100,1769107259,1634625895,1702109292,1852403058,543519841,1919181921,544437093,1679847017,1735746149,661808487,1397760115,1879706960,1852142177,2003044724,151597088,1769107259,1634625895,1634738284]},{"sector":2,"length":512,"data":[1953391986,1347637280,544106784,1969382756,1919248231,1344303911,673206355,1953723757,543515168,1954047342,1997147433,155337549,807434084,1933248777,1953653108,543584032,541213517,1767991395,1630019694,2036430700,1702043763,1852140903,168634740,1148078448,1678332751,154148964,1634089737,540422514,1919181921,544437093,1226860143,1397703790,1634493984,1915232359,543973733,1701080941,1762266409,1346314342,1225395533,1936671854,543974739,807434084,1933248777,1667591269,544370548,1970037110,1868963941,1232085106,1397703790,544106784,1953460848,1702126437,1869426020,168650084,1768189541,1762266470,1398087782,1094996805,1399851533,1678328132,154148964,1634089737,540422514,1919181921,544437093,1142974063,1931498319,1886413175,1701601889,1952539680,1918967905,673210725,1818322290,1685024045,168634725,1059087977,168643920,1396786259,1678339173,154148983,1702050569,1952671084,1981837935,1702194273,1919903264,1146318880,1852383297,1869770784,1952671092,1831691365,224748655,1684956426,168650345,1768189541,1745489254,1953721185,1679848545,154148962,1752644361,1701344357,1702305906,1986095136,1634213989,1684368227,1701344288,1667593760,1936879476,544370464,225734510,1667329290,1701734760,543319072,990447920,544567395,943534120,741750832,741485617,808992051,741750835,690892334,1634535949,945776739,1650729015,151597088,1886348091,1701015410,1919906675,1026566176]},{"sector":3,"length":512,"data":[926429240,841756972,943534892,926430000,774778412,1762266409,1330454630,1163085124,1145914196,1634535949,1852401763,1667325797,1818326388,543319072,1829375280,1600676705,1633630008,1635087459,1650729068,168636448,1768189541,1913261414,1701080941,543319049,990447920,1734437990,1868963955,542253170,1835888483,224685665,1598902794,1379285043,542328645,544567653,1648036145,807433321,1026629690,540424243,1768383858,1919251571,1936286752,2036427888,1836321293,157639791,807428708,1648036105,807433321,1026629690,1680700269,1735746149,1836016416,1769234800,543517794,1667330676,1869422693,168650084,1148078434,1678337890,154214498,1026636553,1969382756,1919248231,544434464,1852732786,224882281,1953459722,2037675105,543319072,151602764,543582523,1851880563,1685217636,1886284064,1763734645,1919295603,1629515119,1818846752,1930038629,1970234484,1679844980,154148962,1818639113,544434017,1868854387,1679848565,1667855973,1879706981,1886220146,1852140660,544695328,990447920,1735288172,1864394868,1919950950,1953525103,1969359373,2019913318,2003050612,1852402720,1852399461,990458411,1919181921,544437093,1847617135,544503909,1767994977,1818386796,1751326821,1667330657,225600884,1718968842,157576805,1814067044,1600482921,841707113,1684093705,1936028260,539697267,1718558769,1935764512,1635131508,543451500,1918986339,1702126433,218762610,1633640714,158491748,807434084]},{"sector":4,"length":512,"data":[808202284,1684093705,1936028260,1868963955,1701716082,1092646008,1836016416,1684955501,1600391693,1919181921,544695305,741354544,1631258928,1701995620,1713402739,1814065775,544502625,1868767300,1851878765,1830828900,544502645,1819045734,1629517679,1684300127,1963593074,1684300127,2003044722,808202272,990457900,1919181921,544437093,544370534,1953718636,1663063328,1634561391,540763246,1953723757,1819239968,544698220,1684103012,168653412,1718159885,1398293536,223367253,1633646602,158491748,807429220,674957577,1937336432,1684086825,1936028260,1868963955,1634476146,1142977651,1868767320,1851878765,1695157604,1718183022,1902447117,1684300140,2003050610,808202272,990457900,1769238639,1818324591,658319136,1735549216,1852140917,1852383348,539772704,1851859024,542384228,1835888483,224685665,1970420490,1935892334,544695328,990447920,1702257011,1769107232,1634625895,1396908140,1701345056,1970413678,1852403310,1852383335,168642336,1601074546,544501353,807434084,1765476617,1919251566,1953527154,1887007776,1752440933,1931506785,1886416756,1948279909,1914725736,1768844917,168650606,1953718636,543452515,1679849316,1835235693,1829375332,1869772897,2003044727,168636448,1818653029,1678337889,154148962,1818639113,1763731297,1667851374,1852404833,1919950951,1852142437,1864394083,1025974374,1918967847,1701672295,168653934,1768835426,1650723188,151597088,1698508859,1920299886]},{"sector":5,"length":512,"data":[543236197,1768710518,1886330980,1701080931,544434464,1679848545,1735746149,660956519,1396908147,223365434,1818846730,1954047333,543319072,990447920,1701603686,1954047264,1769172581,673214063,1718165552,544173600,1701603686,1701667182,1158286633,1331647576,1380272212,1902452768,221323381,1415070986,1297040223,538976288,544567653,1158286642,1163875416,538985816,1902452768,221519989,1835426826,1650723188,660743968,1815808265,544502625,1868767300,1851878765,2037653604,673211760,746007650,168634724,1176528489,1397707856,168645204,1952411250,543518841,807428708,1379600649,1868767310,1851878765,2037653604,168650096,1768189541,1762266470,1296900198,1347769176,1745489232,1834972001,1679849581,221257826,1684956426,168650345,1885957222,543319072,218762544,757938954,1937055789,1667330149,980706667,758843917,807415085,1634738234,1952803683,544434464,544501614,1684370293,1852385312,892477556,909258600,1663052904,1178411384,692471366,758843917,824192301,1634738234,1952803683,544434464,1684370293,1852385312,892477556,909258600,1663052904,1178418552,692471366,758843917,840969517,1634738234,1952803683,544434464,1684370293,1852385312,825368692,1629498472,859258232,745026864,1031299872,1179010621,168634694,1937050125,1667330149,544499051,807428708,168626701,1768710409,840986215,168626701,1262698832,1931498565,1668641396,1702038029,158297699,1059087460]},{"sector":6,"length":512,"data":[1702050569,1919906915,1836412448,225600866,1836412426,1935893875,544695328,1849362751,1700949365,1718558834,1667592992,1936879476,544175136,1684104562,1935936013,1936093044,544695305,1866139967,1948283750,1936613746,544367974,1919181921,225669989,1953719306,157771123,1059092324,1702050569,1920213095,1718840929,1629516389,1701995620,168653683,1262698832,1696617541,225666158,1762266378,1346314342,1342836045,1162560321,540160852,1970435187,1930038627,1869505381,543450121,1846152511,1702063477,1679848291,222240887,1953719306,158557807,1059087460,1935936013,1734701940,544695305,1342836031,1162560321,540160852,1935961701,168626701,1801675120,1344304229,1162560321,540160852,808202300,808202284,1695157566,224752492,1667330058,544499051,1262698832,1008751685,741354544,1043344432,1852115469,224815460,1762266378,1634956398,1814062454,1818583649,1870095392,168649842,543450121,1933248816,1684371041,1667593760,544370548,168636464,1126196841,1212372033,810831433,151653681,807429220,1634941705,543450486,1952671094,807432815,1695157553,1718183022,1718159885,1413563168,1313425475,221458516,1684277514,990457888,1702257011,1702240356,1919906915,221458464,1684956426,168650345,1126196841,1212372033,810831433,151653686,807429220,1634941705,543450486,1952671094,807432815,1695157558,1718183022,1718159885,1413563168,1313425475,222507092,1684827914,155398249,807429220]},{"sector":7,"length":512,"data":[1634941705,543450486,1952671094,807432815,1695157571,1718183022,1718159885,1413563168,1313425475,222572628,1684827914,155463785,807429220,1634941705,543450486,1952671094,807432815,1695157572,1718183022,1678313997,154148964,1986097979,1981834341,1869898597,842145906,1718159885,1297104672,1819216397,1714579812,543450121,1695157552,1718183022,168626701,757935419,1918980128,1952804193,1646293605,1801678700,1919903264,1702389024,1633886307,221146220,1158286602,1396917592,1920234272,168649589,1769369189,544108402,1059092324,723532553,1852121136,1869769078,1852140910,1702043764,1852140903,1661603188,1635017837,1679846505,155132004,841687099,1684300064,1936942450,543584032,1835888483,543452769,1818845556,544175136,2037411683,1667631629,1678324066,155132004,908795963,1684300064,1936942450,543584032,1936877926,1128669300,1869881410,1886348064,1711934841,154296931,1059087460,824916745,1684086832,1936028260,1718558835,1667592992,543452783,541213510,1663070068,226062447,1936945930,1684277616,990461728,540291371,1953066601,543973737,1396331347,1661603152,158361971,1059087460,824916745,1852383288,1634301033,1396908140,223365434,1163412746,1696617283,225666158,1695157514,1650681208,1159752556,1396917592,741358624,1664429104,1664494696,741354600,168640048,1163004429,1931498311,1668641396,1148324365,2003044681,1059864352,808139529,1684348976,1913261417,1678330195]},{"sector":8,"length":512,"data":[742334583,725289279,1696609328,168651123,156254834,1059092324,990461740,540553259,225469029,2003044618,1059864352,824916745,1701978162,1987208563,168649829,156779122,1059092324,990461740,540422443,225993317,1480880650,544695305,155135039,808594235,2019845408,1131547149,2003044696,1059864352,841693961,1667571764,1913261432,1678334017,742334583,725289279,1696610354,168654945,1148324365,2003044691,990461728,540160811,168653668,156452210,1059092324,858471177,1936007220,1399982605,2003044691,990461728,540422955,168653683,156451698,1059092324,858471177,1935876152,1181878797,2003044691,990461728,540029995,168653670,156452722,1059092324,875248393,1936138290,168626701,156259186,1059092324,990461740,540292139,225473381,1346990602,544695305,155135039,942943035,1885955360,1181878797,2003044684,1059864352,892025609,1717903410,1936154988,1718159885,1297104672,1936525837,2003044727,990461728,808464432,1634038333,1869426028,539780452,1179010630,1869770813,1952671092,1831691365,224748655,1684956426,168650345,1397179730,1684956448,218762611,757938954,1699881005,1953720679,1931506277,543520353,1634038369,218762542,1818298634,544106345,990453812,539831597,1953723757,543515168,1380931396,1818304580,1701734249,168632676,1701972493,1377858407,542328645,168640060,1147079181,541152321,1935961701,168626701,1397641027,1702043732,1852140903,218762612]},{"sector":9,"length":512,"data":[757938954,1635000365,543517794,1763731055,1919251566,1953527154,1768843552,1818323316,1952545385,225341289,1225395466,1414091854,1931496773,1668641396,1678313997,222240866,2003044618,168640288,1230261833,541934932,1935961701,168626701,1953787497,1814061665,1818583649,1414416672,1296389193,1225329165,1414091854,1008749893,745025584,1953392928,1043345522,1718159885,1413563168,1313425475,221327444,1313409290,1163151700,809246797,539781169,1920233065,222179632,1684956426,168650345,1126196841,1212372033,810831433,151653683,1230261833,541934932,1748185148,1852383276,858813044,1695157566,1718183022,1718159885,1413563168,1313425475,221655124,1313409290,1163151700,809246797,539781174,1920233065,222180912,1684956426,168650345,1126196841,1212372033,810831433,151653699,1230261833,541934932,1749233724,1852383276,1127248500,1695157566,1718183022,1718159885,1413563168,1313425475,222572628,1313409290,1163151700,809246797,539781188,1920233065,222184496,1684956426,168650345,1414416649,1296389193,842152992,1763716200,846361710,168640050,1229804878,542331982,539500605,539828260,1953787497,689988193,1931489056,1868921449,1313415270,1163151700,1762266445,1346314342,151653709,840983140,168650822,1229804878,1481856078,1310735648,1313426773,824922964,1818561037,168650099,1229804878,1481856078,1310735648,1313426773,168645460,1768189541,218762598,757938954,1701978157]}]],[[{"sector":1,"length":512,"data":[1953720679,1847620197,1936026977,1919903264,661792544,1850679342,1953046629,1763732837,540156019,1702132066,168636019,757935419,1734701600,544433775,1953723757,1819239968,544698220,1852269938,1936026977,1684955424,1685221152,1864397413,1953046630,544435557,1953723757,1952541984,168650851,757935419,1869116448,1763730803,1701978222,1835101799,221148005,1913261322,1634625381,544433517,656433764,740776001,660095527,1480795948,1143417895,220997464,654903562,740773971,659571239,1230186284,1143417895,657205065,740773961,659310119,151653676,1396975369,1160195111,657205075,740774739,659768103,1397106476,1193749543,168634195,1380799822,1095649093,542328141,544567653,757081128,1734701600,1701667182,790636915,168636960,1869047154,1678340966,1701978231,1915646823,539777089,1936156018,1480749614,1701978156,1915646823,539777091,1936156018,1480880686,151653676,1734701577,1399991923,1914711120,779315045,743457394,1734701600,1399991923,1914711113,779315045,742999154,1734701600,1232219763,1914711120,779315045,743196274,151587341,1936156018,1396994606,1701978156,1915646823,539775813,1936156018,1397977646,1701978156,1915646823,539775811,1936156018,1397125678,1701978156,1915646823,168645447,758843917,1629498669,2036429426,1818632307,1953063527,1713384563,1634625388,1629516653,1713398894,1869506412,1830843246,544502645,1663067490,1702063727,1769239907,168650102]},{"sector":2,"length":512,"data":[1650945126,544437353,941651812,745025584,1747988532,808464940,808987752,808725608,808529000,741616744,1711934769,1634625388,1679848301,1311187042,657205078,740773973,659112999,1280321324,1311190055,657205082,740770126,659509287,1129195308,1711934759,1869506412,1679848302,1327964258,657205078,740773444,659113255,1196304172,1512516647,657205074,740770625,658853927,1497573164,218762535,757938954,1850286125,1970435187,1869182051,1702043758,1852383348,1836216166,1869182049,1701716078,1684366437,1919903264,1701344288,661661472,1836016416,1684955501,990514478,539831597,1634890337,1881174905,1954112112,1629516645,1881171054,1718511984,1970085999,1646294131,1868767333,1667593070,1986622581,168632677,1886390797,1702132066,1650729075,1748383264,1748448812,1748382252,1751462444,1748382508,1751462700,1748252204,1748317740,845557804,1714433128,990472243,1717924464,1936029801,1678313997,1630543970,808216675,745038945,1751212336,1650536492,1630547048,808216628,157824353,1685023803,1953705075,1831629679,225670767,1650723082,912338976,1630547048,808216631,745039201,1751540016,990447881,1936747875,1633907500,151653747,908092004,908879971,908879972,908879973,151611494,1852390153,1970220147,168653684,543319049,1751343920,1684221996,151587176,1852390153,1852383348,1970435187,1869182051,168653678,543319049,1748002096,828715052,1697655912,151611442,1869363977]},{"sector":3,"length":512,"data":[1763733615,1920234350,1769235317,225668719,1650723082,946155552,151593064,1664813321,543976545,829187442,842215222,1678313997,959455330,153118817,990447881,1819042147,1918985760,1734701856,825898545,842215222,154864141,1768444968,1634476147,1864397939,1763730798,1868832883,1696621934,1768714360,1819568483,2036473977,1701344288,1685021472,220802661,1678326538,1714430050,153118822,990447881,841967206,544370464,858744422,1852377402,1701996900,1663071331,225209441,990514442,1226842144,544171630,544370534,543516788,1987011169,1914711141,1701868389,1986622563,779709541,540740109,808984608,540876904,1717924464,221149289,538983178,1748056096,1629502752,1701995620,1931506547,543521385,1717924464,221149289,538983178,1748121632,1864383776,1634887024,1931502702,543521385,1717924464,221149289,538983178,543574304,543516788,1751607656,1953063456,544434464,544501614,745825651,1701344288,2019913248,1768431732,1936025703,1768038516,875044980,539584560,1768189545,1702125923,1752440947,168653921,538976315,543516788,1953721961,1952675186,544108393,1702521203,1885692960,1935961701,544108320,1952802935,544367976,1919248500,1936269413,544104736,1919181921,544437093,1702521203,1701998624,746088806,540740109,1851858976,1752440932,1701978213,1852399981,543649385,1937008994,1818588192,1752440940,1970151525,1919246957,543584032,1768186977,1852795252,1646292065]},{"sector":4,"length":512,"data":[1936028793,544106784,224749684,538983178,1936615712,1668641396,1852795252,218762542,1599098890,1397900353,1695111753,807433585,168650801,1331646544,1514754896,1970365705,1748119584,1347422733,1163022431,156780870,544567653,224931896,1599098890,1397899606,1695111753,874542449,168650800,1886390797,1868983913,543319049,745026104,745025848,745025592,745025592,745025592,745025592,745025592,745025592,745025592,157823032,1701998651,1702390118,151653747,807428708,808202284,808202284,151597100,1933248777,1852404340,1852383335,225604723,1650723082,808202272,808202284,151587081,1920234299,543649385,1953721961,151653746,807428708,808202284,151597100,1933248777,1852404340,1852383335,225604723,1650723082,824979488,151587081,1313422089,1852383316,225604723,1650723082,824979744,151597356,1278937353,2018529103,1936615712,168653428,543319049,157823540,151587081,1634037307,1094918258,1763724364,1920234350,1678313997,875831394,151587176,1715144969,1126199905,541871169,1953721961,1342836082,1313164368,1970365705,757081120,1768976416,225404526,1879706890,1952805488,543319049,1748132656,862138412,1664101480,808216673,745038435,1751540528,1916471561,1915516005,744911973,1952805481,1347422733,1280591186,1696616005,606106993,1881156896,1952805488,168626701,757935419,1920226080,1936158313,218762542,1869770762,829714541,543319072,153562407,1634548489]},{"sector":5,"length":512,"data":[1881173609,1886220146,1762266484,1346314342,1879706957,1886220146,1679831668,589766754,990447911,1953460848,1702126437,1869426020,1881171300,1886220146,1695157620,1718183022,168626701,1886152040,543650669,1700946284,2036473964,168650100,543319049,1936941351,1818389861,959194981,1093077292,1684101920,1936028260,740777331,168645187,543319049,1836016423,1701994864,741944359,1126631712,1851879968,1629513063,1701995620,740782963,168645187,543319049,1836409895,959194992,654903596,2084723524,1564769367,1634884384,1566926702,1380133927,1718159885,1297104672,1678313997,1680285794,544238965,1702129257,1886745202,959194996,1143408940,1852383305,1920099700,544501877,1970234203,660436078,223494956,1650723082,1969497888,1277194349,740774980,654912569,1931496516,1667591269,544370548,1970234203,660436078,223494956,1684956426,168650345,543319049,1836409895,1129128048,1751326786,661547361,153893164,659375143,223494956,543582474,1431525444,168644688,543319049,1836409895,2019893360,1701650548,2037542765,741944359,1480861472,1752193824,1667855225,1633643617,1701995620,660435827,223494956,1684956426,168650345,543319049,1953391911,740782693,151596089,1629504807,1701995620,1528853363,1953720684,1126967133,151653714,656433764,1819044198,741944359,1176963337,1851879968,1814062439,661943145,223494956,1650723082,1869031200,741944359,1193740553,1631410976,1701995620]},{"sector":6,"length":512,"data":[542995315,1701995099,1869638497,1937010281,1126967133,151653714,656433764,544761192,795108449,660764019,153893164,1981827111,1702194273,1635131441,845509996,1380133927,1678313997,1764171874,1953853550,741944359,1227294985,1148999515,1869619293,740783218,168645187,1142974057,1163282770,1902452818,168636448,543319049,1634692135,1768300644,740779372,654912569,1633361996,1701995620,660435827,223494956,1684956426,168650345,543319049,1634692135,1702043748,1919906915,959194995,1277626668,1684300064,1936942450,1769104416,1931502966,1869898597,1868767346,661941877,223494956,1650723082,1869424416,740779382,151596089,1914719527,1701277281,1684300064,1936942450,1380133927,1718159885,1146047776,1413829445,222580035,1650723082,1702045472,1346576500,1869422677,740779364,654912569,2019237965,1417432700,2015895645,774778941,1310731318,544173629,743788614,859657248,1998599736,543716457,691484722,1380133927,1852115469,224815460,543582474,1447645764,1696617029,221257841,1650723082,1634608928,740779373,151596089,1528843815,1769104475,1564108150,1952542811,1768316264,1634624876,1528849773,1818718817,1567912809,1126967133,1695157586,1718183022,1678313997,1864835170,1970304117,959194996,654903596,2086099791,1881169220,544502383,1970037110,1126967141,151653714,656433764,1668248176,660890981,539769132,542123785,1684094299,1936028260,1528847731,1853189987,740777332]},{"sector":7,"length":512,"data":[168645187,543319049,1869770791,1684366691,1952805408,661549685,153893164,659705895,223494956,543582474,1447645764,1696617029,221257841,1650723082,1970349856,740783209,151596089,740774183,168645187,1768189541,151653734,656433764,1768383858,1919251571,741944359,542254857,1734701659,1702130537,1985683570,1702194273,740777309,168645187,1293969001,1431525453,168644688,543319049,1481461031,1734701600,1702130537,959194994,1378289964,1126967117,1695157586,1718183022,1718159885,1414546976,1381258063,1678313997,1176969314,1914721616,1936287589,661808500,153893164,1531859495,740777298,168645187,1702063205,1678313997,1176969314,1914721616,1936287589,661808500,153893164,659444263,223494956,1684956426,168650345,543319049,1735357479,543517799,540424243,1936156018,741944359,1481778976,1380133927,1678313997,1931944034,1668440421,959194984,654903596,1634869331,543516526,1953720684,1380133927,1678313997,1948721250,1701011826,741944359,1411844361,1631410976,1701995620,542995315,1970234203,660436078,223494956,1650723082,1920214816,543515489,1701080941,741944359,1297360649,2083543840,740777265,168645187,543319049,1634628903,1835365235,660958306,153893164,1528845607,1735287154,740777317,168645187,543319049,1701410343,1818632311,740782185,654912569,1126967126,1762266450,1380196454,1380275785,544302368,151653680,656433764,1953067639,1768300645,740779372]},{"sector":8,"length":512,"data":[654912569,1633362007,1701995620,660435827,223494956,1684956426,168650345,543319049,1769109287,1931502964,1869898597,740782962,654912569,1684086871,1936028260,1919164531,543520361,1952671091,1663070831,1953396079,1380133927,1718159885,1397572896,222580035,1650723082,1296377632,1818304595,1633906540,740779380,654912569,1663058264,1953396079,1380133927,1678313997,1160192098,1679840077,1819042149,1952539503,959194981,1478953260,1634213956,1701602414,1380133927,1678313997,1160192098,1830835021,1830842465,1919905125,959195001,1478953260,1869357133,1633904999,1634754412,1881171303,1769175400,1600938339,1701273968,1851877408,660958308,223494956,1650723082,1296377632,1701978195,1869376609,1702125923,741944359,1381508873,1851877408,543517796,1853189987,1126967156,151653714,656433764,542330181,2003789939,1635021600,661878132,539769132,659773479,223494956,1684956426,168650345,1059087977,168643920,543319049,168645187,543319049,1869770786,1937010797,757538874,540876839,1818322290,909669935,1685024045,656423781,1025517347,1869770784,1952671092,1831691365,577070191,223494956,1684956426,168650345,1919224333,1918985074,1679848549,1579622498,1920091424,153580143,1918985019,1965061221,543450483,1746957153,544238693,1954047348,1818584096,1953066345,168653413,1936028272,2036689779,543319072,1869437735,660432242,223494956,1678380298,1919249267,1679831154,1462181986]},{"sector":9,"length":512,"data":[1702127986,1869770784,1952671092,1920099616,740782703,1678380336,1919249267,1679831410,1428627554,1869507438,1965059703,661940590,168636460,1701540708,540177010,656433764,1986622020,1869488229,1701978228,662266977,168636460,1701540708,540242546,656433764,1852534357,544110447,1835888483,660893281,168636460,1701540708,540308082,656433764,1635017028,1920099616,740782703,1678380336,1919249267,1679832690,1395073122,543909221,1869771365,808200050,1935936013,1920099691,1650729015,1851074336,2003791467,1701650542,543254884,1701869940,221260839,1802724362,947024485,543319072,1667584807,544370548,544501614,1853189990,808200036,1935936013,1920099691,1650729017,1851074336,2003791467,1919230062,661811058,168636460,1701540708,543257202,656433764,1953067607,1634082917,661941365,168636460,1701540708,543322738,656433764,1684104530,1969317408,740783212,1678380336,1919249267,1679844210,1193746530,1919250021,1713400929,1970039137,740779378,218762544,1802724362,1936880229,543319072,1701540708,758149746,1701540708,741372530,1701540708,758215282,1701540708,221278834,1650723082,1802724384,846361189,1802724397,812806757,1802724396,863138405,1802724397,812806757,1678313997,1935941730,1920099691,1935945012,1920099691,1935944752,1920099691,1935945017,1920099691,151653680,1679843940,1919249267,1680684658,1919249267,1680617586,1919249267,1680684914,1919249267,168636530]}],[{"sector":1,"length":512,"data":[543319049,1701540708,758674034,1701540708,741372530,1701540708,758739570,1701540708,221278834,1650723082,1802724384,1634890341,1802724397,812806757,1802724396,1651667557,1802724397,812806757,1678313997,1935941730,1920099691,1935945059,1920099691,218762544,1634038282,1735289188,543319072,1701978151,740779105,1997147440,1769236850,1679845230,539435106,1953067639,221260839,1769104394,1678337398,1764171874,1679845230,1702259058,168634144,1986622052,1952803941,543319072,740777767,218762544,543582474,1162104653,1129596243,168641613,946303853,540555312,656433764,909652024,540555311,1752459639,221260839,1735617802,154548344,656433764,540424312,1752459639,221260839,1601138186,158691430,656433764,661943663,1634208269,1885757299,1650729077,1176512288,740775248,1745489200,845116257,1679832888,539435106,657930290,168636460,1684366702,1735617907,543319072,1701731111,544433253,1563834488,1010501927,539831597,1768189805,1684367718,540485664,543452769,168634681,1684366702,1970300531,543319072,1701731111,544433253,1565872198,1862929703,1819243362,543519845,656433764,1935830875,1952803951,220683621,1684956426,168650345,1701972493,942895975,1650729014,942876448,1701978166,1864397671,221260839,1869444106,158557540,656433764,1667330676,1869422693,656434532,1836321293,1936024687,1650729010,540026656,1313415213,1629516628,656434546,168636460,1685024116]},{"sector":2,"length":512,"data":[1678324069,1948721250,1701011826,808200036,1836321293,811951215,543319049,1869770791,1936942435,740779109,1963593008,1702065518,1650723172,673195808,1937075829,657024101,168636460,1852377613,1936535668,1650729063,1766074144,1701079414,1920099616,740782703,1277973059,606547014,1762266407,1831957614,1679845235,1395073122,1818717801,1953705317,1763733605,1919251566,1953527154,1380133927,742804524,220668967,1953392906,1735617843,543319072,1701986855,1869638497,544501353,1702129257,1886745202,1126967156,1179397202,656680748,1718159885,1297104672,544370464,1129595203,1414416712,168638000,811825253,1735617846,543319072,1986939175,1684630625,1668312864,660956271,743588652,657213004,168634148,1768189541,1762266470,1346314342,1919885389,1413563168,1313425475,222507092,1668834570,1936540464,1650729063,1951606560,543908705,1819631974,1126967156,1179397202,656680748,1852115469,224815460,543582474,541937727,1126199919,1212372033,810831433,1695157572,1144021880,543650669,656433764,1701733703,543973746,1953460848,1769235301,1713401455,1953264993,1380133927,742804524,220668967,1684956426,168650345,1059087977,168643920,811825253,1735617861,543319072,1734430759,1634082917,661941365,743588652,657213004,168634148,1718159885,1129858336,1346982723,2019887629,1668246627,543319049,978535207,658329673,168636460,1768189541,218762598,1953459722,1886418291,1650728992]},{"sector":3,"length":512,"data":[1866671904,1851878765,1869488228,1970479220,1919905904,543450484,656436841,537463309,656433764,1953460848,1702126437,1869426020,220685668,1953459722,1886418291,1650729010,743588640,657213004,168634148,1868853102,1954047347,543319072,1769414695,1970235508,543236212,542330692,1702131813,1919247470,1380133927,742804524,220668967,543582474,1347635524,1263488840,1885604365,1869113709,1679846255,1143414882,541674832,1920233061,1869095033,1684368239,1701716012,1852121207,1031369332,1678380327,1751739760,829124463,543319072,1600085799,1600076383,740777823,1277973059,1930038598,1600485993,1768779876,1802465128,1970365728,757081120,1836082208,1869572201,1695157611,1718183022,1836190221,157774701,656433764,1818322290,1685024045,808200037,1634142733,1920427380,543649391,656433764,1702125927,1953459744,1667457312,1769173861,660958306,168636460,1768189541,218762598,1851876106,1769109364,1885496692,543319072,1851867943,544501614,1953067639,1919033445,1886085477,1953393007,221260839,1879706890,1952935794,1679846770,1380130914,742804524,1869762599,1835102823,1919251488,1634625901,543450484,168634152,1735357040,1953069157,543319072,1600085799,740763999,1277973059,606547014,1846152487,2019915631,1650723173,1480927008,1768300613,544433516,1852727651,1646294127,1920409701,1702130793,1126967150,1179397202,656680748,1869482509,1835101798,1650729061,1867392800,1818846752]},{"sector":4,"length":512,"data":[1835101797,1768366181,661546358,743588652,657213004,168634148,1936553847,1678324071,1462181986,1769236850,606103406,1997147431,1735617911,1650723122,1646274336,1936028793,1380133927,742804524,220668967,1936286730,1819633259,543319072,1936278567,1969627243,740781164,1277973059,606547014,1862929703,1701733744,1679848050,1160192098,1919906418,168634144,1852141679,829583973,543319072,1600085799,1886330975,1852403301,1768300647,740779372,1277973059,606547014,1678380327,1919251311,1679831666,1176969314,543517801,544501614,1853189990,1126967140,1179397202,656680748,1868827149,1920099699,1650729011,1632642848,1847617652,1713402991,1684960623,1380133927,742804524,220668967,1936679946,896692837,543319072,1667449127,544437093,1768842596,740779109,1277973059,606547014,1678380327,1919251311,1679833202,1227300962,1718973294,1768122726,544501349,1869440365,740784498,1277973059,606547014,218762535,543582474,1129532741,168641613,758843917,1159736621,1696617293,1919906418,1920234272,1936158313,168626701,1853058405,1678341231,1160192098,1847612237,1763734639,1635021678,1684368492,221260839,1936549130,863138405,543319072,1851869223,543517796,544501614,1853189990,808200036,1835338253,1920099699,1650729012,1850287904,1768710518,1969627236,1769235310,740781679,1695157552,1919251309,1679832434,1311187042,1919295599,1746953573,1818521185,740782949,1695157552,1919251309]},{"sector":5,"length":512,"data":[1679832946,1411850338,1818326127,1734438944,1696625509,1701143416,660890980,168636460,1702063461,540570226,656433764,1701147206,1734438944,1696625509,1701143416,660890980,168636460,1702063461,540635762,656433764,1634885968,1702126957,1919230066,661811058,168636460,1702063461,543257202,656433764,1768386380,543973731,1701273968,1953853216,543584032,1735287154,808200037,1835338253,1920099699,1650729058,1750083360,1667855225,1881173089,543516513,544503151,1914725999,1701277281,221260839,1936549130,2020766309,543319072,1397572903,1920099616,656437871,1835338253,1920099699,1679843704,1596399714,808200031,168626701,1702063461,544436850,807434084,808202284,1936549164,863138405,1936549164,879915621,1936549164,896692837,1697394732,1919251309,1697396594,1919251309,1697396850,1919251309,168638834,544695305,1702063461,744583794,1702063461,224555634,990514442,539831597,1769108595,544434030,1684370293,544825888,539771224,539771992,1629508184,1478517870,1868767309,1851878765,168653668,1635256845,158559841,656433764,1684955464,1629513068,1668246636,1684370529,740761658,2013924656,1936613732,543319049,1851869223,543517796,1818322276,1633906540,660890996,168636460,1851878776,1650723187,1867261728,1633904999,1634738284,656434535,1836583437,1601400417,829648752,1970365728,757081120,1634564128,168653678,543319049,543121191,1886413165,1948279909,1752178799]},{"sector":6,"length":512,"data":[1667855225,1881173089,543516513,2013924647,1936613741,1936683103,1902452786,539238517,1836589101,225668705,1650723082,1600071456,221260839,990514442,539831597,1769108595,544434030,1684370293,544825888,1663062872,1634561391,168649838,1937246733,812807283,543319049,1734430759,1919295589,543518049,656438369,168636460,1937246733,829584499,543319049,1851869223,543517796,2013924647,1920234355,1679843633,1596399714,543121247,544432488,2013924647,1920234355,1679843889,1596399714,543121247,1701273968,1818304627,1633906540,660890996,743588652,168642124,1702521203,1936947295,540111476,544567653,539828260,1953723256,168636786,1937246733,846361715,543319049,2036887591,1633905011,1634738284,656434535,1937246733,846361715,1650729057,1600071456,1931492640,1701668709,656438382,1937246733,846361715,1650729058,1600071456,538992479,1930038567,1600485993,1953723256,1696608882,606106993,2015374624,1920234355,2013924658,1920234355,1679844146,1380130914,222710828,2013924618,1920234355,1650723123,1864378144,543236198,1635020660,740761708,2013924656,1920234355,1679845232,539435106,542330181,661086576,168636460,1953723256,543451250,656433764,1397572896,1851877408,740781156,2013924656,1920234355,1679843635,1697063010,1634214003,1646290294,544105829,1869376609,1702125923,808200036,168626701,1869509496,544434032,656433764,1830842222,1634758753,543517794,1701273968]},{"sector":7,"length":512,"data":[1126967155,1179397202,1937246733,1718383203,543319049,1277973059,221260870,1695157514,1718183022,1296382752,1145914195,168626701,757935419,1634493984,1713402727,1763734127,1920234350,1769235317,1864396399,1634887024,779314286,758843917,1176513837,1953722985,1701344288,2053731104,221148005,1326058762,1279352656,1902446924,808722549,990453864,1702132066,1919907631,2003054436,543453807,1919250543,543452769,1970234152,1646290028,808656997,1969365096,774774900,168634670,828330063,540160822,544567653,543698997,1870084873,1864393842,2003050610,543453807,1919250543,224685665,1599098634,1902446904,808853621,990453864,1702132066,1701867296,1684955506,1347357197,154546527,544567653,543698999,1870084873,1864393842,1634887024,168649838,861884495,1902446898,808984693,990453864,1919907684,1886330980,1851880037,1326058852,875978576,1970365705,1747990816,1899694368,1685221239,1701867296,1684955506,168626701,1398755407,541416009,544567653,1096765519,990465100,543516788,1702326124,1864397939,1752440934,224752485,990514442,539831597,1936025684,1886330981,1851880037,2037653604,544433520,1684366702,544175136,1663067490,1768058223,543450478,1752459639,1931501856,543521385,1734437990,990514478,539831597,1701081711,1970086002,1830843507,1751348321,1702127904,1763734381,1935745134,1835687789,539767152,1953786210,1629512289,1679844462,1784640361,221343853,1326058762]},{"sector":8,"length":512,"data":[1296654160,1695091021,807433585,1765476617,1684368749,1702125929,1347357197,156062303,1970365705,151597600,1734701627,1835363631,1347357197,151604575,544567653,990447924,544040301,1953849896,1953459744,1734701600,1326058793,1599233872,155471693,544567653,990447926,1768383858,1919251571,1701060652,1836213620,1684369001,1869768224,1330454637,793911364,1634738253,168653938,1298092111,1397114447,1970365705,151599136,1835363643,544830063,1936090735,540767333,778514021,828055596,1563702066,1347357197,151605855,544567653,151597105,1734701627,1918988320,1718558836,1734701600,1835363631,1954112032,1326058853,1599233872,155468865,544567653,151597617,1734701627,1702130537,1679830130,1919251557,1701734765,1919295588,1763732847,1920234350,1769235317,1646292591,224752761,1599098634,151607361,544567653,151598129,543973691,1629516399,1919885432,2019648800,168626701,757935419,1701336096,1679844723,1948741231,1701146144,543236196,1702521203,990514478,539831597,1701081711,1970086002,1830843507,1751348321,1702127904,1763734381,1935745134,1835687789,539767152,1953786210,1629512289,1679844462,1868526441,1650553968,990514478,539831597,1768186977,1852795252,2037148769,1919885356,544367972,1327523439,911040336,539828276,1180651599,1162695233,1936269389,1702065440,990514532,539831597,1948282473,1701601889,1836278048,2053731167,225277294,990514442,539831597,1970037110]},{"sector":9,"length":512,"data":[540024933,1965060969,543450483,1948282740,1768780389,1702125934,544104736,1919250543,543452769,1953720684,1931487264,1830839653,1869767521,1819307808,168634656,1298092111,151598134,544567653,990447922,1897934880,1685221239,1835363616,544830063,1935830824,1952803951,220807013,1599098634,1330398797,1695110209,874542449,540739849,1818632241,544498031,1869440365,168655218,1298092111,1112887108,1695106380,908096881,540739849,1868832818,1701601909,1701998637,1769171299,1713401455,1952542572,1835363616,226062959,1599098634,154155085,1970365705,151599136,540221499,1954112116,1701650533,2037542765,1347357197,1482181983,1902446857,808525941,540739849,1701650484,2037542765,1769154592,1965057402,1869507438,220819063,1599098634,1297236294,1695108421,824210801,990447922,1830827296,1919905125,1634082937,792080754,863134054,1869619250,1702129257,1326058866,1095130960,1296910674,1970365705,154415392,908081929,1918985760,1714370097,842232417,1835886880,1634296933,168650100,1381978191,540560453,1970365705,154546464,924859145,1954112032,1684086885,1936028260,1701978227,1769234796,1948280182,1346969711,1347357197,1279611487,842217009,1970365705,154677536,941636361,1919907616,1919885412,1870095392,1629512818,1701995620,1914729331,1952541797,543520361,1226862452,1326058832,1127309136,153111368,544567653,151597106,540614715,1667590243,1868963947,1414733938,220803368]}]],[[{"sector":1,"length":512,"data":[1599098634,155800659,1970365705,154284576,808532745,676614944,168634697,1130319951,1695091026,840988017,990447924,1126183217,168654930,1147097167,1695091026,840988017,990447926,1142960689,168654930,1415532623,1695091026,840988017,990447928,1411396401,168654930,1398755407,1163020101,1902446919,808657013,825952521,1702043700,1852140903,1701978228,1953720679,168653413,1230983247,944983373,1970365705,154284832,892418825,1734964000,2019893358,1684956532,1763730533,1684368749,1702125929,1954112032,1326058853,1296654160,153106509,544567653,151598131,540422459,1701670249,1952541028,2036473957,673211764,1701344367,1918967922,1830843239,1646295393,1680351333,1919907625,168634724,1298092111,151607373,544567653,151598643,540487995,225987917,1599098634,1397704787,1695111753,857765233,990447928,1931491377,1713402981,543646060,1629515636,2036430700,1752375411,1948284783,1931502952,224754281,1599098634,1695090993,874542449,990447920,824195377,1769154592,1701605485,1953702432,1735289202,1886330914,1919295603,1746955631,543519333,220819055,1599098634,1695090995,874542449,990447922,857747506,1347357197,156779615,1970365705,154416160,825375497,223888416,1599098634,151604291,544567653,151598644,540160571,168643651,1398755407,1695091028,874542449,990447928,1394619186,1948786772,1864396911,1868767334,1668248176,1869837157,1953702002,694903649,1347357197]},{"sector":2,"length":512,"data":[156451679,1970365705,154154272,875707145,223560480,1599098634,151606084,544567653,151597621,540357179,168645444,1163874383,1695091027,891319665,990447924,1159738930,1326058835,1397120848,1902446857,909451381,842729737,1397104695,1347357197,156452703,1970365705,154678560,942816009,223561504,1599098634,151606099,544567653,151597110,540619323,168645459,1347357197,1381258079,1902446857,1347362933,990458207,1936877926,1931616372,1852404340,1864376935,218762608,757938954,1850286125,1970435187,1869182051,1948283758,544498024,1702257000,544104736,1819307369,1953063785,1701867296,1684955506,1651864352,1952671082,544175136,1702043745,1852140903,1986994292,1769108069,168650084,757935419,1970219040,794981236,1830825079,1651734127,539785007,1936747875,746008418,1685023776,1999594099,1819811884,774468705,168626701,2019979888,543318388,807428708,745039158,1751529008,1630543916,808216628,745026913,912338976,1630547048,539781175,1751343408,1684090924,807414888,224933732,1281314826,1695108677,606106993,1881156896,1954047602,168649313,758843917,1226845485,1920234350,1769235317,544435823,1952540788,1851876128,543515168,1684370293,1953068832,1163010152,1163013968,1378829648,1162760261,218762542,1885696522,1953720684,543319072,1751332400,1698050092,1630547048,808216628,745038177,1751343408,1163016969,1227366480,742544206,1414876960,539771475,1398165325]},{"sector":3,"length":512,"data":[1394617410,1112756052,1330389036,692212548,1598949901,1313883474,1696604227,606106993,1914711328,1768714341,168653939,1650728969,912338976,1630547048,151611493,1163016969,1378829648,1162760261,1296246816,742544208,1094931232,220807763,1381977610,1279348805,1902452812,539238517,1701978157,1936288880,218762612,1852377354,1685417059,1681662053,1735746149,778855028,1046703721,168626701,1852403823,544761188,1700946284,2036473964,168650100,1634872841,544762212,168638001,1684631663,540876920,151653680,1701864818,1092645985,1330466131,1762266436,1886330982,544760937,824210540,168650800,1851746671,543518049,1954047348,544567653,1280331580,1599361865,623656496,1684631663,1695157624,224752492,1600745226,1701667182,2019914784,1970365812,1347370016,1414744396,623656543,1684631663,1695157624,1718183022,1678313997,1768890466,1835101791,1862929765,2019846512,1864383776,2019846512,824191776,1695091213,225272942,1915619594,2020172897,221262112,1124732170,1414745679,1684956448,218762611,1163157258,1931498584,1701668709,168653934,1936941321,543518069,1144681316,1431261767,218762576,543582474,1330925638,223499347,1852377354,1685417059,1715216485,1936684144,1764651636,222192494,1684956426,168650345,1718159885,1297104672,168626701,1668574825,543976545,1953460848,1953701999,1818321764,2000298092,744780399,1870084640,168649842,1147079181,541152321,1835492723,225734245]},{"sector":4,"length":512,"data":[1818298634,544106345,1678380340,1701408112,2037544046,543450144,1681590576,543780208,1920233061,1869619321,544501353,1970562418,1684369010,544825888,1768779876,1936680992,1678380404,2003398000,1751348321,543450144,1678380336,1818588019,1679826953,154148983,1650811963,1701275509,544417650,1835492723,544501349,1096040772,1935870477,158098803,2003050528,990457888,1969382756,1919248231,1931506471,1701668709,1126200430,222643279,543582474,1128486981,223365459,1953392906,1768126565,1679827056,154148983,542132539,1763731049,1919251566,543973742,1701017701,1869182064,1762266478,2019914862,544432995,544695328,1127942448,1718165587,1953392928,1634628197,2019893356,1953523043,225341289,1684956426,168650345,1768779876,846033503,1679846768,540024932,2002874939,1685024032,2004033637,1751348329,1634038304,1869426028,1948280164,1919950959,1667593327,761554292,1701080941,1885604365,1885301101,1836200557,543581216,1916477488,1830844257,543515759,1953068915,1881172067,1702129522,1684370531,1685024045,1869881445,1634038304,1869426028,168650084,1768779876,2053731167,1679827045,540024951,2053731131,1718558821,2002874912,1685024032,1634934885,1931502966,1702125940,1718968864,225600870,1836082186,1836212073,544629107,807429220,1634876192,1869422711,1931502948,543520353,1952543859,1701978213,1831693409,224748655,1836082186,1836081001,544629107,807429732,1634876192,1869422711]},{"sector":5,"length":512,"data":[1931502948,543520353,1952543859,1919950949,1667593327,761554292,1701080941,1668483597,1668571506,1818588008,544695328,1933254704,1952543331,1931503715,1667591269,544370548,1684370293,1919903264,1918989856,1937076073,1920299040,1702063984,1678380403,862547312,538970418,807428708,1026571017,1647130161,1663071337,1852139884,1696607348,543519596,1647129139,1663071337,1852139884,1644825972,1867018062,1177709423,543319072,1765476656,840987758,1629498438,909196664,543700792,1852727651,1646294127,1869095013,1684368239,1769416736,544749934,544436068,746090338,1936671776,1064660293,1644825897,1950438211,538997364,543319072,1664813360,1701999221,1663071342,543515759,1920234593,1953849961,1143480421,1953063456,168635945,1684291938,540160882,1650728992,990457888,1919181889,544437093,1920234593,1953849961,1763716709,741417062,2003396640,677671535,695755877,544434464,1768710518,1762266468,1094918246,1229472596,825447502,1819216397,1953392996,538980659,807429732,1852115469,224815460,1094999818,1696612692,225666158,990514442,539831597,544501353,1746945586,1818521185,168653413,1701054989,845641058,168639046,1937076233,168650344,1886216969,746086688,926430769,1678380392,1684630896,1650553705,154821996,1933248777,1528853605,824922185,540032349,1746953833,543911791,1763722802,1869881459,543515168,1634953572,1684368482,1778977293,1178607738,1879640589,224817263]},{"sector":6,"length":512,"data":[1835665674,1935876208,1819237178,1714579812,1074400605,168639040,1818321673,1935876204,1819237178,1714579812,151653725,543452769,1630304353,151653752,544894570,168642112,1987013897,1919907616,1953505380,1935876210,1885625146,1852139885,729379444,1680629040,151653737,544632685,1685221239,1920233504,980640544,1836082267,1953391977,841709938,1936010333,1829308941,1679849071,1718561897,1952805734,1685679392,1701408112,2037544046,1879640589,543716213,168653667,1886351369,225666336,977289226,1762200077,225731954,1685679370,1701408112,2037544046,151653690,544632685,1530557283,1768779876,744305203,168651873,1818321673,1935876204,1885625146,1852139885,1568240244,1778977293,1178607715,1661536781,543976545,1953721961,1684827233,225013104,977289226,1913195021,224818277,151653642,909652526,168626701,757935419,1768710944,544501349,1702129253,543450482,1953460848,1702126437,1869422692,221144420,757938954,1852383277,1528838768,875262067,540876893,1701407843,1914729582,762077541,1701080941,223560480,1762266378,1635021678,1885629548,1881172333,224620402,1970276618,224487539,1869416714,1885479030,158364460,1650146057,909192048,540876893,544499058,1953721961,1684827233,745106800,1885494048,1563963691,745564477,1885494048,1563439659,225665853,1970276618,1679845491,151653747,544632685,1663858786,151653747,544632685,808220769,1749102640,1731922185,1629516901]},{"sector":7,"length":512,"data":[1952539680,1701060705,1769104243,1919906928,1919903264,1111835680,1931954005,1734701856,1953391981,1762200077,857764974,168650801,543386121,1635017062,1836082284,1920099689,1829308941,1679849071,2019634291,1829308941,1528854127,1702064995,1663851884,151653747,544632685,1936942171,744320101,168653668,1987013897,746087200,990447922,1869376609,540156003,1668506980,1953524082,225669743,1870137610,2019631218,225993004,1852377354,825434228,151653736,543387242,168642112,1635017062,1836082284,1920099689,151653690,544632685,875329633,1751541347,1762200077,840987758,168650801,221921344,1869416714,1935351926,1952543331,1702062179,1630297452,1950026104,1713399144,1953722985,544434464,1684370293,544432416,1634886515,543712116,1668506980,1953524082,168653423,1987013897,746086944,168654945,1919907849,746087200,168654947,824206953,1661536781,1528852589,1751343469,1566928489,153105196,544434491,1814066273,1953718629,941646112,909652784,151653695,1075864170,1695157574,224752492,1835206922,1683693680,862547312,808213810,1765476617,543236211,1647130161,1663071337,1852139884,168640372,544893449,168642112,1768189541,151653734,543384932,151615587,1702050569,543236212,1768778092,1718558836,1179010592,1179010630,168650822,221921344,1919879434,746087456,168636717,1987013897,746086688,942682160,151653736,544501353,224932147,1684080906,2019696740,151599148]},{"sector":8,"length":512,"data":[1701344315,1667592992,543452783,1701602675,1919906915,544434464,1701407843,1931965550,223560480,1870137610,2019762290,158884652,1752447753,1814066025,1953066345,544434464,1179010630,1702257952,1868963950,842211442,1953063469,151653747,544632685,808220769,1748512816,1762200077,857764974,168650801,1987013897,746087456,728785499,157102130,1701264137,1818435700,1953391977,1126200103,151653715,1819042147,1952805664,1684106610,151614052,1952805691,1935761952,151653733,544632685,1663858785,151653747,544366956,1630304355,151653752,544368755,942438499,1127942409,1701978195,1852399981,909189235,1953063469,1829308941,1629517423,808463480,224934192,1852377354,825434228,151653736,544632685,728785499,744304690,151615586,1952805691,1768710944,661941861,1396908147,168626701,1684824841,168626701,1987013897,746086944,1685221239,1920233504,1232100128,1397703790,224211499,1869416714,2019631222,168636972,1953392905,1748054816,1829308941,1528854127,1866755657,1818579827,2019634269,1718159885,1163089184,222381139,1869416714,2019696758,1919907628,1953505380,1885020274,725697619,168647986,1987013897,746086688,151653682,544501353,224932147,1869416714,1398481014,1699955012,1630297452,1695157624,1718183022,1829308941,1931507311,1718561897,1952805734,1852793632,1734701942,151653747,544632685,1311537251,1163087189,168645447,221921344,1869351178,225932132,1869416714]},{"sector":9,"length":512,"data":[1768169590,225993004,1869416714,2019696758,1768184620,151653725,544632685,841775201,1762200077,857764974,168650801,543386121,1635017062,1836082284,1920099689,1829308941,1528854127,744319332,168654945,1869573129,1111498864,168626701,2053731081,1718775909,990447904,1752397168,1768187168,1879640589,543716213,168651108,1919907849,745562656,168652898,1886216969,1885625120,842230125,221260893,2053769482,222707744,1852377354,1885479011,1762200077,1646289774,1074400624,168639040,1987013897,746086688,892351280,990447976,544499047,762798450,1701080941,1986097952,1953701989,543519841,1919181921,1702064997,151653747,544501353,224932147,1869416714,1870078070,1881171058,1528853108,1768779876,1936552543,808154721,2019765341,1829308941,1998616175,543453807,544371824,1836082267,1836212073,729178483,1647074610,151653752,1702521203,543584880,1832585481,1679849071,1685221239,1920233504,1885625120,1885301101,1986098029,1684352093,151653737,544632685,1685221239,1920233504,1885625120,1885301101,1986098029,1768172637,1829308941,1998616175,543453807,544371824,1530557284,1680568418,1600744816,1634954608,1563569014,225014572,1869416714,1870078070,1881171058,1528853108,1768779876,2053731167,1630297445,151653752,544632685,808220769,1748381747,1731922185,1914729573,1831696225,543515759,1953068915,1629513827,1701995620,1936028531,1762200077,857764974,168650801,1987013897]}],[{"sector":1,"length":512,"data":[1919907616,1953505380,1683693682,1600744816,1882353010,1563437933,225993516,1869416714,1870078070,1881171058,1528853108,1768779876,846033503,841706864,2019699805,1929972237,1885698665,153118322,1869429513,2003050614,543453807,544371824,1836082267,1836081001,1567453746,1768187180,1829308941,1998616175,543453807,544371824,1836082267,1836081001,1567453746,225010732,1869416714,1870078070,1881171058,1679848052,1650145907,1885612912,1885301101,1836200557,744305195,168651123,2053731081,1718775909,990447904,544239472,225010789,1869613322,1768169584,168626701,757935419,1869572128,1702043755,1634887030,2019893356,1953523043,1936617321,168626701,1987013897,745108256,1936090735,1696625765,1635017592,151653730,1702521203,543584880,1882917129,543716213,225993829,1970276618,1679845491,151653752,1702521203,543584880,2017134857,1696625263,1697413220,168654948,1919907849,746087456,168654948,1987013897,746087456,1936090735,1696625765,808477560,1077938701,151653690,1935961964,151653730,544632685,1630301282,151653740,544632685,1663858787,151653747,544632685,808220769,1748185138,1762200077,857764974,168650801,1684300041,746087456,811825253,2019896625,221261923,1835206922,1769152624,1717989164,544499059,1701080677,1635017592,151653730,1075864170,218762562,543582474,1129595203,1414416712,168636723,1987013897,745300512,224932147,1869416714,2019631222,808595500]},{"sector":2,"length":512,"data":[168650804,1953392905,1748054816,1929972237,1885698665,153118322,1869429513,2003050614,543453807,544371824,1684827995,863268457,1697406257,168654948,1987013897,1919907616,1953505380,1868243058,1852400748,1563505524,225993772,1869416714,1870078070,1881171058,1679848052,1650145907,1819224944,1953392996,841691443,2019765341,1929972237,1885698665,153118322,1870150409,1684349042,1684352120,151653752,544370552,1680636004,151653752,544632685,1865185380,1702061670,2037194868,863268457,151653681,544632685,1663858787,151653747,544632685,808217697,168650805,1953392905,1748054816,1852115469,224815460,151653642,1702521203,543584880,1882917129,1696624751,168654948,1886351369,225993760,151653642,544632685,841772130,151611462,1952802619,1953392928,1749430816,1634038304,1869426028,1981834596,1869898597,151653746,544632685,808220769,1747988530,1762200077,857764974,168650801,1886216969,746087200,1886613595,1567056484,1681590560,1998611561,1869095013,1763732335,1851859060,1918967908,1752440933,1634476133,1763734643,1751326830,1064200545,1778977293,1763736174,1714582638,1869901678,225669749,1869416714,2019827830,1919907628,1953505380,1868243058,845767788,1563437926,2013858317,1663070831,2019765368,2013858317,543647843,1999403107,543453807,544371824,1684827995,728117865,990469426,1852139636,1752069408,225144687,1869416714,2019631222,808595500,168650801,1953392905]},{"sector":3,"length":512,"data":[1748054816,1852377613,1852191348,1970238575,221934450,1869613322,1935941744,1879640589,224489583,1818429706,151653731,225731954,1124732170,1414745679,1734701856,1953391981,168626701,1986948963,1936156019,1650551840,1998613605,224686703,1678326538,1718558839,1952805734,1853190688,225665887,1678326538,1718558839,1952805734,1850306592,726880068,990514482,1428186729,1146307923,990514497,544695305,1936090735,1881175141,725697619,990514482,1768189541,151653734,1864398692,1702061670,1600200820,1919181921,168637483,544695305,1936090735,1679848549,1684300127,221522802,1297436170,1397179731,1970365728,757344288,1986948963,1936156019,221392681,1695157514,1635017592,1634476130,543974754,1702132066,1678313997,808460386,151653736,807428708,168650801,543319049,224932656,1650723082,1748381728,1678313997,1127227490,151653736,807428708,168650820,543319049,224937264,1684956426,1952675941,1814061665,1818583649,1634037280,218762610,1313817354,1696617555,225666158,990514442,539831597,1667331187,1919295595,1936026977,1297105952,2019893321,1953523043,544108393,1684955496,1936876908,792080672,1647129139,168653929,1480919565,909201990,1920234272,168649589,544695305,1969496120,1059594352,151653673,840988516,1886741536,692004896,1678313997,222240887,1346990602,544695305,1913261375,1678332739,222240887,1279685130,544695305,1913261375,1678331987,222240887,1397977610]},{"sector":4,"length":512,"data":[544695305,1158286655,827475544,1852121142,168653668,1480919565,842224198,1920234272,168649589,543450121,1969496120,1059594352,151653673,840983652,1886741536,692004896,1678313997,222240868,1229287946,1684277584,168640288,156451698,1059092324,1678313997,222240887,1178956298,1684277580,168640288,1347634546,543450121,1913261375,1678332755,222240887,2003044618,168640288,1380341829,1696608819,225666158,1695157514,808477560,151653690,1752397168,225666080,1970276618,1864394867,1702061670,1852383348,1936535668,151653735,544238954,1600354405,168654968,811825253,168639025,1937076233,1935941736,1879640589,543716213,1936090735,1763734629,1831957614,168650611,1886218761,1668834592,225998943,1668834570,221918000,1970276618,1679845491,151653747,1752397168,1717989152,544499059,863268457,224883565,1835665674,2019893360,2021154659,2019887629,976629859,1879640589,543716213,168653668,1937076233,1718558824,1952805734,1668834592,1936537136,151653735,544238954,1600354405,168654968,811825253,168639075,1937076233,1935941736,1879640589,543716213,1936090735,1696625765,1127244664,224883565,1835665674,2019893360,2021154659,2019887629,979644515,1879640589,543716213,168653668,1937076233,1718558824,1952805734,1668834592,1936540720,151653735,544238954,1600354405,168654968,811825253,168639077,1937076233,1935941736,1879640589,543716213,1936090735,1696625765,1160799096]},{"sector":5,"length":512,"data":[224883565,1668834570,980973663,1829308941,1679849071,1935879283,1935956794,1567384947,1879640589,1528852591,1601074546,1567911529,1661536781,1528852589,1768779876,744305203,151653680,544239472,168653668,2054056457,1668834592,2019504691,218762616,1668834570,2019505713,168639096,1937076233,168649064,1987013897,745562656,168652915,1937076233,1935941736,1829308941,1679849071,1935879283,1935956794,1567384947,1829308941,1629517423,1650142328,1160666480,827475544,1232219702,151653712,544632685,1529641058,777875554,1380341829,1915631153,168645443,1987013897,746087200,1567646299,1180189998,775303506,223102578,1869416714,2019827830,1885494060,1480928861,909201990,1347645998,1829308941,1931507311,1650142313,1160666480,827475544,1399991862,151653715,544632685,1567646299,1180189998,775303506,743654258,168653667,1987013897,1885494048,1480928861,909201990,1397977646,225666092,1835206922,1650139248,1648651849,808213863,1681590537,1948279913,1696621928,1885692792,1852795252,1667460896,1763734133,1684632430,1162092645,1061639490,1778977293,1936269434,1969382756,1701144423,168638001,1159751273,1396917080,168644681,1987013897,1852398368,1668834676,744321129,168654945,1987013897,1852398368,1668834676,744321891,168654946,1768189541,151653734,544632685,1567646299,1180189998,775303506,743459186,1936090735,1965061221,1852399461,168654964,1987013897,746086688,1886352475]},{"sector":6,"length":512,"data":[1567650655,1829308941,1528854127,777875554,1380341829,1915631153,1630294099,151653752,543452769,1702132066,1920233504,1885494048,1480928861,909201990,1279685166,1848389931,824210543,1701985033,544499059,168642132,1886351369,225992992,1835665674,1936269424,1969382756,1919248231,168638001,1701081961,1734833506,909206885,151653690,544632685,1567646299,1180189998,775303506,743459186,1936090735,1763734629,1953657966,168637038,1684955401,1954112032,1953505381,1650139250,1160666480,827475544,1181888054,741419852,544501614,1916471603,1952805733,541477152,1179918379,1829308941,1528854127,777875554,1380341829,1915631153,1865175123,1702061670,1701978228,1915646823,168645459,1987013897,1701993248,1915646823,744312905,168654945,1987013897,1701993248,1915646823,744313667,168654946,1987013897,1701993248,1915646823,744311878,168654947,1987013897,1701993248,1915646823,744312915,168654948,1987013897,1701993248,1915646823,744313683,168651123,1869613371,2019631216,154864141,544632685,1734701659,1148333683,1630297427,990514552,1987013897,745759776,168654945,1886351369,225666080,1685285130,1735746149,829580647,168639030,1886351369,151653729,1718904178,168626701,942878217,1695157558,842228600,980973663,1879640589,1634235253,151653732,544632685,745562725,225473381,1970276618,1679845491,151653747,544632685,1663857508,1683700339,1818588019,151653725,544632685]},{"sector":7,"length":512,"data":[746086757,1885496667,1480928861,842224198,1229287982,151653712,544632685,539785314,1885496667,1480928861,842224198,1396929070,1829308941,1696626287,1529641059,1567646309,1180189998,775041874,1279673714,1829308941,1696626287,1529641060,1567646309,1180189998,775041874,1347634546,1829308941,1931507311,1528835177,1567646309,1180189998,775041874,223564658,1869416714,1700470902,777875554,1380341829,1915630131,1663849283,151653747,544632685,1885496667,1480928861,842224198,1397977646,225666092,1835206922,1650139248,1648651849,808213863,1681590537,1948279913,1696621928,1885692792,1852795252,1667460896,1763734133,1684632430,1162092645,1061639490,1778977293,1936269434,1969382756,1701144423,168636979,1159751273,1396917080,168644681,1987013897,1852398368,1668834676,744321129,168654945,1987013897,1852398368,1668834676,744321891,168654946,1768189541,151653734,544632685,1885496667,1480928861,842224198,1229287982,1718561872,1952805734,1600484640,2020896361,1829308941,2021291631,2019648800,1869896492,1886609264,151653725,544632685,1885496667,1480928861,842224198,1397060142,1634020432,151653752,543452769,1702132066,1920233504,1650809632,1160666480,861029976,1165110834,824921158,1953459756,990458144,1702061426,1179918452,1879640589,1629515887,151653752,544238954,1701081961,1734833506,842232421,1936263693,1969382756,1701144423,221917747,1869416714,1700470902,777875554]},{"sector":8,"length":512,"data":[1380341829,1915630131,743459141,1936090735,1763734629,1953657966,168637038,1684955401,1954112032,1953505381,1700470898,777875554,1380341829,1915630131,726419013,1869491249,154345588,1936028219,1226863717,539697222,168642132,1987013897,1650809632,1160666480,861029976,1165110834,1865175123,1702061670,1701978228,1915646823,168645459,1987013897,1870095392,1881171058,1528853108,1936156018,1346990638,1634020445,151653752,544632685,1734701659,1131556467,1647074643,151653752,544632685,1734701659,1181888115,1663851852,151653752,544632685,1919907684,1953505380,1918574706,779315045,1565545330,2019845420,1829308941,1528854127,1936156018,1397977646,1769155677,154864141,544239472,168654945,1869416763,1918574710,779315045,1565738098,225993004,1829321482,1679849071,2019634291,1879640589,1679847535,1762266483,1650812019,1701275509,976368498,1879640589,1684107375,1678313997,909516898,151653736,1718904178,168626701,1953721961,1684827233,543780208,1885630053,168626701,1126196841,1212372033,861163081,1829375281,1953393017,1881157939,224620402,1835206922,2019631216,808595500,151611443,1952805691,1668834592,1769238629,1981836911,1869898597,168640370,544893449,168642112,1769238382,1919251566,1702130533,168639076,1886216969,980640544,1836082267,1563571049,168636460,544893449,221457188,1650723082,1748383264,990447881,544238954,1919907686,1953505380,1566253170,1778977293]},{"sector":9,"length":512,"data":[1679847533,1685221239,1920233504,980640544,1684827995,863268457,168647985,221921344,1835206922,1818370160,168636716,544893449,168642112,1886216969,745300512,151653683,1075870314,151653702,544238947,808217698,168650820,544893449,168642112,1886216969,745300512,224937264,1852442890,1869488250,1953393012,1936028261,224683380,977289226,1661536781,1663070317,1683700339,862547312,808213810,1778977293,723787898,151653683,908092004,151611446,1919499017,224687205,1919486218,168653925,1852406125,540095348,1885630053,1852115469,224815460,1762266378,1836069682,151653690,544238947,1530557283,1768779876,744305203,151653680,1075870314,151653702,908092004,168650806,1952805385,221519974,977289226,1913195021,543585381,1762266418,1836069938,151653690,544238947,1530557283,1768779876,744305203,151653680,1075870314,151653702,908092004,168650806,221921344,1919486218,168653925,772344333,909652024,168626701,1768189541,1346052198,218762573,538983178,1953392928,540160626,1313415213,842145876,1917855776,1634887535,1702109293,1852403058,694514785,1953392928,1970434661,1746957424,1818521185,221147749,538983178,1768444960,1936269427,1919903264,1111835680,1763723093,1818588020,538983014,1931965545,1663066400,1751348321,1819042093,1919903264,1701344288,1918989856,1937076073,1414416672,221458976,538983178,1684955424,1414416672,540291616,1819042147,1752440947]}]],[[{"sector":1,"length":512,"data":[1830843489,1864399201,1920295779,1886287136,1768187250,1650553955,1629518188,1851859060,1769218169,221144429,538983178,1634228000,1702305908,544171040,1881174889,1702126962,1948279918,1700929647,1663066400,1634561391,1763730542,1919251566,1952805488,673215077,1667852407,1702305896,1701994784,990514476,1763713056,543236206,1936614771,1780493413,544502645,1768169569,1919247974,544501349,1953656691,543584032,1835888483,694447713,544825888,1953785203,543649385,543516788,542135120,168650351,538976315,544372079,1701994864,1696625774,1818326385,544175136,544372079,544110447,542135120,1948282739,544498024,542330692,1936027492,1953459744,1701996064,1970217061,1701650546,2037542765,540740109,1752637472,1998614117,1970348133,539915369,1701336096,1868981618,1663067506,1920233071,1696623727,544433262,1746956405,543519333,1852139639,1852785440,1819243124,1701986861,1864395617,990514546,1629495328,1648435310,544502383,1092644457,1953656674,1952797231,1177516402,543975777,1931506537,1667591269,778331508,168626701,1920233065,221917746,1818429706,151587172,1701147195,1650553971,1752394092,1768453152,225666926,1869416714,2019631222,225665836,1869416714,1935941750,225993004,1869416714,1936924790,225993004,990514442,539831597,1819042150,1919448096,1751610735,544175136,1818520931,225472367,990514442,539831597,1768383810,1634541678,1663069801,1634561391,1814062190]},{"sector":2,"length":512,"data":[779120495,168626701,1818520931,544239471,1668248176,1829308941,1931507311,1952132208,1935634543,153116016,1936028219,1701998452,1635021600,673213283,1936287860,1937075488,1700929652,1919510048,220820595,1869416714,1700470902,1701999218,1865178484,1702061670,1835212916,1869573220,151653744,1752397168,225666080,1869613322,1936007280,1718159885,1230128160,542262614,807432549,1661536781,543976545,1701081961,1734833506,1869374821,1684366433,1778977293,1075870318,151653702,1819042147,1701995296,1684370529,2037214581,1802723700,1718172425,544173600,1802723700,544434464,1769235297,539780470,1634038371,1629513076,1836409888,1864399213,168650094,221921344,1684956426,168650345,1987013897,746087456,1936090735,1881175141,1886220146,168636788,1059087977,168643920,1818321673,1936269420,168652144,544893449,168642112,1987013897,746087456,1936090735,1881175141,1886220146,168637044,221921344,1684956426,168650345,1987013897,746087200,151653681,1819042147,1952802592,1701734764,1882917129,1886220146,543450484,1970302569,151653748,544238947,1126984801,151653714,544894570,168642112,1987013897,746087456,1935764571,1684890484,151653725,543384932,168651123,1886218761,1684890400,1074400561,168639040,1886216969,745300256,220674855,1701447946,1684890400,1886351212,1765476617,1868767334,1852140909,151653748,544238947,657222753,168634175,543517193,1852404336,1818585204]},{"sector":3,"length":512,"data":[990447984,1914725993,1702195557,1713402995,1746956911,225471589,1919879434,745300256,1330401108,223495511,1970473226,1818304610,660678444,1661536781,1629515885,1313156204,1145914180,656420128,168634209,543255049,1600417123,1869771365,990447986,1847617129,1914729583,1735353189,1702521198,151653732,225927779,1668811018,1646290792,2019634296,1661536781,543976545,1885956979,1835888483,151653729,543975539,824997986,1829308941,1679849071,1666919544,1768711277,1647015027,168648056,1987013897,1634491168,1835234419,1865178468,1702061670,1835278452,1684890489,1835207181,221917540,1869416714,1768169590,1717989164,544499059,1701734764,1953853279,1661536781,543976545,168654948,1784966499,976908397,1778977293,1663070317,1869374573,151613551,1667326523,1869881451,1701344288,1886352416,168626701,1818520931,544239471,1885630053,168626701,757935419,1853453088,544760180,1869771365,1634214002,1701602414,168636018,757935419,980314400,759780128,1920295742,1953391986,1634231072,1852383346,1852402720,1852399461,168626701,1600417123,1869771365,1919950962,168649583,1987013897,746087200,168651123,1651864329,746087200,1936090735,1814066277,1600482921,875261545,1627982349,1663067236,1885023352,1886220146,1852140660,151653725,544632685,1865181540,1702061670,1768693876,1868522862,168653941,1835206971,2019762288,926036268,154864141,1663066474,1700750445,1919906418,990447921]},{"sector":4,"length":512,"data":[1998612073,1701980005,1634038304,544828524,1936942445,1965057125,151653744,543387241,151615587,1970158345,1919246957,543584032,1667330163,1948283749,1802707055,168652905,1987013897,745300256,220667943,1701972234,1953702000,224555887,1684890378,1920099679,976319087,1829308941,1931507311,1718561897,1952805734,1920099616,1701994851,151653748,544632685,1932291171,1868921449,1919230054,1918985074,168653925,1885696521,1987013920,168649331,1818321673,1970282604,1768715124,151610734,1769107515,1931506798,1852404340,151653735,544238954,1920099675,1567909234,1835207181,1919246180,544370546,1885630053,168626701,1852404336,1818585204,168639088,1987013897,745108256,1936090735,1746957413,1836084325,168650611,1886152040,1886351212,168639024,1987013897,746086944,2019650907,1568108402,1701317133,1869377644,976318575,1829308941,1679849071,1718561897,1952805734,1852402720,1970233189,1745489268,1819307109,980447087,1812531725,1651729519,1661536781,1629515885,1579625580,151653671,1663067498,1835689069,151653744,544238947,959212641,1778977293,1075864942,151653734,544632685,1865185377,1702061670,1768693876,1868522862,824931445,151653686,1819042147,1650553888,225408095,1835665674,1701322864,1869377644,168652911,221921344,1953696010,224555887,1835206922,1818304624,223494956,1852442890,1701322853,1869377644,168652911,1667589129,225010720,1970276618,1646291059,151653752]},{"sector":5,"length":512,"data":[1819042147,1953853472,1852402803,151653733,544239472,168654946,1667589129,225993248,1852442890,1701322874,1869377644,221343855,1767995146,2036689780,151653690,544238947,1953459803,2037675105,540027997,1936276233,1685353248,1629515369,1818846752,168640357,2054056457,1818585120,1869573232,168636528,1936028681,1935351924,1970234484,744318580,157823032,544434491,1868854387,1629516917,1986356256,1063609193,1778977293,1701322874,1869377644,221278319,1869416714,2019827830,1717989164,544499059,1936028272,2036689779,1829308941,1663071855,1769155704,1718576506,1701998624,1701540723,151653753,1819042147,1685353248,225736047,1869416714,1751195766,1747988524,1762200077,824210542,168650806,1886218761,1818585120,1869573232,168636528,758843917,1092627757,1836016416,1684955501,1948265760,544829033,1702064993,1701601901,168636018,1147079181,541152321,1835492723,225734245,1628048650,1834970483,1818648430,158558049,807428708,1818639113,544434017,544370534,543516788,1835363949,1667853935,168626701,1598442817,540160836,1970365705,990458144,1647129139,1864397929,1685021552,1633955685,1864393076,1634887024,168649838,1598442817,1414086999,1970365705,168636960,1598442817,540160833,1970365705,990458912,1919181921,544437093,1919250543,543452769,857764713,1768041778,1091177844,1398752845,153109065,544567653,1950026040,1701995880,1629516583,1112101664,544106784,543516788]},{"sector":6,"length":512,"data":[1969713761,1953391981,1091177843,1298089549,155665747,544567653,543698993,543582523,1702043745,1919950951,2020173413,1935767328,1986619168,1646292581,1852645428,1852796261,168649577,1598442817,1397183302,1970365705,1747989024,1718172448,542328352,1193308783,1635197011,1852121203,1853189987,1701995892,218762596,1179468042,909198431,1902446880,808722549,825958504,1768041782,1886330996,1701080931,1952539695,1886330977,1851880037,1091177828,1096762957,156386372,544567653,543699000,1684300091,1936942450,1701867296,1684955506,544434464,1702259047,218762606,757938954,1633755181,1986098015,1885299813,1768318322,1851859064,1633755236,1734701919,1701998687,1937075488,1700929652,1852793632,1969448307,1702259060,1628048686,1634951009,1600415094,1717924464,1679849577,154148962,1229018939,1919885396,1346720288,539897390,1717924464,168654953,1935630689,1885300581,1678337394,154148962,1734701883,1953391981,1701998624,225995110,1829375242,1768777070,158295662,807434084,1684093705,1936028260,1935745139,1768124275,1684370529,1953068832,1752440936,1852645477,1852796261,168649577,1886347105,1701080931,544695305,1866139952,1685021552,1852383333,1713401702,1948283503,544434536,1769103734,225734241,1091177738,1414745673,1953701970,224621938,1634562570,158491748,544695305,1631258943,1701995620,1864397683,1886330982,1851880037,1768366180,1735289206,1701344288,1294946848,1954112032]},{"sector":7,"length":512,"data":[990514533,539831597,1835492722,1629515109,1931502702,2036490857,1830839668,544502645,1663067490,1702063727,1769239907,168650102,1835492722,151612773,1059086948,1869429513,1701978212,796008551,1634738285,1864397938,1852383334,1970435187,1869182051,1930038638,2036490857,153118068,1059086948,1230191369,2036473922,168650100,1634561385,544367716,544695305,1631258943,1701995620,1864397683,1886330982,1851880037,1768366180,1735289206,1701344288,1835886880,1931502693,168650356,1684109432,151614052,1059092324,1684093705,1936028260,1718558835,1684300064,1869182057,543973742,1718973555,990514534,539831597,1836280164,543712097,543452769,1818652004,544434017,1953723757,543515168,1936617315,1953850213,224753257,1936286730,1751343469,1650723104,990461728,1701869940,543584032,1668248176,1869837157,1701716082,1684366437,1835272717,1734437990,1678319731,155132002,1634494011,1713402727,1696625263,1634890872,1869770784,1936942435,1713402479,1970561381,225666418,1141509386,1329815373,153113168,544567653,1832585521,543716449,1919971171,1936024431,225603443,1598899210,156781901,1970365705,990458400,542657869,1702131813,1869181806,168653678,1886325261,1701080931,158494559,1059086948,2019900169,543257204,1937008994,544106784,543516788,1868787823,168650084,1769173103,151610746,1059086948,1769159433,1864394106,1752440934,1864397673,1634887024,1852795252,540157984,874541679]},{"sector":8,"length":512,"data":[1980370217,1818653281,158558049,1059086948,1818639113,544434017,544370534,1936287860,1918989856,1953390953,168626701,1599226198,1262702412,1162625601,1970365705,990458144,1769103734,544501345,1814066025,1634427759,224750690,1380013578,1146047839,1695108434,840988017,1718172425,1701344288,1931961714,1293967648,1377846351,1746947375,224752229,1380013578,1514754911,1447642975,1902446926,154411125,543582523,1769152609,1998611834,1730179937,1852143209,1096157709,1230200658,1330011994,155468626,544567653,1765476664,1852776550,1864399212,1931502958,543521385,1881174889,1768780389,1684370548,1096157709,1230200658,1162764122,1695106117,824210801,991979568,1998612073,1701716069,1948279909,1931502952,224754281,1380013578,909198431,1902446880,808591477,1765482600,1886330982,1851880037,1769152612,1763730810,1331110003,168641618,1599226198,540160836,1970365705,1747989536,1718172448,1701867296,1684955506,2053731104,1936269413,1331119136,168641618,1701972493,2053731185,1678319717,155132002,2053731131,1752440933,1948284001,544434536,543650401,1970235507,1646290028,1091177829,1414745673,1852121170,168653668,1767967245,1313423625,542266451,222183228,1594494218,1096040772,1684956448,218762611,1313817354,1931498579,1701668709,168653934,1718159885,1146047776,1413829445,222580035,1864383242,1819243362,543519845,1953721961,1952675186,1936617321,1701994784,1313162784,1176513609]},{"sector":9,"length":512,"data":[1230195012,1397104684,1297110085,1330389036,1279345729,841490508,740898360,1095715872,1280065860,942876704,539765046,542527309,744973682,746082900,1448037664,2018661408,1734701612,1600195085,1953718895,1678336609,1680875639,1748002146,1650733100,745025893,1700946992,824993844,745026864,1748447281,875704620,842083432,990472246,1869832815,1702126956,1936615712,1668641396,1852795252,1685021472,168653669,1651466084,1650553971,544695305,1196443219,1347768146,875703123,1179852844,1330792272,726880341,824914994,1179852844,1330792272,726880341,875246642,151587341,1394636644,1397899600,1094868805,892028243,1347625004,1163088449,1396785759,741813061,1095783200,1598378834,1163084098,1748251179,1347625004,1163088449,1396785759,909257541,1862929768,1634562914,153118819,824205924,841756972,858534444,875312172,1634548489,1701847160,1936289138,1818388851,1634541669,1852401763,1868963941,1752440946,1650532453,224753263,1145980170,168642121,1869416973,1953329764,1678336609,825303138,824979500,741354547,808203569,741617964,990447920,1568170587,1650139180,539778416,1567188059,1935351852,168648041,1650723081,741683488,824980273,858860596,741683500,824979761,825306164,1650146057,1768172400,1650142301,1769155440,1650142301,1768172408,1650142301,1769155448,218762589,1835098378,1735549279,1650723187,660678432,223494956,990514442,539831597,1635086661,544433524]}],[{"sector":1,"length":512,"data":[544370534,1936875888,1629512805,1836410738,1937010277,1953701932,1684370031,544106784,1314017359,1818635844,225666913,1091177738,1147094866,1178948165,1970365705,990458144,762212206,1701670249,1952541028,1701650533,2037542765,1717924384,1852142181,168650083,1598509633,1380208461,1902446925,154280053,543582523,1982293367,1868767333,1953853549,1948279909,1293968744,1377846351,1646284079,224752761,1196572938,1398098527,1195725396,1970365705,990458912,1869815905,1914728300,1936287589,225600884,1196572938,1229281119,1163019346,1902446919,154673269,543582523,1931965545,1931501856,1701668709,1914729582,1936287589,544367988,1126199919,1696607314,221143924,1196572938,1296910687,1695106117,824210801,991979568,1763731049,544417652,1953723754,1847615776,1700949365,1091177842,1180649298,1145131585,1695109700,840988017,991979568,1763731049,544417652,1948280431,1713399144,544043631,2021161080,2038004026,2038004089,218762617,757938954,1866866733,1634017394,1864394851,1634887024,1948279918,543518841,1948282473,1713399144,1869376623,1735289207,1650553888,539780460,543516788,1936877926,2036473972,1763730804,990514547,539831597,543516788,1937008994,1952522284,1634036768,1864397939,1864394094,1752637542,543712105,1953723757,543515168,1936028272,997486181,1701344288,1667592992,543452783,1948283753,168650088,757935419,1953063456,1818304627,1718558828,1768453920,1830840419]},{"sector":2,"length":512,"data":[544502645,1629513058,1852142434,168636020,757935419,1701344288,1702127904,1763734381,1768038510,1650553972,1937075488,1700929652,1685221152,1684370021,1835627296,1634298985,1869881458,1836278048,1886218847,1851858993,1768169572,1835687795,221131120,1644825866,1635021929,1634476130,543974754,1702132066,1678313997,1379999842,1296654151,155469133,1329269001,1296654160,151653709,1092641380,1147094866,1178948165,1196572971,1398098527,1195725396,1347369737,223171167,1650723082,1196572960,1380271199,151602757,1347369737,168643935,543319049,1598509633,1414747466,155665746,1329269001,1599233872,222580557,1650723082,1196572960,1380271199,151602757,1347369737,1179602271,168645446,543319049,1598509633,1414747466,155665746,1329269001,223502160,1650723082,1196572960,1398098527,1195725396,990447881,1381978191,1145323871,1678313997,1379999842,1430937415,1163023443,151587143,1599098683,168646721,1678313997,1379999842,1162108743,155600210,540739849,1347362864,875973983,1678313997,1379999842,1162108743,155600210,540739849,1347362865,1279675743,223625551,1650723082,1196572960,1380271199,151602757,840973065,1599098656,1431258189,222645314,1650723082,1196572960,1380271199,151602757,857750281,1599098656,221263949,1650723082,1196572960,1380271199,151602757,874527497,1599098656,223893581,1650723082,1196572960,1380271199,151602757,891304713,1599098656,1297236294,168643909]},{"sector":3,"length":512,"data":[543319049,1598509633,1095909702,156386372,540739849,1347362870,1380009567,223169865,1650723082,1196572960,1296910687,151602245,924859145,1599098656,944522578,1678313997,1379999842,1296654151,155469133,540739849,1347362872,1279611487,842217009,1678313997,1379999842,1163353927,1380209225,153110341,958413577,1599098656,1263026993,1678313997,1379999842,1163353927,1380209225,153110341,808532745,1599098656,222909523,1650723082,1196572960,1229281119,1163019346,151593031,540094779,1130319951,151653714,1092641380,1465861970,1146243397,541541714,825952521,1347362866,223495263,1650723082,1196572960,1229281119,1163019346,151593031,540225851,1415532623,151653714,1092641380,1465861970,1146243397,541541714,825952521,1347362868,1195725663,222774610,1650723082,1196572960,1296910687,151602245,892418825,1599098656,1397574985,151653688,1092641380,1230980946,1145392461,990447881,1327511089,1296654160,168638541,543319049,1598509633,1380533591,1195725380,990447904,1327511345,1296916304,151653720,807428708,543712870,990447881,1327511601,1213423440,1514754895,168626701,543319049,1598509633,1162693961,151587140,1599098683,151653681,1092641380,1230980946,1145392461,990447881,861884495,1678313997,1379999842,1430937415,1163023443,151587143,1599098683,168646724,543319049,1598509633,1414747466,155665746,1329269001,1279483728,1678313997,1379999842,1163353927,1380209225]},{"sector":4,"length":512,"data":[153110341,1347369737,223630175,1650723082,1196572960,1229281119,1163019346,151593031,1599098683,168645443,543319049,1598509633,1380533591,1195725380,990447904,1147097167,151653715,1092641380,1465861970,1146243397,541541714,1329269001,1397055312,1678313997,1379999842,1163353927,1380209225,153110341,1347369737,223561311,1650723082,1196572960,1229281119,1163019346,151593031,1599098683,168645447,543319049,1598509633,1380533591,1195725380,990447904,1398755407,218762579,757938954,1886593069,1634296677,1886330988,1480859763,1279467564,1414733868,1396908076,1396973612,1397039148,1397104684,1397170220,1397956652,758843917,1696607533,2037544046,1902473760,1701996917,1718165604,879714592,1936269368,1952805664,1868718368,168650102,1935739405,1701994349,1836412519,1650551840,1646292069,224752761,1650723082,1195725344,743982175,1195725344,743195487,1195725344,743723871,1195725344,743654239,1195725344,743654495,1195725344,743654751,1195725344,743655007,1195725344,743655263,1195725344,223564639,990514442,539831597,1702521203,1635086624,1768319340,168653413,757935419,1107898656,1497513305,1881163092,168653428,757935419,1460220448,1331117391,1881162834,168653428,757935419,1963537184,1702065518,990514532,539831597,1464076596,1331119165,1881162834,168653428,757935419,1359557920,1464941911,541348431,225604720,757938954,154542125,1178422342,1413566284,1920233504]},{"sector":5,"length":512,"data":[1163012128,691293249,758843917,924855597,1028604937,1112887108,1881163084,673215092,1279346002,168634680,757935419,1409890336,1112816962,541414489,544371824,1095062056,691024204,758843917,958410029,1028150025,1380927571,990514516,539831597,1277177905,1330396495,168642382,757935419,540094752,1312638286,542261573,225604720,757938954,842080301,1027687968,542261574,225604720,1393167626,1314871881,155536975,544567653,1393167664,1113545289,155538521,544567653,1393167665,1465866825,155472463,544567653,1393167666,1147099721,1146244951,1970365705,168637472,1599752531,1380931409,1902446916,221585525,1514754826,1330398815,1695110209,908096881,1230178829,1329880922,1162625621,1970365705,168638240,1599752531,1415135828,1902446917,221782133,1514754826,1330139999,1695110226,958428529,1230178829,1330405210,1695106894,824210801,1393167664,1314871881,156385605,544567653,168636721,1599752531,542261574,1970365705,221393184,1930038538,1952807529,1835101795,543319049,660161063,1331111724,1462184999,657205071,740775748,660033831,1279665964,1143417895,657205071,740770388,659051303,1330390828,1311190055,657205061,220676422,990514442,539831597,1702521203,1868963955,1347362930,875973983,1347362860,1279675743,743719247,1599098656,1431258189,742739010,1599098656,741357645,1599098656,743987277,1599098656,1297236294,168643909,1935739405,1769168749,1836412538]},{"sector":6,"length":512,"data":[543319049,1599752531,1380931409,1394617412,1180654153,1413566284,1230184492,1329880922,1162625621,1230184492,1112825690,222647385,1678313738,825040994,1230184492,1095130970,758843730,540876849,1701736302,168626701,1397641027,1852121172,168653668,758843917,1998597421,1702127986,1954112032,1852383333,541868320,1109421940,1163603800,743982173,1701344288,1852383342,1835364963,544501349,1146963291,218762584,1769109258,1935762804,1919950957,168649583,1818321673,1920409708,1835365481,168652133,2053731081,1718775909,990447960,543387241,225993829,1852377354,2019827811,1913195021,168653925,1953067639,1836278117,1684956448,218762608,757938954,1920409645,543519849,1646286915,1936028793,1869768224,1396973677,541676346,1109421940,1163606616,223888477,1997147402,1702127986,1852666721,1869770784,151653731,2054710122,2003791392,1702127986,1077938701,151653690,1935961964,151653730,1819042147,1769109280,1935762804,151653741,1886351212,222445600,2003791370,1702127986,151653690,225731954,1769109258,1935762804,1696624237,225469550,1628048650,1919950945,168649583,1987013897,1919245088,1952805490,1718561885,1952805734,811688224,151653681,544238947,1126984801,151653714,1629513066,540094561,1765476617,1852121190,1718558820,1852402720,151653733,544632685,1529641058,1936156018,1396929070,1681590621,1969317477,1931506796,1701668709,1948284014,1937055855,1628048741,1630548065]},{"sector":7,"length":512,"data":[151653690,1819042147,1952802592,1919181921,1731922185,1629516901,1701995620,1763734387,544175214,674920546,2019830117,1661536781,543976545,1701537891,151612527,1886938427,544498533,543452773,1814062703,543518313,1701995880,1929972237,1885698665,156788338,1869429513,1633362038,1684300127,1563437938,2019845420,1829308941,1528854127,1684103009,808153700,2019830877,1634941705,1948280182,1629513064,1701995620,168653683,1987013897,1919907616,1953505380,1633362034,1684300127,1563700082,225993260,990514442,539831597,1768383810,1869357166,1864396911,544367990,1970302569,1768693876,779314542,168626701,825254241,151653690,544632685,1529639027,1601204084,542994547,1701985033,1919906931,1752440933,1953701989,543908705,1768453160,1835606131,1701407856,1869488243,1701978656,220799604,1869416714,1768169590,1717989164,544499059,1701734764,1953853279,1829308941,1629517423,1633365112,1684300127,1563700082,1661536781,543976545,2004378984,224686703,1869416714,1818304630,658122540,1929972237,1651732340,1829308941,1528854127,1601008481,1717530221,1936154988,221260893,1869416714,1885479030,1717989164,544499059,2004378984,224686703,543582474,223170623,1869416714,2019696758,1600215852,1919181921,224212011,1633880330,1730178156,1702065253,1953784172,151653746,544632685,1396925019,1920234561,1818307677,1778977293,1178607738,1829308941,1646294639,1718561904,1952805734,2019911712]},{"sector":8,"length":512,"data":[1919907684,990514532,1987013897,1935760160,1852661613,1634494047,744321895,1598442817,221393732,1650723082,1748383264,1869429513,1634017398,1633365112,1684300127,168648050,221921344,1684956426,168650345,1987013897,746086688,1633640795,728917092,168647984,1818321673,1885479020,1829308941,1629517423,539438188,151653671,1936684147,151653730,1819042147,1952802592,1701734764,168636464,1886216969,745300256,168645187,543517193,1700749665,158624120,1718172425,1852793888,151653733,544238947,657222753,168634171,543517193,825254241,990447904,1663067753,1701670255,168653934,1987013897,1919907616,1953505380,1633362034,1634951009,1600415094,1717924464,744323177,1664819248,1918985580,1600217376,1702257011,1919967076,2020173413,1684955424,1600217376,1600611699,224752240,990514442,539831597,544499015,1835363949,1667853935,1684955424,1869573152,1953046635,779121952,168626701,842031457,151653690,544632685,1865181540,1702061670,1768693876,1868522862,990475381,1970562418,1746955890,543519333,1702127201,1330389106,1378831171,1395609669,1881163589,1768318322,151653752,1752397168,543781664,1933248777,543520353,1769172848,1852795252,543584032,1835363949,1667853935,1633749517,221918000,1835206922,1818304624,660678444,1778977293,1178607714,990447881,1847617129,1814066287,1919252335,1935762208,1701584997,1919251572,1661536781,1629515885,2049387628,151653671,1075863914]},{"sector":9,"length":512,"data":[151653702,543452769,1412197473,1347441999,151605829,1852793659,1953654134,544175136,1701867637,1633886322,168650099,221921344,1953696010,224555887,1869351178,224555876,1835206922,1818304624,223494956,1701447946,155598880,1765476617,1852121190,1718558820,1701735712,1768845165,151653731,544238947,657222753,168634171,543517193,168642112,1886216969,745300256,220667943,1701447946,222707744,1835206922,1818304624,658122540,1778977293,1178607717,1661536781,1629515885,1096035436,151653698,543518314,858808673,1077938701,151653690,1646293615,543519865,544371824,761881691,942431537,990472240,544499059,1751607656,544502629,544500066,1814062703,544502625,1918986339,543584032,1835363949,1667853935,1661536781,543976545,1885956979,154167415,1802713865,1948282985,1701716079,1713403000,1684825449,1678313997,1931502437,151653737,1752397168,543781664,1933248777,543520353,1769172848,1852795252,544106784,1970302569,1768693876,168650094,1869416763,1818304630,168636460,1953696059,224555887,990514442,539831597,544698222,1918985587,1830840419,1869440366,543385966,1814064745,225735529,151653642,544632685,1865181555,1702061670,1852645492,1953720684,1633749517,154809904,990447881,757935420,2019913248,1852645492,1852796261,168649577,1987013897,746086944,168651123,1684300041,745108256,990447922,1885956979,1701344288,1935746848,1650553965,1718558759,1952805734]}]],[[{"sector":1,"length":512,"data":[1829308941,1663071855,1769155704,1077938701,151653690,1935961964,151587170,1768649531,1869881456,1684956448,543584032,1769108595,168650606,1684955401,745300256,168651873,1936615945,155336736,1765476617,1869488230,1852121204,1718558820,1920234272,224882281,1668811018,1663068008,1769155704,1879640589,543716213,168654947,1651864329,746087200,151611763,2053731131,1718558821,1668312864,543515759,1830841961,1936288878,151653748,544632685,1865181540,1702061670,1768693876,1868522862,168653941,1885696521,1835212901,224555888,1869613322,1769152624,1778977293,1633755237,153105457,1718172425,1970234912,1763730542,151653748,544238947,1865181555,1702061670,1852121204,1852661604,1953720684,1778977293,1633755235,153105968,1701722889,1830843512,1869440366,224618862,1869613322,1769152624,990447881,1885956979,1936683040,1869182057,1852383342,1886284064,1814066293,224751209,828465418,221929779,1869613322,1769152624,990447881,1885956979,1936683040,1869182057,1718558830,1701735712,1768845165,1628048739,1647522145,151653690,544238954,1600417123,1869771365,990447986,1886220131,1852399980,1633749517,1769497951,168639092,1886218761,1684890400,1886351212,1681590537,543518319,1752459639,1768453152,1868767347,1851878765,218762596,757938954,1700208685,1970234912,1948279918,1830839656,1869440366,778266990,168626701,875651425,151653690,544632685,1865181555,1702061670,1935745140]},{"sector":2,"length":512,"data":[1650553965,1701264137,1752440948,1718558821,1952805734,1953392928,1935745135,1650553965,1627982349,1931502692,1650142313,168648056,540740109,1867391008,1769152631,1768910880,544437358,1948282740,1931502952,544501616,1629515369,1635020147,1868767330,1936028274,1684959088,543649385,1948282740,544434536,1835363949,1667853935,990514478,1411391520,1713399144,1634562671,1718558836,1701344288,1936941344,1818389861,1948283493,1701601889,544434464,1713402721,1869376623,221148023,538983178,1919501856,539784307,1919248500,1936269413,1953525536,1634627433,544828524,543518319,1948280431,1713399144,1869376623,1735289207,1954112032,221934437,1091123978,1147096403,538970434,1650728992,1701735712,1768845165,990514531,1297301769,156714079,538976288,1830844260,1869440366,224618862,1091123978,1147096403,538970436,1684283424,1701735712,1768845165,990514531,1297301769,1229018975,538976340,1701344288,1701735712,1768845165,1752375395,1684829551,1635021600,1998615666,543716457,1635197025,168653929,537463099,1763713056,1920234350,1769235317,221146735,1091123978,1147096403,538980915,1411391520,544434536,1629516649,758264608,544500066,1953721961,1952675186,544108393,1769103734,779382369,154864141,1598903105,540422468,538976288,1936287828,544434464,909189217,1953063469,1936615712,1668641396,1852795252,1918989856,1953390953,990514478,1297301769,1480671583,538976288,1701860128]},{"sector":3,"length":512,"data":[1818323299,1919903264,1296122144,1684955424,1145127200,1936615712,1668641396,1852795252,168639091,537463099,1881153568,807433333,1763731553,1868963950,543236210,1634100580,544500853,1919250543,778333793,154864141,1598903105,541541715,538976288,1936287828,544434464,1702043745,1852140903,1919950964,2020173413,990514478,1297301769,1129270367,1346720331,1768444960,1936269427,1277190432,541803343,1377858159,774787141,1919950894,2020173413,990514478,540740109,1750343712,539782757,1830841961,544502639,1702060387,1948265587,544434536,1713402729,1869376623,543450487,1864399202,1864394094,1869422706,1864394098,1752440934,1868963941,2003790956,224882281,538983178,1902474016,1668179317,539784037,1768189545,1769234787,1629513582,1852383342,1970435187,1869182051,1635131502,1851877746,168636020,538976315,1598903105,1262702412,1162625601,1886332960,1852795252,539585633,1768189545,1702125923,1752440947,1948284001,544434536,1953721961,1952675186,544108393,225337699,151599882,1819239968,544698220,1330389089,1881164611,1768318322,168636024,538976315,1598903105,1212367181,673188216,1769238639,1818324591,1852383273,1633904996,544433524,543516788,1936877926,1634541684,1852401763,1852776549,1768453920,1948280931,225667432,151599882,1936615712,1668641396,1852795252,1886413088,1701994853,168636004,538976315,1919907675,537484644,1936287828,544434464,909189217,1953063469]},{"sector":4,"length":512,"data":[1953392928,1919248229,1869422636,1931506803,1768843113,1633904998,1646294126,224752761,151599882,1919510048,539784307,1769367911,1092642670,1330466131,539631684,539697249,1998597218,1701995880,1763729952,1851859059,154864141,1852383241,544761188,1869901417,1701344288,1920098592,1864399201,1684957552,673216613,1768189545,1769234787,1948280686,168650088,537463099,746153323,544370464,1701869940,543584032,1919250543,543452769,1953720684,1629498409,1629512814,544434464,168653665,537463099,1819045734,980645743,154864141,758128649,154481970,1750343712,1864900709,1647142254,694514809,1936615712,1668641396,1852795252,990514478,840960265,892155445,538980657,543516756,1702326124,540549234,1937008994,1986619168,1752440933,1702043749,1684959075,1954112032,1718558821,154864141,538970377,2004099169,2036477295,1763730804,1920234350,1769235317,1646292591,1852401509,1735289198,1953068832,1714430056,168636008,537463099,758264117,540358453,1953055264,758259827,1634934832,1752637561,543712105,1634692198,1735289204,1768910880,1763734638,1920234350,1769235317,168652399,151587131,1752440864,1763734377,807936115,761804900,1751540784,1629498409,891315310,1730163501,543520361,543516788,1713402415,1684825449,990514478,891291913,774714935,538979886,892166440,791230007,1936269368,1701344288,1684957472,1763735653,1752440942,1918967909,544825714,1869768545,225669237]},{"sector":5,"length":512,"data":[151599882,673193993,1667852407,1768366184,544433526,543516788,1818322290,1818326560,1864394101,694231142,1851858988,1752440932,990514533,537463049,2003790880,1685221165,857764453,1953063456,1768366195,544433526,543516788,1713402415,1684825449,990514478,540740109,1650139168,1566930041,1750343689,1730179945,1936029289,1701344288,1667592992,543452783,1702132066,543584032,1818632289,1769234799,1881171822,1953393007,154864141,1852383241,1970435187,1869182051,1718165614,946090016,1027350632,1008754976,1680875581,221145190,168639242,538976315,1819045702,1852405615,1752440935,543519589,1629516649,1396777070,1313169229,2036473924,221144436,168639242,538976315,1701017669,1869182064,221934446,1091123978,1398754643,1629505349,1092641902,1281314131,1380664143,1629507653,1713399154,1869376623,543450487,1780513122,544502645,543518319,1702132066,1752440876,990514533,1701998601,544762214,1702132066,990514478,1297301769,742540383,1297301792,743916639,1684955424,1297301792,541344863,661548900,1701716084,1948279909,1700929647,1819239968,1702326124,2036473956,154864141,1954115169,1735289192,218762542,1297301770,1145980255,1902446880,1714430069,168650854,1598903105,151601732,544567653,1751475760,1396771341,1464098637,1902446857,1714430069,168650852,1598903105,151602244,544567653,1751344688,1396771341,1380933453,1695096903,807433585,224944742,1297301770,1229018975]},{"sector":6,"length":512,"data":[1902446932,1714430069,168650849,1598903105,540160836,1970365705,962998304,1091177832,1147096403,153105969,544567653,1748526640,1396771341,1094803277,1695096920,807433585,224933734,1297301770,1195725663,1902446880,1714430069,168650806,1598903105,1262702412,156255570,544567653,1748330032,1396771341,1330405197,1111575363,1695106380,807433585,224932966,1297301770,1128353119,1695102536,807433585,224932710,1297301770,1128353119,1695102280,807433585,224932454,1297301770,1128353119,1695102024,807433585,224932198,1297301770,1128353119,1695101768,807433585,224931942,1297301770,1128353119,1695101512,807433585,224945765,1297301770,1128353119,1695101256,807433585,224945509,1297301770,1128353119,1695101000,807433585,224945253,151653642,544238947,1702132066,1920233504,1769167648,1396780125,1330405197,1163021123,1664813392,1801676136,1919903264,1701735712,1768845165,1818632291,1646290785,224752761,1651116298,828465440,151593013,543582523,1701736302,1812531725,1651729519,990447881,544499047,543516788,1717924464,168654953,1651864329,745300256,1598903105,1262702412,156255570,1852793659,1953654134,544175136,221850928,1701447946,828465440,151593016,543582523,1262702412,544370464,777012562,168635950,2002936585,1678313997,1629512549,151653752,1629518442,540488033,1765476617,1702043750,1852140903,1919950964,2020173413,1396779040,1163091789,168634695,1667589129]},{"sector":7,"length":512,"data":[225992992,2053769482,828465440,151593014,543582523,543449441,1629516399,673213793,1598903105,693649729,1678313997,1629512549,151653752,1629518442,1597321569,990447921,1092642409,1147096403,168638001,1886216969,745300256,151653683,543514986,808608097,1765476617,1396777062,1380933453,1919885383,1297301792,541344863,1092645487,1147096403,1919885399,1297301792,222446687,1919879434,1935760160,1852661613,1634494047,744321895,990473313,1702257011,1179468064,842220639,544370464,1598442817,1414086999,540092448,840987247,1628048681,976564577,1778977293,1629515885,154218594,1869495049,1919950967,1936024431,1752440947,1918967909,1701672295,225670254,828465418,976314165,1862863373,1633362034,1834970483,1818648430,1567844193,1179468076,909198431,1762200077,1931502446,151587177,1768649531,1752440944,1396777061,860118861,2036473906,168650100,1886218761,811753760,990447921,544698222,1668248176,544437093,543516788,1969713761,1953391981,218762611,828465418,168639030,1886218761,811753760,218762544,757938954,1702043693,1852140903,1919950964,2020173413,168626701,925983073,151653690,1935961964,151587170,1952802619,1701998624,544762214,1970037110,151653733,544632685,1600217435,1600611699,1566929520,225206572,1869416714,1818435702,225206572,1919879434,1935760160,1852661613,1634494047,744321895,1598442817,1195725645,1879640589,1931505775,151587177,1952802619]},{"sector":8,"length":512,"data":[1936683040,1869182057,1852383342,1886284064,1814066293,224751209,1869613322,2019631216,990447881,1885956979,1812531725,1651729519,1661536781,1629515885,975645804,151653671,543518314,858874209,151653730,1819042147,1768649504,1768454000,168650100,1886216969,745300256,168645187,543517193,168642112,1886216969,745300256,220674855,1852442890,1633755237,224539441,977289226,1829308941,1679849071,1718561897,1952805734,1852402720,1970233189,151653748,544632685,1663855713,151653740,1936684147,151653730,544238954,926048609,1648036105,543908705,544370534,1701998445,168626701,757935419,1129270304,1919885387,1346720288,1701998624,225995110,1628048650,976761185,1812531725,1651729519,990447881,544499047,1717924464,1981839465,1702194273,2013858317,543647843,1529637985,1935630689,1684371041,1701998687,1568172390,1661536781,1629515885,221260908,1852442890,1633755258,157365041,1718172425,1701344288,1629513074,1634038380,1998616932,1629516641,1986097952,1881171045,1768318322,151653752,544239472,168651123,1886351369,225992992,1869351178,224555876,1835206922,1818304624,223494956,1701447946,845242656,151609648,543582523,543452773,1814062703,224751209,1835206922,1818304624,658188076,1778977293,1633755237,157364274,1718172425,1684956448,543584032,1701734764,1868769312,1852140909,168634740,1886218761,811688224,990447922,1801675106,1919903264,1919905056,990514533]},{"sector":9,"length":512,"data":[539831597,1969582928,1864396644,673215344,543650415,1679848047,2003054434,694445103,218762542,845242634,168639024,1886216969,1919907616,1953505380,1633362034,1634951009,1600415094,1717924464,744323177,151653680,544894570,858874209,990447969,1948280425,1701995880,1935767328,1881170208,1768318322,1919885432,1931501856,1701668709,540701806,1869771365,151653746,544239472,151611763,1701264137,1869619316,1769236851,1763733103,1852383342,544503152,1701734764,1929972237,1629512309,154348652,1480669961,1763717181,1919885414,824192103,543582496,539780196,1718165554,746021920,1763717920,1650729062,151653678,544894570,808608097,990447981,1847617129,1327527023,168642386,758843917,1344285997,1701015410,1327526771,1881163602,1685415283,1886330991,218762542,1633880330,1931504748,2003855723,1702127976,1661536781,1629515885,1380133996,1778977293,1178607717,990447881,1847617129,1768453231,168650606,1987013897,746086944,1633640795,728917092,990469428,1634100580,544500853,1835492723,225734245,1835665674,1633755248,157364272,1869036297,544175136,225472372,977289226,1778977293,1629515885,154218593,1701264137,1701716084,1814066296,224751209,1628048650,1630548577,151653690,544632685,1529637985,1935630689,1684371041,1701998687,1568172390,1969896224,1629516915,1701998624,746088806,1953459744,1735289192,1936483616,151653733,544632685,1865181540,1702061670,1768693876]}],[{"sector":1,"length":512,"data":[1868522862,168653941,1869902601,168649331,1886218761,845242656,218762551,757938954,1631854637,1763729780,1920234350,1769235317,544435823,792871976,1143953220,221129028,1628048650,1831875169,151653690,544632685,1865181540,1702061670,1768693876,1868522862,990475381,544503152,543516788,1702132066,1701322867,1998611826,544105832,1730176375,1948284005,225273192,1668811018,1629513576,2019699832,1832585481,1646294639,2019634296,1929972237,1646292072,221326456,1869416714,1885479030,2019711788,1684103467,1869902690,157102637,1952802619,1684300064,1936942450,543584032,1919906931,543516513,1953853298,224751209,1633880330,1931504748,2003855723,1702127976,1661536781,1629515885,1380133996,1778977293,1633755237,153106226,1718172425,1684956448,543584032,1701734764,168626701,825385313,151587130,758921993,1814048045,225472367,1835206922,1818304624,656549676,1778977293,1633755237,153104946,1718172425,1920234272,224882281,1835206922,1818304624,572989996,1778977293,1633755237,153104946,1718172425,1920234272,224882281,1633880330,1629514860,1952802657,990447977,544499047,1970151521,1769104749,543973731,1970037110,1852383333,1679847284,2019703416,1769152556,1763730810,544175214,168651875,1886216969,745300768,1530557283,825061474,1664813405,1634757999,1998611826,543716457,1702521203,1778977293,1633755239,153105458,1718172425,1702260512,1869375090,151653751,1734894456]},{"sector":2,"length":512,"data":[746086688,168654946,1818321673,1885479020,990447904,1919906931,1635131493,543520108,1092644457,1480666956,978863151,168646721,1886216969,745104416,1936090735,1914729573,1600938341,224685669,1634339082,845242656,151593012,543582523,1886680431,1814066293,543518313,1919252079,2003790950,2013858317,543647843,1647081569,151653752,544238954,909271393,1681590537,543518319,1752459639,1768453152,1852776563,218762597,845242634,168639026,1987013897,745038112,168651873,858939745,151653690,1935961964,151653730,544238947,1126984801,151653714,1629513066,540291681,1765476617,1852121190,1718558820,1852402720,151653733,544238947,1630301281,151653736,1629513066,540357217,1765476617,1852121190,1718558820,1920234272,224882281,1953696010,224555887,1835206922,1768169584,1717989164,544499059,1818322290,1684956511,1778977293,1629513058,154350177,1718172425,1953853216,544503152,1701734764,1953459744,1702260512,1869375090,1735289207,1633749517,221918258,1835665674,1633755248,157430577,1919236873,225603442,845242634,168639029,1685023753,168649331,909271393,151653690,1819042147,1768649504,1836016496,168636525,1886216969,745300256,168645187,1701734921,845242656,990447921,1847617129,1696625775,1864393838,1768693862,168650094,758843917,1159736621,1864393838,1768693862,539911534,1886339872,1953046649,544175136,1969382756,1701144423,1830843175,1919905125,218762617]},{"sector":3,"length":512,"data":[845242634,168639031,1987013897,745108256,1936090735,1814066277,1600482921,225736047,1869416714,2019696758,1600215852,1919181921,224212011,1769146634,1919968634,151607398,1987013947,2019845408,1600215852,1919181921,224210987,1869416714,2019827830,1600215852,1919181921,224210987,1869416714,2019762294,225010732,1970473226,2019762274,225014572,1633880330,1998613612,1702127986,1852666721,1929972237,1885698665,156788338,1869429513,1633362038,1684300127,1563437938,2019845420,1829308941,1528854127,1684103009,808153700,2019830877,1778977293,1629515885,221327457,1124732170,1414745679,1734701856,1953391981,758843917,1948265773,1701601889,1919903264,1970237984,1701734772,544175136,1919906931,543236197,1651340654,673215077,1701080681,1684283512,1680617789,741490039,859660900,1628048681,1935828065,1679847284,1953702007,1684299631,1869902636,746021983,1601139827,168649316,1397641027,1852121172,168653668,758843917,1377840429,1769239919,544433518,1931505524,1701998452,1646289184,795178105,1685221239,1870095407,221144178,151653642,874537572,990447881,1702521203,544175136,1919906931,1930038629,1683976052,168639076,1869902601,151615347,1953708809,543519343,2003050593,543453807,1970037110,151653733,1734894456,746086688,168654948,1869902601,168654707,1751349257,2019631207,225993772,1701972234,151653748,840983140,990447881,1702521203,544175136,1919906931,1930038629]},{"sector":4,"length":512,"data":[1683976052,168639095,1869902601,151615347,1953708809,543519343,1870078049,1981834354,1702194273,1913195021,168653925,543319049,151587121,2053731131,1869881445,1869902624,168650098,1601139827,221930084,1953696010,157447023,1933248777,1701998452,1646289184,543519865,1970037110,151653733,225731954,990514442,1210064928,543519333,1881171319,1701015410,1948283763,1092642152,1629504577,1092641902,1763724609,1920234350,1769235317,779316847,1750343712,1629518181,1931502962,1768121712,168651873,538976315,1948282473,544498024,2036689012,2036428064,1801548832,543236197,761622127,1702132066,1735549216,1852140917,1864379508,1869488242,673211758,1998614121,1751345512,1935762208,990514533,1948262432,1629513064,1836410738,544501349,1634100580,1937009781,544175136,543711536,1702109245,221129070,1628048650,976236642,1829308941,1528854127,1835363949,1868983913,1769155677,1634941705,1948280182,544434536,1919181921,225669989,1869613322,1769152624,1812531725,1651729519,1661536781,1629515885,1380133996,1778977293,1650532453,157364272,1718172425,1684956448,543584032,1701734764,1661536781,1629515885,992423020,151653671,543518314,825254497,990447970,1847617129,1696625775,1864393838,1768693862,168650094,808477281,168639073,1987013897,745108256,1936090735,1629516901,1633643873,158558066,1801545275,543236197,543711536,1969713761,1953391981,1778977293,1629515885,1630613602]},{"sector":5,"length":512,"data":[168626701,757935419,1869762592,1936942435,1919905312,543973741,1953721961,1952675186,1936617321,218762542,538983178,1919501856,1998615667,1634738277,543519602,1751343461,1735549216,1852140917,1852383348,1629515636,758264096,1702132066,1952539680,1818370145,543908719,1380994856,740901966,1869902624,224683378,538983178,1852793632,1969448307,1702259060,1629518188,1768693876,1868522862,539784309,1701734764,1953853279,741486891,1668572448,990514478,1411391520,544434536,1931506537,1701998452,1935745124,1819239968,1937207148,218762542,538983178,1768184608,538976349,1634485792,673215335,1598509633,1163019588,1696607302,690905972,540740109,1683693600,1563503465,1851072544,1684370293,540740109,1683693600,1563569001,1767055392,1629513082,1836410738,745827941,543582496,544829025,1648177448,744846457,2000499232,744780399,675099424,1937075829,740910181,1681732640,1685221239,990514476,1899836681,1685221239,1026957356,1634692198,924855412,1970234429,744844386,1950169120,1702132066,1027153964,1919903859,824192116,1869364528,539780974,1849504049,745693541,154864141,1715286577,740913761,1701147424,1514754848,2021161055,1684955424,2053731104,1852011621,168652129,538976315,728327259,538991923,1702521171,543584032,541347661,541929298,1886611812,1701011820,1953391981,540740109,1683693600,1563700073,1766203424,544502642,1768383858,1919251571,1919885356,1146047776]},{"sector":6,"length":512,"data":[1294946848,1954112032,1864379493,1970151538,1718558829,1684300064,1869182057,543973742,1702132066,990514547,1528832032,892037476,1394614365,1852793701,1701978212,1953720679,1864397413,1852383346,544761188,1768383858,1919251571,544370464,541215059,1702132066,540740109,1683693600,1563831145,1850286112,544761188,1952670054,168653423,538976315,728327259,538991927,1702521171,1718558835,1836412448,1936876898,1701994784,762474272,1746953317,224752229,538983178,1768184608,542980139,2003052576,694448751,1836412448,225600866,990514442,1176510496,1629516399,1836410738,1937010277,543584032,543516788,1836216166,2021160992,2037987960,2038004089,539785593,2021161080,544434464,1919906931,1763730533,1849434222,1043492213,990514476,1629495328,2032165998,2038004089,544831865,1008758377,1047360878,1411391534,1847616872,1700949365,1718558834,1954112032,1763734373,2037981294,2038004089,1763735929,1953702003,1684370031,225339680,538983178,1634758432,745694308,1763717664,1953702003,1684370031,544106784,1836412476,1046766689,1851858988,1768169572,544434464,1919906931,1763730533,2021138542,1919181921,218762542,1380994826,1931494478,1668641396,1818626573,158558049,1059086948,808139529,1678313997,222240866,2053731082,1735549285,543319072,725289279,1930038578,1684372073,1679848297,155132002,221457211,1768846602,168652399,828859762,543319049,725289279,1846152500,1684106613]},{"sector":7,"length":512,"data":[1650723172,990461728,673199147,1768186977,1852795252,1646292065,1936028793,1953701932,1684370031,544497952,846034286,1886726176,544175136,168634676,1935961701,1853164045,225341289,1920234250,168649589,845636978,543319049,725289279,1762266421,2019910766,543319049,725289279,1695157558,225666158,1836412426,2003044658,990461728,168637739,1935961701,1919879693,1970168933,1650729069,990461728,168638251,158168430,1059087460,942357257,1347357197,541347410,1935961701,168626701,825254497,151653690,544632685,1701735771,1718511981,1932287343,1933248873,543520353,1936287860,1684300064,1936942450,1879640589,1931505775,151587177,1952802619,1936683040,1869182057,1852383342,1852402720,1628048741,1630613602,151653690,1935961964,1628048738,1647390818,151653690,544632685,1865181540,1702061670,1768693876,1868522862,168653941,758843917,1109404973,1852401509,1869573152,1986994288,1864397413,1634887024,779314286,168626701,842031713,151587130,758921993,1847602477,544503909,1919250543,224685665,1835206922,1818304624,223494956,1701447946,811753760,151593011,543582523,543452773,1814062703,224751209,1835206922,1818304624,658188076,1778977293,1629513070,154415202,1718172425,1953459744,1684956448,543584032,1701734764,1650526733,221918000,1835665674,1650532464,151599417,544175163,1954047342,1634234400,168650099,1650526733,221918256,1970276618,1679845491,151593065]},{"sector":8,"length":512,"data":[1701602107,1864397409,1948284021,1663067496,1701999221,1327527022,1145983568,1869902624,1701273970,1701994784,151653729,544632685,1932294243,1868921449,1347362918,541347410,221388847,1870137610,2019631218,225993004,1701972234,1953702000,225932143,1869613322,1768169584,168626701,757935419,1634554656,1814064236,544239471,1919252079,1497506336,1344292180,539120212,543452769,1835492723,544501349,1717924464,1936029801,218762542,811753738,168639029,1667589129,225014560,1869416714,2019631222,1769167660,151653725,543452769,1412200545,1347441999,1465864773,1661536781,1528852589,777873764,1314017359,1769156164,1918985594,1230187623,1330536282,168641870,1701734921,811753760,990447927,1629513321,1634038380,1746958692,543520353,1769152609,1897948538,1768710517,1919248742,1109534752,541414489,575820880,774778412,151653673,1752397168,225010720,1869416714,1768169590,1717989164,544499059,1702521203,1634624372,151653741,544632685,1932294243,1868921449,1769152614,1668572538,544039278,221388847,1701972234,543518320,1935762291,151653751,544239472,168651108,1701734921,811753760,990447927,1847617129,1713402991,1684960623,1862863373,2019762290,225993516,1852442890,1178607738,990447881,1847617129,656438383,220676422,1869416714,1818304630,1769167660,224211499,1851853066,1818304612,1431262252,1380274256,1661536781,1629515885,1378298988,151653671,543518314,959472225]},{"sector":9,"length":512,"data":[1765476617,1869488230,1176969332,539447873,1970234152,1646290028,1701322853,1701077368,1634560355,168634732,221921344,1970473226,1818435682,2053731116,543584101,1702521203,1634624372,539959405,151653682,543647086,151612515,1868774153,1919252078,1869881460,539767072,741223982,221393184,1869416714,1683693686,1328438633,1145983568,2053731118,1735549285,225207084,1633880330,1931504748,1634756971,1634234476,1731922185,1869881455,2019913248,1869881460,225338731,1869416714,1751195766,1769167660,151653725,543452769,1412200545,1347441999,1465864773,1661536781,1629515885,1411853432,168634192,1701734921,811753760,990447925,1847617129,656438383,659706960,1661536781,543976545,1885956979,1752198241,990447969,1948282727,1701716079,1948284024,1852140399,1778977293,1629515885,221589602,1628048650,976695394,1661536781,1528852589,1935630689,1885300581,744318322,151653680,543518314,959472225,1765476617,1702305894,1919705376,2036621669,1986095136,543236197,1835492723,544501349,1717924464,168654953,1937076233,1768169576,1829308941,1679849071,1718561897,1952805734,1734701856,1634625394,151653741,544632685,1311537251,1195725663,1397179730,1913195021,1701736549,1633907488,168654707,1886351369,225010720,1852442890,1650532453,151599408,543582523,544501614,1853189990,151653732,1752397168,543781664,1933248777,543520353,1763731827,1633886318,1948280179,1701995880,1847620391]}]],[[{"sector":1,"length":512,"data":[1868767343,225341292,1869351178,225932132,1633880330,1931504748,2003855723,1702127976,1661536781,1629515885,975645804,151653671,543518314,942695009,1765476617,1869488230,1868963956,2003790956,1646290021,975642745,151653671,544239472,151615585,1768176393,1918985075,1634934884,543450486,168651123,1818321673,1802707052,1752658025,157643881,1802713865,1763733609,151653748,544632685,1865185378,1702061670,1919950964,2020173413,1953720684,891300640,1929972237,1646289525,2019765368,1829308941,1629517423,1650142316,151608696,1869573179,1886724203,1701344288,1701998624,544762214,1702132066,1829308941,1528854127,1935630689,1885300581,744318322,990473313,1702257011,544500000,2036430689,1778977293,1629515885,221589602,811753738,168639032,1886351369,225014560,990514442,539831597,1768383810,1634738286,1852404594,1634541671,1881173609,544502369,1629513327,1836410738,779382373,168626701,757935419,1919510048,1663071347,1801676136,1734701600,1702130537,168653682,1650526733,221919536,1970276618,1679845491,151593065,1701339963,1713400675,1931506287,544173167,1768383858,1919251571,151653747,544632685,1865181540,1702061670,1735532660,946692462,168638001,1987013897,746087200,1279352654,1195725388,943393107,758526255,544500066,1936156018,1702043692,1852140903,1701978228,539784039,1667592307,543973737,1936156018,1661536781,543976545,1701273953,1734701684,1879640589]},{"sector":2,"length":512,"data":[1679847535,151653737,1629512554,540291426,1765476617,1869488230,543236212,1768383858,1919251571,1862863373,1683693682,1328438633,1145983568,1634493998,539784039,1598509633,1414747466,222774610,1869416714,1683693686,1328438633,1145983568,1734701614,1818373169,1634941705,1914725750,1936287589,544367988,1651340654,168653413,1886216969,745300512,151598130,841822267,540876851,1143819329,1092627528,1229204824,1095049260,1145384280,151653705,543514986,151602752,1718172425,661940512,1869488243,543236212,1836216174,1914727521,1936287589,225600884,1668811018,1629513576,2019699832,1832585481,1629517423,1818373228,1829308941,1663071855,221457516,1752369418,1818304626,158098220,1818311433,1931492640,979729001,540024864,1646280237,744846457,757084448,1870078014,539780210,1043144754,1870095392,168649842,1684300041,745300256,168636973,1667522825,745300256,990447923,1986948963,544502373,824209268,741482540,673199136,1886610802,1769235301,2037146998,151653673,544238954,858874465,1077938701,151653690,544370552,1567188059,1380994862,1714308174,1936154988,1379999788,1430937415,1163023443,539697223,1598509633,1380533591,1195725380,1829308941,1629517423,1230187628,1331126106,153109586,1734701627,1702130537,1769152626,168650106,1886216969,745300512,1598506322,151606355,758395451,1933392178,1701668709,1914729582,1936287589,1936876916,1778977293,1650532449,153104689]},{"sector":3,"length":512,"data":[1718172425,661940512,1296900211,1380130860,1380196396,544370464,168645204,543517193,151602752,1718172425,661940512,1414733939,1661536781,1646293101,942812268,1778977293,1650532450,153105201,1718172425,661940512,543236211,1836216174,1931504737,1701668709,1914729582,1936287589,544367988,743654440,1395413829,1396911187,151653673,1528853103,1601008481,1717530221,1936154988,1296116829,1397120838,991974215,1734437990,225732896,1835665674,1650532464,168637233,221921344,1835206922,2036473968,1881171316,1528853108,744319347,220669991,1852442890,1650532453,151597617,543582523,1953723754,1634496544,1394634345,151653716,1935961964,151653730,1935961964,151653730,543323507,657222753,168634160,1886216969,745300256,151653687,1629512042,540029282,1765476617,1869488230,774905972,168638254,1987013897,1768184608,1347366493,776228434,845636978,158097708,1986097979,1752440933,1970151525,1919246957,1812531725,1651729519,1661536781,1629515885,690433132,151653671,1629513066,540160354,1765476617,1869488230,1919230068,225603442,828530954,168639024,1886218761,828465440,151609907,1920099643,168653423,758843917,1864379693,1919248500,1734701600,1702130537,857764722,875769137,1296902176,1380130860,1380196396,1381244972,218762537,828530954,168639025,1685023753,168649331,1651864329,745300256,220672039,1835206922,1818304624,168638252,543255049,808542817,990447904]},{"sector":4,"length":512,"data":[1696622185,1919906418,1829308941,1528854127,777873764,1314017359,1701981764,1630286439,1933248876,543520353,543516788,1651340654,168653413,1987013897,745300256,1599752531,1380931396,1916471620,1936287589,544367988,1702521203,1661536781,1646293101,1163013228,1296916295,1778977293,1629513070,154349922,1718172425,1953459744,541936928,1768383858,1919251571,1862863373,1683693682,1328438633,1145983568,1634493998,539784039,1598509633,1414747466,222774610,1869416714,1818304630,1514754860,1331122527,168641618,1886218761,828530976,1628048691,976367970,1829308941,1629517423,154152044,1769159433,1713399162,1394635375,1701978196,168653671,858874465,151653690,544238947,1529637985,777873764,1314017359,1769156164,1918985594,1664819303,1634757999,1998611826,543716457,1952543859,1931502693,224754281,1701447946,155598880,1765476617,1634934886,168650093,1751349257,1818304615,1768184620,1347366493,776228434,1702521203,224883297,1835206922,1818304624,168636460,1701734921,828530976,990447920,1998612073,1735290738,2053731104,1768366181,544105846,1919229997,225603442,977289226,1778977293,1629515885,154416226,1868839689,1998611822,543716457,1936287860,1701867296,1684955506,168626701,757935419,661932320,1869488243,543236212,1768383858,1919251571,1717924384,1852142181,539911523,2037535776,1919903264,1847615776,1700949365,168636018,1650526733,221918257,1869351178,224555876]},{"sector":5,"length":512,"data":[1633880330,1629514860,1852205409,168652149,543386121,925983329,990447904,1931965545,1953459744,1847615776,1700949365,151653746,1819042147,1734435104,157906021,1701264137,1752440948,1970151525,1919246957,1829308941,1528854127,777873764,1314017359,1919888964,1970168933,1818438765,1829308941,1998616175,543453807,544371824,1567188059,1380994862,1848525902,808152437,225993260,1869416714,1870078070,1881171058,1528853108,777873764,1314017359,1970155076,741485421,168654948,1818321673,1802707052,1752658025,151653680,544238947,841772131,1778977293,1650532455,153106225,1718172425,543520544,661545315,1634214004,1629513078,1819239200,1746955887,224752229,1835206922,1818304624,658122540,1778977293,1629513070,154612066,1718172425,1953459744,2021160992,2037987960,168655225,1818321673,1802707052,1752658025,224752745,1633880330,1629514860,1952802657,151653737,544632685,1999403107,543453807,544371824,1567188059,1380994862,1848525902,808152437,1829308941,1528854127,777873764,1314017359,1970155076,1663840877,151653752,544632685,1685221239,1920233504,1768184608,1347366493,776228434,728593774,2019699760,1829308941,1998616175,543453807,544371824,1567188059,1380994862,1848525902,841706869,225993772,1919879434,1768184608,1347366493,776228434,1734437990,1092627571,1180649298,1145131585,168645188,1886218761,878862624,990447923,1701736292,1953068832,1752440936,1864397673]},{"sector":6,"length":512,"data":[1634887024,168649838,758843917,1126182189,1801676136,1919903264,774789920,221142318,1628048650,976564578,1778977293,1629515885,154153826,1868839689,1936683040,1919954292,1936024431,1735289203,168626701,909206113,151653690,1819042147,1768649504,1768454000,168650100,925983329,151653690,544238947,657222753,151594843,1734697531,1814064745,544239471,1919252079,1952805664,1718558835,224221984,1852442890,1650532453,151598385,543582523,544501614,151653723,1528853103,777873764,1314017359,1818635844,745760609,1196572960,1380271199,991970885,544499059,543516788,1734437990,1650526733,221919281,1633880330,1931504748,2003855723,1702127976,1650526733,221919537,1835206922,1818304624,660416300,1648036105,1852401509,1869573152,1769414768,1852401780,224221984,1701447946,828530976,151593014,543582523,1701736292,168626701,757935419,1701331744,1713400675,1629516399,1734701600,1702130537,1999118450,1768453225,1566253166,168635945,1678313997,1931502437,151653737,1752397168,225010720,1869416714,1768169590,1717989164,544499059,1634625394,221655405,1869416714,2019762294,1381977644,827541317,151653686,1819042147,1734435104,1701999717,151653735,544239472,168651108,543386121,892494433,990447904,1847617129,1629516911,1734701600,1702130537,151653746,544238947,824994914,151653686,543514986,151602752,1718172425,758264608,544500066,1768383858,1919251571,1627982349]},{"sector":7,"length":512,"data":[1646290020,154676332,1684093705,1953723754,774778912,1869881399,774780960,168637745,1886218761,845308192,1074400561,168639040,1886216969,1768184608,1347366493,776228434,845636978,221257772,1852442890,1650532474,151597362,543582523,1629513079,1634038380,1746958692,543520353,1763733089,2019910766,1661536781,543976545,1885956979,1953065079,151653733,543384932,168651123,1886216969,745300256,220670503,1852442890,1650532453,151597362,543582523,544501614,1819045734,1684371311,544825888,220670503,1852377354,1769152611,1829308941,1528854127,777873764,1314017359,1701981764,1647063655,1933248876,543520353,1701080681,1701978232,1953720679,168653413,1818321673,1802707052,1752658025,224752745,1633880330,1629514860,1952802657,151653737,1819042147,1667326240,1769369199,2019910766,1778977293,1629515885,154677858,1701985033,544826465,544370534,1954047342,1918988320,218762612,845308170,168639025,1886216969,1768184608,1347366493,776228434,828859762,168636460,1701734921,155598880,1765476617,1752440934,660959845,1818304627,1684104562,543236217,1768383858,1919251571,1829308941,1528854127,777873764,1314017359,1701981764,1647063399,151653740,544238954,858940001,1077938701,151653690,544238947,1567188059,1380994862,1915634766,741500773,168636448,1701734921,845308192,990447924,1948280425,1830842223,544829025,1768383858,1919251571,151653747,544632685,1567188059]},{"sector":8,"length":512,"data":[1380994862,1915634766,741500773,168651874,858940001,151653690,1819042147,1768649504,1768454000,168650100,1886218761,845308192,990447928,1684104562,1868963961,1701716082,1881175160,225735265,845308170,168639028,1886218761,828465440,151609907,1920099643,168653423,758843917,1411394861,1713404274,1629516399,1836412448,544367970,1953068840,544106856,774462811,168626701,892494433,151653690,1935961964,1628048738,976630370,1661536781,543976545,1701273953,151611764,1952802619,1847615776,1700949365,1864900722,1818632306,1629513569,1919230062,695365490,1661536781,543976545,1885956979,221276279,1835206922,1818304624,657073964,1778977293,1650532453,153106226,1718172425,661940512,1851859059,1684957472,1713404005,1869898593,151653746,1528853103,777873764,1314017359,1919888964,1970168933,1818438765,1627982349,1998611556,543453807,544371824,1567188059,1380994862,1848525902,808152437,225993260,1684080906,1870078051,1881171058,1528853108,777873764,1314017359,1970155076,741485421,168654948,1886218761,845308192,990447928,1954047342,1918988320,774774900,218762542,845308170,168639031,1818321673,1633755244,1986948963,1701080681,151653752,1819042147,1768649504,1768454000,168650100,1667589129,225014560,1970276618,1679845491,151653737,544632685,1865181540,1702061670,1735532660,829251950,151653686,544370552,1663858787,151653752,1819042147,1734435104,1701999717]},{"sector":9,"length":512,"data":[151653735,544239472,168651108,543386121,875717217,990447904,1696622185,1919906418,1661536781,1528852589,777873764,1314017359,1701981764,539767399,151653680,543518314,875717217,1765476617,1752440934,543519333,1629516649,1634038380,1629518180,1734701600,1702130537,151653746,544632685,1567188059,1380994862,1915634766,741500773,225206816,1633880330,1931504748,2003855723,1702127976,168626701,757935419,1634030112,1713404260,1948283503,1847616872,544503909,1836213620,1953068832,544106856,221142363,1628048650,976761442,1661536781,1629515885,757541996,151653671,1629513066,540422754,1765476617,543236198,1734700584,1986622561,1847601509,1700949365,1936269426,2019913248,151653748,544238947,657222753,168634155,1701734921,155598880,1765476617,1869488230,2019913248,1702109300,673213810,1936028272,1650552181,220821868,1835665674,1650532464,168638513,221921344,1835665674,1650532464,151599409,1667326523,1868963947,1869422706,168650098,758843917,1344285997,762606447,1668248176,1769173861,1713399662,1663070831,1819307375,1952539497,1629512805,1836410738,1937010277,218762542,862085386,168639024,1886216969,1919907616,1953505380,1683693682,1328438633,1145983568,1734701614,540027953,1701339963,1646291811,543716463,828859762,1734701611,151653682,544894570,842228321,1765476617,1701978214,1953720679,544436837,1701995895,1986619168,673214053,1044200736,1701995296]}],[{"sector":1,"length":512,"data":[543519841,541347661,692924242,1661536781,1528852589,777873764,1314017359,1919888964,1970168933,221260909,2053769482,862085408,151593009,543582523,1752461166,543649385,544432503,1702259047,539500654,540949821,1869771365,168634738,1886216969,1768184608,1347366493,776228434,1734437990,221260915,1852442890,1650532474,157429811,1718172425,544500000,544432503,544501614,1701670249,1952541028,151653733,1528853103,777873764,1314017359,1818635844,745760609,1598509633,1162693961,1628048708,1630548834,151653690,544238954,859071073,1681590537,543518319,1752459639,1768453152,1918967923,1701672295,168653934,808673889,168639074,544370441,1836278107,1601072479,1734437990,1093426547,1096762957,223495236,1869416714,1818304630,151597612,2053731131,1718558821,1701344288,1936286752,1667329136,1852140901,151653748,1953719668,1768184608,1347366493,776228434,1684370031,745370990,151653684,1075870314,151587142,543582523,544501614,1647129139,1679848553,1819308905,1835361121,225734245,1852377354,2019631203,1762200077,1629512558,151653752,1528853103,1601008481,1717530221,1936154988,1296116829,859922246,859512882,1768041778,1684086900,1936028260,1735289203,1077938701,151653690,544632685,1567188059,1380994862,1932411982,1684372073,1630303081,1933254764,543520353,1886611812,1701011820,1953391981,2053731104,151653733,544238954,808673889,990447969,1701736292,1953068832]},{"sector":2,"length":512,"data":[1752440936,1629516649,1836410738,225734245,862085386,168639025,1886218761,828465440,151609907,1634494011,1851859047,1920099616,168653423,540740109,1917001760,1702125925,1701344288,1146047776,1294946848,1954112032,168636005,538976315,1919895080,1936286752,1852779888,1864399212,1701978226,1953720679,539783781,1936287860,1818851104,1700929644,1852793888,1634476133,544367988,1847620449,1701078373,220802660,1628048650,976368482,1862863373,1683693682,1328438633,1145983568,1634493998,539784039,1598509633,1380208461,151653709,544632685,1529637985,777873764,1314017359,1701981764,168636775,544370441,1529637985,777873764,1314017359,1701981764,168637031,1936028681,1818304628,221655340,1852442890,1650532474,151598131,543582523,1647129139,1629516905,1701995620,1852404595,151653735,1953719668,1768184608,1347366493,776228434,1684370031,745370990,151653684,544894570,875782753,1765476617,842211430,1953063469,1684300064,1936942450,224882281,1919879434,1935760160,1852661613,1634494047,744321895,1179468064,1145323871,151653714,544632685,1999403105,543453807,544371824,1567188059,1380994862,1915634766,540108645,1952802619,1734701600,1701980977,168637031,1886216969,745300256,168650849,543255049,151602752,1634548489,1931502955,543519349,1042312289,1751195709,2013858317,543647843,1630301281,1074400616,168639040,1937076233,1768169576,1829308941,1679849071,1718561897]},{"sector":3,"length":512,"data":[1952805734,1685024032,1635020146,151653730,544632685,942438499,1913195021,1701736549,1633907488,168654707,1886351369,225010720,1852442890,1650532453,151597363,543582523,544501614,1852796257,1752440935,1869619301,1651078003,1953066089,225666409,1869416714,2019696758,909128236,990447976,544760173,1886611812,840973600,1954112032,540767077,1027416118,1848123454,1697476207,1953720696,695496293,1885494048,151653725,544238954,959668833,1681590537,543518319,1937074728,1650532468,695498095,168626701,757935419,758264608,544500066,1919181921,1769173861,168650606,1650526733,221918259,1919879434,1935760160,1852661613,1634494047,744321895,1598442817,540160833,1296113707,1145134918,168645188,1987013897,745300256,1567188059,1380994862,1915634766,221341541,1919879434,745300256,1567188059,1380994862,1764639822,2019910766,1778977293,1075870318,151587142,543582523,1663067511,1948741217,1953525536,2053729641,1163599973,824858712,1869881437,1480940320,168648024,1987013897,746086688,1685221239,1920233504,1768184608,1347366493,776228434,828859762,1701264160,1701978228,1915433319,221407077,1668811018,1629513576,1751198828,1829308941,1998616175,543453807,544371824,1567188059,1380994862,1915634766,741435237,168654945,221921344,1869416714,2019696758,892351532,990447976,544760173,1886611812,874528032,1954112032,540767077,1027416117,1848123454,1697476207,1953720696]},{"sector":4,"length":512,"data":[695496293,1885494048,151653725,544238947,1567188059,1380994862,1915634766,741500773,151653680,543518314,151602752,1718172425,1701344288,1931961714,1394630944,168641097,1987013897,745300768,1567188059,1380994862,1915634766,221341541,1835206922,1818435696,221655340,1818888458,862085408,151593009,543582523,1852797559,1701978215,1953720679,1948283493,224751737,1851853066,1818435684,168638252,1886216969,745300768,990447924,1667590243,1868963947,1397039218,151653712,543518314,959668833,1765476617,1869488230,1948265588,544105832,1915184503,1868832869,673211758,1701344367,1936291698,1868832869,1112101664,1074400553,168639040,544370441,1836278107,1601072479,1734437990,1093426547,1398752845,991969865,1836216166,1112101664,1829308941,1663071855,1683696744,1328438633,1145983568,1684957486,991983717,544499047,1646285651,225670249,1869416714,1818435702,168637228,1818784521,745038624,151612515,1768452923,1948284006,544040296,1718378856,544825719,1869901417,1634496544,168650083,1987013897,745300256,1567188059,1380994862,1915634766,154298213,1684957499,1914730597,1936287589,225600884,1835206922,1818304624,221262380,1701447946,862085408,151593009,543582523,542135109,1027416104,1919230014,695365490,1661536781,1629515885,221260908,1852442890,1178607717,990447881,1847617129,2048947311,225407589,1869416714,1818304630,154153516,1702050569,1953046644,1919903264]},{"sector":5,"length":512,"data":[1684957472,1646295141,543519865,1074400564,168639040,1886216969,745300256,168638001,543975945,825451105,990447904,1998612073,1735290738,1734701600,1702130537,2037653618,168650096,1684955401,745300256,151653687,1663070831,1818307688,1882917129,1763734645,1852383348,1948282740,1394632040,168641097,1818784521,745038624,151612515,1768452923,1763734630,1852383348,1881173876,1701011820,1762200077,1663066990,151587192,1294946875,1919903264,1112101664,874528032,1829308941,1629517423,1683696748,1328438633,1145983568,1734701614,1849362737,1730180975,1948284005,1814062440,857765743,1953063456,151653747,544238947,808217697,1778977293,1075864942,151587142,543582523,1919248500,1635197029,543236211,1936877926,1701978228,1953720679,168653413,544370441,892102755,1778977293,1629515885,154285154,1330461449,540876868,1679830064,544240489,874541929,1954112032,168653669,221921344,1835206922,1818304624,221655340,1818888458,878862624,151593013,543582523,1852797559,1701978215,1953720679,1948283493,224751737,1851853066,1818304612,151598892,1919510075,1914729587,1936287589,225600884,1919879434,745038624,151612513,1953853499,544500000,1869901417,1701344288,1112101664,1661536781,1629515885,221588588,1701447946,878862624,151593008,543582523,1931965545,1346520352,1752440876,1998614117,1868832869,544483182,1868785010,2053729895,1768169573,809332851,151587341,1866139913]},{"sector":6,"length":512,"data":[1919248500,1702062455,543973920,1819044215,543515168,544499059,807432052,168626701,757935419,1852392992,1752440932,1769152613,1864394106,1752440934,1768169573,1634496627,1701668195,221148270,1628048650,976827234,1661536781,1663070317,1818373228,1778977293,1650532453,153104436,1718172425,661940512,677060723,1346513221,1948265565,544105832,1886611812,1763717181,1953702003,543976553,2036473905,168650100,1987013897,745300512,990447920,1869376609,758128759,1702132066,1936286752,218762608,878862602,168639024,1937076233,2019762280,1829308941,1629517423,2036477036,1881171316,1528853108,777873764,1314017359,1970155076,221260653,1869416714,1818435702,168638252,1918989065,745300256,168651875,1886351369,225993504,1869416714,1751195766,1954112044,1953505381,1683693682,1328438633,1145983568,1836412462,168636715,1886216969,745300256,168650849,1701734921,155598880,1765476617,1953046630,1646293799,1701275497,1752440946,824208993,1954112032,151653733,544238947,1999403105,543453807,544371824,1567188059,1380994862,1848525902,841706869,1778977293,1075864942,151587142,1953063995,168652660,1987013897,745038368,990447920,1679847278,1819308905,1835361121,225734245,1919879434,745300512,1702132066,1920233504,1768184608,1347366493,776228434,728593774,151653680,1629518442,540161122,1765476617,1768169574,1025536115,1629499424,1763730542,544417652,544501614,1110000936]},{"sector":7,"length":512,"data":[151653712,543387241,151611490,1768176393,1025536115,1646276896,224752761,1919879434,745300768,157823028,1702050569,1330454644,540876868,151653681,544238954,842293857,1681590537,224751215,977289226,1862863373,1818435698,1747990572,1933248777,1293972581,1025524815,168636960,842293857,151653690,544632685,1567188059,1380994862,1932411982,1684372073,1647080297,1933254760,1701998452,1936286752,1667329136,1852140901,1769152628,168650106,1987013897,1919907616,1953505380,1683693682,1328438633,1145983568,1734701614,1663052849,1933254776,1701998452,1146047776,1294946848,1684955424,2036428064,1394632034,168641097,758843917,1176513837,1936289385,1886724200,1953068832,1752440936,1886330981,1851880037,168636004,1650526733,221918004,1701054730,1769152611,1650526733,221918260,1633880330,1931504748,2003855723,1702127976,1627982349,1679844452,1769155689,1718576506,1380994848,168641614,1886216969,745300256,168645187,543517193,960062049,990447904,1696622185,1864393838,1768693862,168650094,1886216969,745300256,220674855,1701447946,962748704,151593017,543582523,1835888483,544501349,1953063976,220819316,1835206922,1818304624,657205036,1778977293,1629513070,154481762,1718172425,1953459744,1836016416,673210733,1044200736,1920099616,220820079,1835206922,1768169584,1717989164,544499059,1701734764,1953853279,540221483,1769152554,1718576506,1380994848,168641614,1700882953]},{"sector":8,"length":512,"data":[878862624,990447925,1948280425,1830842223,544829025,1919250543,1935961697,1661536781,543976545,1885956979,1953065079,151653733,544238954,842031713,168626701,892625505,151653690,544238954,858874209,990447970,1869771365,1969889394,168652909,1650526733,221919545,1869416714,1683693686,1328438633,1145983568,1634493998,757887847,1698373681,1864393838,1634738278,1852404594,1752178791,224752481,1970276618,1931503731,151593065,1986097979,1752440933,1869357157,1769234787,1864396399,1752440934,1852121189,1718558820,1701344288,1920234272,224882281,990514442,1176510496,1948283503,1847616872,544503909,1935763568,1998597221,1634541669,543712116,543516788,1936875888,1629512805,1836410738,1937010277,1953068832,1752440936,1702043749,1718558836,540740109,1701847072,1936289138,1818388851,1918967909,1701672295,1814066286,1937011561,1919903264,1701344288,1668312864,778396783,1701336073,1919510048,1830843507,1751348321,1852405536,168636019,538976315,1919248468,1919903333,1752440933,1918967909,1701672295,1814066286,1937011561,1869116192,543452277,1864394082,1919247474,1931502693,543712117,1952540788,1701344288,540740109,1751326752,1701863781,1852776562,1663071077,543518063,1936877926,168636020,540740109,1750343712,543519333,1629516649,1769108512,544828259,1970500457,1701978213,1685217639,543649385,1702521203,1718558835,1835363616,544830063,1701209458,1668179314,221148005]},{"sector":9,"length":512,"data":[538983178,1919240224,1918967909,1752440933,1970413669,980641132,540740109,538976288,539898144,1716068384,1830838560,1919905125,1701978233,1701995878,543515502,1730179945,1852143209,1953068832,543236200,1702521203,1752440876,1763733093,544417652,221137743,538983178,538976288,538979890,543574304,1701650529,2037542765,1717924384,1852142181,1763730787,1768366195,544105846,1752459639,544503151,1769152609,539780474,544503138,1701670771,154864141,1701344367,1918967922,1701672295,1763734638,543236211,1768383858,1919251571,1752639520,543712105,1819307369,544433513,1769152609,740910458,154864141,1852139636,1701344288,1835363616,544830063,1701209458,1668179314,1852383333,1769104744,1948283764,544498024,1702521203,990514478,538976265,1668826400,1769238629,980643439,1599098656,1679838275,544433519,544501614,1819307369,543236217,1702521203,154864141,538976265,1599098656,1397704787,168647241,538976315,857743392,538976302,824206921,1684955424,1679831584,1869488239,1885413492,746155120,1953849888,1768453152,1936269427,1701344288,1935764512,1869619316,1651078003,1629513068,1836410738,225734245,1812544266,745829225,1684955424,543582496,543516788,1969713761,1953391981,1936288800,1701978228,1919513969,1629516645,1918988320,1969449332,544366956,1702521203,1752440876,168652389,1752435003,1931506785,543521385,1965060969,778331507,540740109,538976288,539898912]}]],[[{"sector":1,"length":512,"data":[1850286112,1819042080,1752461088,1663070821,1936028513,1818632236,1629513569,1919230062,779251570,168626701,825254753,151587130,758921993,1847602477,544503909,1936945008,1701601897,1735549216,1852140917,1768693876,168653939,1919907849,746086688,168654945,1987013897,745104416,1936090735,1629516901,151653737,544632685,1932294243,1868921449,1767972966,168636975,1885696521,1869902624,168654707,1987013897,745108256,1701735771,1718511981,990469487,1919181921,544437093,1948280431,1629513064,1836410738,544501349,1769103734,225734241,990514442,539831597,1953656659,1953853216,1768843552,1818323316,1954112032,539915109,544489760,1936287860,1768910880,221934702,757938954,1769152557,1629502752,1701995620,1864397683,1918967910,1701672295,1981838446,1634300513,168653934,1667303949,154808880,990447881,757935420,2019913248,2036473972,1864394100,1918967910,1701672295,1981838446,1634300513,168653934,1685023753,168649331,1651864329,745300256,1598903105,1212367181,151653680,1629512298,540356707,1765476617,1869488230,1919905056,1886593125,1634296677,2036473964,225666420,1835206922,1818304624,1297301804,1129270367,1279410507,539828293,1598903105,1212367181,151653680,1075864938,151587142,543582523,1598903105,1262702412,1162625601,1778977293,1667309665,153105456,1718172425,1297301792,1145980255,1025517600,1696611901,1919906418,151653673,544632685,778658139,1836280164]},{"sector":2,"length":512,"data":[1567122273,158097708,1986097979,1634541669,1852401763,2037653605,168650096,1886218761,811819296,990447922,1801675106,1919903264,2019913248,2036473972,168650100,221921344,1919879434,1767988000,1918989870,1734437990,1445748083,1281315393,1095451471,222645314,1835665674,1667309680,151597616,1667326523,1868963947,1701716082,1646294136,224752761,1628048650,976498787,1778977293,1629515885,1630744929,1698367753,1919906418,168626701,757935419,1952794400,1684955424,1886287136,543908705,543516788,1685221239,218762542,811819274,168639029,1667589129,225014560,1869351178,225932132,1668811018,1629513576,1751198828,1882917129,1763734645,544175214,1953786220,1697473900,1634296942,1919885422,225600868,1870137610,2019827826,225993772,1869416714,2019696758,1297301804,222580557,1768163594,2019696758,990447881,1025538145,1868521760,1685021552,1679833957,540876920,1701080681,1852383352,1864396660,1684957552,168654949,1987013897,1600215840,1868787823,744318308,990476385,1702257011,225992992,1835206922,2019631216,1717841964,151653736,1075863914,151587142,543582523,544501614,1919971171,1936024431,544370547,1953721961,1952675186,225341289,1835206922,1818304624,946090028,151653736,1075864170,151587142,1953063995,168652660,544370441,778658139,1818652004,1567844193,1598899244,1380994883,1818639136,1763731297,1935745140,544104736,540489848,1953721961,1952675186,225341289]},{"sector":3,"length":512,"data":[1869416714,1751195766,225206572,1869351178,157447012,1731922185,1696625765,1634890872,1954112032,151653733,544632685,778658139,1835492722,744320357,990473313,1702257011,544500000,1914728041,1701668709,151653741,1528853103,1982753121,1818653281,1567844193,1380013612,1146047839,991972690,1734437990,1937008928,1701998624,1668179315,1074400613,168639040,1987013897,1852660512,1852403045,744320870,990472563,1702257011,543781664,1801675106,1634165024,168652393,1987013897,745108256,168654948,1987013897,745300512,1768976219,2019910766,1567191851,1812531725,1931501925,1868246121,1936288880,1647014772,990469496,1025534323,1701344288,1684300064,1936942450,543584032,544372079,1919250543,543452769,1953720684,1829308941,1679849071,1718561897,1952805734,1852402720,1970233189,1681590644,540876905,1634890337,1718558841,1380994848,225657934,543582474,1162104653,1129596243,168641613,1987013897,1684626208,1936615800,2019634269,1933248800,543520353,1936287860,1919903264,1935830816,1952803951,1852383333,1970435187,1869182051,1701060718,1952671092,225341289,1684956426,168650345,758843917,1109404973,1852401509,1869573152,1986994288,1864397413,1634887024,779314286,168626701,909140833,151587130,758921993,1847602477,544503909,1919250543,224685665,1869351178,157447012,1731922185,1847620709,544503909,1919250543,543452769,1702132066,1661536781,1629515885,221260908,1701447946]},{"sector":4,"length":512,"data":[828596512,151593008,543582523,543452773,1814062703,225735529,1835206922,1683693680,1328438633,1145983568,1634493998,757887847,151653681,1629513066,540094563,1765476617,1869881446,1701191791,1886330999,1851880037,1998615396,543519333,1702259047,151653742,544238947,1328311393,1230200656,168641882,543320585,151602752,1718172425,544173600,1702521203,1701146144,224683364,1829321482,1629517423,221260904,1829321482,1663071855,221523052,1929984778,1629514856,1818438776,1832585481,543520367,1937008994,925709344,1769154592,539583866,1629515636,1328029800,909205328,893202995,1599098668,741752120,828330063,741817654,690892334,154864141,544368755,1663855713,990447980,1702260589,1953063456,758128755,1633820723,168651619,543319049,1748263984,1747988780,1027279113,544039265,543698993,1029194024,1498951728,540945696,809326657,693710936,1829308941,1528854127,1915644257,1769173349,744318330,990472289,1702257011,2053731104,2002853989,168655201,1886218761,811819296,1074400568,151599680,1094387977,540876876,1298092111,757085238,774778400,1627982349,1629512804,1396780140,1347379021,541476431,1347362861,875973983,1684093728,1953723754,1919903264,1701344288,1635021600,1696625778,1769108590,1763734373,1935745133,1835687789,168636784,942695265,151653690,225927779,1668811018,1629513576,2019699832,1849362697,1646294895,1868767352,1767994478,1948283758,1864394088]},{"sector":5,"length":512,"data":[1702061670,151653748,544632685,1529641059,1601008481,829451626,1568170539,1970486025,1970238050,1701734772,1684300064,1936942450,1929972237,1646293608,221326456,1869416714,1818304630,1768053548,1650553972,1568170539,1946749453,544502629,1529637985,777873764,1314017359,1818635844,225666913,2053769482,811819296,151593017,543582523,1914728302,1769304421,543450482,1937008994,1701994784,1701998624,1953391987,1661536781,543976545,153122915,1633893129,1763732588,1931506548,1768121712,543385958,1953853298,224751209,1835206922,1870078064,1881171058,1528853108,825059699,1328032861,909205328,1328230963,693264208,909455914,1347364907,859189599,1347365682,1298092639,220808271,1701447946,811819296,151593014,1634215995,539585379,544370534,1280658761,1936615712,1668641396,1852795252,1627982349,1679844452,1769155689,1718576506,1380994848,990463054,1954047342,1701867296,1684955506,1778977293,1629515885,154546275,1633827593,1713400675,1830842991,224752239,1628048650,976826467,1778977293,1629515885,154218595,1633827593,1948281699,1701716079,1881175160,1769173871,1768712546,168655220,758843917,1159736621,1864393838,1886330982,1851880037,1768693860,221148275,1628048650,976236899,1661536781,1528852589,777873764,1314017359,1818635844,745760609,168636717,1701734921,811819296,990447929,1948280425,1830842223,544829025,1919250543,1935961697,1919252256,1768366181,225338742]},{"sector":6,"length":512,"data":[990514442,539831597,1634625862,1751326828,543908709,1931505263,1936030313,168626701,1987013897,745300256,778658139,1718772086,1936154988,151653725,1953719668,745300256,1599226198,1599752531,1145390414,1778977293,1667309690,153104945,1718172425,544173600,1702521203,1701146144,224683364,1702103306,1629516915,1096166508,1230200658,1229414234,168644182,2054056457,828596512,990447922,1629513321,2053731104,1635197029,1768366195,225338742,1702103306,1629516915,1096166508,1230200658,1330011994,222577490,2053769482,811819296,151593017,543582523,543516788,1702521203,1935767328,1953459744,1919903264,543450467,1027416104,1701978174,1952671082,151653673,544632685,1529637235,1835363949,1868983913,151653725,544238947,1702132066,1920233504,1769167648,1396780125,1313169229,151653700,1629513066,540160355,1765476617,1752440934,1763734377,1752440947,1634476133,1864397939,168650094,825320289,151653690,544238954,858874209,990447969,1998615657,1847620449,1025537135,1696611901,1919906418,1869490208,543236212,1920230770,168634745,758843917,1126182189,1801676136,1752461088,1881174629,1768318322,779314552,168626701,842097505,151653690,544632685,1529637985,1935630689,1684371041,1701998687,1568172390,1661536781,1629515885,221260908,2053769482,828596512,151593012,543582523,1931505518,1684371041,1701998624,1702390118,1869881459,1701339936,168651619,1886216969,745300256]},{"sector":7,"length":512,"data":[1748002352,1778977293,1075864942,151587142,543582523,1931965545,1914724640,1881174117,1768318322,151653752,1953719668,1767988000,1918989870,1734437990,1445748083,1281315393,1095451471,222645314,2053769482,828596512,151593009,543582523,1936287860,1918989856,1953390953,544434464,544501614,1801678700,1701601889,1696607520,1919906418,1778977293,1629515885,154415459,1868839689,168650094,221921344,1869416714,2019631222,1600215852,1868787823,157115748,1701339963,1763732323,1886330982,1701080931,544434464,1713392463,1914729071,746287205,2054040698,151653757,543452769,1848405089,824210543,1664813321,1918985580,2003790880,1685221152,1646293605,673215593,1398165325,1043144791,1448037664,220807763,1835206922,2019631216,1717973036,151653736,1629512042,540094819,1765476617,1953046630,1847620391,1629516911,1646276896,543519865,1953721961,1952675186,544108393,1919229997,225603442,1869416714,1768169590,1717989164,544499059,1819305330,158626665,1936288827,1718558836,1936615712,1668641396,1852795252,1752440947,1730180193,1769414767,1914726516,168652901,1987013897,746087200,1163026254,1280065872,1933248800,544104803,543976545,1346720296,1377839904,2021150789,151653673,1852859762,1668489317,224555873,1852442890,1667309690,151597361,543582523,1931965545,1953459744,1869439264,1948280686,544040296,1919229997,225603442,1628048650,976499043,1946749453,544502629,1836278107]},{"sector":8,"length":512,"data":[1601072479,1734437990,1093426547,1298089549,222774611,2053769482,155598880,1765476617,1869488230,1734701856,1953391981,1701998624,544762214,1868981602,1830839666,1869440366,224618862,1869416714,2019631222,1600215852,1868787823,157115748,1701339963,1763732323,1886330982,1701080931,1819042080,544438127,1936287860,1661536781,1629515885,1714433144,168650854,543255049,825320289,990447904,1763731049,544417652,544501614,540090465,1702132066,1936615712,1668641396,1852795252,1696607520,1919906418,1829308941,1679849071,1718561897,1952805734,1718775840,1650553976,1829308941,1663071855,1599089784,223233356,1701972234,543518320,1935762291,151653730,544894570,825320289,1765476617,1953046630,1847620391,1763734639,1752440942,1768693861,757101683,1920099616,168653423,221921344,1869416714,2019696758,1767988012,1835886894,1919181921,151653725,1646293615,2019699832,1778977293,1667309690,153105969,1718172425,544173600,1701670249,1952541028,1633951845,168649076,1987013897,745300256,778658139,1769173103,224224634,1701710090,1818304615,1929972237,1629514856,221326444,1702103306,1629516915,1650142316,1563896696,1778977293,1629518446,154218851,1718172425,1701344288,1835886880,1634296933,1679844724,543257697,544432503,544173940,543648098,1919229997,225603442,990514442,1344282656,1948284021,1763730792,1920234350,1769235317,1948282479,1952802671,225600872,990514442,1176510496]},{"sector":9,"length":512,"data":[1953722985,1752440876,1919950949,2020173413,673215333,1818455657,1852400757,1919950951,1684366181,543649385,1414086999,1936615712,1668641396,1852795252,218762537,828596490,168639030,2053731081,1718775909,990447960,544632685,746087525,1633640795,1567777892,1829308941,1679849071,1633365112,1684300127,1563437938,1829308941,1646294639,1633365112,1684300127,1563700082,1946749453,544502629,1836278107,1601072479,1734437990,1093426547,1465861709,223627585,2053769482,155598880,1765476617,1869488230,1767995168,1852383348,1970435187,1869182051,1700929646,1701998438,1684955496,1829308941,1629517423,1647914092,151653736,1819042147,1769109280,1935762804,1074400621,168639040,1987013897,745300256,1600217435,1702257011,1919967076,2020173413,151653725,544238947,808217697,1778977293,1178607738,990447881,1847617129,1330389103,1864387395,1163010162,1919950928,2020173413,1661536781,543976545,1953067639,1836278117,1077938701,218762554,757938954,543236141,543700790,1919181921,544437093,1702521203,1701998624,544762214,1847620457,1701078373,990514532,539831597,1713385009,1126199919,976368467,543582496,1598442817,1380205633,1629499709,1092641902,1096762957,826094131,758843917,840969517,1868963886,1396908146,540685873,1092642409,1096762957,1028801604,1851858993,1296113764,859922246,221265202,151653642,544632685,1529637985,1601008481,1717530221,1936154988,151653725,1953719668]}],[{"sector":1,"length":512,"data":[745300256,1598442817,1380205633,1778977293,1178607738,1627982349,1629512814,1296116844,859922246,1762266418,1346314342,151653709,544632685,1529636961,1095975778,1567782004,1627982349,1629512814,808725608,151653736,1629516399,1751198828,1852115469,224815460,1851853066,1818304612,1179468076,842219871,874523424,168650800,544893449,168642112,1886216969,745300256,1598442817,540160833,808722475,151653736,1075870314,151653702,544632685,908880993,168650807,1818321673,1920409708,1634038889,168652147,221921344,990514442,539831597,909516897,1633951848,1931501940,543521385,1717924464,1763735657,1701716083,1684366437,758843917,1713384749,1126199919,976630099,543582496,1599226198,540160836,824196413,544370464,1598442817,540160836,824196413,758843917,1713384749,1126199919,976368467,543582496,1599226198,540422468,824196413,544370464,1598442817,540422468,824196413,168626701,1987013897,745038112,1836278107,1601072479,1734437990,168648051,1987013897,745300256,778658139,1718772086,1936154988,1762266461,1346314342,151653709,1953719668,1130519328,1953775955,875322738,168650800,544893449,168642112,1936028681,1818304628,1096163372,826564434,151653686,544894570,808608609,168636767,1936028681,1751195764,1296113708,826564422,151653686,544894570,808608609,168636767,1886218761,845373728,1074400561,168639040,1768189541,151653734,1953719668,745300256]},{"sector":2,"length":512,"data":[1599226198,221393732,1852442890,1667309690,828321842,1946749453,544502629,1093429345,1147094605,168636979,544893449,825385825,1667303949,828321842,151653690,544632685,908880993,168650806,1818321673,1920409708,1634038889,151612787,1869902651,1864394098,1634887024,1932354670,543521385,1717924464,168654953,825385825,151653690,544632685,1529637985,1935630689,1885300581,224224626,1835206922,1818304624,168636460,544893449,151602752,1718172425,544173600,1835492723,544501349,1717924464,168654953,1818321673,1920409708,1634038889,168652147,1886216969,745300256,224932918,1651116298,155598880,1765476617,1869488230,875962484,544370464,673199414,1864389446,1397170290,151653673,1528853103,1601008481,1717530221,1936154988,1296116829,1397120838,991974215,1734437990,225732896,977289226,168626701,757935419,2003783200,1768776992,1752440948,1852383333,1970435187,1869182051,1953046638,1718379891,218762542,1869416714,2019631222,1600215852,1868787823,224224612,1869416714,1768169590,225993004,1970473226,1768169570,808727084,151653736,543514986,151602752,1718172425,909587744,774778413,1661536781,1629515885,808594552,168650800,543320585,875717473,990447904,1914725993,1819633509,1763734113,1920234350,1769235317,168652399,544370441,778658139,1818652004,1567844193,1598899244,1380994883,1818639136,1763731297,1935745140,544104736,540489848,1953721961,1952675186]},{"sector":3,"length":512,"data":[225341289,1851853066,1818304612,942878764,990447976,544499047,1768383858,1919251571,1918988320,151653748,1528853103,1915644257,1701668709,1630297453,151653740,1734894456,746086688,151611748,1987013947,746086688,673212772,543516788,544698220,1937008994,543584032,1629514084,1730176370,694447983,1627982349,1629512814,221719660,1919879434,745300256,1748526128,1778977293,1629515885,154481251,1852783369,544175136,1868784996,1735289188,1701344288,1936615712,1668641396,1852795252,1077938701,151653690,544632685,858549347,1866139913,1763730798,1920234350,1769235317,1864396399,543236198,1970238055,151653744,544368755,1663854948,151653740,543452769,925658209,1929972237,1629514856,1818438764,1862863373,1633362034,1701981801,1835363687,1818307677,1929972237,1679846504,221326441,1869416714,2019631222,1734433580,1886744434,1768172403,1731922269,1629516901,1635087459,1886330988,1701080931,168626701,875717473,151653690,1953719668,745038112,168650849,544893449,892494689,990447904,1847617129,1714430063,1768300648,225735538,1970276618,1629513843,151593080,1869902651,1629513074,1751527456,1829308941,1629517423,1714433132,151653736,1819042147,1769109280,1935762804,151653741,544239472,168654945,1667303949,221918514,1919879434,745300256,778658139,1868787823,1868522852,990469490,544503152,1768186977,1852795252,1646292065,544437353,1869901417,1701344288,1668312864]},{"sector":4,"length":512,"data":[224748655,1633880330,1998613612,1702127986,158167905,1953708809,543519343,543516788,1868787823,1763730788,1818588020,218762598,757938954,1867391021,1953702007,543519343,543516788,1920235621,1953701985,543581813,1952540788,1836016416,1998615397,543716457,543516788,1953721961,1952675186,778989417,168626701,1987013897,746086688,1685221239,1920233504,1767988000,1734701614,1567450477,1946749453,544502629,778658139,1718772086,1936154988,1096166493,1330470738,223171140,2053769482,155598880,1765476617,1869488230,1685024032,1734701600,1835363631,1879640589,543716213,168654945,1818321673,1920409708,1634038889,168652147,1886351369,225992992,1702103306,1528853619,1601008481,1717530221,1936154988,1296116829,1230200646,151653698,1075870314,151587142,543582523,1394634606,168641097,1987013897,745300256,168650849,1818321673,1920409708,1634038889,151612787,1869902651,1948280178,1293968744,1377846351,1629506863,1394631790,539771465,225406836,977289226,168626701,1987013897,745104416,778658139,1684106610,224227940,1919879434,745104416,168651108,544893449,151602752,1718172425,544173600,1936090735,1629516901,1668248435,1702125929,1769414756,1948280948,1377854824,168643887,1987013897,745300768,1567188059,1380994862,1932411982,1684372073,168653673,1987013897,745038624,151653680,543253868,1529637235,777873764,1314017359,1970155076,1933248877,1701998452,1701344288]},{"sector":5,"length":512,"data":[1294946848,1717989152,544499059,544370472,1869440365,1864399218,1702061670,168634740,1818321673,1920409708,1634038889,225340787,977289226,168626701,757935419,2003783200,1869902624,1763730802,1684368749,1702125929,1952539680,218762593,1869416714,1768169590,1767988012,1835886894,1919181921,151653725,1679848047,1768172649,1778977293,1178607738,990447881,1847617129,1835606127,1768187245,543519841,1635017060,1829308941,1629517423,1633365100,1886334569,1702521203,151653725,225927779,1668811018,1629513576,2019765368,1832585481,1663071855,2019634296,1812531725,1931501925,1683696745,1328438633,1145983568,1836412462,1661536781,543976545,1953067639,1836278117,1074400622,168639040,758843917,1310731565,1931507567,1701998452,1684300064,1869182057,543973742,1702132066,1848123507,1701078373,1868963940,1696607346,741238574,1953391904,1763734117,1920234350,1769235317,220819055,757938954,1818304557,1713401715,1176531567,1830834753,1919905125,1684086905,1936028260,218762611,1869416714,1768169590,1767988012,1635285038,1567777892,1862863373,1768169586,225010732,2053769482,155598880,1765476617,1869488230,1684300064,1869182057,543973742,1635017060,1812531725,1931501925,1683696745,1328438633,1145983568,1836412462,543450209,1836412475,544367970,1646290543,1936028793,540157984,544370534,743588166,2053731104,1718558821,1734701856,1953391981,151653673,1935961964,151653730,225927779]},{"sector":6,"length":512,"data":[1668811018,1629513576,2019765368,1832585481,1663071855,2019634296,1661536781,543976545,1953067639,1836278117,1074400622,168639040,758843917,1142959405,543518319,1953066341,1735289204,1884626990,1702125924,1836278048,1684300064,1936942450,1717989152,779380083,168626701,2053731081,1718775909,990447960,544632685,1633640795,1567777892,2019845420,1829308941,1528854127,1684103009,744321636,168654948,758843917,1126182189,1970302319,1830839668,1768448865,1948280174,778399865,168626701,1886216969,1767988000,1936286766,1751343469,221457501,1634339082,1667309669,151597363,543582523,1629513079,1634038380,1797290340,544698222,942874721,1936269366,1701146144,224683364,1702103306,1528853619,1601008481,1717530221,1936154988,1092627549,1147094605,1864380979,1296113778,859922246,1919885362,1179468064,1196639839,151653715,544894570,808674145,1765476617,942874726,151653686,1953719668,1767988000,1918989870,1734437990,1445748083,1147097665,168636979,544893449,825451361,990447904,1847617129,857764975,168638008,808674145,151653690,544632685,778658139,1836280164,1567122273,168637228,825451361,218762554,543582474,1162104653,1129596243,168641613,1987013897,745562656,1936090735,1629516901,1935830879,157442420,1935830843,1952803951,1852383333,1970435187,1869182051,1635000430,224750690,1633880330,1931504748,1836543848,157836129,1701264137,1634541684,1852401763,1701650533]},{"sector":7,"length":512,"data":[1734439795,1852383333,1931505524,1814047849,1952935525,1852383336,1663070068,151653752,2054710122,862150944,990447923,1847617129,1701650543,1734439795,218762597,862150922,168639026,1987013897,745104416,1936090735,1814066277,1600482921,225736047,1701972234,1869422704,157447030,1868774153,1948285296,1814062440,543518313,1814065012,1600482921,225736047,1633880330,1881173100,1819505781,224751209,1684956426,168650345,1667303949,221918003,1835665674,1633755248,151597360,1667326523,1868963947,1752440946,1701716069,1763734648,1953853550,1852402720,218762597,1313817354,1931498579,1701668709,168653934,1627982349,1852270956,168636960,758843917,1243622701,544238965,1818386804,1868963941,1886330994,1851880037,2037653604,779314544,758843917,1864379693,1919247474,543584032,1920233061,544433513,1629515369,1784638835,540110957,1953723757,1952541984,168650851,757935419,1701344288,1701736224,544106784,1601399140,829451626,1679830816,1868526441,1650553968,218762542,1836278026,1886218847,1634476081,543974754,1685221239,1678313997,1868636279,1835622256,1868639341,1836212080,1886347564,1630301535,1918857327,1685024095,1347369737,1296910687,1347362860,743264863,1599098656,1327508557,1599233872,222580557,2003044618,1886347552,1718578527,1630303078,1918857327,1886347564,1633645151,1630299236,1633644655,1329269112,1330470736,743654982,1599098656,1327508562,1599233872,742671425]},{"sector":8,"length":512,"data":[1599098656,168646721,1598903105,1179603023,1902452806,539238517,1935745069,1835687789,168636784,757935419,1685221152,1830842981,544502645,1668571501,1752440936,1852776549,1852383333,1936286752,1953525599,168649313,544695305,925986657,829382956,1868639287,151598897,1347369737,875973983,1347362860,1279675743,743719247,1599098656,1431258189,222645314,2003044618,829382944,1868639287,1630287665,154612079,1329269001,944594768,1327508528,1481465680,1327508568,1095130960,1296387410,1678313997,1868636279,1634099056,1835886962,1886347564,1818587743,1868639288,1701994352,859189612,1329269042,1095130960,1296910674,1347362860,1279611487,1327508536,1163026256,859189580,151653682,1629517668,741945967,1601204065,745108595,1601204065,151614051,1347369737,1212363103,1327508555,1414750032,1327508553,1380147024,1678313997,1868636279,1630286899,741684079,959672161,990447881,1147097167,1327508562,1381261136,1347362860,1195725663,222774610,2003044618,879714592,1868639281,1630286388,1834971247,151615597,1347369737,1296910687,539768915,1230983247,741887309,1599098656,223890765,2003044618,879714592,1868639284,1630287412,154612847,1329269001,1213423440,1514754895,1347362860,539767135,861884495,1678313997,1868636279,1630287924,741880943,942960481,990447881,1147097167,1327508568,1279483728,1347362860,223630175,2003044618,879714592,1868639288,1630287924,154678383,1329269001]},{"sector":9,"length":512,"data":[1396924240,1347362860,743654495,1599098656,168645445,544695305,942960481,879714604,1868639288,151599156,1347369737,743655007,1599098656,539775815,1398755407,218762579,1313817354,1696617555,225666158,990514442,1377837088,1769239919,544433518,1663070068,1801676136,1919903264,1701868320,1768319331,1886330979,1851880037,2037653604,779314544,540740109,1884626976,1931505263,1701012341,539784051,543516788,1953853298,543518313,1970562418,779316850,540740109,1884626976,1713401455,1970039137,539780466,1881175145,544436335,543516788,1970562418,1629515378,1701995620,1629516659,1780507758,1936747893,544175136,825254753,990514478,1411391520,1914725736,1769239919,544433518,1953723757,1701998624,1987208563,1769152613,1684955424,778658848,168626701,757935419,1599098656,539774290,1298092111,1347362860,1298092639,540689487,1919903264,1330454637,793911364,2036473933,221144436,1628048650,1918857327,168639085,1601204065,168639085,1601204065,1869438834,168639076,1818321673,1868636268,151597113,1919903291,1701978221,1701654375,2036473965,168650100,1886218761,812605728,990447927,1948282727,1752440943,1769152613,1663067514,1801676136,168626701,757935419,1599098656,538982994,1768383858,1919251571,218762542,1886347530,221934175,1869416714,1818304630,1768184620,1347366493,776228434,828859762,1701985033,1953720679,1847620197,1700949365,151653746,543452769,925658209]}]],[[{"sector":1,"length":512,"data":[1829308941,1663071855,221457516,1752369418,1818304620,158098220,1752382217,544499305,1763734633,544175214,1667329136,151653733,1528853103,1915644257,1701668709,1630297453,1882917228,1763734645,1852383348,1948282740,1914725736,1831823205,1646292325,224752761,1835665674,1868636272,151598896,544171835,1948282740,1931502952,543521385,1667590243,218762603,757938954,1347362861,1096766047,154813508,1768383858,1919251571,1684086828,543450468,1948282740,1763730792,1920234350,1769235317,221146735,1628048650,1918857327,1684300127,151653690,544632685,1529637985,777873764,1314017359,1701981764,168636775,1684955401,745300256,151653687,544632685,778658139,1868787823,1868522852,1630297458,1882917228,1763734645,1752440948,224752229,1835665674,1868636272,151598896,544171835,1948282740,1931502952,543521385,1667590243,218762603,757938954,1347362861,1296910687,1763713082,1684368749,1702125929,1952539680,168636001,1868630541,1835622256,168639085,1987013897,1767988000,1835886894,1919181921,1768172637,1634941705,1948280182,1814062440,1952539503,544108393,1948280431,225667432,1835665674,1868636272,151598896,544171835,1948282740,1931502952,543521385,1667590243,218762603,757938954,1347362861,1179602271,154817350,1953723754,1701344288,1835363616,544830063,1936090735,168653925,1868630541,1869438832,980641382,1946749453,544502629,1567188059,1380994862,1714308174,1936154988]},{"sector":2,"length":512,"data":[1196572972,1146047839,168643922,2054056457,829382944,990447921,1293969001,1377846351,1646284079,543519865,1027416104,1701978174,1952671082,151653673,544632685,778658139,1684106610,744321636,990472548,1702257011,1701344288,1701867296,1684955506,1768910880,1919251566,1778977293,1629515885,154611823,1869036297,544175136,543516788,1702521203,1701339936,168651619,758843917,1327508781,1480679248,1663049786,1801676136,1919903264,793526560,1160730689,168646721,1868630541,2019647344,151653690,1953719668,1768184608,1347366493,776228434,828859762,168638252,2054056457,829382944,990447921,1998612073,1735290738,1734701600,1702130537,151653746,1886218811,812605728,990447927,1948282727,1752440943,1769152613,1663067514,1801676136,168626701,757935419,2053722912,1751326821,225141605,1628048650,976695407,151587081,757939259,1852121133,544830068,544370534,1381978191,1327508557,743268176,1599098656,1330470738,1327508548,743595856,1599098656,1145134930,774778436,1862863373,1633362034,1635135081,1634494066,744321895,1599226198,1599752531,1145390414,1829308941,1629517423,1633365100,1701981801,2053731185,168648037,1651864329,745300256,990447925,828330063,540160822,874528318,1778977293,1868636268,153104945,1718172425,1599098656,223104065,2053769482,829382944,151593011,543582523,828330063,221393718,757938954,1347362861,826095711,1347362860,1026961759,1327508530]},{"sector":3,"length":512,"data":[842227536,539767613,912216143,221527348,1684080906,1818304612,221457708,1684080906,1818304611,151597868,1852793659,1953654134,757084960,874528301,1684955424,757085216,891305517,1868630541,154810416,990447881,757935420,1953391904,1713404274,1327526511,911040336,774774836,1347362862,1380009567,223167821,1919879434,1767988000,1918989870,1734437990,1445748083,1398755905,1180654153,1145262671,1444948768,1398755905,1314871881,222577989,812605706,976314168,1829308941,1646294639,1683696748,1328438633,1145983568,2053731118,1735549285,1862863373,1818370162,225206828,2053769482,155598880,1765476617,1869488230,2053731104,1768366181,225338742,1919879434,1767988000,1918989870,1734437990,1445748083,1398755905,1197431369,223237705,1835206922,1818304624,225206828,1852442890,1868636261,151597361,543582523,1702521203,1868767347,1768711790,168653923,221921344,1835206922,1818304624,1767988012,1936748334,1566931561,1778977293,1178607717,990447881,1931503209,1936030313,1919377696,168650085,1751349257,1818304615,1767988012,1936748334,1566931561,1661536781,1629515885,221260908,1852442890,1868636282,151597361,543582523,1702521203,1768169587,1919377779,168650085,544370441,778658139,1718772086,1936154988,1096166493,1230200658,1229414234,990465622,825110902,1684086840,224683364,977289226,1913195021,168653925,1868630541,221917489,1835665674,1868636272,151597109,1785033275]},{"sector":4,"length":512,"data":[225731429,990514442,539831597,1096765519,757091404,1819033888,1629517679,1931504748,1936030313,218762542,829382922,168639026,1987013897,745300256,1567188059,1380994862,1932411982,1634040425,168650610,1886216969,745300256,1599752531,1163155778,1778977293,1868636261,153105713,1718172425,1954112032,151653733,1629512298,540291439,1765476617,1853169766,2003791467,151653742,1528853103,1865312609,1685021552,1919901541,154217565,1952805691,1953063456,544106784,1953721961,1952675186,225341289,1835665674,1868636272,151598129,543582523,1702521203,544434464,1864382001,842211442,168626701,757935419,1599098656,842217009,1998597408,543453807,1679848047,1685221239,218762542,829382922,168639027,1987013897,745300256,1567188059,1380994862,1932411982,1634040425,168650610,875655009,151653690,544238947,1395420257,1314871881,222645839,1701447946,829382944,151593014,543582523,1818850419,1853169772,2003791467,151653742,544238947,1395420257,1465866825,222581327,1852442890,1178607717,990447881,1998612073,224686703,1919879434,1767988000,1918989870,1734437990,1445748083,1147097665,168638001,1886218761,829382944,1074400565,168639040,1886216969,745300256,1599752531,1380931396,151653700,543518314,825323361,1765476617,1869488230,2003050612,224686703,1919879434,1767988000,1918989870,1734437990,1445748083,1147097665,168636979,892432225,151653690,544632685,1529637986]},{"sector":5,"length":512,"data":[1865312609,2053731184,168648037,1936028681,1818370164,225206828,2053769482,155598880,1765476617,1769152614,1965057402,1869507438,168652407,1886216969,745300256,168651874,1701734921,829382944,990447921,1931503209,1936030313,1936286752,1701996385,1074400613,168639040,1987013897,1767988000,1936748334,1566931561,225206572,1919879434,1767988000,1918989870,1734437990,1445748083,1398755905,1197431369,223237705,829382922,168639030,1952805385,168626701,538976315,1298092111,757085238,758396448,544500066,1869440365,1914730866,1919247973,1701015141,990514478,1327505440,1179475792,1413566284,1931488544,1818717801,1919954277,1936286565,544108393,1634692198,1735289204,1768910880,1830843502,1919905125,1701978233,1701995878,778396526,540740109,1347362848,1329876319,1162625621,1679830304,1818391919,1919954277,1936286565,544108393,1634692198,1735289204,1768910880,1830843502,1919905125,1701978233,1701995878,778396526,540740109,1347362848,808996191,941632800,1768041776,1701650548,2037542765,1717924384,1852142181,221144419,538983178,1599098656,542660685,1701650477,2037542765,1717924384,1852142181,539780451,1702521203,1802401056,1853321070,990514478,1327505440,1095130960,1296387410,1713384736,1830842977,1919905125,1869619321,1702129257,218762610,757938954,2019696685,1852793632,1852399988,2036473971,1763730804,2019910766,1919903264,1953063456,224551284,829382922,168639031]},{"sector":6,"length":512,"data":[1818321673,1868636268,151597113,1919903291,1701978221,1701654375,2036473965,168650100,1987013897,745300256,1836278107,2053731167,728593774,1093498978,1331645779,1179012944,224211503,1835665674,1868636272,151599152,1701339963,1931504483,224754281,990514442,539831597,1180651599,1296650817,539828301,544366950,1919181921,544437093,1953394531,1701734753,1852383332,1936615712,1668641396,1852795252,168626701,1601204065,1769103718,221932909,1869416714,1818304630,168636972,1059087977,168643920,1936028681,1650139252,1950438211,744321652,224931892,1852442890,1868636282,168636722,1768189541,151653734,544238947,1685221239,1920233504,1768184608,1347366493,776228434,728593774,221260850,2053769482,846160160,151593010,543582523,1647130161,1629516905,1701995620,168653683,825388897,151653690,1528853103,1982753121,1818653281,1567844193,1380013612,842220639,1829308941,1629517423,221523052,846160138,168639026,1987013897,1768184608,1347366493,776228434,1634563438,841770084,540162848,1768186977,1852795252,1646292065,1936028793,1702045728,1852140903,1634738292,220820594,1869416714,1633362038,1835609705,1684300141,1680629106,151653737,544632685,778658139,1769173103,744318330,990473313,741617458,2053731104,1718558821,1717989152,225731955,846160138,976314162,1829308941,1528854127,2016307553,1684300152,1680629106,151653737,225731954,990514442,539831597,1381978191]},{"sector":7,"length":512,"data":[540560453,1701978157,1769234796,1629513078,1701995620,168653683,757935419,1667451424,1330389036,746082383,1131956768,168647256,1868630541,1701994352,221919340,1869416714,1818304630,1514754860,1330139999,168645714,1818321673,1633755244,1668966771,151612264,1701339963,1948281699,1931502952,224754281,1869416714,2019762294,151597612,2053731131,1718558821,1936615712,1668641396,1852795252,1829308941,1629517423,1633365100,1834970483,1818648430,1567844193,168626701,1936028681,1818304628,1179468076,842220639,544370464,1598442817,221655364,2053769482,846160160,154230579,1718172425,1953459744,1131956768,539777624,1347374924,151653752,1953719668,745300256,1598442817,221393732,2053769482,222707744,1919879434,745300256,1598442817,154284865,2018130697,542791747,543452769,1347374924,1701716088,1629512805,1748448800,1869488172,543236212,543700534,1717924464,168654953,221921344,1851853066,1818304612,1953459756,1296115744,860118854,1919885362,1179468064,909198431,151653673,1629516399,1092627564,1096762957,223495236,1869416714,1633362038,1834970483,1818648430,1567844193,225206572,543582474,223170623,1869416714,1751195766,1130519340,1953775955,168648050,1684955401,745038112,224931892,1936483594,151653733,544632685,808216673,1852115469,224815460,1851853066,1818304612,1179468076,842219871,1862863373,1818304626,224944428,2053769482,846160160,221339443,1835206922]},{"sector":8,"length":512,"data":[1818304624,1179468076,842219871,1747989547,1778977293,1868636282,828322610,1762200077,1663066990,151587192,1936615739,1668641396,1852795252,2053731104,540876901,1628048691,1597190767,168639025,1987013897,746086944,1633640795,728917092,168647984,1684300041,746086944,168654947,1987013897,746087200,1633640795,728917092,990469426,841888118,1746942514,1818521185,1766334565,1685221207,1346979112,1919950889,1919250543,168655212,1667522825,746087200,151653680,544632685,1999403105,543453807,544371824,1567188059,1380994862,1848525902,808152437,1829308941,1679849071,1870081144,1881171058,1528853108,777873764,1314017359,1970155076,221391725,757938954,1480794157,542655034,1684828008,793059443,673206345,1668444989,1142959145,1480669784,1819240480,1679848292,168653939,1651864329,746086688,168654946,1650619145,746087456,168654947,1987013897,1954112032,1953505381,1683693682,1328438633,1145983568,1836412462,1818307634,1829308941,1663071855,154610796,1634876169,543516526,1953723757,543515168,1717986918,809002598,540884000,1027350648,808464416,925904944,151653734,544366963,1663855713,990447980,2021161009,2021161080,1043144802,742802976,2021142560,2021161080,757097080,808460350,1661536781,1629515885,1751198828,1778977293,1629513070,1919246191,151597426,543582523,544173940,224880994,1835206922,2019631216,225993772,1852442890,1868636261,1920099679,990447921]},{"sector":9,"length":512,"data":[1948280425,1646292847,168650601,1987013897,1768184608,1347366493,776228434,1634563438,824992868,1634941728,1948280182,1814062440,1952935525,151653736,544238954,842166113,151597407,1986097979,1953046629,1635213600,218762617,757938954,1347362861,1279611487,842217009,1914708026,1952541797,543520361,1886221674,1818321711,1869881452,1814061344,1701277295,1684086898,1936028260,168636019,757935419,2053731104,1718558821,1936615712,1668641396,1852795252,225667360,757938954,694231085,542327584,1647130161,221934697,757938954,857743405,2021140512,2021160992,1780493432,1664053357,694971489,225603360,757938954,874520621,1177561120,544765984,2021161080,990514473,539831597,673199648,2015376950,2021138552,2021161080,220821624,757938954,924852269,909518880,541470752,2015393912,2021161080,695761016,758843917,168635693,757935419,539583008,857756483,1768041778,168639092,757935419,540352544,544765992,2021161080,2021161080,1835671596,1633890160,539585644,168653423,757935419,540418080,541470760,2015393912,2021161080,695761016,168626701,1601204065,829187442,976368438,1829308941,1646294639,1633365112,1684300127,1563437938,1829308941,1663071855,221457528,1869416714,2019827830,1919907628,1953505380,1683693682,1328438633,1145983568,1836412462,168636971,1987013897,745300256,1567188059,1380994862,1932411982,1634040425,168650610,1886216969,1600215840,1868787823]}],[{"sector":1,"length":512,"data":[744318308,1747988529,1936276233,807428384,2021138502,1668312864,1063609455,1778977293,1178607714,1762200077,1663066990,1074400632,168639040,1886216969,745300256,1599752531,1162760014,1778977293,1178607717,990447881,1847617129,1769152623,1730176378,1852143209,1661536781,1629515885,1230187628,1464098650,222581327,1701447946,846160160,151593015,543582523,1702521203,2003051040,577008239,1661536781,1629515885,1230187628,1330405210,168642382,1701734921,1601134880,829583973,1765476617,1869488230,1769152628,572548474,1735290732,1074400546,168639040,1059087977,168643920,1936028681,1650139252,1950438211,744321652,224931892,1852442890,1868636282,168638258,1768189541,151653734,1679848047,2019830904,1778977293,1629518446,1919246191,151597426,543582523,1919250543,543452769,1948283753,1646292847,168650601,1987013897,745300256,990447922,1886611812,1701011820,1953391981,2053731104,221388901,1835665674,1868636272,168638514,926052193,151653690,544632685,875326561,1681590537,1819308905,1835361121,544501349,1702521203,168637472,544370441,778658139,1718772086,1936154988,1096166493,860118866,151653682,543450209,858552419,1631258889,857760868,544175136,1953721961,1769152626,673211770,1713386027,1679848047,1819308905,824909868,1919903264,1748383264,1762266409,1346314342,151653709,1953719668,1130519328,1953775955,875322738,168650800,544893449,168642112,1667589129]},{"sector":2,"length":512,"data":[158884640,1849362697,909516911,1919950952,2020173413,1954112032,1852383333,758264608,544500066,1701080931,1077938701,1695157562,1718183022,1868630541,221919282,1684080906,2019696740,225993516,1869416714,2019762294,1600215852,1919181921,224211499,1684080906,2019762275,168636460,1987013897,1768184608,1347366493,776228434,1634563438,1630299236,1933254764,1701998452,2053731104,1718558821,1936286752,1667329136,1852140901,841490548,544370464,168634676,1987013897,746086688,1685221239,1920233504,1768184608,1347366493,776228434,728593774,151653680,543323507,1647081569,990447992,1886220131,543519861,1094342724,539828312,1111119939,151653720,543318643,1663858788,151653752,544632685,1567188059,1380994862,1848525902,741502325,168654945,1987013897,1768184608,1347366493,776228434,846034286,1680618027,151653752,544632685,778658139,1684109432,744321636,168651108,1952805385,1868630541,1920099679,168639025,1886218761,896491808,990447920,1701471602,168653923,758843917,1327508781,1127309136,757091144,1701336096,1936941344,1818389861,1663070821,1763733089,1919905383,1752440933,1864397673,221144430,1628048650,976826991,1879640589,1629515887,151587192,1936286779,1685217635,1952805408,544109173,1919181921,225669989,1835665674,1667309680,151598640,2019913275,1886330996,1851880037,218762596,757938954,1347362861,1230263135,1394617632,692660308,218762542,1886347530]},{"sector":3,"length":512,"data":[1769239391,151653690,544632685,1378643041,1398753093,990447956,1701080931,1919903264,223630112,1869416714,1818370166,1768184620,1347366493,776228434,845636978,1778977293,1629515885,154678127,1869888265,1836016416,544108397,1701080931,168626701,757935419,1599098656,223890765,1628048650,1834971247,221935725,1869416714,1818304630,1195725356,223169887,1835665674,1868636272,151598899,544175163,1835888483,1663069807,224748655,990514442,539831597,1130319951,218762578,1886347530,980575071,1829308941,1629517423,1683696748,1328438633,1145983568,1734701614,1731922226,1948284005,1763730792,2019910766,1661536781,1629515885,221523052,1634339082,1601134880,829583973,1765476617,1869881446,1768038511,151653735,543518314,151602752,1718172425,1953459744,877806368,1829308941,1528854127,1680763233,1634562921,744319075,1127942453,1763718226,1701716083,1869881463,1701344288,909653280,1077938701,151653690,544238947,824994913,1778977293,1868636261,1920099679,990447921,1126196841,168636754,1829308941,1629517423,1163013228,1380147015,1664813321,543515759,544370534,168645187,1886218761,862937376,990447927,1663070068,1869442415,1868767342,168650084,758843917,1327508781,1380212560,168626701,875786081,151653690,544632685,1378643041,1147094853,990447954,1701080931,1919903264,223495200,1835665674,1868636272,151598899,544175163,1835888483,1663069807,224748655,990514442]},{"sector":4,"length":512,"data":[539831597,1415532623,218762578,862937354,168639029,1987013897,745300256,1567188059,1380994862,1915634766,154298213,1952802619,1701344288,1684957472,168654949,1886216969,745300256,151653683,1629512298,1919246191,151597426,543582523,544173940,1818324339,151653740,544238947,908880993,1778977293,1075864929,151653702,544632685,778658139,1836280164,1567122273,990458924,758338132,1918967861,1701716069,1869881463,1701344288,909653024,1077938701,151653690,544632685,1378643041,1415530309,990447954,1701080931,1919903264,223499296,990514442,539831597,1835888451,1663069807,543515759,544370534,1936025716,1702305893,543453801,1768383858,1919251571,168636019,1868630541,221919027,1869416714,1818370166,1768184620,1347366493,776228434,845636978,1829308941,1663071855,221457516,1752369418,1818370156,225207084,862937354,168639032,544370441,778658139,1835492722,744320357,168651874,544370441,778658139,1718772086,1936154988,1096166493,1330470738,223171140,1835206922,1818304624,1768184620,1347366493,776228434,828859762,1751333641,543908709,544370534,543516788,1751607666,1970151540,1919246957,1914725477,1936287589,225600884,1701447946,879714592,151593008,543582523,745760121,1701344288,1701978222,1852994932,1868630541,979449907,1778977293,1629515885,154154351,1701985033,1952671082,168626701,757935419,1599098656,1380402515,168642373,1868630541,221919539]},{"sector":5,"length":512,"data":[1869416714,1818304630,1768184620,1347366493,776228434,828859762,1929972237,1629512309,875703404,1661536781,1629515885,221654124,1634339082,1868636261,157366323,1718172425,1953459744,1931501856,1701668709,1914729582,1936287589,225600884,1869416714,1818435702,168637228,1818784521,745300256,168651875,544370441,778658139,1835492722,744320357,168651873,544370441,778658139,1718772086,1936154988,1096166493,1230200658,1229414234,990465622,1701078113,1868963940,829825138,221655598,879714570,168639024,1952805385,168626701,757935419,1599098656,1397574985,539828280,1852270931,1954047277,1701080677,1835606116,1768187245,543519841,1702132066,1431316512,2015381587,168634744,1868630541,221917492,1851853066,1633362020,1635135081,1634494066,744321895,544501614,1599226198,1599752531,1145390414,1684093705,543450468,544370534,808333686,1327509049,168640363,1987013897,746086688,1685221239,1920233504,1768184608,1347366493,776228434,728593774,151653680,544632685,925658211,1929972237,1629516385,1818438764,1778977293,1629515885,154350703,1868774153,1852796269,1685021472,218762597,757938954,1347362861,1296910687,539828280,1701670217,1952541028,2036473957,168650100,1868630541,221917748,1869416714,2019631222,1919907628,1953505380,1683693682,1328438633,1145983568,1836412462,168636459,1987013897,745300256,1628048688,976434287,1661536781,1629515885,1751198828,1778977293]},{"sector":6,"length":512,"data":[1629513070,154154351,1718172425,1869575200,1734959648,1661536781,1629515885,1870081144,1881171058,1528853108,777873764,1314017359,1970155076,221391725,1852442890,1868636261,151597109,543582523,544173940,224880994,1869416714,1818304630,1514754860,1415135839,151653701,1819042147,1935761696,1751349865,990447979,1667590243,1752440939,1931506785,543521385,807419197,544370464,151653681,544632685,1647077473,543519865,544371824,1567188059,1380994862,1848525902,808152437,1829308941,1998616175,543453807,544371824,1567188059,1380994862,1848525902,1684106613,2019634276,1953708809,543519343,1735288172,673212532,691089200,1948265248,1646290280,224752761,1869416714,1633362038,2021142121,1919181921,1768172637,1868630541,1952805471,151653690,225731954,990514442,539831597,1398755407,1230196552,539828314,1668444006,1752440933,1937055845,1948283493,1701060719,1918987363,1752440933,1769152613,1864394106,1752440934,1701716069,1864397944,1634887024,168649838,1868630541,221918260,1702103306,1528853619,1982753121,1818653281,1567844193,1380013612,1514754911,1162169951,151653700,1629518442,540357743,1765476617,1869488230,1936028704,1735289204,1701146144,1948283748,1700929647,1852793888,151653733,1953719668,1767988000,1918989870,1734437990,1445748083,1398755905,1197431369,223237705,2053769482,896491808,151593008,543582523,1702521203,1935767328,1986619168,673214053,1044200736]},{"sector":7,"length":512,"data":[1785033248,695493477,1868630541,221918516,1851853066,1633362020,1635135081,1634494066,744321895,544501614,1599226198,1599752531,1314277703,1818442505,544366949,543516788,1734437990,1661536781,1646293101,543519865,544371824,1567191899,1599098668,944590153,1778977293,1868636261,157365556,1718172425,1599098656,944590153,544434464,1954047342,1752440876,1679847013,1948741231,1952805664,1380013600,1514754911,1162169951,151653700,1528853103,1982753121,1818653281,1567844193,1380013612,1514754911,1162169951,1628048708,1630876783,151653690,544632685,1702132066,1920233504,1767988000,1936748334,1566931561,168636460,1886351369,158884128,1681590537,1633907561,1914725490,1920300133,1684086894,1936028260,151653747,544238954,909140833,1849362697,544503909,1919250543,224685665,990514442,539831597,828330063,168626701,909406049,151653690,544238947,1685221239,1920233504,1768184608,744306475,1748054065,1751333664,543908709,1752461154,2053731104,1851859045,1635131492,224753004,1835665674,1868636272,151599412,1936028731,1953046644,1952541728,168653413,758843917,1327508781,221470544,1628048650,976696431,1661536781,1998614637,543453807,544371824,728327259,858545463,543699248,1701339963,1646291811,543716463,1702521203,1684955424,1818326560,168650101,1886218761,879714592,990447929,1953719668,544500000,1702125932,218762610,757938954,1347362861,743982175,1599098656]},{"sector":8,"length":512,"data":[539774019,1398755407,1327508564,1397055312,774774828,1327508526,1397186384,758843917,1646275885,1868767352,1767994478,1763734382,2019910766,1919903264,1953063456,224551284,1628048650,976761967,1829308941,1629517423,1633365100,1918856563,1970169701,2019699565,1396779053,1347379021,541476431,1347362859,542655583,1347362861,875973983,1563569961,1661536781,168654690,1886216969,746086688,1685221239,1920233504,1768184608,1347366493,776228434,828859762,168626701,959737697,151653690,1629513066,1701994351,218762612,757938954,1699881005,1952671082,1768453152,1886330995,1851880037,1768693860,221148275,1628048650,976237935,1879640589,1629515887,151587192,1936286779,1685217635,1952805408,544109173,1919181921,225669989,1835665674,1667309680,151597360,544171835,1801675106,544175136,544830068,543516788,1954047342,1953259808,1634628197,1702259060,168626701,757935419,1396785440,1212373577,539828299,1667590211,1752440939,1948284001,1931502952,543521385,1702259047,1936269422,1864380448,1279336562,218762542,1935761674,1751349865,168639083,1886216969,1768184608,1347366493,776228434,1702521203,744976993,1599752531,1162760014,1778977293,1868636261,1952805471,1661536781,1528852589,777873764,1314017359,1769156164,1918985594,1818307687,1778977293,1868636261,1952805471,1879640589,1629515887,151587192,1936286779,1685217635,1952805408,544109173,1919181921,225669989,1835665674]},{"sector":9,"length":512,"data":[1868636272,168636469,1633749517,1684956448,218762608,757938954,1866735661,1734701600,1835363631,1869770784,1936942435,778530409,758843917,1763716397,1142962798,1329474889,1145983568,758843917,1428172077,544433523,168646721,1868630541,1881157689,224620402,1702103306,1528853619,777873764,1314017359,1818635844,745760609,1196572960,1398098527,1195725396,1778977293,1629518446,154286447,1718172425,1937074720,1701978228,1953720679,168653413,1936028681,1683693684,1328438633,1145983568,1634493998,539784039,1598509633,1380208461,151653709,1075870314,151587142,543582523,1881173870,1868785010,1953853549,1293968485,1377846351,1646284079,224752761,1869416714,2019631222,1919907628,1953505380,1683693682,1328438633,1145983568,1734701614,1731928113,1948284005,1881171304,1868785010,1953853549,1646290021,1936028793,1778977293,1629515885,154351983,1868839689,168650094,221921344,1869416714,1818304630,151598636,1852793659,1953654134,1634496544,1679847017,1819308905,1835361121,544501349,1293971316,1377846351,168643887,1936028681,1633362036,1834970483,1818648430,1567844193,1179468076,842219871,1778977293,1868636282,153105209,1718172425,758526240,544500066,1919181921,1769173861,168650606,1667589129,225992992,1835665674,1868636272,151597881,1852793915,218762597,963600650,168639026,1987013897,745300256,1567188059,1380994862,1915634766,154232677,1852793659,1953654134,1734701600]}]],[[{"sector":1,"length":512,"data":[1702130537,1869881458,1146047776,1294946848,1718159885,168636704,1886216969,745300256,1598506322,168643917,2054056457,222707744,1869416714,1818304630,1768184620,1347366493,776228434,845636978,1077938701,1695157562,1718183022,1627982349,1629512814,154610796,1701264137,1869357172,540221559,1937008994,1862863373,1818304626,811806764,218762600,963600650,168639027,544370441,1685221239,1920233504,1767988000,1734701614,1567450477,158884140,1869902651,1948280178,1293968744,1377846351,1629506863,1394631790,168641097,544370441,778658139,1718772086,1936154988,1096166493,1330470738,156062276,1634494011,1953046631,1919950963,1852142437,168650083,1987013897,1767988000,1634562606,1567777892,157901868,1634941705,1629513078,1768910880,1919251566,1913195021,151614565,1681590537,224751215,963600650,1852121136,168652900,540740109,1094787104,1431193161,539828301,1702126916,1852403058,1718165605,1701344288,1931961714,1847615776,1700949365,1701716082,221148280,538983178,1953383712,538999154,541868320,1936877894,1751326836,1667330657,544367988,1847617135,1700949365,990514546,538976265,541676320,1919181889,544437093,1847617135,544503909,1918986339,1702126433,1718558834,1836412448,225600866,538983178,1769489696,538976372,542720800,1634036803,1718165618,1701344288,1931961714,1847615776,1700949365,1931488370,1864397925,1919248500,1702062455,990514478,1428168736,544433523]},{"sector":2,"length":512,"data":[1310728224,778399343,168626701,1718182241,544044398,1668248176,1661536781,1629515885,757541996,151653671,1629513066,540174689,1765476617,1768759398,544437614,1852270963,1633888288,544830066,1663071081,1918985580,151653673,1752397168,225992992,1970473226,1818304610,657467180,1661536781,1629515885,808529004,1879640589,1629515887,151653752,1629512298,540109153,1765476617,543236198,1768384868,151653748,1752397168,225992992,1851853066,1818304612,1431262252,1380274256,1929972237,1629512309,1093086316,151653671,544238947,908880993,1879640589,1629515887,1628048760,976316769,1661536781,151610221,1633893129,544830066,1634036835,1027350642,1763720765,544417652,1970151521,1919246957,1633749517,221917801,1701972234,1628048756,1852205409,1696623989,225469550,990514442,1092624416,1413826369,539828297,544499015,1970151521,1919246957,1869768224,1752440941,1852383333,544503152,1701734764,990514478,1159733280,2037544046,1092624416,1766203468,544502642,1918986339,1702126433,1718558834,1836412448,225600866,537475850,1394614304,1681989705,1936028260,1718558835,2019913248,1751326836,1667330657,544367988,1847617135,1700949365,990514546,1159733280,544500088,1142956064,1480735320,1936020000,1769237621,1847617390,1700949365,990514546,538976265,541868832,1718165553,661940512,543236211,1702132066,1920233504,540155948,1629513321,1919907616,874523748,543582496,2003050593]},{"sector":3,"length":512,"data":[224686703,537475850,1092624416,1699618892,1663071352,1634885992,1919251555,1953459744,544106784,1651340654,168653413,538970427,1230184480,1684291872,1936942450,543584032,1954047342,1634231072,1952670066,1629516389,1919251558,1634235424,990514548,1428168736,544433523,1092624416,1126181960,218762568,1734435082,543781989,1668248176,1661536781,1629515885,757541996,151653671,1629513066,540108641,1765476617,1701716070,1769234791,168650102,1818321673,1633755244,151598183,1952802619,1701344288,1918984736,1970151525,1919246957,1829308941,1663071855,154217592,1702050569,1886724212,225993504,1919879434,746087456,168654948,2054056457,1734435104,990447922,1679844969,1685221239,1862863373,1751261298,224944684,1852442890,1633755258,151597927,543582523,1685221239,1913195021,151614565,1953053449,1629516583,1954112032,218762597,1734435082,168639025,1685023753,168649331,1818321673,1633755244,151598183,1952802619,1701344288,1918984736,1970151525,1919246957,1829308941,1663071855,2019699832,1862863373,2019762290,225993772,1869416714,2019762294,168636716,544893449,828858721,990447969,757098089,151653680,544501614,151615588,1701722889,1702125927,1701344288,1936613664,225600887,1701710090,2019696743,1661536781,168649581,1667522825,746087456,151653680,1953719668,745038880,224931896,2053769482,1667326240,1919246198,990447986,1696622185,1919906418,1661536781,1679847533]},{"sector":4,"length":512,"data":[825044088,1778977293,1629513070,154298209,1718172425,1870095392,168649842,1936028681,1751261300,1747990572,1778977293,1633755258,153104999,1718172425,1870095392,168649842,1886216969,745038368,168636717,1701734921,1734435104,990447923,1998612073,224686703,1702103306,1646294131,808987756,151653736,1629518442,540239713,1765476617,1870078054,168649842,828858721,168639073,1952805385,990447881,1931965545,1646289184,224752761,1628048650,976381793,1762200077,1663066990,151587192,1952805435,980316789,1953046560,1629516583,1870095392,168649842,1668180233,225993504,1734435082,168639027,1668180233,158884640,1916471561,1920300133,538983022,1931965545,1998610720,224686703,1701972234,218762612,1734435082,168639028,1919907849,746086944,151615586,1952802619,1701344288,1935761952,1763730281,1734702190,168653413,1919907849,746087456,168654948,1818321673,1701257324,1652125300,1778977293,1633755235,1700755043,151614066,543582523,544501614,1701322849,1768169592,225732967,1734435082,168639029,544370441,1630301282,990447980,543450209,1948284009,1752440943,1970151525,1919246957,1812531725,1651729519,1661536781,543976545,1853121895,168649337,543386121,828858721,990447969,1679844969,224751215,1702103306,1679848563,1714433128,168650800,2054056457,1667326240,1919246198,990447986,1864394345,1718773110,225931116,1869416714,2019762294,168637484,912744801,151653690]},{"sector":5,"length":512,"data":[543975539,824997986,1933248777,1952868712,544500000,874543458,1913195021,1679846499,221326456,1869351178,1629515887,221669217,1835665674,1633755248,168637799,1633749517,1769235815,1684956448,218762608,538983178,1128349984,1230392911,1480934478,1126182176,1702260335,1914729586,1819636581,1713402740,544042866,1162297665,1629505876,1931502702,1701998452,1684957472,1981839461,1702194273,540740109,1850023968,544830068,1480859680,743981626,1092635715,1852383347,1769497888,1919295604,1092644207,1413826369,990514505,538976265,541672480,1852403536,1948283764,1852383343,1836216166,1869182049,1701978222,1685221219,1919903264,1768453152,1918967923,990514535,1159733280,544500088,1394614304,1768038483,1931506548,1701998452,1852383332,1768184608,1347366493,776228434,1701080681,990514552,1428168736,544433523,1142956064,218762572,1667326218,1769369199,2019910766,1869770784,151653731,544238947,824994915,1778977293,1629513070,1601594209,158495333,1718172425,1701344288,1836412448,544367970,1948283753,1814065007,1701278305,1661536781,1646293101,221326444,1701447946,1667326240,151597686,543582523,151653681,543387241,168654948,1886216969,745300512,151653682,1629513066,846619489,1765476617,221388902,1852377354,2019827811,1661536781,1646293101,221523052,1701447946,1667326240,151597686,543582523,151653684,543387241,168654948,1886216969,745300512,151653688,1629513066]},{"sector":6,"length":512,"data":[846619489,1765476617,221782118,1667326218,1919246198,221919858,1835665674,1835212912,1919246180,158494578,1919236873,225603442,1628048650,846619489,151653690,544632685,1567188059,1380994862,1764639822,2019910766,543974444,1986097979,1752440933,1635131493,224753004,1701972234,1628048756,1852793697,1684957558,1696626789,225469550,990514442,1092624416,1413826369,541541714,1699160109,1701978228,1953720679,1713402469,1948283503,1629513064,1835365235,1919249506,990514478,1159733280,2037544046,1142956064,1951604809,544502369,1914725999,1936287589,544367988,1818386804,990514533,538976265,542655264,1735288140,1864394868,1701978214,1953720679,1948283493,1701601889,1864378400,540024946,990514473,538976265,541676320,1919181889,544437093,1713399407,1953722985,1634231072,1952670066,1763734117,1701978222,1953720679,1847620197,224750945,538983178,1769489696,538976372,541281824,1629513321,1734701600,1702130537,1635197042,1868963955,224685685,537475850,1394614304,1884627017,1702125924,1718165604,1914724640,1936287589,544367988,544432503,1853189990,990514532,538976265,542655008,1768383826,1919251571,1836412448,745694562,1717920800,1684369001,544432416,1948282473,1948280168,1701601889,1818583584,221149039,538983178,1702057248,538976371,743981344,743981856,222905376,990514442,1159733280,544500088,1970037110,1718558821,978862624,154864141,1025526084,1852273184]},{"sector":7,"length":512,"data":[825781601,1126181942,540876888,1141454642,540876873,1634625394,741749101,542655264,221782077,755579658,757935405,757935405,757935405,757935405,757935405,757926189,757935405,757935405,757935405,757935405,168635693,540019003,539897376,540686112,541868320,1109405230,540019016,539897376,540686112,542654752,1142959662,990514505,538982409,824192558,538982965,773871681,1229201454,540422409,840969774,538982963,777535813,1229210926,154864141,773862961,858923054,1159733306,774789185,222905413,839465738,774774836,976826912,1397039136,539897376,168645447,808651067,539897376,540685363,542397216,1411395118,218762578,1734435082,1701999717,1919950951,168649583,1987013897,746086688,1567191899,1627982349,1629512814,1330916472,1162891349,156720978,1852793659,1953654134,544175136,1701867637,1633886322,168650099,1886216969,745300256,153568551,1751333641,543908709,544370534,743981381,1668572448,151653678,543518314,1919377761,990447921,1847617129,168653935,1937076233,2019631208,1829308941,1629517423,1751198828,1829308941,1629517423,1935354984,1563569001,1627982349,1629512814,1330916456,1162891349,151653714,1752397168,225010720,1869416714,1768169590,1717989164,544499059,1634625394,221655405,1970276618,1663068275,151653752,544632685,1311537251,1195725407,221655379,1701972234,543518320,1935762291,151653751,544632685,1663858786,151653752]},{"sector":8,"length":512,"data":[544239472,168654947,1886351369,225010720,1869613322,2019631216,1778977293,1629513070,829581153,1765476617,1869488230,1952541984,168650851,1668180233,225014560,1869482250,2019696756,1627982349,1646290020,725101676,151598641,1784963387,544502645,168646722,1886218761,1734435104,151597682,1852401211,543716201,168652917,1633749517,976319079,1829308941,1646294639,2019765368,674957577,1663067753,540876920,1948265520,544434536,1629516649,2036430700,1701978227,1701340001,1769414756,168650868,1885696521,1931502958,2004050275,540739849,1663059546,1918985580,151653673,543518314,1919377761,990447923,1847617129,1634541679,224945012,1970473226,2019696738,225993516,1701054730,2019696739,1661536781,1646293101,909192300,1778977293,1633755234,154301031,1718172425,541868320,1109405230,1919885384,542654752,1142959662,151653705,543450209,942435426,1633749517,976384615,1762200077,1931502446,151587177,1768649531,1752440944,1701978213,1953720679,1847620197,224750945,1852377354,1769152611,1661536781,168649580,1952805385,1633749517,976450151,1929972237,151610228,1869495049,1868963956,224685685,1701972234,1628048756,1952802657,543647090,1885630053,168626701,757935419,1663058720,1634561391,757097582,1836016416,1701994864,1954112032,221148005,1661603082,1919950947,168649583,1818321673,1634738284,1667593074,990447981,1936875888,1918967909,1701672295,544437358,1952805672]},{"sector":9,"length":512,"data":[1396973683,1932485946,1159736425,795163219,539781476,2019766117,1762266409,1346314342,151653709,544238947,1530557283,1684291938,1563571058,168636460,544893449,221457188,1650723082,1748383264,1852390153,1667571811,1695157624,1718183022,1762200077,1663066990,1661603192,154808675,990447881,757935420,1852793632,1970170228,1868767333,1918988397,151653733,1752397168,225666080,1970276618,1696622707,151653747,1752397168,544437024,1681590537,1195654515,1347768146,1879640589,1679847535,151653747,1819042147,1752130592,158032737,1702050569,1701060724,1734833506,1931961701,1953392928,791884320,168637490,1886351369,225666336,1869613322,1935941744,168626701,1059087977,168643920,1886216969,980640544,1682006619,842232420,221260893,2053769482,858465312,1678313997,926294114,151587176,1885696571,1835212901,543322992,1530557284,1567191909,980641068,1768187227,1695157597,1718183022,1913195021,543518821,1936747875,151653730,1718116716,1718159885,1297104672,1661536781,1663070317,1650145907,1919181889,744305203,151653680,606108266,168637227,543319049,157824822,1987013947,745301024,1769170267,224211245,1684956426,168650345,1987013897,745301024,761885531,151608625,1986097979,1752440933,1869619301,1651078003,1696627052,1851880050,1751326836,1667330657,1936876916,1718159885,1297104672,1778977293,723787898,151653683,908092004,990472247,544632685,1697409124,1700477555]}],[{"sector":1,"length":512,"data":[825059684,1695157597,1718183022,1829308941,1679849071,1936010344,1768184634,224211245,1970276618,1679845491,151653747,1752397168,225666336,1970276618,1931503731,151653747,544239472,168653668,1818321673,1853169772,1801675112,1933248777,1679848549,1735746149,661808487,1852383347,858923124,221524527,1869613322,1936007280,1879640589,1679847535,151653747,1718116723,1778977293,1075864942,151653702,544238954,540173155,1765476617,1702305894,543519271,1701736292,1077938701,151653690,1752397168,225993504,1970276618,1696622707,151653747,1752397168,225669920,1869613322,1936007280,1929972237,1885698665,156788338,1869429513,1650794614,1684352120,151653737,544632685,1680636002,990447977,1702257011,1564826400,168642884,1987013897,745104416,1936090735,1814066277,1600482921,225736047,1869416714,2019631222,225666092,1633880330,1746955372,1870100581,168649842,1987013897,745300256,220674599,1953696010,224555887,543582474,223170623,1869416714,1885479030,1717989164,544499059,2004378984,224686703,1769146634,1919968634,151593062,1667589179,1769170208,1678313997,1931502437,151653737,1702521203,543584880,1832585481,1696626287,1697413217,168651123,1987013897,746086688,168651123,2053731081,1718775909,990447904,543387241,225014629,1852377354,1769152611,1661536781,1663070317,1650145907,1919181889,744305203,151653680,1075870314,151653702,544632685,1865183330,1702061670]},{"sector":2,"length":512,"data":[1701322868,1870095480,168649842,221921344,1633880330,1646292076,1695157616,224752492,1701579018,2019631201,1769167660,224211245,1633880330,1746955372,1870100581,168649842,1768189541,151653734,544632685,657225825,220667936,1953696010,225932143,1869416714,1818304630,225207340,1633880330,1746955372,2036496485,168650100,1987013897,746086688,656416807,1929972237,2004053876,1829308941,1629517423,1751395436,1661536781,543976545,1652057448,224752761,1869416714,2019631222,538978092,151653671,1936684147,151653751,544239472,168654945,1937076233,2019631208,1661536781,543976545,2004378984,224686703,1869416714,1818304630,658122540,1929972237,1651732340,1718159885,1297104672,1929972237,1885698665,153118322,1701067529,1650794595,151653752,543384932,168654946,2053731081,1718775909,990447904,544632685,746086757,225993317,1869416714,2019631222,225993260,1769146634,1919968634,151593062,1668180283,2019714336,1762200077,1646289774,151653752,1819042147,225468960,1936483594,151653733,543253868,1529641057,825063522,151653725,1819042147,2019911712,1685221239,1852115469,224815460,1970276618,1679845491,151653747,1752397168,225669920,1869613322,1935941744,1879640589,543716213,168654946,1818321673,1970282604,1768715124,168650094,1886351369,225010720,1869613322,1935941744,1879640589,1696624751,151653747,544239472,168654947,1059087977,168643920,1886216969,980640544]},{"sector":3,"length":512,"data":[1682006619,842232420,221260893,2053769482,858465312,1678313997,926294114,1782253928,2054710117,845374240,1852115469,224815460,1667893514,1663072888,168637027,1886218761,828597024,990447904,1847617129,1679848559,543518319,225731961,845374218,151653690,1752397168,544437024,1916471561,1869902693,1931502962,1701668709,1914729582,1936287589,1936876916,1879640589,1679847535,151653747,1752397168,225669920,1869613322,1936007280,1913195021,168653925,1696621411,225469550,1762266378,1346314342,218762573,1313817354,1931498579,1701668709,168653934,1668506980,1702060386,543319072,1633820711,1060988275,1061109567,541015871,1768778092,1061109108,1061109567,1629503295,1030911092,1061109567,221260839,1313817354,1696617555,225666158,990514442,539831597,1663061060,1634561391,168649838,1701054989,1970234227,1919950964,168649583,942812681,151653686,1819042147,1768649504,1768454000,168650100,1818321673,1701257324,1919907700,990447972,544499047,1685221239,1953392928,1480859759,1829308941,1646294639,2019830904,1661536781,543976545,1885956979,1835888483,151653680,544632685,824997988,1661536781,1629515885,1380133996,1778977293,1178607738,1661536781,543976545,2004116839,224686703,1633880330,1663069292,1868917608,151653740,543452769,1680636004,151653752,544894570,168642112,1668180233,225993760,977289226,1829308941,1931507311,2019830889,1933248777,543520353,1853189987]},{"sector":4,"length":512,"data":[151653748,1819042147,1886611744,151653741,544894570,1954047342,1668506980,1829308941,1931507311,1718561897,1952805734,1953459744,1886418291,1829308941,1663071855,1769155704,1718576506,1953459744,1886418291,1913195021,1830842469,1651734127,1829308941,1931507311,1718561897,1952805734,1835889184,168650611,1818321673,1868767340,1953724784,1735289202,1778977293,1881174125,1819505781,224751209,1936024586,1868848995,221930862,1701972234,1846152564,1685354597,979596133,1678313997,1931502437,151653737,1679848298,1600353125,1701736292,1829308941,1679849071,1718561897,1952805734,1852402720,1970233189,151653748,544632685,1647081569,151653752,1819042147,2019911712,1685221239,1879640589,543716213,168651123,1937076233,1768169576,1829308941,1931507311,1718561897,1952805734,1936024608,1935762019,151653733,1819042147,1886348064,1920234361,224882281,1869613322,1768169584,1879640589,1931505775,151653737,544632685,908884065,1762200077,857764974,168650801,543386121,168642112,1684300041,745104416,151653686,544632685,1663858785,151653752,1819042147,2019911712,1685221239,1829308941,1629517423,2019830904,1661536781,543976545,2004378984,224686703,977289226,1929972237,1885698665,153118322,1936472841,1634017388,1650797688,151653752,543978348,1647081569,151653752,544894570,1668506980,1953853279,1929972237,1885698665,153118322,1634482953,1684349042,1650797688,151653752,544366956]},{"sector":5,"length":512,"data":[1647081572,151653752,1702521203,543584880,1933248777,1696625256,942438500,1929972237,1679848040,221785208,1869416714,1768169590,1717989164,544499059,1701734764,1953853279,221590059,1835206922,1834688624,1768448865,744318318,151653683,1075864170,151653702,1819042147,2019911712,1919907684,151653732,544238954,1668506980,221409119,977289226,1661536781,543976545,2004378984,224686703,1869416714,2019631222,538978092,151653671,1936684147,151653751,1936684147,1678380407,1600353125,221917807,1869416714,1768169590,1717989164,544499059,1701734764,1953853279,724906539,168637489,1987013897,746086688,168654948,1818321673,1701322860,1919907704,1678380388,1600353125,980710767,1829308941,1679849071,1718561897,1952805734,1852402720,1970233189,892480372,724840747,151653684,1752397168,225993248,1633880330,1881173100,1819505781,224751209,1869613322,2019696752,1627982349,1646290020,221785208,1835665674,1701716080,1701082232,168649587,1668506980,544503151,1885630053,168626701,757935419,541672480,1835888483,224685665,1728711946,1868919905,1881175157,224620402,1633880330,1931504748,2003855723,1702127976,1661536781,543976545,1651795303,157643897,1701264137,2036473972,1763730804,544175214,168643652,1987013897,746086944,168654948,1818321673,1802707052,1868787817,221277549,1869416714,2019827830,168636716,1886216969,745300256,168645187,544893449,168642112,1818321673]},{"sector":6,"length":512,"data":[1701257324,1954112116,990447973,544499047,1702132066,1953392928,1279533167,1661536781,543976545,1701537891,168651887,1684955401,746087456,168654948,2054056457,222707744,1852377354,2019827811,990447881,1970499173,1948280178,544498024,1853189987,1936269428,807419424,1077938701,151653690,1819042147,1701998624,1667328112,151653739,544632685,1680632179,990447992,1702257011,1970234144,168653934,1702125927,1601467759,154808368,1010501897,539831597,1954047342,1953392928,1668834607,1661536781,543976545,1634234212,151612259,1952805691,1650811936,1701275509,544417637,544501353,841954098,151653684,544632685,1865181540,1702061670,1768693876,1868522862,168653941,1987013897,745300256,168651874,1818321673,1701322860,1954112120,151653733,544632685,657222753,168634144,1869902601,168649331,1818321673,1936269420,168652144,544893449,1702125927,168652146,942812681,151653686,544632685,808220769,1748250674,1661536781,1646293101,808594540,151653736,543384673,824993890,1634142733,1970234740,825253748,151653690,544501353,224932147,1667893514,1952540448,1767990885,224683372,1869416714,2019631222,225993516,1633880330,1746955372,1870100581,168649842,1987013897,745300256,220674599,1953696010,224555887,1835206922,1683693680,862547312,808213810,1778977293,1634148474,909206900,772344333,221657139,1752369418,1696621676,1697413217,824997988,151653686,1819042147]},{"sector":7,"length":512,"data":[2019911712,1685221239,772344333,909652024,1634142733,909206900,151653690,544632685,1680636001,151653752,1819042147,2019911712,1685221239,1829308941,1629517423,539438188,151653671,1936684147,151653730,544632685,808220769,1748119602,1678313997,1646289765,151653736,544894570,1702125927,1601467759,168636720,1702125927,1769497951,168639092,1818321673,1853169772,1801675112,1933248777,1679848549,1735746149,661808487,1852383347,858923124,221524527,1970276618,1646291059,151653752,1819042147,1953853472,1852402803,151653733,544239472,168654946,1668180233,225993248,1701054730,1769152611,1778977293,1730181742,1868919905,811562101,151653680,225731954,1952540426,980251237,1829308941,1663071855,221391980,1970276618,1646291059,151653752,543975539,1663858786,151653740,1752397168,225666080,1870137610,2019631218,225993004,1869416714,1935941750,225993004,1869416714,2019631222,2019711788,224211499,1869416714,2019827830,2019711788,224210987,1869613322,1935941744,1879640589,1646293103,151653752,1819042147,2019911712,1685221239,1829308941,1629517423,975645804,151653671,1936684147,151653730,544632685,824993890,1778977293,1730179181,828732513,1728711990,1717924961,1701603681,168639076,1987013897,745104416,1936090735,1814066277,1600482921,225736047,1869416714,1769152630,1717989164,544499059,1702125927,1852797559,151653735,1819042147,1886348064,1920234361,224882281]},{"sector":8,"length":512,"data":[1869416714,1769152630,168636716,1886218761,1952540448,2019909477,168653929,1702125927,544503151,1885630053,1852115469,224815460,151653642,942684206,218762550,1650683146,544503151,1668248176,1812531725,1651729519,1661536781,543976545,1701537891,168651887,1869416763,1768169590,1717989164,544499059,1701734764,1953853279,1829308941,1629517423,1395076216,168634192,1869902601,168654707,1987013897,745038112,220674599,1953696010,225932143,1869416714,2019631222,1936743212,1700947056,151653725,1819042147,2019911712,1685221239,1661536781,543976545,1937012080,1701734764,168626701,1987013897,745108256,1129150299,168648002,1954047342,979526509,1829308941,1679849071,1718561897,1952805734,1852402720,1970233189,151653748,1752397168,225666080,1633880330,1931504748,1935963237,225014578,1869416714,1751326838,980640812,808464475,168647984,1987013897,746086944,1530557284,825241648,1866139997,1919250039,1886613536,1829308941,1679849071,1935944824,808475450,224211760,1869416714,2019631222,225014572,1633880330,1746955372,1870100581,151610482,1734701883,1953391981,1684300064,1936942450,543584032,222446413,1869416714,1818304630,656418604,1929972237,1651732340,1829308941,1629517423,1751329900,1661536781,543976545,1652057448,157643897,1294416649,1919885351,660219680,1829308941,1629517423,539438188,151653671,1936684147,151653730,544632685,1647081569,151653752,1819042147]},{"sector":9,"length":512,"data":[2019911712,1685221239,1295714569,1864385091,1919250039,1829308941,1629517423,539438188,151653671,1936684147,151653730,544632685,1680636001,151653752,1819042147,2019911712,1685221239,1295714569,1931493955,543521385,1881173609,1734439521,1752195442,151653747,544632685,657222753,168634144,1869902601,168649331,1684955401,746086944,168654946,1668571504,1835687784,1634476144,543974754,1702132066,1882917129,1751348321,1953068832,1111826536,1932009576,1953656680,1836411424,1763715440,1329864806,540155987,857764463,1778977293,1668096122,1718839650,224748914,1970276618,1931503731,151653737,1752397168,225993504,1970276618,1679845491,151653752,544632685,942434675,1829308941,1663071855,221391992,1835206922,2019696752,157905708,1936276233,544500000,2037588065,1835365491,1111706912,168640288,544893449,1954047342,1667392365,225599848,1701054730,2019696739,1661536781,543976545,1685349747,2019701363,1681590537,1920234341,544438639,1629517923,1679844462,1718165624,544106784,168652144,1987013897,746087200,1846152504,1836349541,1751343715,154825313,1664813321,544829551,1701667182,543584032,1701738351,1129128050,151653698,1935961964,151653730,1936684147,151653730,543452769,1630301281,151653740,1886351212,1847622254,1836349541,1751343715,168653409,1886351369,225993760,1869613322,2019762288,1879640589,1931505775,1829375337,1936286307,1701147238,151653690,544239472]}]],[[{"sector":1,"length":512,"data":[168653668,1684300041,745108256,168654948,543386121,1868718957,1683977333,224751215,1852377354,1769152611,1661536781,1663070317,1294412904,151653671,1075870314,151653702,544238947,657221731,168634202,2054056457,1650683168,1601467759,1701736292,1077938701,1633880378,1881173100,1819505781,224751209,1835665674,1701716080,1668117624,218762594,1952805642,1932686180,168639081,1987013897,746086944,168651123,1685349747,2019701363,1762266426,1346314342,151653709,1819042147,1886611744,151653741,1931508330,1601385060,168654949,1987013897,746087456,168654946,1818321673,1702043756,1936552564,225273701,845443850,2019909491,1695157562,1718183022,1829308941,1679849071,2019699827,1668090381,1953853282,1852793951,168639077,1952805385,1668090381,1953853282,1684956448,218762608,757938954,1480859693,1836016416,1684955501,1766072366,1634496627,2019893369,1684956532,1830839397,1919905125,942153849,909652528,168634667,1718159885,1398293536,223367253,841877770,168638008,1836349541,1881173349,224620402,1633880330,1931504748,2003855723,1702127976,1661536781,1629515885,1380133996,1778977293,1178607738,1661536781,543976545,1685349735,1685221239,1731922185,1814066277,1634037353,1684086898,1936028260,1852383347,1646292852,2019834488,1661536781,543976545,1701537891,151612527,1886938427,544498533,543452773,1814062703,543518313,1701995880,1829308941,1998616175,543453807,544371824]},{"sector":2,"length":512,"data":[1633646683,728917092,1680629040,151653752,544632685,1685221239,1920233504,1601723168,1919181921,744305195,168654946,221921344,1869416714,1817911414,1668576097,744318061,1936090735,1696625765,1701672056,151653741,544632685,1865181540,1702061670,1768693876,1868522862,990475381,1634038371,1629513076,1413760800,1919903264,1953384736,1748316448,1751195692,1748449341,2013858317,1629516399,2019634296,1829308941,1663071855,875703416,1765476617,544500078,1701060662,1769104243,1919906928,151653747,544236914,1936684147,151653751,543323507,875325796,168638506,1987013897,745300256,224937527,1953696010,158823279,1933248777,1701668709,1814066286,1953066345,1829308941,1629517423,1870081144,1881171058,1528853108,1684103032,808153700,151653725,1936684147,151587191,1935761979,1684086885,1936028260,1869357171,1829308941,1629517423,2036477036,1881171316,1528853108,1684103032,841708132,151653725,1936684147,151587170,1935761979,1684086885,1936028260,1768759411,151653732,544632685,959215713,168650803,1869902601,151615347,1701067529,1769104243,1919906928,1634493984,168653671,1987013897,745300256,1702132066,1920233504,1601723168,1919181921,224211755,1953696010,157447023,1648036105,543519585,1919181921,544437093,168651112,1987013897,745300256,224937527,1953696010,158823279,1933248777,1701668709,1814066286,1953066345,1829308941,1629517423,1885023352,1650749555,168648039]},{"sector":3,"length":512,"data":[1987013897,745300768,168638001,1819634953,225993504,1684080906,2019631204,1717989164,544499059,1701734764,1953853279,942813483,1627982349,1679844196,221260920,1953696010,158823279,1648036105,543519585,1919181921,544437093,168652652,1987013897,745300256,168651876,1987013897,745038112,224932665,1953696010,158823279,1648036105,543519585,1919181921,544437093,543451501,543452769,1668506980,1953524082,1713402479,1936154988,1829308941,1931507311,1718561897,1952805734,1852402720,1970233189,151653748,544632685,908880995,151653684,544632685,942434401,168650807,1059087977,168643920,1818321673,1936269420,168652144,544893449,168642112,1986947337,543517551,1668574825,745303137,1748316448,1935876140,1936743226,1734501488,151653725,544238954,1865757033,1074400619,168639040,1768189541,151653734,544501353,224933169,892430602,221932399,1667893514,1954047264,1601004909,1953069157,1829308941,1931507311,1718561897,1952805734,1852402720,1970233189,842083188,1846152504,1819572325,979725929,1829308941,1679849071,1718561897,1952805734,1852402720,1970233189,151653748,544632685,1999403105,543453807,544371824,1633646683,728917092,168647986,1818321673,1701322860,1919907704,151653732,544632685,1999403105,543453807,544371824,1633646683,728917092,168647984,1818321673,1701322860,1919907704,151653732,544632685,657225825,220667936,1953696010,225932143,1701579018]},{"sector":4,"length":512,"data":[2019696737,1768184620,824849195,168647990,1987013897,746087200,168638001,1954047342,1702132066,151653690,1935961964,151653730,544632685,657221729,168634158,1886216969,745300256,220667943,1651116298,157696032,1765476617,1868767334,1869771886,1751326828,1667330657,225600884,1835206922,1818304624,662578988,1778977293,1178607713,1829308941,1629517423,1818307688,1077938701,151653690,544632685,1568170587,224944428,1852377354,2019696739,1661536781,543976545,1652057448,224752761,1869416714,1818304630,656418604,1929972237,1651732340,1812531725,544239471,1954047342,1702132066,1829308941,1646294639,543519865,544371824,761881691,858404904,1562980651,657270572,1768176393,1634496627,543236217,539438375,1702127201,540549234,1702132066,151653747,544632685,1647077732,151653752,1819042147,1953853472,1852402803,151653733,543450209,1685221239,1920233504,1601723168,1919181921,744304683,168638001,1667522825,1919907616,1953505380,2019238002,1684300127,1563569010,168636460,1886216969,745108256,1936090735,1814066277,1600482921,729052527,221656370,1651116298,2019913248,1852402804,1695157605,1701672056,2019909485,221934697,1701972234,1695157620,1701672056,1852121197,168652900,808988169,168638008,1768189541,218762598,757938954,541335597,1835888483,543452769,1701322797,1935748984,543779171,1886221668,218762542,1684300810,1869770784,151653731,544238947,1126984801]},{"sector":5,"length":512,"data":[151653714,543518314,540107876,1765476617,1851859046,1735549216,1852140917,1635197044,1768366195,225338742,1935764490,1684300916,151653690,544632685,925661283,168650854,1953718636,1600414820,168639025,1987013897,746086944,1633641563,728917092,168647988,2053731081,1718775909,990447960,544632685,746087525,1633641563,1567777892,1829308941,1679849071,1683696760,1684300127,153116018,1836016443,1702131056,1851879968,1864394087,808984678,1919885416,1953396000,1696623721,1864393838,1702043750,1852140903,151653748,1702521203,1483108976,1832585481,1696626287,1697409395,168654948,1987013897,745108256,168654948,1684300041,746087456,168654947,1668180489,845440032,990447904,1847617129,1986994287,1818653285,168654703,1987013897,746087456,1717986864,168650854,1886218761,845440032,168626701,976315492,1829308941,1629517423,1935354984,1563569513,1950025993,544502629,544370534,1701588274,1919251572,1684890400,1143480435,1142959177,1142959180,1142959181,168634712,1684955401,745038112,1347768148,223495504,1835206922,1751195760,658777900,1778977293,1679850094,828322148,1862863373,1818304626,1280267308,1380276047,1718159885,1297104672,1661536781,1629515885,1814506604,151653671,544894570,168642112,1886218761,1936024608,1953853283,1077938701,151653690,544238947,657222753,168634217,2054056457,222707744,1835665674,1634148464,1970234740,1074400628,168639040,1768189541]},{"sector":6,"length":512,"data":[1762266470,1480859750,1347442003,1661536781,1629515885,2015833196,151653671,544894570,168642112,1886216969,1634556704,1852401763,841768293,1778977293,1178607714,1778977293,1696624749,1701672056,1074400621,168639040,1768189541,151653734,544238947,657222753,168634221,2054056457,222707744,1835665674,1668096112,1953853282,1077938701,151653690,544238947,657222753,168634210,544893449,168642112,1886216969,745300256,220690215,2053769482,222707744,1835206922,1818304624,660875052,1778977293,1679850094,828322148,1077938701,151653690,544632685,1835426907,1630297460,151653740,1819042147,1768649504,1768454000,168650100,1886216969,745300256,168645187,543517193,1953718636,157574244,1718172425,544173600,1969713761,1953391981,1935767328,1986619168,168652389,1684277773,976314161,1862863373,1818304626,1280267308,1380276047,1661536781,1629515885,1814506604,151653671,543518314,168642112,1818321673,1802707052,1752658025,224752745,1633880330,1730178156,1870099557,168649842,1987013897,746087200,168654948,2019781129,1919230074,1785884530,151653681,1819042147,1802003232,158101349,2019900169,1952671088,1684956448,543584032,1701734764,1919248416,151653733,543384932,168654947,1886218761,1935764512,1684300916,168636767,1869771365,976317042,1778977293,1663070317,1700750445,1919906418,168626701,221921344,1869416714,2019762294,1747990572,1681590537,1969317477,1814066284]},{"sector":7,"length":512,"data":[1952935525,151653736,544632685,1529641058,1936156018,1396994606,151653725,1819042147,1952802592,1735287154,151607397,1952802619,1684300064,1936942450,1851879968,1763730791,544175214,674920546,2019830117,1661536781,543976545,1701537891,151612527,1886938427,544498533,543452773,1814062703,543518313,1701995880,168626701,1987013897,1600412448,1919181921,744305707,990476386,1702257011,1734701856,1953391981,1718560800,1952805734,544434464,1702257011,1634476132,695362932,1929972237,1885698665,156788338,1869429513,1936007286,1684352105,151653752,544632685,1680632179,151653752,544632685,1663858788,990447992,1025538148,1684956448,1684300064,1936942450,168626701,1886218761,845440032,168636767,758843917,1344285997,1769173601,1763731310,1868832883,539911534,1769099296,1713402990,1953722985,1852402720,168636005,1684277773,168639026,807429737,223170619,1633880330,1763732588,225276019,2053769482,845440032,168636767,942812681,151653686,1920099702,225993248,2053769482,845440032,168636767,1987013897,746086944,1734701659,1148333683,168648019,1987013897,1600412448,1919181921,744305707,168654946,808988169,168638008,1768189541,1678380390,828322404,151653690,544632685,1935764571,1684890484,1718561885,1952805734,1935764512,1684300916,1829308941,1629517423,1683696760,1684300127,1563700082,1661536781,543976545,2004378984,224686703,1869416714,1818304630,658122540]},{"sector":8,"length":512,"data":[1929972237,1651732340,1829308941,1629517423,1769155704,1718159885,1297104672,2013858317,1646293615,1885482096,1879640589,543716213,168654945,1818321673,1701257324,1818588020,1920234593,1933248800,544437349,1818632282,168650593,1886351369,225992992,2053769482,222707744,1852377354,1885479011,772344333,221657139,1752369418,1696621676,1697413217,824994163,990453814,1211979841,1919899497,1936009316,168634729,808988169,168638008,1818321673,1701322860,1919907704,151653732,544632685,1932294241,1074400617,168639040,1768189541,218762598,1627994890,1629512814,1714433132,168650800,1937076233,2019631208,1661536781,543976545,2004378984,224686703,1869416714,2019631222,538978092,151653671,1936684147,151653751,544239472,168654945,1634036745,746086944,728327259,909191731,990514525,1987013897,1954112032,1953505381,1650139250,1563503992,656418604,1661536781,543976545,1885696624,1801675112,1933248777,1965061221,1868963952,1634082930,1735289195,1953392928,1667593760,1936879476,540226080,543452769,168637490,758843917,1646275885,1802396012,1701344288,1635021600,1864397938,1752440934,1768693861,1763730798,1718558822,1952805734,1853057312,1881175079,543257185,1734962273,224683374,1678380298,221918052,1661549322,1629515885,1769155704,1933248777,544237931,1881173876,1953067887,544108393,1814064745,224751209,1778989834,1684283493,151587124,543582523,1915184503,1752440933]},{"sector":9,"length":512,"data":[543519333,225731961,1879653130,543716213,168654945,1869416763,2019631222,538978092,990514471,1869902601,168654707,1953696059,224555887,1829321482,1696626287,1650145907,1630297464,990514540,1668180233,225993248,1879653130,1629515887,990514552,1668180233,225992992,1778989834,1679847533,168637284,758843917,1109404973,1852401509,1767992608,1869357166,1864396911,544367990,1701734764,1718558835,1953853216,779384176,168626701,976512100,1829308941,1663071855,1769155704,1627982349,1663067236,1714433144,151653736,1075864426,151653702,544238947,1680636003,990447992,1886220131,543519329,1752459639,1684956448,1684300064,1936942450,1778977293,1684283490,151587125,543582523,1998611831,1702127986,544175136,543516788,543452773,1948280431,1814062440,224751209,977289226,1987013897,746087200,168654948,976577636,1929972237,1663066741,1769155704,1762200077,1663066990,151587192,544760635,1970151485,1919246957,543584032,1702132066,1869881459,1769107488,1948284014,544434536,1701734764,1661536781,543976545,1634234212,151612259,1952805691,1650811936,1701275509,544417637,544501353,841954098,218762548,1869416714,1818304630,1717852972,224228461,1869416714,1935941750,1600412460,1919181921,224212011,1835206922,1818304624,662120236,1778977293,1684283493,829908063,1661536781,1629515885,1680288876,151653671,1679844714,1684299620,151653681,1752397168,225993504,912548874]}],[{"sector":1,"length":512,"data":[1762266426,1346314342,151653709,543452769,1647079522,151653744,606108266,168637227,543319049,157824822,1815808265,544433263,1769170267,1695157597,1718183022,1812531725,1651729519,1879640589,543716213,168654945,1818321673,1701322860,1954112120,151653733,544632685,657222753,168634144,1869902601,168649331,1886351369,225992992,1835206922,1818304624,656418604,1778977293,1684283490,151587127,543582523,1953394531,543977330,1918986339,1702126433,151653746,544238947,657222753,168634238,1700948489,946103328,990447904,1881171561,1953393010,1701601889,1684277773,168639031,1987013897,745300256,220671527,946103306,151653690,544632685,1530557285,744323170,168651873,1668180233,225993248,1869351178,1679847535,168638052,1879640589,1629515887,151653752,544632685,824997987,151653686,543323507,1630304355,990447992,1025538147,1836412448,544367970,1646290543,1936028793,544175136,1885956979,1778977293,1684283514,168636465,976839780,1829308941,1629517423,539438200,168634144,1869902601,168654707,1869902601,168649331,1869573129,1684283504,218762553,828662794,168639024,1937076233,1936924776,990447904,1953719666,543519343,168653668,1886351369,225666080,1769146634,1919968634,151607398,1987013947,1600412448,1919181921,1936010333,151653737,544632685,1633641563,1567777892,225014572,1633880330,1965059180,1667328110,990447979,544499059,1969382756,1919248231]},{"sector":2,"length":512,"data":[1763734311,840987758,875704115,1661536781,1528852589,1953326692,1646734429,151653671,543518314,168642112,1987013897,1954112032,1953505381,1683693682,892480873,757541981,151653671,544632685,1647077732,1074400632,1879652928,543716213,168654948,1818321673,1970282604,1768715124,168650094,1886351369,225993760,1701054730,1769152611,1661536781,1931505773,2019830889,1778977293,1679844705,154218852,1718172425,660961056,1679844722,224751215,1852377354,1769152611,1829308941,1679849071,1718561897,1952805734,1852402720,1970233189,151653748,544632685,1529641058,1684103012,875262564,151653725,544238954,221406308,828662794,168639025,1668180233,158884896,1933248777,1965061221,1752440944,1684086885,1936028260,1868963955,1752440946,1701716069,656438392,1663051588,1634561391,221144174,1869416714,1683693686,1684300127,1680629106,151653752,225731954,990514442,539831597,1663063876,1634561391,757097582,2019911712,1919907616,1969496164,168652909,1684277773,829908063,151653690,543387241,151615587,1684093705,540090468,544370534,1685221239,1768710432,1701670503,168653934,1919447817,746087200,990447921,1025538147,1836412448,544367970,1998612079,1935962735,544175136,1852404336,1752440948,1814066025,224751209,1600414730,976385892,1661536781,1931505773,1714433129,1751475814,1778977293,2003050593,1600414815,1885434487,1718159885,1297104672,1627982349,1646290030,1885482096]},{"sector":3,"length":512,"data":[1778977293,723787898,151653683,908092004,151611447,1869363977,1528853348,1567191909,1852115469,224815460,1869351178,225932132,1633880330,1746955372,1870100581,168649842,1987013897,745300256,220667943,1953696010,224555887,1869351178,1679847535,2003066724,151653682,544238954,808543332,168626701,757935419,541344800,1835888483,543452769,1701322797,2003050616,543453807,1886221668,168626701,1683973220,221917540,1684080906,2019762276,151597868,1684300091,1713386272,1679848047,1685221239,1768710432,1701670503,168653934,1919447817,746087200,151653681,544368755,824997987,1664813321,540876920,1651340654,1864397413,1870078054,544433266,1881173876,1953393010,1768453152,1768693875,168650094,1683973220,221917796,1835206922,1769152624,1717973036,224944998,1634339082,1601659936,2002740324,225468786,543582474,223170623,1851853066,1885479012,225468972,2053769482,858465312,1678313997,926294114,151587176,1685023803,1700470899,224225651,1684956426,168650345,1685023753,151615347,1701264137,1869357172,1870078071,168649842,1937076233,2019631208,990447904,1702257011,2003790880,1919907616,1762266468,1346314342,151653709,543452769,1647079522,151653744,606108266,168637227,543319049,157824822,1815808265,544433263,1769170267,1695157597,1718183022,1812531725,2004051055,990447881,544499047,1751607656,1919907616,151653732,1819042147,2019911712,1685221239,1879640589]},{"sector":4,"length":512,"data":[1629515887,151587192,1936028219,1701998452,2003790880,1919907616,151653732,1819042147,2019911712,1685221239,1829308941,1629517423,539438188,151653671,1936684147,151653730,1886351212,1600414752,221406308,1835665674,1684283504,168636465,2003044877,1600414815,1885434487,151653690,544370552,1932290419,151653737,544238954,808543332,1684277773,1852121188,168652900,1919224333,1785884530,168639026,1886218761,1684890400,1920099679,168653423,758843917,1159736621,1836016416,1684955501,1696607520,544500068,1869440365,221149554,1695157514,1919950949,168649583,1818321673,1919950956,1634234469,168651619,1987013897,746086944,1734701659,1148333683,168648019,1818321673,1701257324,1684300148,990447986,544499047,1919181921,544437093,1869901417,980967968,1680434472,151653752,1819042147,1768649504,1836016496,168636525,1886216969,745300256,168645187,543517193,154232165,1765476617,1919950950,1953525103,1685024032,151653733,1752397168,544760864,1933248777,543520353,1953719652,1952542313,544108393,1936090735,168653925,1818321673,1701257324,1920234356,1731922185,1679848549,543257697,1702132066,151653747,544632685,1680636003,151653737,544632685,1865185380,1702061670,1768693876,1868522862,168653941,1651864329,746087200,151615588,1852140603,543716455,1646290543,543519865,1769108595,168650606,1886351369,225010720,1869416714,2019631222,225993516,1701054730,2019631203]},{"sector":5,"length":512,"data":[1627982349,1629512804,1768172664,1778977293,1919230051,1785884530,990447922,1763731049,1920409716,544436321,1970238049,168649838,1818321673,1868832876,1801675112,1933248777,1679848549,1735746149,660956519,1852383347,858923124,221524527,1869416714,1769152630,225993772,1869416714,1936007286,225993260,543582474,223170623,1835206922,1650139248,1919181889,744305203,151653680,1075870314,151653702,909652782,1829308941,1679849071,1768172664,1681590537,1635197048,1701060723,1869771891,224683385,1869416714,1684349046,1684352105,151653752,2054582125,1936007288,1769155689,1829308941,2021291631,2019779872,225993516,1650723082,1748448800,990447881,544236914,1937141613,1700470882,744319332,1936022304,168648041,808988169,168638008,221921344,1684956426,168650345,1885696521,1987013920,168649331,758843917,1377840429,1869902693,1679844722,539697267,1629516645,1965057134,544171118,543516788,1702129257,1886745202,1702240372,1919906915,1667328032,168636011,757935419,1768444960,1868767347,1763730788,1818304627,1965059955,543450483,1948285282,656434536,1663051629,1634561391,221144174,1695157514,979447909,151653690,1752397168,544437024,1916471561,1869902693,1679844722,151653747,544239472,168653668,1937076233,1936924776,990447904,1953719666,543519343,168653669,1886351369,225666336,1869416714,1768169590,1717989164,544499059,846099826,154415667,1650811963,1701275509]},{"sector":6,"length":512,"data":[544417637,544501353,841954098,151653684,1819042147,1701998624,829120872,1664813321,544829551,1852401780,1646293863,225141601,1633880330,1965059180,1667328110,990447979,544499059,1969382756,1919248231,1763734311,840987758,875704115,1913195021,168653925,758843917,1344285997,1886220146,1869422708,221144420,1695157514,221917541,990514442,539831597,1768383810,1869357166,1864396911,544367990,1701734764,168636019,1701120525,151599666,1010501897,539831597,1954047342,1852402720,151653733,544632685,1647081569,990447992,1852404336,1970217076,1702043764,1852140903,1851859060,1718558820,1952805734,1661536781,543976545,2004378984,224686703,1869416714,1818304630,658122540,1929972237,1651732340,1829308941,1646294639,1718561904,1952805734,2019911712,1685221239,1718159885,1297104672,1661536781,1528852589,1684291938,1563571058,168636460,544893449,168642112,1987013897,745562656,1936090735,1746957413,2003073125,224686703,1650723082,1748383264,1869429513,1634017398,1684352120,1074400632,168639040,1768189541,151653734,544632685,1680636001,151653752,1819042147,225468960,990514442,539831597,1768383810,1869357166,1864396911,544367990,1702132066,168636019,1701120525,151599667,1010501897,539831597,1954047342,1954112032,151653733,544632685,657225825,153559072,1919957769,544501353,543452271,1970037110,1718558821,1954112032,151653733,1936684147,151653751,1819042147]},{"sector":7,"length":512,"data":[1752130592,158032737,1702050569,1701060724,1734833506,1931961701,1953392928,791884320,168637490,1937076233,2019696744,1661536781,543976545,1684104562,158164333,1701985033,1830839393,1629515109,1480728692,692398138,168646724,1886351369,225993248,1633880330,1965059180,1667328110,990447979,544499059,1969382756,1919248231,1763734311,840987758,875704115,1661536781,543976545,1652057448,224752761,1869416714,1818304630,657336108,1929972237,1651732340,1879640589,543716213,168654946,1937076233,2019827816,1661536781,543976545,1937012080,1879640589,1679847535,151653752,544239472,168654946,1987013897,745108256,1936090735,1814066277,1600482921,729052527,990459441,1919181921,544437093,1646290543,1701209717,1868963954,1751326834,1667330657,1936876916,2013858317,1663070831,2019765368,1849362697,1700949365,1718558834,1634231072,1952670066,544436837,1713401715,168653409,1701120525,168639028,1886216969,1869503264,1953784180,808213881,1778977293,1701126266,151587129,543582523,1931965545,1948279072,168655220,1937076233,1769152616,1829308941,1679849071,1718561897,1952805734,1852402720,1852399461,168636971,1987013897,745108256,1718968923,1954047342,1695157597,221918565,1835206922,1769152624,1969380140,1684956518,151653725,1696621162,151598693,1718172425,1701344288,1931961714,1663066400,1634885992,1919251555,1919705376,2036621669,1661536781,543976545,1819044198,224818530]},{"sector":8,"length":512,"data":[1869416714,1818304630,223494956,1667893514,946169120,990447881,1696622185,168650351,976643429,1661536781,1528852589,1635020654,1568240756,223494956,1852442890,1701126245,151593015,543582523,1847619438,543450469,1663070068,1919970671,544437093,1278169667,151653702,544238947,1702132066,1920233504,1769167648,1179397213,1778977293,1696621934,153106277,1718172425,1953459744,1814061344,543518313,1684366694,1762200077,1931502446,151587177,1768649531,1953046640,1762200077,1528849262,1635020654,1568240756,1631258889,1684631414,1885696544,1769234789,1948280686,225667432,1835665674,1701126256,151593013,2019913275,1751326836,1667330657,225600884,1695157514,221919077,1869351178,157447012,1731922185,1948284005,1663067496,1634885992,1919251555,1829308941,1528854127,1635020654,1568240756,225206572,946169098,151653690,544632685,1718968923,1954047342,1769155677,1879640589,1931505775,151653737,544238954,808543589,168626701,976840037,1661536781,543976545,1866755657,151653747,544894570,1631151461,1829308941,1629517423,154676328,1868774153,1819243374,1852383333,544503152,1752459639,544503151,1869112165,1762200077,840987758,168650801,1886218761,828728608,1695157552,979450213,1829308941,1629517423,808463464,151653736,544501353,224933425,1695157514,976236901,1661536781,1629515885,539438188,151653671,1696621930,540225893,1765476617,1868832870,1998611822,543716457]},{"sector":9,"length":512,"data":[1936287860,1954112032,151653733,544238947,1126984801,151653714,1696621930,540225893,1681590537,1869902953,1661536781,1629515885,1396845676,1778977293,1701126245,153104689,1718172425,1667326496,1634759531,168650083,1886216969,745300256,220671271,1701447946,828728608,151597617,543582523,220671271,1835206922,2019762288,151597612,1752461115,1769435749,539780467,1931506793,1819635560,1700929636,1746952480,1663072357,1634885992,1919251555,1778977293,1696621921,153105509,1718172425,543520544,1702257000,1713398048,543976565,1702132066,1919705376,2036621669,1829308941,1528854127,744319347,168651873,1818321673,1701257324,1652125300,1778977293,1701126243,151587124,543582523,1931965545,1953459744,1746952480,1663072357,1634885992,1919251555,1762200077,1663066990,151653752,1935961964,151587170,1952802619,1701344288,1634231072,1952670066,1646293605,225141601,1835665674,1701126256,168636977,825320805,168639026,1818321673,1953701996,1953853284,168651873,1667589129,158884896,1681590537,1701995365,1953391981,1717989152,544499059,1953653104,1829308941,1679849071,1718561897,1952805734,1852402720,1970233189,151653748,544238954,892429669,1701120525,221917489,1667893514,1696627320,151598181,543582523,1752461166,543649385,1646292852,1936417633,1701011824,1702260512,151653746,543384932,168654947,1667589129,225014560,1633880330,1713400940,1651272821,1953853299,1778977293]}]],[[{"sector":1,"length":512,"data":[1696624749,168637541,842098021,151653690,1819042147,1685353248,1635022191,151653740,544238954,540304741,1648036105,543908705,544370534,1701998445,168626701,757935419,543512352,1702257000,1646289184,543519865,543582504,555767875,691019837,218762542,828728586,168639027,2019781129,1701126266,151598129,543582523,1663070062,1735287144,1868963941,1752440946,1646293865,224752761,1869416714,1935351926,1630297449,990447980,1836213620,1952542313,1752440933,1953701989,1735289202,1929972237,1931502197,2019765353,1882917129,1953393007,544175136,1768383842,1852403310,151653735,1752397168,225993504,1970276618,1679845491,151653752,1935961964,151653730,1819042147,1952802592,1702132066,1664813321,1702260335,1646294130,543519865,1646292852,1918987881,1143480441,168634700,1987013897,745300256,168651876,1886351369,225993760,1869613322,2019762288,1661536781,543976545,1634234212,151612259,1952805691,1650811936,1701275509,544417637,544501353,841954098,151653684,1819042147,1769109280,1701668212,990447981,1953067639,1279336549,544497952,674912322,1480862021,1829308941,1679849071,1718561897,1952805734,1853190688,875705138,1701067529,1734833506,1931961701,1953392928,791884320,168637490,1818321673,1919950956,1801545829,990447921,2037411683,1768453152,544434030,1801675106,1661536781,543976545,1634233973,151612259,1952805691,1650811936,1701275509,544417650,544501353]},{"sector":2,"length":512,"data":[841954098,218762548,757938954,1850023981,1752440932,1869357157,1864396911,544367990,1702132066,168636019,1701120525,221918257,1852377354,2019827811,990447881,1919118953,1852140901,1718558836,1952805734,1829308941,1679849071,1718561897,1952805734,1852402720,1970233189,151653748,544238947,1126984801,151653714,1696621930,540422501,1765476617,1868832870,168650094,1936028681,1818501236,168638252,544893449,892429669,990447904,1847617129,1814067045,224751209,1869482250,2019762292,1627982349,1663067236,154414200,1868774153,1953853549,540221541,2019762221,1829308941,1629517423,539438188,151653671,544236914,1936684147,990447970,1919906931,1752440933,1830843489,544829025,1667330163,168653669,1886218761,862283040,990447904,1801675106,1919903264,1919905056,218762597,828728586,168639029,1987013897,746086688,706758220,909455904,1126181664,1950026066,1768780389,1702125934,1768453152,1768693875,168650094,1869902601,168654707,1886218761,845505824,990447904,1801675106,1919903264,1847615776,1814067045,224751209,1695157514,976630117,1778977293,1881174125,1819505781,157642345,1633893129,1881173100,1819505781,543518313,543452769,1970562418,168652402,1696621925,225469550,990514442,539831597,1868767302,1851878765,539828324,1819044198,1835363616,226062959,1711934730,1919950950,168649583,1919907849,746087200,151615587,1952802619,1684300064,1936942450,1851879968]},{"sector":3,"length":512,"data":[673211751,1679847278,1969317477,1814066284,1952935525,168634728,1987013897,746086944,1734701659,1148333683,168648019,1818321673,1701257324,1851880052,151610727,1952802619,1684300064,1936942450,1851879968,1763730791,544175214,674920546,2019830117,694495279,168654947,1059087977,168643920,1886216969,1096964896,863134820,808213810,1778977293,1178607738,772344333,221657139,1970473226,1667571810,1684352120,151653752,543387241,225993573,1970276618,1696622707,168654947,1937076233,1684349032,151653752,942684206,151653686,544238954,811558502,1074400561,168639040,1768189541,151653734,543323507,1680636003,151653752,543387241,151615587,2019769097,1847606560,1700949365,1718558834,1954112032,168653669,1937076233,2019762280,990447904,1702257011,225732896,1970276618,1679845491,151593080,1986097979,1953701989,544502369,1919181921,225669989,1600546314,221917488,1633880330,1931504748,1668311403,812477807,1661536781,543976545,1937007975,151614068,1952802619,1920234272,543649385,1646290543,1936028793,1829308941,1663071855,1768172664,1929972237,1663066741,1718561912,1952805734,1852402720,1970233189,1762266484,1346314342,151653709,544238947,1682006619,842232420,221260893,2053769482,1600546336,151653681,909652782,1879640589,1696624751,168651108,1987013897,745760032,168654946,1886216969,2019779872,168636716,543517193,1597204070,168636979,1886351369,2019648800]},{"sector":4,"length":512,"data":[1661536781,168653156,1986618377,2019779872,1862863373,1634017394,1634020472,151653752,1713404522,861876838,1711934770,861876582,168639026,1987013897,1769170208,1717989164,544499059,1701734764,1953853279,1879640589,543716213,225993573,1701972234,1869422704,543322998,1530557285,1567188069,1935941676,1936022330,168648041,1886351369,2019779872,1678313997,1696621413,168654945,2054056457,828794400,221393759,845571594,976368479,1829308941,1696626287,1697413219,168654948,1667590665,1713404536,2019909478,151614569,543582523,1881173870,1769239137,1663069281,1701408879,151653747,544632685,1865181555,1702061670,1768693876,1868522862,168653941,1885696521,1987013920,1696621171,1700477555,744319332,980640800,1769170267,151653725,544238954,1700750950,158624120,1868839689,673211758,1869442145,220820595,862348810,976368479,1879640589,1696624751,168654947,1987013897,745300256,1702132066,1920233504,1768708896,1868522862,224228469,1701972234,1953702000,543322991,1530557285,1567188069,1778977293,1713401965,2019909478,168653929,808988169,168638008,828335718,1695157562,1718183022,1879640589,1679847535,151653737,544632685,1647080293,151653752,544238947,824997987,1778977293,1717968997,151587123,1663066427,1869442415,1886330990,1768778100,1769234810,168652399,1886351369,158884128,1731922185,1931506789,224754281,1870137610,2019827826,158884908,1869495049,1769152631]},{"sector":5,"length":512,"data":[1763730810,1480859758,223887674,1835206922,2019631216,168636716,1667522825,746087456,990447920,1986948963,544502373,808464432,808464442,1869881392,808464416,808466993,168636464,1986618377,158884640,1664813321,1970302319,1847616884,1700949365,1718558834,1869117216,1914725740,1952804965,1869182057,168653678,544370441,1630304353,151653752,1713404522,151597670,1718172425,1936026656,1752440947,1864396385,1998611822,1701605224,1885696544,1717963277,168639025,1987013897,745108256,1936090735,1814066277,1600482921,225736047,1970276618,1663068275,151653752,544236914,1937141613,151653730,544239472,168654947,1667589129,225992992,1852442890,1717969018,151593009,543582523,1701998445,544175136,168652647,976381542,1829308941,1663071855,2019830904,1778977293,544897123,1700750950,158624120,1718172425,544173600,1953653104,543973737,1768976227,168653669,1987013897,745108256,1936090735,1814066277,1600482921,225736047,1701972234,1869422704,224555894,1835665674,1717969008,1769497951,990447988,1701736292,1818306592,1953722221,1711934761,221918054,1869613322,2019762288,1829308941,1629517423,2036477036,1881171316,1528853108,1701734764,1953853279,151653725,1936684147,151587170,1031299899,1043144752,540292640,168641131,1667589129,225993504,1701972234,1953702000,224555887,1600546314,1953069157,151653690,1752397168,544437024,1916471561,1869902693,1696621938,151653747]},{"sector":6,"length":512,"data":[544239472,168653669,1952805385,1717963277,1684956448,218762608,757938954,1919033389,1886085477,1953393007,1918967923,1953701989,1684370031,544106784,1701734764,1953853279,1769414700,1948280948,544434536,1836216166,168653921,757935419,1380931360,1851990084,990514548,539831597,1634890337,168639097,757935419,1331119136,1462715474,541348431,1936090735,1864397925,1885479014,758843917,1461726509,541348431,1835492723,544501349,1646290543,990514544,539831597,1163155778,1684827936,1818326560,168650101,1701972493,1651795315,221934448,1869416714,1768169590,1717989164,544499059,1702061426,829448820,1702038029,1936745076,1869770784,151653731,544632685,1865181555,1702061670,1768693876,1868522862,168653941,1685023753,168654707,1751349257,2019762279,2019631148,1832585481,1663071855,2019634296,1077938701,151653690,2054710122,222707744,1769146634,1919968634,151607398,1685023803,168649843,1685023753,168654707,2053731081,1718775909,990447960,1734894456,2019845408,2019648812,2013858317,543647843,1630304356,990447992,544632685,1630304356,151653752,1935961964,151653751,1734894456,746086944,151615585,1987013947,746086944,168654945,1818321673,1768169580,990447904,1819042147,1952805664,791769186,1702061426,829448820,1762200077,1931502446,151653737,1886351212,541212704,1849362697,544503909,168652898,221921344,1701972234,1930038644,1885500517,221919793,1869416714]},{"sector":7,"length":512,"data":[1818304630,1128476716,151653736,1819042147,1769109280,1701668212,151653741,544632685,1567191899,157835564,1634941705,1948280182,1663067496,1701999221,1663071342,1702129263,225670254,1701972234,168652404,1702061426,829448820,168639034,1987013897,745300256,1567191899,1661536781,1629515885,1127230572,168650819,544893449,168642112,1818321673,1920409708,1835365481,168652133,221921344,1701972234,168652404,1702038029,1936745076,1684956448,218762608,543582474,223170623,990514442,539831597,1752459639,1111835680,978863957,1701345056,543236206,1701080941,1769435936,543712116,543451492,1969447791,1852383346,1701344288,1650811936,1701275509,168635493,757935419,1701344288,1734701856,1953391981,1918988320,1864397684,1752440934,1919033445,1886085477,1953393007,1684300064,1936942450,1629516645,1847616882,990514543,539831597,1735290732,1981837925,1684630625,544106784,543516788,544695662,1701080941,1867784238,1634624800,543517794,543516788,1969382756,1919248231,544175136,1702061426,1752440948,990514533,539831597,1634038370,1768910955,745763950,544500000,544432488,1931505524,1668573559,1702109288,1919905901,1818849889,1869881465,1701344288,1701998624,1970235766,1869422707,221144420,757938954,1852383277,1480859706,1684827965,1818326560,1864394101,1701978214,1831760743,168654707,1701972493,1651795315,2017817456,1869770784,218762595,1835206922,2019827824,1701993260]},{"sector":8,"length":512,"data":[1831760743,224229235,2053769482,1936028192,1885500517,151587187,1685024059,1768169573,1948741220,1634231072,744843118,1702065440,1919905312,543973741,1702061426,1869750388,1852404853,151653733,544238947,1853190747,1953392991,1718561885,1952805734,1869770784,1836217447,1802713865,1914728553,1952805733,543649385,544436322,1679844969,1735746149,543516007,1836213620,1952542313,168649829,544893449,168642112,1886216969,1954112032,1953505381,1817911410,1600482921,1567913327,990457900,544829025,1634038370,1768910955,544437358,1768318308,1063544174,1778977293,1178607738,1829308941,1663071855,1683696760,1600744816,1702521203,1681590621,1948741231,1818321696,1634934892,1931502966,1702125940,543582496,1717990754,1931506277,543521385,2048947049,779055717,1778977293,544897123,1935634276,1668573559,990447976,1936287860,1870029088,544433257,1464016993,1297106003,1969365065,151653735,543323507,539783283,168654947,1987013897,745300256,990447920,809331809,544434464,1702257011,1635021600,168650100,1818321673,1920147564,1635021663,168650100,1818321673,1868832876,1769435999,224945012,1869416714,1818304630,151597356,1030512955,1936269361,1936028192,1701998452,1635021600,168650100,1818321673,1920147564,1635021663,168650100,1684300041,745567008,1836082267,1769168745,224224634,977289226,1913195021,168653925,1935634276,1668573559,168639080,1818321673,2004033644,1751348329]},{"sector":9,"length":512,"data":[1701080941,1933248800,1668573559,1869881448,1684827936,1685024032,151653733,1819042147,1936028192,1885500517,151653747,544238954,1769435936,1835557748,543515759,2004040457,1751348329,1667326496,1869881451,2003136032,1685024032,218762597,1769435914,1835557748,979723375,990514490,539831597,544694642,1953068915,221931619,757938954,1769152557,1680827706,1847605865,1663072101,795163251,168652905,757935419,980968480,2019700581,1701716026,1936924791,1932485946,990514544,539831597,540702817,538976288,2003136032,225666080,757938954,2019762221,538976314,1847599136,1696626533,151653747,1702521203,543584880,2017134857,1696625263,1697413218,168654946,1919907849,746086944,151615586,1701602107,544436833,1870096744,1159750770,1763727426,1346576486,1027481685,909652768,1829308941,1646294639,1886596216,1929972237,1885698665,153118322,1870150409,1684349042,1684352105,151653737,544370552,1680632164,990447977,1634036835,1746957170,1919907689,1145380964,1718165577,1431323424,540884512,221657139,1869416714,1768169590,1667326508,1717657451,1601332596,1953068915,168650851,1818321673,1936269420,168652144,2054056457,1601399072,168652144,1987013897,746086688,1936942171,157117541,2004040457,1751348329,544043552,1881161261,151653741,544632685,1529637235,1702064995,168648044,1987013897,746087456,168654945,1987013897,746087200,168654945,1886218761,1885625120,1918855533]}],[{"sector":1,"length":512,"data":[1836069485,1762266461,1836081011,151653690,544632685,1529641057,1685091184,542992226,2004040457,1751348329,544043040,1914715693,151653741,544632685,1630300531,151653752,544632685,1630304356,151653752,544632685,1630304355,151653752,544238947,1836082267,1563571049,168636460,544893449,168642112,543319049,157824566,1782253833,1713401965,1685221239,1920233504,1885625120,1885301101,1836200557,1074400605,168639040,1886218761,1870095392,1881171058,1528853108,1768779876,846032991,224226674,1667326474,1717657451,1601332596,1953068915,221931619,1870137610,1918574706,779315045,1568109421,221326636,1701972234,168652404,1920141837,1635021663,976905588,1929972237,1885698665,153118322,1870150409,1684349042,1684352105,151653737,544370552,1680632164,990447977,1634036835,1746957170,1919907689,1145380964,1718165577,1431323424,540884512,221657139,1869416714,1768169590,225473324,1684080906,1768169572,151597612,1701344315,1986097952,1886593125,543515489,1918989427,1629516660,1935351924,1563569008,1661536781,543976545,1836086121,1778977293,1763736174,1836081011,151653682,1819042147,1885625120,1918855533,1986098029,151653725,1853121906,1936263693,846032991,151653690,544238947,1836082267,1563571049,168636460,544893449,168642112,543319049,157824566,1664813321,543976545,1919907686,1953505380,1683693682,1600744816,1634954608,168648054,221921344,1633880330,1679846508]},{"sector":2,"length":512,"data":[1685221239,1920233504,1885625120,1885301101,1986098029,151653725,1853121906,168626701,1702061426,1936745076,1696626757,225469550,1695157514,1718183022,168626701,757935419,1663059744,1634561391,757097582,779052832,168626701,1881171815,224620402,1668811018,1629513576,2019699832,1832585481,1646294639,2019634296,1829308941,1629517423,1918577784,779315045,1565737842,1634941705,1864394102,1768384882,543973742,168645443,1869416763,1918574710,1667198581,1630297459,151653752,544632685,1819370843,1919181921,744305707,168654945,1751349257,2019631207,158884396,1869429513,2019631222,225993260,1633880330,1881173100,1702064737,151612529,1952802619,1953525536,1634627433,1027350636,1919181921,1918967870,1701672295,168653934,758843917,1344285997,1702064737,1701344288,1936028192,1718558836,1701344288,1852402720,1868963941,1919033458,1886085477,1953393007,218762611,1869416714,1768169590,1717989164,544499059,1701734764,1953853279,2013858317,1629516399,2019634296,1929972237,2004053876,1077938701,151653690,543384932,168651123,1818321673,1802707052,1868787817,224488813,1835206922,1818304624,156386092,1852128009,1718558820,1852402720,168640357,543517193,168642112,1987013897,746086944,1819370843,1919181921,157103147,1717920827,1953264993,1734701856,1953391981,1661536781,543976545,1635018087,158491748,1701264137,1684086900,1936028260,1852383347,1646292852,1697135224,225993769]},{"sector":3,"length":512,"data":[1769146634,1919968634,151607398,1751349307,1634017383,1684352120,151653752,1734894456,746086688,151615588,1987013947,746086688,168654948,2053731081,1718775909,990447960,1936684147,151653732,1936684147,151653751,1734894456,746086688,151615586,1987013947,746086688,168654946,1869902601,168654707,1668180233,225010720,1852377354,2036473955,1881171316,1814065780,1600482921,158627183,1702065467,1768708896,1868522862,808154229,1869881437,1970234144,1646294126,168653680,1886218761,155336736,1849362697,544503909,168652898,221921344,990514442,539831597,1919906899,1919033445,1886085477,1953393007,1954112032,1763734373,1752440942,1768366181,544105846,1633906540,1852795252,168636019,1829308941,1679849071,1718561897,1952805734,1952805664,221343842,1633880330,1931504748,1885500517,1762266483,1346314342,151653709,1752397168,1701993248,1831760743,542996339,1634941705,1864394102,1293968492,168646483,1768189541,151653734,1819042147,1853190688,1916471561,1948282485,1881171304,1919381362,168652129,1059087977,168643920,1818321673,1701257324,1634952052,225604724,1869416714,1650139254,1950438211,744321652,168651873,1768189541,151653734,544632685,757889123,151653681,1819042147,1952802592,1768256355,1954112112,1731922277,1646294117,543519865,1528853601,1698329443,825061481,1931488349,1159754853,542655023,1159753588,760236335,1762266417,1346314342,151653709,544239472]},{"sector":4,"length":512,"data":[151615588,1701264137,1819222132,1397563492,1695157591,1718183022,168626701,757935419,1936020000,1701998452,1701995040,1869638497,544501353,1702132066,168636019,758843917,1763716397,544417652,1936029041,1852795252,1701601889,543582496,1936287860,1869116192,543452277,1679844706,543518319,1852139639,758843917,1948265773,1679844712,1735746149,543516007,544432488,1836213620,1952542313,1528849509,1601074546,1567911529,540884256,1735357040,778924660,758843917,1713384749,1881174639,1702129522,1684370531,1685024045,1763716197,1752440934,1346642021,1746946381,544502639,544432488,1852138850,1919251488,1634625901,543450484,1998615393,225209445,757938954,1953046573,1818851104,1869422700,1814066291,1818585961,1919099001,543716193,1852139639,1914724640,1831696225,543515759,1953068915,1763731555,1869881459,543515168,1701736292,218762542,1970276618,1629513843,1762266488,1346314342,151653709,1819042147,1936028192,1885500517,544753011,1701985033,544499059,745754690,1769435936,543712116,779119988,544175136,1986359920,1937076073,1685024032,1695157605,224752492,1633880330,1914727532,1952805733,225669218,1684956426,168650345,1886351369,225992992,990514442,539831597,1768843590,1965058163,538979952,1667590211,1718165611,544500000,544432503,543518319,1595958895,1601336687,1701995040,1869638497,1937010281,218762542,1835206922,1818304624,1128476716,151653736,544894570]},{"sector":5,"length":512,"data":[1700751207,225732984,1835206922,1918574704,1767861877,744322158,1936090735,1763734629,1832088686,168650611,1701734921,1600612128,1953069157,1765476617,1869488230,1128472692,1953392928,1970434661,168653936,1987013897,746087200,168636717,1818321673,1701257324,1702060916,2036494441,990471540,1819044215,1952805664,1110394144,1869881432,1227834656,221326672,1835206922,1818304624,1128476716,151653736,1730181738,2019909479,168653929,758843917,1763716397,1096228980,1852776531,1718558821,1920298784,1934639648,1698963489,1835364963,544501349,1346973509,218762529,1769146634,1919968634,151607398,1987013947,1701993248,1915646823,744312905,225993317,1869416714,1918574710,779315045,1565542770,225993260,1835665674,1969496176,1701998701,168653671,1700751207,980707704,154864141,544238954,1767859573,151614574,1769107515,1830843502,1634956133,544433511,543452769,1953068401,1728711982,1852121191,168652900,758843917,1344285997,1953393010,1936026912,1701273971,1868718368,1965061237,1886938478,1702126437,1852383332,1920099700,745828469,1836409888,1701978224,1953720679,745763429,1684955424,1684956448,758843917,1663053101,1634561391,539911278,1768444960,1868767347,1763730788,1818304627,1965059955,543450483,1948285282,1193305448,542122028,543452769,1868767316,1851878765,221148004,1963592970,1852399461,168639092,1987013897,746087456,1853190747,1953392991,151653725,1819042147]},{"sector":6,"length":512,"data":[1953392928,1751200050,990447929,1852404336,1953702004,1735289202,1661536781,1679847533,1718561912,1952805734,1869770784,1836217447,1778977293,1178607717,990447881,1763731049,1702109300,1852403058,1684370529,1802706988,1948282985,1914725736,1936287589,1936876916,1661536781,543976545,1886221668,1936156018,1077938701,151653690,544238954,1818520931,158363503,1633827593,1948281699,1752440943,1953701989,225735265,1762266378,1346314342,218762573,757938954,1853169709,1701869669,1684370531,1668834592,1769238629,1864396399,1920295779,1763730533,1684632430,1701060709,1734833506,168653413,1702169101,1953392991,1919950968,168649583,1684824841,1879640589,543716213,168653683,1886351369,225666080,1633880330,1965059180,1667328110,990447979,544499059,1969382756,1919248231,1763734311,840987758,875704115,1829308941,1679849071,1918577784,1767861877,224228462,1633880330,1763732588,825390190,154757217,1919957769,544501353,1769108595,168650606,1159751273,1396917080,168644681,1987013897,745104416,1936090735,1814066277,1600482921,225736047,1869416714,1769152630,1717989164,544499059,1818458213,168649583,1818321673,1868767340,1953724784,1735289202,1829308941,1629517423,1767582840,2019914862,1567843171,1661536781,543976545,2004378984,224686703,1869416714,1818304630,658122540,1929972237,1651732340,1829308941,1629517423,1767582840,2019914862,1567648099,1661536781,543976545,2004378984]},{"sector":7,"length":512,"data":[224686703,1633880330,1881173100,1819505781,224751209,1684956426,168650345,1886218761,1684890400,1886351212,1702169101,1953392991,1852121208,168652900,1852115469,224815460,990514442,539831597,1868767304,1851878765,539828324,544761192,1768186977,1852795252,1684955424,1651864352,1667330676,1852795252,218762542,543713290,1668248176,1661536781,543976545,1685349735,1685221239,1731922185,1679848549,1685221239,544106784,1144674370,151653720,1752397168,225993248,1970276618,1679845491,151653752,1819042147,1768649504,1836016496,168636525,1818321673,1701257324,1870095476,168649842,1818321673,1751326828,1819239787,1698367753,1667592312,1852121204,1718558820,1852402720,1701322853,168650098,1886351369,225993504,1869613322,2019631216,990447881,1936877926,1635131508,543520108,1092644457,1480800856,1702043692,1684959075,544106784,1144674370,1745489240,976368488,1829308941,1931507311,2019634281,1829308941,1646294639,2019765360,1715144969,1953722985,1818326560,1763730805,1230184558,542130746,225931118,1869416714,2019631222,225993516,1684080906,2019631204,225993772,1970276618,1629513843,151653752,544632685,1932294241,151653737,543384673,1647081569,151653752,1075870314,151653702,1819042147,2019911712,1685221239,1077938701,151653690,544239472,168654945,1818321673,1701322860,1919907704,151653732,544632685,657225825,220667936,1953696010,225932143,1869416714,2019631222]},{"sector":8,"length":512,"data":[225468972,1970473226,2019631202,225993772,1970276618,1629513843,151653752,544632685,1932294241,151653737,543318643,1647081569,151653752,1075870314,151653702,1931506287,2019699817,1778977293,1178607738,1661536781,543976545,2004378984,224686703,977289226,1879640589,1629515887,151653752,1819042147,2019911712,1685221239,1778977293,1881174125,1819505781,157642345,1633893129,1881173100,1819505781,543518313,543452769,1970562418,168652402,1696622696,225469550,990514442,539831597,1868767305,1851878765,539828324,1970302569,1919295604,1226861935,1881165615,779383407,168626701,1881172329,224620402,1869416714,1818370166,168636460,1987013897,745038112,761885531,151608626,1936286779,1969711476,543716201,660891943,1684955424,543762208,168634212,1684955401,745038112,1347768148,223495504,1835206922,1751195760,659105580,1778977293,1763736174,221405033,1869416714,1751195766,225206572,1851853066,1751195748,1431262252,1380274256,1661536781,1629515885,1462185064,151653671,1763730794,221339497,1835206922,1834688624,1768448865,744318318,151653683,1763730026,221405033,1835206922,1751195760,658777900,1778977293,1763730798,221405033,1852377354,2019696739,1768491533,221917535,1852377354,2019696739,1661536781,543976545,1885956979,1953065079,1762266469,976379753,1661536781,543976545,2004116839,157577839,1701264137,1870078068,1763730546,544175214,168646724,1818321673]},{"sector":9,"length":512,"data":[1751326828,1819239787,1698367753,1667592312,1852121204,1718558820,1852402720,1701322853,168650098,1886216969,745300512,151653681,1763736170,221470569,1634339082,1600743712,151653684,1629515369,2019830892,1661536781,543976545,1652057448,224752761,1835665674,1768497264,168637791,861890921,151653690,1629515369,2019830904,1661536781,543976545,2004378984,224686703,1835665674,1768497264,168637791,878668137,151653690,909652782,1762200077,1634017390,2019830904,772344333,909652024,1661536781,543976545,1685611880,1685221239,1768491533,221918559,1835665674,1970282608,1768715124,151610734,1818321723,1970282604,1768715124,1629513070,1914725486,1920300133,1762266478,1852121193,168652900,1718159885,1297104672,1867254285,1146315873,168639041,1818321673,1936269420,168652144,1987013897,745108256,1685221239,1920233504,1399872288,808141124,151653725,544632685,1529639780,1396786259,224226405,1852442890,1178607738,1829308941,1679849071,1870081139,1881171058,1663070836,1885026931,725697619,168647986,221921344,1701972234,218762612,1886611722,1919950957,168649583,1886216969,980640544,1734701659,1936535155,808213879,1701985033,1852994932,1512061555,1634038333,1869426028,539780452,1883069006,762605426,1701080941,1913195021,168653925,1836086121,1684956448,1695157616,1718183022,168626701,1886676339,1650749555,151599719,758921993,1629498669,1986622563,543519841,1969382756]}]],[[{"sector":1,"length":512,"data":[1919248231,1344303911,168644691,1142974057,1163282770,151653714,225731954,1936483594,151653733,544632685,1663858786,990447987,1713399401,1634562671,1936269428,1634231072,1684367214,544175136,539777613,1936287860,1937075488,1700929652,1634231072,1684367214,544432416,1819043191,1695157537,1718183022,1702038029,1886613620,1869770784,151653731,544632685,892102753,168650800,1059087977,168643920,1818321673,1936269420,168652144,544893449,1886676339,1918857331,1762266477,1330520166,1163155525,1380271182,772344333,221657138,1970276618,1663068275,151653752,1752397168,225993760,1970276618,1646291059,151653752,1752397168,225992992,1869416714,2019631222,168637996,1953392905,1748054816,1879640589,1629515887,151653752,543975539,824997987,151653682,544368755,875329636,1862863373,2019827826,225993516,1869416714,2019696758,225993772,1633880330,1679846508,1633907567,225995884,1869613322,2019696752,1879640589,1679847535,151653752,544239472,168654947,1952805385,772344333,909652024,1818561037,168650099,1886218761,1936679968,1819042147,225276511,1684956426,168650345,1886676339,1918857331,168639085,1768189541,218762598,543582474,1397052245,168640836,1886216969,1919907616,1953505380,1885020274,725697619,808213810,1778977293,1868832890,1818321779,1836212076,168626701,1937076233,1935941736,1879640589,543716213,168651123,1059087977,168643920,1818321673,1867260012]},{"sector":2,"length":512,"data":[1146315873,1695157569,224752492,1684801802,1769152627,1399872300,224215364,1684956426,168650345,1987013897,1769167648,1747988779,2019699805,1879640589,1931505775,151653737,544239472,168653668,1952805385,1818561037,168650099,1886218761,1936679968,1819042147,225276511,1684956426,168650345,1886676339,1696624755,225469550,1728711946,1936749669,1919950960,168649583,1987013897,745038112,224932149,543582474,223170623,1633880330,1763732588,225276019,2053769482,1952802592,1601205104,168652146,1310746217,1415071055,1162104389,151653714,1819042147,1936679968,1819042147,151653752,544632685,841775201,1762200077,857764974,168650801,1987013897,746086944,168654945,1952805385,1818561037,168650099,1886218761,1936679968,1819042147,225276511,1684956426,168650345,1886676327,1918857331,168639085,1768189541,218762598,543582474,1397052245,168640836,1886216969,1919907616,1953505380,1885020274,725697619,808213810,1778977293,1868832890,1818321779,1836212076,168626701,1937076233,1935941736,1879640589,543716213,168651123,1059087977,168643920,1818321673,1867260012,1146315873,1695157569,224752492,1684801802,1769152627,1399872300,224215364,1684956426,168650345,1987013897,746086944,728331099,1567109169,1879640589,1931505775,151653737,544239472,168653668,1952805385,1818561037,168650099,1886218761,1936679968,1819042147,225276511,1684956426,168650345,1886676327,1696624755]},{"sector":3,"length":512,"data":[225469550,1678380298,1633907567,221932652,543582474,223170623,543582474,1480937294,1145980244,168645189,1818321673,1936269420,168652144,544893449,1668509540,1600941153,168652146,942812681,1678380342,1633907567,980970604,1762200077,1802466926,1852383333,1818321780,840969324,539781169,1530557283,1685091184,224225122,1701972234,151653748,942684206,1695157558,1718183022,1852115469,224815460,1936679946,1819042147,980251231,1762200077,840987758,168650801,1952805385,168626701,1059087977,168643920,1297222157,1931498307,1668641396,1752447753,1346642021,1914718541,762077541,1701080941,1818321696,1953701996,1952675186,224752245,1229222410,544695305,155135039,221260603,1230205450,544695305,155135039,221522747,1346531850,544695305,155135039,221784891,2003044618,1059864352,824916745,1913261362,1678334018,742334583,725289279,168638001,156779634,1059092324,990461740,221262379,1480815114,544695305,155135039,875703099,1097992717,2003044696,1059864352,841693961,1913261368,1734437958,2003044723,990461728,221393707,1397060106,544695305,725289279,168637491,156451954,1059092324,858471177,1913261366,1678332742,155132023,942877499,1198656013,2003044691,990461728,221262891,1346990602,544695305,725289279,168636980,156451698,1059092324,875248393,1913261364,1678331987,155132023,909388603,1399982605,2003044691,990461728,221787179,1129140746,1852121171]},{"sector":4,"length":512,"data":[168653668,772344333,221657138,1762266378,1633907822,1881173100,543387506,1667527795,543976545,1936028533,544433440,1853124201,1870084719,539780210,1635017060,979854707,1685221239,168626701,1633906540,1836195948,1379562339,223560525,151653642,1752397168,225669920,1869613322,1936007280,1829308941,1914730095,779314029,742999154,168651108,1987013897,1668117024,1399991923,1769155657,1829308941,1914730095,779314029,743981682,168654946,1987013897,1668117024,1148333683,2019830872,1829308941,1914730095,779314029,743981938,168654947,1987013897,1668117024,1098002035,2019634264,1829308941,1629517423,1650142328,1563437936,1829308941,1914730095,779314029,743457394,168654945,1919907849,746087200,168654947,1987013897,1668117024,1181888115,1936154988,225993516,1869416714,1836195958,1915646819,1663848531,151653752,544632685,1935895922,1397977646,225993516,1869416714,2019631222,1952539692,1734701921,1829308941,1914730095,779314029,743654770,168654945,1987013897,1668117024,1148333683,2019634259,1929972237,1885698665,153118322,1701591817,1684349025,1836199017,168653667,1634036745,745104416,1935895922,1829308941,1646294639,1852386424,225406580,1869416714,2019631222,808661036,168650800,1953392905,1748054816,1829308941,1629517423,2036477032,1881171316,1914729076,779314029,1634485874,168653671,1751215113,151653734,544632685,1915513188,779314029,222905458,1869416714]},{"sector":5,"length":512,"data":[1769152630,1668117036,1399991923,151653705,544632685,1915517026,779314029,223887986,1869416714,2019827830,1668117036,1148333683,151653720,544632685,1915517027,779314029,223888242,1869416714,2019631222,1668117036,1098002035,151653720,225731954,1953392906,1819042147,1684956448,151653744,942684206,218762550,543582474,1480937294,1145980244,168645189,757935419,1768453152,1919950963,1763730287,1633886323,1684368492,544106784,1685024112,1852776549,168655212,757935419,542327840,1965060969,1869507438,220294775,1762266378,1954047347,1701080677,1635148146,1650551913,1881171308,224620402,841877770,168638008,1937076233,1935941736,1879640589,543716213,168653669,1937076233,168649064,1937076233,1936924776,1879640589,1679847535,151653747,1702521203,543584880,1701591817,1936007265,1931488361,1146310010,168645455,1634036745,745108256,1397586547,156454724,1937075515,1700929652,1095060512,1868832812,544483182,1851877475,1948280167,1830953071,1931507311,1718561897,1952805734,1299870496,1397703763,168632610,1987013897,746086688,1631073841,151653736,544501353,224937522,1835206922,1818304624,168636716,1668113161,1879640589,224489583,1869613322,1936007280,1879640589,1679847535,151653747,225731954,942541066,221657136,1124732170,1414745679,1734701856,1953391981,2054359565,1329877837,1650729043,1397563936,1397703725,221260834,1313817354,1696617555,225666158,1762266378]},{"sector":6,"length":512,"data":[1954047347,1701080677,1635148146,1650551913,1696621932,225469550,1846152458,1936680047,1769240677,980710254,1879640589,543716213,168653683,1886351369,225666080,1869416714,1769152630,1717989164,544499059,1937010542,846229621,1829308941,1646294639,543519865,544371824,1567191899,656680748,1829308941,1679849071,1718561912,1952805734,1953459744,1886418291,1661536781,543976545,846491241,963141937,1829308941,1646294639,543519865,544371824,1567191899,223494956,1869416714,2019827830,1717989164,544499059,1868853102,1954047347,1778977293,1763733613,825390190,221866081,1684956426,168650345,1768189541,218762598,1685285130,1735746149,1818584423,1701077359,168639076,1987013897,746086688,1886613595,1566925412,1661536781,1629515885,1885023352,1650749555,168648039,1952805385,168626701,757935419,1936614688,543519349,1701060705,1734833506,1763730789,1869357171,1684366433,758843917,1931488557,1394635877,1229208137,544175136,1228559171,1881156688,1702061426,543520370,539777089,539777090,168646724,1852115469,1701999987,1969382756,1701144423,1684107116,1881171045,224620402,543582474,1447645764,1696617029,221257841,1970276618,1629513843,151653752,1819042147,1685285152,1735746149,1818584423,1701077359,151653732,544894570,168642112,1937076233,2019696744,1879640589,543716213,168654948,1818321673,1919098988,1702125925,1835890020,1935766649,151653739,544632685,1529637235]},{"sector":7,"length":512,"data":[1936156018,1396929070,151653725,544632685,1529637220,1936156018,1346990638,151653725,544239472,168654948,1886351369,225993248,977289226,1879640589,1629515887,1695157624,1718183022,1913195021,168653925,1970499173,1701078386,1734833506,1869374821,1684366433,1684956448,218762608,757938954,541859885,1835888483,543452769,1701978157,1629512801,1869770784,1835102823,1919885356,1936286752,1702043755,1919906915,1713384563,544042866,1802725732,218762542,543976458,1668248176,1661536781,543976545,1936875888,158821477,1634745097,543519602,539784297,1919181921,544106784,674920546,2019830117,1778977293,1819025530,151587121,543582523,1970365810,544502629,1814065012,543449455,1701603686,1718159885,1297104672,1718159885,1162825248,1313166424,223495492,1633880330,1763732588,225276019,2053769482,222707744,1633880330,1763732588,1954047347,1701080677,1635148146,1650551913,168650092,543386121,1868853102,1954047347,1953721961,1077938701,1695157562,1718183022,1852115469,224815460,1835206922,1935876208,1937070906,1667330149,1567909227,168636972,543320585,1597009004,151653681,544632685,1630301284,990447980,741358913,741424450,741489987,221130286,1870137610,1769152626,157905708,1701985033,1679844449,1702259058,1762200077,1679844206,151587180,826097979,842875436,859652908,774778412,1829308941,1629517423,859253880,157824304,1396980489,692398138,757094466,1634738238]},{"sector":8,"length":512,"data":[1952803683,1929972237,168649588,1953392905,1748054560,990447904,543519605,544501353,543699250,1701995880,1869488172,1868832884,1818321779,151653740,544238954,1597009004,1812598066,828321900,151653690,544501353,224933170,812411914,221917791,1869416714,2019827830,1717989164,544499059,1684104562,224882281,1835665674,2004295792,218762545,757938954,1866866733,1663967346,1864396143,1697521778,1713399160,1936026729,1702305836,1851876128,1819176736,1869357177,1629512801,1935876212,808464698,1126178862,1801676136,1634235424,1768300660,779383666,168626701,976317548,1718159885,1230128160,542262614,807432549,1829308941,1629517423,1717251180,1701145705,157119608,1952802619,1634493984,1864397671,1768300646,1696621932,1852142712,1852795251,1661536781,1629515885,221260908,1852442890,1178607738,990447881,1696622185,1852142712,1852795251,1769497888,225670259,1869416714,2019827830,1717989164,544499059,1852206958,224750945,1835665674,1852383344,1630614132,168638824,221921344,1702103306,1629516915,1480928364,1329815380,1919885389,1415071008,1163412831,1778977293,1869357178,1768318049,151610732,543582523,544501614,1836016430,544370464,1702389038,1818846752,151653733,544238947,1529641058,1936156018,1396929070,151653725,543518314,540175468,1765476617,1702043750,1852140903,1936269428,1869772576,168650606,1886216969,746087456,1747988529,1778977293,1869357157,1768318049]},{"sector":9,"length":512,"data":[151610732,543582523,1919181921,544437093,1327526761,1864900683,1869488242,1768366196,695100790,1819019789,168639026,1768189541,151653734,544238954,1600417123,1869771365,990447986,544104803,2037149295,1634692128,1663967332,1864396143,1697521778,1629513080,1935876212,808464698,168626701,1696623724,225469550,1762266378,1380196454,1380275785,544302368,218762544,757938954,1869357101,673211489,695823969,1818846752,1764237413,1869488230,1160650868,1864385880,1127096434,539774287,1684107116,544497952,1144674370,168634712,757935419,1701867296,1768300654,1629513068,1730176110,1814066277,1952935525,218762600,1634692106,1818846820,1919950949,168649583,1987013897,745108256,151615586,1986097979,1701060709,1852404851,1869182049,1684086894,1936028260,1931488371,1701668709,168653934,1987013897,745104416,151615588,1684955451,1717989152,225731955,1869416714,2019631222,811873068,151611440,1701867323,1768300654,1713399148,1914729071,1768186213,168650606,1987013897,746087456,222385220,1633880330,1679846508,1633907567,168651884,1668180489,155598880,1765476617,1869488230,1920099616,168653423,1886218761,1601136928,1869771365,990447986,1852404336,1919230068,544370546,1936942445,224749409,977289226,2013858317,543647843,1647081569,990447992,544632685,1630304354,151653752,544632685,875329633,1748119602,1815808265,1801807219,1179600160,2013858317,1663070831,2019765368]}],[{"sector":1,"length":512,"data":[2013858317,1679848047,2019830904,1762200077,840987758,168650801,540740109,1884495904,544500076,543581807,1701603686,1887007776,168653669,538976315,1948283969,544434536,1852403568,168639092,2019690811,1818846729,1634213989,1701602414,154864141,1631221860,1768294776,1814062444,1952935525,990514536,979989257,1812556132,543449455,1919181921,544437093,978535208,1747988529,1919903264,1480928800,1919885381,1329802784,168634701,1946749453,544502629,1818846811,1954047333,1480928349,1329815380,1919885389,1415071008,1163412831,1778977293,1814067822,1885626735,151612775,543582523,1836016430,544370464,1702389038,1818846752,218762597,543582474,223170623,757938954,1868832813,1814066286,543449455,1768300641,1763730796,1919950958,1667593327,543450484,1701080941,990514476,539831597,543516788,1684104562,1869573152,1634541680,544433515,1701670771,1734701856,1953391981,1734701600,1702130537,1918967922,1835562089,1667855461,1661536781,543976545,1836086121,1778977293,1178607738,1829308941,1679849071,1718561912,1952805734,1953459744,1886418291,1661536781,543976545,846491241,963141937,1778977293,1814065261,221393260,977289226,1852115469,224815460,990514442,539831597,1684107084,544500000,1936881007,1702259813,168636019,757935419,1919895072,1852796448,1868770861,1697525613,1713399160,1936026729,1702305836,1937074720,1868832884,1914724640,744776037,1684955424,1952805664]},{"sector":2,"length":512,"data":[978862624,1948276803,1752440943,990514533,539831597,1651340654,1864397413,2036473958,544433524,1684104562,218762542,1633880330,1696623724,1920299886,1650812005,1701275509,1634692197,157574500,1801547067,1970479205,1629513074,1650811936,1701275509,1936269413,1634692128,224683364,1869416714,1936007286,1936743212,1700947056,218762589,757938954,1749229613,543908709,543516788,1702521203,1634165024,1953721961,1635148064,1650551913,1931502956,1701011824,218762542,1970276618,1931503731,151653737,1752397168,225993248,151653642,544238947,1697409395,1096497779,1095975244,168648016,1937076233,168650344,1734700553,225014560,1869613322,168650352,1700882953,913075232,990447904,1814062697,1768186223,1881171822,544502625,543452773,1830839919,539782501,1869376609,1752440951,1735749490,1717969000,168650342,1684300041,745108256,1530557285,1396788289,157110337,543781691,1970151485,1919246957,543584032,1634886000,1885434471,1629516648,1818845558,1701601889,1819019789,168639030,1987013897,746087200,151653684,544370552,1647081570,1812598136,221919084,1752369418,1769152620,168636716,1818456585,746086944,151653681,1886351212,929852448,1929972237,1931502197,1768172649,1929972237,1646289506,2019765368,1648036105,1769159288,1847606560,1700949365,1718558834,1919907616,1814066020,225732197,1651116298,963406880,990447881,1629513321,1634038380,1998616932,1701980005,1953853216]},{"sector":3,"length":512,"data":[543584032,1667330163,151653733,544238947,1680636002,151653752,543518314,168642112,1886216969,745108256,168654945,221921344,1634339082,1819025509,151597105,543582523,544501614,544503151,1931503215,1701011824,1819019789,168639033,1886351369,158884384,1866139913,1864397941,1886593126,224748385,1869613322,1769152624,1829308941,1679849071,1718561912,1952805734,1936679968,947024485,1869495049,1852121204,1751610735,1835363616,226062959,1633880330,1763732588,825390190,154757217,1919957769,544501353,1769108595,168650606,1886218761,829189152,218762546,829189130,168639024,1886351369,225993248,1869613322,1769152624,168626701,757935419,1869894432,1814062450,1952935525,1852383336,1734701600,1702130537,168653682,758843917,1931488557,1936549221,1646289184,1965061225,1936291694,1869881445,1685024032,544826985,1768383858,1919251571,1718165619,1679843616,1735746149,543516007,1914729321,1768844917,168650606,757935419,1953849888,542330144,1430406468,1868832839,1763734373,1935745140,1818588960,1762266476,221257830,1869416714,2019762294,1701993260,1915646823,224219971,1835206922,2019762288,1936743212,1700947056,151653725,544894570,1701998446,1685024103,226059881,1835206922,1918574704,779315045,1565542770,808464684,151653736,544894570,1701998446,1685024103,226059881,1684956426,168650345,1987013897,1701993248,1915646823,744314946,168654948,1987013897,1701993248]},{"sector":4,"length":512,"data":[1915646823,744314947,168654945,1701998446,1685024103,981034601,168626701,757935419,2003128864,543452777,543516788,1701603686,168626701,1987013897,746086688,808464948,990447976,1701147500,151653739,544370552,1663858787,151653752,544370552,1680636004,151653752,544501353,224932146,151653642,544632685,808220772,168650854,1684955401,746087456,168651108,1987013897,745300768,151653684,544368755,1663854948,151653740,543450209,1680632179,990447977,1681549683,1936269432,1701344288,1684300064,1936942450,544175136,1684104562,225408032,990514442,539831597,1768383810,1869357166,1864396911,544367990,1853188195,1948283755,1701978223,168649825,1819019789,221917489,1869416714,1751195766,1751528236,1916471561,543449445,1836020326,1818846752,1852383333,1142976372,1160264275,223888425,1869416714,2019762294,1701195820,157823024,1701985033,1965057121,1869881456,1768453152,1634541683,1646295406,1936028793,1829308941,1679849071,1769155699,1762200077,840987758,168650801,1627982349,1931502692,1714433129,157823077,1870084873,1998615662,543912559,1881173609,1702129522,1684370531,1685024045,168632677,1886216969,746086688,168654947,543517193,825322604,990447904,1696622185,1864393838,1768300646,1914725740,1751343461,168649829,758843917,1126182189,1702063980,1701344288,1818846752,1851859045,1768300644,1752394094,779121952,168626701,842099820,151653690,544632685]},{"sector":5,"length":512,"data":[858548321,151611493,1869374267,1713399155,224750697,1852377354,825368692,151653736,1752397168,544437024,1916471561,1869902693,1679844722,151653747,544239472,168653668,1952805385,990447881,1701736292,168626701,1684107116,1701603686,1684956448,218762608,1634692106,1835495524,1869770784,218762595,757938954,1768300589,1763730796,1160650867,1864385880,1127096434,168643919,757935419,1869366048,1948280179,1713399144,224750697,151653642,1752397168,225992992,1869416714,1751195766,1751462700,1664813321,1702063980,1818846752,151653733,544501353,224932146,1869613322,2019696752,990447881,1647999076,1936269432,1701344288,1818846752,1701584997,1752459118,168626701,757935419,1784963360,544502645,541415493,1702521203,544825888,1747988530,1802071072,1397563493,1397703725,541282351,542330692,1430406468,1868832839,221148005,757938954,1752440877,1763734377,1868832883,1646290286,1969316709,1948280179,1948280168,1667854457,1159752801,1746945368,1701077349,1769152626,1763730810,808591475,221145136,757938954,1953046573,1869116192,543452277,544499047,543516788,1684104552,1931506277,543521385,1836020326,1701344288,1163412768,1634035744,544367972,1970235508,168650855,757935419,1702257952,1752440942,1998615649,1684829551,544483182,1868784481,544501365,544370534,1801675120,1864393829,1868767346,1701998701,1684370291,1163412768,1818846752,168653669,1946749453,544502629]},{"sector":6,"length":512,"data":[1818846811,1954047333,1480928349,1480941396,151653701,1075870314,151587142,543582523,544501614,1702389038,1929972237,1646289525,808594552,168650800,1650619145,746087456,1074400560,168639040,1879640589,543716213,168654946,1937076233,2019827816,168626701,757935419,1851876128,543974755,1920103779,544501349,1668248176,544437093,1819178280,544437093,1919248500,1936269413,1852796448,168634725,757935419,1768453152,1769414771,1629514860,544174956,544503152,544567395,1801675106,544106784,1818322290,1685024045,218762597,1633880330,1763732588,1650812019,1701275509,1634692197,224683364,2053769482,222707744,1633880330,1713400940,1835361650,168652133,221921344,990514442,539831597,1634036803,1701978226,1953720679,225669733,151653642,544632685,1865181540,1702061670,1701978228,168653671,1987013897,746087200,1702521203,1914725999,544434021,221388847,1870137610,2019631218,225993004,1701972234,1953702000,225932143,151653642,544239472,1685221239,1920233504,1701993248,1915646823,224221250,1869613322,1870078064,1881171058,1528853108,1936156018,1480815150,218762589,757938954,1766203437,1886724216,1953392928,1970434661,1981838448,1869898597,1763734386,1397760110,218762576,1869416714,1769152630,1229144876,990447958,1919181921,544437093,1864394351,1768384882,543973742,542395977,1629500210,840983662,1764237364,1397760110,168634704,1987013897,745104416,1936090735]},{"sector":7,"length":512,"data":[1914729573,858943093,168637490,1987013897,168654707,1987013897,168654707,1987013897,168654707,1987013897,168654707,758843917,1092627757,1635087459,1919950956,1634887535,1869357165,1852400737,538979943,543519573,543516788,542330692,1702129257,1886745202,168636020,1829308941,1629517423,1647586424,157823280,1869363977,1881171041,1919381362,168652129,1987013897,746087456,155276356,1718565641,1952805734,543584032,1701603686,544175136,1684107116,1829308941,1646294639,1718561912,1952805734,1702389024,1802265187,1634745097,1701667186,544367988,1668246626,151653739,544501353,543699250,1815808265,543449455,168653929,1668180489,222707744,1835665674,1869160560,1920099679,151614063,543582523,1869771365,1074400626,168639040,1818321673,1702043756,1886610804,225207909,151653642,544632685,1932294241,151653744,543323507,1680636001,1398487667,1447121744,151653725,544238947,942438497,168650800,543320585,151602752,1718172425,544106784,1735287154,151653733,544632685,942438497,168650800,221921344,1869416714,1935351926,1784963440,1567912821,225993004,1701579018,1769152627,1870095404,1881171058,1528853108,1667594341,778792034,1886614387,151653725,1935961964,1936007287,1769167674,990447965,1868785010,544367990,168654945,1987013897,1701993248,1915646823,744314945,168654945,1987013897,1701993248,1915646823,744312915,168651123,1987013897,1701993248,1915646823]},{"sector":8,"length":512,"data":[744313683,168653669,1936026633,745108256,1919907684,1953505380,1700470898,1650681208,1663986540,1567648115,1829308941,1528854127,1936156018,1346990638,1769155677,1829308941,1528854127,1936156018,1396929070,1936010333,1829308941,1528854127,1768835426,808213876,1879640589,543716213,168653683,1886351369,225666336,1818429706,218762595,1633880330,1730178156,1936749669,151653744,1734894456,746086688,151615586,1987013947,746086688,168654946,1987013897,1936743200,1700947056,2019634269,1829308941,1679849071,1718561897,1952805734,1734701600,1148333683,151653715,1936684147,151653751,1936684147,151587191,1734701627,1165110899,151653715,1819042147,1952805664,1685091184,168650594,758843917,1176513837,1936289385,1886724200,1394614318,1948284005,1768780389,1769234798,1629515375,1701995620,221148019,151653642,544632685,841775201,1748120117,1933248777,1763734629,1919251566,1953527154,1667593760,544370548,168636978,1987013897,746087456,1936090735,1763734629,842167406,1762200077,840987758,168650801,1987013897,745759776,1886613595,1566925412,154864141,544632685,1685221239,1920233504,980640800,1230001243,1563437910,1717989164,544499059,846491241,151653682,544632685,1685221239,1920233504,980640800,1230001243,1563437910,225993772,1869416714,1870078070,1881171058,1679848052,1415264883,727075152,1663851826,151653747,1752397168,225669920,1869613322,1935941744,168626701]},{"sector":9,"length":512,"data":[757935419,1952797472,544240928,1953066601,543973737,1919181921,1702064997,1868963955,1629954162,656419879,539764580,543452769,539456807,1835888483,1935961697,218762542,1952805642,1633644661,976909668,1829308941,1679849071,1718561897,1952805734,1633640736,225600612,1869416714,1769152630,1717989164,544499059,1936156018,1346990638,1879640589,543716213,168651108,1987013897,168654707,1987013897,168654707,1987013897,746086688,1734701659,1131556467,168648019,1869902601,168654707,1886351369,225014560,1869416714,2019762294,841626412,1913195021,1830842469,2004055663,1913195021,168653925,1869351437,1735418977,1852121197,168652900,1702038029,1886610804,543975013,1668248176,1929972237,1885698665,153118322,1970289417,1684433011,1879640589,1718121333,1929972237,1885698665,153118322,1869626121,2003050608,543453807,544371824,1734701659,1181888115,168648012,1886351369,1701993248,1915646823,224218182,1769146634,1919968634,151593062,1987013947,1870095392,1881171058,1528853108,1936156018,1347645998,1936010333,151653744,544632685,1734701659,1399991923,1932287312,1815808368,824211311,1768041782,1718558836,1347634464,1818851104,1700929644,1702260512,1769109362,1852142708,1913195021,168653925,1702126963,1717923955,1852121196,168652900,1852115469,224815460,990514442,539831597,1868767309,1851878765,539828324,1702260589,1886348079,1701650553,2037542765,218762542,757938954]}]],[[{"sector":1,"length":512,"data":[1768300589,544502642,1667590243,1718165611,1701344288,1763730802,1869422707,1948280178,544104808,1918967857,1701672295,168653934,757935419,1864380448,540090482,1969713761,1953391981,1918967923,1634213989,1701602414,2036473956,1701344288,541927200,1970299739,1663051613,224748655,1829375242,1881173357,224620402,543582474,1162104653,1129596243,168641613,1886216969,745300256,168645187,544893449,1751343469,1919251825,151653753,544632685,1630300257,151653740,1629516399,1330916456,1163349836,151653714,544238947,657221729,168634222,1701734921,224804896,1869351178,224555876,1633880330,1663069292,1868917608,151653740,544632685,757885025,990447921,1634036835,1868767346,1668248176,1869837157,1818632306,168650593,1886218761,1952805664,1668312415,1077938701,151653690,544238947,657221729,168634228,1701734921,154234144,1664813321,1801676136,543582496,2037149295,1629499680,1836410738,225734245,1869351178,224555876,1633880330,1663069292,1868917608,151653740,544632685,1529636961,1751343469,1566928489,1627982349,1629512814,1714433128,168650853,1886216969,745038112,151653682,1931502954,1834972261,151610224,543582523,540424242,857764463,168638008,1869771365,976448114,1778977293,1663070317,1700750445,1919906418,168626701,1751343469,1919251825,168639097,1987013897,745108256,1936090735,1830843493,809002867,168638520,1987013897,745300256,1667329371,1701734760]},{"sector":2,"length":512,"data":[151653725,544238947,808217697,1778977293,1178607717,990447881,941647465,221788208,1869416714,1769152630,1717989164,544499059,2020045677,168638008,1684300041,745300256,220672039,1869416714,1935351926,1630297449,1074400620,168639040,1818321673,1868767340,1953724784,1735289202,1933248800,1681796457,151653737,544632685,1865181555,1702061670,1869488244,1970300511,1829308941,1629517423,1834691692,1600676705,224212792,1835206922,1818304624,221326636,1701447946,155598880,1765476617,1869488230,1886348064,1701015410,1919906675,1829308941,1931507311,1718561897,1952805734,1935763488,1970300511,1661536781,1629515885,1834691692,1768448865,224224622,1701447946,155598880,1765476617,1634213990,1868767347,1668248176,1869837157,1634934898,1629513069,1919950963,1936024431,225603443,1869416714,1769152630,1717989164,544499059,1601397096,221722674,977289226,1661536781,543976545,2037411683,1769108595,153118574,761885499,225010750,1835665674,1970282608,1768715124,151610734,1818321723,1970282604,1629516660,1897948270,225732981,1829375242,979919713,1661536781,543976545,1651795303,224752761,1633880330,1663069292,1868917608,151653740,544632685,1680632929,151653740,544238947,1529637985,1751343469,1600482921,1970561889,224226401,1634339082,1920099616,862614127,1681590537,1970085996,1646294131,758128741,151653686,544632685,1667329371,1701734760,1818307677,1702050569,1634541684]},{"sector":3,"length":512,"data":[1852401763,2037653605,168650096,1886216969,745300256,151653683,543514986,168642112,1684955401,1836210976,1566925935,1953459756,1598902816,1379285043,156452677,1936028219,857764965,1914713656,1936287589,544367988,1886611812,226058604,977289226,1829308941,1629517423,1818307688,1933248777,1663071333,1869770863,1936942435,1948283503,224751737,1952805642,1668312415,151653690,544238947,1529636961,1751343469,1597454431,1970561889,224226401,1735002378,222707744,1869416714,1834688630,1600676705,744306488,168650849,221921344,1701972234,218762612,976317706,1879640589,543716213,168654945,1937076233,1769152616,1661536781,543976545,1685349735,1685221239,1661536781,543976545,1885956979,221276279,1835206922,1818304624,223494956,1869613322,1769152624,1879640589,1629515887,151653752,1830839658,543712097,1782253833,544238965,824206953,1735549216,1852140917,1695157620,1718183022,168626701,221917805,1633880330,1881173100,1702064737,151612771,1918988347,1629513075,1836410738,1937010277,1396975648,692398138,539773267,674911045,1229203781,1160257580,693650217,1879640589,543716213,168654947,1059087977,168643920,1818321673,1936269420,168652144,544893449,168642112,757935419,1146049568,1679833679,1986994287,1634497125,1852403824,1751326823,543908709,1881173609,1702129522,1684370531,1685024045,151653733,224619619,1835665674,862789744,1077938701,1695157562,1718183022]},{"sector":4,"length":512,"data":[1829308941,1663071855,221523052,1752369418,2019827826,225207084,1684080906,2019827812,158884396,1886731017,544367984,1646278193,544437353,1679844975,1769239397,1769234798,168652399,1987013897,746086688,168651123,1919447817,746086688,168651875,1987013897,746086944,168653668,1684300041,746086688,168654946,1886216969,746086688,168654948,1701734921,154365216,1765476617,1702305894,1869507360,1752637559,543712105,1814066025,1701278305,151653746,544632685,1932294241,151653737,543452769,808217697,168650854,1987013897,746086944,168651108,1684955401,745300512,224945712,1835206922,1818304624,225206828,976448778,1879640589,1663070319,151653752,1718116716,1879640589,543716213,168653668,1937076233,1936007272,1879640589,543716213,153121651,1935948553,540883488,168653667,1886351369,225666080,1633880330,1679846508,1667328111,990447979,544499059,1969382756,1701144423,1763734311,840987758,875704115,1879640589,1696624751,151653747,544239472,168653668,1059087977,168643920,1886216969,980640544,1682006619,842232420,221260893,2053769482,1597205792,151653681,909652782,1929972237,224815201,1634339082,1178607717,1627982349,1696621668,1697409395,168654947,1684300041,1768187168,2019779884,1929972237,168649844,221921344,1701972234,1869422704,543322998,1530557285,1567188069,1935941676,1936022330,168648041,1987013897,1696621171,1700477555,744319332,980640800]},{"sector":5,"length":512,"data":[1769170267,151653725,224685155,1835665674,1701126256,168649008,808988169,168638008,828322669,1695157562,1718183022,1929972237,224815201,1634339082,1178607717,990447881,1713399401,1635218031,1663067250,544829551,1327526761,151653707,543450209,1663854963,151653752,543450209,1663854948,151653752,224687219,977289226,1913195021,1830842469,1651734127,1681590537,1752440943,1869422693,168650102,1987013897,151609971,1852783369,1869422693,1646290290,224752761,1818429706,151587172,1936028219,1701998452,1634493984,151653735,544238954,1630561637,1916471561,1869902693,1679844722,1851859059,1936007268,1684955424,1684960544,1752440943,1852383333,1869619316,1702129257,1634214002,168651619,544042349,1885630053,168626701,757935419,1663061536,1634561391,757097582,1634231072,543516526,543516788,1701667182,543584032,543516788,1735357040,544039282,1852400994,1701060711,1734833506,221144165,1124732170,1414745679,1734701856,1953391981,2019887629,1814066036,1818583649,1954112032,151653733,656433764,1163412782,1480928295,1480941396,151653701,656433764,1297040174,1480928295,1329815380,1124732237,1414745679,1684956448,218762611,543582474,1447645764,1696617029,221257841,1846152458,1919950958,168649583,1987013897,745104416,155276356,1701067529,1852404851,1869182049,1684086894,1936028260,218762611,757938954,1866670125,1629518192,1663067246,1852796513,1818321769,543521385]},{"sector":6,"length":512,"data":[1701603686,1701667182,218762542,829320714,151653690,544238947,1126984801,151653714,1847616874,151597934,1718172425,1684956448,543584032,1701734764,1661536781,543976545,1702061673,990447984,1667590243,1868963947,1702043762,1634886000,1936879476,1634759456,539780451,742539604,1836016416,539779437,1025518651,1778977293,1852711013,151587123,543582523,543452773,1713399407,1852140649,224750945,1835206922,1818304624,657401644,1778977293,1852711013,151587123,543582523,220671783,1835206922,1818304624,660678444,1778977293,1178607714,990447881,1847617129,1814066287,1919252335,1935762208,151653733,544238947,657222753,168634234,543255049,151602752,1768176393,225408116,1851853066,1818304612,1431262252,1380274256,1664813321,1702260335,1948284018,1886724207,544367984,1702060387,1077938701,151653690,1936684147,151653730,1935961964,151653730,544238954,540110446,1648036105,543908705,544370534,1701998445,168626701,976449134,1829308941,1629517423,154152044,1970158345,1948281964,1768780389,1702125934,1701344288,1818846752,1835101797,1953701989,1735289202,1929972237,1651732340,1829308941,1998616175,543453807,544371824,1702389083,1802265187,1684890414,1818845556,1768172637,1634941705,1931502966,1953653108,543584032,1835888483,543452769,1818845556,168626701,757935419,1952793632,1768780389,1713399150,543517801,1702131813,1869181806,218762606,1970276618,1679845491]},{"sector":7,"length":512,"data":[151653737,1752397168,225014560,1835206922,1768169584,1096041516,168636715,543517193,1681092206,990447904,1847617129,1768300655,1634624876,1629513069,1818304628,151653740,544238947,1143761252,892027220,1778977293,1852711010,153117491,1718172425,544173600,1702131813,1869181806,1848123502,543518049,544173940,1919903859,168634740,1634036745,746087456,761881691,168647989,1987013897,746086944,1936090735,1696625765,158561400,1701339963,1713400675,773878383,541415493,543452769,1297040174,1829308941,1663071855,221391992,977289226,1879640589,543716213,168654947,1987013897,745108256,168654946,1987013897,745104416,168654948,1684300041,746086944,151653685,544632685,875326563,1913195021,544895077,1936747875,151653730,544632685,1529637985,224225651,1869613322,2019762288,1778977293,1852711034,168649779,1869573129,1111498864,1852705293,221930291,1869416714,1818304630,1415071020,1213484895,168645189,1681092206,151653690,544632685,1818846811,1954047333,1818307677,1879640589,1931505775,218762601,757938954,1766203437,1752394094,1701344288,1663061536,1634561391,168649838,1829308941,1679849071,1718561897,1952805734,1852402720,1970233189,151653748,1752397168,225010720,1701054730,1769152611,1077938701,151653690,1935961964,151587170,1886348091,1752440953,1701978213,1852399981,544367972,1814065012,1600482921,225736047,1953696010,224555887,1835206922,1818304624]},{"sector":8,"length":512,"data":[223494956,1852442890,1111498853,1879640589,1931505775,218762601,757938954,1699946541,1886724212,1111705120,168636019,1829308941,1679849071,1664429161,151653736,1819042147,1181697056,151601731,544171067,1936877926,1128669300,151653698,544632685,1702132066,1920233504,1701993248,1915646823,808147009,1818307677,1829308941,1679849071,1664494697,151653736,1819042147,1181697056,151601731,1667593019,543452783,222446406,1869416714,2036473974,1881171316,1528853108,1936156018,1480684078,744304939,168651873,758843917,1126182189,544829551,1835888483,543452769,1818845556,218762542,1869416714,1769152630,1717989164,544499059,1701734764,1953853279,1879640589,1679847535,151653737,1752397168,225010720,1852377354,1768169571,1077938701,151653690,1935961964,151653730,1936684147,151653730,544238947,1126984801,151653714,543518314,151601728,1718172425,1953459744,1684956448,543584032,1769108595,168650606,1886351369,158884128,1916471561,1987011429,1864397413,1142973548,151653705,1734894456,746086688,168651108,1651864329,746086688,151611748,1836016443,1702131056,1852140576,543716455,1948280431,225208673,1701054730,2019631203,1678313997,1629512549,151653752,1936684147,151653730,225731954,544108042,1885630053,168626701,757935419,1651856160,1953853298,543518313,1881173876,1701015410,1629516659,1128669294,168635970,757935419,761881632,1111705150,168626701,1128689476]},{"sector":9,"length":512,"data":[1919950914,168649583,221921344,1869351178,224555876,1835206922,1818304624,223494956,1701447946,929984032,990447881,1696622185,168649838,1818321673,1718165612,225469811,1701447946,155336736,1765476617,1702043750,1634886000,225603444,1835206922,1818304624,657401644,1778977293,1852711013,153104433,1718172425,1769435936,543712116,1918986339,1702126433,1846152562,221919086,1701054730,1769152611,1829308941,1629517423,959589496,157823280,1634745097,543519602,1701603686,1701667182,1661536781,543976545,1668509540,225209441,1970276618,1629513843,151593080,1986097979,1279336549,1077938701,151653690,1935961964,151587170,1768649531,1769218160,1931504748,1918988389,1919906913,1661536781,1629515885,1380133996,1778977293,1178607717,990447881,1696622185,168649838,1818321673,1718165612,225469811,1701447946,155598880,1765476617,1702043750,1634886000,544370548,1918986339,1702126433,151653746,544238947,657222753,168634159,1701734921,155336736,1765476617,1869488230,2004033652,1751348329,168653409,221921344,1701054730,1769152611,1879640589,1629515887,151587192,1667592763,1919252079,223101216,1835206922,1818304624,168636716,1701734921,155598880,1765476617,1869488230,221323380,1701054730,2019631203,1077938701,151653690,225731954,990514442,539831597,1684955464,1629513068,1769435936,543712116,1718182952,1701995878,2037150830,168635945,1852705293,221917233,1869351178]}],[{"sector":1,"length":512,"data":[224555876,1835206922,1818304624,223494956,1701447946,929984032,990447881,1696622185,1864393838,1953701990,1735289202,1661536781,543976545,1702061673,151653744,1847616874,540029294,1765476617,1851859046,1701344367,1702043762,1634886000,225603444,1869416714,1818304630,168636460,1869902601,168649331,1667589129,225014560,1869351178,224555876,1835206922,1818304624,660678444,1778977293,1178607714,990447881,1847617129,1629516911,2003790880,1663070821,543519585,1953785196,168653413,1886216969,745300256,220690983,1634339082,222707744,1851853066,1818304612,1431262252,1380274256,1664813321,1702260335,1948284018,1886724207,544367984,1702060387,1077938701,151653690,1936684147,151653730,544632685,657225825,220667936,1953696010,225932143,1953696010,225932143,1953696010,225932143,1953696010,225932143,1953696010,225932143,1870137610,2019631218,225993004,1953696010,225932143,1953696010,225932143,1953696010,225932143,1953696010,225932143,1701972234,151587188,1952805435,544109173,1752459639,1028407584,1141509424,1111705199,1684956448,218762608,1684956426,168650345,758843917,1327508781,1836016416,1684955501,1864379680,1970304117,1869881460,1328498976,1919905824,168636020,1869548045,1869770784,151653731,544632685,808217698,1829308941,1629517423,1935354984,1563569513,1681590537,1769239401,1936291175,1864835176,1629497188,656434286,660873327,1627982349,1629512814]},{"sector":2,"length":512,"data":[1330916456,1162891349,151653714,544238947,657221729,168634191,2054056457,1601138464,151653682,544632685,1630300257,151653740,543452769,1412196449,1347441999,168645189,1886216969,745038112,220682023,1701447946,1601138464,151653681,544238947,1667329371,1701734760,221457501,1651116298,1601138464,151653682,544238947,657221729,168634180,1701734921,1601138464,151653682,543387241,168654946,828338031,151653690,543387241,168654946,1818321673,1802707052,1752658025,224752745,1601138442,168639026,1818321673,1701257324,1919907700,151653732,1752397168,225993760,1633880330,1931504748,1668311403,812477807,1661536781,1646293101,221326444,2053769482,1601138464,151653683,1864393066,221536111,1633880330,1730178156,2036495461,151610740,1030513723,1702132066,1661536781,543976545,1701537891,151612527,1886938427,544498533,543452773,1814062703,543518313,1701995880,2013858317,543647843,1680636001,990447992,1025535073,1954112032,151653733,544239472,151615588,1701985033,1702260579,1869619314,1847620722,1700949365,151653746,544503151,1630304356,151653740,225731954,1601138442,168639027,1818321673,1701257324,1919907700,990447972,2000517220,224686703,1633880330,1663069292,1868917608,990447980,1701869669,1696625763,1864393838,1768693862,1746953582,224752229,1668811018,1629513576,2019830904,1631258889,540876920,1685221239,1879640589,1679847535,151653752,544503151]},{"sector":3,"length":512,"data":[1630304356,151653752,225731954,1601138442,168639028,942878217,151653686,1819042147,1952802592,1919907684,990447972,1681553506,2003058040,224686703,1633880330,1663069292,1868917608,990447980,1701869669,1696625763,1864393838,1768693862,1746953582,224752229,1970276618,1646291059,151653752,1752397168,225993760,1869613322,1634017392,151653752,544239472,168654948,1953853193,746087456,225993061,1701972234,151653748,942684206,1862929718,1852121199,168652900,758843917,1696607533,1920299886,1702043749,1852140903,1852383348,542655008,1998615401,1702127986,1701601889,758843917,1864379693,540701813,1920098627,540097913,1931503209,1701668709,1847620718,1998615663,1702127986,1701601889,758843917,1830825261,1952999273,1701602080,1210085985,1919899497,1145383012,168634697,1718159885,1297104672,168626701,1769104758,1702066534,1881173351,224620402,1633880330,1763732588,225276019,2053769482,1601399072,168652146,942812681,151653686,1752397168,225992992,1970276618,1679845491,151653737,1752397168,225468960,1869416714,1885479030,225473324,1970473226,1886593122,168638508,1987013897,745104416,168652915,2053731081,1718775909,990447904,543253868,745104485,1567188059,2037590048,2037280622,1868963949,1869422706,544766582,745104485,220817764,1701579018,1768169569,1768184620,151653725,544632685,808220769,1749168176,1731922185,1679848549,1919120229,1869901929,151653746]},{"sector":4,"length":512,"data":[544501353,224932147,1667893514,222707744,1702103306,1646294131,543519865,544371824,728327259,942431541,1868774153,1931502948,1701668709,222262382,2053769482,222707744,1851853066,2036473956,1881171316,1528853108,892037476,1177562205,1916495923,1952805733,1146045216,1868770117,1919903342,1735289197,1953784096,151653746,1646293615,543519865,544371824,728327259,841768245,1702050569,1920409716,1650553961,168650092,1987013897,746086944,1919120219,1751348321,1567384947,1829308941,1629517423,808463480,224936752,1852377354,825434228,1074400616,168639040,1634036745,168650102,1886351369,225010720,1869613322,2019631216,1936263693,980251231,1913195021,168653925,808988169,168638008,1769104758,1702066534,1696623975,225469550,1930038538,1836217445,1835492723,151653690,909652526,1829308941,1646294639,1935879288,1668504378,1668571506,1818588008,1930038621,1836217445,1919181921,151587130,757939259,1702043693,1702043764,1952671084,1763734127,1480728686,544175136,1835492723,544501349,1919181921,544437093,1142976105,151653720,544632685,1680636003,151653752,543975539,875329636,1929972237,1663070824,842083448,1829308941,1629517423,221719672,1852377354,825434228,151653736,225731954,942541066,221657136,990514442,539831597,980710767,1028407584,1114196000,543519865,1629513327,1769108596,1702131042,1718558835,1920295712,1953391986,223560480,757938954,1970217005]},{"sector":5,"length":512,"data":[1512061556,540097862,1679844969,1919120229,1869901929,1936269426,758526240,225732962,757938954,1633886253,1684368492,544825888,1411394640,223682604,757938954,1869422637,1768319332,1159754597,539777089,168646722,1701251597,1634952052,544371828,1668248176,1829308941,1646294639,1918577784,779315045,1565737842,1701251597,1818588020,1920234593,151599674,758921993,1629498669,1931508078,1667591269,544370548,1109421673,151653720,544632685,808217697,151653680,544238947,1667329371,1701734760,221457501,1651116298,222707744,1633880330,1763732588,225276019,2053769482,222707744,858654986,168638008,1918987273,2019648800,2019714348,1929972237,1696625256,824997985,151653686,942684206,1074400566,168639040,1936028681,1818304628,1747989548,1913195021,168653925,1668572519,1953784179,1852121202,168652900,1852115469,543582564,223170619,990514442,539831597,1684104562,1229282080,1568156496,1818326560,168650101,757935419,980314400,1029194528,990514552,539831597,1734701659,1131556467,1128095059,990514515,539831597,1734701659,1697144680,1567648041,1346979133,758843917,1864379693,540701813,1530743873,674911043,1346971973,990514525,539831597,1113408859,1163607384,726681949,990514552,539831597,1819042147,1646290021,542384249,543452769,218762567,1952802570,1768256355,1954112112,1919950949,168649583,1937076233,1936007272,1829308941,1696626287,1918577779,779315045]},{"sector":6,"length":512,"data":[1565737842,1929972237,1885698665,156788338,1869429513,1650794614,1918577784,779315045,1565542770,1829308941,1646294639,1918577784,779315045,1565542770,1718159885,1297104672,1946749453,544502629,1396925019,1920234561,808725597,151653736,1075870314,151653702,909652782,1829308941,2020832879,2019779872,225993516,1684080906,1650794596,1667574904,151653752,544632685,1697410145,1700477555,224229474,1869613322,1936007280,1913195021,168653925,808988169,168638008,221921344,1684956426,168650345,1684300041,746086944,168654947,1987013897,745300256,1530557285,224229474,1869613322,1936007280,1913195021,168653925,1668572519,1885955443,1702132066,1684956448,218762608,757938954,1702043693,1163599988,2016104521,1635131485,224753004,757938954,1852383277,1480794170,168654909,757935419,1028407584,1702132066,544175136,1953067639,990514533,539831597,1734701659,1131556467,1128095059,990514515,539831597,1734701659,1232219763,1161649488,168644681,757935419,1685024032,1701406313,1163599987,223887965,1930038538,1935897701,1651534181,543519865,1668248176,1879640589,543716213,168653669,1987013897,746086944,1734701659,1131556467,168648019,1059087977,168643920,1818321673,1702240364,2036754802,1835492723,1778977293,1668489315,828334697,1852115469,224815460,1869416714,1936007286,225993260,1769146634,1919968634,151607398,1987013947,2019714336,1701993260,1915646823,224219209]},{"sector":7,"length":512,"data":[1869416714,2019696758,1701993260,1915646823,224219209,543582474,223170623,1702103306,1528853619,1095975778,1567782004,1747989548,1778977293,1936269434,829450591,151653686,909652782,1829308941,2020832879,2019779872,225993516,1869416714,1936007286,1650809658,1667574648,1630297464,1930038636,1600285027,168639025,1886351369,225666336,1701972234,151653748,942684206,1762266422,1885953907,221918769,1684956426,168650345,1684300041,746086944,168654947,1987013897,980641056,1568170587,225206572,1869613322,1936007280,1913195021,168653925,1668572531,1885955443,1702132066,1684956448,218762608,757938954,1920409645,543519849,2036473953,673211764,539577409,1109423201,793066072,168646724,757935419,1414876960,1212227642,1684827965,1818326560,1629513077,1752440948,1814066273,1952539503,225341289,757938954,541270061,1646290537,543519865,1819635555,1948741220,543515168,1953067639,225338740,1997147402,1702127986,544040301,1668248176,1879640589,543716213,168653668,1059087977,168643920,1818321673,1936269420,168652144,544893449,1885955447,168638001,1818321673,1702240364,2036754802,1835492723,1832585504,543517537,1629517922,1769109280,1650550132,1931502956,1701668709,168653934,543386121,1701736292,1879640589,543716213,168654945,1818321673,1701257324,1818588020,1920234593,1879640589,1629515887,151653752,1998617194,829450597,151653686,909652782,1829308941,1679849071]},{"sector":8,"length":512,"data":[2019699827,1829308941,1629517423,1700473960,224229476,1869416714,1700470902,744323172,168651873,1886216969,745300256,2019845467,151653725,544238954,1701736292,772344333,909652024,1702300173,909209705,1695157562,1718183022,1829308941,1679849071,2019699827,1879640589,543716213,168654946,1987013897,746086944,168654948,1987013897,745038112,1568170587,1829308941,1528854127,744323170,168651873,1886216969,745300256,1568170587,1879640589,1646293103,1678380408,979725935,1879640589,1679847535,151653747,544894570,168642112,1952805385,1077938701,151653690,224621683,1701972234,1997147508,1702127986,544040301,1885630053,168626701,757935419,1634038304,2036473956,1629513076,1480728692,1480869178,1953392928,1279336559,168626701,1684104562,544040301,1668248176,1718159885,1297104672,1661536781,543976545,1937007975,1952541797,168653428,1768189541,151653734,1752397168,225666080,1869416714,1935941750,225993260,1769146634,1919968634,151607398,1987013947,2019714336,2019845420,1829308941,1646294639,2019830904,1718159885,1297104672,1778977293,723787898,151653683,908092004,151611447,1869429513,1818304630,1650809644,168648056,1768189541,151653734,544632685,1529637985,224229474,1869613322,1935941744,1913195021,168653925,1684104562,544040301,1885630053,168626701,757935419,1701339936,1763732323,1851859046,1701737760,1667592312,543450484,544501353,1634213939,1668227187]},{"sector":9,"length":512,"data":[1701999971,990514532,539831597,674911043,1346971973,544106784,1936156018,1396929070,1734701626,1232219763,990514512,539831597,540700265,809326660,1970217004,1142962804,1936538968,990514535,539831597,1819042147,1646290021,743448697,168645664,1934166541,2019913301,1953384816,1919950899,168649583,1987013897,746087200,168636717,1818321673,1701257324,1702060916,2036494441,168650100,1886216969,745300256,1749238576,1778977293,1936269434,2019913333,2019909488,168653929,1987013897,746087456,1936090735,1763734629,1832088686,168650611,1059087977,168643920,1936028681,1650139252,1950438211,744321652,224931892,2053769482,858465312,1678313997,909516898,151587176,1987013947,1701993248,1915646823,744312905,225993317,1684956426,168650345,1987013897,1701993248,1915646823,744312905,168654946,1853191017,1601206373,1953069157,151653690,225731954,1433618698,1886938478,863268425,1684956448,218762608,757938954,542122029,1835888483,543452769,1919950893,1701143407,1764237412,741238062,1768649504,1986994288,1663070821,795634785,796159593,1886351212,1920234287,543649385,1953721961,1952675186,695103337,218762542,544239626,1668248176,1829308941,1629517423,1818307688,1627982349,1629512814,1330916456,1162891349,151653714,544238947,657221729,168634194,2054056457,812675104,990447904,1886221674,543582496,544501614,1663062608,1634561391,168649838,1818321673,1802707052]}]],[[{"sector":1,"length":512,"data":[1868787817,224488813,1633880330,1663069292,1868917608,990447980,1701869669,1696625763,1864393838,1768693862,1746953582,224752229,1870137610,2019762290,158884652,1868774153,544501365,1852383280,1633904996,544433524,1663062608,1634561391,168649838,1886218761,829452320,168626701,976253040,1829308941,1528854127,1953718636,1566862691,1717989164,544499059,221278320,1633880330,1881173100,1702064737,158625887,1919957769,1936024431,1918967923,1701672295,225670254,990514442,539831597,1763733316,1128013940,1868774744,1047817845,1835627552,539915109,1919501856,1663071347,1801676136,1701344288,1887007776,1718558821,1936615712,1668641396,1852795252,218762542,829452298,151653690,1752397168,544760608,1933248777,543520353,168654947,1987013897,746087456,151598385,541869115,1970151485,1919246957,543584032,1702132066,1869881459,997156640,541606944,1919950909,2020173413,1634493984,221148007,543582474,223170623,1633880330,1730178156,1935897701,1920234593,1829308941,1528854127,1095975778,1567782004,225206572,2053769482,222707744,1869416714,1751392374,1599098924,1397900353,723540553,1599098912,1230196815,151653722,908092004,151611446,1869429513,1936007286,1918577769,779315045,1565542770,1077938701,1695157562,1718183022,1829308941,1931507311,1918577769,779315045,1565542770,1946749453,544502629,1663858787,151653752,544894570,540176496,1765476617,1869488230,1380982900]},{"sector":2,"length":512,"data":[1836016416,1684955501,1661536781,543976545,1853121895,1651800165,1829308941,1679849071,1718561897,1952805734,1919971360,168653925,1987013897,746087200,1163022416,1313164372,1913195021,1701736549,1633907488,168649331,1701734921,846229536,990447969,1847617129,1914729583,1915712613,795243621,1952805481,1879640589,1663070319,151653752,543387241,151615587,1702050569,1868767348,544501365,1869881393,1769497888,1869357172,1629515887,1919251558,1952805408,1952805423,1919496038,168653925,1937076233,2019762280,1778977293,1881174125,221393264,846229514,151653690,1819042147,1952802592,1954047342,990447970,1530743873,674919267,1885940069,1696607325,724267113,1886390797,221929778,1869416714,1768169590,1717989164,544499059,2036494448,225666420,1869416714,2019762294,1280331820,168644165,1885696521,1931502958,1651728739,1778977293,1881171310,153105776,1718172425,1953459744,1701736224,543584032,1936025716,151653733,544632685,1529637985,1345022308,1313164368,157102381,1952802619,1919902496,1886610802,1768189551,1646290798,543519865,1881173609,1718511984,151653743,1953719668,745300256,1348423760,1229342034,151653720,1075870314,151587142,543582523,544501614,1919950945,2020173413,2013858317,1679848047,1818307688,1966803209,1952539760,1752440933,1818632293,225666913,1701054730,1818501219,1778977293,1881176686,153105008,1718172425,1953459744,1953853216,543584032,1702132066]},{"sector":3,"length":512,"data":[151653747,544238954,842100848,1832585481,543519343,1851877492,540356896,1717924464,1936029801,1818851104,1633886316,543519605,1346838625,1074400582,168639040,1936028681,1818304628,1747989548,1778977293,1178607738,990447881,1847617129,1769152623,1679844730,1852141669,1668179300,151653753,543452769,858549345,168650854,1684955401,745038880,1331646544,1514754896,1715144992,1126199919,743197761,1701867296,1684955506,2053731104,758259813,539767870,910044468,1627982349,1629512804,1751395436,1077938701,151653690,225927779,1633880330,1629514860,1768252516,990447984,543450209,1948285025,1852383343,1970435187,1869182051,1869619310,1702129257,1852383346,692398112,168642899,1886218761,829452320,990447921,1746953591,543520353,1802707041,1634758761,543517794,1953721961,1952675186,544108393,1701995880,168626701,976580720,1661536781,1629515885,1714433132,151611494,1684957499,1667592809,1633886324,222260332,2053769482,222707744,1835665674,1886396528,151597617,1937074747,1851859060,1685221152,1918987881,1852383353,1970435187,1869182051,1074400622,168639040,1818321673,1701257324,2019913332,151609972,1952802619,1146047776,1195725344,1294946848,1954112032,151653733,543452769,1848405089,941651055,1664813321,1918985580,2003790880,544502629,544500066,1377855087,1713391429,1684825449,858728480,1043148064,691154720,2013858317,1629516399,808529004,990447976,757084719]},{"sector":4,"length":512,"data":[790642221,151653680,1953719668,745300256,224933939,2053769482,222707744,1835665674,1886396528,151597617,543582523,544501614,841967206,544370464,858744422,1077938701,151653690,544238947,808217697,224931939,1634339082,1886396517,151597361,543582523,1953723754,1914724640,1936287589,225600884,1702103306,1679848563,1347431528,1380204895,224020819,1852442890,1886396538,151593014,543582523,1647129139,1629516905,1701995620,1852404595,151653735,544238947,908880993,1778977293,1886396517,151587129,543582523,1953723754,1634496544,1679847017,829453161,151653686,544238947,875326561,168650800,543320585,825323632,990447904,1763731049,1919509614,544498533,1768383858,1919251571,1661536781,1629515885,808987756,151653736,1881170538,540029296,1765476617,1768169574,1530425459,677864818,224209267,1835665674,1886396528,151593017,661940539,1768169587,909209715,1734701659,1562997544,168626701,976646256,1661536781,1629515885,221588588,1701447946,946892832,990447881,1780508265,544502645,1767992432,1768169582,842231923,2013858317,1629516399,221523052,1702103306,1629516915,221719660,1852442890,1178607738,990447881,1847617129,1230184559,2036473922,168650100,1818321673,1852383340,1885955427,1077938701,151653690,544238947,875326561,168650800,543320585,825323632,990447904,1763731049,1919509614,544498533,1768383858,1919251571,1661536781,1629515885,808987756]},{"sector":5,"length":512,"data":[151653736,1881170538,540029296,1765476617,1768169574,1530425459,677864818,224209267,151587082,1953446665,2003985768,744846185,661940512,1768169587,842231923,1734701659,1562997544,1886390797,168639032,1818321673,1852383340,1885955427,1661536781,543976545,1701015145,168652905,976842864,1661536781,543976545,1701015145,168652905,808546416,151653690,1819042147,1668180256,225470821,1879706890,976302448,1829308941,1646294639,1918577784,779315045,1565737842,1778977293,1881174125,2016489840,168636767,875655280,151653690,544238954,540110960,1648036105,543908705,544370534,1701998445,168626701,757935419,1701860128,1818323299,1936615712,1668641396,1852795252,1394614318,1629516901,1701995040,1869638497,544501353,543452769,544109938,1769238133,1702305900,1953064992,779381024,758843917,1109404973,1160264280,541676329,1629502781,1701995620,1998615411,1701995880,1646289184,1801545074,1852403568,1936269428,544175136,1931502946,221148261,1879706890,1701015410,976319347,151587130,757939259,1937055789,1646290021,542384249,1629513321,1313415278,1936269396,544175136,1881171298,1701015410,1684370291,1829308941,1663071855,221326456,1970276618,1663068275,1879707000,2016489840,154808671,1111165193,1396915544,1829308941,1679849071,1718561897,1952805734,1852402720,1970233189,1966803316,1948280179,1931502952,543518049,1634038370,1768910955,1931506798,1668641396,1701999988]},{"sector":6,"length":512,"data":[544432416,1193307753,1929972237,1885698665,156788338,1869429513,1684349046,1936010360,151653737,544632685,1932294244,151653737,544632685,808217697,224944995,1633880330,1998613612,1702127986,225273197,1869416714,1818304630,224944428,1852442890,1178607715,1829308941,1931507311,1718561897,1952805734,1851876128,1769109364,1885496692,1661536781,543976545,2037411683,1769108595,168650606,1818321673,1970282604,1768715124,168650094,1886218761,1684890400,1886351212,1077938701,151653690,1752397168,225992992,1869416714,2019631222,151597356,544236091,225734243,1953696010,225932143,1769146634,1919968634,151607398,1751349307,1634017383,1936010360,151653737,1734894456,746086688,168651123,2053731081,1718775909,990447960,1936684147,151653732,1936684147,151653751,544632685,1647081569,151653752,1936684147,151653751,544239472,168654945,1869902601,168649331,1059087977,168643920,1937076233,1918574696,779315045,1568109421,1852115469,224815460,1633880330,1914727532,151613045,1768453179,1768759411,544499815,1851877475,1830839655,543515759,795111009,1948283503,1768780389,1702125934,1701344288,1650811936,1701275509,168632677,1059087977,168643920,1818321673,1701257324,1634952052,158495860,1702050569,1635131508,1650551154,1646290284,1950438211,168653428,1987013897,1130519328,1953775955,1630297458,151653740,544239472,168654948,1818321673,1701978220,1651795315,2017817456]},{"sector":7,"length":512,"data":[1818561037,168650099,1818321673,1701978220,1651795315,168653680,1768189541,218762598,1870137610,2019827826,158884908,1702050569,1818632308,168650593,1886216969,1970428704,1852399470,1865178484,1702061670,1852383348,1936536436,151653735,543518314,858878064,1765476617,1869488230,1128472692,1953392928,1970434661,168653936,1818321673,1934172268,2019913301,1953384816,1950026035,544502629,1702132066,544497952,1936156018,1396929070,1734701626,1232219763,540093776,1126196841,168650819,1886218761,829452320,218762547,757938954,1917788205,1634625892,1763735922,1920234350,1769235317,539913839,1937066528,1868832884,1948279072,1701011826,218762542,829452298,168639026,544370441,1702132066,1920233504,1701993248,1915646823,824921158,154217565,1952805691,1852404512,761621607,1885697139,1685024032,151653733,1819042147,1853190688,1829308941,1679849071,1718561912,1952805734,1953392928,1735617841,168626701,757935419,1836008224,544108397,1953653104,544175136,1768843622,1965058163,168636016,1886390797,221918001,1835206922,1918574704,1767861877,744322158,168654948,1701734921,829452320,990447925,1931503209,543518063,1701344367,1852383346,1920099700,225734773,1869613322,2019762288,1778977293,544897123,1885302896,990447986,1885956979,1734701600,1702130537,1969496178,1763733613,1380982886,1836016416,1684955501,1879640589,543716213,168654947,1818321673,1969496172,1701998701]},{"sector":8,"length":512,"data":[168653671,1886351369,225993504,1869351178,1881174127,154415472,1633827593,1713400675,1830842991,224752239,1701972234,218762612,829452298,168639029,1886218761,1600484640,158625385,1919957769,544501353,1936942445,543516513,1970233953,1853169780,1701869669,1684370531,1953392928,1970434661,1629516912,1897948270,225732981,1879706890,1919967088,151653690,544238954,221343856,1762266378,1768252270,168639088,1059087977,168643920,1936028681,1650139252,1950438211,744321652,224931892,2053769482,858465312,1678313997,909516898,151587176,1668180283,1769170208,1852115469,224815460,1852377354,1769152611,1913195021,168653925,1684081165,1885955428,1762266426,1346314342,151653709,1953719668,1130519328,1953775955,875322738,168650800,544893449,168642112,942878217,151653686,2054582125,1634017400,2019634296,772344333,909652024,1678313997,909516898,151587176,1684300091,1769170208,2019648812,1077938701,1695157562,1718183022,1627982349,1931502692,2019634281,1913195021,168653925,758843917,1730161965,1701737573,543323256,1699160109,1701716084,1646294136,543519865,1763733097,1920234350,1769235317,1931505263,1634038388,168636013,757935419,1566923552,1025534323,1885955360,168626701,1853121895,1651800165,151653690,1752397168,225666080,1869416714,1935941750,1701993260,1915646823,224219971,543582474,223170623,1702103306,1663071347,1650145907,1950438211,744321652,224931892]},{"sector":9,"length":512,"data":[2053769482,858465312,1678313997,926294114,151587176,1685023803,1528849011,1567191909,1852115469,224815460,1869351178,224555876,1869613322,1935941744,1913195021,168653925,1696624752,225469550,1762266378,1380196454,1380275785,544302368,218762544,757938954,542187565,1835888483,543452769,1970348077,221148265,1896484106,1919950961,168649583,1718159885,1297104672,1829308941,1646294639,543519865,544371824,1836082267,1936286825,1701601889,744304939,1681590576,1818391401,1346642021,1746946381,225144687,1852377354,1650139235,1867018062,1177709423,990453853,1768912481,543236196,544695662,1802465128,1768453920,1948280172,1768780389,1769234798,168650606,1768189541,218762598,757938954,1633886253,1818583918,1768448800,1931961452,1869770784,1936942435,543582496,226061921,757938954,1752440877,1998615401,543976553,1886351972,544175136,1818322290,1685024045,1718165605,1650811936,1701275509,1936269413,544106784,1685024112,218762597,1633880330,1713400940,1835361650,168652133,758843917,1377840429,1869902693,1763730802,1919251566,1953527154,1667593760,1936879476,218762542,1869416714,1768169590,1717989164,544499059,1937010281,224753249,1869416714,1769152630,1717989164,544499059,1953787497,168649313,1987013897,746087200,1229804878,1481856078,1701710349,1852404856,168639092,1685023753,168649331,1987013897,745300512,168651873,1684300041,745108256,990447922,1885956979]}],[{"sector":1,"length":512,"data":[1936028192,1718558836,1414416672,1296389193,2013858317,543647843,1680632179,151653737,1935961964,151653751,544632685,1630304356,151653752,1935961964,151653751,1734894456,745108256,168651108,1886216969,745300512,224932402,2053769482,1919905312,1869902693,168650098,1684955401,746086688,168654945,544893449,1701998446,1919906931,151653733,1752397168,225666080,1869416714,1935941750,225993004,1869416714,1818304630,225206828,1869416714,1751195766,1748316716,1762200077,840987758,168650801,1886351369,225666080,1919905290,1869902693,221930866,1869351178,1847619695,1769240677,168653934,758843917,1377840429,1869902693,1948280178,1768780389,1769234798,1629515375,1701995620,221148019,151653642,544632685,1865181555,1702061670,1936728180,154284656,1936028219,1701998452,1919251488,1634625901,1852795252,1684300064,1936942450,1829308941,1679849071,1347693673,168646217,1987013897,168654707,1987013897,168654707,1987013897,745104416,1163018576,151606350,1936028219,1701998452,1347637280,543584032,1701994864,168653934,1987013897,168654707,1661536781,1528852589,1885957222,221260893,1701447946,224804896,1869416714,2019631222,808792108,168650800,1953392905,1747988768,1077938701,218762554,757938954,1699881005,2037148769,1852793888,1176514149,543976545,1869768820,543713141,1696624500,225732984,1896484106,1852121201,168652900,1768189541,218762598,1769497866,221919860]},{"sector":2,"length":512,"data":[1869416714,2019631222,811807788,151611440,1769304379,151653748,544501353,224932146,990514442,539831597,1663064146,1634561391,540697710,1734831988,1830839660,543515759,1377855087,1836016416,1684955501,909191200,544370464,1646277171,1914729577,1936287589,1936876916,218762537,544764426,1668248176,1812531725,1651729519,1661536781,543976545,1701537891,168651887,1886216969,1634556704,1852401763,858545509,1778977293,2020745314,1769497951,990514548,1987013897,745104416,1936090735,1814066277,1600482921,225736047,1869416714,1769152630,1717989164,544499059,1936156018,221657139,1633880330,1663069292,1937338479,1852404340,990453863,1043163507,168651108,1919907849,1836210976,1566925935,1598902828,1379285043,223561541,1869416714,2019631222,1847600940,990447911,577662754,1778977293,1075870318,151653702,544632685,657225825,153577062,1864514313,220358246,977289226,1929972237,2004053876,1829308941,1629517423,221260908,1953696010,224555887,1633880330,1881173100,1819505781,224751209,1601729034,1953069157,168639034,1952805385,2020739597,1684956448,218762608,757938954,1314005037,1836016416,1684955501,1768169530,1634496627,1346773113,1701978197,1953720679,544436837,543452769,1952543859,168653685,1852967437,1869770784,1762266467,1346773094,1414745940,151653714,544632685,1529637985,224225651,1851853066,1818304612,1431262252,1380274256,1661536781,1629515885,1378298988]},{"sector":3,"length":512,"data":[151653671,543518314,168642112,1668180233,225014560,977289226,1987013897,1852988192,1887007839,1630297445,1695157612,1718183022,1812531725,1651729519,1661536781,543976545,1701537891,168651887,1886216969,1634556704,945776739,757882167,151653681,1914725738,2019909496,168653929,1886218761,1836409888,1734701680,1431324275,1852967437,1684956448,218762608,757938954,542253101,1835888483,543452769,1768169517,1634496627,1919885433,1685024032,544826985,1768383858,1919251571,168636019,1920076301,1869770784,151653731,544238947,1126984801,151653714,543518314,151602752,1718172425,1701344288,1931961714,544104736,1969713761,1953391981,1778977293,1679847533,1919970677,225666917,977289226,1627982349,1629512814,1330916460,1162891349,151653714,544238947,657222753,168634200,543517193,168654962,1886216969,745300256,220679719,1701447946,225341984,543582474,1398295885,223367253,1835206922,1818304624,659367724,1778977293,1075864942,151653702,1935961964,151653730,1819042147,1802003232,225210213,1835206922,1750802544,1834972001,744323181,151653681,544894570,1700755570,225732984,1835665674,1969496176,1701998701,1296921447,1074400600,168639040,1768189541,218762598,757938954,1851858989,1684300064,1869182057,543973742,1768383858,1919251571,1918988320,1952804193,1998615141,1730179937,1852143209,168626701,1667589129,225014560,1869351178,225932132,1851853066,2019631204]},{"sector":4,"length":512,"data":[1431262252,1380274256,168646495,1987013897,745104416,1936090735,1914729573,1634625381,225666413,1869416714,2019762294,1297436204,1313293650,1397050689,1913195021,1701736549,1633907488,168654707,1987013897,746086944,168651108,1987013897,745104416,1936090735,1814066277,1600482921,225736047,1852442890,1920082021,151593010,543582523,544501614,1853189990,1852383332,1635021600,1918985326,1701978212,1953720679,1847620197,1936026977,1661536781,1629515885,1160195180,990447911,1768912481,1159864420,1948262995,1700929647,1970234912,1713398894,572551791,575230789,544370464,1347634466,151653666,543518314,168642112,1987013897,745300768,1567191899,1627982349,1663067246,1330916460,1162891349,151653714,544238947,657222755,151594825,1870029115,572548201,539120453,1646292852,1868963941,543452789,544370534,1230193954,151653666,1914725738,168637042,1886216969,745300768,153571367,1986083593,543451503,575882530,544175136,1713399138,1684960623,1919903264,1397039648,168632912,543517193,221409906,977289226,1869902601,151615347,1919957769,544501353,1768383858,1919251571,1835101728,151653733,544632685,657222753,168634144,1869902601,168649331,1987013897,746086944,729309787,1380799822,1095649093,710100301,1563569458,1661536781,543976545,1885956979,1835888483,990447969,1885956979,1768453920,1931502964,1701011824,151653747,544238947,1126984801,151653714,543518314]},{"sector":5,"length":512,"data":[1630630514,1765476617,1869488230,1852121204,1718558820,1852402720,151653733,1752397168,544760352,1933248777,543520353,1713404002,1814065775,1919251553,1829308941,1629517423,1650142328,168648056,1818321673,1701322860,1919907704,151653732,1819042147,1952802592,1701734764,990447920,1836020336,1713402992,1847620207,1981839205,1702194273,1879640589,1646293103,151653752,544238947,1126984801,151653714,1914725738,543306098,1765476617,1869488230,1634231072,543516526,1970365810,1684370025,1920076301,221929777,1633880330,1730178156,1870099557,168649842,1818321673,1751326828,1819239787,1698367753,1667592312,1852121204,1718558820,1852402720,1701322853,168650098,1987013897,2019711776,2019830877,1933248777,543520353,544695662,1970037110,1913261413,979513714,1913195021,168653925,758843917,1763716397,1953046643,1701344288,1814578720,695428961,1734701600,1702130537,168640370,1920076301,168639026,1886216969,745300256,220677671,1852442890,1920082021,151593014,543582523,544501614,220685863,1701054730,1769152611,1812531725,1651729519,1661536781,543976545,1885956979,1835888483,151653680,544238947,1126984801,151653714,543518314,540242546,1765476617,1869488230,1852121204,1718558820,1852402720,151653733,1819042147,1886217248,1734437990,151653747,1819042147,1952802592,1701734764,990447920,544499047,1970302569,1768693876,673211758,1852404597,1768693863,1868522862,1629516917]},{"sector":6,"length":512,"data":[1919950963,1953525103,1913261353,221918066,1835206922,1818304624,223494956,1701447946,829583904,151593058,1952805435,544109173,1679844969,224751215,1701054730,1769152611,1812531725,2004051055,1627982349,1629512814,1330916472,1162891349,223829842,1869416714,1768169590,1717989164,544499059,1852271718,225668449,1869416714,2019762294,221655340,1701972234,543518320,1935762291,151653751,543518314,1700754034,151614066,543582523,1830842222,1751348321,1661536781,1679847533,1718561897,1952805734,1735157280,1936617326,1778977293,1920082017,151587124,543582523,1915184503,1818435685,1769103717,168650606,1987013897,746086688,761881691,841823793,151653725,544501614,168654945,1684955401,1701993248,1915646823,744311878,168654945,1886218761,896692768,168626701,976515698,1829308941,1629517423,1683696760,842214761,224211501,1919879434,1701993248,1915646823,744311878,168654945,1920076301,168639029,1818321673,1802707052,1868787817,224488813,1835665674,1920082032,151593011,1701339963,1763732323,1869422694,168650098,758843917,1763716397,1936269428,1768255008,1919248500,758526240,544500066,1768383858,1919251571,1919905312,1701344288,1814578720,695428961,1734701600,1702130537,168636018,757935419,1701339936,1713400675,1981837935,1684630625,758264608,544500066,1768383858,1919251571,1835101728,168632677,1920076301,168639030,1886216969,1634556704,1852401763,858545509]},{"sector":7,"length":512,"data":[1778977293,1920082018,1920099679,1661536781,1629515885,1160195180,151653671,544894570,1700754034,168653426,1685023753,168649331,1684955401,745300256,1347768148,223495504,1835206922,1818304624,659760940,1681590537,1818325865,544698220,743654213,743654469,743654725,743654981,743655237,223564613,2053769482,1601335840,225604197,1668811018,1629513576,1751198828,1829308941,1663071855,1431186552,1195725389,1162690894,151653715,544632685,1865181540,1702061670,1701978228,1835101799,168653669,1885696521,1931502958,2004050275,1778977293,1914725742,1919246194,218762610,757938954,1953046573,544434464,1635131489,543451500,1647129139,1914729577,1936287589,544367988,1701667182,168626701,1987013897,746086944,168651108,1987013897,745104416,1936090735,1814066277,1600482921,225736047,1869416714,2036473974,1881171316,1528853108,744319332,220677415,1852377354,1768169571,1929972237,2004053876,1829308941,1629517423,539438188,151653671,1936684147,151653730,544632685,1529641058,1311471714,1163021653,1296125511,841634629,224211501,1633880330,1931504748,1668311403,1634561391,1933248777,544237931,1953065079,1886593125,1936024417,1661536781,1629515885,1380133996,1778977293,1914725742,1482764658,1765476617,1869488230,1852121204,1718558820,1852402720,151653733,1752397168,225993248,858654986,168638008,1987013897,2019648800,2019711788,224210987,942541066,221657136,1633880330]},{"sector":8,"length":512,"data":[1746955372,2003073125,224686703,1633880330,1730178156,1768715365,154166638,1919957769,1953525103,1919903264,2003136032,1818326560,168650101,1886351369,225993248,1835206922,1818304624,223494956,1701447946,829583904,151607394,543582523,1663070062,1735287144,1701978213,1919513969,168649829,1630630514,168639064,1937076233,2019696744,1661536781,543976545,1685349735,1685221239,1829308941,1663071855,2019699832,1879640589,1646293103,151653752,1819042147,1802003232,158101349,2019900169,1952671088,1684956448,543584032,1701734764,1919248416,151653733,544632685,729309787,1680629040,990447992,1702257011,2003136032,1818326560,168650101,1987013897,2019711776,744305195,151615587,1986097979,1701716069,1635131511,224753004,829583882,221927522,1701972234,1913261428,1852121202,168652900,1920076301,1920099679,151653690,543384932,151611763,1633827593,1965058915,1852776560,1700929637,1701998438,1634493984,1852401511,1851859047,1920099616,168653423,1869771365,976513650,1778977293,1663070317,1700750445,1919906418,168626701,757935419,1663062816,1634561391,757097582,1634038560,543712114,544370534,1953701985,1735289202,543584032,1702132066,168636019,1936919053,1919950963,168649583,1987013897,746086944,1734701659,1148333683,990469459,544499047,1918985587,1914726499,1701277281,2013858317,1663070831,2019765368,1661536781,543976545,1920230759,1701277281,990447960,544499047]},{"sector":9,"length":512,"data":[1919181921,544437093,1735287154,1852383333,1109421940,1160264280,777536553,978862638,1126778152,151653720,1819042147,1768649504,1836016496,168636525,1937076233,2019762280,1879640589,543716213,168654948,1818321673,1701257324,1920234356,1731922185,1931506789,1852404340,1718558823,1954112032,168653669,1886351369,225993760,1869613322,2019762288,1929972237,1663066741,2019830904,1664813321,540876920,1651340654,1864397413,2036473958,544433524,1931505257,1668440421,1634869352,543516526,1970170221,1852776563,151653733,543323507,1865181540,1702061670,1768693876,1868522862,990475381,1025534308,1836412448,544367970,1646290543,1936028793,544175136,1802465132,1919903264,1678313997,1679844197,151587177,538976315,1768759328,544437614,224751215,1970473226,2019762274,157901868,1970158345,1919246957,543584032,1936945008,1701601897,1936683040,1869182057,1864397678,1953701990,1735289202,1852402976,824210293,1778977293,1919230050,1785884530,990447924,1847617129,224751215,1633880330,1881173100,1752196466,158032737,1702050569,1886724212,1919903264,1701344288,1953392928,1970434661,1981838448,1869898597,1634214002,168651619,1852377403,2019762275,990447881,1025538147,1836412448,544367970,1881171567,1769173871,543517794,1769172848,1852795252,1718558835,1920234272,224882281,1668811018,1679845224,1768172664,1933248777,1142977637,1869881417,1717989152,225731955,1633880330,1679846508]}]],[[{"sector":1,"length":512,"data":[1667328111,990447979,544499059,1969382756,1701144423,1763734311,840987758,875704115,1936919053,154808691,990447881,757935420,1634038560,543712114,1954047342,1667460896,1852142197,168650083,1987013897,745760032,151615586,1952805691,1701344288,1734701856,1953391981,1829308941,1931507311,1718561897,1952805734,1852402720,1970233189,1933248884,540876905,1919181921,544437093,1931503215,1668440421,1953701992,1735289202,1812531725,1651729519,990447881,1936877926,1751326836,1667330657,544367988,1629515369,151653740,1852859762,1668489317,157447009,1869363977,1713400687,1713402479,1953722985,1954112032,151653733,1931502954,1597076339,151653681,1935762291,151587170,1970234171,1763734638,1480794222,1935767328,1953391392,168636717,1701734921,1936945952,990447923,1998612073,1701980005,1852793888,1930038629,1597076339,168639025,1937076233,2019762280,1879640589,543716213,168651108,1987013897,746087200,168654948,1885696521,1835212901,224555888,1869613322,1768169584,1778977293,1931502958,154301299,1718172425,1953459744,1970365728,168651873,1818321673,1853169772,1801675112,1933248777,1679848549,1735746149,661808487,1852383347,858923124,221524527,1970276618,1679845491,151653752,1734894456,745108256,151611748,1769109307,1629513076,1701995620,1914729331,1952999273,1952866592,1931506277,1668440421,1953701992,1735289202,1829308941,1629517423,2019699832,1661536781,543976545]},{"sector":2,"length":512,"data":[2004378984,157577839,540293897,1734701864,1953391981,151653673,544632685,657222753,168634170,1869902601,151609971,824916745,168637757,1634036745,746086688,761885531,168647985,1818321673,1701322860,1919907704,990447972,960312363,1718560800,1952805734,151653673,544632685,1277982817,539631686,540423474,1380130859,1929972237,2004053876,990447881,826094123,151653681,544632685,824997987,151653681,543253868,1529641060,825059684,168647985,1937076233,2019696744,1661536781,543976545,1868854387,151614581,1769109307,1948280180,1953701999,1953853284,1879640589,1646293103,151653752,544239472,168654948,1987013897,745104416,168651123,1818321673,1868832876,1801675112,1933248777,1679848549,1735746149,660956519,1852383347,858923124,221524527,1936945930,168639026,1886351369,225993504,1852377354,2019762275,1812531725,544239471,829649779,1731922185,1633820783,1713400675,1830842991,224752239,1936945930,168639027,1886218761,1752069408,158032737,1702050569,1701060724,1734833506,1931965029,1953392928,791884320,168637490,544437107,1885630053,168626701,1869444212,1881171300,224620402,1633880330,1931504748,1668311403,1634561391,1661536781,1629515885,1380133996,1778977293,1936269434,1701080941,225731943,1633880330,1730178156,1870099557,168649842,1886216969,746087456,151653681,1696620906,1919906418,168637546,1818321673,1751326828,1819239787,1698367753,1667592312]},{"sector":3,"length":512,"data":[1852121204,1718558820,1852402720,1701322853,168650098,1987013897,1836342048,1566925935,225207340,1762266378,1685024115,1952802661,990514490,1987013897,745104416,1936090735,1814066277,1600482921,158627183,541672507,1763734377,1769236846,2053729377,1998611557,543716457,1936287860,1818326560,168650101,1987013897,745108256,1936090735,1948284005,1701080941,151653747,544632685,1529637985,1685024116,168648037,1936028681,1818304628,168636716,1937076233,168650344,1684300041,745300256,220672039,1869416714,1935351926,1769155433,1718576506,1869444128,1567843684,225206572,1633880330,1663069292,1937338479,1852404340,990453863,1043163507,168651108,1987013897,745108256,1936090735,1948284005,1701080941,151653680,1718644592,1778977293,1178607738,1829308941,1931507311,1718561897,1952805734,1869444128,221341028,977289226,1661536781,543976545,2037411683,1769108595,153118574,761885499,225010750,1835665674,1970282608,1768715124,168650094,1869444212,1696621924,225469550,990514442,539831597,1868767316,1851878765,539828324,1667330644,168636005,1953761805,1869770784,151653731,544632685,1630300257,151653740,543452769,1412196449,1347441999,168645189,1886216969,745038112,220679463,2053769482,1836348448,157639791,1969896201,1763733613,1953046630,1948283687,1411409256,1868767309,1851878765,1946815844,221917300,1869416714,1817911414,1668576097,744318061,1936090735,1948284005]},{"sector":4,"length":512,"data":[168636532,1818321673,1634738284,1600484210,151614576,1869770811,1936942435,1735549216,1852140917,168653684,976319604,1879640589,543716213,168654947,1818321673,1920213100,828728161,1879640589,1663070319,151653752,1886351212,829715488,1913195021,168653925,1696625780,225469550,990514442,539831597,1667330676,1852776549,1852383333,1970435187,1869182051,218762606,1634890762,540108131,1668248176,1718159885,1297104672,1661536781,543976545,1668572519,1953784179,151653746,544632685,1396925019,1920234561,1818307677,1829308941,1646294639,1918577784,779315045,1565542770,1829308941,1629517423,1918577784,779315045,1565737842,1661536781,1646293101,1870081144,1881171058,1528853108,1768779876,1668571511,1563437928,1633893129,543712116,543516788,1953066601,543973737,1953068915,1948280931,1919950959,1667593327,543450484,1701080941,1778977293,1948285550,1701011826,221339441,1835206922,2019631216,1919907628,1953505380,1683693682,2003398000,1751348321,224211499,1852442890,1920213114,828728161,168636767,1886216969,1315068704,1869564015,1564881515,990457900,1920103779,544501349,1228559171,1936269392,1836082208,1852121193,226062964,2053769482,222707744,1869416714,1918574710,779315045,1565542770,1717989164,544499059,1885632877,1852139885,158954100,543582523,544501353,543712818,706769769,712273774,1869572128,224683371,1869416714,1918574710,779315045,1565737842,225665836]},{"sector":5,"length":512,"data":[977289226,1879640589,543716213,168653683,1886351369,158557472,1916471561,1663069813,543515759,1769238133,1163010156,168642132,1937076233,1935941736,1829308941,1646294639,1918577784,779315045,1565545330,1829308941,1679849071,1918577779,779315045,1565741938,1829308941,1931507311,1650142313,1563437944,1829308941,1646294639,1650142328,1563569016,1879640589,1679847535,151653747,1819042147,1869770784,1936942435,151653681,225731954,1634890762,1597072739,168639025,1768189541,151653734,544370552,1663858787,151653752,1819042147,1952802592,1768256355,1954112112,151653733,544238947,808217697,224937027,1852442890,1936269434,1952740467,1701011826,1762200077,1663066990,151653752,1819042147,1952802592,1768256355,1954112112,151653733,544238947,858549345,1778977293,1936269434,1952740467,1701011826,1946749453,544502629,1702132066,1920233504,1836342048,1566925935,153104684,1028478011,168640305,544893449,1667330676,1852399461,151653748,544238947,824994913,1778977293,1931508334,1601201524,225734249,1936943370,1920230516,979723105,1862863373,2036473970,1881171316,1528853108,1936156018,1279685166,744304939,1933248817,1931506789,1818717801,1953705317,1830842469,224748655,1870137610,2019762290,225993516,1633880330,1730178156,1935897701,1651534181,224752761,1970276618,1629513843,151653752,1819042147,1853190688,1879640589,1629515887,151653752,544238947,959212641,151611459]},{"sector":6,"length":512,"data":[1935767355,1668312864,543515759,1213420880,222240838,1852442890,1178607738,1661536781,543976545,1634036835,1718902642,1936617311,1801675124,1077938701,151653690,544238947,1853190747,1953392991,1718561885,1952805734,1953392928,1735617841,1778977293,1953767525,221339441,1835665674,1702174832,1953392991,1765476617,1869815910,1864394093,1919248500,1953392928,1970434661,168653936,1597076596,168639025,1886218761,1836409888,1734701680,218762611,1629502218,1313415278,1936269396,544175136,1881171298,1701015410,1684370291,1297360928,544434464,168634672,1869881403,1870029088,1948279913,1847616872,2037674849,909670432,1735746080,1768453920,1830840419,1936026465,1163020576,990514516,1969316640,1629513075,1650811936,1696622453,1885692792,1852795252,1763717408,1920234350,1769235317,1948282479,1814065007,224752737,1629502218,1701995040,1869638497,544501353,1931506537,1646294117,1852401765,1752440932,1313415269,218762580,1763719946,1752440934,1852383333,1769414772,1948281964,1768780389,1702125934,1701344288,1650811936,1701275509,1764237413,840987758,539781169,876439649,220817475,1763719946,1936269428,1886218528,1635021423,1948284014,544498024,543516788,1634038370,1768910955,1998615662,1948741231,543515168,1953719666,1684370031,218762529,1634890762,1767859555,221934702,1869416714,2019762294,168636972,1818321673,1936269420,1953067639,1818386789,1702060901,990474345,1663071081]},{"sector":7,"length":512,"data":[1701999221,1126200430,1346976339,544106784,1062031186,1778977293,1936269411,1952740467,1701011826,1950025993,544105832,1931505508,1684955508,543453793,1667330676,151653733,544632685,1529641058,1936156018,1396929070,1762266461,1346314342,151653709,1953719668,1130519328,1953775955,875322738,168650800,544893449,221457188,1650723082,1748383264,1869429513,1936007286,2003053673,543453807,544371824,1734701659,1232219763,168648016,1768189541,151653734,544632685,1529637235,1936156018,1346990638,1762266461,1346314342,151653709,606108266,168637227,543319049,157824566,1684300091,1769170208,168636972,1768189541,151653734,543450209,841771379,1661536781,543976545,1668248176,829649765,1933248777,1109423205,1952522320,978862624,1395213608,1851859017,1970413668,1701060718,1734833506,168650085,1952805385,168626701,757935419,1920295712,1953391986,1936615712,1668641396,1852795252,544434464,743722569,541938720,824210281,1769152556,1701603182,1702130477,1852383344,1948282740,1763730792,1919251566,1953527154,1279336492,1953392957,218762531,1702130442,1852399472,168639092,1987013897,745300512,168651873,1059087977,168643920,1818321673,1936269420,168652144,2054056457,1702130464,1852399472,1836081012,1852115469,224815460,1869416714,1751261302,168636460,1937076233,1935941736,2013858317,1629516399,2019634296,1829308941,1679849071,2019634291,1929972237,1646292072,154217592]},{"sector":8,"length":512,"data":[1953708809,941652321,540424240,1886220131,1651078241,1763730796,1701978222,1831693409,560292975,1929972237,1646292072,221326456,1818429706,151653737,544433260,1529637235,808155234,151653725,544632685,1529637985,224225651,1870137610,2036473970,1881171316,1528853108,744319347,1749435952,1661536781,1629515885,1935354988,168648041,1987013897,1769167648,1818307677,1929972237,168651124,544893449,1869771625,151653741,544632685,1680636002,151653747,544239472,168653668,1818321673,1919950956,1936024431,168636787,1952805385,1936263693,980250482,1829308941,538998383,1680636001,151653747,544239472,225666080,1668811018,1931503464,1918577769,779315045,1565542770,2013858317,543647843,1529641057,1936156018,1396929070,151653725,544632685,746087200,1734701659,1181888115,168648012,1937076233,1935941736,1829308941,538998383,1529641058,1936156018,1347645998,151653725,544632685,745759776,1734701659,1399991923,990469459,1819635045,543519841,1226862177,168645710,1651864329,2019696672,168637996,1668180233,1769152544,990447904,1885956979,1414416672,225998880,1852377354,1931485283,151653737,544632685,2019711776,744304683,168651123,1987013897,1650139168,1563569016,225993004,1869416714,1528832118,875264098,2019765341,1879640589,538996847,168653668,1987013897,1918574624,779315045,1565545330,225993260,1851853066,1646272612,543519865,544371824,1734701659,1181888115]},{"sector":9,"length":512,"data":[1563503436,1128673324,1664819304,1918985580,541477152,1179918379,1778977293,538996845,1597076596,1762266417,1346314342,1930038605,1601201524,1601465961,221932912,1869416714,1629495414,808594552,168650804,1953392905,825434144,990447976,544499047,1952671094,1763734127,1480794222,692398138,168646724,1987013897,2019696672,225993516,1702103306,1646294131,154414188,1936276233,544500000,1145839713,1702043732,1952671084,222261871,1852442890,1075847290,151653702,544238954,1936943392,1920230516,224748385,977289226,1929972237,1885698665,153118322,1869429513,1936007286,1684352105,151653752,544632685,745108256,168654948,1818321673,1919950956,1936024431,168636787,1952805385,1852115469,224815460,1946815754,1701011826,1852121137,168652900,758843917,1948265773,544502629,1830839913,1919905125,1952522361,978535200,1346973509,1851876128,543515168,1953067639,544105844,168652660,757935419,1952805408,544109173,1718165571,1953459744,758843917,1226845485,1126185550,1718566232,1952805734,1919903264,692398112,168644681,1936263693,1953067639,1818386789,1702060901,1881174121,224620402,1633880330,1730178156,1935897701,1651534181,157643897,1952802619,1954112032,1953505381,1952522354,978535200,726681925,168646723,1987013897,745038112,168651873,1919907849,745300256,1749435952,1661536781,543976545,1668572531,1885955443,1702132066,1778977293,1869488227,1769109364,1650550132]}],[{"sector":1,"length":512,"data":[168650092,1818321673,1701257324,1702060916,2036494441,168650100,1886216969,745038112,151612513,544434491,1377858665,222252367,2053769482,1953459744,1953067639,1818386789,151653733,544632685,1630301281,151653736,1819042147,1952805664,1768256355,1954112112,151653733,224619619,1701972234,1846152564,1920431215,1634038889,979725410,1929972237,168649588,1952805385,1936263693,1953067639,1818386789,1702060901,1696624745,225469550,990514442,539831597,1634036835,1179918450,544106784,543516788,2037411683,543584032,1734437990,1701978227,1953720679,1864397413,544175214,543516788,1667331187,218762603,1701602058,1952412257,1852792678,1667331187,1919950955,168649583,1937076233,1936007272,1829308941,1696626287,1918577779,779315045,1565741938,1718159885,1297104672,1829308941,1646294639,1936010360,1661536781,543976545,1937007975,1952541797,168653428,544893449,168642112,942878217,151653686,544632685,746087013,1919907684,1953505380,1918574706,779315045,1565545330,1627982349,1646290030,543519865,544371824,1530557285,729309797,1848401201,824210543,1778977293,1663070317,1601400692,151653681,942684206,1074400566,168639040,1768189541,151653734,544632685,1529641058,1936156018,1347645998,151653725,543452769,1702132066,1920233504,980641056,729309787,1848401201,824210543,1952647693,828339055,151653690,544239472,168653669,1952805385,1818429965,1601331557,1868523124]},{"sector":2,"length":512,"data":[1635021678,1696623459,225469550,990514442,539831597,1868767317,1851878765,539828324,1634953572,1835365235,778398818,168626701,1881175413,224620402,1869416714,1817911414,1668576097,744318061,1936090735,1814066277,1970565985,151653749,544238947,1126984801,151653714,543518314,540112245,1765476617,1851859046,1684300064,1936942450,1935767328,1986619168,168652389,1953718636,221934965,543582474,223170623,1633880330,1730178156,1935897701,1920234593,1829308941,1528854127,1095975778,1567782004,225206572,2053769482,1601533216,151653680,909652782,1829308941,1696626287,1680636004,1685221239,1920233504,1601526560,1919181921,151653725,544632685,746087269,225993829,1684080906,1667571812,1177627768,151653736,543387242,168642112,1987013897,2019779872,221326636,977289226,1762200077,1696621422,168654947,1597207925,221917747,1970276618,1696622707,168654947,1937076233,1684349032,151653752,1819042147,1936286752,829256545,1879640589,1696624751,168654946,1886351369,2019779872,1829308941,1696626287,1680636001,1685221239,1920233504,1601526560,1919181921,151653725,544632685,746087525,225993061,1970473226,1634017378,1667574904,990447992,1920103779,544501349,1769172848,1852795252,1696607520,168649838,1651864329,2019714336,2019779884,1882917129,1769366898,544437615,1769172848,1852795252,1696607520,168649838,1886216969,2019648800,2019714348,1778977293,1965056622,861877109]},{"sector":3,"length":512,"data":[990447922,1998612073,1634213989,661546358,1701978228,1701340001,1752440932,1869029477,168651873,1952805385,772344333,909652024,1970604557,221917279,1684956426,168650345,1987013897,746087456,1685221239,1920233504,1601526560,1919181921,151653725,544632685,1680636003,151653752,543450209,824997987,168650854,1668180489,846558496,990447904,1847617129,1986994287,1818653285,168654703,1987013897,746087200,168636717,1886218761,846558496,168626701,976319861,1829308941,1663071855,808594552,990447976,1634100580,544500853,1735288172,168650868,1987013897,746086944,1734701659,1131556467,168648019,1818321673,1701257324,1851880052,156788071,1701264137,1684086900,1936028260,1634869363,543516526,1869901417,980967968,1680434472,151653752,1819042147,1802003232,158101349,2019900169,1952671088,1684956448,543584032,1701734764,1919248416,151653733,1702521203,1483108976,1832585481,1528854127,1684103029,808153700,1684352093,151653752,544632685,1633645915,728917092,1680629040,151653752,544632685,1633645915,728917092,1647074612,218762616,757938954,1950425133,1768453152,1869619315,745827945,544760608,1684828008,1752440947,1634476133,1629516915,1701995620,539784051,543452769,1948285028,1629513064,1701995620,221148019,1963592970,221917813,1852377354,2019762275,1970604557,168639027,1937076233,2019762280,1879640589,543716213,168654948,1818321673,1768169580,1836278131]},{"sector":4,"length":512,"data":[990447921,1763733348,151653748,544239472,168654946,1886351369,225993504,1869416714,2019631222,1601526572,1919181921,151653725,544632685,1630304356,151653752,543323507,1663858785,990447992,1920103779,544501349,1769172848,1852795252,1696607520,168649838,1651864329,746086944,151615587,1701998651,1970235766,1869619315,1769236851,757100143,1684956448,1661536781,1629515885,2019699832,1778977293,1965056622,153105269,1718172425,543520544,1702257000,544483182,1667327346,543450472,543516788,1818324839,1913195021,168653925,1696626037,225469550,1812598026,1684759407,1702259058,151653690,1752397168,225992992,1970276618,1646291059,151653752,1752397168,225993504,1970276618,1679845491,151653752,544632685,808220771,1749103672,1869351437,1969187683,1668246638,168639083,1987013897,745300512,168651873,1668180233,225993248,1869416714,1751261302,168636460,1987013897,746087456,825241648,151653736,544632685,875329633,1749299252,1762200077,840987758,168650801,1886351369,225993760,1869613322,2019762288,1879640589,1646293103,151653752,544239472,168654945,1952805385,1853164045,1801678700,1986622052,168639077,1937076233,2019631208,1879640589,543716213,168654946,1937076233,2019762280,1879640589,543716213,168654948,1987013897,746087200,1094072368,151653736,544238954,1801678700,1819178335,225141615,990514442,539831597,1868767318,1851878765,539828324,2003134838]},{"sector":5,"length":512,"data":[1768711712,218762608,544634378,1668248176,1661536781,1528852589,1885957222,221260893,1701447946,224804896,1869416714,2019631222,808792108,168650800,1953392905,1747988768,1829308941,1629517423,808463464,151653736,544501353,224933425,1869416714,2019631222,808792108,168650801,1953392905,1747988768,1077938701,151653690,225731954,544634378,1885630053,168626701,757935419,1663063840,1634561391,757097582,1769109280,1629513076,1869770784,1835102823,1919885356,1936286752,1702043755,1919906915,1948265587,1768169583,221145971,1997147402,1919950967,168649583,1818321673,1634738284,1818588018,990447991,1936875888,541859941,543452769,1918967895,1701672295,1713402990,1634562671,1864900724,540701813,674920546,2019830117,1684300093,1936942450,151653673,1998617194,1702127986,1818846815,990447973,1914725993,1702195557,1948284019,1920409711,543519849,1701603686,1718159885,1297104672,1718159885,1162825248,1313166424,223495492,1633880330,1763732588,225276019,2053769482,222707744,1633880330,1763732588,1954047347,1701080677,1635148146,1650551913,990471532,1881173609,1702129522,1684370531,1685024045,1142959205,1948275535,1936613746,1769234796,1847619183,1701078373,151653732,543387242,168642112,1886218761,1685024288,2019914607,1936615796,1074400628,168639040,1768189541,1695157606,1718183022,1661536781,1663070317,1968913011,1634755955,1952803683,221391965,1651116298,813135648]},{"sector":6,"length":512,"data":[168636767,1987013897,745301024,151612513,809320763,826098220,842875692,774778412,1829308941,1931507311,808856681,157823280,1920416521,744846441,1936941344,543518069,1701603686,1952539680,151653729,543387241,151612516,1027685129,1027746865,1027812402,774777907,151653678,1819042147,1668246560,1769104491,168650102,1987013897,746086688,892351287,990447976,674911044,1480730949,540945696,1801675120,168653925,1668576009,1762200077,840987758,153118769,1937062665,1852383333,825368692,1701322856,539780466,544501614,1668509540,225209441,1970276618,224815219,1633880330,1965059180,1668246638,1769104491,168650102,1886351369,151653734,544238954,1597011831,1997147442,828321911,151653690,544501353,224933426,813135626,221917791,1869416714,2019827830,1717989164,544499059,1953067639,224882281,829912842,151599674,1010501897,539831597,1920233061,1919295609,1814064495,151653740,544632685,1932294242,990447987,1953719666,543519343,1835492723,544501349,1768383858,1919251571,151653747,544632685,1647080292,151653752,544632685,1529639027,1601204084,224227443,1869416714,1936007286,225993260,1852442890,2004295779,151593011,543582523,1696624494,1919906418,1661536781,1629515885,1664101484,151653736,543515242,151602752,1718172425,544106784,1735287154,151653733,544632685,808217697,168650851,221921344,1650657546,151653751,544632685,1630300531,151653752]},{"sector":7,"length":512,"data":[544632685,1529637985,1680566643,1919249267,224228210,1869416714,1769152630,1717989164,544499059,1701540708,221278834,1684080906,1769152612,225993004,1869416714,1768169590,1717989164,544499059,1701734764,1953853279,1661536781,543976545,2037411683,1769108595,153118574,761885499,225010750,1869416714,1769152630,225993772,1633880330,1663069292,1937338479,1852404340,990453863,1043163507,168651108,1987013897,745108256,1936090735,1679848549,1702259058,1661536781,543976545,2037411683,1769108595,153118574,761885499,225010750,1633880330,1881173100,1819505781,224751209,863467274,151653690,544238954,1818520931,158363503,1633893129,544483182,544499058,1633903970,543519605,1667331187,1936269419,1869772576,168650606,1696626551,225469550,990514442,539831597,1953067607,1869881445,1818846752,538979941,1936877894,1751326836,543908709,543516788,1701603686,1954047264,1769172581,221146735,757938954,1769152557,1864394106,1768300646,1763730796,1852383347,1768710944,661941861,1480728691,743981882,758843917,1679830317,1969317477,1931506796,1953653108,1684300064,1936942450,544434464,825905988,224931888,1997147402,1702127986,1818846815,1919950949,168649583,1142974057,1163282770,151653714,544238954,1600417123,1869771365,1695157618,224752492,1869416714,1818304630,1768315692,2019911020,990469492,544499047,1734437990,1718558835,1818846752,2019893349,1936614772,225341289]},{"sector":8,"length":512,"data":[1702103306,1629516915,1480928364,1480941396,151653701,1075870314,151587142,543582523,544501614,222648389,1869416714,2019827830,1717989164,544499059,1702326126,168650104,1886218761,913798944,1077938701,151653690,544238947,808217697,1778977293,1998617198,153106295,1718172425,1954047264,1769172581,1696624239,1953720696,151653747,544632685,1865185380,1702061670,1869488244,1835101798,1997147493,221918839,1835665674,1852383344,1630614132,168638824,758843917,1176513837,543517801,1702131813,1869181806,1936269422,994791200,1769109280,1763730804,538979956,1936877894,1663052916,1952540018,1752440933,1768300645,221144428,1997147402,221919095,543582474,223170623,1633880330,1763732588,225276019,2053769482,222707744,1869416714,2019827830,1717989164,544499059,1937010542,158363765,1851876155,1920409716,543519849,1763734633,1919950958,1667593327,761554292,1701080941,1778977293,1763733613,825390190,221866081,977289226,1852115469,224815460,1869416714,1885479030,1717989164,544499059,1701734764,1953853279,1661536781,1679847533,1714433128,168650853,543320585,151602752,1718172425,544760864,1701191740,224931888,1970473226,1751392354,1701195820,990447976,757102692,2016419901,808478054,1627982349,1646290020,1714433144,224931941,977289226,1829308941,1528854127,824930402,1680629040,990447992,1702257011,2003790880,1881174629,544502369,1629513327,1701995620,1763734387]},{"sector":9,"length":512,"data":[1768693870,1868522862,824931445,151653680,544632685,1647077747,990447992,1701867637,1634738290,1730180210,544433519,1869901417,225014560,1869416714,1751195766,1751331628,1664813321,1952540018,1768300645,168650092,1919907849,746087200,151615587,544173627,1920234593,1953849961,168653669,1987013897,746087456,222385220,1633880330,1679846508,1633907567,168651884,543386121,1700753257,1919906418,1765476617,1919230054,225603442,1970276618,1629513843,151593080,1986097979,1768300645,1746953580,1818521185,218762597,757938954,1917853741,544501353,1936942445,543516513,1970233953,1920409716,1852404841,168636007,1829308941,1679849071,1718561912,1952805734,1836545824,221341555,1633880330,1763732588,825390190,154757217,1919957769,544501353,1769108595,168650606,1987013897,746086688,1734701659,1114779251,168648024,1886216969,746086688,224931889,1651116298,155598880,1765476617,1869488230,1869881460,1634476143,224749426,1870137610,2019631218,158884140,1869888265,1634476143,979724146,1702502432,1763733362,1970217076,1074400628,168639040,1987013897,1885494048,744306731,168654945,544370441,1630304353,151653752,1075870314,151653702,1819042147,2019911712,157448558,1868774153,1919252078,1869881460,2019911712,1684955424,1769107488,168653934,221921344,1869416714,2019631222,1701993260,1915646823,224221251,1869416714,1650139254,1563831152,225993004,1633880330,1746955372]}]],[[{"sector":1,"length":512,"data":[1870100581,168649842,1818321673,1970282604,151614324,1769107515,1931506798,224754281,1869416714,2019827830,1717989164,544499059,1936553847,168637031,1818321673,1852383340,1630614132,151599464,1769107515,1931506798,1852404340,218762599,757938954,1867391021,1920409719,543519849,543516788,1701603686,1394614318,543521385,1634559346,1852403305,1936269415,544106784,1701734764,1953853279,221132331,151653642,544239472,151615586,1701985033,1702260579,1768300658,1746953580,1818521185,151653733,544632685,1529641060,824930402,151608624,1684300091,1936942450,544175136,1953067639,1919295589,1763732847,1769152627,225993786,829912842,168639025,1987013897,746086688,811951664,168650800,1651864329,746086688,168654948,1886216969,1954112032,1953505381,1650139250,1563962224,168636460,2054056457,155598880,1765476617,1869422694,1948280178,544104808,811951664,1646290992,1936028793,1835364896,1768843617,168650606,1886216969,746086688,728785499,168647990,543320585,151602752,1768176393,225408116,1869416714,2019631222,1885494060,224212523,977289226,2013858317,543647843,1663858785,990447992,544632685,1630304355,151653752,544632685,1932292964,151653737,544632685,875325537,151611440,1769109307,1948280180,1768300655,168650092,1953392905,1748054560,990447904,543519605,743722569,1953459744,1936679968,1819042147,1879640589,543716213,153121651,1701985033,1919906931]},{"sector":2,"length":512,"data":[1396973669,1879640589,1679847535,151653747,544238947,1663858785,151653752,543518314,858879863,1765476617,1768169574,1713400691,225209461,1870137610,2019827826,158884908,1701722889,1948284024,543518057,1953067639,1919295589,2015391087,980973688,151653680,543450209,808216947,1748002150,1966803209,1952539760,1702043749,1852140903,1869619316,1702129257,151653746,543323507,728785499,1663851830,151653752,1718116716,1929972237,1646289506,543519865,544371824,728785499,808213816,1778977293,1998617198,154218871,1718172425,1919905056,1869881445,225404704,1634928906,168650344,2054056457,829912864,990447921,1953786212,151653743,544238954,875657079,1681590537,224751215,1997147402,976433527,1829308941,1679849071,1718561912,1952805734,1936286752,1819633259,1661536781,543976545,846491241,963141937,1882917129,1953393010,1920234272,224882281,1869416714,1751195766,1748055084,1966803209,1852402798,1768300651,168650092,1987013897,746087456,222385220,1633880330,1679846508,1633907567,168651884,758843917,1126182189,1702063980,1701344288,1818846752,168636005,2004290061,221918257,1869416714,1751195766,1751462700,1664813321,1702063980,1818846752,151653733,544501353,224932146,1701972234,1695157620,1718183022,1920403981,1600484457,1701603686,1684956448,218762608,757938954,1917132845,544370546,1852141679,543649385,1701603686,1411391534,544434536,1629516649,544174956]},{"sector":3,"length":512,"data":[1819042147,1646290021,1752440953,1869357157,1663067233,1634561391,221144174,1762266378,1919246191,980578162,1661536781,1629515885,221391992,1869416714,2019827830,1717989164,544499059,1702063972,154301042,1818838587,1869488229,1868963956,224685685,1701447946,222707744,1835206922,2019631216,168637228,1987013897,746087456,1936090735,1679848549,1919251311,990458738,1752457552,1953459744,1970234912,168649838,543517193,168642112,1886216969,746086688,151653685,544632685,1865185380,1702061670,1868832884,1920099699,1094388021,1936024419,1701060723,1684367726,1778977293,1178607717,1661536781,1629515885,221785208,1869416714,2019827830,1717989164,544499059,1702063972,154694258,1936607547,1768318581,1852139875,1701650548,2037542765,1778977293,1178607717,1829308941,1679849071,1718561897,1952805734,1701867296,1920099694,151653681,1819042147,2019911712,1685221239,1829308941,1679849071,1718561912,1952805734,1701867296,1920099694,1917139721,544370546,1600085855,1701867296,1735289198,1818846752,1074400613,168639040,846491241,963141937,151653690,544632685,959211617,1778977293,1679847533,1633907567,168651884,1718159885,1397572896,222580035,990514442,539831597,1868767320,1851878765,757101412,1851878688,1819635817,543519841,542330181,1869440365,221149554,990514442,539831597,757088600,1819033888,1952539503,1296375909,168635987,1635256845,1869770784,151653731,1819042147]},{"sector":4,"length":512,"data":[1936549152,225142883,1633880330,1931504748,1668311403,1634561391,1661536781,543976545,2004116839,157577839,1701264137,1918967924,1701672295,1763734638,544175214,168646724,1818321673,1751326828,1819239787,1698367753,1667592312,1852121204,1718558820,1852402720,1701322853,168650098,1987013897,746086944,168654948,1987013897,745038112,157823796,1818311433,1633906540,1746953588,1818521185,151653733,543452769,1647081570,151653752,544894570,168642112,1987013897,746086688,808476981,990447976,543519605,542330181,540028468,1936876918,544108393,1629515636,1668246636,543519841,1634738224,225666407,977289226,1661536781,543976545,1668509029,225209441,1970276618,1679845491,151653752,544632685,1865181555,1702061670,1635262580,225668705,1633880330,1663069292,1937338479,1852404340,151653735,544239472,168654945,1818321673,1701322860,1919907704,151653732,544238954,1937012080,1701734764,1882917129,1953393010,1920234272,543649385,543452769,1970562418,168652402,1696620920,225469550,990514442,539831597,757089368,1634026528,1668246636,543519841,542330181,1684955496,221144428,2013924618,1919950948,168649583,1818321673,1835343980,1802003315,1661536781,543976545,1885956979,1835888483,151653729,1819042147,1952802592,1685221239,1731922185,1629516901,1836410738,544501349,1869901417,223888416,1633880330,1663069292,1868917608,990447980,1701869669,1696625763,1864393838]},{"sector":5,"length":512,"data":[1768693862,1746953582,224752229,1869416714,1751195766,1748317228,1681590537,1819042149,1952539503,1634213989,1701602414,1661536781,543976545,1668509029,225209441,1869416714,1769152630,1717989164,544499059,1851876472,151653747,1819042147,1886348064,1920234361,224882281,1835665674,1970282608,1768715124,151610734,1769107515,1931506798,1852404340,1851859047,1701978212,1852994932,1685588493,1684956448,218762608,757938954,542646317,1852399981,1936286752,1668571504,225600872,2013924618,1919950968,168649583,544370441,1412197473,1464814671,168645189,1886216969,745300256,220684583,1701447946,157382688,1765476617,1096294502,1836016416,1684955501,1661536781,1629515885,1680288876,151653671,2015389034,151587172,543582523,1663059032,1634561391,168649838,1886216969,745300256,220688935,1701447946,158496800,1765476617,1381507174,1836016416,1684955501,1661536781,1629515885,1831283820,151653671,2015389034,151587181,543582523,1663061336,1634561391,168649838,1886216969,745300256,220689191,1701447946,158562336,1765476617,1398284390,1836016416,1684955501,1778977293,1663070317,1700750445,1919906418,2021132813,1684956448,218762608,757938954,1381507117,1377840416,1819042149,1952539503,1296375909,1634213971,1701602414,218762542,544372746,1668248176,1661536781,543976545,1668509029,168651624,1818321673,1802707052,1868787817,224488813,1633880330,1730178156,1870099557,151610482]},{"sector":6,"length":512,"data":[1952802619,1851877408,543517796,1969713761,1953391981,1953392928,1480859759,1829308941,1646294639,2019830904,1661536781,543976545,1885956979,1835888483,151653729,1819042147,1952802592,1685221239,1731922185,1663071333,1953396079,1735549216,1852140917,1852383348,1142976372,151653720,1819042147,1802003232,158101349,2019900169,1952671088,1684956448,543584032,1701734764,1919248416,151653733,1734894456,746086944,168654948,1987013897,745038112,157823285,1701985033,1869376609,1702125923,1851877408,224750692,1633880330,1696623724,1633907565,168651884,1987013897,745108256,1936090735,2015392869,1936613732,1661536781,543976545,2037411683,1769108595,168650606,1987013897,1954112032,1953505381,1683693682,825306473,1915169885,151653671,544238954,1937012080,1701734764,1882917129,1953393010,1920234272,543649385,543452769,1970562418,168652402,1696625272,225469550,990514442,539831597,757091672,1885424928,1397572896,1835363616,544830063,1881173876,1769175400,543973731,1701273968,218762542,544045066,1668248176,1661536781,543976545,1668509029,168651624,1818321673,1802707052,1868787817,224488813,1633880330,1730178156,1870099557,151610482,1952802619,1735355424,1818321769,1734438944,151653733,544632685,1680636002,990447992,1702257011,544500000,1109421673,151653720,1819042147,1768649504,1836016496,168636525,1818321673,1701257324,1954112116,990447973,544499047,1937336432]},{"sector":7,"length":512,"data":[1818321769,1734438944,1143480421,168634700,1937076233,2019827816,1661536781,543976545,1885956979,1835888483,151653680,1819042147,1952802592,1685221239,1731922185,1746957413,1818521185,1852383333,1142976372,151653720,1819042147,1802003232,158101349,2019900169,1952671088,1684956448,543584032,1701734764,1879640589,1629515887,151587192,1667592763,1919252079,2036887584,1633905011,1634738284,1763730791,544175214,168643649,1937076233,2019631208,1829308941,1629517423,875834472,990447976,544235885,1869440365,168655218,1818321673,1835343980,1818321779,151653740,544632685,1865181555,1702061670,1836589172,225668705,1633880330,1663069292,1937338479,1852404340,151653735,544632685,1680633954,151653737,544632685,1865181540,1702061670,1768693876,1868522862,723547253,1634564128,1885303662,221344623,1668811018,1629513576,2019699832,1832585481,1629517423,1818373228,1661536781,543976545,1652057448,224752761,1869416714,1768169590,1717989164,544499059,1701734764,1953853279,2015374112,1936613741,1936683103,151653682,544239472,168654945,1818321673,1701322860,1954112120,151653733,544632685,1647077732,151653744,544238954,1937012080,1701734764,1882917129,1953393010,1920234272,543649385,543452769,1970562418,168652402,1696623992,225469550,990514442,539831597,757093208,1769099296,1159754862,1931498317,1970561396,168636019,1937246733,1869770784,151653731,1819042147,1936549152]},{"sector":8,"length":512,"data":[225142883,1869351178,224555876,1633880330,1663069292,1868917608,990447980,1629515630,1836410738,1937010277,1819042080,1684371311,168626701,538976315,1852404304,1970217076,1752440948,1634738277,1713399143,1701667186,1684300064,1936942450,218762542,1869416714,1751195766,1748055084,1731922185,1881175141,543516513,1835102822,1684086885,1936028260,151653747,1819042147,1936549152,1819042147,1829308941,1931507311,1718561897,1952805734,1936947232,221278836,1633880330,1663069292,1937338479,1852404340,151653735,1734894456,746086688,151615586,1987013947,746086688,168654946,1818321673,1701322860,1919907704,151653732,1819042147,1953853472,1852402803,218762597,538983178,1769099296,1864397934,1948284021,1746953576,1818521185,1629516645,1746953326,1818521185,1769152613,779314554,1750343712,1663071081,1646292577,1868832869,1696621934,1701344361,990514546,1646272544,1920213113,1735289209,1819042080,1936683040,1818388851,1634213989,1701602414,1919885427,1952802592,1735289204,1746952480,1818521185,1635000421,778398818,540740109,1750343712,1634476133,1919251572,544434464,1717924464,1650553445,539780460,1763731049,1768300660,1763734388,1701650542,2037542765,218762542,1869416714,1751195766,1751266348,1731922185,1746957413,1818521185,1868767333,225734261,1633880330,1696623724,1633907565,168651884,1886216969,746086944,1701978152,1700752481,757097582,1852402720,1970233189,539566196]},{"sector":9,"length":512,"data":[221519919,1651116298,1937252453,151593011,543582523,1663067511,1679847009,1953046639,544825888,1953785191,543649385,543516788,1818386804,218762597,1870137610,2019827826,158884908,1953708809,544502369,1684955496,168650092,1954047342,980182120,1829308941,1629517423,1664363624,990447976,544499047,1684955496,1881171308,1936025441,1762200077,908096622,153118775,1868839689,544483182,543519605,1668509029,745303137,1768453152,1969627251,1769235310,1830841967,1713404257,560752993,1661536781,1629515885,859319400,151653736,2015389034,151597683,1718172425,544173600,1751348595,1851877408,224750692,1919879434,745038112,168650849,544893449,168642112,1886218761,1936549152,1920099679,1765476617,1953439846,544367976,1869771365,1074400626,168639040,1751349257,2019631207,158884396,1869429513,2019631222,225993260,1633880330,1746955372,1936483438,225931112,846428170,151653690,543387241,151612516,1852128009,1718558820,1869573152,151653744,544894570,1954047342,158098536,1718172425,1919905056,1869881445,543515168,1701736292,168626701,1886218761,896759840,990447904,1701736292,1953068832,1752440936,1881174889,225735265,990514442,539831597,544499015,543516788,1868983913,1952542066,544108393,1948282473,1819632225,1713402465,778924655,168626701,976450424,1829308941,1629517423,1681140840,990447976,544499047,543976545,1684955496,1881171308,1936025441,1829308941]}],[{"sector":1,"length":512,"data":[1679849071,1718561897,1952805734,1852402720,1970233189,151653748,1819042147,1936549152,1819042147,1627982349,1646290030,2019699832,1778977293,1937252474,151653685,544632685,1680632179,1074400617,168639040,1685023753,168654707,1751349257,2019631207,225993772,1869351178,225932132,1633880330,1746955372,1936483438,225931112,1701054730,2019696739,1778977293,1075870318,151587138,543582523,1701998445,544175136,168652647,1937246733,168639029,1987013897,745104416,1936090735,1814066277,1600482921,158627183,1634492987,1814063982,224751209,1633880330,1881173100,1819505781,157642345,1919957769,544501353,1769108595,168650606,540740109,1699618848,1881175160,1953393010,1701344288,1885433120,1818386800,1752178789,1667855225,1629514849,1701995620,1629516659,2036429426,990514478,1411391520,1931502952,543521385,1948280431,1629513064,2036429426,1869116192,1852075125,1646294055,543236197,1651470960,778921324,168626701,1919907849,746087200,151615587,1919253051,2019762287,544106784,1702060387,543584032,542330181,221392435,1869416714,2019631222,808989996,151611440,1952802619,1885433120,1818386800,1752178789,1667855225,1629514849,1701995620,1629516659,2036429426,1829308941,1679849071,1718561897,1952805734,1852402720,1970233189,1631258996,1701995620,1948283763,1970282607,1918967924,226058610,1852377354,926294132,151593064,1852793915,1965061159,1696621939,1633907565,539782252]},{"sector":2,"length":512,"data":[1936287860,1853187616,1869182051,1634541678,1634082937,220294249,1869416714,1769152630,1717989164,544499059,1869509496,225666928,1667893514,2015394424,151598963,542068283,1886413165,1701601889,1734438944,168653669,2013858317,1646293615,2019699832,1829308941,1931507311,1768172649,1937246733,168639030,1937076233,2019696744,1879640589,543716213,168654947,1685023753,168654707,1987013897,745104416,1936090735,2015392869,1920234355,168649266,1818321673,1701322860,1919907704,151653732,1935961964,151653751,544632685,1865181540,1702061670,1937252468,846361715,151653729,1819042147,2019911712,1702132066,1829308941,1679849071,1718561912,1952805734,1936947232,221409908,1869416714,2019762294,2053731116,1937268581,846361715,1627982349,1663067236,2019699832,1661536781,543976545,1868854387,151614581,1769107515,1931506798,1852404340,151653735,544239472,151615587,1852128009,1718558820,1869573152,151653744,544239472,168654946,1919907849,746086944,990447922,543450209,1179406915,1702257952,1864399218,1919248500,1852402720,151653733,1886351212,913537056,1829308941,1931507311,1718561897,1952805734,1668511776,157707378,1634492987,1814063982,224751209,1970473226,1769152610,158884396,2019900169,543257204,1179406915,543582496,543450223,1853189987,2013924724,221919091,1869416714,1768169590,1717989164,544499059,1701734764,1953853279,1661536781,543976545,2037411683,1769108595]},{"sector":3,"length":512,"data":[168650606,1818321673,1970282604,151614324,1769107515,1931506798,1852404340,218762599,757938954,1766203437,1819042158,1881156729,1953393010,1701344288,1836409632,1952541813,543520361,1635020660,221148012,151653642,544632685,875325537,151611442,1952802619,1634628896,1668246636,1684370529,1734438944,1868767333,225734261,1633880330,1696623724,1633907565,168651884,1987013897,746086688,151615588,1953461307,1881173089,1936025441,1635148064,1650551913,168650092,1651864329,746086688,151615586,1836412475,544367970,1881171567,1936025441,1819042080,1952539503,168649829,1987013897,746086944,1936090735,2015392869,1920234355,168650608,1818321673,1970479212,1869116269,990447991,1852404336,1752440948,1768693861,168650094,1987013897,745038112,157835828,1701264137,1634214004,1701602414,1970234144,168653934,1818321673,1835343980,1818321779,151653740,1752397168,225993248,990514442,539831597,544830068,542330181,540028468,1668183398,1852795252,808727840,1948280882,1701257327,1869881460,543973748,1651340654,1864397413,1634213990,1701602414,218762611,1869416714,2019631222,808727852,168650802,1953392905,1748448800,990447904,661548900,1937055860,1835343973,1818321779,1948265580,544434536,1668183398,1852795252,2036428064,1767990816,168632684,1987013897,746087456,168654946,544370441,1630300257,151653736,1075870314,151653702,544632685,808220772,157836902,1869888265]},{"sector":4,"length":512,"data":[543973748,1651340654,1864397413,1634213990,1701602414,1074400627,168639040,1886351369,225992992,1869416714,2019696758,1717989164,544499059,1953723256,224684146,1835665674,1970479216,1869116269,990447991,1852404336,1752440948,1768693861,1629513070,1914725486,1920300133,2013924718,1852121203,168652900,758843917,1126182189,543976545,223563077,1695157514,1633907565,1881173100,224620402,543582474,223170623,1633880330,1763732588,225276019,2053769482,1936549152,225276511,841877770,168638008,1986947337,543517551,1668574825,745303137,1748448800,1935876140,1936743226,1734501488,151653725,544238954,1601400165,1819042147,1852793951,151653733,942684206,1695157558,1918858093,168639085,1768189541,151653734,544501353,224933686,1936549130,1818321759,1868849004,221930862,1919879434,745038112,151611489,1920099643,222261871,1852442890,1835343994,1919246195,151653746,158623090,1916471561,1920300133,1718165614,223039264,1936549130,1819042147,1684956448,218762608,757938954,1296375853,1919230035,544370546,1092644457,218762568,1936549130,1920099679,1869770784,151653731,544632685,1630301281,151653736,544238947,942435425,168650850,543648265,151602752,1718172425,1953853216,543584032,1735287154,151653733,225927779,1869416714,2019696758,225993004,1752369418,2019696748,168636716,1987013897,745108256,1936549211,1936880229,808464683,2019699560,151653725,1931506287]},{"sector":5,"length":512,"data":[1769155689,1778977293,1696627310,1700754285,154235506,1718172425,1701344288,1931961714,1998610720,543453807,1919248500,1074400613,168639040,1987013897,745104416,1936090735,1696625765,1919251309,224491634,1633880330,1746955372,2036496485,168650100,1987013897,745108256,1936090735,1696625765,1919251309,168654962,1601400165,829583973,168639034,1987013897,745104416,1936090735,1814066277,1600482921,225736047,1633880330,1663069292,1937338479,1852404340,990453863,1043163507,168651108,1818321673,1970282604,1768715124,168650094,1886218761,1684890400,1886351212,1835338253,1919246195,1852121202,168652900,758843917,1126182189,1801676136,1919903264,1397572896,168626701,1668509029,1881172840,224620402,543582474,223170623,1633880330,1763732588,225276019,2053769482,1936549152,829122659,1829308941,1646294639,926297196,151653736,544632685,808220769,1747988530,1762200077,857764974,168650801,1987013897,746086688,168654947,544370441,1680636001,151653752,1696627306,845899875,1778977293,1696624749,1751348077,168637035,1668509029,976317288,1852115469,224815460,1970276618,1696622707,151653747,544632685,858552417,1748448821,1731922185,1763734629,1919251566,1953527154,1667593760,544370548,224933686,1852377354,825368692,151653736,544632685,1697413217,151653747,544239472,168653669,544370441,1647081569,151653752,1696627306,845899875,1835338253,1802003315,168639026]},{"sector":6,"length":512,"data":[1987013897,745038112,157824564,1701264137,1702240372,1869181810,151653742,544501353,543700790,1681590537,1948741231,1702065440,1936549152,1819042147,1752440876,1713402729,1952673397,544108393,544825709,1818845542,151653665,1629516399,1751198824,1778977293,1696627310,845899875,1913195021,168653925,1802003301,168639026,1987013897,745108256,1936090735,1696625765,1869509485,151653748,544238954,1601400165,829583973,1835338253,1802003315,1684956448,218762608,538983178,1145980960,1330139980,539828311,1852404304,1398284404,1852402720,1768366181,1735289206,1701344288,1851877408,543517796,543452769,1701273968,1818304627,1633906540,778331508,221973005,538983178,1953383712,538999154,542655520,1684955464,168650092,538970427,1480663072,1836404256,544367970,1881171567,1936025441,540740109,2017796128,538997865,1766596640,1881171310,1953393010,168649829,538976315,1936028501,538976288,539777089,539777091,168642884,1852312077,1752394852,1881175919,224620402,1869416714,1768169590,1717989164,544499059,1953723256,224538994,1633880330,1746955372,1870100581,168649842,1987013897,746086688,168654948,1987013897,745104416,1936090735,2015392869,1920234355,168649009,1818321673,1701322860,1919907704,151653732,1752397168,225993760,1869416714,2019827830,1717989164,544499059,1953723256,168636786,1987013897,746087200,1702521203,1936947295,221344372,1970276618,1646291059]},{"sector":7,"length":512,"data":[151653752,1819042147,1685353248,225736047,1869613322,2019696752,1879640589,1679847535,151653752,225731954,1684957194,1869116268,1852121207,168652900,540740109,1431511072,1330139981,539828311,1852404304,1970479220,1918987629,1768693881,1713399150,1478521455,1868767315,1851878765,168636004,990514491,1159733280,2037544046,1092624416,1968054360,1919246957,543584032,2021161080,1948283687,544498024,1702257000,1701143072,1937055854,168649829,538970427,1480859680,1953453088,1847618657,1700949365,1718558834,2021160992,225650552,537475850,1109401632,1632510040,1864394093,2021138534,168654968,538976315,1953069125,538976288,1769108563,1881171822,1953393010,168649829,538976315,1936028501,538976288,539777089,539777091,539777092,168642884,1970473485,1869116269,1919950967,168649583,1987013897,745104416,1936090735,1814066277,1600482921,225736047,1633880330,1746955372,1870100581,168649842,1987013897,745108256,1936090735,2015392869,1920234355,151653683,1819042147,1886348064,1920234361,224882281,1668811018,1629513576,2019830904,1832585481,1629517423,2019830904,1661536781,543976545,2004378984,224686703,1869416714,1769152630,225993260,1633880330,1663069292,1937338479,1852404340,151653735,544632685,1865181555,1702061670,1937252468,863138931,151653729,1819042147,1886348064,1920234361,224882281,1835665674,1970282608,1768715124,168650094,1936553331,544698216,1885630053]},{"sector":8,"length":512,"data":[168626701,1768189541,1161502822,1296257869,218762564,757938954,1380327469,1162691909,539828301,1668178275,1663069285,1684826472,1869770784,1936942435,168626701,1701147238,544040301,1668248176,1829308941,1528854127,1936156018,1396929070,1935879261,1829308941,1528854127,1936156018,1346990638,1718561885,1952805734,1769497888,1762266484,1346314342,151653709,544370552,1630304353,151653752,544632685,1734701659,1232219763,1563568976,225993004,1869416714,1918574710,779315045,726684530,1630297394,1695157624,1718183022,1829308941,1528854127,1936156018,1397977646,1936927837,1879640589,543716213,168654945,1987013897,1701993248,1915646823,744312915,990474355,1702257011,762344224,151653682,544239472,168654945,1818321673,1970413676,151653742,225731954,1701996042,1835363685,1684956448,218762608,757938954,1752440877,1763734377,1633886323,1684368492,544825888,1853190690,990514466,539831597,661548900,1937055860,1313415269,1763734356,1684632430,990514533,539831597,544499059,1969382756,1701144423,1226863399,840979534,875704115,168626701,1769235827,858944622,1881158706,224620402,1869416714,1769152630,1717989164,544499059,846099826,221524531,543582474,223170623,1633880330,1763732588,225276019,1852442890,1769152634,875705138,168652144,1768189541,151653734,1752397168,225666336,151653642,544370552,1680632164,151653737,544632685,1680634725,151653737,544632685]},{"sector":9,"length":512,"data":[841771364,875194419,1829308941,2004055663,1829308941,2004055663,1829308941,2004055663,1829308941,2004055663,168626701,1059087977,168643920,1818321673,1869095020,1714580335,1852115469,224815460,151653642,544239472,168653669,1952805385,1718159885,1297104672,1769146893,875705138,221932912,1869416714,2019696758,842149932,168650803,221921344,1769146634,1919968634,151593062,1987013947,2019845408,1769167660,224210987,1869416714,2019827830,1769167660,224210987,1869416714,2019762294,1769167660,224212011,1869416714,2019631222,808595500,168650805,1953392905,1748054816,1627982349,1931502692,221654121,1852377354,1818370147,1678313997,1646289765,151653736,544894570,168641088,1952805385,1852115469,224815460,1952805642,846491241,540291635,1885630053,168626701,757935419,1768444960,1936269427,1701344288,1970237984,1701734772,1634235424,1953702004,1937011297,544240928,543516788,1852732786,543649385,1735357040,778920306,168626701,544109938,1668248176,1661536781,543976545,1702126963,990447985,544499059,1161450307,542132527,656437108,1629497149,1701995620,168653683,1987013897,746086944,1886613595,1566925412,1661536781,543976545,1886676339,151613555,1952805691,1650811936,1701275509,544417637,223368016,1633880330,1931504748,1852404837,842216052,990453812,544499059,1969382756,1701144423,1763734311,840987758,875704115,1661536781,1528852589,1885957222,221260893]}]],[[{"sector":1,"length":512,"data":[1701447946,224804896,1869416714,2019631222,808792108,168650800,1953392905,1747988768,1077938701,218762554,1869416714,1918574710,1935634037,1932287344,990453872,1702257011,1635021600,1881172835,1953067887,225341289,1970473226,1886593122,1886608172,1969906785,224228467,543582474,1447645764,1696617029,221257841,1869416714,1935941750,1347640122,1565933907,225473324,1684956426,168650345,1768710921,1829308941,1931507311,1718561904,1952805734,1734701600,151653747,544238947,1667329371,1701734760,221457501,1651116298,862940704,168638008,942878217,151653686,1634758512,151653732,544632685,1529639782,1936156018,1397125678,151653725,544632685,1529639783,1936156018,1397191214,151653725,544238954,1684107116,1936156019,772344333,909652024,1869482509,976631859,1879640589,1679847535,151653737,544239472,151611763,1802713865,1746956393,1684349033,151653737,544239472,168651123,1886351369,158360096,1933248777,544237931,1696622952,168651123,1886351369,225468960,1684080906,1886593124,151598636,1768649531,1768431728,1885496608,1936028203,1702261349,151653732,544239472,168654946,1886351369,158884896,1933248777,544237931,1696622952,168654946,1886351369,225993760,1869613322,2019762288,990447881,1885956979,543778848,225993829,1869613322,2019762288,1879640589,1629515887,151587192,1768649531,1768431728,2019779872,1879640589,1629515887,151653752,543450209,841773171]},{"sector":2,"length":512,"data":[1933248777,544237931,1696622952,168654945,1684107116,1936156019,151653690,544239472,151614309,1702116105,1919905901,544830049,1684107116,542327840,1970037110,1852383333,1159753588,1948786771,1634541679,1931502955,543519349,1763734633,1635131507,694446444,1879640589,1696624751,151587187,2003791419,1634692128,1752440932,1920213093,1981834613,1702194273,1919903264,223560992,1869613322,1936924784,1634732557,1600676724,1937141613,1634476144,543974754,1702132066,1882917129,1751348321,1953068832,1160978536,1026039912,691688260,543582496,542462019,942874684,151653686,908092004,151611446,1869429513,1936007286,1918577776,779315045,1565545330,1829308941,1931507311,1918577776,779315045,1565545330,1701985033,1919906931,1919950949,1634887535,1953701997,225141601,1869416714,1650139254,1648651849,808213863,1929972237,1885698665,153118322,1970289417,1679845491,1685221239,1920233504,1701993248,1915646823,224218182,1970276618,1528850547,1936156018,1279685166,151653725,1702521203,543584880,1882917129,543716213,1919907684,1953505380,1918574706,779315045,1565737842,1879640589,543716213,1734701659,1131556467,168648019,2053731081,1718775909,990447904,1752397168,1870095392,1881171058,1528853108,1936156018,1346990638,151653725,1752397168,1701993248,1915646823,224219209,1702103306,1646294131,543519865,544371824,1734701659,1181888115,1563503436,990458412,1931494985,222262373]},{"sector":3,"length":512,"data":[1869416714,1935941750,1701993260,1915646823,224219972,2053769482,222707744,1953696010,151587177,1902473787,1701996917,1868963940,1769087090,540239726,1953460848,1702126437,1869422692,1763730788,1330192486,1027427408,1074400560,168639040,1668571504,1919508328,1814066277,1818583649,1954112032,151653733,908092004,151611446,1634745097,543712116,1752459639,1749435168,1228744736,693388626,543582496,542462019,942874684,151653686,1952805481,990447881,1886221674,544175136,1735357040,225272178,1853190666,1684956448,218762608,757938954,1701060653,1734833506,1931965029,1953392928,1748120096,1919952928,1634887535,1702109293,1852403058,1869182049,1746938222,1818521185,221147749,757938954,1752440877,660959845,1869488243,1701146144,1869881444,1701998624,1987208563,1701978213,1953720679,779317861,168626701,846491241,168639026,1768710921,1829308941,1663071855,1918581363,1767861877,744322158,1936090735,1881175141,1952935794,991980914,1701668210,1919246957,1953392928,1970434661,1948284016,224751737,1869416714,1935876214,1634491194,1835234419,1865178468,1702061670,1835278452,1684890489,1829308941,1629517423,1935879288,1829308941,1931507311,2019634291,1829308941,1679849071,2019634291,1778977293,1763733613,1953657966,151597422,1836411451,1869881456,1734701600,1702130537,1634934898,1735289206,1970237984,1701734772,1869817888,1864397938,168634726,758843917,1226845485,1919251566]},{"sector":4,"length":512,"data":[1953527154,673198112,1769367908,1696621924,1919906418,1634213929,1701602414,168636018,1852377613,808481396,151653690,544632685,1530557283,1601074546,1567911529,1717989164,544499059,812936809,543650669,1835364923,1700949349,1852383346,1920099700,544501877,1701869940,1778977293,1763733613,1953657966,990447982,1886221674,544175136,1768383858,1919251571,1986097952,543649385,1953853298,224751209,990514442,539831597,1702129225,1886745202,540090484,1852404520,761621607,1885697139,1953392928,1970434661,539587696,1684955496,779249004,168626701,1920233065,221917488,1869416714,1935876214,1970428730,1852399470,1865178484,1702061670,1852383348,1936535924,1916477543,1835363685,544367970,1702129257,1886745202,2037653620,168650096,1886218761,1953392928,158233714,1969896201,1948282989,1701978223,1953720679,1931506277,1852405345,1869750375,1852404853,218762597,543582474,1129595203,1414416712,168638000,1920233065,221918768,1869416714,1935876214,1970428730,1852399470,1865178484,1702061670,2019893364,1832267875,168650611,1886218761,1953392928,225342578,1684956426,168650345,1718159885,1413563168,1313425475,222507092,1953451530,1232237903,1127249006,151653690,544238954,1530557283,1768189039,224215856,1953392906,977481842,1879640589,543716213,168654945,1987013897,745300256,1749168160,1731922185,1226863717,1830834771,543912801,1836020326,1128878112,1862863373,840987765]},{"sector":5,"length":512,"data":[539781168,168651873,544106761,539782241,224931890,1702103306,1629516915,824192108,151611440,1364347195,1764237364,807433326,539584579,1969447791,1063544178,1879640589,1629515887,151653752,544894570,1333030734,1850307189,222507124,1869416714,1935876214,1970428730,1852399470,1865178484,1702061670,2019893364,1833119843,168650611,1886218761,1953392928,225342578,1684956426,168650345,1718159885,1413563168,1313425475,222572628,1953451530,1232237903,1144026222,151653690,544238954,1530557283,1768189039,224216112,1953392906,977547378,1879640589,543716213,168654945,1987013897,745300256,1749168160,1731922185,1226863717,1830834771,543912801,1836020326,1128878112,1862863373,840987765,539781168,168651873,544106761,539782241,224931890,1702103306,1629516915,840969324,151611440,1364347195,1764237365,807433326,539584580,1969447791,1063544178,1879640589,1629515887,151653752,544894570,1333030734,1850307189,222572660,543582474,223170623,1835206922,1935876208,1231182650,1734493294,221260893,2053769482,222707744,1970276618,1663068275,151653747,544239472,168653683,1987013897,745567008,1530557283,1601204084,224227443,1835665674,1702174832,1953392991,1074400632,168639040,1768189541,151653734,544632685,1530557283,1601074546,1567911529,1717989164,544499059,811825253,1735617860,1778977293,1763733613,1953657966,1695157614,1718183022,168626701,757935419,1953384736]},{"sector":6,"length":512,"data":[1970434661,857764976,1919035424,1886085477,1953393007,1953392928,1970434661,539587696,1684955496,779249004,168626701,1920233065,221918000,1869416714,1935876214,1970428730,1852399470,1865178484,1702061670,1852383348,1936536436,1916477543,1835363685,544367970,1702129257,1886745202,2037653620,168650096,758843917,1126182189,1869442415,1852383342,1920099700,544501877,1953853298,778399337,168626701,757935419,1970227232,1701537139,1852403813,168636007,1852377613,1853125236,1869770784,151653731,157903971,1782253833,544502645,1663069801,224752481,1869613322,1935876208,1701993274,1915646823,157110345,1667592763,1919252079,1768453152,544434030,1836020326,1635021600,168651619,1886351369,980640544,1734701659,1131556467,168648019,1886351369,980640544,1734701659,1181888115,168648012,1987013897,980640544,1734701659,1399991923,1932287315,1933248883,543520353,1667331187,1869619307,1769236851,168652399,2053731081,1718775909,990447904,544632685,1530557283,1936156018,1347645998,1936010333,151653744,544632685,1530557283,1936156018,1347645998,1886596189,1829308941,1931507311,1935879280,1832585481,1931507311,1935879283,1829308941,1931507311,1886596211,1829308941,1931507311,1718561904,1952805734,1734701600,1399991923,1762266451,1953657966,976892526,990447881,757935420,1953391904,1881176434,1702129522,1684370531,1685024045,151653733,1752397168,225666336,1970276618,1679845491]},{"sector":7,"length":512,"data":[151653747,1752397168,225669920,1869613322,1935941744,1661536781,1528852589,1751343469,1566928489,168637228,543320585,168642112,942878217,151653686,544632685,1734701659,1181888115,1714183507,151653747,544632685,1734701659,1198665331,1730960723,218762611,757938954,1701978157,1915646823,875252036,544434464,1919907684,1818304612,1701734249,1931488356,1464082543,541348431,1752397168,1918967923,1634934885,1746953574,224752229,151653642,1752397168,168649830,1886351369,151587174,1768649531,1867260016,1685221207,1279673640,151653673,544239472,1685221239,1920233504,1701993248,1915646823,841698374,218762589,1970276618,807430259,1879640589,1718121333,1879640589,1684435055,990447881,1634036835,1766334578,1685221207,1279673640,1852383273,1701079411,1650811936,1701275509,1915232370,1952805733,1128341619,1634493984,168634727,1879640589,1634235253,151653732,544238954,1920233065,221343348,942541066,221657136,977289226,1879640589,543716213,168654945,1937076233,2019631208,1879640589,543716213,168654947,1937076233,2019762280,1879640589,543716213,168654948,1937076233,2019827816,1879640589,543716213,168654946,1937076233,2019696744,1929972237,1931502197,221654128,1970276618,1646291059,151653744,1752397168,225014560,1970276618,1931503731,151653737,1752397168,225010720,1970276618,1679845491,1762266473,1953657966,976892270,990447881,757935420,1953391904,1713404274]},{"sector":8,"length":512,"data":[1763734127,840987758,218762546,1869416714,1886593142,1970428716,1886609262,990453853,1953719666,543519343,1852732786,543649385,1667331187,151653739,157576291,1664813321,1918985580,1919509536,1769235301,1713401455,224878956,1953696010,151587177,1953392955,1970434661,544437360,1801675106,225341216,1762266378,1346314342,151653709,544632685,824997985,1748383798,1634732557,1600676724,1768779876,1714579807,1650551840,1998613605,157577839,1952542779,1998612579,543716457,1934643022,543582496,1329864764,221454419,1852377354,1177690228,151653736,544238947,824997985,1929972237,1629512290,2019634296,1829308941,1528854127,1936156018,2004053294,2019634269,808467209,1916612656,762077541,1701080941,1179000876,1883063878,1702129522,1684370531,1685024045,1695157605,1718183022,168626701,1818321673,1701257324,1886613620,1829308941,1528854127,1685091184,744318306,168654946,1818321673,1701257324,1953393012,875705138,1933248800,543520353,1969382756,1701144423,1763734311,840987758,875704115,1702043692,1701060724,1734833506,1931965029,1953392928,791884320,168637490,1879640589,543716213,168653668,1886351369,225666336,1633880330,1931504748,1936749669,1734501488,1933248777,1679848549,1735746149,661808487,1397760115,151653712,543452769,1702132066,1920233504,1701993248,1915646823,824921158,1869491293,540090484,1701602107,1931506273,1818717801,1953705317,1763733605,1919251566]},{"sector":9,"length":512,"data":[1953527154,168626701,1987013897,1231182624,1734493294,221326429,1835206922,1717248112,1567648108,168636460,543517193,168650304,1987013897,746086688,825242928,151653736,544501353,224931889,977289226,1661536781,1528852589,1601074546,1567911529,1717989164,544499059,1735357040,225276532,1852442890,1178607738,1829308941,1629517423,1681140840,151653736,544501353,224932146,1869416714,1768169590,1717989164,544499059,1735357040,1953069157,1661536781,543976545,2004378984,224686703,977289226,1913195021,168653925,1852377613,1853125236,1684956448,218762608,757938954,1752440877,1763734377,1869357171,1701588343,745301366,1818321696,543450476,1696624239,2037544046,1953392928,1752440943,1701060709,1734833506,221147749,757938954,1752440877,1701060709,1734833506,1931961701,1734701600,1702130537,1746957170,543520353,1701997665,544826465,1852138850,1986097952,1746953317,778400357,758843917,824192301,1701257262,1701060724,1734833506,1931961701,1953392928,1970434661,1981838448,1869898597,840987506,875704115,758843917,840969517,1702043694,1701060724,1734833506,1931965029,1953392928,1970434661,1981838448,1869898597,840987506,875704115,758843917,1142959405,1701068115,1734833506,1931965029,1734701856,1953391981,758843917,1159736621,1853177171,1768318308,744777070,1818851104,1700929644,1685024032,1701406313,990514532,539831597,544501321,543699250,1970235507,1847616620]}],[{"sector":1,"length":512,"data":[1646294127,1937055845,1746953317,560296549,168626701,1769235815,858944622,1881158706,224620402,1869416714,1768169590,1717989164,544499059,846099826,221524531,543582474,223170623,1633880330,1763732588,225276019,1852442890,1701257338,1953393012,875705138,168652144,1768189541,218762598,1970276618,1679845491,151653747,544239472,168653669,1919907849,745108256,168651123,1987013897,745759776,168651123,1987013897,745108256,711471922,151653684,1752397168,225014560,1869416714,158823286,1933248777,543520353,1702129257,1886745202,1702240372,1919906915,1748185632,1829308941,2004055663,1829308941,2004055663,990447881,1702257011,1953392928,1970434661,1981838448,1869898597,875700338,151653736,1937141613,151653751,544239472,168651108,1937076233,1936007272,1879640589,1679847535,1762266483,1380196454,1380275785,544302368,151587120,1701344315,1769104416,544367990,1936876918,544108393,544432488,1344302958,1629507667,758128756,1747988529,2013858317,1931506287,1769155689,1829308941,1696626287,1769155699,1829308941,1931507311,1128475753,151606857,1987013947,1919295589,1679846767,1735746149,661808487,1397760115,1869881424,1414940960,1829308941,2004055663,1829308941,2004055663,1829308941,2004055663,1829308941,2004055663,1852115469,224815460,1701972234,1762266484,1346314342,1728712013,1852404837,842216052,980250676,168626701,942812681,151653686,544632685,808220770]},{"sector":2,"length":512,"data":[1748185650,1077938701,151653690,544632685,808220769,1748250674,1762200077,857764974,168650801,2053731081,1718775909,990447904,544632685,728327259,1697406256,168654948,1987013897,1768184608,744304683,168654948,1987013897,1768184608,744305707,168654947,1684300041,745104416,151653686,543387241,168651874,1667589129,224944672,1852442890,1111498874,168626701,1685349747,843671394,976499251,151587130,757939259,1852121133,226062964,1769146634,1919968634,151593062,1937076283,224682344,1970276618,224487539,1769146634,1919968634,151593062,1919907899,2019845408,2019845420,2013858317,1679848047,2019830904,1829308941,1931507311,1718561897,1952805734,1734501408,875705138,1829308941,1646294639,842017912,224932658,977289226,1812531725,2004051055,1829308941,1679849071,2019634296,1829308941,1663071855,1935879288,1829308941,1629517423,842017912,224933168,1852377354,825434228,151653736,543387241,168651874,1667589129,224944672,1852442890,1111498874,1929972237,1885698665,153118322,1869626121,224682352,1869613322,168649072,1952805385,772344333,909652024,168626701,1768189541,218762598,1952802570,846491241,540291635,1885630053,168626701,538976315,543516756,1954047342,1919448096,1931502949,1869767285,1852404853,1663071077,1701015151,1948282482,1746953576,1818521185,543649385,1226860143,840979534,1851858995,875700324,990514478,1411391520,1702061416,1953392928]},{"sector":3,"length":512,"data":[1970434661,1981838448,1869898597,1629516658,1931502962,1684371041,1684955424,1936028192,1701998452,1752637540,1914728037,1768844917,1948280686,168650088,538976315,1818847331,1919950948,1936024431,1646275699,1629516917,1847616882,1629516911,1986622563,1752637541,1142976101,1196769861,1937008928,543583333,1914729321,1768844917,221144942,538983178,544491808,1931506537,1819044212,1702065440,543978854,544370534,543516788,1735357040,1835884914,1948283493,1700929647,1818386720,1869881445,1701339936,1998613347,1701995880,1414416672,221458976,538983178,1684955424,540291616,1852403568,1931488372,1752440943,543519589,1970037110,1629516645,1663067506,1701408879,1852383332,1948282740,1763730792,1919251566,1953527154,1650553888,168650092,538976315,1769108836,1881171822,1937011297,543584032,543516788,1679830115,744824876,539782432,543452769,1868767347,1851878765,539784036,1948282739,544498024,2036689012,1886413088,225599845,538983178,544175136,1763730786,1717903470,1952671078,1411391534,1696621928,1836016416,1684955501,1936482592,1868767343,1936025968,1701344288,1981834611,1702194273,1633820787,221145955,538983178,1952793120,1852138871,1818321696,1948283756,1868832879,1801675112,1684955424,1752069408,745235297,1701344288,1931502962,1819635560,1700929636,544173600,1819042147,1869881459,1397703712,990514476,1931485216,1752440943,1948284001,1701995880,544434464,1881173870]},{"sector":4,"length":512,"data":[1769173871,1768712546,1864399220,1752440934,543519589,1952671094,544436847,1852400994,1937055847,1998611557,225338728,538983178,1701344288,1768448800,1881171052,1701015410,1763734387,1869488243,1970413684,1852403310,168636007,540740109,1380982816,1095258181,757091139,1952797472,544240928,544370534,1702129257,1886745202,1702240372,1919906915,1651864352,1953068147,1869182069,168636014,538976315,1702257011,1920295712,1953391986,1818326560,1864394101,1850286182,858923124,540291631,1650811944,1701275509,695412594,544175136,1702257011,875705138,540740109,1850023968,544830068,1397039136,1126186272,218762579,1701998602,1667328112,1919950955,168649583,1886216969,1634229024,1635021675,808213876,1778977293,1075870318,151587142,543582523,1801675112,1635021600,544437620,1869771365,151653746,1752397168,225010720,1869416714,1768169590,1717989164,544499059,846618995,154415667,1650811963,1701275509,544417650,846491209,221524531,1633880330,1881173100,1634231666,168636779,1886351369,225010720,1701972234,1074400628,168639040,1937076233,2019631208,1879640589,543716213,168654948,1987013897,746087456,1936090735,1881175141,1936547688,658180455,1869771365,1852383346,1902474016,1668179317,1718558821,1818321696,1948283756,1634213999,220687203,1633880330,1763732588,825390190,154757217,1919957769,544501353,1769108595,168650606,1886351369,225993760,1869613322,2019631216]},{"sector":5,"length":512,"data":[1913195021,168653925,1885696624,1801675112,1684956448,218762608,757938954,1701257261,1969430644,1852142194,1852383348,858923124,741618223,1869902624,1948280178,544040296,1159754849,1229208147,758843917,1142959405,1936269385,1953064224,544367976,846618995,540291635,1650811944,1701275509,695412594,544370464,846099826,540291635,1650811944,1701275509,695412581,168626701,1751478896,976317281,1718159885,1297104672,1661536781,543976545,1836086121,1778977293,1881176686,1634231666,1836081003,1849362697,1768453231,1948280686,1868832879,1852115469,224815460,1970276618,1679845491,151653747,1752397168,225014560,1870137610,1769152626,225014572,1869416714,1935941750,225014572,1869416714,1769152630,841626668,168650803,1987013897,168654707,1987013897,168654707,1987013897,168654707,1987013897,168654707,1886351369,225014560,1869613322,1935941744,1919945229,1801545829,980250719,1913195021,168653925,1329793549,542397262,1835492723,225734245,1600679946,157774701,656433764,1702129225,1818324594,1920099616,740782703,1277973059,606547014,1124732199,1414745679,1684956448,218762611,538983178,1213154336,541803329,1702043693,1701060724,1734833506,1931961701,1953392928,791884320,168637490,538976315,1095257685,757091139,1952805664,1650811936,1701275509,544417650,544501353,841954098,990514484,661932297,1263476851,544175136,1696624484,1701344361,1718558834,1701344288]},{"sector":6,"length":512,"data":[1948280179,1701013879,544106784,1869750369,168636023,1850280251,1918988320,1969449332,745693548,1701344288,661858080,1836016416,1684955501,2036428064,544171040,1634233973,1948281699,1701013879,544106784,1869750369,168636023,538976315,1920233029,538976377,1025528644,1650811936,1701275509,544417650,1835492723,225734245,538983178,1769489696,538976372,542328096,1701060669,1734833506,1931965029,1734701856,1953391981,168626701,1634234212,1881172835,224620402,1970276618,1931503731,151653737,544632685,1801545819,1952543859,221326429,1869416714,1769152630,1717989164,544499059,846099826,154415667,1650811963,1701275509,544417637,1702129257,1886745202,1702240372,1919906915,1762266483,1346314342,151653709,1819042147,1886611744,151653741,544894570,1634234212,1885301603,1695157613,1718183022,1778977293,1746956397,221342561,1762266378,1346314342,1913261389,1685353317,845768546,976499251,990447881,544499059,1969382756,1919248231,1763734311,840987758,875704115,544106784,168643920,1818321673,1702043756,1734501492,842216009,151653684,1752397168,225669920,1869613322,1936007280,1913195021,168653925,1768189541,218762598,1752069386,980116321,151587130,1952805691,1650811936,1701275509,544417650,544501353,841954098,1931488308,1159754853,1869881427,1650811936,1701275509,1702043762,1852140903,151653748,544632685,1801545819,1952543859,221260893,543582474,223170623]},{"sector":7,"length":512,"data":[1633880330,1763732588,225276019,1852442890,1701978234,1650750579,858941799,168637490,1768189541,151653734,1752397168,225014560,1869416714,1769152630,1717989164,544499059,846618995,154415667,1650811963,1701275509,544417650,1702129257,1886745202,1702240372,1919906915,1745489267,976317281,1879640589,543716213,168651108,1919907849,745104416,168651108,1987013897,745760032,168651108,1987013897,745104416,858925620,151653736,1937141613,151653751,1937141613,151653751,1937141613,151653751,1937141613,151653751,544239472,168651108,1886351369,225014560,1970276618,1663068275,151653747,544239472,168653669,1952805385,1718159885,1297104672,168626701,757935419,1952805664,1650811936,1701275509,544417637,544501353,841954098,1836064820,224748655,1678380298,1667328111,1836081003,151653690,909652526,1879640589,543716213,168653683,1886351369,225666336,1769146634,1919968634,151593062,1937076283,224682344,1970276618,224487539,1869416714,2019696758,842149932,168650803,221921344,1769146634,1919968634,151593062,1987013947,2019845408,1769167660,808136747,151653725,544632685,1529641060,808151411,224210987,1869416714,2019762294,1769167660,875245611,151653725,544632685,808220769,1748316210,1762200077,857764974,168650801,1684300041,745108256,151653686,543387241,168651874,1667589129,224944672,1852442890,1111498874,1929972237,1885698665,153118322,1869626121]},{"sector":8,"length":512,"data":[224682352,1869613322,168649072,1886351369,225014560,1701972234,151653748,942684206,1695157558,1718183022,1868827149,1801675112,1684956448,218762608,1148078346,221934447,1970276618,1679845491,151653747,1752397168,225014560,543582474,223170623,1633880330,1763732588,225276019,1869416714,1769152630,1919907628,1953505380,1885020274,1329884745,1563437907,1829308941,1679849071,1230711923,1936671854,1567384915,1778977293,1075870318,151653702,544632685,1999401828,543453807,544371824,1530557283,1148078448,841700175,1074400605,168639040,1702063205,1812531725,1931506532,1885023337,1329884745,168648019,1768189541,151653734,544238947,1702132066,1920233504,1769167648,221260893,1869613322,1769152624,1879640589,1679847535,1678380403,1835235693,168639076,1952805385,168626701,1819047270,1970238306,168639092,1987013897,745300256,151653688,1819042147,1685353248,1635022191,151653740,544632685,841772129,168650800,1818321673,1953701996,1953853284,168651873,1987013897,745300256,218762552,1685353226,1635022191,168639084,1937076233,2019696744,1879640589,543716213,168654947,1937076233,2019827816,1879640589,543716213,168654945,1987013897,746087200,151653681,544632685,1932294244,151653744,1819042147,1685353248,225736047,1869613322,2019631216,1879640589,1679847535,151653752,544239472,168654947,1886351369,225993248,1701972234,218762612,538983178,1413826336,1162758476]},{"sector":9,"length":512,"data":[1344285984,1953393010,1881170208,1886220146,1630019700,1701995620,1763734387,1480859758,1701584940,1752459118,544106784,539580483,543452769,1684104562,1814061344,224751209,538983178,543584032,1970302569,168636020,538976315,1280591175,809848393,1394617632,543518049,1629516641,1702260578,1969365036,1937055860,1752440933,1970217061,1953853556,1852402720,1932009573,1634082927,539765106,1937075312,1870099488,540740109,1886593056,1936024417,1684955424,1663066400,1852796015,1935745068,1881170208,1886220146,168636020,538976315,1280591175,809848393,539828272,1701667155,544432416,1987011169,1646275685,1965061237,1948280179,1864394088,1970304117,1768693876,673211758,1713401715,539587169,1629516641,1869770784,779382893,540740109,1850023968,544830068,1480794144,1852132361,543716455,1881171567,1886220146,1730682996,1768715365,1864394094,695823470,154864141,538976288,1091131460,1701995620,1864397683,1919950950,1953525103,1920234272,543649385,1952802600,1701734764,1819176736,168634745,538970427,1229201440,1684291849,1936942450,824191776,543584032,1953718636,1634231072,1952670066,1763734117,1919950958,1953525103,1701259296,1852402804,1629499493,168649838,1728645435,1768715365,808478062,1819176736,168634745,538976315,1953069125,538976288,1175014465,1953722985,1852796448,1953065079,1751326821,1667330657,544367988,1763733097,1953853550,1852402720,990514533,538976265]}]],[[{"sector":1,"length":512,"data":[155800352,1919181889,544437093,1948280431,1847616872,544503909,1918986339,1702126433,1717641330,544367988,1952540788,540740109,1934958624,538997605,1212227616,743981612,1143756867,1229204568,168626701,1819567463,811953769,151653690,544632685,657225825,153559072,1684093705,2004099172,1886593135,1936024417,1684955424,1663066400,1852796015,1929972237,2004053876,1829308941,1629517423,975645804,151653671,1936684147,1728712034,1768715365,808478062,151653690,544632685,1865185380,1702061670,1768693876,1868522862,168653941,1987013897,746087200,168651108,1651864329,746087200,168654948,1701251597,1852402804,1919950949,168649583,1987013897,1919965984,1953525103,1567516012,158884652,1986097979,1701584997,1752459118,543584032,1836020336,168653936,1142974057,1163282770,1902452818,168636448,1818321673,1969365100,1952805734,168652917,1937076233,168650344,1768189541,151653734,1819042147,1685353248,225736047,543582474,1447645764,1696617029,221257841,1869613322,168650352,543386121,154496103,1765476617,1953767526,1852383353,225736048,1869416714,1817911414,1668576097,744318061,1936090735,1679848549,1835235693,218762596,538983178,1768444960,1634738291,1914729586,1935958373,1701344288,1886284064,1814066293,543518313,1836020326,1713398048,543517801,544106792,543516788,1702060387,224816928,538983178,1701062432,543651170,1768300604,690447724,1226842158,1936269428]},{"sector":2,"length":512,"data":[1667591712,1634956133,1948285298,1868832879,1768453152,2036473971,1851877408,1700929636,1937072483,1329864805,990514515,1713381408,1952673397,544108393,543711536,1936027492,1953459744,1851877408,543517796,541478725,1920102243,1819566949,1953439865,2003985768,778400617,1750343712,1763734377,990514547,1696604192,1667592307,1819042153,1835606137,1953656688,544501345,544370534,1969382756,1700929639,1937072483,1953046629,1634890784,1126200176,1920233071,1127050351,218762542,829187850,151653690,544632685,1529641059,1701213538,224224366,1970473226,2019762274,157905708,2019769097,1847606560,1700949365,1718558834,1818326560,1663067241,1634885992,1919251555,151653747,1730181738,151597932,1718172425,1852796448,1074400613,168639040,1685023753,168649331,1886216969,745300256,168645187,543517193,154430567,1765476617,1852121190,1718558820,1852402720,151653733,544238947,1277979745,151653702,1730176362,151598188,1718172425,1819239712,1929972237,1651732340,1812531725,544239471,153109056,1718172425,1701344288,1629513074,1830839666,543519343,1768710518,1751326820,1667330657,1936876916,1818692109,168639027,1818321673,1768300652,1969384556,151653734,543387242,540109927,1765476617,1702305894,1986095136,1869422693,1663067506,1634885992,1919251555,151653747,544632685,1277979745,151653702,544238947,1865181540,1702061670,1768693876,1767859566,1229728622,1230980430,1162633038]},{"sector":3,"length":512,"data":[151653710,1730175594,168637548,1667589129,225014560,1701054730,1768169571,1818692109,168639028,1987013897,1969380128,2019913318,1932287348,151653737,544632685,1953459803,2037675105,1818307677,1829308941,1629517423,1380133996,1929972237,1651732340,1829308941,1663071855,1768172664,1829308941,1679849071,1718561912,1952805734,1852402720,1852399461,840968992,1929972237,1663066741,2019830904,1661536781,543976545,1868854387,151614581,1769107515,1864397934,1948284021,1914725736,1768252261,543450486,1701734764,1778977293,1730179181,153106028,1868839689,168650094,976579687,1852115469,224815460,1869416714,2019827830,1717989164,544499059,1701734764,225339743,1633880330,1226861676,1936671854,1778977293,1914731118,1852405601,225736048,543582474,1145394005,1162564431,1762266457,1346314342,151653709,1819042147,1886611744,151653741,544894570,1630891111,1852115469,224815460,1869416714,2019631222,825766956,151611440,1936679995,226059627,1952542730,1683974243,1701540719,845766521,1634476134,543974754,1685221239,1634745097,543712116,1752459639,1347374624,1718165619,1142963232,891310927,1762200077,840987758,168650822,1936028681,2019631220,158884140,1868839689,2036689779,1952805408,1701737077,1852383332,544503152,151653695,1730181738,151598700,1702443785,1728712051,979449196,1852115469,224815460,1869416714,1751195766,1751199788,1648036105,1701209717,543450482,1652122987]},{"sector":4,"length":512,"data":[1685217647,1886284064,168653941,1818321673,1868832876,1818321779,1728712044,221918828,1869416714,1818304630,221262124,1633880330,1931504748,1970234484,225206644,1869416714,1769152630,1717989164,544499059,1701734764,544106847,221388843,1633880330,1931504748,2003855723,1702127976,1913195021,168653925,1634863629,1886284151,221934709,1970276618,1679845491,151653737,1752397168,225666080,1869613322,1936007280,1762200077,1679844206,151653752,543387241,168654948,1987013897,745104416,168654948,1853317490,980711525,1829308941,1629517423,808463464,151653736,544501353,224933425,1835206922,1818304624,168636460,544893449,1853317490,225736805,1835206922,1818304624,809840684,151653736,1914731114,1701738337,168653944,1886216969,745300256,224933936,2053769482,1818584096,2036689759,1661536781,1629515885,1178020972,151653736,1679850090,1801415781,168655205,1869902601,168649331,1818321673,1953701996,1953853284,168651873,1886216969,745300256,224937008,1852442890,1634869370,2019913335,151653748,543384932,168651108,1651864329,745104416,168654948,1987013897,746086688,168651108,1987013897,745104416,168654948,1987013897,1954112032,1953505381,1683693682,1563503977,225206572,1701054730,2019827811,1678313997,1679844197,151653752,544239472,168651108,1886218761,913073952,1701054989,1701535596,168639097,1886216969,745104416,168654948,544893449,1853317490,225736805]},{"sector":5,"length":512,"data":[1701054730,1768169571,1661536781,543976545,1819047270,1970238306,151653748,544238954,1853317490,225736805,1952802570,1701734764,1684956448,218762608,538983178,1179992608,1431586131,539828304,544499027,1646293109,1701209717,1701978226,1852400737,538979943,1936287828,1937074720,1701650548,544435809,1668508004,543453793,1277193825,990514502,1763713056,1752440934,1634476133,1663071347,1634885992,1919251555,1634038304,1630019684,1953702003,1684370031,544106784,1953459751,2037675105,1763715367,1380130931,990514478,1159733280,2037544046,1142956064,1766197577,544502642,1767994977,1818386796,2036473957,1763730804,1852383342,544503152,1717990754,168653413,538976315,1953069125,538976288,1091127635,1701995620,1864397683,1701716070,1663071352,1634885992,1919251555,990514478,1226842144,1752440934,1852383333,544503152,1713402729,544042866,1953767521,1948265593,544105832,1936094562,1886745701,1952805408,1936618101,1953068832,1633886312,544830066,779380083,168626701,1142974057,1163282770,1902452818,168636448,1969359373,1952805734,1881174133,224620402,1835206922,1851465840,1952543855,744323444,151653680,544894570,540111714,1765476617,1869488230,543236212,226063476,1953696010,151653731,225731954,1644825866,221917555,1869416714,1768169590,1717989164,544499059,1701734764,728656223,151653682,544632685,1529637235,1852208482,1567914085,1661536781,1931505773,1650142313]},{"sector":6,"length":512,"data":[1852139125,168648036,543320585,154301282,1765476617,1752440934,660959845,543236211,1918986339,1702126433,1818304626,1684104562,151653753,1819042147,1818846752,1718968940,1778977293,1935810659,151587124,543582523,224816997,846422538,151653690,544238947,1953459803,2037675105,1380133981,1778977293,1646290286,153105267,1718172425,1953459744,1735289192,1919905056,1869881445,225403936,1835206922,2036473968,1881171316,1528853108,744319347,168642124,1701734921,863199776,990447904,1847617129,1629516911,1852402720,1701191781,168649829,1668180233,157905696,1933248777,544237931,168653929,976450402,1661536781,168649580,1952805385,168626701,976515938,1778977293,1897951341,151587185,1769304379,1997093492,1702242149,1953064992,544104736,224816997,1718968842,1970562419,1852121200,168652900,1852115469,224815460,990514442,1176510496,1112296521,757089877,1818838560,1852383340,544503152,1717990754,539914853,1936674080,544828532,1936287860,544434464,1763733089,1919251566,543973742,1953853298,224751209,538983178,1919903264,1952802592,1701734764,990514478,1159733280,2037544046,1142956064,1766197577,544502642,1767994977,1818386796,2036473957,1763730804,1852383342,544503152,1717990754,168653413,538976315,1953069125,538976288,1309231443,544503909,1684104562,1701601889,1954112032,1764237413,741238062,1970365728,1948281953,1229201519,990514473,538976265,1918976800]},{"sector":7,"length":512,"data":[1713404274,543646060,1931506537,1763734629,1851859046,1852776548,1763735916,1752440934,543519333,1629516649,1919230062,544370546,1731093800,1696607278,220817007,538983178,1702057248,538976371,1852788256,168636005,1768294925,1969384556,1919950950,168649583,1937076233,2019631208,1879640589,543716213,168654946,1937076233,2019762280,1879640589,543716213,168654948,1987013897,745108256,151611748,543520571,2003791467,1768453152,1818304627,1684104562,151653753,544632685,858548321,151611494,1634038331,1919295588,1713401199,224750697,1870137610,2019696754,225993260,1869416714,2019762294,1717989164,544499059,1701734764,728656223,1162758476,1598966111,223233356,1869416714,2019827830,225010732,1970473226,2019762274,225993772,2053769482,828532256,990447881,1847617129,1869422703,1914725746,225275759,1633880330,1679846508,1633907567,168651884,543386121,154231398,1765476617,1919230054,225603442,1919879434,746086688,168654945,544893449,154231398,1765476617,1868898406,151653734,543450209,1680636001,151653752,224619619,1835665674,1650860144,218762546,828532234,151653690,1734894456,746086688,151615588,544760123,1634476093,1981838451,1684630625,1954112032,1684086885,1936028260,539697267,151653681,224621683,1711934730,221917794,1869416714,1650139254,1852139125,1630297444,151653752,544239472,168654948,1886351369,225993504,1869613322,2019696752,1879640589]},{"sector":8,"length":512,"data":[1629515887,151653752,225731954,1818846730,1718968940,1684956448,218762608,538983178,1380012064,1280394579,1344285984,1702064737,658319136,1701867296,1684955506,1919903264,661071648,1881612332,1851858983,1948721252,1868767271,1851878765,221148004,538983178,1953383712,538999154,155992352,1936877894,1751326836,1667330657,544367988,1663067759,1634561391,168649838,538970427,1230184480,1684291849,1936942450,543584032,1954047342,1634231072,1952670066,168653413,538976315,1953069125,538976288,1175014465,1953722985,1634231072,1952670066,1646293605,1852799333,1634869348,224749422,537475850,1394614304,1681983817,1936028260,1718558835,1701344288,1634231072,1952670066,1629516389,1919251558,1634235424,990514548,538976265,1718707488,543646060,1852788256,1869768058,543582496,656436833,1864378173,1634887024,1998611566,1881174881,1702061426,168653934,538970427,1902452768,1684300140,1681989746,1936028260,1763716211,1852776550,1635197029,1768366195,225338742,538983178,1702057248,1212227699,743981612,673994819,1480862021,218762542,1918988298,1819370867,1869770784,151653731,544632685,1718707547,1567056236,151597100,1918987579,1025974379,1935745063,1935827232,225734245,1835206922,1818304624,658319148,1778977293,1881171310,154235237,1718172425,544173600,539442471,1919250543,224685665,1633880330,1931504748,2003855723,1702127976,1829308941,1646294639,1918577784,779315045]},{"sector":9,"length":512,"data":[1565737842,1701067529,1819631974,1702043764,1852140903,1762266484,1346314342,151653709,1702521203,543584880,2017134857,1696625263,1697413220,168654948,1919907849,746087456,168654948,1768189541,151653734,1819042147,1952802592,1919181921,990447960,544499047,543516788,1919181921,544437093,1869901417,980967968,1680434472,151653752,1702521203,1483108976,1832585481,1528854127,1634496869,728917092,1697406256,168654948,1987013897,1902467872,1684300140,1563437938,225993772,1869416714,1700470902,1684106353,875262564,2019699805,1762200077,1528849262,1818653029,224225121,1902473226,168639025,1952805385,1634732557,1902474098,1852121196,168652900,540740109,1163075616,542197076,1866670125,1948285296,1025533288,1735549216,1852140917,1948283764,1752440943,544368997,1667329136,1763716197,1885413478,1886351984,1952541042,538979941,1768444968,1936269427,540740109,1869488160,1868832884,1763730798,1684368749,1702125929,539785580,1633903970,543519605,543516788,539453223,1835888483,543452769,544825709,1702257000,1931501856,1635020409,1919230072,779251570,990514473,1428168736,544433523,168646721,1702038029,544302452,1668248176,1661536781,1528852589,1818653029,744318817,990447920,539442471,1969713761,1953391981,1986619168,222260837,2053769482,222707744,1769146634,1919968634,151607398,1987013947,2019648800,1902467884,1684300140,1563437938,1829308941,1629517423,1700473976]}],[{"sector":1,"length":512,"data":[1684106353,808153700,151653725,1702521203,1483108976,1832585481,1528854127,1936156018,1346990638,744304683,225993061,1869416714,1918574710,779315045,726681970,1630297392,151653752,544632685,1529641057,1634496869,728917092,168647988,1987013897,1701993248,1915646823,744313667,168654945,1987013897,1902467872,1734437990,154152029,1818442505,544366949,543516788,1734437990,1077938701,151653690,225731954,1952805642,1696624997,225469550,990514442,1344282656,1163088449,757091651,1918980128,1663067507,1634561391,1814062190,543518313,544370534,1851859011,541925476,1835888483,1935961697,990514478,1159733280,2037544046,1092624416,1174997324,1953722985,1852796448,1953065079,1751326821,1667330657,544367988,1881171567,1835102817,1919251557,990514547,538976265,155800352,1684291849,1936942450,543584032,543516788,1918986339,1702126433,1717641330,544367988,1952540788,540740109,2017796128,538997865,1396973600,692398138,1091127635,1701995620,1713402739,544042866,1936877926,1634738292,1701667186,225600884,537475850,1159733280,1160264275,155796521,1919181889,544437093,1836020326,1667592992,543452783,1634886000,1702126957,990514546,538976265,692398112,1275680835,1952935525,1718558824,1684300064,1936942450,1851879968,1830839655,1937075817,1701736224,168626701,1936875888,544039781,1668248176,1661536781,543976545,1885696624,1801675112,1829308941,1646294639,1918577784]},{"sector":2,"length":512,"data":[779315045,1565738098,1701264137,1869815924,1701016181,1851879968,168650087,1919907849,746087200,168654947,1818321673,1701257324,1851880052,151610727,1952802619,1684300064,1936942450,1851879968,1763730791,544175214,674920546,2019830117,980967968,1663657256,151653752,1752397168,544760352,1933248777,543520353,1835492723,544501349,1936877926,1684086900,1936028260,1762266483,1346314342,151653709,544238947,1682006619,842232420,221260893,2053769482,222707744,858654986,168638008,1651864329,2019779872,2019845420,1879640589,543716213,158884965,1634941705,1864394102,1702061670,1768300660,544502642,1919181921,225669989,1970276618,1696622707,168654947,1886218761,1600352288,168636720,808988169,168638008,221921344,1684956426,168650345,1651864329,746087200,151615588,1836412475,544367970,1646290543,1936028793,1852402976,1864397685,168650094,1937076233,2019827816,1879640589,543716213,168654947,811557744,168639025,1818321673,1802707052,1868787817,221277549,1869416714,2019696758,1701993260,1915646823,224219972,543582474,223170623,1835206922,1650139248,1919181889,744305203,151653680,1881176682,221339491,858654986,168638008,1818321673,1701257324,1684300148,990447986,544499047,1919181921,544437093,1869901417,980967968,1680434472,151653752,544632685,1682006619,842232420,540093533,1701985033,1919906931,1096949861,863134820,151653682,544239472,225993573]},{"sector":3,"length":512,"data":[1869416714,1684349046,1667574889,151653752,543450209,745104485,225993829,1667893514,1920099616,896168559,1661536781,543976545,1701537891,168651887,1987013897,1768187168,2019845420,1829308941,1696626287,2019699827,1879640589,1696624751,168651123,1886351369,225666080,1701972234,151653748,942684206,1879706934,976314211,1852115469,224815460,1633880330,1730178156,1684108389,151614052,1952802619,1936024608,1634625908,1852795252,1684300064,1936942450,1953392928,2019696751,694495290,168654948,1886351369,225993504,1869416714,1768169590,225993516,1684080906,1768169572,225993772,1667893514,1920099616,896168559,1765476617,1953046630,1634891552,1684369520,1869766944,224685685,1633880330,1663069292,1868917608,990447980,1701869669,1696625763,1864393838,1768693862,168650094,1987013897,745104416,168654948,1987013897,745760032,168654946,1886351369,225014560,1869613322,1935941744,1913195021,168653925,1936875888,544039781,1885630053,168626701,1869771365,976579186,1778977293,1663070317,1700750445,1919906418,168626701,538976315,1397899600,542592069,1632641069,543519602,1835888483,543452769,1701734764,1919903264,1629506592,1461740654,1836016416,1684955501,168636019,990514491,1159733280,2037544046,1092624416,1766197580,544502642,2003726190,1702127976,1634231072,1952670066,1864397413,1634738278,1701667186,1936876916,154864141,538976288,1091127635,1701995620,1864397683]},{"sector":4,"length":512,"data":[1752440934,1751326821,1667330657,544367988,1702127201,1752440946,168653921,538976315,1953069125,538976288,1948280393,1701995880,544434464,1830843489,544502639,543518319,1969713761,1953391981,1919952928,1634887535,1869357165,1999594593,1702127986,1948265513,544105832,224749684,537475850,2048925728,544174693,1734437990,544434464,745825651,1684955424,1734701600,1702130537,1629516658,1931502962,1629516901,1868963955,2003790956,168639091,538970427,1480728608,692398138,1409898564,1936613746,544367974,1919181921,225669989,168639242,1716062523,1701344288,1629513074,1830839666,543519343,1969713761,1953391981,1630019699,1819243362,543519861,1802725732,1634038304,1920413540,694514793,1752440876,1948282469,168650088,1702496571,1713401714,543646060,1663071081,1918985580,1851858988,1701978212,1953720679,544436837,543519329,544499059,1713402721,1869376623,221934455,168639242,1329858875,1702240339,1869181810,1881174894,1919904114,544175136,825437747,990514490,541868297,1769096224,1847616886,1700949365,990514546,542655241,1836404256,544367970,1931503215,1869898597,1948283762,1701978223,168649825,1480853819,1698832416,1852729703,543649385,1768386412,543973731,1952671091,1847620207,1700949365,990514546,978535433,538990658,1851880020,1919247987,1684300064,1936942450,221973005,1275673354,1919251553,1397703712,1919252000,1852795251,168639091,1279330619,1917067296]},{"sector":5,"length":512,"data":[543520361,1651340654,168653413,1480788283,1177559072,1749435974,154864141,1111118660,1327505496,1702061670,1718558836,1667330080,225731947,1879706890,1702064737,1881175916,224620402,1869416714,2019696758,1701993260,1915646823,157111107,1717920827,1953264993,1734701856,1953391981,1829308941,1679849071,808529016,151611440,1717920827,1953264993,1717989152,225731955,1835206922,1818304624,223494956,1701447946,2003595296,151593010,543582523,1629515630,1836410738,1937010277,1661536781,543976545,1635018087,158491748,1701264137,1969365108,1919247974,1684300064,1936942450,1953392928,2019696751,694495290,168654948,1818321673,1802707052,1868787817,221277549,1835206922,1818304624,223494956,1701447946,2003595296,151593010,543582523,2037149295,1701736224,1735549216,1852140917,151653748,1752397168,544760352,1933248777,543520353,1835492723,225734245,1970276618,1679845491,151593080,1986097979,1718558821,1952805734,1829308941,1646294639,808987768,990447976,544760173,1651340654,1864397413,1702043750,1919906915,1869881459,1634038304,151653732,543647086,168654948,544893449,829910128,990447904,1629513321,1701995620,1763734387,1702502515,168652658,1987013897,745300768,151653689,544368755,1663858788,990447980,544760173,1651340654,1864397413,1702043750,1919906915,1752637555,543712105,544104803,1914725730,224682341,1869416714,1768169590,225993772,2003595274,168639025]},{"sector":6,"length":512,"data":[1818321673,1701257324,1954112116,990447973,544499047,1986622052,1970151525,1919246957,1279535136,151653673,1819042147,1768649504,1836016496,168636525,1937076233,2019827816,1627982349,1679844452,1093086316,151653671,544632685,1865185378,1702061670,1919164532,1818588777,168653925,1987013897,2019711776,1818504285,1661536781,543976545,1685349735,1685221239,1731922185,1914729573,1952541797,543520361,1952671091,1847620207,1700949365,151653746,1819042147,1768649504,1836016496,168636525,1937076233,2019696744,990447904,1702257011,1667592992,544370548,1651340654,1746956901,224946025,1970276618,1679845491,151593080,1986097979,1702043749,1919906915,1836412448,544367970,225931116,1970276618,1931503731,151593065,544106811,1702060387,543520544,1684957542,544104736,1869771365,151653746,1819042147,1952802592,1685221239,1731922185,1931506789,1869898597,1868767346,225734261,1701054730,2019827811,1661536781,1679847533,1768172664,1778977293,1696621921,1919906418,151598442,543582523,544173940,2037277037,1667592992,1936879476,1762200077,1679844206,151653752,544632685,1680636003,151653752,1819042147,1802003232,158101349,2019900169,1952671088,1684956448,543584032,1701734764,1661536781,1528852589,1885696885,1701536609,808213876,1778977293,1881176686,154367852,1718172425,2003136032,2037674797,1881171308,1701536609,1633886324,1684368492,1919903264,1879640589,1931505775,151587177]},{"sector":7,"length":512,"data":[544106811,1702060387,543584032,1869771365,151653746,544239472,151615588,1701264137,1867260020,1685221207,1635021600,1852404850,1869357159,1633904999,1702043756,1919906915,1836412448,225600866,1869613322,2019696752,990447881,544499047,1867999560,168649842,544370441,1647081570,990447992,1953723754,824205600,1768041782,1702043764,1919906915,1836412448,544367970,1936945008,1701601897,1778977293,1696627310,1919906418,151598442,543582523,544173940,224880994,1869613322,2019631216,990447881,1986622052,1970151525,1919246957,1879640589,1646293103,151587192,1634890811,1701213038,1969365106,1919247974,1936092960,1879640589,1679847535,151587187,1634890811,1701213038,1969365106,1919247974,1734701856,1862863373,2019762290,158884652,1702050569,1869488244,1919253102,1818632303,168650593,846687344,151653690,225731954,990514442,539831597,544695662,1819898995,1634738277,1952803683,1968906284,1634755955,1952803683,1025581149,168636448,1819281933,221918071,1869613322,2019696752,990447881,1668508004,543453793,168651123,1987013897,746086944,1936090735,1881175141,1701536609,151653748,544239472,1685221239,1920233504,2019711776,1095773789,1413827395,1667593006,808152942,1879640589,1998614639,543453807,544371824,1568170587,1128353838,777274699,1852007795,221391727,1869416714,1650139254,1345215864,1162560321,1970155092,1667593069,2019765363,1879640589,1629515887,151587192]},{"sector":8,"length":512,"data":[1769104443,1847616886,1700949365,151653746,544239472,1685221239,1920233504,2019711776,1095773789,1413827395,1953719342,225666671,1869613322,2019827824,2013858317,1663070831,2019765368,1718159885,1297104672,1661536781,543976545,1836086121,1778977293,1178607738,1661536781,1528852589,1768779876,744305203,151653680,1075870314,151653702,909652782,1829308941,1528854127,777877602,1262698832,842224709,1953719342,744973683,168654948,1987013897,1696626810,1647081570,151653752,544368755,746087525,151598641,1952802619,1466517536,677671535,1936090735,220820581,1835206922,1650139248,1919181889,744305203,151653681,1075870314,151653702,544370552,1680636004,151653752,942684206,1074400566,168639040,1768189541,151653734,544632685,1568170587,1128353838,777274699,1937011556,1680631653,1346046328,1162560321,1935945300,1734701940,544370464,1867999560,1344824434,1162560321,775041876,1869902692,220820326,1701054730,2019762275,990447881,544499059,2054057838,544174693,1734437990,1684955424,1801547040,2019762277,757087520,151653681,225731954,1918988298,2003592563,1684956448,218762608,538983178,1380012064,1348420947,539828308,1936875856,1881612389,1919885351,661923616,1836016416,1684955501,990514478,1159733280,2037544046,1092624416,1766197580,544502642,1918986339,1702126433,1718558834,1836016416,1684955501,154864141,538976288,1091127635,1701995620,1864397683,1701716070]},{"sector":9,"length":512,"data":[1663071352,1634885992,1919251555,540740109,2017796128,538997865,1480794144,1836404233,544367970,1948280431,1936026985,544175136,1701864818,168653921,538976315,1936028501,538976288,1110198337,1480797272,777536556,168626701,1936875888,1953521509,1869770784,151653731,1819042147,1918988320,1819370867,1731922185,1864397925,1869182064,543973742,1684094268,540963428,1969713761,1953391981,1661536781,543976545,1885956979,1835888483,990447920,1885956979,2037276960,1768453920,1931502964,1701011824,1829308941,1663071855,154217592,1701067529,1819631974,1868767348,225734261,1835206922,1818304624,223494956,1701447946,155598880,1765476617,1869488230,1970234144,1730180206,1852143209,1661536781,543976545,2004116839,224686703,1633880330,1663069292,1868917608,990447980,1701869669,1696625763,1864393838,1768693862,1746953582,224752229,1869416714,2019762294,225993772,1667893514,1696627320,1919906418,151598698,1937075515,1700929652,544497952,1935762796,221323380,977289226,154864141,1819042147,1952805664,151613797,1801547067,1752440933,540876901,1919250543,543452769,1701536116,1717986592,225731429,1701972234,1879706996,1702064737,544501855,1885630053,168626701,538976315,1381254471,1162300993,1193291040,1629516901,1701995620,1914729331,1701277281,1869768224,1852383341,544503152,1701734764,990514478,538976288,1634869345,543516526,1936617315,1937011561,543584032,1752459621]}]],[[{"sector":1,"length":512,"data":[1931506277,1953653108,1684955424,1684956448,1684300064,1936942450,540740109,1864376352,543236210,1918989427,1684086900,1936028260,1629498483,659302176,1684955424,1814061344,1952935525,168636008,538976315,1920233029,538976377,1175014465,1953722985,1634231072,1952670066,1864397413,1634869350,224749422,537475850,1394614304,1681983817,1936028260,1718558835,2019913248,1751326836,1667330657,225600884,537475850,1109401632,1698957656,1819631974,1702043764,1852140903,1869881460,1702065440,154864141,538976288,1141463107,1969317477,1814066284,1952935525,1869881448,1702065440,1919887392,1763717152,1869488230,1818304628,1702326124,168634724,538976315,1953069125,538976288,1175014465,1953722985,1634231072,1952670066,1646293605,1852799333,1634869348,224749422,537475850,1394614304,1681983817,1936028260,1718558835,1701344288,1634231072,1952670066,1629516389,1919251558,1634235424,990514548,538976265,978862624,1143555368,1766197592,544502642,1919181921,544437093,1914728041,1701277281,154864141,538976288,674912322,1480796485,1935756297,1684086900,1936028260,1852383347,1851879968,168650087,538976315,1936028501,538976288,168642625,1701251597,1851880052,978871655,1879640589,543716213,168654947,1818321673,1701257324,1684300148,168646770,1886218761,1952802592,1735287154,221339493,1728711946,1634890853,543516526,1668248176,1879640589,543716213,153122915,1634941705,1948280182]},{"sector":2,"length":512,"data":[1679844712,1969317477,1814066284,1952935525,151653736,1819042147,1952802592,1919181921,1731922185,1629516901,1701995620,1763734387,544175214,674920546,2019830117,1702045728,1646293876,1919181889,220803635,1952802570,1735287154,976314213,151587130,757939259,1852121133,544830068,1920230759,1701277281,151653720,1752397168,225014560,1633880330,1931504748,1668311403,812477807,1661536781,1629515885,539438188,151653671,1730175338,168637042,1886351369,157905696,1916471561,1869902693,1931502962,1851859049,2019762276,1879640589,1663070319,151653752,2054710122,1920099616,912945775,1765476617,543236198,1735287154,1936269413,1851878688,1869898084,168655218,1059087977,168643920,1886216969,1096964896,863134820,808213810,1664813344,1646292577,540090469,2037149295,544108320,808984673,724973619,1778977293,1178607738,772344333,221657139,1701054730,1667571811,151653752,543450209,746087269,225993829,1852442890,1919361123,151593009,543582523,1998614382,1634754930,1853190002,151653732,1696625263,757889123,990447921,1948282727,1852121199,1718558820,1734701856,1953391981,1778977293,1730179181,168636786,221921344,1684956426,168650345,1667589129,225993504,1684080906,2019762276,225993772,1852442890,1919361123,151593009,543582523,1998614382,1634754930,1853190002,151653732,544632685,808220771,1717986918,990447976,1948282727,1852121199,1718558820,1734701856,1953391981]},{"sector":3,"length":512,"data":[1919355405,168639025,1667589129,157905696,1916471561,1869902693,1629513074,151653740,1935961964,151653730,225731954,1728711946,221917810,1919879434,745300256,1330401108,223495511,1835206922,1818304624,661399340,1778977293,1919361125,151587123,543582523,1634869345,543516526,1730179945,1852143209,154864141,1819042147,1768649504,812152688,1731922185,1847620709,544503909,1651404654,1802396012,1718159885,1297104672,1661536781,1528852589,1751343469,1566928489,168637228,543320585,1597141607,151653681,909652782,1879640589,543716213,225993829,1633880330,1730178156,1718580325,1919903347,168654946,1987013897,2019779872,2019845420,1879640589,1696624751,168654948,1886216969,2019845408,2019779884,1778977293,1919230049,1785884530,151653686,544238954,221540967,942541066,221657136,846358282,221917535,1684956426,168650345,1937076233,2019827816,1661536781,543976545,2004116839,224686703,1869416714,2019762294,225993772,1869613322,2019827824,1661536781,1679847533,2019765368,1778977293,1919230049,1785884530,990447926,1696622185,2037674093,1851879968,168650087,1886218761,879912736,168626701,976450151,1661536781,543976545,1885956979,1835888483,990447969,1668508004,543453793,543516788,220687399,1633880330,1730178156,1701606501,1919903342,168654946,543386121,1869771365,221670002,879912714,151653690,543450209,875327603,1681590537,1633907561,1931502706,1684371041]},{"sector":4,"length":512,"data":[746087200,225014560,1701972234,1728712052,1634890853,543516526,1885630053,168626701,1869771365,976644722,1778977293,1663070317,1700750445,1919906418,168626701,538976315,1398031687,757092948,1952794400,1920234272,543649385,1646290543,1936028793,1344282670,1948284021,1629513064,1702327150,1852383346,1852402720,1970233189,168636020,538976315,1920233029,538976377,1713392705,1953722985,1634231072,1952670066,168653413,538970427,1230184480,1684300064,1936942450,543584032,1954047342,1634231072,1952670066,168653413,538976315,1953069125,538976288,1852402779,1970233189,1713397108,1953722985,1954112032,1718558821,1920234272,224882281,537475850,1142956064,1684086857,1936028260,1718558835,1935764512,540093300,1702132066,543584032,1769108595,168650606,538976315,1936028501,538976288,1126979649,1279536204,222909228,1728711946,1953723493,1919950962,168649583,1987013897,745104416,1936090735,1814066277,1600482921,225736047,1835206922,1818304624,223494956,1701447946,1920099616,912945775,2000357641,1868832869,544483182,1869376609,1835343991,544830576,1702132066,1920234272,1936158313,1936132621,168639025,1886216969,745300256,220342050,1701447946,846423840,990447881,1931503209,1852404340,151653735,544238947,657222753,168634146,543517193,154301287,1681590537,1869902953,1661536781,543976545,1651795303,157643897,2036480777,1763730804,1279533166,1829308941,1528854127]},{"sector":5,"length":512,"data":[744319332,151612516,1869902651,1948280178,1646290280,224752761,1852377354,1768169571,1778977293,1730179181,168638067,1936132621,168639026,1987013897,745038112,151612513,1986097979,1970348133,543519855,1918986339,1702126433,1728712050,221918067,1869351178,224555876,1835206922,1818304624,224944428,1701447946,896755488,990447881,1881171561,1769173871,543517794,543452773,1931503215,1852404340,151653735,544238947,1126984801,151653714,1696621930,1919906418,151598698,543582523,543452773,1814062703,224751209,879978250,151653690,1936684147,151587170,1986097979,1751326821,1667330657,544367988,543452769,1953394531,1702194793,1778977293,1730179181,168637299,1936132621,168639029,1685023753,168649331,1886216969,745300256,168650849,543517193,154432359,1765476617,1868832870,1701601909,1970348132,543519855,1918986339,1702126433,1728712050,221918835,1633880330,1931504748,1668311403,812477807,1731922185,1633820783,1713400675,1830842991,224752239,1835206922,1818304624,223494956,1852442890,1936138341,151593009,543582523,544501614,1701736292,1952807200,1913195021,168653925,1937007975,1696625268,225469550,990514442,1193287712,1145132101,757092932,1952794400,1684300064,1936942450,1869768224,1852383341,544503152,1701734764,990514478,1159733280,2037544046,1092624416,1766197580,544502642,1918986339,1702126433,1718558834,1684300064,1936942450,154864141,538976288]},{"sector":6,"length":512,"data":[1091127635,1701995620,1864397683,1701716070,1663071352,1634885992,1919251555,154864141,538976288,1141463106,1969317477,1931506796,1701668709,1948284014,1937055855,990514533,1159733280,544500088,1092624416,1766197580,544502642,1918986339,1702126433,1700929650,1684959097,1684300064,1936942450,154864141,538976288,1091127635,1701995620,1864397683,1752440934,1751326821,1667330657,544367988,1702127201,1752440946,168653921,538970427,1480728608,692398138,1091131460,1701995620,1713402739,1684960623,540740109,1934958624,538997605,1212227616,223888172,990514442,539831597,1920233061,1701257337,1684300148,1679841394,1701209705,1713402738,544042866,1635018087,544367716,1948282473,544498024,1763727426,1948741235,1684106528,990514533,539831597,1953067639,1818386789,1852383333,1869443104,168650084,1701251597,1684300148,1919950962,168649583,1059087977,168643920,1987013897,746087456,1936090735,1981838437,1718186597,1734701945,1832585581,543517537,1629509698,1769109280,1650550132,1931502956,1701668709,168653934,1937076233,2019827816,1852115469,224815460,1952802570,1919181921,221919832,543582474,223170623,1869416714,1650139254,1919181889,744305203,151653680,544238947,1702132066,1920233504,1769167648,744304941,539436071,1914724667,762077541,1701080941,1734701856,1953391981,151653695,544894570,1597071719,151653681,1935961964,151653730,1819042147,1886611744,151653741]},{"sector":7,"length":512,"data":[1730181738,828322145,1661536781,543976545,2004116839,224686703,1869416714,2019696758,225993772,1970276618,1629513843,151653752,544632685,841775201,1762200077,857764974,168650801,543386121,1869771365,221670002,1869416714,2019696758,225993004,1869416714,2019827830,225993004,1869613322,2019631216,1778977293,1730179181,845099361,1852115469,224815460,828466954,221917535,1633880330,1730178156,1718580325,1919903347,168654946,1597071719,168639026,1937076233,1769152616,1661536781,543976545,1885956979,221276279,1835206922,1818304624,658122540,1778977293,1634148453,151587122,543582523,1936287860,544434464,1702043745,1852140903,1701060724,1769104243,1919906928,1879640589,1931505775,151653737,543384932,168651123,1685023753,168649331,1952805385,168626701,976380263,1879640589,1629515887,151587192,1919448123,1629517679,544825719,1702257011,1769152612,1829308941,1646294639,2019830904,1832585481,1931507311,1701668709,1763734638,544175214,168646722,976445799,1661536781,543976545,1885956979,1953065079,990447973,1885956979,544175136,1954047342,1919907616,990514532,1818321673,1701257324,1936093044,1651666790,1715145080,543976545,1869768820,224946037,1913207562,168653925,1635018087,544367716,1885630053,168626701,757935419,1952802592,1981833504,1684630625,1717989152,544499059,544370534,1835492723,544501349,1109421673,218762584,1952802570,1718838895,2019717743]},{"sector":8,"length":512,"data":[1869770784,1762266467,1346314342,151653709,1752397168,544760096,1849362697,1701078373,168640356,1818321673,1701257324,1818588020,1920234593,1879640589,1629515887,151653752,1730181738,2019714671,168637023,942878217,151653686,544632685,1682006619,842232420,221326429,1970276618,1646291059,151653752,1819042147,1952802592,1919907684,151653732,1752397168,225993248,1970276618,1679845491,151653752,544239472,225993829,1869613322,2019696752,1913195021,168653925,808988169,168638008,1650880359,976379768,1852115469,224815460,1633880330,1730178156,1870099557,168649842,1952805385,1701251597,1936093044,1651666790,1852121208,168652900,758843917,1629498669,1851879968,1763730791,1852121203,1701995892,1769414756,1948280948,1277191528,1735288111,1629513844,1836410738,225734245,757938954,1701257261,543236212,1768710518,1701584996,1752459118,1919903264,1734701856,1953391981,544106784,168646722,757935419,809323552,1634037024,908096366,1114316852,1952524320,1634036768,1763734643,909189230,1953063469,1685024032,168634725,1701251597,1852140660,1651666790,1919950968,168649583,1059087977,168643920,1818321673,1936269420,168652144,544893449,1650879591,221339512,1835206922,1834688624,1768448865,744318318,151653683,1730175594,2019714668,168636767,942878217,151653686,1752397168,2019779872,1812531725,1696625249,1697413219,168654946,1936028681,1667571828,808725624,808464432]},{"sector":9,"length":512,"data":[1765476712,1702043763,1852140903,842211444,1953063469,151653695,544239472,225993573,2053769482,1718380320,828340322,1879640589,543716213,168654948,1937076233,2019696744,1661536781,543976545,1685349735,1685221239,1879640589,543716213,168654946,1937076233,2019827816,1879640589,1696624751,168654947,1886351369,225993248,1869613322,2019827824,1929972237,168649588,1667590665,1730181752,2019714668,168637023,1667589129,2019779872,1627982349,1696621668,539785315,225993829,1701972234,151653748,942684206,1728711990,2019714668,221917535,1684956426,168650345,1937076233,2019827816,1661536781,543976545,2004116839,224686703,1869416714,2019762294,225993772,1869613322,2019827824,154864141,224621683,1778989834,544897123,1650879591,154296184,540031753,1851876717,875962483,151653739,543384932,168654947,1684300041,746087200,151615588,1763722043,1953046630,1634891552,1629516656,1853190002,1728712036,2019714668,221917791,1701972234,1728712052,1701606501,1919903342,1696626786,225469550,990514442,539831597,540700265,1715293249,1953722985,1634231072,990514546,153955629,759780128,539898430,1918986339,758843917,1864379693,540701813,1970037110,1852383333,978862624,168646724,1936263693,1651341683,1881173103,224620402,1970276618,1629513843,151653752,1752397168,225010720,1970276618,1663068275,151653752,544632685,1865181540,1702061670,1701978228,1835101799,168653669]}],[{"sector":1,"length":512,"data":[1987013897,746087200,1380799822,1095649093,223561037,1869416714,1751195766,1769167660,990447965,544499047,1868785011,1663067246,544366952,1847617135,224750945,1851853066,2019631204,1431262252,1380274256,168646495,1886216969,1954112032,1953505381,1935351922,1563503465,658581292,1778977293,1830839150,1700952417,1635020654,1651341683,168651887,1885696521,1931508334,2004050275,1778977293,1847622254,1935766639,1868721529,151653740,544370552,1647081570,151653752,544632685,539781476,728327259,1380799822,1095649093,710100301,539828274,168647986,1937007975,1869376889,168639095,1987013897,746087456,1567188059,1762200077,1931502446,151587177,1768649531,1986994288,1931506277,1852793701,1751326820,168653409,1668047625,1879640589,1663070319,151653752,544239472,168651108,1886351369,225992992,1701972234,1829375348,1700952417,1635020654,1651341683,221932655,1835206922,1818304624,658843436,859506953,1931490872,1684955508,543453793,1768383858,1919251571,1835101728,1931506533,1953653108,1953068832,222634088,1852442890,1869488250,2037604724,1819239021,1829308941,1629517423,1935354988,1563503465,2013858317,543647843,1630301281,151653736,543452769,1412200545,1347441999,1465864773,1661536781,1629515885,1344744568,168634185,2054056457,222707744,1869416714,1768169590,1717989164,544499059,1936156018,1346990638,1778977293,1763733613,1885955443,1077938701,151653690,544632685]},{"sector":2,"length":512,"data":[942438499,1933248777,544104803,544370534,543516788,1953701944,1633971809,1914725490,1936287589,544367988,1701667182,1852776563,168655212,1885696521,1931508334,2004050275,1778977293,1847622254,1935766639,1868721529,151653740,544632685,1529637220,1311467876,1163021653,1296125511,841634629,840969504,1762266461,1885955443,151653690,544632685,1529641058,841705828,990447965,544499047,1867999560,1864393842,1464082534,541348431,1768383858,1919251571,1762200077,1931502446,151653737,544238954,1937007975,1869376889,1846152567,1935766639,1868721529,168639084,1886351369,225993504,1869613322,1768169584,1879640589,1629515887,151653752,224621683,1701972234,1762266484,1836675955,543977314,1885630053,168626701,538976315,1146373447,1146244951,1193291040,673215589,695756136,1870095392,1713398898,544042866,1970302569,1768693876,221144430,538983178,1953383712,538999154,155992352,1936877926,1751326836,1667330657,225600884,537475850,1394614304,1684080969,1936028260,1718558835,2019913248,1751326836,1667330657,225600884,538983178,1769489696,538976372,978862624,538990660,1870095392,168649842,538970427,1279336480,1919510025,1663071347,1634885992,1919251555,1953459744,544106784,543516788,1685221239,154864141,538976288,1627998547,1701995620,1864397683,1752440934,1701716069,1663071352,1634885992,1919251555,1952866592,1948283493,225730920,538983178,1702057248,538976371]},{"sector":3,"length":512,"data":[742932768,168643651,1701251597,1870095476,221930610,1633880330,1763732588,1836675955,225210210,1667893514,222707744,1869351178,224555876,811886346,151653690,225731954,977289226,1661536781,543976545,1853121895,168649337,543386121,1869771365,154692210,1718172425,1920099616,168653423,2002936585,2013858317,543647843,1680636001,151653752,544370552,1647081570,990447992,1634036835,1768431730,1864394855,1919247474,1919907616,1728712036,221917540,1869351178,224555876,1633880330,1730178156,2037281893,151653730,1730175850,168636516,1936028681,1751261300,812003372,151653736,544894570,1869771365,154692210,1718172425,1869575200,1734959648,1829308941,1663071855,221523064,845440778,151653690,543975539,824997988,1681590537,1818391919,1752375397,544499305,1952867692,1913195021,1646292067,221326456,1869351178,1730179183,168637028,544370441,1630301284,151653740,544238954,221340775,990514442,1193287712,1331123269,757089362,1952794400,1701324832,1998596472,543453807,1836020326,1886284064,1814066293,778399337,540740109,1850023968,544830068,1279336480,1919510025,1663071347,1634885992,1919251555,154864141,538976288,1627998547,1701995620,1864397683,1701716070,1663071352,1634885992,1919251555,540740109,2017796128,538997865,1480859680,1919907593,990514532,538976265,155992352,1936877926,1751326836,1667330657,544367988,544501614,1948282473,1998611816,224686703]},{"sector":4,"length":512,"data":[537475850,1394614304,1684080969,1936028260,1718558835,1701344288,2019913248,1751326836,1667330657,544367988,1702127201,1752440946,168653921,538976315,1936028501,538976288,1126975553,218762572,1952802570,1685221239,151653690,1752397168,225993248,1633880330,1730178156,2003072101,224686703,1851853066,2019696740,158884396,1768438537,1685221239,1701602080,222261857,1869613322,2019696752,1778977293,1696627310,1919906418,151599210,543582523,1869771365,151653746,225731954,990514442,1193287712,1497519173,757089620,1952794400,1701324832,1646274936,543519865,1836020326,1886284064,1814066293,543518313,1869901417,776750112,540740109,1850023968,544830068,1279336480,1919510025,1663071347,1634885992,1919251555,154864141,538976288,1627998547,1701995620,1864397683,1701716070,1663071352,1634885992,1919251555,540740109,2017796128,538997865,1279533088,1954112009,990514533,538976265,155992352,1936877926,1751326836,1667330657,544367988,544501614,1948282473,1998611816,224686703,537475850,1394614304,1684080969,1936028260,1718558835,1701344288,2019913248,1751326836,1667330657,544367988,1702127201,1752440946,168653921,538976315,1936028501,538976288,1126975553,218762572,1952802570,1702132066,151653690,1819042147,1952802592,1685221239,1627982349,1679844462,1751395432,1778977293,1696627310,1919906418,151599210,543582523,1869771365,151653746,225731954,990514442,539831597]},{"sector":5,"length":512,"data":[1314145607,757088857,1852785440,1953654134,1701344288,2019911712,1634231072,1952670066,1763734117,1279336558,1953392928,543236207,1650620782,539911532,1952797216,225342069,757938954,1633886253,544830066,544499059,1663069801,543519585,1696622191,1919906418,218762542,1952802570,979532142,1879640589,543716213,168654945,1651864329,745300256,220672039,1835206922,1818304624,168638764,1700948489,829318944,990447904,1847617129,1634562671,1768169580,225732967,1869613322,2019631216,1879640589,543716213,168654945,544370441,1412197473,1464814671,168645189,1651864329,745300256,220684583,1835206922,1818304624,661006124,660678445,1778977293,1852252257,151587122,543582523,544501614,543567201,1092645487,168642093,1684300041,745300256,168636465,976318055,1627982349,1931502692,154283120,1869495049,1818324338,1952805408,544109173,1919510056,1881175155,1864396911,1092641900,168634712,1668047625,1913195021,168653925,976383591,1879640589,1629515887,151587192,1920099643,1914729071,1920300133,151653742,224621683,1701972234,218762612,757938954,1212358701,1280263499,1126182176,1801676136,1919903264,1684956448,543584032,1701734764,218762542,1802003210,980184933,1661536781,543976545,1885956979,221276279,1835206922,1818304624,223494956,1701447946,845378336,990447881,1970562418,1763733106,1868963942,224685685,1695157514,1919906418,221919338,1835665674,1835212912]},{"sector":6,"length":512,"data":[1919246180,225603442,990514442,1394614304,1129335115,1095585103,1394617632,544237931,1953065079,1886593125,744842081,1701344288,1851859054,1953525536,1634627433,1868767340,744582509,1684955424,1919905056,1752637541,543519849,1667330163,168636005,538976315,1346980691,1296912195,539828272,1701667155,544432416,1987011169,1646275685,1998615669,1818304613,1684104562,1634214009,1948280182,1663067496,1634885992,1919251555,544106784,221137985,1930038538,1668311403,1634561391,151653690,1935961964,1930038626,1668311403,812477807,151653690,1819042147,1768649504,812152688,1661536781,1629515885,740764780,151653671,543518314,540173171,1765476617,1869488230,1836016416,168649069,1937076233,1769152616,1661536781,543976545,1885956979,1953065079,151653733,544238947,1126984801,151653714,543518314,540107635,1765476617,1869488230,1852121204,1718558820,1852402720,151653733,544239472,168651123,1987013897,745300256,220671015,1701972234,1930038644,221917539,1684080906,1886593124,151597612,1886351419,543781664,1869901417,2003791392,1701995880,1668483597,168639026,1952805385,168626701,757935419,1229673248,1347174736,757088584,1768641312,1818304624,1650550896,1667855461,1634231072,1952670066,539783781,543452769,1852139636,1768453920,1931502964,1701011824,218762542,1768649482,1886151024,221929832,1869351178,224555876,1851853066,1818304612,1431262252,1380274256,1929972237]},{"sector":7,"length":512,"data":[1629512309,1093086316,151653671,544238947,657222753,657270618,168634177,1700948489,1768649504,1886151024,168649064,1667589129,225014560,1778989834,1931505773,2003855723,1702127976,674957577,1953394531,543977330,1819042150,1752440947,1735749490,168634728,758843917,1394617645,1464879435,1163151688,1394617632,544237931,1667330163,1629516645,1948279918,779313761,758843917,1394617645,1464879435,757084232,1835094816,1935745125,1868718368,539780470,544503138,1629513079,1634038380,1746958692,543520353,543516788,1918986339,1702126433,1852383346,776749344,168626701,1885956979,1953065079,168639077,1685023753,168649331,1885956979,976250999,1661536781,1629515885,539438188,151653671,1931502954,2003855723,1702127976,1661536781,1629515885,1096035436,151653698,1931502954,2003855723,1702127976,1913195021,168653925,758843917,1226845485,1346720582,1836008224,1701994864,541868320,1752459639,1885696800,1952543329,544436847,740761639,1952196384,656419879,539764524,740768551,658319136,218762542,1936091402,221933669,1835206922,1818304624,656418604,1778977293,1178607717,1661536781,1629515885,1096035436,151653698,1075864938,151653702,544238947,657222753,168634156,543517193,168642112,1886216969,745300256,220674855,1701447946,222707744,1835206922,1818304624,658319148,1077938701,151653690,225731954,990514442,1210064928,543519333,1948283753,1931502952,1953653108]},{"sector":8,"length":512,"data":[543584032,543516788,1634953572,1835365235,544828514,1953653104,543584032,543516788,1735357040,778920306,168626701,1413563487,1702043713,1852140903,218762612,1936286730,1678339679,154148983,1970158345,1919246957,543584032,1702132066,1852383347,1936615712,1668641396,1852795252,544174880,225599846,2003044618,151597088,1937075515,1868963956,2003790956,1936286752,673214047,1819044215,2003591456,544438625,1634559346,807431785,990514473,539831597,1717924464,1936154988,1684955424,1701998624,1684370293,1937075488,1700929652,1852793632,1969448307,1702259060,1919945229,1634494053,1679848295,154148962,1818639113,544434017,544370534,1717924464,1936029801,1970234912,1931502702,1634082927,1879706994,1937073522,1679844453,154148962,1818639113,544434017,544370534,1717924464,1936029801,1702065440,1869815908,1918985760,168626701,1397051984,1695106885,824210801,1933248777,1701668709,1881175150,1768318322,1342836088,1163019602,1902446928,154280053,1701985033,1919950960,2020173413,168653669,1380274768,542789701,544567653,990447924,539767654,544501614,168637030,1279611472,541803343,544567653,990447928,1801678700,1701998624,225995110,1163022346,155464243,544567653,543698993,1818639113,1713399649,857764463,1768041778,1633951860,168649076,860181072,1695105330,840988017,153118768,1634494011,1868963943,842211442,1953063469,1684300064,1936942450,224882281,1163022346]},{"sector":9,"length":512,"data":[1414086999,1970365728,1747989536,1882917152,1768318322,1635197048,673215593,544501614,1818322290,1629518188,1701998624,695757158,1330055693,1195725396,1902452813,808984693,990453864,544499059,1998612073,1634213989,1948280182,1914725736,1831823205,1881173349,225735265,1762266378,1920234350,1650723189,151597088,1701344315,1767992608,1852383342,1970435187,1869182051,2036473966,168650100,1769172338,1678337402,154148962,809253641,544370464,1919885360,540032544,1851876717,1869422707,796008548,1936269421,1864382496,909189234,544370464,168636979,1835492723,1678341230,154148962,1702050569,1852140903,1701060724,1836213620,1684369001,544825888,1717924464,673216617,1864397423,1919248500,1702062455,1762266409,1852405860,2003044723,151597088,1684957499,1864398949,1752440934,1852383333,1970435187,1869182051,1965564014,1970369390,1702520165,168634724,1919181921,2003044722,151597088,1684300091,1936942450,544106784,543453037,544026482,1702132066,909191200,1953063469,1819176736,168634745,1702257011,540176499,807434084,1933248777,543520353,543516788,1667331187,1869619307,1702129257,1701322866,673211762,1684370293,544106784,1634953572,220818803,1678380298,1818653545,544434017,807428708,1715144969,1936154988,1919903264,1701344288,1936286752,1702064993,1701601901,218762610,757938954,1902452781,1702125941,1868963955,1768169586,1634494067,221934439,1141509386,1180652361]}]],[[{"sector":1,"length":512,"data":[1346720351,1902446932,154214517,1885696571,544498021,1702127201,1869619314,1936924784,1952784428,168636003,1599293764,1213423430,1695110991,840988017,1752382217,1830844271,1919905125,1868767353,1852142702,168653684,1599293764,1213423433,1695110991,874542449,1752447753,543519333,543519329,1869440365,1663072626,1702129263,544437358,1931505524,225931112,1397310474,1432308063,1163089230,1902446916,154673269,1852385339,1852990836,539585633,1852404336,539107444,1970173224,694445427,1141509410,1230984009,1330139999,1514754903,1970365705,1747988768,1764244256,1919251566,694968686,2003591456,544438625,2003789939,1701344288,1701867296,1684955506,2053731104,1141509477,1230984009,1330531167,1514754903,1970365705,1747989024,1764244256,1919251566,694968686,543520544,2003791467,1701344288,1701867296,1684955506,2053731104,1718558821,1936615712,221147764,1678380298,1818653545,846423905,543319072,990447920,1953459809,544367976,2037411683,543584032,1599293764,1313562441,1230198607,218762586,2053731082,1668246629,544695328,990447920,1919181921,544437093,1931503215,543521385,1685221239,1852383347,1953853216,544503152,1701734764,168626701,1413563487,1852121153,168653668,1329793549,542397262,1835492723,225734245,990514442,539831597,1818386772,1868963941,909189234,1953063469,1685024032,1831825952,1684300064,1936942450,778530409,540549152,1480728637,540287020,1346510909]},{"sector":2,"length":512,"data":[540155948,1230184509,540090412,1229201469,218762542,1953329674,1678336609,725098594,941632562,539767083,741485364,824914976,741482540,539767072,941632564,168626701,1197892932,1830834768,1869767521,1734701600,225735529,1195725322,1701979743,1953720679,1902452774,606609525,1914711328,1835101799,691417400,168636975,543319049,1701979682,1953720679,168632870,1684956425,218762605,1195725322,1599032927,156389447,544567653,990458930,841823793,1918967859,1701978213,1953720679,544436837,760758597,222905413,1141509386,1381197413,1667329312,1914728306,1936287589,1376390516,643778373,1768383858,539391091,544567653,1598506322,1197428558,723538512,539240480,1702043693,1852273255,791244129,151653682,572547684,1734701606,645165929,151653666,1835298405,168626701,538976315,1818386772,1864397669,1701978214,1953720679,1847620197,1936026977,990514478,1914708000,1835101799,792080696,1634625394,792080749,1919378803,1835101799,1937075488,1700929652,1852793632,1969448307,1702259060,218762542,1852273162,825781601,1634476086,543974754,1702132066,1141443085,1346856549,1279336530,1141443085,1346856549,1279467602,1141443085,1346856549,1279533138,1141443085,1346856549,1279402066,1141443085,1346856549,1212227666,1141443085,1346856549,1212358738,1141443085,1346856549,1212424274,1141443085,1346856549,1212293202,1735526925,829251950,1634476086,543974754,1702132066,1141443085]},{"sector":3,"length":512,"data":[1346856549,1480663122,1141443085,1346856549,1480794194,1141443085,1346856549,1480859730,1141443085,1346856549,1480728658,1141443085,1346856549,1347625042,1141443085,1346856549,1346510930,1141443085,1346856549,1230184530,1141443085,1346856549,1229201490,1598949901,1397179730,1696609841,673215857,757081120,1852273184,909208929,790636832,168636960,1919378803,1835101799,1650551840,1646292069,224752761,1698957578,542266214,168645445,1717912585,1126191699,151653715,1399219524,1397956690,1141443085,1381197413,223560736,1698957578,542266214,168645446,1717912585,1193300563,1309281619,1195725663,1397179730,1970365728,606087200,1931488544,1735550821,544039278,539959337,151653682,1399219524,1414733906,1141443085,1381197413,223169824,1698957578,542266214,168645187,1717912585,1142968915,151653714,1399219524,1381245010,1598949901,1380731969,542328645,544567653,539238440,1735532589,946692462,689976881,840970016,168626701,1919378803,1684300135,2003044722,1734701600,1165110899,1701981267,1915646823,1915507523,779315045,743658354,1936156018,1396994606,1734701612,1181888115,1701981267,1915646823,168645447,758843917,1411394861,1701601889,1868963955,1634214002,1768711278,1864394606,1634607206,543450477,1717924464,1936029801,218762542,1701998602,1819830630,158626665,840983140,841771062,858548325,858548278,908879973,908879924,990472245,1835492723,544501349,1717924464]},{"sector":4,"length":512,"data":[1936029801,1852385312,1685221152,220820069,1678313738,1647911010,1714433128,808216624,745026150,1748198960,1463486729,743721281,1262702412,1346720300,1378633038,222646341,1348423178,1229342034,1902452824,539238517,1919950893,2020173413,1953720684,1919945229,2020173413,1835363949,544695305,1465863757,743721281,1281314381,743129935,1381977677,1162760261,1598967084,1162888530,168626701,1768710409,840986215,168626701,538976315,1886221642,1650553888,1713399148,1327526511,1296654160,1327508557,1297243984,1347362860,539774303,1381978191,1146047839,1347362860,1179602271,539775814,1381978191,1347362860,1096766047,221004868,538983178,1684955424,1599098656,221141057,538983178,1701139232,1685221152,544436837,1629513327,1784638835,540110957,543452769,1953786210,221143649,1678380298,1784640361,540110957,1700946284,1870078060,168649842,544695305,1601204068,745368937,1886348320,745370207,1886348320,539782495,1601204068,1869438834,151653732,1679849316,1834971247,1936090735,1868832812,745693040,1886348320,1633645151,539780196,1601204068,168654945,540740109,1969889312,1948282989,1701601889,1919903264,1936286752,2036427888,543649385,1919250543,1935961697,540740109,1699946528,1919885413,1936876900,543584032,1601008481,829451626,1684955424,1953063456,778199412,168626701,1601399140,1635020911,1634476130,543974754,1685221239,1678313997,1868832887,913137520,538979380]},{"sector":5,"length":512,"data":[1601204068,1869375085,539784289,1601204068,1970234477,744844386,1886348320,809004383,808467209,221458477,2003044618,1886348320,2021158239,1679826988,1717530735,1701671521,1679830125,1717530735,1835627105,538979437,1601204068,946627954,875576073,221720621,2003044618,1886348320,1818587743,842217009,1868832812,741946480,1868832777,1953718128,538979433,1679826976,1667199087,809175410,825306424,1678313997,1868832887,1919180656,538976300,1601204068,153907828,1886348320,1734701919,744973682,1868832800,1835622256,540570477,758264123,168637745,544695305,1601204068,946695529,1868832812,1835884400,537472120,1601204068,1936681075,151616105,758526267,168638513,757935419,1920234272,543649385,1835365481,1347362931,773861727,1347362862,223564639,1650723082,657532704,990457900,168638769,543319049,740766503,842729776,151653680,656433764,539449412,825375497,1678313997,1126637666,153102156,221393467,1650723082,1414735648,990453799,168637234,543319049,659768103,1396975404,1160195111,657205075,740774726,659769127,1397958444,842729767,959589684,168626701,757935419,1836403232,1635000432,543517794,544370534,1700995169,1767994482,1819287662,778396513,758843917,1948265773,1931502952,543521385,1948280431,544434536,1818386804,1634541669,1701340020,1347362931,1162893652,1094868819,168641875,1768163853,1835687795,1814049392,1818583649,1919907616,151653732]},{"sector":6,"length":512,"data":[1679849316,1633842025,1765476708,1734700140,1763732577,1920234350,1769235317,168652399,544695305,1952407908,2036494199,990471540,544175988,1702132066,1936615712,1668641396,1852795252,1177561120,695760928,1678313997,1633951863,1936615775,158364263,1936615739,1668641396,1852795252,1869768480,168652917,544695305,1717526884,1852405104,1664813427,1869770863,1936942435,1763734127,1920234350,1769235317,168652399,544695305,1717526884,1919382896,1664813424,1869770863,1936942435,1763734127,1920234350,1769235317,1730178671,1886744434,1678313997,1633951863,1936615775,157708912,1936615739,1668641396,1852795252,1701998624,544762214,1668180264,1768191340,908093294,909076534,220817463,1414549258,1397051481,1396785759,1902452805,539238517,1768169517,1835687795,168637040,1329793549,542397262,1935961701,168626701,1634953572,976317811,990447881,757935420,1635021600,1918985326,1852121188,226062964,1869416714,1683693686,1818653545,1567844193,168636460,1768163853,1836278131,151593018,758921993,1696607533,2037544046,1953068832,1768169576,1634494067,1931506535,168653925,1987013897,1634949920,1886610806,1932287282,151653744,544370552,1630304353,151653752,544632685,1936286811,744320607,168654945,1987013897,1919907616,1953505380,1885020274,1818649970,1567844193,158884140,1701602107,1881174625,1818649970,544434017,543452769,1969582704,224683379,543582474,223170623,1869416714]},{"sector":7,"length":512,"data":[2019696758,1601526572,1919181921,224212011,1633880330,1730178156,1702065253,1953784172,151653746,544632685,1396925019,1920234561,1818307677,1778977293,1178607738,1862863373,1885020274,1818649970,1567844193,1380982828,1144140613,544370464,860181072,168640818,1919879483,1919965984,1702065509,539778404,860181072,1864385586,1380982898,1093808965,1077938701,1695157562,1718183022,1829308941,1528854127,1835492723,744322158,151587123,1768843579,1818323316,1965062508,1142973811,1702043731,1852140903,151653748,544632685,1936552539,1566931561,1747990572,1681590537,1948741231,1936286752,2036427888,2037276960,1835363616,226062959,1869416714,1870078070,1881171058,1528853108,1680763233,1634562921,744319075,1849362736,1886593135,1634296677,1634541676,1852401763,1701716069,1684366437,1869815852,1918985760,1661536781,543976545,1735616868,2036495461,153118068,1701264137,543236212,1702132066,543584032,543516788,1953721961,1952675186,225341289,1835206922,1818304624,1751267628,990447881,1953063287,1936615712,1668641396,1852795252,1970087968,1646294131,1752440933,1768300645,544502642,1717924464,220821609,1852442890,1633951845,151593010,1718172425,1953459744,168626701,538976315,543516756,1953063287,1936615712,1668641396,1852795252,544434464,1970561889,2037148769,1931501856,1918988389,543519841,1953721961,1952675186,544108393,1713402721,1629516385,990514547,1948262432,2015389032]},{"sector":8,"length":512,"data":[1763718712,1868767347,1919247214,744777070,1953849888,543520544,1634038388,1953046644,544432416,1919950945,2020173413,1852404512,1948280163,1701995880,1701994784,540740109,1869815840,1830839661,1869440366,1935894894,1634235424,1852383348,1886547811,1952543343,1953046629,1109401646,1763734645,1634214004,1869881459,543515168,1634038388,543450484,1667592307,1819042153,990514553,1931485216,1701015145,1970239776,1851876128,1679848487,1696607343,741238574,1734701856,544432928,1953063287,774778400,1953849888,1937075488,1868832884,1767995168,1702043764,1935876199,774778400,540740109,1852383264,1634038899,538979940,1814521175,1633886316,543712116,1814066281,1919251553,543582496,543516788,1953063287,1936615712,1668641396,1852795252,544434464,544501614,1852403559,1869881447,540740109,1700929568,1918988320,1718558836,1931501856,1701994856,1852645476,1852796261,221143913,151653642,1528853103,1717924464,1936154988,1380985949,1229018949,218762580,538983178,543574304,1982293367,1868963941,543452789,1919950945,2020173413,1702305836,1952805408,544109173,1701995880,1919903264,1701344288,1952669984,543973749,1953721961,1952675186,225341289,538983178,1919887392,1869504800,1919248500,1701998624,695757158,218762542,828466186,151653690,1819042147,1936286752,1651795303,224752761,845243402,151653690,544632685,1936615771,1567978100,543973676,1634941705,1629513078,544825719]},{"sector":9,"length":512,"data":[543516788,1953721961,1952675186,225341289,1869416714,1751195766,168636460,758843917,1310731565,1998616431,1634213989,1948280182,1931502952,1702195557,543515502,1651340654,1864397413,1752440934,1852383333,1970435187,1869182051,1852383342,777535776,1869564937,1953046635,779121952,168626701,976445796,1829308941,1646294639,2019634296,1829308941,1528854127,1769497705,744321902,991983713,1702257011,1701344288,1836016416,1936028272,543450483,1701080681,151653752,544238947,1395423329,1397899600,1094868805,168641875,543320585,151602752,1718172425,661940512,1869488243,1919295604,1948282223,1931502952,1701148017,543450490,1953653104,543584032,543516788,1818386804,151653733,544632685,1529637986,1954181491,1647010401,1347628408,1163088449,1396785759,168648005,1987013897,745038368,151653680,543450209,1395423330,1397899600,1094868805,990463315,1025538146,1836016416,1936028272,543450483,1701080681,1074400632,168639040,1987013897,745301024,1953525595,1936027769,1568170539,2019834633,1864383776,1685021552,2037653605,168650096,1987013897,745038880,151653680,543975539,824997986,1829308941,1646294639,1868246136,1718511984,2019699567,1648036189,540876920,1701344367,1852383346,673214310,1835363949,1667853935,543582496,1920213089,1763730805,1920234350,1769235317,220819055,1869416714,1769152630,225993772,1869416714,2019631222,225993260,1869416714,1818435702,221393196]}],[{"sector":1,"length":512,"data":[1752369418,2019631218,225207084,1835206922,1818304624,1767988012,1936286766,1751343469,151653725,1075864170,151587142,543582523,1768431713,1919248487,1667329312,1701734760,544434464,1701997665,544826465,1970365810,1684370025,1829308941,1528854127,1680763233,1634562921,744319075,990473313,544499059,1751343469,543518313,1701869940,1077938701,151653690,543452769,808216674,151611494,1851866427,2019696740,1717973036,757098598,1835364896,543520367,543516788,1751343469,543518313,1818585446,151653732,544238947,1328311396,1348031568,1113543493,222647105,1634339082,1633951845,151597873,543582523,1936287860,544434464,1629515361,1635087459,1852383340,1970435187,1869182051,151653742,1819042147,1768184608,1835687795,1932210800,990469481,1701344367,1936291698,1679830117,1869422703,1931502962,1768121712,543385958,1668248176,1769173861,168650606,1886218761,862020640,990447904,1801675106,1919903264,1919905056,218762597,757938954,2002001965,2036477295,1763730804,1920234350,1769235317,807431791,2021138502,1852383290,544761188,758138161,776356914,168626701,1952407908,2036494199,221930868,1633880330,1679846508,1701278569,1954112116,151653733,544632685,1936615771,1567978100,225206572,1869416714,1751195766,168636460,1684300041,746086688,1380012115,1113539923,222647105,1701972234,218762612,757938954,1850286125,1970435187,1869182051,1919361134,779122031,758843917]},{"sector":2,"length":512,"data":[1109404973,1868767320,1767994478,572552046,1953721961,1952675186,544108393,1702060386,824195618,745025584,808530208,773860456,168635950,1633946125,1936615775,980447847,1661536781,543976545,1920230759,1701668709,158490477,1952802619,1701344288,1684630816,543517796,1768038451,1864397684,1752440934,793911397,2036473933,168650100,2002936585,1627982349,1629512804,2019699832,1866139913,1702061670,151653748,225731954,990514442,539831597,1919971139,1936024431,544370547,1953721961,1952675186,778989417,758843917,1109404973,1868767320,1767994478,572552046,1953721961,1952675186,544108393,1702060386,824195618,745027636,943010080,773860456,168635950,1633946125,1970300511,980643433,1862863373,1683693682,1818653545,1567844193,1397310508,1398753631,1398230856,168647241,544370441,778658139,1818652004,1567844193,1598899244,1380994883,1661536781,543976545,1920230759,1701668709,151653741,544238947,808217697,224931939,1651116298,1600218144,1735618153,151613554,1851879995,807429479,1717710128,1936269416,1835103008,1935745125,544104736,1953721961,1952675186,544108393,1970238055,151653744,544632685,858549347,1929972237,1629516392,1818438764,1127942409,1179004208,1043148064,758657312,168642097,1651864329,745300256,761804849,990447928,825047089,757932102,942678078,222703661,1650657546,151653751,543450209,1647081569,990447992,1936090735,168653925,1952805385]},{"sector":3,"length":512,"data":[168626701,757935419,1886339872,1701015410,1919906675,1936615712,1668641396,1852795252,1869768480,221147253,757938954,1480728621,1852793632,1852399988,1763844211,1920234350,1769235317,1646292591,577074017,1127292986,539781176,1747993649,1144070188,168650808,1633946125,1970300511,980447847,1829308941,1629517423,1633365100,1701981801,1835363687,151653725,543452769,925658209,1661536781,168654690,1684300041,746086688,168654946,1952805385,168626701,757935419,1936607520,1668641396,1852795252,1701998624,779643238,1950425120,1768453152,1869619315,745827945,543973920,1919950909,2020173413,1953063456,1646279539,540876904,1835492723,225734245,1678380298,1852399457,1718775923,1762266426,221323366,1869416714,1818304630,225206828,1851853066,1818370148,1953459756,1380984864,1144140613,544370464,860181072,153698610,1701344315,1713399155,1936154988,1701994784,1380931616,220292197,1684956426,168650345,1936028681,1818370164,1919965996,1634494053,224228199,1852442890,1633951866,151597617,543582523,1919248500,1918967909,1969496165,1667853424,1936028769,1862863373,1885020274,1818649970,1567844193,225206828,543582474,151653681,544632685,1630301282,151653740,543452769,1345088609,842220882,1919885380,1163022368,222376499,1870137610,1885020274,1818649970,1567844193,225206572,1684956426,168650345,1936028681,1818370164,1163022380,222774611,2053769482,155598880,1765476617]},{"sector":4,"length":512,"data":[1869488230,543236212,1835492723,225734245,1869416714,1935351926,1852663653,1647074676,990453864,1702257011,1701344288,1734701856,1953391981,1077938701,151653690,544239472,151615585,1768176393,1918985075,1701978212,1852994932,1684300064,1936942450,1778977293,1679847533,168636769,1633946125,221917745,1835665674,1768169584,1684103795,2000357641,1868832869,544483182,1869376609,1969496183,1667853424,543519841,1717924464,1936029801,168626701,538976315,539904847,1919240224,1702305893,779052832,1750343712,1763734377,1851859059,1952669984,543973749,1953721961,1952675186,778989417,540740109,1480728608,1717989181,544499059,1830839919,1869440366,543385966,1830841961,1936288878,990514548,1394614304,1718566217,1952805734,543584032,1919250543,543452769,1953720684,544106784,1768714351,225670259,538983178,1919501856,1881175155,1953393010,1701344288,544239392,1835363949,1667853935,218762542,828466186,168639027,1886216969,1684626208,1936615800,1630940253,1882917224,543716213,1936551273,222240824,1852442890,1178607717,990447881,168652654,1818321673,1768169580,1802003315,157561395,1650539273,1651666803,1701867296,1684955506,2053731117,1919950949,2020173413,1077938701,151653690,1752397168,225014560,1701579018,1769152609,1852660524,1953720684,1568170539,1718565641,1952805734,543584032,1835363949,1667853935,1661536781,1931505773,1718561897,1952805734,1819176224,729052009]},{"sector":5,"length":512,"data":[1113542221,1346459475,1778977293,1075864942,151587142,543582523,544501614,1096241986,151653712,1819042147,1936286752,862677091,168649778,544893449,842096996,990447904,1847617129,1886330991,1851880037,1769155940,1881171322,1768318322,1074400632,168639040,1818321673,1752375404,1886353263,1882917129,1953393010,1953853216,1701344288,1668312864,543515759,544497960,1701734764,1953853279,691548715,1829308941,1528854127,1702521203,1566797676,153104428,1701602107,1864397409,1948284021,544434536,1734437990,1879640589,1931505775,151587177,1667592763,1919252079,1936288800,1718558836,1701867296,1684955506,151653747,543450209,1865181555,1702061670,1886330996,1953720684,539828339,1498697807,1599292752,1163084098,1661536781,1646293101,543519865,544371824,1567191899,168636460,543517193,825385316,990447904,1998612073,1701980005,1852793888,218762597,538983178,1869564960,1986994288,1864397413,1634887024,779314286,1769152544,540945696,1919250543,543452769,1701869940,990514478,1176510496,1970565743,1702125934,1948285292,1864394088,1634887024,544433262,1701867617,1763734113,1752440942,1852383333,1970435187,1869182051,1852383342,1701344288,1835103008,990514533,1864376352,1919247474,544432416,2036689012,1886413088,544366949,1948282473,1679844712,1935766377,1651336563,1864399212,1970304117,168636020,1633946125,221918257,1869416714,1683693686,1818653545,846423905,154152029]},{"sector":6,"length":512,"data":[1701602107,1864397409,1931506805,761625193,1634493810,543450484,1734437990,151653747,1935961964,151587170,1952802619,1701344288,1701867296,1684955506,1887007776,151653733,544238947,1328311393,1230200656,168641882,543320585,942760292,990447904,1763731049,544417652,544501614,1702521203,1885692960,1701080677,168653934,1987013897,1768184608,1634494067,1563587431,1397310508,1264535903,1398230862,990468681,1768189545,1702125923,1918989856,1818386793,1769152613,168650106,1886216969,745300256,945770575,1778977293,1679844705,154546529,1718172425,1701344288,2053731104,1936269413,2020173344,673211493,909192248,741487404,220804150,1835206922,1818304624,1599098668,842217009,1778977293,1679844705,154480993,1718172425,1919907616,1919885412,1870095392,168649842,1987013897,745038112,168636717,1936028681,1767579764,1920234350,824991093,1778977293,1633951866,153106225,1718172425,1954112032,1678380389,976564577,1862863373,1885020274,1937073522,744318053,860181072,990463026,1802658157,1768453152,1818632307,1629513569,1937055859,168649829,1987013897,745038112,1701998683,1734437990,168648051,1684955401,745038112,860181072,151602226,1768453179,1769414771,1646292076,808525925,1868963944,2003050610,744780399,1747988512,1919903264,1919907616,151653732,544238954,925983076,1681590537,224751215,1678380298,976630113,1829308941,1629517423,1818307688,1329269001,741891920]},{"sector":7,"length":512,"data":[1599098656,539768369,861884495,1919885362,1599098656,673199158,1797285239,544698222,1667852407,168634728,1684955401,745038112,1748002352,1950025993,544434536,1986948963,1937011301,543711520,1008758644,1868963888,2036473970,539780468,1713385533,1998615151,744780399,1929972237,1629512309,1347365992,154546527,1851865865,809377892,1919903264,1870095392,673211506,1702132066,741361213,1685221239,1680617533,1685221239,741355837,1919907697,808598884,218762537,757938954,1867391021,1702305911,1869507360,1752440951,1769152613,673211770,1629515369,1646274920,1668178290,1718558824,1869881446,544171040,543516788,1919250543,543452769,1702065257,221144684,1678380298,976695649,1829308941,1646294639,1818307692,1627982349,1646290030,1697655928,990447976,1852121144,1701409396,1227366515,539774285,539774290,1377840205,1146047839,1598890028,1397114447,743579692,1096765984,539771972,220813377,1633880330,1528851564,1601399140,829451626,1568170539,1919957769,544501353,544503151,543516788,1919250543,224685665,1835665674,1633951856,151597106,1852793915,1769414757,1864394868,1634887024,168649838,758843917,1394617645,1818589801,544437093,1919250543,1935961697,218762542,828466186,168639032,2002936585,2013858317,543647843,1647081569,151653752,544238947,1328311394,1414750032,151653714,1075864170,151587142,543582523,1931965545,1953459744,1931501856,1852404340,151653735]},{"sector":8,"length":512,"data":[544632685,1529641057,1601399140,1635020911,2019699554,224211501,1953696010,225932143,1702103306,1629516915,1751198824,1778977293,1679850094,154153569,1718172425,661940512,2004099187,1751326831,1667330657,1936876916,1678313997,1679844197,151653737,544238954,808608100,1681590537,543518319,1752459639,1701867296,1684955506,1077938701,151653690,1819042147,1768184608,1886347123,727867764,841840738,1866139997,1919248500,1702062455,1868832812,1836020512,1768453221,1696622446,224752492,990514442,539831597,1919250543,543452769,1701736292,1751326764,543908709,1948280425,1701995880,1629516583,1752461166,1864397413,168650094,1633946125,221917234,1835206922,2036473968,1881171316,1528853108,744319347,151653680,1679850090,540095073,1765476617,1702305894,543519271,1701736292,1829308941,1629517423,740764780,151653671,1936684147,151653730,544238954,875651428,1631258889,1752461166,1864397413,1634887024,168649838,758843917,1629498669,1864395884,1634887024,544433262,1701736292,990514478,539831597,544698222,1667590243,1851859051,1869357156,1713401967,1965060719,1702065518,1919950948,2020173413,221934437,757938954,1347362861,1163544915,909518880,539765096,1380205633,1163544915,926296096,539765096,1414086999,1702043692,1852140903,1377840244,1314607173,1566202717,1330389036,168643395,1633946125,221917490,1869416714,1818304630,1919965996,1702065509,168648036,1953459721]},{"sector":9,"length":512,"data":[225206560,1851853066,1818304612,1919965996,1634494053,224228199,1852442890,1178607738,990447881,1931503209,543518063,1734437990,1701978227,1852399981,1970173216,224683379,1835665674,1633951856,151599154,543582523,543976545,1734437990,1702305907,1965057394,224683379,977289226,1829308941,1663071855,1598958712,1111577687,1829308941,1646294639,1718561912,1952805734,1635022624,168636770,1987013897,746087456,1598958130,1111577687,168636973,1987013897,745038112,1464160848,223627585,1702103306,1629516915,1751198828,1778977293,1075870318,151587142,543582523,1919248500,544417637,1096228961,1881166921,1768318322,1634214008,1852401518,218762599,1869416714,2019762294,1281314348,1329742164,1829308941,1646294639,1718561912,1952805734,1635019808,221343586,1869416714,2019827830,1311388204,1096043615,841830210,1829308941,1629517423,1380985960,1144140613,1946749453,544502629,1630301281,151653736,544894570,151602752,1718172425,661940512,1869488243,543236212,543700534,1717924464,1948285033,661938536,1634214003,1852401518,218762599,1869416714,2019762294,1281314348,1094861140,1829308941,1646294639,1718561912,1952805734,1635019808,221340002,1869416714,2019827830,1311388204,1096043615,841826626,1829308941,1629517423,1380985960,1093808965,1946749453,544502629,1630301281,151653736,1679850090,540291681,1765476617,1953046630,1847620391,1629516911,1748448800,1701998624,544762214]}]],[[{"sector":1,"length":512,"data":[1952540788,1746957095,1768386145,168650606,221921344,1919879434,1919965984,1702065509,1630297444,990453864,1802658157,1768453152,1919950963,2020173413,544432416,1684370293,1879640589,543716213,168651108,1987013897,745104416,168654946,1987013897,745300512,168650849,1987013897,746086688,2019846491,1567845993,1913195021,1701736549,1633907488,168654707,1701734921,845243424,154230579,1718172425,1953459744,1970234912,1763730542,1752440942,1768693861,168653939,1684300041,745104416,151615588,1885696571,1701011820,1701344288,1701735712,1768845165,1769414755,1948280948,857761128,1768041778,1634607220,168650093,1987013897,745108256,1567188059,1627982349,1931502692,1718561897,1952805734,1819176224,225735529,1633880330,1931504748,1870098280,990447984,2037411683,544239392,1835363949,1667853935,1633946125,811545394,151653690,544239472,168651108,1886218761,845243424,1678380337,1597190753,168639025,1059087977,168643920,1936028681,1818370164,1163022380,541143603,1344303727,842220882,1765476676,543236211,909063734,1919950903,2020173413,1752069408,1818521185,222258277,2053769482,1936286752,845439330,1946749453,544502629,1396925019,1920234561,808725597,859507048,1768041778,1868767348,1931502948,1701668709,222262382,1852442890,1633951866,811545394,1950025993,544105832,1869506409,1948280178,1702063976,1695157550,1718183022,1768163853,1684103795,168639026,1886218761]},{"sector":2,"length":512,"data":[1936286752,224682338,1678380298,976499297,1946749453,544502629,1345088609,1163085138,151653703,1679850090,540357217,1765476617,1869488230,1700929652,1937072483,1718558821,1931501856,1701668709,1881175150,1768318322,151653752,544632685,1529641057,1769497705,224228206,1702103306,1629516915,1751198824,1778977293,1679850094,1633842025,151597668,543582523,1701080681,540942456,221656370,1970276618,1679845491,151653737,544632685,1345091683,1313164383,1829308941,1679849071,1718561897,1952805734,1718775840,1650553976,1913195021,1701736549,1633907488,168649331,1886351369,225010720,1852442890,1768169573,1684103795,990447922,1763731049,544417652,544501614,1948282479,1814062440,225735529,1869416714,2019762294,168637228,1818321673,1869422700,1987011958,168653413,1937076233,1768169576,1829308941,1679849071,1718561897,1952805734,1852402720,1970233189,1313680244,1313819973,223561295,1633880330,1931504748,1937207144,151611237,1869116219,1702043767,1852140903,1701978228,1953720679,168653413,1886351369,225010720,1919879434,1919965984,1702065509,1345084772,1163085138,1832585543,543912545,1629516905,1937055859,168649829,1886218761,845243424,218762545,845243402,168639029,1936028681,1818304628,1163022380,223364434,2053769482,845243424,151593014,543582523,544501614,1163010145,1919950928,2020173413,1627982349,1629512814,1380985964,1346720325,1163022379,1515210066,1862863373]},{"sector":3,"length":512,"data":[1885020274,1937073522,744318053,168651873,1987013897,746086688,2019846491,1567845993,1946749453,544502629,1630300257,151653736,544894570,1651730788,154297441,1718172425,1953459744,544106784,543516788,1936877926,892477556,2036473910,225666420,1851853066,1818304612,1953459756,151597344,1701602107,1646293601,540046441,1448037672,757094227,1330454590,692212566,1879640589,543716213,168651108,1987013897,745104416,1936090735,1914729573,1768714341,168653939,1987013897,746087200,1163026254,155405904,1668496137,1948282465,1702063976,1919903264,1346720288,1919510048,168653939,1885696521,1931502958,1651728739,1829308941,1931507311,1718561897,1952805734,1819176224,729052009,1381977677,168644677,543517193,926048612,990447904,1864394345,1864394094,1752440934,1163010149,1852383312,1970435187,1869182051,168653678,1987013897,745300768,1163026254,1280065872,1310731552,1346720351,168641358,1885696521,1931502958,1651728739,1778977293,1679844718,1633842025,151597668,543582523,544501614,543518319,1948280431,1377854824,793071685,1313883474,1852383301,1970435187,1869182051,168653678,1987013897,745108256,1936090735,1830843493,1936288878,1313680244,1346720351,151653701,1953719668,1919965984,1702065509,1345084772,1163019602,168647248,2054056457,845243424,990447927,1377855081,222646341,1869416714,1769152630,1717989164,544499059,1768713837,1294693491,1163026254,222645840]},{"sector":4,"length":512,"data":[1835665674,1633951856,151598898,661940539,1163010163,222645840,1678380298,976630369,1946749453,544502629,1345088609,1330398546,168643395,544893449,1651730788,154297441,1718172425,1953459744,1814061344,543908719,1717924464,539785321,1752459621,168653413,1937076233,1768169576,1829308941,1629517423,1767582840,1852405860,168648051,1987013897,745104416,1936090735,1814066277,1953194863,168649313,1987013897,746087200,1330405198,168643395,1885696521,1931502958,2004050275,1778977293,1679844718,1633842025,151597668,543582523,544501614,1948282473,1629513064,1869770864,543450486,1953720684,1946749453,544502629,1701998683,1684370293,1380985949,1195725637,1778977293,1768169594,1684103795,990447922,1830839913,1919905125,1635197049,1869488243,1667309684,1936942435,168649829,1987013897,745108256,1936090735,1830843493,1936288878,1313680244,1129270367,151653707,1528853103,1969582704,1566860659,1163022380,1262702412,168626701,757935419,1768706848,1852383344,1869504800,1919248500,1701735712,1768845165,1377843811,1378832453,793071685,1313883474,1330392901,221137731,757938954,1230184493,1864383776,1702061670,1718558836,1701735712,1768845165,1998597219,544498024,1970235507,1646290028,990514533,539831597,1763723588,1852776563,1701344288,1635021600,221145955,1678380298,976695905,1879640589,1679847535,151653737,544632685,942438499,1879640589,543716213,168651123,1818321673]},{"sector":5,"length":512,"data":[1869422700,1987011958,168653413,1886351369,225014560,1970276618,1679845491,151653737,1819042147,1869116192,225472375,1869613322,1768169584,1778977293,1679847533,221327969,990514442,539831597,1701736260,1953068832,1852383336,1970435187,1869182051,538979950,1935766085,1752440933,1769152613,1763730810,1667851374,1919906913,1718165548,1886413088,1919971186,1702125929,218762542,845243402,168639032,1987013897,746087200,2053731163,1668246629,151653725,2054710122,845243424,151609912,543582523,1919248500,1635197029,1869488243,2053731104,1768366181,225338742,1869416714,1818304630,1768184620,1634494067,224228199,1702103306,1629516915,1229204588,1598644051,1464813651,224020819,1852442890,1633951866,157431858,1718172425,543520544,1684366702,544175136,2003789939,1701344288,2053731104,151653733,1953719668,745300256,1599293764,1313562441,1230198607,151653722,1679850090,1647850081,1765476617,1752440934,1769152613,1763730810,1869488243,1852514420,544110447,1701997665,226059361,1668811018,1663068008,1768172664,1829308941,1931507311,1768172649,1933248777,543520353,543452271,168651108,1987013897,745300256,220667943,977289226,1929972237,1651728739,990447881,1885956979,2053731104,1634607205,168650093,1701734921,155336736,1765476617,1869488230,1868832884,2032166254,168653925,151587081,1750345787,1650532453,543520367,1948283753,1931502952,543518049,1914729313,1701736549]},{"sector":6,"length":512,"data":[1633907488,539779699,225736034,151587082,1634220809,1869488243,1717986592,544498533,1663069807,220802680,1684080906,1768169572,151598124,1768649531,1344741488,656429652,2013858317,543647843,1680632179,151653737,543323507,1932294243,151653737,544236914,1937141613,990447970,1702260589,1701344288,1852402720,218762597,757938954,1867391021,1702305911,543519271,1818322290,1679849836,778399343,1917853728,544501353,544503151,543516788,1702132066,1852776563,1701344288,1717922848,168636020,1633946125,979515442,1879640589,543716213,153119076,1919957769,544501353,1918989427,1718558836,1936286752,1702064993,2037146221,1852402720,151653733,544632685,1865181540,1702061670,1768693876,1868522862,168653941,1987013897,746086688,1633645915,728917092,990469428,1852404336,1684086900,1936028260,151653747,1819042147,2019911712,1685221239,1829308941,1629517423,975645804,151653671,1936684147,151653730,1702521203,1483108976,1832585481,1696626287,1529641057,1684103029,808153700,151653725,544632685,1529641057,1684103029,808153700,1762266461,1346314342,151653709,544632685,1747741043,1870100581,168649842,1936028681,1650139252,1950438211,744321652,224931892,2053769482,222707744,1869416714,1769152630,2019911724,1919907684,1074400612,168639040,1818321673,1769152620,1818561037,168650099,1818321673,1701322860,1919907704,1695157604,1718183022,1829308941,1629517423,539438188]},{"sector":7,"length":512,"data":[151653671,1936684147,151653730,544632685,1529641058,1601399140,168648046,221921344,1869416714,1769152630,1717989164,544499059,1701734764,1953853279,1162759467,1330532173,757093190,168636704,1651864329,745108256,168651108,1919447817,745108256,151653681,544238947,1932294242,151653737,543517802,959603044,1765476617,1953046630,1629516583,1869116192,1763734642,1920234350,1769235317,1998614127,1751345512,1953064480,1852383347,1701736224,1852402720,151653733,543323507,1932294242,151653737,1752397168,225993248,1869416714,2019696758,225014572,1970276618,1679845491,151653737,1819042147,1936286752,2003789939,1702132066,151653747,1819042147,1953853472,1852402803,151653733,544239472,168654947,1886351369,225993248,1869416714,1768169590,1717989164,544499059,1701734764,1953853279,1929972237,1663066741,1768172664,1829308941,1629517423,539438188,151653671,544236914,1936684147,151653730,544238954,168641088,959603044,151653690,1819042147,1936286752,2003789939,1702132066,1678380403,976237409,1829308941,1629517423,539438188,990447911,543449456,1864396660,1685021552,151653733,544632685,1865185379,1702061670,1768693876,1868522862,1294693493,1330464078,1397116750,1929972237,1663066741,1768172664,1778977293,1178607715,1913195021,1931505765,1651732340,1077938701,151653690,544239472,168651108,1936028681,1683693684,1818653545,1567844193,1229201452,1598644051,1398099541]},{"sector":8,"length":512,"data":[168641605,544893449,842228068,990447904,1998612073,1868832869,544483182,1852404336,539435124,1970173224,694445427,151653671,544632685,1865181555,1702061670,1853169780,1684370293,1661536781,1646293101,543519865,544371824,761881691,657218865,168634144,1701734921,862020640,990447921,1948280425,1701995880,1629516583,1634038380,1629518180,1634759456,1746953571,224752229,1852377354,1769152611,1633946125,221917491,1633880330,1663069292,1937338479,1852404340,990453863,1043163507,168651108,842228068,1762266426,1330454630,1163085124,1145914196,168626701,757935419,1769099296,1763734638,779052654,544108320,1768843629,543973741,1668248176,1869837157,1701716082,1684366437,218762542,1869416714,1885479030,1717989164,544499059,1651466084,1650553971,1651456777,1701605235,1763730804,1920234350,1769235317,1948282479,1701601889,1661536781,543976545,2003789939,1751343469,1933248777,544698216,543516788,1751343469,543518313,1701869940,1718165548,1701146144,224683364,1667893514,1679850104,1714565985,1765476617,1869488230,1936026912,1701273971,168626701,757935419,1769099296,1629516910,1936026912,1701273971,544108320,543516788,544366950,1751607666,168636020,1829308941,1629517423,1718561912,1952805734,1852402720,1970233189,959916916,1929972237,1629512309,2019765368,1879640589,543716213,168654947,1818321673,1635000428,1869897570,1950025993,1864393313,1948284021,1752440943]},{"sector":9,"length":512,"data":[1869357157,1769234787,168652399,1886351369,225993504,1701972234,1869422704,157447030,1868774153,1948285296,1931502952,1852404340,151653735,544238954,842228068,990447994,1701736292,1852115469,224815460,990514442,539831597,1886221636,1717924384,1852142181,543450467,1869440365,1814067570,1952539503,778989417,168626701,842228068,168639078,1987013897,745300256,1936286811,1734437990,168648051,1919907849,745300256,1599293764,1213423430,723539791,1397310496,1398753631,223825736,1702103306,1629516915,1229204588,1598447443,1464813651,1142958880,1230984009,1330139999,151653719,544894570,842228068,990447994,1948280425,1701995880,544434464,1830842222,1919905125,1869357177,1769234787,1948282479,1752375407,168654703,1886216969,1684626208,1936615800,1681402973,151653736,1679844714,2050110305,1765476617,1701584998,151653729,544632685,1865185377,1702061670,1768693876,1868522862,925594741,808529209,1661536781,1646293101,543519865,544371824,1852402779,1970233189,1313680244,1313819973,1565738575,659302188,1778977293,1075864942,151653702,544238947,1685221239,1920233504,1768708896,1868522862,841708661,1162759467,1330532173,744313670,659759143,1778977293,1075864942,151587142,543582523,544501614,745759852,745760108,745760364,745760620,225669996,1970473226,2019631202,168637484,154812480,544238947,1936552539,1566931561,168636460,543975945,842228068,990447976]}],[{"sector":1,"length":512,"data":[1646290537,224752761,2053769482,862020640,151611186,543582523,1685221239,1929972237,1629512309,221523064,862020618,221931314,1701054730,2019631203,1678313997,1629512549,1678380408,1748120417,151653690,544632685,1630302306,990447992,1702257011,1953853216,544503152,1852403568,225600884,1633880330,1948281964,1952408161,151653743,1819042147,1869116192,1734701943,1933248777,544698216,1835492723,544501349,1768383858,1919251571,1829308941,1629517423,1633365112,1920099428,151653725,544632685,1630304356,990447992,1702257011,1717989152,225731955,1633880330,1746955372,1870100581,151610482,1869116219,1718558839,1952805734,1829308941,1629517423,1025977452,151653671,1936684147,151653730,544632685,1529637985,1835492723,542995566,1702050569,1852140903,1970151540,1919246957,1661536781,168654690,1818784521,746086688,151653681,1734894456,746086688,151615586,1987013947,746086944,168654945,1987013897,746086944,1734701915,1684105074,1647014500,990469496,544499047,1919181921,544437093,1981834863,1702194273,1879640589,543716213,168653668,1987013897,745759776,1568170587,1829308941,1646294639,2019830904,1815808265,543449455,1936090735,168653925,1886216969,745562656,1936090735,1814066277,1600482921,729052527,825047351,151653680,1679844714,1798452065,1765476617,2036473958,168650100,1886216969,745562656,1936090735,1814066277,1600482921,729052527,825047351,151653686]},{"sector":2,"length":512,"data":[1679843690,1781674849,1765476617,1870078054,168649842,543517193,842228068,990447977,1679844969,1685221239,1829308941,1629517423,1650142316,1563700088,1631258889,1684631414,1869423136,2019631222,825056044,168632925,1987013897,745038112,729309787,168647989,1818321673,1701322860,1919907704,1678380388,1764897633,151653690,544632685,1529637985,841709666,990447965,1768912481,1830953060,1629517423,760949880,220355889,1869416714,1751195766,2019711788,224211755,1633880330,1746955372,1870100581,168649842,842228068,168639082,1987013897,745300256,729309787,151608624,1870029115,572548201,544632685,1529641057,576532781,1829308941,1629517423,1650142312,1563503480,1661536781,543976545,2004378984,224686703,1835665674,1633951856,158937651,1868839689,168650094,842228068,168639083,1987013897,745300256,729309787,168647984,1818321673,1701322860,1954112120,990447973,1886611812,544825708,1702132066,1633946125,981021235,1879640589,1679847535,1678380403,2050110305,151653690,1819042147,1769108512,1953853549,990447987,1701736292,1953068832,1886330984,1851880037,1768693860,168653939,1987013897,745300256,1936286811,1734437990,168648051,1936028681,1818304628,1397310508,1381975647,223629381,2053769482,862020640,151593012,543582523,1915184503,1869488229,1818304628,1702326124,1869881444,1885696544,544498021,1936881007,1702259813,151653747,1953719668,745300256,1599293764]},{"sector":3,"length":512,"data":[1314217801,1145394005,1778977293,1679850094,154350433,1718172425,543520544,1852404336,543450484,1965563943,1702065518,220670308,1869416714,2019631222,1684626220,1936615800,151653725,544238947,824997985,168650807,543517193,859005284,990447904,1763731049,1635197044,1881612403,1931505775,168634227,1886216969,746086688,224945464,1701447946,862020640,151593011,543582523,1998615657,656438113,544632685,757887859,168634157,1886216969,746086688,1751279152,1778977293,1679844718,154415969,1718172425,544500000,544432503,544501614,1769239335,1678380327,976434017,1778977293,1679847533,1935766377,168636781,875782500,151653690,225731954,990514442,539831597,1701995848,1701994784,1701344288,1970237984,1701734772,1868963955,1919950962,1769238121,1864394606,1948284021,1864394088,1634887024,544433262,1835362420,1986815347,221148005,990514442,539831597,541347661,541929298,1599098664,220810578,1678380298,1918857327,168639085,1818321673,1701257324,1734701684,225273197,1835206922,1818304624,811806764,151653736,1679843946,892366959,1778977293,1679847533,859009135,1765476617,1970282598,1914725746,1936287589,544367988,1701209458,1668179314,1678380389,892366959,151587130,758921993,1965042989,543450483,1327528290,743268176,1599098656,741619277,1599098656,221263949,1633880330,1931504748,1937207144,157645417,1919957769,544501353,544503151,1702521203,544106784]},{"sector":4,"length":512,"data":[168642625,812674916,151599670,1010501897,539831597,1684370293,544825888,1298092111,1397114447,1347362860,1482181983,1347362860,1279675743,743719247,1599098656,1431258189,222645314,1919879434,1919965984,1702065509,1345084772,1163085138,1849362759,1701078373,1986338916,1763733093,1752440934,660959845,1869488243,1734701856,1953391981,1702260512,1684632178,151653733,990447881,1633903970,543519605,1684955496,1735289196,543584032,1262702412,1701998624,544762214,1768711538,1864397669,1953046638,1946749453,544502629,1701998683,1734437990,1345084787,1163085138,151653703,1075870314,151587142,543582523,1931505518,1701668709,1864397934,1920099702,224748649,1633880330,1931504748,1937207144,151611237,1769107515,1931506798,1701668709,1847620718,224750945,977289226,1829308941,1629517423,1633365100,1701981801,1835363687,151653725,543452769,808217697,224933731,1919879434,1919965984,1702065509,1345084772,842220882,151653697,1953719668,1919965984,1634494053,744321895,860181072,168640818,544893449,168642112,1886218761,1886348320,151599153,543582523,1647129139,1629516905,1701995620,1852404595,1074400615,168639040,544370441,1936286811,1734437990,539778419,1599293764,1213423433,990467919,1680303479,1802071072,1869881445,1869116192,1752440951,1629516649,1701995620,168653683,1987013897,1919907616,1953505380,1633362034,1920099428,154152029,1702509321,1864396658,1948284021]},{"sector":5,"length":512,"data":[1629513064,1701995620,1763734387,1769236846,2037148769,1661536781,1629515885,221654124,1668811018,1629513576,2019699832,1832585481,1646294639,2019634296,1829308941,1629517423,1529293932,151653671,1936684147,151653730,1679844714,909209711,1765476617,2019237990,1568176248,1627982349,1646290030,221719672,1869416714,1818370166,1836210988,727867764,224229474,1702103306,1646294131,221785196,1852442890,1868832890,154742896,1718172425,223887904,1702103306,1646294131,221523052,2053769482,1886348320,151597361,543582523,544501614,168644674,1987013897,746086688,658657319,1829308941,1663071855,1918577784,779315045,1565540978,1946749453,544502629,1701998683,1734437990,1345084787,1163085138,151653703,544894570,829452132,990447920,1931503209,1701668709,1864397934,1920099702,224748649,1701054730,1935351907,1852663653,151608692,1717920827,1953264993,544434464,544698222,168645459,1886218761,1886348320,168636465,1868827149,976826480,1829308941,1629517423,1478962296,151594818,223887931,1869416714,2019762294,1701993260,1915646823,224221250,1678380298,808546415,151653690,544632685,1684300123,744321650,151615587,1769107515,1763734638,1970217076,1696607348,221143924,1953696010,225932143,1702103306,1646294131,724708460,151653681,1679850090,858878063,1765476617,1868832870,168650094,1987013897,745300256,220670759,1953696010,224555887,1886348298,221917489,1869416714]},{"sector":6,"length":512,"data":[2019631222,1397303084,990447911,222251347,1869416714,2019762294,1701993260,1915646823,224217427,1702103306,1646294131,221326444,2053769482,155598880,1765476617,1230184550,1829308941,1629517423,1143417964,990447911,168642884,1987013897,746087200,1734701659,1148333683,168648009,221921344,1684080906,1633362020,1920099428,2019765341,1882917129,1953393010,544500000,745829743,1668572448,151653678,1936684147,1678380407,858878063,151653690,1953719668,1954112032,1953505381,1633362034,1701981801,1835363687,1664101469,168650800,544893449,829452132,990447927,1847617129,1768169583,1634496627,1701668195,168653934,1936028681,2036473972,1881171316,1528853108,1915644257,1701668709,942431597,168650800,2054056457,1886348320,151598385,543582523,1685221239,1936286752,1667329136,1852140901,151653748,1819042147,1936286752,1651795303,224752761,1650657546,151653751,543450209,1684300123,744321650,168654945,1886216969,745300256,151653680,544632685,657221729,168634155,1701276169,155598880,1765476617,1027481702,168636448,1987013897,745038112,220671271,1701710090,1818304615,1077938701,151653690,544632685,1567188059,224944428,1852377354,1768169571,1661536781,543976545,1652057448,157643897,1919957769,544501353,543516788,1702132066,1936286752,1667329136,1852140901,151653748,544238954,829452132,990447927,1701736292,168626701,829452132,168639029,1987013897,745300256]},{"sector":7,"length":512,"data":[220670759,1953696010,224555887,1886348298,221918769,1633880330,1679846508,1701278569,1919907700,151653732,543450209,1684300123,744321650,168654945,1818321673,1701322860,1919907704,990447972,1852404336,1870078068,1679844466,1819308905,1835361121,225734245,1678380298,925986927,151653690,544632685,657222753,168634205,1869902601,168649331,1952805385,168626701,757935419,758264608,544500066,541347661,541541714,541929298,1919181921,1769173861,221144942,1678380298,942764143,151653690,544238947,892103777,1778977293,1075864942,151587142,543582523,544501614,1953723754,1679843616,863007593,1684086834,1936028260,151653747,544632685,657222753,168634203,1869902601,168649331,1818321673,1768169580,842231923,1681590537,1819308905,857766241,1768041778,1718558836,1952805734,1778977293,1679847533,926052463,168626701,221921344,1970276618,1629513843,151653752,543452769,925658209,1661536781,1629515885,221523052,1852442890,1178607717,990447881,1847617129,1230184559,151653698,1819042147,1936286752,1651795303,543519865,1701264137,1851859060,1634934884,1763730806,151653748,544632685,778658139,1650616691,1566930041,225206572,977289226,1879640589,1629515887,151653752,1953719668,745300256,224931896,1852442890,1868832890,154284656,1718172425,1936286752,221393776,1702103306,1629516915,808725612,151653736,1679850090,858943599,1765476617,1869488230,1936286752]},{"sector":8,"length":512,"data":[168638576,1818321673,1768169580,1952802675,1702132066,1661536781,1629515885,221260908,1735002378,1178607717,990447881,1042310761,221257789,1701710090,1818304615,1829308941,1646294639,543519865,544371824,1567188059,657270572,1762200077,1679844206,1074400617,168639040,1818321673,1701322860,1954112120,151653733,544238954,846229348,990447923,1701736292,168626701,846229348,168639026,1818321673,1768169580,842231923,1882917129,1953393010,1936286752,221393776,1678380298,858943599,151653690,544632685,1529637985,1915644257,1701668709,168648045,1684955401,745300256,151653687,544238947,875326561,1778977293,1679844718,942829679,1765476617,1869488230,1112101664,1829308941,1629517423,1633365100,1769156201,1954112098,168648037,824206953,151587081,1735746107,980969830,1801547040,1965498469,1868767271,1667592818,544828532,1684955496,1528849772,1565545285,1397054252,1568156496,1661536781,1629515885,875703404,151653736,544894570,168642112,1987013897,745300256,151653684,544238954,846229348,1074400568,168639040,1768189541,151653734,543452769,925658209,1661536781,1629515885,221588588,1852442890,1178607717,990447881,1847617129,1528853615,1565540933,1946749453,544502629,1702132066,1920233504,1767988000,1734701614,1567450477,811806764,151653736,544894570,151602752,1718172425,1146047776,540877088,151653680,1819042147,1936286752,154284912,1752382217,857765743]},{"sector":9,"length":512,"data":[1768041778,1768169588,1634496627,1701668195,1763734638,1702130542,1864393825,1163599974,224219202,1835665674,1868832880,221590128,1074400522,168639040,1987013897,1919907616,1953505380,1683693682,657218921,220683077,1852377354,1768169571,1762200077,1679844206,151653737,1819042147,1869116192,1734701687,151598641,1869116219,909189239,1953063469,1734701600,1702130537,1634607218,673211757,1651340654,1763734117,1279336558,151653673,544632685,657222753,168634205,1869902601,168649331,1868827149,976564848,1829308941,1629517423,1633365100,1769156201,1954112098,168648037,1919447817,745300256,151653681,544368755,824994913,1929972237,1629516392,221326444,1851853066,1818304612,168638252,1886216969,745300256,151653684,1679844714,1633842025,151597412,543582523,1701604457,225206631,1869416714,1870078070,1881171058,1528853108,744319332,660292903,1762200077,1679844206,151653737,543387241,168651108,1818321673,1752375404,1702000495,221655399,1869416714,1751195766,1767988012,1651077934,1702132066,151653725,1953719668,745038112,1748001584,1778977293,1868832890,154612336,1718172425,542331680,221257789,1869416714,1818304630,657073964,1929972237,1651732340,1829308941,1629517423,841428076,151653671,1953719668,745038112,224931896,2053769482,155598880,1765476617,841621606,1829308941,1629517423,874982508,151653671,1953719668,745038112,224931892,2053769482,155598880]}]],[[{"sector":1,"length":512,"data":[1765476617,875176038,1829308941,1629517423,942091372,1074400551,168639040,1869902601,168649331,846229348,168639031,1987013897,745300256,220683559,1953696010,224555887,1701972234,218762612,757938954,842211373,1953063469,1684300064,1936942450,543649385,1752459639,544503151,222447955,1678380298,942829679,151653690,544632685,1685221239,1920233504,1768184608,1160195165,168634203,1668180233,225010720,1852377354,1768169571,1661536781,543976545,2003789939,828859762,151653686,544632685,657222753,168634205,1869902601,168649331,1952805385,168626701,757935419,1835355424,762933871,2037149295,1717924384,1852142181,673211747,1298092111,218762537,1886348298,221932895,1633880330,1730178156,1701999717,1835363687,1661536781,1629515885,1664101484,168650800,1700882953,1936286752,828662114,1765476617,1953046630,1629516583,1734701600,1702130537,1701978226,1701995878,224748398,1835665674,1868832880,221589616,1678380298,1633842025,221917540,1835665674,1768169584,1684103795,1950025993,544434536,1847620457,1931506799,1869639797,543450483,1746956148,1701867617,218762606,757938954,1699881005,1953720679,1914729061,1919247973,1701015141,1869768224,1330454637,793911364,1634738253,673215602,1381978191,1146047839,218762537,1886348298,1834971743,221930607,1633880330,1730178156,1701999717,1835363687,1718159885,168636448,1868832827,1601331056,543453037,1864397673,544828526]},{"sector":2,"length":512,"data":[1684370293,1919903264,1448037664,2018657056,2018657327,2018661423,1768453920,1763731555,1919905383,1830843237,1646290031,225670249,1835206922,1818304624,811806764,151653736,1679843946,1633842025,151597412,543582523,1931965545,1830838560,1919905125,1701978233,1701995878,224748398,1684956426,168650345,1886218761,1886348320,168637235,758843917,1293954349,1919905125,1718558841,1952805734,1717924384,1852142181,673211747,1298092111,1397114447,218762537,1886348298,1718578527,221934438,1633880330,1931504748,1937207144,157645417,1919957769,544501353,543516788,1702521203,1684955424,1986097952,1635131493,1970235762,1752440947,1936158313,1829308941,1629517423,221588588,1702103306,1528853619,1717924464,1936154988,1380985949,1093808965,1778977293,1075870318,151587142,543582523,1647129139,1629516905,1701995620,1852404595,151653735,543387241,168654945,221921344,1869416714,1633362038,1701981801,1835363687,1818307677,1778977293,1679847533,909144175,1681590537,1948741231,1869116192,1769152631,168650106,758843917,1344285997,543519349,1768383858,1919251571,1717924384,1852142181,673211747,1381978191,218762537,1886348298,221934175,1633880330,1730178156,1701999717,1835363687,168653407,1868827149,976434032,151587081,757939259,1937055789,1646290021,1347362937,743264863,1599098656,1330470738,1851859012,1347362916,1096766047,168641604,1684955401,745300256,990447927,1920233061]},{"sector":3,"length":512,"data":[1869619321,544501353,544370534,1936156018,1869768224,1330454637,793911364,1629498445,1864393838,1919248500,151653747,544632685,1529637987,1718839652,1936154988,168647986,544370441,1936286811,1734437990,1663851891,1765476716,1953046630,1935767328,1918989856,1818386793,1769152613,1864394106,1634887024,539780206,543516788,1702521203,151587341,1933248777,1819635560,1869488228,1700929655,1918987552,543450475,1797288801,1853321070,151653678,544238947,808216673,1778977293,1868832876,154481520,1718172425,1954112032,1701978213,1953720679,168653413,544893449,863006564,990447924,1998612073,543453807,1768383858,1919251571,1661536781,1629515885,808594536,990447976,1919907697,1701978212,1953720679,673215077,695758189,151653695,1679850090,1834971247,221345901,1869416714,2036473974,1881171316,1528853108,744319332,220677415,1852377354,1768169571,1868827149,976499568,1627982349,1629512804,221785196,1886348298,221918515,1650657546,151653751,543975539,824997985,2013858317,543647843,1647081569,990447992,544632685,1630304354,151653752,544632685,1999403105,543453807,544371824,1852273243,825781601,2019699510,1731922269,1948284005,1914725736,1936287589,544367988,1701667182,1929972237,2004053876,1913195021,168653925,758843917,1394617645,544698216,544755021,543647090,1599098664,693652813,168626701,1601204068,980970861,1661536781,543976545,1920230759,1701668709]},{"sector":4,"length":512,"data":[225599341,1886348298,2020437343,168639025,1987013897,746086944,659377447,1778977293,1679847533,892694639,168626701,757935419,1734693408,1702130537,1970151538,1919246957,1651336480,1701078117,1852383332,1701344288,1936615712,1668641396,1852795252,1347364896,1096766047,220808260,1678380298,1918857327,1684300127,151653690,544632685,1529637985,1953721961,224228722,1835665674,1868832880,221459312,990514442,539831597,1864387649,1480663154,544370464,542654789,1599098664,220813377,1678380298,1633644655,168639096,1987013897,745300256,151653680,544238954,863006564,218762547,757938954,1464934445,541348431,544040301,1599098664,691287629,990514478,539831597,1936287860,1701867296,1684955506,1887007776,1936269413,1702065440,2036473956,990514490,539831597,1835212843,1751349360,224540775,757938954,539697197,1684826470,1768300588,225473651,1678380298,1834971247,221918262,1829321482,1629517423,1361521784,990447911,1852404336,1361518708,657137703,1146244951,151653671,544632685,841771105,151611440,2053731131,1464934501,222581327,1835665674,1868832880,221262960,990514442,539831597,1095715910,1026039892,1279346002,1830824244,673213797,1298092111,1095715910,221129044,1678380298,1834971247,1634692198,168639092,1987013897,746086688,658918439,1929972237,2004053876,1829308941,1629517423,1327967340,151653671,1936684147,151653730,544632685,657225825,220676436]},{"sector":5,"length":512,"data":[1835665674,1868832880,1664627568,168626701,757935419,1431258144,541412418,1163017512,691555393,1835363616,1347364896,1329876319,1162625621,168635945,1868827149,1684889456,1818391919,168639077,1987013897,746086688,658788135,1929972237,2004053876,1829308941,1629517423,1109863544,168634197,1869902601,168654707,1987013897,746086688,659309863,1868827149,1664627568,151653690,1936684147,151653751,1819042147,1869116192,1920233591,1778977293,1679847533,842297455,218762593,757938954,1112809517,541414489,1163017512,808537153,1701650473,1328029805,944594768,221129008,1678380298,1834971247,221917240,1869416714,2019631222,1717973036,728248368,153572391,1769107515,656438382,723527540,2036475680,220685684,1953696010,224555887,1886348298,221917236,1633880330,1730178156,1701999717,1835363687,1661536781,1629515885,1664101484,168650800,1700882953,1936286752,895770978,1765476617,1953046630,1629516583,1734701600,1702130537,1701978226,1701995878,224748398,1851853066,1683693668,1818653545,1567844193,1953459756,1397310496,1398752863,156716872,1852793915,1931506727,544698216,1936287860,1778977293,1679847533,892366959,168626701,757935419,1918985760,1835363616,544830063,1599098664,1297236294,774458693,758843917,1948265773,544434536,1696625513,1701344361,543236210,827474246,1143480374,1146244951,1919885353,1380009504,673198643,1380931398,1881155908,1953393007,168653413]},{"sector":6,"length":512,"data":[1868827149,1634099056,1835363698,151653690,1819042147,1936286752,862677091,168649778,807429737,1778977293,1178607738,990447881,1847617129,1679848559,1685221239,1918985760,1661536781,543976545,2003789939,224687972,1970473226,1768169570,151598124,1634886971,572548467,542266448,1074400546,168639040,1768189541,151653734,544632685,657225825,153568833,1953708809,543519343,1380009506,168632864,1869902601,168654707,1987013897,746086688,659693607,1929972237,2004053876,1829308941,1528854127,1769172338,744318330,153118817,1801547067,1769152613,1679844730,1685221239,1919903264,1835363616,544830063,1701209458,1668179314,1768169573,1634496627,151653753,544238954,879783780,168649010,758843917,1830825261,673213797,1298092111,774461528,168626701,1601204068,980973677,1627982349,1528849518,1718839652,1936154988,1869491293,1229201524,1598447443,1464813651,1868839689,544483182,2003789939,1768453152,1678380403,842297455,168639073,1818321673,1701257324,1734701684,225273197,1835206922,1818304624,811806764,151653736,543514986,1651730788,154494049,1718172425,661940512,543236211,1768383858,1919251571,1717924384,1852142181,168650083,1886218761,1886348320,151598640,1852793915,1931506727,544698216,1702521203,168626701,1651730788,976577633,1778977293,1679847533,1633842025,218762596,757938954,1634082861,1835606130,1768187245,543519841,1599098664,1230127430,774458701]},{"sector":7,"length":512,"data":[1953056032,544367976,827474246,1919885366,1380009504,168636979,1868827149,1634099056,1835886962,151653690,1819042147,1936286752,2004116839,224686703,1970276618,1629513843,151653752,1819042147,1936286752,862677091,168649778,544893449,151602752,1718172425,1953459744,758264608,544500066,1919181921,225669989,1633880330,1679846508,1701278569,1919907700,151653732,1752397168,225992992,977289226,1661536781,543976545,1735616868,1870099557,168649842,1818321673,1701322860,1919907704,151653732,544632685,657222753,168634170,1869902601,168649331,1818321673,1768169580,1802003315,224670259,2053769482,155598880,1765476617,1869488230,842211444,1953063469,1684300064,1936942450,1879640589,1629515887,151653752,1819042147,2019911712,1685221239,1077938701,151653690,544239472,168654945,1886218761,2019911712,1685221239,1664813321,543976545,2004378984,543453807,543452769,1970562418,168652402,758843917,941632813,1953063469,1818587680,1986622561,1969889381,673214573,1381978191,691555397,168626701,1601204068,946627954,151653690,1819042147,1936286752,1651795303,224752761,1650657546,151653751,544238954,879783780,218762552,757938954,909189165,758264623,544500066,1634493810,1702259060,1836411424,1328029808,1163026256,859189580,168634674,1868827149,1701994352,859189612,168639026,1818321673,1768169580,1952802675,1685221239,1661536781,543976545,1668508004,842230632]},{"sector":8,"length":512,"data":[151653732,1679850090,942960751,1765476617,1869488230,842211444,1953063469,1717989152,225731955,1970276618,1629513843,1762266488,1346314342,151653709,1953719668,1130519328,1953775955,875322738,990472240,544370534,1647129139,1663071337,543515759,1835492723,1937010277,1778977293,1679850094,926183535,151597407,544173627,1684366702,544175136,1886611812,544825708,1331119138,572539986,1852115469,224815460,1633880330,1931504748,1685548904,168649847,1651864329,745104416,990447924,1935766117,1344413797,572543572,1868827149,1597453424,168639025,1886351369,225993760,1633880330,1679846508,1701278569,1919907700,151653732,544632685,1529641058,1684103029,808153700,151653725,543450209,1529641058,1601399140,168648046,1684300041,746087456,168654946,1667522825,746086688,1633645915,728917092,168647986,1818321673,1701322860,1919907704,151653732,1734894456,746086688,168654948,1886218761,2019911712,1685221239,1664813321,543976545,2004378984,543453807,543452769,1970562418,168652402,1868827149,976761968,1718159885,1297104672,1946749453,544502629,1396925019,1920234561,808725597,151653736,544894570,168642112,1768189541,151653734,543450209,1529641057,1684103029,224227940,1684080906,2019631204,1768184620,1567514483,1778977293,1746956397,1870100581,151610482,1818321723,1701322860,1919907704,1851859044,1701978212,1852994932,1718159885,1297104672,1077938701,151653690]},{"sector":9,"length":512,"data":[909652782,1661536781,157639799,1027279113,1937141613,1634017400,2019634296,1627982349,1696621668,1680636001,1685221239,1920233504,1601526560,1919181921,151653725,543450209,746086757,1919907684,1953505380,1683693682,1851749225,151653725,544238954,1685611880,1685221239,772344333,909652024,1852115469,224815460,990514442,539831597,1667590211,1868963947,1414733938,539570472,1599098664,1263026993,168635945,1868827149,976827504,1879640589,1629515887,151587192,1936286779,1685217635,1952805408,544109173,1919181921,225669989,1869416714,1818304630,1767988012,1734701614,1567450477,1627982349,1629512814,221719660,1835206922,1818304624,168636716,543517193,896560996,990447920,1763731049,544417652,824726611,151653673,544238954,875651428,1631258889,1752461166,1864397413,1634887024,673211502,544503138,1663070062,1634561391,218762537,1886348298,221917237,1835665674,1633951856,151597362,1684956475,543584032,1953720684,168626701,757935419,676614944,673196361,1398755407,774457684,168626701,1601204068,979989619,1829308941,1629517423,1633365100,1701981801,1835363687,151653725,543452769,925658209,2013858317,543647843,1647081569,990447992,544632685,1630304354,151653752,544632685,657225825,220681044,1953696010,158823279,1933248777,1701998452,676614944,220818530,1869416714,1818304630,656942892,1929972237,1651732340,1829308941,1629517423,690433144,168634160]}],[{"sector":1,"length":512,"data":[544370441,1647078497,151653740,1936684147,151653751,225731954,990514442,539831597,544756291,1599098664,774459971,168626701,1601204068,221934179,1633880330,1730178156,1701999717,1835363687,168653407,1987013897,746086944,658723367,1661536781,1629515885,221523052,1634339082,1936286752,878993762,1765476617,1869881446,1634476143,224749426,1852442890,1178607717,1829308941,1528854127,1680763233,1634562921,744319075,1127942453,1763718226,1701716083,1869881463,1701344288,909653280,1077938701,151653690,544238947,824994913,1778977293,1679844718,892694639,1765476617,1869488230,1380130932,218762545,1936286730,878993762,151653690,544238954,1651730788,151610465,1851876155,1629516839,1936024419,1380130931,218762545,757938954,1380196397,1328029816,1380212560,168635945,1868827149,1919180656,151653690,1819042147,1952802592,1835492722,1918856549,1829308941,1646294639,1378299000,168634180,1886218761,1886348320,168637749,758843917,1411394861,673216594,1415532623,221129042,1678380298,1952411759,168639090,1818321673,1701257324,1734701684,1601004909,151653746,544238947,858549345,1778977293,1768169570,1684103795,990447924,1948280425,1931505519,1819042157,1661536781,1629515885,221654124,1634339082,1178607717,990447881,1411409513,925709906,1829308941,1528854127,1680763233,1634562921,744319075,1413155124,892154706,1701994784,2003136032,544175136,543516788,221657140]},{"sector":2,"length":512,"data":[977289226,1829308941,1646294639,1378299000,168634196,1868827149,976565616,2013858317,543647843,1647081569,151653752,1936684147,151587191,1869902651,1478518130,151653720,1734894456,746086688,168654946,544370441,657222753,168634160,1869902601,168649331,1952805385,168626701,757935419,1734693664,1953391981,1734701600,1702130537,1328029810,1163091792,1195725383,168635945,1868827149,1702059888,1734701671,151653690,1819042147,1952802592,1835492722,1918856549,1661536781,1629515885,221654124,1634339082,1768169573,1684103795,1765476617,1869488230,543236212,1835492723,544501349,1768383858,1919251571,1661536781,1629515885,221391980,1701447946,155598880,1765476617,1397956710,1627982349,1528849518,1718839652,1936154988,1869491293,1229201524,1598447443,1414546770,1818442505,544366949,1734437990,1868832826,544483182,1701864818,168653921,221921344,1835206922,1818304624,168637484,543320585,151602752,1718172425,1953459744,542328352,1193308783,151653715,544632685,778658139,1836280164,1567122273,990458668,544173608,544695662,758528052,540424246,1953721961,1952675186,1936617321,1986947360,1702259823,1734701856,1734701600,168634739,221921344,1684080906,1818304612,221655340,1919879434,1768184608,1634494067,744321895,1599293764,1313562441,1230198607,1631258970,1684366436,1919903264,774993440,168638002,1886218761,1886348320,151598387,544171835,1852404336,1953046644]},{"sector":3,"length":512,"data":[1953853216,168626701,757935419,1734955808,2019896686,1684956532,1763730533,1684368749,1702125929,1954112032,1328029797,1296654160,691557197,1881284654,543716213,220362872,1678380298,1767862383,947088749,151653690,1819042147,1936286752,1651795303,224752761,1835206922,1818304624,168636460,1751349257,2019631207,158884396,1869429513,1818370166,225206572,1869416714,1818304630,657139500,1778977293,1075864935,151587142,543582523,807419198,1846086157,1646290789,151653740,544632685,657222753,168634157,221921344,1953696010,224555887,1668811018,1629513576,2019699832,1832585481,1629517423,1818373228,1778977293,1679847533,959803503,990447969,1819042147,2019911712,1702132066,1684955424,1952805408,225342069,990514442,539831597,1701670217,1952541028,1633951845,673210740,1230983247,220810573,1678380298,1767862383,221932909,1835206922,1751195760,168636460,543975945,1601204068,946695529,1765476617,1969889382,1629516915,1954112032,151653733,1752397168,151653734,1953719668,1768184608,1634494067,744321895,1599293764,1213423433,1230198607,151653722,1075870314,151587142,543582523,1679844727,1948741231,1701146144,1869881444,1869116192,1752440951,1769152613,168650106,1818321673,1752375404,1769174895,151610746,1769107515,1931506798,543521385,1092644457,151653704,543323507,875325796,1698367753,1702060402,1414537760,220340306,977289226,1661536781,543976545,1735616868]},{"sector":4,"length":512,"data":[1870099557,168649842,1886351369,151653734,1075870314,151587142,543582523,1953723754,1998610720,224686703,1970276618,1629513843,151653752,1819042147,1936286752,2004116839,543453807,1919957769,544501353,543516788,1751607656,1685221152,1998615141,224686703,1633880330,1746955372,1870100581,168649842,1886351369,225992992,977289226,1778977293,1746956397,1870100581,151610482,1818321723,1701322860,1919907704,1851859044,1701978212,1852994932,168626701,757935419,1835878688,1634296933,1646290292,543519865,1599098664,944590153,168635945,1868827149,1835622256,221919341,1633880330,1679846508,1701278569,1954112116,990453861,1852404336,1835606132,1768187245,543519841,1702132066,1868827149,1631139184,151653690,544238954,1652057448,157643897,1633893129,1746955372,2036496485,1629513076,1914725486,1920300133,218762606,757938954,1699946541,1818632308,1948280673,1818304623,1937334647,1869116192,1769152631,673211770,1398755407,1230196552,221129050,1678380298,1935634543,1769172840,168639098,544370441,1936286811,1734437990,1143758195,1230984009,1330139999,1514754903,1868827149,1630549616,151653690,544239472,151615585,1768176393,1918985075,1701978212,1852994932,1684300064,1936942450,1778977293,1679847533,154415457,1701722889,774796408,218762542,1936286730,979657058,1829308941,1931507311,1935354992,1936029281,157102704,1886351419,1853188640,1718558827,1953701990,225141601]},{"sector":5,"length":512,"data":[1869416714,2019631222,1717989164,544499059,858874212,1879640589,543716213,168654945,1987013897,1768184608,1567514483,168636460,1987013897,1919907616,1953505380,1885020274,1818649970,1567844193,990457900,1634036835,1919950962,1634494053,1629516647,1881171054,1937073522,168649829,1987013897,1836210976,1702521203,808987741,990447976,661548900,1768169588,1634496627,1851859065,1701650553,2037542765,1829308941,1998616175,543453807,544371824,778658139,1836280164,1567122273,990457900,1735552870,1629516901,1953853282,1701344288,1667329312,1701734760,1887007776,151653733,543452769,1936286811,1734437990,1848401267,1142977647,1230984009,1330139999,1631258967,1713398894,1936154988,1661536781,543976545,1735616868,2036495461,168650100,1987013897,745104416,1936090735,1881175141,1768318322,1936288888,151653748,544632685,1311537251,1163022431,223889734,1701972234,543518320,1935762291,151653730,1075864938,151587142,543582523,1931965545,1847615776,1684368737,1701998624,225995110,1701054730,1683693667,1851749225,151653725,544632685,1294760034,1111777102,1866139913,1702061670,1718558836,1111762720,1852645415,1852796261,168649577,1987013897,745108256,1229738063,845108307,1347365686,1162893652,1094868819,990463315,1936287860,2036429600,1347362931,1296910687,151653688,225731954,977289226,1862863373,1683693682,1818653545,1567844193,1397310508,1432308063,1163089230,1882917188]},{"sector":6,"length":512,"data":[1953393010,1701868320,1818323299,1634493984,151653735,544632685,1311537250,1163022431,760760646,151653681,543323507,1663858786,151653752,543975539,824997986,1661536781,1646293101,708193400,151653682,1075864170,151587142,543582523,1835492723,544501349,1717924464,168654953,1987013897,746086944,1701998683,1836607846,728589678,908949602,224211498,1869416714,1769152630,1414549292,1397051481,1396785759,1849362757,1886330991,1851880037,151653732,225731954,977289226,1829308941,1679849071,1718561897,1952805734,1852402720,1970233189,1313680244,1313819973,223561295,1633880330,1931504748,1937207144,154232677,1919957769,544501353,1835492723,544501349,1701667182,1829308941,1629517423,539438200,168634144,1869902601,168649331,1869902601,168654707,1869902601,168654707,1886351369,158884128,1681590537,1633907561,1914725490,1920300133,1684086894,1936028260,151653747,544238954,825385316,168626701,538976315,1381254471,1162692421,542269261,1699160109,1752440948,1701978213,1634738279,1864397938,1752440934,1701978213,1701654375,1634738285,1864397938,1752440934,1852383333,1970435187,1869182051,990514542,1428168736,544433523,1126178848,218762572,1952802570,1835492722,1918856549,151653690,1819042147,1952802592,1835492722,168652133,1987013897,745300768,151653683,544368755,1663855713,151653740,543452769,925658209,1913195021,168653925,758843917,1193291053,1163023429]},{"sector":7,"length":512,"data":[1296387399,1193291040,1948284005,1914725736,1831823205,1881173349,544502369,1948280431,1763730792,1920234350,1769235317,168652399,1701251597,1734701684,980247917,1946749453,544502629,1701998683,1684370293,1330064477,1195725396,151653709,544894570,151602752,1718172425,543520544,1702257000,544500000,1701997665,226059361,1919879434,1919965984,1702065509,1194089828,1163023439,168643911,1818321673,1768169580,1952802675,1702132066,1731922208,1948284005,1646290280,224752761,1869416714,1633362038,1701981801,1835363687,1818307677,1634941705,1763730806,2002854004,168655201,221921344,1869416714,1818304630,1767988012,1734701614,1567450477,1913195021,168653925,540740109,1213407264,1163089743,539828295,2003789907,1701344288,1734701856,1953391981,1936024608,1885958755,544370548,1394634345,1313687365,990514516,1159733280,2037544046,1142956064,1750534473,543519333,1881173876,1763734645,990514548,1159733280,544500088,1142956064,1884621129,1702125924,990514532,1428168736,544433523,1092624416,1109404760,218762584,1869116170,1734701943,151653690,544632685,1529637985,1835492723,542995566,1702050569,1852140903,1970151540,1919246957,1661536781,168654690,1818784521,746086688,151653681,1734894456,746086688,151615586,1987013947,746086944,168654945,2003789939,828859763,151653690,544632685,1999403105,543453807,544371824,1734701915,1634625394,2019699565,1731928157,1914729573]},{"sector":8,"length":512,"data":[1936287589,544367988,1701667182,1929972237,2004053876,1829308941,1629517423,975645804,151653671,1936684147,151653730,225731954,990514442,1142956064,860902217,539828274,1852404304,842211444,1953063469,1936286752,1667329136,1852140901,1868963956,1684086898,1936028260,1735289203,1685024032,221148005,538983178,1953383712,538999154,1852788256,990514533,1159733280,544500088,1310728224,224751215,538983178,1702057248,538976371,223887648,1678380298,863007593,168639026,1818321673,1768169580,1952802675,1685221239,1879640589,543716213,168654945,1818321673,1768169580,1952802675,1685221239,1661536781,543976545,2004378984,224686703,1869613322,2019631216,1661536781,543976545,2004378984,224686703,1701972234,218762612,538983178,1330139936,1195725399,757085745,1869108000,909189239,1953063469,1734701600,1702130537,1634607218,221144429,538983178,1953383712,538999154,155992352,1768383858,1919251571,1836412448,544367970,925708328,990514473,1159733280,544500088,1310728224,224751215,538983178,1702057248,538976371,223887648,1930038538,1920429928,909207397,151653690,225927779,1752369418,2019631212,168636716,1751349257,2019631207,225993260,1970276618,1629513843,151653752,544632685,1999403105,543453807,544371824,1852273243,909208929,1568170539,1929972237,2004053876,1879640589,1629515887,151653752,1734894456,746086688,168654946,1952805385,168626701,757935419]},{"sector":9,"length":512,"data":[1397310496,860571715,757089330,1701331744,1713400675,857764463,1768041778,1886330996,1851880037,1769152612,1881171322,1768318322,908599416,774465590,168626701,1668508004,842230632,168639076,544370441,1701998683,1684370293,1380985949,1144140613,1946749453,544502629,1701998683,1734437990,1345084787,842220882,151653700,225731954,990514442,1394614304,1331121992,1394614352,544698216,543516788,1868787823,168650084,538976315,1920233029,538976377,1309231443,762080373,1836213620,1952542313,1931502693,1852404340,1868767335,1767994478,1735289198,1701344288,544239392,1835363949,1667853935,540740109,2017796128,538997865,1229201440,1684291849,1936942450,543584032,1954047342,1635148064,1650551913,1646290284,543519865,1864396393,1970304117,1768693876,168650094,538970427,1042817056,1718558781,1952805734,1852402720,1970233189,539697268,1679831603,1948280181,1634738287,1852400740,168634727,538976315,1936028501,538976288,168643649,1752369677,1886353263,1869770784,151653731,544632685,1865181540,1702061670,1768693876,1868522862,1294693493,1330464078,1397116750,1077938701,151653690,1935961964,151653730,544632685,1630300257,151653740,543452769,925658209,168650822,1869902601,168649331,1684955401,745038112,168650849,1936615945,222445600,1869416714,1818304630,656418604,1077938701,151653690,1936684147,151653730,544238947,1865181540,1702061670,1768693876,1868522862]}]],[[{"sector":1,"length":512,"data":[1294693493,1330464078,1397116750,168638507,543320585,168641088,1952805385,1752369677,1886353263,1684956448,218762608,538983178,1330139936,1514754903,539828293,1852404304,543236212,1668506980,1953524082,544108393,1948280431,1931502952,224754281,538983178,1953383712,538999154,155730208,1030238257,1380931396,807414852,1463642160,742675023,1747994144,1415135805,840969285,1362978864,1146244951,540740109,1934958624,538997605,1480663072,168626701,538976315,1464813651,542266448,1917853741,544501353,1414537250,168632914,538976315,1936028501,538976288,168646721,540740109,1213407264,1464096591,539828292,1852404304,1143087220,1146244951,1381257248,990514466,1428168736,544433523,1092624416,218762584,1869116170,2053731191,1919950949,168649583,1987013897,1836210976,1702521203,1751198813,1933248800,543520353,544026482,1702521203,1829308941,1528854127,1702521203,1566797676,157901868,1986097979,1752637541,543519333,1915184503,1970282597,1852404852,1752440935,168653673,1987013897,745300256,220680487,1835206922,1751195760,1747989036,1778977293,1752375418,2003924847,151653732,544238947,808216673,1778977293,1752375399,2003072879,990447972,1679844969,1685221239,1778977293,1752375397,1685550959,1765476617,1870078054,168649842,1987013897,746086688,658659623,1929972237,2004053876,1829308941,1629517423,1160195192,168634196,1886218761,2054386464,1930038579,1685548904]},{"sector":2,"length":512,"data":[976905335,990447881,757935420,1829308941,1629517423,1143417964,1930038567,1903652712,221930615,1953696010,224555887,1869116170,979662711,1829308941,1629517423,1327967352,168634199,1869902601,168654707,1987013897,746086688,659702823,1936919053,221918074,1953696010,225932143,1869116170,1920233591,151599674,758921993,168635693,1987013897,746086688,656429095,1929972237,2004053876,1829308941,1629517423,1378299000,168634196,1869902601,168654707,1987013897,745300256,220667943,1953696010,224555887,1701972234,1930038644,1937207144,543521385,1885630053,168626701,538976315,1196640580,1497519173,757089620,1952794400,1954112032,1868963941,1768169586,1936941427,1818389861,221147749,538983178,1953383712,538999154,1852788256,990514533,1159733280,544500088,1092624416,1699613004,1646294136,543519865,1763733097,1920234350,1769235317,1931505263,1634038388,990514541,1428168736,544433523,1310728224,224751215,1678380298,1701278569,1954112116,1919950949,168649583,1937076233,1935941736,1718159885,1297104672,1946749453,544502629,1396925019,1920234561,808725597,151653736,544894570,168642112,1768189541,151653734,1752397168,225014560,1869416714,1769152630,1601526572,1919181921,151653725,544632685,1529639780,1684103029,875262564,151653725,543450209,1663854963,1683700339,1851749225,1765476701,2019910766,544175136,543516788,1751607666,2036473972,168650100,1685023753]},{"sector":3,"length":512,"data":[151609971,1701264137,1752440948,2036473957,168650100,1886351369,225014560,1869613322,1935941744,1762200077,1528849262,1601399140,151608686,1684957499,1952539497,1752440933,1998615649,1702242149,1953457952,544105844,1936287860,1954112032,151653733,225731954,543582474,223170623,858654986,168638008,221921344,1970276618,1696622707,168651123,1935961097,1769170208,1870095916,1881171058,1528853108,1684103029,224227940,1684080906,1936007268,2003053673,543453807,544371824,1530557283,1601399140,990469486,1701080681,1869881464,1701344288,1734963744,1646294120,224752761,1869351178,543322980,1769170267,151653725,544239472,225014629,1869613322,1935941744,1762200077,1528849262,1601399140,168648046,1952805385,772344333,909652024,1852115469,224815460,1936286730,1651795303,543519865,1885630053,168626701,538976315,1196640580,1331123269,757089362,1952794400,1919907616,1868963940,1768169586,1936941427,1818389861,221147749,538983178,1953383712,538999154,1852788256,990514533,1159733280,544500088,1092624416,1699613016,1998615672,224686703,538983178,1702057248,538976371,1852788256,218762597,1936286730,2004116839,543453807,1668248176,1879640589,543716213,168653668,1059087977,168643920,1936028681,1650139252,1950438211,744321652,224931892,1852442890,1178607738,1852115469,224815460,1970276618,1931503731,151593065,1986097979,1769152613,1829308941,1931507311,1968909417]},{"sector":4,"length":512,"data":[1684300127,168648050,1987013897,745759776,1633645915,728917092,168647988,1684300041,745108256,1530557283,1601399140,990469486,1701080681,1869881464,1701344288,1734963744,1646294120,224752761,1869351178,225932132,1869613322,1769152624,990447881,1953719666,543519343,1852401780,168653671,1886351369,225666080,1684080906,1683693668,1851749225,221391965,1701972234,1762266484,1346314342,151653709,909652782,1077938701,151653690,1752397168,1769170208,1812531725,1696625508,1714186611,1685221239,1920233504,1601526560,1919181921,151653725,543450209,745108325,1919907684,1953505380,1935876210,1768184634,1567514483,1852390153,544761188,1948282740,1914725736,1952999273,1954112032,151653733,1935961964,1700470903,224225651,1869613322,1936007280,151653737,544239472,168653668,1684300041,1768184608,1567514483,168636972,1952805385,772344333,909652024,1852115469,224815460,1936286730,2004116839,543453807,1885630053,168626701,538976315,1397967172,1113018184,1397052505,1394617632,544698216,1702132066,1868963955,1752440946,1768169573,1936941427,1818389861,221147749,538983178,1953383712,538999154,156779040,1651340622,1864397413,2036473958,544433524,1937075496,1700929652,807419424,990514473,1159733280,544500088,1965039648,1684300127,1886724210,1702125924,990514532,1428168736,544433523,1109401632,1394617432,218762569,1936286730,2003789939,1702132066,1919950963,168649583]},{"sector":5,"length":512,"data":[1059087977,168643920,1936028681,1650139252,1950438211,744321652,224931892,1852442890,1768169594,1600287603,1695157553,1718183022,1829308941,1931507311,1968909417,1684300127,168648050,1987013897,745759776,1633645915,728917092,168647988,221921344,1869351178,224555876,1633880330,1746955372,2036496485,168650100,1667589129,225993248,1852442890,1111498874,1879640589,543716213,168653683,1886351369,225666080,1869416714,1968906358,1684300127,1932287346,151653737,225731954,543582474,223170623,858654986,168638008,1936943460,976314210,1812531725,1696625508,1714186611,1685221239,1920233504,1601526560,1919181921,1074400605,168639040,1685023753,1528849011,1567191909,1661536781,543976545,1652057448,224752761,1701054730,2019696739,1778977293,1075870318,151653698,1752397168,225669920,1869613322,1935941744,1829308941,1679849071,1685221239,1920233504,1601526560,1919181921,1936010333,151653737,225731954,942541066,221657136,1684956426,168650345,1936943460,1651994472,1936028793,1684956448,218762608,538983178,1448037664,1163284293,539828306,1702260557,1701344288,1852402720,1869881445,1701344288,1734963744,757101672,1936286752,1702064993,1701601901,1970479218,1853187682,1869182051,168636014,538976315,1920233029,538976377,1275676996,544502625,1919181921,544437093,540090411,1814062703,543518313,1713401715,168653409,538976315,1953069125,538976288,1309235267,1700949365]},{"sector":6,"length":512,"data":[1718558834,1954112032,1948283749,1869422703,168650102,538970427,1229201440,1685083401,1684370529,540740109,1934958624,538997605,1230184480,168626701,1702260589,1919252079,1869770784,151653731,544238947,2053731163,1668246629,221260893,1701447946,155598880,1765476617,1769152614,1869374842,1869488227,1634934900,224683382,1684080906,1935351908,1818589801,744317807,168654947,221921344,1869416714,1769152630,225010732,1684080906,1768169572,225993516,1869416714,2019762294,225010732,1970473226,2019762274,1717989164,544499059,1701734764,1953853279,1162759467,1330532173,168645446,1937076233,1768169576,1929972237,168649844,1667589129,225014560,1701054730,1768169571,1913195021,1830842469,1651734127,1879640589,1679847535,151653737,224685155,1701972234,1829375348,1868920431,544367990,1885630053,168626701,1293969001,1397048399,1296258117,990514500,1394614304,1297567560,541606721,1699881005,1852994932,1920234272,1936158313,154864141,538976288,1701731106,544433253,1563834463,1919885346,1851466272,1935959397,926441248,1864376925,1528963186,1684366702,1346773107,539123029,572551791,1935830875,1952803951,220355941,538983178,1953383712,538999154,542130720,1852403568,544367988,1948282740,1701601889,543584032,1869832815,1702126956,1936615712,1668641396,1852795252,990514547,1159733280,544500088,1394614304,1681989705,1936028260,1718558835,1920234272,224882281,537475850]},{"sector":7,"length":512,"data":[1126178848,1699487832,1752459118,543584032,1769108595,539780974,807432815,543582496,544501614,1684366702,168649829,538976315,1936028501,538976288,168643649,1752369677,1634563951,1881172067,224620402,1869416714,1769152630,1717989164,544499059,1684366702,1735617907,1633893129,1684628590,543519841,1936942445,224749409,1869416714,2019762294,2053731116,543584101,1684366702,1735617907,1701591817,1752459118,543584032,543516788,1936942445,224749409,1702103306,1528853619,1680763233,1634494061,744321895,1130319172,223498319,2053769482,1601399072,158691427,1718172425,1953459744,1663066400,1869770863,1936942435,1763734127,1920234350,1769235317,168652399,1987013897,1954112032,1953505381,1935351922,1564027753,657925932,1751333664,1701277281,1936026912,1701273971,2019914784,656941172,657930360,151653673,544632685,1529637985,1751343469,1563899999,1661536781,1629515885,825044076,1778977293,1931508334,153105005,1718172425,544500000,544432488,1868767329,1668248176,1869837157,151653746,544632685,1529637985,1751343469,1566928489,1661536781,1629515885,1633365100,1768173161,1667329395,168648040,543320585,154365299,1765476617,1702305894,1936286752,2036427888,1701344288,1936026912,1701273971,1829308941,1931507311,1718561897,1952805734,1701146144,1885762404,1882917237,1953393010,1768453152,1701650547,1734439795,1852383333,1634038899,990514532,1987013897,746087200,1702521203]},{"sector":8,"length":512,"data":[1847617135,1935959397,225800294,1701972234,1762266484,1885560691,168639093,1987013897,1954112032,1953505381,1935351922,1564027753,657860396,1701985056,544499059,1936942445,543516513,1954047348,2015832096,690435640,1829308941,1629517423,1834691692,1768448865,224224622,846033674,151653690,544238947,1529637985,1680763233,1634562921,224225379,1634339082,1836261477,151593012,543582523,1830842222,1634956133,673211751,1713401715,220820065,862810890,151653690,544632685,1529637985,1680763233,1634562921,224225379,1684080906,1818304612,657467180,1829308941,1528854127,925591923,1818307677,1913195021,168653925,976514419,1879640589,543716213,168651108,1937076233,2019631208,1829308941,1679849071,1885482089,1829308941,1629517423,1767582840,1852405860,168648051,1987013897,746087200,151653687,1852859762,1668489317,225932129,1869613322,2019631216,1778977293,1931502958,168637805,1987013897,745104416,1936090735,1864397925,1634562914,723544163,168637984,1651864329,745104416,168654947,1919907849,746087200,151615587,1701602107,1126199905,538983000,1830842222,1634956133,168650087,1886216969,745300256,1567188059,1778977293,1931502956,168637805,1987013897,745108256,1936090735,1864397925,1819243362,224752741,1869416714,1818435702,2053731116,543584101,1869832815,1702126956,1836255757,168639029,1886351369,225010720,1701972234,1930038644,1836543848,543712097,1885630053]},{"sector":9,"length":512,"data":[1852115469,224815460,990514442,539831597,1347245380,1397179730,1142959392,544238965,1768383858,1919251571,168636019,757935419,758526240,980707682,1931491360,1914725492,745760613,743198240,1768649504,741482608,1931490336,1914726245,745760613,743459104,1634493984,168653671,757935419,758264608,980707682,1931490848,1914725492,745760613,743198240,1931489824,1914725492,728983397,1177243721,1713384524,1936154988,1280188460,540418092,543647091,1936156018,168626701,1886221668,1936156018,1869770784,151653731,544632685,1865181555,1702061670,1701978228,1835101799,168653669,1987013897,745104416,1936090735,1814066277,1600482921,225736047,1869416714,2019762294,151599148,1769107515,1629516910,941649004,1685353248,1734701600,824713331,1768041782,168634740,1936028681,1918574708,1701080941,1297230941,909652831,1397179730,1778977293,1178607738,1829308941,1663071855,154545260,1869757193,1713401199,908096111,1685353248,1734701600,858267763,1768041778,1864378740,226061422,977289226,1661536781,543976545,1919970660,990447921,1852404336,1768300660,544502642,225931122,1633880330,1948281964,1886218610,225670261,1869416714,1768169590,1717989164,544499059,1701734764,1953853279,1946749453,544502629,1869443675,744318308,861883730,1163015736,168645447,2054056457,222707744,1970276618,1931503731,151653737,543450209,841771379,151597610,1768649531,1226973296,573252176]}],[{"sector":1,"length":512,"data":[220351558,1869416714,1818435702,151598124,1769107515,874542190,1734701856,1953391981,1734701600,151653747,1819042147,1886217248,225915250,1869613322,1769152624,1762200077,1663066990,151587192,1031299899,151653681,1819042147,1886217248,151597426,1769107515,673215598,1346971973,1661536781,543976545,1718644068,1936154988,1882917129,1953393010,1634493984,1763734375,808984686,1830827576,224748655,1835665674,1869488240,1597388851,168636723,221921344,1869416714,1818435702,151598124,1769107515,1914729582,544502629,857761391,1768041778,1953702004,1701978212,723546983,1346979104,1159736096,168643654,1818321673,1835278444,1680962160,1879640589,543716213,168651123,1818321673,1835278444,1634494064,151614311,1769107515,1713402990,1936154988,544106784,540424243,1701080941,1661536781,543976545,1835627124,1937012080,1879640589,1931505775,151653737,544632685,1865181540,1702061670,1768693876,1868522862,168653941,1987013897,745300768,990447926,1852404336,1935941748,1936007212,1936924716,1935876140,1936072748,1936138284,1661536781,543976545,1919970660,168654641,942894958,825450294,151653690,1819042147,1769108512,1953853549,218762611,757938954,1768169517,1634496627,540090489,1634953572,1835365235,1684368482,1852402720,1952522341,978535200,1230849371,218762576,1869416714,1769152630,1717989164,544499059,1936156018,1346990638,1829308941,1679849071,1718561897,1952805734]},{"sector":2,"length":512,"data":[1633645856,225600612,1869416714,225932150,1869416714,225932150,1869416714,2019631222,1701993260,1915646823,224219971,1953696010,225932143,1869416714,1683693686,1818653545,1567844193,1397310508,1381975647,542396485,1142977135,1180652361,1330139999,151653719,1819042147,1936286752,225276769,990514442,539831597,539456039,1702061426,1679848308,1969317477,1931506796,1769239653,1713399662,656437871,1948264309,1396908143,1564826426,168644681,1929972237,1885698665,153118322,1869429513,1634017398,1918577784,779315045,1565542770,1829308941,1629517423,1918577784,779315045,1565542770,1929972237,1885698665,153118322,1869429513,1968906358,1684300127,1697406322,168654945,1987013897,1601526560,1919181921,2019634269,1913195021,168653925,1886221668,1936156018,1684956448,218762608,757938954,1967530029,1769235310,1948282479,1919950959,544501353,1953265005,1701605481,1380931360,1464086340,541348431,1768383858,1919251571,1953391904,1936025970,990514478,539831597,1043155283,1768383858,1919251571,1835101728,673215333,2036473906,695428468,758843917,1126182189,1868774744,225734261,1678380298,829583469,151653690,1953719668,1836210976,1566925935,1598902828,1379285043,223561541,1852442890,1835278458,1680962160,168626701,757935419,1853179424,1869182051,1869881454,1769107488,1830843502,1769237621,543517808,1146244951,1734701600,1702130537,1852121202,1701409396,168636019,757935419]},{"sector":3,"length":512,"data":[759780128,1734701630,1702130537,1634607218,544433517,1646277160,1936028793,990514473,539831597,1664964675,1953396079,168626701,1919970660,221935409,1869416714,225932150,1869416714,1818304630,658319148,1929972237,1651732340,1829308941,1646294639,1935355000,1431186281,1195725389,1162690894,758262355,168647986,1987013897,746086688,1568170587,1661536781,543976545,2004378984,224686703,1869416714,1818304630,656418604,1929972237,1651732340,1812531725,544239471,1919970660,168654641,1952805385,168626701,757935419,1853179424,1869182051,1869881454,1769107488,1830843502,1769237621,543517808,1380931396,1701978180,1953720679,1696625253,1769108590,221148005,757938954,1230184493,1701985837,1953720679,1847620197,1936026977,540157984,1702132066,168634739,757935419,1029194528,1853189987,218762612,1886217226,979644786,1829308941,1629517423,1160195180,151653671,1936684147,151653730,1937141613,151653751,544632685,657222753,168634173,1869902601,168649331,1987013897,746086944,728331099,1380799822,1095649093,710100301,1563569458,772344333,221657139,1869416714,1634017398,1650142328,168648056,808988169,168638008,1818321673,1701322860,1870095480,168649842,1987013897,745300256,220667943,1953696010,224555887,1869351178,1679847535,829583469,151653732,225731954,1124732170,1414745679,1734701856,1953391981,1919289869,1634625381,544433517,1700946284,2036473964,168650100]},{"sector":4,"length":512,"data":[543319049,660030247,1395073068,539764567,660034599,1678313997,1227300962,740769104,1346643744,168634173,1886209380,1678342516,1697063010,2037674093,1678380327,156131662,656433764,659448142,1329793549,542397262,1935961701,168626701,757935419,1836409888,1734701680,1431324275,1142959392,544238965,1634692166,1735289204,1768902688,1377858670,1936287589,1936876916,758843917,1830825261,1718183023,544433513,539773267,539773252,1096631643,1109404760,1126181976,1528835160,1480875333,168626701,1886221668,1936156018,542462022,1668248176,154864141,544632685,1865181540,1702061670,1768693876,1868522862,168653941,1987013897,745108256,1936090735,1713402981,1852269938,1936026977,1829308941,1646294639,1718561912,1952805734,1852402720,1852399461,840968992,1929972237,1885698665,168650354,1936614921,543520353,1568170587,168626701,757935419,1936286752,2036427888,743916320,542593824,543452769,168646484,1829308941,1663071855,221457528,2019913226,1919968884,151653690,1937141613,151653751,544632685,657222753,168634173,1869902601,168649331,1751349257,1769152615,225993260,1769146634,1919968634,151593062,1685023803,168649843,1685023753,168654707,1751349257,1769152615,225993260,1970276618,1629513843,151653752,1819042147,2019911712,1685221239,1829308941,1629517423,539438188,151653671,1936684147,151653730,1886351212,2019913248,1919968884,168626701,757935419,1936286752]},{"sector":5,"length":512,"data":[2036427888,542132512,543452769,168644676,1829308941,1663071855,154283116,1751333641,544434464,1818304560,1684104562,1846152569,1718909029,168639088,1937076233,2019762280,1829308941,2004055663,1829308941,1651734127,2013858317,543647843,1647077747,151653752,1702521203,543584880,1815808265,1685283951,1812531725,2004051055,1929972237,1885698665,153118322,1869429513,1684349046,1634020472,151653752,544632685,1630304356,151653752,1702521203,543584880,1815808265,1685283951,1812531725,2004051055,2013858317,543647843,1647077747,1762266488,1346314342,151653709,1819042147,1886611744,151653741,1075870314,151653702,1819042147,2019911712,1685221239,1829308941,1629517423,975645804,151653671,1936684147,151653730,544238954,1836085350,1077938701,1695157562,1718183022,1829308941,1663071855,842083436,1929972237,1885698665,153118322,1752382217,1634017394,1818438776,1929972237,1629516392,1818438776,1661536781,1528852589,1751343469,1566928489,168637228,543320585,168642112,1818321673,1701322860,1919907704,151653732,544238954,1836085350,1077938701,151653690,1819042147,2019911712,224557422,1886414346,168639085,2053731081,1718775909,990447960,544632685,746086757,225993829,1869416714,2019631222,225993772,543582474,223170623,1633880330,1763732588,225276019,2053769482,222707744,1835206922,1834688624,1768448865,744318318,151653683,1075864170,151653702,1819042147,2019911712]},{"sector":6,"length":512,"data":[1919907684,151653732,544238954,1836085350,168636979,221921344,1684956426,168650345,1818321673,1701322860,1919907704,1711934820,862810224,168639026,1987013897,745300256,220667943,1953696010,224555887,1869613322,2019762288,1812531725,544239471,1954047342,168652902,2013858317,543647843,1647077747,151653752,1819042147,1769108512,1953853549,218762611,757938954,1768169517,1634496627,1414733945,539828272,221729875,151653642,544239472,151613538,1701264137,1465131124,1879640589,1629515887,151587192,1952802619,223826720,1869613322,2019827824,990447881,544499047,673208131,544501614,1684370293,218762537,1869416714,1818435702,221262124,1752369418,2019631218,1818435628,1832585481,1411413615,1948274767,1768038511,824210292,168637229,1684955401,745300256,808464416,825307440,168649264,1987013897,745300768,225206560,1869744394,1885479026,1818435628,168626701,1987013897,746087200,657472807,1701710349,1953723512,151593018,758921993,1847602477,544503909,1634692198,1869881460,1936286752,2036427888,1829308941,1679849071,1718561897,1952805734,1852402720,1970233189,151653748,1752397168,225993504,1869416714,2019631222,1398023980,151653671,1936684147,151653751,544632685,1663858785,151653752,1936684147,151653751,1752397168,225010720,1702103306,1629516915,221326444,1869416714,2019631222,538978092,151653671,544632685,841775203,151653681,544236914,1936684147]},{"sector":7,"length":512,"data":[151653730,1075870314,151653702,544632685,808220769,1749299265,1077938701,151653690,1936684147,151653751,544239472,168651108,1829308941,1629517423,1885482104,1913195021,1646293615,154217584,1701985033,1852399981,942684192,1868767286,1952542829,1701601897,1919248416,168632677,1919906313,745562656,151653681,543452769,858549345,809175305,1635138864,744778092,2050830640,745501285,1312633392,808210017,1833254195,226063472,2053769482,1987275040,1684630625,1879640589,543716213,168651123,1987013897,745108256,1936090735,1679848549,1953525061,151653753,544632685,1932291171,1868921449,1164189798,2037674093,1661536781,1629515885,221391980,1634339082,222707744,1869416714,1769152630,1717989164,544499059,1314999908,1829308941,1663071855,1769155692,1718576506,1632527392,151653710,1075870314,151653702,544632685,657222753,168634160,1869902601,168649331,1987013897,745300768,1074400560,168639040,1885696521,1987013920,168649331,1886351369,225014560,1835665674,1701978224,1953853287,1701736292,1936263693,1768710518,168639076,1176528489,1397707856,168645204,1886216969,1852988192,1887007839,657218917,168634194,543517193,1886221668,1936156018,1599426630,225994088,1852377354,1701539702,1869366816,1867805793,745698387,745108256,225010720,1835665674,1701978224,1953853287,1701736292,1852115469,224815460,1836409866,1734701680,1431324275,2019911775,151653690,544632685]},{"sector":8,"length":512,"data":[1529641057,942369139,151653725,1819042147,2019911712,1685221239,1829308941,1629517423,774319212,151653671,1936684147,151653730,544632685,908884066,1077938701,1869416762,2019631222,1769167660,1568170539,1661536781,543976545,2004378984,224686703,1970473226,2019696738,168636972,1701276169,222445600,1734701578,1685353839,979725935,1829308941,1679849071,1718561897,1952805734,1852402720,1970233189,926034804,1661536781,543976545,1937012080,1879640589,1663070319,151653752,543450209,824994163,990447920,1702521203,1411409519,1163155778,1762200077,1663066990,151653752,544238947,657222755,168634168,2054056457,2019913248,225735540,841877770,151598648,1986083593,543451503,1414086999,1701998624,225995110,1769146634,1919968634,151653734,1953722982,1528853103,1701734764,544106847,1563566123,772344333,909652024,1913195021,168653925,1886221668,1936156018,542462022,1885630053,168626701,757935419,1347240992,1195461702,539828307,1886221636,1634493984,1864397671,1970304117,168636020,1835272717,1634494064,1881174887,224620402,1869416714,1769152630,1717989164,544499059,1650945126,225670249,1869416714,2019762294,151599148,1852140603,1869116519,1818632294,1953063527,1846152563,1718909029,979853676,1812531725,2004051055,1946749453,544502629,1529641057,1936156018,1279685166,151653725,544632685,1529641057,824928627,1563569462,1778977293,1178607738,990447881,1847617129]},{"sector":9,"length":512,"data":[1629516911,1919251315,224683380,1869416714,2019631222,1769167660,758264619,168647986,221921344,1953696010,225932143,1869416714,1818304630,656418604,1929972237,1651732340,1812531725,544239471,1954047342,1734437990,1913195021,168653925,1718644068,1936154988,1684956448,218762608,543582474,1398295885,223367253,858654986,168638008,1886221668,1936156018,542657869,1668248176,1711868429,1986098030,1528849509,1701734764,544106847,1563566123,1829308941,1931507311,1718561897,1952805734,1852402720,1852399461,924855072,723530794,168636960,1987013897,746087200,657472807,154864141,544632685,1865181540,1702061670,1768693876,1868522862,168653941,1954047342,1835365481,151653690,544632685,657225825,220679501,1953696010,225932143,1869416714,2019631222,225993516,1953696010,225932143,1869416714,1634017398,1935355000,1563700073,1661536781,543976545,1685611880,1685221239,1829308941,1696626287,1529641057,224225651,1633880330,1746955372,2003073125,224686703,1869416714,2019631222,538978092,151653671,1936684147,151653751,543450209,824994163,151653680,1953719668,745300768,151653681,1075870314,151653702,1752397168,225993504,1633880330,1881173100,1819505781,224751209,1869613322,2019762288,1829308941,1679849071,1718561897,1952805734,1852402720,1970233189,1074400628,168639040,1668180233,225993504,1835206922,1818435696,657991468,1778977293,1847622254,1769240677,225273204]}]],[[{"sector":1,"length":512,"data":[1818626314,1986946404,1817911396,1600482921,723545705,224211488,1701972234,1678380404,1919970677,1299408741,1696618573,225469550,942541066,221657136,1684956426,168650345,758843917,1663053101,1937338479,1852404340,539828327,2037411683,1852796448,1886217517,1847622004,762080373,1836213620,1952542313,1931502693,1852404340,168636007,757935419,759780128,1920234302,224882281,757938954,1229201453,1969372717,1919247974,168626701,2037411683,1769108595,1881171822,224620402,1869351178,224555876,977289226,1929972237,1651732340,1812531725,1651729519,1661536781,1629515885,221260908,1852442890,1111498853,1913195021,168653925,2037411683,1769108595,1696622446,225469550,990514442,1210064928,1464096837,541348431,1917853741,544501353,544761192,1685221239,1852385312,1480672544,539828265,1634036835,1210086258,1919899497,1095051364,221129048,538983178,1480935456,1146244951,1344285984,1953393010,2019911712,1919907616,1764237412,1480663150,168635945,538976315,1113081160,541414489,1917853741,544501353,544761192,1702132066,1852385312,692863264,990514478,1210064928,1498306629,539828290,1852404304,1701322868,1768169592,779381095,540740109,1934958624,538997605,1279336480,1229201452,168626701,1685611880,1685221239,151653690,1752397168,225992992,858654986,168638008,1919447817,2019648800,221655340,942541066,221657136,1633880330,1746955372,1870100581,168649842,1886351369]},{"sector":2,"length":512,"data":[225992992,1745489162,1870100581,221930610,1970276618,1629513843,151653752,544632685,1630301281,151653736,1819042147,2019911712,1702132066,1879640589,1629515887,218762616,2019911690,1702132066,151653690,1752397168,225992992,1970276618,1663068275,151653752,544632685,875326563,1929972237,1629516392,1818438764,1661536781,543976545,1853384040,168649337,1886351369,225993504,1869613322,2019631216,168626701,1853384040,221930105,1851853066,1818304612,1751527468,1627982349,1629512804,809053292,990447976,1936025716,1868963941,1763734133,1920234350,1769235317,544435823,1851877475,1948280167,1935745135,543779171,225994088,1633945866,151653729,543384673,875326561,168650800,1633772553,1929972237,1651732340,1913195021,168653925,540740109,1096032288,1330929474,1394617632,1701011824,1818846752,1853169772,543975796,1667327346,1735289192,1701344288,1819239200,544107893,1768189545,1702125923,2036473956,777535776,540740109,1344806944,1953393010,1847615776,1814067045,543518313,1847617129,1936024421,2037539187,168634670,1634994701,1869897570,1869770784,151653731,1752397168,225992992,1970473226,2019631202,225010732,1634339082,155598880,1765476617,1752440934,660959845,1869750387,1864396143,1752440942,1814066025,224751209,1633880330,1948281964,1886218610,225670261,1869416714,1768169590,1717989164,544499059,1701734764,1953853279,1077938701,151653690,544239472,168654947]},{"sector":3,"length":512,"data":[1651864329,746087200,168651108,1987013897,745300256,220667943,1701972234,1953702000,157447023,1886599945,543515489,1819044198,544175136,543516788,1751607666,1852121204,151653732,225731954,1650553866,544175199,1885630053,168626701,538976315,1296650836,1398035792,1411394848,544041330,1701017701,1646293875,1802396012,1919295603,1931505007,1852404340,1851859047,1919950948,544501353,1953068840,1380130920,692472879,990514478,1344282656,1280529493,541412937,1681989677,1380130916,541477935,1931505524,1852404340,1851859047,1919950948,544501353,221148265,538983178,1414877216,539828307,1852404304,1953702004,1735289202,1919448096,1751610735,776553504,168626701,1835627124,1937012080,151653690,543384932,168651108,1886216969,1954112032,1953505381,1683693682,657218921,168634144,543517193,1835627124,1937012080,1762200077,1679844206,218762601,1953853450,1852402803,168639077,1987013897,746086688,706758220,909455904,1126181664,151653714,1936684147,218762615,1953853450,168639091,1987013897,746087200,168651108,1987013897,746087456,1936090735,1814066277,1600482921,225736047,1970473226,2019762274,225993772,1930038538,1970234484,1919950964,151610223,1920416521,543519849,1144673092,1931488344,543521385,1948276803,1414733935,1414876996,691087392,1661536781,543976545,1866755657,151653747,544894570,168642112,1987013897,746086944,990447921,1851880563,1685217636]},{"sector":4,"length":512,"data":[1953853216,225736048,1869416714,1751195766,1747989548,2000357641,1702127986,544175136,1701603686,1661536781,543976545,1668509540,225209441,1701972234,1074400628,151599680,1966803209,1109419379,542330697,544370534,1886680431,168653941,2019781129,1869488250,1886680431,168653941,1937076233,1769152616,1829308941,1931507311,2019830889,1077938701,151653690,1935961964,151653730,544632685,925661282,1829308941,1629517423,1160785000,151653736,544501353,224931889,1869351178,1075867759,151653698,544239472,168651123,1970237294,1953853556,151653690,225731954,1685353226,544503151,1885630053,168626701,1142974057,1163282770,1902452818,168636448,1634038371,1969513844,1954114925,543912801,1668248176,168626701,1987013897,745104416,1936090735,1914729573,225666917,1869416714,2019762294,2053731116,543584101,1936156018,840970016,2013858317,1629516399,2019634296,1913195021,1931505765,2004053876,168626701,1987013897,745038112,157825076,1701264137,1634476148,1936025458,1919295604,1646290277,1801678700,1829308941,1646294639,825044088,1762200077,840987758,168650801,1886216969,746086944,157823281,1970092809,1646294131,1952522341,1634036768,824210547,543698993,1702132066,168632691,543386121,1683977315,224751215,1869416714,1751195766,1748513836,1631258889,1668246636,543519841,168653929,1953392905,1748054560,1778977293,1952653411,1852793951,990447973,1970235507,661546092]},{"sector":5,"length":512,"data":[1634214004,1852141680,168626701,1668180233,1954112032,1953505381,1918574706,779315045,726681970,990469425,826101833,224931888,151653642,1819042147,1952805664,1701868389,168651878,1879640589,543716213,168654946,1987013897,745104416,1936090735,1914729573,779315045,156451954,1768843579,1701978228,1915646823,1915507524,779315045,743654770,1936156018,1397977646,1734701612,1131556467,151653715,1936684147,151653751,1936684147,151653751,1936684147,151653751,1936684147,151653751,1819042147,1952805664,1633644661,168654180,1987013897,746086944,1734701659,1131556467,990469459,1681553506,540876920,1919248503,1869881445,1634692128,1919950948,1634887535,151653741,544632685,1647080293,151653752,544239472,151615585,1701264137,1769152628,1864394106,1701650534,2037542765,1869373984,168651619,1987013897,746087456,168654945,1684300041,746087456,168654946,1987013897,980641056,1095516507,1565540691,225993772,1835206922,2019631216,808464684,168650800,1700948489,155598880,1765476617,1701650534,2037542765,1717922848,1027350644,1261712928,2013858317,1629516399,2019634296,1631258889,540876920,808464433,1932009576,543518049,1852401780,1629498471,1919251558,1768452896,1852404838,168634727,221921344,1869416714,1818435702,168637484,1818784521,746086688,168651875,1667589129,225992992,1701054730,2019631203,1829308941,1528854127,1936156018,1347645998,2019634269,2013858317]},{"sector":6,"length":512,"data":[543647843,1680636001,990447977,1681552229,540876905,1818847331,1953701988,543908705,1852403568,225600884,1870137610,2019631218,225993004,1953696010,158823279,1882917129,543716213,1852776496,1768710944,661941861,1953702003,225141601,990514442,539831597,1634038339,1629513076,1347637280,168626701,1987013897,745038112,157824309,1919105801,1702125925,1768448800,1344300140,168644691,1987013897,746087456,168653669,1987013897,745108256,1530557285,1396788289,224219201,1663056650,2037543521,1634493984,1818435687,1701994853,2036473956,1868718368,2015389046,1629516399,2019634296,154864141,157510755,2000357641,1936421487,1869766944,543452789,841962319,1735746080,1762200077,840987758,168650801,1987013897,1919907616,1953505380,1936007282,1347705658,808146505,1718561885,1952805734,1953392928,168636978,1987013897,980641056,1230001243,1563568982,225665836,1835206922,1650139248,1953066569,221260893,1852442890,1178607738,1762200077,1528849262,1768835426,168648052,1987013897,1954112032,1953505381,1936007282,808540986,744319024,1748190000,1819294473,543515489,1868787823,1713399140,656437871,659834194,544497952,1228559171,1074400592,168639040,1987013897,1936743200,1700947056,1936010333,1829308941,1629517423,1936010360,1678313997,1629512549,151653752,544632685,1630303077,151653752,543387241,168654945,1987013897,980641056,808464475,1630297393,151653752,544632685]},{"sector":7,"length":512,"data":[1702132066,1920233504,980641056,808464475,808213816,1879640589,543716213,153121636,1701985033,1919906931,1397039205,1879640589,1696624751,151653747,1819042147,1952805664,1685091184,151611234,1952805691,1650811936,1701275509,544417650,223368016,1601463050,1701736292,151653690,225731954,1661603082,1952540018,1836409957,1635023213,1696623475,225469550,1684956426,168650345,1718159885,1297104672,168626701,757935419,1869572128,1852383339,1177690228,1718165608,1142972704,541674832,1953722216,544434464,1853189990,990514532,539831597,544370534,963537239,1851859064,1866735716,1970095475,1936680992,990514548,539831597,544501353,745031218,1031299360,926430769,1936269416,1953459744,1869572128,744777067,2003789856,1919252069,758843917,1646275885,1969316709,1763730803,1868832884,661549925,1870078068,539913074,1969382724,1852401511,990514535,539831597,1881173609,1702129522,1684370531,1685024045,1953701989,543976553,544825709,1802661751,1969365036,990514548,539831597,543516788,1953066601,762077545,1953068915,1948280931,1297096815,1937075488,1700929652,1852404512,761621607,1885697139,224683376,757938954,1869422637,1768319332,1092645733,1109404760,1126181976,1142959192,1142959192,218762569,1869572106,543568491,1668248176,1661536781,1998614637,543453807,544371824,1684827995,728117865,808213810,1778977293,1746958958,845901679,221405030,1869416714,2019631222]},{"sector":8,"length":512,"data":[943075628,151611447,1346648841,1746946381,544502639,1953721961,1701604449,168640356,1953392905,1749430816,1627982349,1629512814,2019634296,1778977293,1746958958,845901679,221405030,1869416714,1870078070,1881171058,1528853108,1768779876,1920233061,1563437945,157901868,1970435131,1869095013,1142977651,541674832,1920233061,151653753,544632685,1685221239,1920233504,1885625120,1852139885,729379444,1697406258,151653747,544632685,1685221239,1920233504,1885625120,1635215725,728261492,1680629040,151653737,544632685,1685221239,1920233504,1885625120,1635215725,728261492,1697406258,151653747,544238947,1867407963,1802465096,744310322,990447920,544104803,544501353,543704626,1746953570,1701539695,168640356,2054056457,1869572128,1600533099,151653682,544632685,1685221239,1920233504,1885625120,1635215725,728261492,1865178416,1702061670,2037194868,1768779876,1920233061,151653753,544632685,1685221239,1920233504,1885625120,1635215725,728261492,1663851826,151653747,544632685,858552417,1749430837,1762200077,840987758,168650801,1987013897,1919907616,1953505380,1868243058,845767788,1563437926,225993260,1869416714,1870078070,1881171058,1528853108,1768189039,841705010,1936010333,1829308941,1679849071,1718561912,1952805734,1650811936,1177708405,1829308941,1629517423,892480632,224937522,1852377354,825368692,1762266472,1229201510,1330139219,168643407,1987013897,746087456]},{"sector":9,"length":512,"pattern":757935405,"data":[1936090735,1679848549,1751739760,225144687,1869416714,2019762294,2053731116,1885626213,1869113709,168651631,1818321673,1953701996,1953853284,1852115469,224815460,1869572106,1600533099,168639026,1952805385,1869089293,1714580335,1684956448,218762608,1684956426,168650345,1415514637,542398533,1935961701,168626701,1413563487,1702043713,1852140903,218762612,757938954,793321517,1969365071,1919247974,538979955,1684948264,543584032,1836213616,1852141153,544828532,1769170290,1953391972,1918988320,220802676,1812598026,1600482921,153120361,824205924,808204338,156386092,1701591817,1752459118,824196384,168636467,1701734764,1953853279,1970365705,1852402720,1852399461,1313426475,1313431365,1313164383,1701972493,1700752481,1695114350,1814066545,1600482921,729052527,221656370,1594494218,1096040772,1684956448,218762611,1414094602,542398533,1835492723,225734245,1762266378,1380196454,1380275785,544302368,218762544,1768843530,1852793716,168639092,1987013897,745567008,168654945,1987013897,745038112,224944436,1852377354,825368692,151593064,1701996091,1701978213,1864397939,1329864806,1701650515,2037542765,1661536781,1528852589,1701603686,1567914085,168636460,544893449,168642112,1818321673,1869357164,1768318049,168650092,221921344,1835665674,1835212912,1869573220,1695157616,1718183022,168626701,757935419]}],[{"sector":1,"length":512,"data":[757935405,757935405,757935405,758843917,1142959405,1735746149,1768843552,1818323316,1952545385,544108393,1701080931,990514478,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,221064493,1762266378,1380196454,1380275785,544302368,1762266416,828863341,543319049,1313292868,742739265,1702240295,1869181810,774971502,660681267,743588652,1126975052,1179397202,1678313997,1111760994,1296125511,539438149,1564880731,1683708704,1702259058,1885035834,1567126625,1701603686,1701667182,1918982944,1936288871,660430196,743588652,1126975052,1179397202,1678313997,539435106,541470496,538976288,1696604192,1818386798,1634738277,1713399143,1886415212,661089897,743588652,168642124,543319049,1713381415,1852140649,543518049,1818846752,1869881445,1650811936,1864394613,2019893362,1852403041,1126967141,1179397202,1678313997,539435106,1735549216,1953720684,1881153568,1835102817,1919251557,1768366195,544105846,1881173876,1919381362,740781409,1277973059,1380133958,222710828,1650723082,1866868512,543236210,1953720684,543584032,1969382756,1852401511,1868767335,1851878765,539784036,544109938,151653671,1142973028,1095649090,657212749,1684955424,1887007776,541007973,1948284001,1881171304,1886220146,740765300,1277973059,606547014,218762535,1936550154,1678324327,1227300962,1818326638,1931502697,1668573559,539828328,1762266407,845640557]},{"sector":2,"length":512,"data":[1650723169,662185760,743588652,657213004,168634148,1768189541,1762266470,1346314342,1762266445,1329864806,1431127379,1147406861,1833268079,1952531573,1650729061,842015264,792015407,220345145,1684956426,168650345,1768189541,1678380390,1702261615,1650723186,168636448,1718159885,1230128160,223495510,1762266378,1601464686,544302450,1970435187,151653731,1601267058,544367720,168640060,1953066613,1650723187,990461728,540225835,1651340654,1864397413,1970479206,1919905904,543450484,1953066613,1695157619,1684104302,1679848036,155132004,875637563,1684956448,1684300064,1936942450,543584032,1769170290,1953391972,1918988320,1661603188,1768711277,1679844718,155132004,942746427,1684300064,1936942450,543584032,1835888483,543452769,1701734764,1852377613,1918858345,1696624997,225666158,1930038538,1952543348,1601791845,1953066601,151653690,544632685,1685221239,1920233504,980640544,1902473819,1953719669,1920233567,744304683,168654946,1987013897,1919907616,1953505380,1935876210,1701993274,1936029041,1953521524,1563569010,225666348,1701972234,168650356,1919158797,1919252073,1953391967,221935986,1970276618,1646291059,151653752,1752397168,225993504,1970276618,1679845491,151653752,1752397168,225014560,1970276618,1679845491,151653737,1752397168,225468960,1970276618,1679845491,151653747,1752397168,225666336,1970276618,1663068275,151653747,544239472,168653668,1818321673]},{"sector":3,"length":512,"data":[1852383340,1868788841,168650084,1987013897,1951619872,1567908210,1717989164,544499059,1634890867,2036819316,1829308941,1528854127,1920233033,1718561885,1952805734,1953392928,1970434661,168653936,1987013897,746087456,1936090735,1679848549,1767863922,1635021678,1684368492,1829308941,1629517423,221850728,1852377354,825368692,151653736,543323507,841775202,1829308941,1528854127,744323170,1936090735,1965061221,1852399461,151653748,544632685,1853190747,1567650655,225993260,1684801802,1768169587,1701993260,1936029041,1953521524,990469490,1684107116,1684300064,1936942450,543584032,1970365810,544502629,1684104552,168653413,1987013897,1768184608,1701981789,1684561777,1953705586,1937077345,808529964,168650800,1987013897,1919907616,1953505380,1683693682,1764646249,1601464686,779183474,1633971813,728917092,2019699760,1718172448,544760352,807419197,1919164460,1919252073,1852798752,1646294055,1852383333,1818326131,224683372,1869416714,1870078070,1881171058,1528853108,777873764,1953066601,1902473823,1684956462,1919181921,1663840811,1933254771,1696625765,1629512814,1701995620,168653683,1886351369,225666336,1869613322,1935941744,1879640589,1646293103,151653744,544239472,168651108,1886351369,225014560,1869613322,2019827824,1879640589,1663070319,151653752,544239472,168654946,1952805385,1678380390,1767863922,1635021678,1684368492,151653690,1142973028,1095649090,657212749]},{"sector":4,"length":512,"data":[1986356256,543515497,1986622052,1763734117,1635021678,1684368492,1380133927,742804524,220668967,1684956426,168650345,1852377613,1868788841,1881171300,224620402,1818429706,1762266468,1380196454,1380275785,1829308941,1629517423,825568360,151653736,544501353,224932146,1869416714,2019631222,225993260,1936483594,151653733,544632685,1663858785,1695157619,1718183022,1829308941,1998616175,543453807,544371824,1702389083,1802265187,1684890414,1818845556,744305195,168654945,1987013897,1919907616,1953505380,1700470898,1650681208,1714318188,724656739,1630297394,151653752,544632685,1685221239,1920233504,2019908384,1818387301,1667640939,841691746,2019634269,1829308941,1528854127,1685091184,744318818,168654945,758843917,1126182189,1801676136,1397703712,1919252000,1852795251,168626701,1987013897,746086688,808464435,990447976,1667590243,1329864811,1702240339,1869181810,151653742,544501353,224932146,543582474,1447645764,1696617029,221257841,1835206922,1818304624,168636972,1700882953,224804896,1701972234,1074400628,168639040,1768189541,151653734,544632685,1936680027,1567778166,225206572,543582474,223170623,1835206922,1818304624,168637228,1700882953,222707744,1869416714,1885020278,1751348321,1836082271,845766505,959208806,1747990832,1869495072,1414416672,1749430816,543582496,1329864764,221454419,1869416714,2036473974,1881171316,1528853108,1802465128,744318514]},{"sector":5,"length":512,"data":[1748190000,1077938701,1695157562,1718183022,1661536781,1629515885,221523052,1634339082,1178607717,1829308941,1528854127,1668571504,1835687784,808213872,157827653,544173627,541213517,1701667182,1718165619,1142963232,874533711,1077938701,1762266426,1398087782,1397703749,223954251,1634339082,1178607648,1829308941,1528854127,1668571504,1868849000,2036689779,1714579807,809053277,543699001,544173627,1263750980,1763727685,540811366,542330692,1074400565,168639040,1768189541,151653734,1734894456,745300256,168650849,1886216969,746086688,1751527731,1778977293,1178607714,990447881,1981834857,1769173605,1008758383,858665760,1948265521,544105832,661548900,1937055860,1701716069,1313415287,892477524,909258600,1701650536,1685022836,1762200077,1528849262,1885696885,1701536609,168648052,1886216969,746086688,1093678896,151653736,1075864170,151653702,543387241,1702065499,1801675120,542995557,1852128009,1701601889,1413563936,1629499955,1936024419,1701650547,1685022836,1919903264,1462717472,1077938701,218762554,757938954,1749229613,543908709,544370534,1936617315,543517807,1970302569,1937121396,1852383278,544503152,1836020326,1713398048,543517801,1864397423,1919248500,1986356256,778396521,168626701,1987013897,746086688,808465460,990447976,1413697353,1701257292,1852383348,168652646,1919907849,746086944,168654946,1953392905,1748054560,1778977293,1178607715,990447881]},{"sector":6,"length":512,"data":[1847617129,1679848559,1667855973,151653733,543452769,942435428,151611441,1701339963,1763732323,1868767334,1819243374,1701060709,1701013878,1661536781,1679847533,825764972,151653736,543518314,151602752,1718172425,1953459744,1701344288,1852793632,1701605235,1886284064,168653941,1987013897,1869503264,1953784180,808213881,1765476640,1767841908,1629511539,2037675040,1077938701,151653690,544632685,875329633,1747988532,1228605705,1280590671,1952802592,1718511904,151653743,544632685,824997986,1762200077,840987758,168650801,543386121,1953066601,151653681,544632685,1685353307,1718908271,1818504285,168626701,538976315,1702129225,808984684,1126184504,1663063376,1801676136,990514478,1109401632,544437353,825045553,1718558773,1701344288,1095517728,1914721095,1936287589,544367988,543519329,1635216481,1931506553,1864397925,1752440942,808984677,1881159224,1701015410,1919906675,218762542,1768843530,221917556,1970276618,1931503731,151653744,544239472,168654945,1886216969,746086688,168652915,544893449,1953066601,218762546,1869416714,2019762294,842084396,168650801,1818784521,745038624,168651875,544893449,151610944,1718172425,942684192,151653686,543387241,1667329371,1701734760,1074400605,1778989632,1763733613,863267182,1765476617,808984678,221657137,990514442,1226842144,1818588270,909652512,1431323424,1701339936,221145955,538983178,1953055264,842080371]},{"sector":7,"length":512,"data":[540356909,1948280431,1713399144,1936154988,1734701600,1702130537,1918967922,1818304613,1937334647,1701602080,1864397409,1752440942,990514533,1226842144,1818588270,909652512,1869770784,1936942435,1763734127,1701978222,1630366817,1701995620,1830843251,778396783,168626701,1953066601,168639026,942812681,218762550,1869416714,1834688630,1768448865,744318318,151653682,1752397168,845557792,157823536,1920219913,1869881465,1952805664,1634493984,1768038503,824210292,892415282,1879640589,157708399,1916471561,1634496613,1663067491,1701999221,1713402990,1936154988,1818326560,168650101,1937076233,151610984,1701264137,1701716084,1818632311,225666913,1869613322,2019631216,990447881,1919906931,1701716069,1818632311,544434017,1092644457,151653720,1953719668,745038112,1748002352,1765476617,1768038502,824210292,892415282,1701602080,539783777,542462019,808984637,221657138,2053769482,1768843552,151597940,543582523,942813240,218762550,538983178,1953384736,857762917,1126184504,1663063376,1801676136,990514478,1411391520,1092642152,1768038467,1646275700,589329513,539768881,1629516649,2003136032,1953063456,1953392928,1969516402,543450467,1948282473,1159751016,1195461702,990514515,1914708000,1936287589,544367988,1948282479,1226859880,1818588270,540424244,1126193220,1948276048,1701257327,1634887022,1629513076,1852270956,1953391981,1969317408,779318380,540740109,1750343712]},{"sector":8,"length":512,"data":[1646293865,1663071337,1869508193,1700929652,1952805664,544108320,543516788,1702129225,909652844,1431323424,218762542,538983178,544491808,1847620457,1931507567,543516257,1965059956,857761139,1768041778,1886330996,1701080931,1701867311,1684955506,168636019,772344333,221657139,151653642,543387241,1667329371,1701734760,151653725,544632685,1932294242,990447984,1702257011,1920295712,1953391986,1635021600,1881172835,1953393007,1948283493,1818304623,225339241,1851853066,1886593124,1953459756,151597856,1768710459,1931505255,1801675124,544175136,1768912481,1128341604,1969317408,168653932,1937076233,157574760,1882917129,543716213,1734963823,1818324585,1279673632,223561537,1869613322,1634017392,151593080,1952802619,1769107232,1634625895,1178935404,1397178700,1829308941,1696626287,1697413219,151615585,1986097979,1919885413,1852401513,1159752801,1195461702,1852383315,223888160,1870137610,1634017394,808725624,1747988528,1715144969,544237932,1380931624,1128341545,1953063456,544106784,1095517765,168645447,1937076233,1634017384,990447992,544503152,544695662,1095517765,1981829959,1702194273,544108320,1667331187,151653739,1718644592,151587172,1885696571,1701011820,1279673632,542328641,1970037110,151653733,1752397168,151610470,1701264137,1701716084,1178935415,1397178700,1879640589,1696624751,153122913,1953708809,543519343,544695662,1095517765,1981829959,1702194273]},{"sector":9,"length":512,"data":[544106784,223887685,1970276618,1696622707,168654947,1886351369,151610470,1701985033,1919906931,1128341605,1953063456,544106784,1095517765,1713394503,1953722985,1829308941,1931507311,2019699824,1916471561,1869902693,1864394098,1768384882,543973742,1667331187,1869619307,1702129257,151653746,544238947,746086757,225993573,1701447946,1768843552,151597940,543582523,942878776,218762550,538983178,1953384736,942959717,1480859702,1431323424,1850286124,879519092,1394620216,1145970776,1629498448,1226859630,1818588270,540424244,1126193235,1663063376,1801676136,990514478,1126178848,1801676136,543649385,544370534,1818845793,544830569,1931505524,1664054373,1918985580,541346080,1734437990,1768040480,825368692,1852383273,1279673632,223561537,538983178,1768453920,1763731555,1667851374,1936028769,1701344288,1701998624,1668179315,1718558821,1881170208,1701015410,1919906675,1953068832,1752440936,1650532453,1953066089,990514553,1948262432,1937055855,1752440933,1346576485,541346133,1953721961,1952675186,778989417,168626701,1668180233,1634556704,1852401763,151608677,661940539,543236211,221657140,1869416714,1634017398,1667574904,990447992,544499047,1734963823,1818324585,1279673632,223561537,1870137610,1634017394,808594552,808464432,990453864,1885957222,1331177504,1226844498,1768038468,1852383348,1279673632,223561537,1970276618,1696622707,151615585,1986097979,1701716069]}]],[[{"sector":1,"length":512,"data":[1178935415,1397178700,1818326560,1864394101,1953701998,225141601,1869613322,157574768,1916471561,1634496613,1663067491,1701999221,1159754862,1195461702,1635131475,224753004,1970276618,1684433011,990447881,544499047,544695662,1095517765,168645447,1886351369,2019648800,990447904,1919906931,1701716069,1178935415,1397178700,544106784,223887685,1970276618,1696622707,168654947,1886351369,151610470,1701985033,1919906931,1145643109,1953063456,544106784,1095517765,1713394503,1953722985,1661536781,1696624749,1697413217,151615587,1701339963,1763732323,1953046630,1663071015,1735287144,168649829,543517193,1953066601,990447923,941647465,909653040,1633888288,544483182,1734831988,1226859884,1768038468,168634740,758843917,1159736621,1969448312,1126196596,1145656656,1936615712,1668641396,1852795252,218762542,892209418,168638008,2013858317,1696625263,1697413217,151615585,1952805691,544240928,1970302569,1868963956,1346576498,541346133,1953721961,1952675186,225341289,1885538570,224684405,1835206922,1634017392,221326456,1818888458,1768843552,151597940,543582523,1936269361,1953459744,1981833504,1684630625,1886284064,1981838453,1702194273,1919903264,1431323424,168641609,1919907849,2019648800,2019648812,1866139913,1919248500,1702062455,1970413612,1346576494,541346133,1752459639,2019648800,824196384,1762200077,1629512558,151653752,1769304163,1762266468,1296900198,1347769176]},{"sector":2,"length":512,"data":[151653712,1696625762,841775204,151653683,1668572531,1634229024,1835884403,168648056,1768189541,151653734,544632685,1630301281,151653736,543452769,808217697,151611494,1953063483,758653043,1629499697,1948280178,1830839656,1818584175,1836412448,225600866,1835206922,1818304624,168637996,1700948489,155598880,1765476617,1027350630,168637984,1987013897,745300256,990447926,1042310761,539768352,544499059,1948284009,221651055,977289226,1829308941,1528854127,1751343469,1566928489,158097708,1986097979,1953046629,168626701,808988169,168638008,540740109,1699618848,1679848568,1919251557,1701734765,1701344288,1887007776,1718558821,1431324192,544106784,2037588065,1835365491,1684955424,1952805664,1701344288,1667329312,926441320,540740109,1635131424,1650551154,1998611820,543716457,543516788,1919971425,1769107567,543519841,1970037110,538979941,543976513,1768383858,1919251571,1918967923,1937055845,1646290021,990514553,1948262432,544434536,1701080931,1869488187,1629513070,1881171314,1702061426,1684371058,218762542,538983178,1886339872,1701015410,1919906675,1701339936,221145955,538983178,1701336096,1735156000,1953067631,1763732840,1869881459,1952801824,1768780389,1998611822,1752458600,1948283493,1713399144,1952542572,761753193,1852403568,990514548,1931485216,1970561396,1851859059,1868767332,1869771886,1870078060,544433266,544104803,1998611810,1953786226,1948282469]},{"sector":3,"length":512,"data":[538979951,1847617097,539784303,168652654,538976315,1919971171,1936024431,544370547,1936291941,539915124,543574304,543516788,1952543859,1629516661,1663067246,1920233071,1998613615,1935962735,1851876128,224748064,538983178,1769109280,1852142708,745501728,1701344288,1919902496,1952671090,1886348064,1701015410,1919906675,544434464,1852139636,1952801824,1768780389,224683374,538983178,1885692960,1768189541,1864394606,1752440942,1919950949,1936024431,544370547,539903049,1701336096,1953384736,942894181,1346576438,1633886293,990514542,1998594080,543912559,1752459639,1953064224,544367976,1226862177,1818588270,926429728,1346653728,544370464,1226862177,1818588270,540489779,777012302,540740109,1750343712,1852383333,1768843622,1864399220,1752440934,1868767333,1668248176,1869837157,1970086002,1646294131,1751326821,1701536613,990514532,1948262432,1701060719,1836213620,543518313,543516788,1920102243,544498533,1919971171,1936024431,544370547,221135945,1762266378,863267182,151653690,544632685,1529637985,1751343469,1566928489,1829308941,1528854127,1751343469,1563899999,158097708,544825915,1634100580,745827445,1952805664,1667329312,926441320,544175136,1751343469,224751209,1835206922,1818304624,151598380,1344299323,1769238117,1864396149,1650532466,543520367,1635216481,1998615417,543976553,1702257000,1176527136,168645968,1700882953,1768843552,168637812,1711868429]},{"sector":4,"length":512,"data":[1768843630,151587188,1936028219,1176532069,1953701968,1937077345,1919907616,151653732,544632685,892106849,1751201121,1765476617,544500078,1752459639,1852796448,1919253037,1635131503,224753004,1970276618,1629513843,151653752,544632685,1932292194,151653744,1953721958,1528854387,157118562,1634941705,1176528246,1953701968,1937077345,1919907616,151653732,544239472,151615585,1751333641,543908709,1931497542,1970561396,1870078067,168649842,1886216969,745300256,151653680,543518314,151602752,1718172425,544173600,542462022,1936028272,225734245,151653642,1752397168,225992992,1852180746,2003006579,1885494048,990447965,1702257011,542131744,1953394531,543977330,1685221239,1879640589,1629515887,151587192,1701339963,1176529763,1868767312,1869771886,1870078060,168649842,1684955401,746086688,1714630705,990447976,543516019,1931503209,1667591269,543450484,1953653104,1869357171,1327524719,151653707,544238947,858552417,168650854,543517193,1953066601,1074400564,168639040,1987013897,1634556704,945776739,757882167,1849362737,1346773103,1919950933,1852142437,151653748,544238954,1953066601,1762266421,880044398,218762554,757938954,1716068397,660961056,1965057394,1735289203,857760032,539768376,1667590243,1868963947,942809202,1937121335,942874670,2036473911,1701339936,1852402531,1752637543,1701344357,990514546,539831597,1718511915,1953066601,540876921,1718511917]},{"sector":5,"length":512,"data":[1953066601,168636025,772344333,154548274,1916471561,1987013989,1464213605,1934903617,1717920288,543519343,1763725382,1920234350,1769235317,225668719,151653642,544238947,1667329371,1701734760,221457501,1852442890,1852383333,154498153,1718172425,1953459744,857760032,168638008,1684825609,151587121,1937075515,1937055860,1701060709,1819631974,1868767348,1869771886,1919295596,1176530287,1229867342,151653716,2053401702,990447881,1836216166,1718511904,1953066601,151653753,1986618470,1414733936,740897064,151606355,790638907,1025519648,1718511904,1953066601,151653753,543452262,151606355,1868970761,1847618930,1952540517,543520361,1768320617,2037672302,1711868429,225667171,1667631370,1886416239,990447881,543516019,1948280425,544826728,543519329,543516788,1701667187,1684955424,1835364896,543520367,1835362420,1879640589,543716213,168654945,1936614921,544699252,1567646299,1815808265,543911791,1931506785,1970561396,1919295603,1176530287,1347243843,151653712,544239472,168654945,1751216905,151653734,544894570,1953066601,990447925,1948280425,544826728,543519329,1717987684,1852142181,1948265588,544105832,1931965545,857760032,168638264,1667589129,1634556704,945776739,151608631,1752461115,1769435749,539780467,1931965545,840982816,168638264,1953066601,168639029,772344333,909652024,168626701,1293969001,1397048399,1296258117,151653700,544632685,1529637985]},{"sector":6,"length":512,"data":[1751343469,1566928489,1829308941,1528854127,1751343469,1600482921,1970561889,744320097,168651873,1987013897,745300256,1667329371,926441320,151653725,544632685,1667329371,926441320,1952670047,1567383925,225206572,1684956426,168650345,758843917,1914711341,1987013989,1769152613,1629513082,1629512814,544367716,1717924464,1936029801,543582496,542462019,1008759657,858798112,168638008,1661536781,1528852589,1751343469,1566928489,168637228,1651403273,1886350880,1751348321,1829308941,1931507311,1718561897,1952805734,1952542752,1936025699,1829308941,1663071855,1851993208,1952542836,168650851,221921344,1869351178,225932132,1668811018,1629513576,2019699832,1829308941,1646294639,543519865,544371824,1568170587,1747990828,1812531725,544239471,168641088,1987013897,1634753312,1600676724,1937141613,858545520,990472261,544499059,1852732706,1936024421,2037539187,1396973602,1734701856,1953391981,1701998624,225995110,1869416714,1885020278,1751348321,1701996895,808213876,157828675,1685021499,1868963941,1380524146,168645701,1634758510,979919732,168626701,1142974057,1163282770,1902452818,168636448,1987013897,745108256,725701700,1661603121,1886350184,168639092,1685023753,168649331,1886216969,745300256,220667943,1701447946,1802003232,225734767,1835206922,1818304624,1111577644,1778977293,1751326821,1953525611,168626701,757935419,1869762592,1936942435,1769435936,1701340020]},{"sector":7,"length":512,"data":[218762611,1835206922,1818304624,657401644,1778977293,1763730798,913598830,1765476617,1869488230,2004033652,1751348329,1812531725,1651729519,1661536781,1629515885,1059531884,151653671,1763730794,1752459630,158362725,1718172425,222244640,1851853066,1818304612,1431262252,1380274256,1661536781,1629515885,1176972396,151653671,543518314,1868849506,168653936,1987013897,745038112,157836848,1701264137,1869422708,168650084,1953392905,1747988768,1661536781,1629515885,154348652,1868774153,544370540,1954047348,1685024032,222240869,1634339082,1802003232,158625903,1869495049,1829308941,1528854127,1885957222,221326429,1835665674,1751326832,1953525611,168626701,1868849506,221934704,1869416714,1767579766,845640557,1630297441,151653740,544632685,1865185380,1702061670,1835606132,154298227,1986947387,1684630625,1769435936,543712116,1936942445,224749409,1869416714,1751195766,1748578348,1882917129,1953393010,1920234272,224882281,1852377354,825368692,151653736,544632685,875329633,1748054115,1899694345,544500085,543452769,1970562418,1696624242,1919906418,1635021600,225670516,1852377354,825368692,218762600,757938954,1917853741,544501353,1701322849,1830842476,1634956133,168650087,1852377613,1701344361,221933676,1869416714,2019827830,1717989164,544499059,1735617897,1664813361,1634561391,1814914158,543518313,1886152040,1936026912,1701273971,1829308941,1629517423,959458408]},{"sector":8,"length":512,"data":[990447976,1852404336,1953702004,1735289202,1762200077,840987758,168650801,1987013897,746086688,808477492,990447976,1953068401,1762200077,840987758,168650801,758843917,1176513837,543450469,543516788,1634559346,1852403305,1868767335,1851878765,1768693860,1948280174,1752440943,1848057957,1868767271,1851878765,168636004,1852377613,976647273,1678313997,1931502437,151653737,1935961964,151653730,1819042147,544108064,1882917129,1701015410,1948283763,1914725736,544502629,1948280431,1814062440,224751209,1684956426,168650345,758843917,1394617645,1965061221,1852383344,1920099700,544501877,1952671094,779317871,168626701,1987013897,746087200,1229804878,223564878,1869416714,1769152630,1717989164,544499059,1953787497,168649313,1987013897,745104416,1936090735,1763734629,1634956398,168650102,221921344,1869351178,224555876,1869416714,1751195766,1748316972,1762200077,840987758,168650801,1987013897,1768184608,744304683,168654946,1987013897,1768184608,744305195,168653669,1684300041,745104416,151653684,1734894456,746086688,151615588,1986097979,1852383333,539172980,1679847017,151653740,1935961964,151587191,1952802619,1684300064,1936942450,2013858317,543647843,1680636001,990447992,1953719666,543519343,544501353,1852383267,745300256,1952805664,1953392928,1717989152,544499059,1679847017,151653752,544632685,841771105,151611445,1952805691,1953392928,1970434661]},{"sector":9,"length":512,"data":[1981838448,1869898597,151653746,544501353,224932146,1869351178,1075867759,218762562,1869416714,1751195766,1748120876,1731922185,1931506789,1635152761,168653682,1953392905,1748054560,1829308941,1629517423,1936010360,2019711802,157102637,1635021627,1864397938,1129128038,168653634,1936028681,2019631220,158884140,1970092809,1953068140,1768649569,1293969262,1329868115,540287059,151653695,544894570,151602752,1869495049,1829308941,1528854127,1668571504,1835687784,808213872,224936517,1869416714,1968906358,1634755955,1952803683,221260893,1869416714,2019631222,225665836,1701054730,2019631203,1077938701,1869416762,2002460790,1564623693,225993004,151653642,544632685,858548321,168650804,1953392905,1748054560,1829308941,1998616175,543453807,544371824,1850306651,726880068,1647074608,151653752,544632685,1685221239,1920233504,1232100128,1397703790,744305195,168653669,758843917,1730161965,1629516901,1701995620,1864397683,1329864806,2004033619,1634758753,543517794,1096040772,1701994784,990514529,539831597,1646292852,1937055845,1948279909,1701257327,1702047604,1397760116,1851859024,1752440932,1629516661,1684631414,1397703712,1818321696,168653676,757935419,1818851104,1869488236,1870078068,1713400690,1142977135,1008751439,168637216,1718159885,1163089184,222381139,1970276618,1679845491,151653747,544632685,892106849,1748381796,1929972237,168649588,1953392905,1748054560]}],[{"sector":1,"length":512,"data":[1829308941,1663071855,1935355000,808528745,168648040,1987013897,746087456,168653668,1886351369,225666080,1667893514,222707744,1869416714,1751195766,1748055340,1762200077,840987758,168650801,1886216969,746086944,168654947,1701734921,222707744,1869416714,1870078070,1881171058,1528853108,1094996848,744304683,168651123,1987013897,1919907616,1953505380,1885020274,725697619,1680629042,1074400632,168639040,1768189541,218762598,543582474,223170623,757938954,1767317549,2003788910,2017009779,1684955424,1936671776,544566597,543519329,1852796257,1752440935,543519599,1953722216,1752637555,543712105,1684955496,1931502956,224750959,757938954,945168429,1850286134,1763734388,1919251566,1819042158,1769414777,1970235508,1768300660,544502642,1819042147,543649385,543516788,1702129257,1886745202,1751326836,778987873,758843917,1411394861,544434536,1937072483,1981838181,1869181537,1931506549,1937011311,543584032,1970238068,1936026722,1684955424,1668180256,1634757999,1768057204,1769236844,221148005,1762266378,1230446694,1398290766,223367253,1835206922,1683693680,1702261615,858545522,1778977293,1178607714,1829308941,1629517423,909192312,157823024,1970420489,1852403310,1852383335,1998610720,2017029737,1936679968,2020565536,151653695,544501353,224937522,1851853066,1818304612,225206572,1852442890,1869488250,1869112882,168651631,221921344,1684956426,168650345,1142974057]},{"sector":2,"length":512,"data":[1296388943,151653717,544632685,808220769,808464454,151653736,544632685,1630303077,151653752,544632685,808216932,893797958,151653736,544632685,1865181555,1702061670,1147412596,1833268079,1952531573,151653733,544632685,875329635,1913195021,543518821,1936747875,990447991,1852732786,543649385,1142976105,1833268079,168640373,544893449,1714581358,1802465128,1852115469,224815460,1835665674,1885610096,1869113709,1751348339,1701536613,1846152548,1751528047,980119407,1762200077,1528849262,1215254114,845901679,168648006,1768779876,1953722216,1667590243,979658091,1718159885,1397310496,1330595920,151653707,1752397168,225666080,1869613322,1936007280,1829308941,1679849071,1718561897,1952805734,1836082208,1869572201,168636779,1987013897,746086688,168653667,1818321673,1701322860,1919907704,151653732,543387241,168651108,1987013897,746086688,1936090735,1830843493,1836082297,1953391977,168655218,1818321673,1701322860,1919907704,1695157604,1718183022,1852115469,224815460,990514442,539831597,544499047,544760173,544698226,1651340653,1713402469,1746956911,544238693,1954047348,1969319968,1735289203,758843917,1763716397,1177493606,1935767328,1701868320,1768319331,539780197,1885957222,544175136,1701273968,1629499680,1663067246,1918985580,1701344288,1919120160,225338725,151653642,544370552,1630304353,151653752,544632685,1630303077,151653752,1629516399,1936010348]},{"sector":3,"length":512,"data":[942955322,542992436,1701264137,1634541684,1869750392,1970151543,1919246957,1778977293,1075870318,151653702,544632685,841772129,990447924,1970500449,840983917,1294475316,1864384836,1195581554,168634689,154812480,544632685,2019650907,1568108402,225993004,1835206922,1717248112,1567648108,168636460,543517193,168650304,1987013897,745038880,151612513,1634692155,1212424292,1953068832,1634476136,1914729587,168654703,1987013897,745301024,1530557285,1751200820,1815808349,543449455,1998605380,543716457,1970040675,225668717,1701054730,1818501219,1829308941,1629517423,892349560,157823280,1702050569,1768169588,1634496627,1634738297,168650087,1953392905,1747988768,2013858317,1663070831,2019765368,1916471561,807434095,1868767276,1852667244,168636448,1987013897,745038368,990447920,1701273968,168636448,1987013897,745038112,157825072,1701985033,1629512801,544371828,1663071329,1869836917,151653746,544501353,224931889,1869416714,1751261302,157835564,1952529161,168653428,1987013897,746086688,808465968,990447976,1634036835,1769414770,2003788910,1762200077,824210542,168650800,1919907849,746087456,151615588,2003792443,539766816,1970040675,807431789,1829308941,1646294639,154217576,1634745097,824206695,1829308941,1629517423,842017896,990447976,544499059,1936880995,1881174639,1953067887,225341289,1852377354,808525940,1074400616,168639040,1937076233,1935941736]},{"sector":4,"length":512,"data":[1879640589,1696624751,218762611,543582474,1447645764,1696617029,221257841,990514442,539831597,1702256979,1684955424,1685024032,544826985,1836213620,1952542313,544108393,1919181921,544437093,543452769,543516788,1701994864,1344304238,1713393747,1684825449,218762542,1869416714,1769152630,1230001196,151653718,544632685,1865181540,1702061670,1936728180,221393520,1869416714,225932150,1869416714,225932150,1869416714,1870078070,1881171058,1528853108,875391347,1718561885,1952805734,1953392928,221393522,1869416714,1935351926,1563569513,225665836,151653642,544632685,1345087859,1313165889,151653716,1937141613,151653751,544632685,761885531,1663851826,151653747,544632685,1886613595,1566925412,544432940,1852390153,1633904996,1948280180,1701995880,544434464,1679847278,1735746149,543516007,1684107116,2032165989,168653925,1768189541,151653734,544632685,1865181540,1702061670,1970413684,842216046,1681590580,1735746149,660956519,1852383347,858923124,221524527,1633880330,1881173100,1634231666,151597419,1768843579,1635131508,1936029036,168626701,757935419,1919447840,543911529,1430406468,1851859015,1702043748,1953046644,1953702003,225141601,151653642,544632685,1865185377,1702061670,1701978228,1700752481,723543150,1096045344,1230195523,539697242,168637745,1684955401,745300256,544501614,151598385,2003136059,1635021600,1881172835,1953393007,168653413,1987013897]},{"sector":5,"length":512,"pattern":0,"data":[746086944,168654945,1667589129,225992992,1701054730,2019631203,1829308941,1528854127,1601204084,744321139,153122913,1986097979,1701716069,1347625079,1852402976,1948283765,673214327,544370534,543516788,1685221239,660961056,1881173100,694711157,1718159885,1230128160,223495510,1701972234,1695157620,224752492,1852377354,2019631203,1762200077,1629512558,151653752,544632685,875326563,1929972237,1646293608,1818438776,1778977293,1763733613,1668573550,225734255,1684956426,168650345,1953066601,1701080931,1684956448,218762608,1414094602,542398533,1935961701,168626701,1094994271,1931493716,1701668709,168653934,1886678627,1751348321,673201440,539828260,1668571504,695428456,840970016,1230965261,1096040772,1684956448,218762611,1852115210,1953701988,225735265,10]},{"sector":6,"length":512,"data":[-61949463,-661731188,646697102,113724828,17452446,803735326,-402426608,-71685796,112939,1008442600,-1962445555,1313730582,993796587,1060951156,537673844,373055788,-1818748809,-786514456,244812771,-267991253,-1088645299,-755020018,-829706005,1318119809,1305480707,1095700159,-1426906960,-1322353730,-391843065,654256346,-54637154,-232879317,1326366541,1952332972,1963539663,1327413256,-349658136,222079727,1397746293,1529393640,-2132904629,5099070,116839285,1954565583,780319436,-402651207,11806881,-1108666675,1108530664,-1408834621,-486541848,113755130,32132510,309595452,1314004619,-400731416,378084888,512314838,646663642,247418268,1306173775,-1339546648,113683002,-1124053404,-694080998,-1328152755,-1343706592,1947024410,1950039134,1694943189,-1090518962,1012289294,1007055457,604141434,1017948895,1007711245,1007449147,1007186976,1006924858,-2132773623,-394199219,1447960033,-1959674946,46564318,581750411,-2013562432,-836021810,-212922689,242507430,995163777,1583276402,-369169431,-1732313448,-2143878330,393409852,1962224812,1950914631,393496605,1007383624,139490051,-380738554,243269874,1178619492,-385816087,-1565785901,-930460058,1315180160,-1403494896,-1200276932,1008562152,1006924813,-1079151301,-1047900402,8972714,1694926508,1962949710,-1403494758,611585340,544488252,-2080424727,5137726,744392053,-400919293,222043448,512427892,-471249446,-17896962,-1085381216]},{"sector":7,"length":512,"data":[-341160178,1326366539,-1948003949,-398106705,222043412,574372468,658250100,1290278260,1312435720,-1826717697,-8268289,360140814,-1978209389,222080224,-1002828940,-2119562636,1984958207,-14358032,481945772,-965407428,-1957753154,-1957832162,-1957833194,-389141553,378142307,-2115416618,-1834285826,46371499,-1442724949,1731627459,1017929294,1006924813,-1106545349,99304722,1315387017,247442526,1947024463,1966816260,49473795,440663,-1410088909,76238431,-2132811995,1962934909,1136613171,833861,1969205234,1976109863,38046217,1379720996,-377469067,-1998981620,1206387277,623151644,1346232287,-389647020,-1041556422,1315323520,1462138112,-1186596929,-1343094778,1444574559,472574125,276118076,472049752,726015675,-1576564007,-1779741082,-675326114,1816901,1594350824,226520946,73238532,1931017088,61969163,-33232686,1256915732,-1341377152,519798786,208938615,1914502016,1678671929,854270030,1965571200,749513771,1996962864,88442888,1948859564,-32970469,1009790124,-1997113593,78644549,1965030272,67993609,48956848,1161429168,-2046331902,3932741,-521545867,-957830143,-399085050,1300760279,140347655,-401975927,-109044859,1008893698,-400657094,-1125639304,139299590,-1996141175,1435043933,537755658,-385766935,1575485605,1968913435,17662198,1008423912,1324315741,1172815703,-402650951,1918830357,284917827,-1015020173,-2145522936,1962935677,456058903,1965702222,1569211919]},{"sector":8,"length":512,"data":[455272453,-402233624,1374357194,294272,1569195381,-2146833660,1962935677,90015752,-350551064,-45815496,104982700,1008400616,134968362,1560348493,173347080,-1813504021,451078150,-406890674,-389467323,1918830249,92111060,-1999735552,-907541155,1949121562,1965767880,-9901821,-2080413463,1962935421,125665325,-2145094656,108331069,-384823936,243269866,-1333768604,122025474,1074230276,1678671936,1166541902,-370873597,226557134,71666178,-1476049654,-165317360,1963198277,1678671903,1166770254,2009348612,1472497154,-1186659649,-1343094776,-1143966369,1793786374,1315180160,71666308,1963345162,71666440,1166656646,67484420,359808,1300893813,284786692,-511662724,83460103,243285109,-1979167132,61933165,1166730706,1947483141,1962949770,1007988738,612400144,-756545017,1166688741,1962949636,97353733,272382187,119822716,87877642,-885389708,11731572,138775121,-120453199,157649497,326485050,1963607355,167819022,175376477,-914307074,-2147226816,2106097865,72190211,431417422,1007470467,1008169997,1007907899,-2129890004,1934570239,429844486,-369293591,96926686,-1070377217,-1186042945,-1410138105,1315387019,1928146092,1946631189,-1576241401,-253014413,1316425344,-370545919,-1387332687,-768359290,-150975301,1315546099,1996545853,1926773780,1947107344,-527826610,1315807916,1316425344,1731627266,-1963816114,-1924876644,-1087319113,1017925390,-2144046080,-1770717379,141705276]},{"sector":9,"length":512,"data":[646451412,48975480,-1818751484,1164480395,-2020938799,92554516,-771813772,1459584129,-2083556262,-890565433,-2130745367,-126484675,-1471252576,-1475054576,-1475316476,-1947634680,-2142345418,57999164,-1594154775,3952229,-264494732,116787573,1946242679,-1592464405,-31175063,1996554045,818724831,-234879047,-153782866,273572870,1772163700,16727374,-1010841993,637232,-1133138190,1315905163,208984843,-162629984,-2065641256,-1468725433,1305876107,1306140299,1315178230,-1341819902,-99817317,1011770784,-402426880,1688271362,1954588750,604251151,1007252548,-1341819836,-101914521,1315186314,-1471252576,-167414464,91488708,-672635216,1315348729,208928828,1023004136,-2147126684,542008334,-1957795423,1089438200,1024946946,611451392,1316228736,137896961,-1756467962,-670300380,61939179,119861203,101245138,-405713299,832537995,125101188,-401625008,173603206,-397511418,1839331710,1996944974,292815438,-110041008,1678177880,91490382,1676199050,1799261177,1962871630,55413259,1972175029,-111810552,1315913355,192216843,-1739688288,141921681,-1946598680,189690174,-1928760065,-1733557131,-114169711,1305876105,1316175488,-166497533,625894406,116787061,1950371447,1929823749,904463182,40429817,1166684395,-1324932092,148951555,-347181818,71666209,1973552932,-1994921138,-347181250,33945105,1049184117,116084331,117720566,243284853,-1609544073,86789752,1081356924,51707140,1316425344]}]],[[{"sector":1,"length":512,"data":[39684632,158653194,1316425344,1975728644,1980119572,-2045938610,1011774982,-2147060480,72251150,31910339,1006781834,1914991617,1963884554,65732942,1006781834,1009284096,-2146994942,542013198,71043563,243324789,-1975497097,-2075232738,973370587,-1564052029,243289718,-1023127945,-1979599384,-347778169,-2096975733,1946159741,1997438983,78659662,33834438,1315913353,-1991346526,-1018269378,2112358832,178433,-1471257440,-1474661311,201487361,213787652,1315218048,69468340,91538442,24396860,-702641343,-1948712115,-2092050418,1166737617,173378312,-786709717,-1325054584,989385223,995915204,-967281214,-352254907,-702641242,244045,-1979034229,1048642117,16797289,1010893170,1007186944,1007449092,187725066,-1339263534,-1341461758,1997438980,-1048362930,-1948712189,-2092050418,1166541009,138775300,-786709717,-1996143223,1049167701,-373076367,-380108588,514915508,-351969910,-350244809,88443436,-411630532,113640821,1006980723,-1327729663,-1340675296,-1978471647,54265157,104648050,113640819,-1341895053,90016290,-472775759,1315773960,1316425344,71645698,-2115430028,71666176,104601644,61994099,101245138,243289709,-1023127945,1316431488,138775535,-120453199,1166738923,973123592,995325380,1316293189,1307050416,140872192,-1996208759,-1018269378,1316423414,-167283696,72251142,645935220,-2131014025,91497020,1316425344,1980155408,-380108722,2105670652,-352255737,125665551]},{"sector":2,"length":512,"data":[149619457,1159563146,71646104,-380059276,2105604992,-1217134590,1946305848,-286566222,1963197942,33945110,1166738804,-1340413180,1678177798,292815950,-1978733752,524026949,1166672757,201794565,1829112256,1997439054,1049166414,1019432555,1343321133,171716652,1342730840,1093459748,-178780612,1949121731,4188175,184549817,171210194,-1020103169,3139756,-905196661,1946157497,-137169119,-763103781,-2134444544,-92055948,-166693377,192184519,1979711360,-2134641144,1103299444,868434241,-388877349,879891493,-391325686,-361622499,1978713846,309543,-757996591,-387187998,1963063680,33259543,-2143152780,259261179,83591234,-2143155852,57936123,-1997182999,-1950153131,-539024124,578110780,-1966831024,-461372828,-406890529,146362693,-1951403520,1482643929,-146405259,415465683,-645197333,259370994,-2142512853,57807099,1174979456,-104597434,298051779,369499713,270788639,-1494016249,-11236705,-9074138,521537054,118496232,41262623,105990891,-544536810,-1940975937,498002136,-1918223696,-1511456956,539015197,-389903701,548937123,-963990752,-1206019352,1487609888,495642704,-1918223696,-2115436729,521543197,498133075,1493639007,-1779760413,118890262,1239985347,1397798931,-1422216021,-397564767,-1880613540,-1103721699,1326366541,6481950,11914,73355,202379,1038665355,-1440698339,1021887882,-1440698339,770229131,-1440698339,636011147,-1440698339,494197539,-1101901482]},{"sector":3,"length":512,"data":[45678600,1960721152,602426119,571648,-1071469908,1499134688,-234676386,-2142890894,91508221,1968897408,488957961,-561276949,1019468686,-1189710579,512426111,378228192,-225751588,1601425667,-335544390,-26965414,-2132810624,527779068,1832656908,1290339189,1952595199,1953971208,1969503236,1308074506,1007858664,213939213,1970027552,312928275,-1961735448,-402201654,-347532688,-204805715,-1962901319,-397521890,1575489826,-534869742,-1947038899,-956240943,927854598,1306566925,-1340315672,-963925446,475981904,-1423957832,811437400,-1961986584,264340430,-902101902,-896859534,-398340565,-140505459,-534868403,1953971277,1952726110,1353470317,-1340329240,1012443680,1006924320,-1342015874,126363182,1491591747,721424569,-1207470904,-1431625696,521599458,1306277513,-2146543640,1649276734,1170605685,-74764825,472180818,-230994342,-1085928589,512446222,1793674720,378094335,1103318492,-24909359,-1389856770,-1340355608,-220026336,-1048331029,-773205757,-50428951,1353519479,464709805,464447576,-492166992,866118636,-375657482,-1075252512,1277070093,279832654,1007779560,1378513933,-1961856792,1326365391,-1956656597,-956086079,-957818510,-1896707315,379909059,-1090054625,-1494725208,230615053,-389837885,984619872,706395562,-704658805,-1423957832,1393401064,1527110888,-401760280,783293259,-397257814,1532631926,860823230,-834764599,863240269,1317977942,1305622155,1305753147,-1628960910,1913499662]},{"sector":4,"length":512,"data":[-834764777,208997709,1963605120,117327367,-521450034,1305387692,1305622153,-401609890,108334442,567085236,11797739,540808909,222049140,138162036,758914420,-108851084,-2002619646,278390788,-1404986510,1407718123,247417357,-481891505,-397522548,-2048193222,-351452696,-2011307136,1374759684,1726524498,1522698768,217049177,-1090183704,-689418840,216983564,1326366530,410258748,1946665718,-2083391732,548406465,669625075,168671487,-15603285,857385449,1277070281,252897358,1363266091,273541202,-1961933592,250184143,-1014079665,1946286467,-768387036,-2097022845,-235470638,175423499,1364135614,1213834483,-896797067,247336931,-341511345,245389576,-213276081,-1022945622,-1106242369,-1850913010,-1834153501,-671116371,-1007295930,-2014786384,-1021016060,-868481910,2078802804,-1584151804,-324841902,-1645702323,1326366477,1319878707,1007669736,-1961724915,-397546466,-1416491277,-28857453,-347140602,269271014,-385897240,-4650353,69134591,-6494128,1976319064,-297893607,1966064717,-18159,1006897128,-1996000052,-380740578,378214411,854085102,-201686774,-402426833,2112428027,253094128,1894273619,252569615,1494179816,-1947169960,63015913,-963948350,57983763,1478061032,-1206294552,-1951719392,1354902469,-1021589877,-217381004,1374159732,1307072537,427878681,1686765747,-538672898,1967783040,-2132768229,-58662940,-2146601897,55429438,-58717582,1124431172,254732355,-401681688,-75493636]},{"sector":5,"length":512,"data":[1997042689,417917964,-317986023,-350680088,-387095035,938023163,-1261728743,-968981680,561250381,918902302,1552502212,-1021354480,1048793524,1946176966,-984211956,-1957837770,526258268,-1021194813,994944161,-1018321402,-726960,1381175157,-1961287704,-1957801418,1515084862,-389851045,510921924,-113344466,242352717,-164376438,95994622,567146867,634192619,-382777670,-157284324,1962949709,808434182,-1475797783,990868486,1968067102,16417030,-385649663,-208932944,12122763,8436285,1946128104,147777795,1107474579,-768358093,116793805,1963347446,-8329103,1302595214,992367446,-1677721034,1939726071,906176005,79233026,-774163712,-489434650,469183482,990409433,990016986,1527411696,816691806,-351752984,-1990304978,-1555153898,12078660,868823874,-1172189742,-685572081,-271383375,1068824323,-1895956295,-2128491042,990896326,-1259375423,371313982,-1269775585,1528941886,1307969270,-2130217980,-2097020693,1381171418,1962865128,140306435,-1186059073,-1070399460,110078963,110054972,247352900,1302904576,-1515870811,-1169489480,347799680,1931595086,134408451,-1962905624,772156356,8404224,-2135424142,1302504192,1310865092,1218686246,1479969102,1342606414,641123406,1547077966,1376160846,-184105394,118882381,-26416904,1302635411,-1420931905,-28710741,-1171971400,567090009,1302601358,661129,790156,-692117738,1314700877,-1582979753,1588285010,-218102087,-1670986843,1611042662]},{"sector":6,"length":512,"data":[646538830,-389853608,-1320088843,65721092,-741962797,64720104,1975663555,616991499,-2132833521,-1019605021,102670169,921181974,-1642133751,-251460237,-201459453,-369318748,-2134901915,1947024384,216328215,792466036,1631325812,2050754162,-551288201,-437539670,-1985347408,1464735294,-2113961642,-2128317440,1912636927,-78279396,-1186614085,-1957625854,-2080732173,78710211,76195571,-503024551,-1576947475,-1084338698,1314344718,222079660,-1084294539,552075356,1313382912,-402625345,1235353623,1326366286,-1404610721,1963801770,731339002,-1438103353,222080195,1609042292,1022784524,1310618671,-399965768,-1403978393,158600508,1946962408,1966029828,1012420338,1208055041,222080195,870899060,-1326025716,-1404130816,108159292,41384508,-1196761308,-1414848480,866888619,-1414812736,11781035,-2130811766,-58662940,-1977911985,-538672928,1951923328,-918650867,175244109,1967455360,-398245115,-2065167392,-1192734197,33259531,343346292,-401899288,1519520672,1827193838,194439179,-1007723886,-401917208,1381174156,1717196902,-1912159249,-1957801466,55467038,126494425,-1962491129,-1907469794,1545505731,651756366,-1022949496,1406897694,663411339,121243528,24452955,516159939,-628368498,-1021376630,-385876039,-868417604,-994441356,1545505071,-527776946,-2132810624,175461116,-401919512,-919401692,113707499,349851120,1359593960,-1962930246,-2058462154,-401377847,-155254534,375083,158707442,-380550823]},{"sector":7,"length":512,"data":[-404225853,733527808,-234872903,-1977518674,-2136465851,-265156236,-428487938,-1476352279,604468288,48660543,-392641022,1307246779,57999164,-402616599,-148635470,950538292,-2132212876,1941978112,29816372,104599157,1077683572,-2143541390,468394098,292816188,128451636,2129134453,1916812288,1921006608,7596041,-402624280,1793589357,1377733376,-385356978,28966749,247419136,-1328116913,-16455476,208913546,-399516738,-1343744917,-345577196,112720,-1951689045,-1437029437,-402313496,-768345534,1307459201,276115396,-335613464,1628340235,350749006,799848965,1307448889,-480703627,-1461169909,-1545447150,-90773053,1191116009,-1007680573,1377734174,-1021334450,-1090207256,1019104772,309547,-2082960724,-142146874,-1378841683,-75434105,588149794,504001728,-1014310770,567092660,-1092754913,180309432,-1079663360,-2136670186,5109822,12060020,-1206858491,567102464,162982060,1305034368,-1105563133,-1192743074,-885620717,1857552717,-1207732960,-1330944410,-337073664,-391331053,1048578448,1962888650,313190900,58002748,605162217,1951939807,1951284415,632114913,1220534239,1095979,-544493582,1968115391,1967471672,-2146661873,-108994591,-2144701367,628379897,-1440698197,-400662645,222038350,-1957491083,324724743,1527116520,141823292,-402062616,394856748,1967537347,-391360961,222038315,250087029,97642515,-395047620,-551178930,731430879,-234876743,-2123270737,1999350015,-297432309]},{"sector":8,"length":512,"data":[102879479,132861536,165561739,-397516794,-789903118,1305034368,1011708419,-1404471995,1396498212,-997834124,-1090514759,-1343083704,-544524683,-967897409,-1421392635,-1951784784,-1075306913,1963801608,-1956228337,314697735,1527079656,259263804,139061331,-396637301,394856600,-1023258743,-370218674,1313611403,1206438195,143517703,-2098703791,727276039,250577354,-819245233,-1343692942,-388528380,-1014102827,-1404105026,57978610,1362523566,-204829865,695558054,1376045032,-1014237305,-1340971032,1150134842,308209919,-1425404488,-1929376839,-397150891,1515917969,-1763115381,-499033852,77261245,1007167976,-401640435,-92076053,-394103039,378013712,1774079436,1305255983,77332904,189040688,-1106113816,1956458377,797097475,-384696600,-527822270,-2132810624,-1066119684,1307576007,-2081941480,82333958,-102606592,-389467197,-851641272,-398388363,54328384,116788084,1946242508,1963015208,1628340283,-919404210,1358702568,1476562664,58039356,-2130668056,-1404178882,-385649617,485095444,178448,1912628712,1377733588,1547078478,46564174,-1006827544,12048522,-1900006626,-773598760,935721699,880805002,-2012988673,125106948,-400565364,-1933312796,914825176,109530716,244010578,-1960948128,-1907468258,-2092019682,1178994411,1200174985,72321282,1478396191,1629913166,-1830028210,-1963221016,-385927968,242416552,989565928,-1979222816,-73733948,-1007041544,1342606854,1478396750,1736451662,-1022886399]},{"sector":9,"length":512,"data":[1307576007,222042378,378212469,-896840222,1931460995,-18150,549000683,1377733376,93907022,-1996041240,-1991384554,1095624222,250106449,-1587979513,-796176926,-651443925,-327957701,1364414659,139114834,-1220290422,113152,-851178056,1532582433,1397801816,1790530129,-2132415736,5109822,12062324,-1273967355,-1206465280,281871617,78571715,-2144446092,38664510,-796256398,-27262530,-5117758,-109902408,-392420915,-341966912,-1171862270,-745787572,646699918,-1014084196,205268595,212861558,-1963947112,-1104201340,-268226935,-397472065,-225767361,-1106232600,887631698,276359184,-1595461655,78138870,297403764,1007151920,-1173981952,-1024905169,1326365952,1929313920,-17924089,266388353,-1962256759,859616499,8436425,1928804072,1136283769,10217520,-2092024671,41029880,1183432755,1958742792,268494851,-1991359327,-437778874,270329871,-399487814,-1956970379,12061270,-2134758402,1962936446,105265928,1183515506,-561082106,567099572,-1053090026,-768404107,266389121,-1626976727,548480,1973342325,-1173427251,921186389,-1170099200,-1058537344,-851528458,-125582559,813414914,-125623948,814529027,-125625996,815643141,-125628044,816691720,1740573044,258664496,-1271897670,-158471927,1314000524,1314653895,378279483,-1991225776,1481529382,-1023405336,105752766,-946929869,-1526690625,128296357,50522307,1302601355,-386518808,1048641506,1946177016,83933189,646516941,640372128]}],[{"sector":1,"length":512,"data":[646532514,-1124466642,1048596012,1912819145,-1906219508,-1907469274,-347187666,1583243026,-998023843,1515870982,1482185049,117621891,-1956243705,-967944154,5098758,1614217062,922707534,-10072494,-162636746,38691078,1313611406,1727725940,-953222449,-212996602,113716783,479677936,-795948916,1860950158,-301545682,-349201075,113716752,799821294,-953284629,-1001525754,-1892746705,776887302,1313998479,1611042606,378285646,778456656,1314399881,-728839028,105795772,-2145446370,55429438,646715506,780947028,-1671016874,1644597149,-1677694386,1617337702,1347424491,1381126481,-326937773,1448498438,646666071,-67351136,-1980413464,-397564898,119406638,-2131417368,-28417754,1305282246,-130121727,91488333,-855309896,-297893616,1966076749,-850545654,805945121,-1022492696,508405951,-1896467705,9223902,-1515870890,520511397,-963709389,-1526722882,-1012554331,1304968832,1460237568,-397561665,-1017184243,-1095085488,-27269051,516118618,-1896467626,9223902,-1515870811,1455628126,1304954566,1302904321,113641963,1442860488,1464709310,-946929869,-1526690625,1604691365,-1022947746,918902302,1015041472,-1021354496,132647088,-400510976,145752066,1347572051,-1962933831,229370068,1532582488,539015363,-1438994261,-1957753158,-1983239217,-397553650,-392429404,1922895245,-267991233,-1961060531,726520846,-1408469810,376704316,309594684,-386604374,-411893587,-8320336,41045774,914968398,-828224046]},{"sector":2,"length":512,"data":[-1441943475,-1900359797,-389403826,384503117,-397505350,443940726,-850915144,1958774063,-401951739,179368991,-1090553368,-169324914,509068034,-1958591993,-855591686,1946172438,1960852728,1946696948,1954495515,1407756823,1963801855,-97824796,-91502709,1258243464,-1024762038,-780862917,-13834161,1048628203,1962954190,-1077675774,915099278,909856210,91377108,1912607976,-834764785,108334413,1963605120,-1007139327,1358453225,-1957539501,859813111,1326365147,-903096437,-1796731276,185168627,50689216,49019074,-727451246,1532582477,113689432,1006652916,-401181379,512426580,1491619410,-401176319,-333543091,-200868275,1048625997,1946177012,1307091217,-1588699997,1386434028,-200882610,-389873587,512491066,-919384500,1392556008,1364380203,-1962806552,-397521890,-1957101289,1928987641,30861322,-1014039925,-373088418,512484140,12209746,1947024385,16115794,1006749416,1397257229,8436562,108321527,-355268175,-2098660725,28174337,1103265874,-2010161989,21096471,1392615144,1625839186,-683980287,-1958561421,25356490,1308180096,1577940224,-620012710,1532536181,-1010234593,1308277595,1200555919,72321282,105353048,-1983302822,-1018623913,-385933336,28901723,1947024384,18475018,-1962851352,-1019092022,7465041,-397343509,-397016981,540803387,1499336567,55126755,-1190956086,-1404108801,1008733379,1376613484,-1962875160,-784639286,149622391,-402583064,74580052,-1023097725,-1075684375]},{"sector":3,"length":512,"data":[222056206,658306676,574360692,-957872012,1192593408,-527821845,1959017132,1947024391,-185881893,1959017132,14280952,-696971972,1239235,15722582,74725948,-1012117922,-388330664,-2065170208,-397229312,-896860033,-905754278,1364676803,-1188345665,613023760,-2132811995,1933640060,1974465041,-1948568781,361438845,1599731782,1161610072,1149903477,633636353,1228791775,-1090161328,183193180,-234878791,-1962314321,1569398397,-756333054,-111648935,-5379901,-1012137358,1912615144,865245264,652782811,-152014336,1098248391,-788527943,-489434654,-338687238,-722971672,1541088255,-389862539,-165478413,1354965877,154939436,1347947638,1630281740,125240636,-998045180,1489238018,719897593,1947024384,-514397926,2091180,259337276,1501270,74779964,-1020481442,-1023228797,752821420,1981365313,1017925367,1023112224,-1007193079,242491452,175376700,108276796,41171772,-960283332,5146630,1317414537,2040774707,1316856654,1317078726,-2147039741,113737806,20083,1007139816,-2146929253,1078885646,-1576554520,11816575,-2103191413,31472974,-1618343310,12009622,31507329,995137418,-472842058,1035116427,-1014238581,-388821839,1316161082,1939997554,266829902,1930230400,2023030628,-389944506,2141325160,83932238,-389873184,60294840,243319747,-2146414968,21918734,1007071720,-1310166336,753455619,-1023174640,1315807427,60294948,-1014316093,-2066750592,1968078110,2099120153,618170958]},{"sector":4,"length":512,"data":[2097557552,29619790,1049101428,-380088703,82444126,-2109832442,58026574,1443277800,834385805,838336129,-1645738635,-387746810,113706659,20106,-943292066,3964976,113664628,-1409266039,930234428,1317603014,1935686688,1934638107,-151014391,21921542,243275380,-1978642818,-2142339802,149623012,-461315958,1894547696,-477898614,748158734,-1743262906,687571091,-2020930446,-2069150150,1325888996,-1744894741,1015039546,-1341819904,-1628722644,-162627936,2097554128,-385649330,163119331,1137621760,-1275064134,1975813184,1358110,-1169952069,280231974,259376260,-1157626183,179979330,-2078231552,136410308,1464761894,-594871413,-229735775,51279279,-2127197190,-399393850,-346094117,85584295,695468456,-2075229535,1475507684,-1090516551,-1359859517,-1176079009,1256718339,717182726,91940943,2114879583,2011758926,1946331391,134620210,-1588691450,-461091198,-31146123,818724695,-234879559,961199790,45168244,-1451905294,-164016194,72252934,1539188341,-1474172103,1469477896,-1085373791,783893594,1974465024,2114385544,-2123103922,-2143818050,139361806,571743,98297942,1156077406,266952453,-1978758145,-1608654002,279465608,547886709,-813231500,548468619,-2080541266,-142146361,-1527525845,1326366551,-397547871,984614744,1306698154,-1341698072,512469536,700337785,-772330673,2128493550,1407068953,-396894581,1743258987,-1084532473,-819245298,-1426906960,1491655915,-1189040123,-819245270]},{"sector":5,"length":512,"data":[-1426914702,-2012809633,225708110,-2144365634,1965096829,-253213183,1317576710,111674932,1048673909,9260674,1404597876,708739151,192236623,1328299649,58007635,-2147161981,5144638,57935740,1208281219,-387413176,1239942884,1317314820,-1108815733,-1438797818,-1739685472,-1953242927,507907487,-628416626,1330904449,-41868172,343363405,1200228724,90671620,-1979280408,1737097799,109766659,1737099146,109242369,126485995,520520424,-1610176792,27807368,145234292,-2103373195,402162510,-1908602252,1023767552,57999611,-1006862103,1006879208,-385649984,468189594,2114879492,116785486,1946242685,62842883,609119648,2114879687,116793422,1948274301,10283267,1317539456,-2079930620,1006633038,1538298630,-2089061206,-1618343965,-1007270449,-166103800,678692035,-1957674312,-162647026,21921030,251530613,132861569,-1957150024,-1991361522,-1420917746,1946403830,-1439977446,-1958128712,-162648050,108265923,244008112,234966572,-156545404,-1068602106,116797044,1971342957,62580762,-2079981160,-1275052978,-1274774229,-1999047123,-1528281307,-1341265147,-1259820501,-2079981309,93251662,-1012245072,158663996,-391488592,-1830223084,119820288,108332092,-1576829976,-1470607762,-1474923136,-401247168,3933036,-654965123,1194132934,-351969560,48687107,609119648,1963211783,1315872866,74785852,1475019952,87820068,116788341,1975537261,46327813,96931051,1195853147,-1341995288,1856023133,-790048690]},{"sector":6,"length":512,"data":[619237608,1946434567,1527105345,-397981883,646578859,-990491026,-1340836672,850438698,1954596086,-164319223,41173188,-1331021648,-943478179,1195727621,42068039,-1012245072,1006781928,-385649728,-857080188,37283841,-1746397461,-167399422,542014726,-1572863627,1827229293,35055870,243926820,235425417,-58700152,1947040768,553418761,96867188,134498117,-1813982824,1171752843,-303512661,1296939777,-1610542103,-856994177,-924122960,569057460,-1421064520,-1196798032,199971905,-1420868424,-1421716040,-1421521736,-352167960,-11225047,29419690,678674492,1317545600,-33887747,-1207831576,-1196736186,-2002050990,-347176922,-2010742779,-1679229618,1941978113,-35788541,-402578711,-397409729,74711500,1342322408,-402509080,984613904,29026474,-396884876,-380107772,99091456,686528514,-402516248,544473508,31451216,1510272899,-1962801432,55435806,55474462,-469363757,64415821,64154002,1306658307,1316554243,1476642793,609119648,1946237959,-85792509,-1594146327,119819885,1414772883,-1440173909,170471608,-389829693,1136328964,1996766290,-972720885,89027334,510984508,-402617623,1153106156,-401347758,54264036,104656498,113640819,-1157345677,-1416408492,-1439691629,13297859,1634928188,91488828,1317545600,1912880382,1929823749,268698446,1317539456,-21960416,1006717928,732992256,-604633987,-1817563728,-58710037,-1675658240,1317537526,-402230256,-276627210,20834308,1342731421]},{"sector":7,"length":512,"data":[-402573592,-380108012,367526672,51505409,1317539456,703158288,-2044294150,555071566,2030487376,-956301234,5143814,-2147039744,113737806,20083,1317545600,14870779,-1186588225,-1359871990,251595636,-1262793095,7454209,-2012315453,163252302,-774296832,217809891,-1618278286,213796375,717210368,3270735,-1440735048,-380064853,132708902,-771510016,-1022941976,1316882166,-2146732672,-2142339570,-1577022488,1839222381,-2120170674,-523134898,-142111853,984656709,-1998011478,-2065149952,40036352,39774296,-523134781,-2020913005,1487619559,243319699,-166703490,273579270,1328201667,618695340,-467490177,548468345,855605674,-1007062449,1317021320,1317682825,-58699344,-2146274272,192872700,1119358068,1421388633,-1341461691,1471720004,1387834191,548973380,1421388624,548449106,1444856746,1306670731,1306926734,2033582894,526298190,1316554495,-1957290301,-1907498442,776857118,1316566531,-2095096147,38697222,-499741757,-434205107,-991384499,-109753599,914956054,-2084352542,5147198,234947700,-141865334,-812910333,1328212353,1330576727,-60840717,726187715,-1186001217,116785160,1946242507,-402214654,-1394081707,1326366465,1305151222,1444115713,-1325087101,4646916,988299614,20441088,78714347,1442859496,-402576152,-1084358269,112283406,-402642968,1555956087,1306705742,1386325413,113683278,-402436472,-1587087518,-1553576356,-154972702,21875462,-1331359115,1552656957,-402158818]},{"sector":8,"length":512,"data":[548405528,-1007689046,-1515567696,-1951777360,-1956241828,16377863,-492166992,-2067872789,1317976902,-1187521178,-1331363837,-209212867,-209212058,14870608,-492166992,1359131117,-209214299,-1956205210,-2018679088,1712108019,1048635603,1912819145,12511237,-873987093,-389903616,548405428,-740140630,-655821945,1515740416,-388822351,-930476508,817483219,1326366525,1414772817,-1413379157,-1207850921,364453920,1957360384,168671235,-980721749,-841888303,460587812,1183891030,37488049,-1782707081,1946399046,-1439649787,-1527578447,-1961432226,1374160964,-1439780864,-1962932549,4646912,2097343363,1328136182,1493202408,1091225219,1966668160,652043928,-1094496626,146353032,109423872,1149980256,-1962707954,-1330962876,-303912416,-1398100797,-92995524,-1050259261,31985896,-1974446080,125124,-1320071080,-387395068,1482227714,-1878782172,658510887,726713258,-402229305,247398411,-819242673,-1426906960,1031819203,1207596064,-1425404488,247123851,-389403825,158724654,-1275067973,-421664704,1443816387,-1146293621,246677511,-152956723,750764894,1882446,-1410088909,-4503372,-2094936577,2104627707,567101620,117340018,1575505501,1287607272,-1414812850,-398530389,1314004619,-1957117042,651363280,136841,1980760125,-1312804094,1222693636,1314431816,-1413467241,-1030990412,37128998,639749376,657095,-1943659687,-2147480562,5109054,117312117,-970568203,-1023344634,1302595212,-1907834740,-1557774144]},{"sector":9,"length":512,"data":[-970588159,2054,216532766,30327782,205062490,242879795,270405543,282071181,22675802,319230311,337515330,368317638,392959604,419436558,427628903,18575360,-2113725575,16982555,1480742977,1480874051,1346523219,1229211987,1279676489,1397052228,1396921171,1397183302,1312575048,1312837188,1312050776,1311526448,1314934364,1313754700,1314016848,1314278996,67110912,8389120,1048640,65540,1347769934,1280330052,1095653966,1129205584,1313101391,1196312901,1128354394,1497580880,774268774,1701068342,-1381174286,-1515934806,-1347508314,1869507948,-505360948,-2103777054,-2139062143,-2139062144,128,0,0,0,16843009,-1010678718,768592842,1702064993,1701601901,1528840457,1919181921,1567847269,1836016397,1701994864,1914716937,1701277281,1684300064,1936942450,1836409869,1531185520,2086108226,1528847684,1735287154,1678597477,544238965,541213517,1767991395,1296304494,1953391885,1158247013,1684300064,1936942450,1768708896,224228467,1819044198,1914717705,1701277281,1936288800,1869024628,1528841993,1684300093,1936942450,1650139229,1801545074,1852403568,224228212,544761192,795108449,157447539,1635131464,828732780,1818326560,221406581,1970302569,1531513204,1564769367,1919905824,1869352308,1713398881,157641833,1633361996,1701995620,224228211,1684107116,1667592992,1936879476,1629506569,1701995620,1679848307,1702259058,1667592992,544370548]}]],[[{"sector":1,"length":512,"data":[1853189987,1869417844,1292461430,1851879968,1629513063,1701995620,1846375283,157642081,1532698702,1986622052,1532836453,1752457584,1818846813,1835101797,1633362021,1768712050,1566405747,1953853197,158627184,2086099791,1881169220,544502383,1970037110,1919946085,1701143407,542116196,1684094299,1936028260,1528847731,1853189987,1879924084,1701015410,1914725477,1920300133,1380977006,1769304333,223414644,1768383858,1919251571,1528844809,1768383858,1919251571,1635146528,1566930284,1346768221,1701978197,1953720679,1376350821,1869876558,1701603175,909652768,1734701600,1481771379,1634038541,157836146,1634869331,543516526,1953720684,1634890765,1409901923,1631410976,1701995620,542995315,1970234203,224228462,1667330676,1869422693,1409901924,811278413,224211324,1935765109,1651336563,1426679148,1634884384,1566926702,1701410317,1818632311,1443459177,1769109261,1713399156,157641833,1633362007,1701995620,224228211,1953067639,1702043749,1919906915,542574963,1919181921,544437093,1986622052,1702043749,1919906915,1970234144,1577940078,1920091424,1834709615,1566929519,1769101069,1881171316,1702129522,1696625763,1919906418,1802392832,1853321070,1768846624,1917059188,543520361,544501614,1684104562,1851064441,2003791467,1868767342,1851878765,1631846500,1696620916,1919906418,1701139200,1919230059,7499634,1852534357,544110447,1768187245,2037653601,1392534896,1869898597,1869488242,1868963956]},{"sector":2,"length":512,"data":[6581877,1852534357,544110447,1869771365,1918304370,543519849,1819631974,1699872884,1713398881,1953264993,1852131072,1818325605,1767990816,1701999980,554958848,1283146033,-1988400553,1914740885,6578533,1769109280,1852375156,1919164519,543520361,942866527,1701978166,1864397671,1634890752,1830839651,543515759,539828272,1934904905,1701994784,1920204832,1684366177,1869770752,1936942435,536896613,1970173224,694445427,1986610176,543515753,1869771365,604638578,1735289171,1932354924,544236916,1702129257,1886745202,604638580,1634038338,1768910955,1763734638,1919251566,1953527154,1126435341,1869508193,1920409716,543519849,1634038370,1768910955,218133614,1869762570,1835102823,1919251488,1634625901,543450484,1600085800,168634719,1163412772,1818846752,1663071077,1869508193,1700929652,1769109280,1852142708,1310984717,1768300655,1634624876,1730176365,1852143209,1461979661,1769236850,606103406,1954112032,168653669,1936278564,1969627243,168651884,1920091428,1595961967,543121247,1852141679,543649385,1701603686,1176766989,543517801,544501614,1853189990,604638564,1752457552,1953459744,1970234912,168649838,1667449124,544437093,1768842596,168649829,1936607524,1768318581,1852139875,1701650548,2037542765,1847855629,-1499093905,-676483929,-1432064404,11445932,1107312718,542244928,4866560,1912619594,1415184506,5396992,1515323532,2249216,917522,131084,6029378]},{"sector":3,"length":512,"data":[67117680,805307904,806748182,806753280,1946190848,369100800,1446912,8257546,2118234,2120278,5263962,5266006,1308631630,2752556,1048610,7471186,503324242,1213071442,5130240,1543528556,643432528,643432546,1310851186,5123072,5242964,675414048,3031552,1879056962,1375756800,1375740506,1577070170,1583087708,838874624,872430592,973092864,1607168,-2046786024,-2045116390,1869312,-2097117668,-1174372352,-956236031,-167707135,65792,-1895774719,-771698688,49152,-1052688128,1094778883,1090521028,773441,248725825,-1018937088,1145110556,1090529988,3720270,-867151295,1329725500,1086606933,-967622144,1396834372,1107314898,-801024173,-733872051,1413611604,1107320259,6738516,1876120642,1279345408,1124104396,7984962,-985376957,1279459453,1124106435,8635468,-2033628093,1414284032,1124109011,9290573,1448037699,1124110785,1096175437,1124111813,-1034530995,1296236697,-985508273,1296236701,-1581033905,1330463488,10863958,1448037699,1124116935,1196838733,1124117957,-866758835,1296236721,-984852913,1296236725,-1051830705,1296236729,1095652943,1124122053,1314279245,1124123074,1314279245,12961090,1448037699,13222734,1448037699,13485390,1448037699,13748046,1448037699,-708491442,1330463488,-640922026,1330463488,-984854954,1296236765,-816949681,1296236769,-800172465,1296236773,-749840817,1296236777,-632400305,1296236781,-238070193]},{"sector":4,"length":512,"data":[1330463488,16109654,1448037699,16368976,1448037699,16633680,1448037699,1124139475,-631877811,1296236805,1124143312,-1034727347,1296236819,349655888,1347240705,18400339,1481657667,499599427,1347240705,1195918168,18989624,1230327875,1124148676,19317847,718357571,-1052687359,1094975789,1140928723,1140928962,1140929220,20497221,1003899204,1020740609,1414415617,21025349,1297625670,1174488241,1221804609,1145128449,1174492100,-800832447,1111884122,22922316,1414742598,1174495440,1691568195,1279477249,23451717,1279479366,23713861,1330463558,24035926,1330463558,1942307414,1296254465,2026198607,1296254465,-1035053489,1128661373,1314279245,25347394,1330463558,-2017112490,1296254465,-716286385,1128661388,-715763891,1128661393,27053391,1297040198,1174513097,1229803331,1174515408,-800239805,1128661433,-800043697,1128661437,29545295,1128612934,-959425453,1229211137,29870419,1229213254,30132563,-699841466,1145438678,-573548983,1229211137,32035414,1447642182,32493650,-917617338,1313210864,-188133819,1380337153,33080645,1163019846,33345605,1145129286,1174536644,-850443447,1229324806,-800239805,1229324811,282478916,1145652738,366106185,1279870466,1174543556,-866824887,1229324833,1414742862,1174545872,-733393335,1313210918,-733393335,1229324842,36688979,1414744390,1174550224,-1034595511,1229324859,-767404717,1279656512,1174555332,1320240204,1145849346,1389638220]},{"sector":5,"length":512,"data":[1145849346,1455764044,1145849346,39504208,1279544390,39760455,1279544390,40022606,-633058234,1279656550,1775715140,1145849346,1825984069,1145849346,-682209723,1279656557,1447970116,1174565316,2093765965,1431127554,42192972,-800108986,1346765447,-834579391,1346765451,-1882372782,1380992514,-1800319675,1414546946,43568705,1145983558,-1663807927,1397900802,-1613607084,1397900802,-682471596,1380319904,1380930643,1174578372,-984202925,1313211045,-984202925,1397097128,-683321791,1397097129,-1002088895,1397097133,-984858301,1397097137,-850373563,1397097142,45862473,1313428294,-1059893437,1364411906,46453842,-858500282,1414743554,1174591184,-683453357,1313211095,-683453357,1397097178,-699513516,1313211099,1313166419,1174593238,1313166419,48224086,1163154246,-473672114,1414743554,48551763,1414745670,49010515,-1034595514,1397097206,-36683179,1431520770,50909762,1112888134,51368018,-732736442,1430651667,483217219,1129661955,633949519,1129661955,-800502449,1430651694,-800239805,1430651703,1347243843,1174617296,-733396649,1480983359,54775105,-935110586,1480983370,1128354388,1174621908,-667792295,1497760594,1347957324,1208178353,56218700,-699841463,1296630620,57592917,57921097,2042842697,1397639427,1224965570,2128040782,1397639427,1224967108,59298894,-1319874999,1313407884,59756372,-1000976823,1313407891,-951038890,1380516759,60347461,1413829193,1241750724,1241752257]},{"sector":6,"length":512,"data":[61392193,61784650,-1262140854,-1161606653,1480804867,1241758682,-631749819,-985005121,-951450683,1196032971,1241764293,1241765836,64865612,-473870774,1095649795,1241770437,66044494,-985510326,1313473525,1241775043,67224910,130502218,1196313092,1241779653,68406350,-984854966,1313473561,1241784271,69587022,735268426,-632403452,-817232847,-800455625,1347028029,1241793477,71946064,72340298,72735306,1624264010,1212238852,1275356102,73912897,1792230476,-750433276,1179386989,1275359699,74830663,2043892556,-1052423164,1162609788,-2134550975,1145523204,1275364564,-1999354807,1145850884,1275366612,-1864936627,1095715844,-867417788,1330381972,76991299,1396985676,1275369922,-682408881,1330381978,-1631300796,1330596868,1275371984,-682602673,1330381986,-1497083825,1330596868,78234960,1347374924,78305093,1347374924,78562373,1347374924,1275376090,1515212623,1275376343,1515212623,1275377348,1313886031,1275378117,1313886031,79353669,1347374924,-1094433458,1330596868,-1042657712,1330596868,-681947568,1330382018,1515081807,1275381444,80399443,-825076660,-699446012,1330447603,-155036842,1448037636,83351379,1398165325,1292172228,-665627057,1330447618,165173846,-866824955,1162741004,1308954823,85184591,399789902,634539781,-950907131,1431242022,1325738964,-1034726315,1431242031,819417940,1414876933,87409747,1188056912,1347375109,1342523329,-1002352561,1330644300,88983120]},{"sector":7,"length":512,"data":[1179668304,1342525892,1791513429,1398099973,90947912,1213420880,91276353,1213420880,1342534086,1179145045,1376089540,92130371,-2049817774,1296323077,92918355,1297106002,1376095683,-1017949116,1163003281,1376097232,-1782230971,1346720261,1376098266,-984723387,1163003289,-1680191920,-733654523,1163003296,94488148,1179927890,1376102340,95407183,-1210953902,-850177531,1095959995,96388680,-959692461,1279349509,1392888259,97636929,-540917165,1094931205,98746963,1396786003,1392894935,-1001176765,1163068903,99336532,1096041811,1392897989,-205368251,1413829381,100123970,-1017887405,1163068923,100648276,-950778541,1163068931,130369364,1413829382,1392905164,-984853435,1163068943,331435604,1413829382,398803278,1413829382,102482510,1314145619,102745410,1314145619,1392911299,-984722363,1163068967,734482004,1413829382,801457998,1413829382,104057934,1314145619,104318284,1314145619,1392917455,-800172987,1163068991,1137921620,1413829382,105372238,-816560813,1163069003,105893972,1347700051,1392923589,-816819131,1163069015,106681172,-632011437,1196623455,107205700,1808549971,1279808262,1392931524,108712520,-1001240493,1230177921,109433924,-733721517,1297286793,109958995,-1866247085,-1001106682,1414727315,1392940745,-1034727596,1414727321,-1697164465,1330926342,111068243,-1563274157,-1034595578,1498613424,1414415699,112513605,1163090259,-1194047144,1397052422,1443283412,-976072123]},{"sector":8,"length":512,"data":[1380275718,1460062679,-858502847,1229084422,-792439218,1297241862,114610771,-1002159784,1129842393,115656520,-733918120,1280837351,-356363199,-766552058,-750450952,-750582022,-749533444,-750516482,-750385408,-750319870,421074454,-1162212083,421074454,45878541,421074454,-1094841075,421074454,-1061155571,421074454,201985293,421074454,201985293,421074454,201985293,421074454,201985293,926365495,926365495,926365495,926365495,926365495,926365495,926365495,926365495,471796748,168430090,1503486363,202116108,1936946035,1936946035,1936946035,1936946035,67372036,421074454,421074454,75243385,-1263225844,-1263225676,204409868,202116108,-2105376897,202116108,202116365,202116108,-2054847099,-2054847099,-2004318072,-2004318072,212337668,67378975,212339769,202142063,67372036,202142065,101058054,101058054,1936946035,-1819055767,1932471597,-1768526740,168430602,67374092,202116108,67374092,269488144,269488144,320017171,320017171,-1616928865,-1616928865,-1566399838,-1566399838,-1515870811,-1515870811,892669968,892679477,829764917,7680373,2004318071,30583,1431655765,1433862263,1010580540,1010580540,1381122112,1077952576,1010565180,1280658517,1342722640,134744072,1246382666,1246382666,1077952576,2048,1246363722,1308642816,1077952576,5394952,1044266558,1044266558,1381122883,1128481603,1044250686,1280639061,1347441232,21074,1280068684,1280068684]},{"sector":9,"length":512,"data":[139609670,1179010630,1280049228,860762958,1347441232,5394952,202116108,789516,202116108,202116108,202116108,202116108,570688512,202116130,-859436020,-707604535,202116108,572656652,572662306,572662306,572662306,757932578,757935405,757935405,757935405,-1431687891,-1431655766,-1431655766,-1431655766,-1027429718,-1330895092,655148228,371372204,522657558,76516127,-1960697305,68556431,623191333,623191333,707409205,-1724700118,202116112,202116108,202116108,1791756,1769499,1769499,122421275,118097709,118097674,118097674,122423050,1442272,1441814,1441814,122421270,132450093,132450277,132450277,122423269,2098989,2097184,2097184,65568,153223594,153225506,153225506,16845090,158990767,158992762,158992762,33622394,23789570,23789931,23789931,50397547,83689489,83690749,83690749,83690749,29099261,29098428,29098428,29098428,122421692,122423116,122423116,122423116,120391500,120391469,120391469,120391469,391251757,271259442,872488997,806368513,390869024,390862067,352457971,387454216,96671519,88671663,98108740,88933822,97846592,97191353,91227600,91489643,16778599,16777472,154796296,157747514,114166119,114165454,114165454,114165254,117441272,157747559,157747559,157747559,6031719,5636512,123799884,131008319,114165218,114165454,114493134,24119002]}],[{"sector":1,"length":512,"data":[154796407,151521594,104401167,132777536,114165745,114165454,114165454,114165454,114165454,114165454,114165454,114165454,18876110,128844064,99747758,50333165,298451712,129177099,85198771,85918996,17827123,18350352,786712,131727367,21498227,23593304,25690488,27787672,112329144,106169984,83428694,118686969,5637907,98371037,83428829,118686969,526099,144665,82313222,19398780,6750504,7407865,7080195,48236798,1769776,1443594,2099173,158992674,1769835,1443594,2099173,158992674,130023787,124782533,147916661,131401948,130025440,124782533,147916661,131401948,398460896,393222085,416356213,399841500,154802144,117770554,116786939,29426931,83690733,5636540,98369622,122422749,686620672,639510813,692070089,10566,684392448,638724327,687023640,639893504,31343915,38994828,74515048,43320446,31326882,38994828,74515048,43320446,53674658,69533696,57803818,71762795,53675063,50857161,51381290,30409160,46989784,47448824,52691675,48431915,1645019882,1645568542,25163,792,49414144,51838976,797,819,1646658602,1647272505,52453954,1650025626,31326208,38994828,74515048,43320446,31326882,38994828,75367016,44172401,53674645,69533696,63308842,65470464,46007401,69534921,882050090,13483]},{"sector":2,"length":512,"data":[46989312,47448824,52691675,48431915,31720170,40371090,75825960,44631159,49414811,51838976,32178973,32572146,46465821,69862601,53478442,1650484386,54001664,54919998,55903054,56951645,30474240,62260440,80675743,41759662,61276927,69076191,62731285,873399295,12919,20971832,650388968,544613930,1160066602,919488850,919484110,919484110,1499084494,1467635592,1764190081,1631545649,1620074783,1633968264,1620533559,1633509505,1632461103,1622958421,1623417012,901996717,893990319,903427396,894252478,903165248,902510009,896546256,896808299,950351207,940325001,952449029,940718238,952055807,951138455,942815416,943208491,927741989,1368995629,953561155,927742166,1472870189,954282065,888355041,1099252101,810300929,905721335,921646831,809960168,808923186,921188072,1231112545,1077674736,1077690428,1077690428,1077690428,83705916,809697724,810299473,1368272967,114165549,33031065,76349912,884147395,42795703,51315205,40838151,33629289,83887107,151521030,0,0,0,0,0,185204736,920844,15,0,286261248,353637138,0,0,387317760,454695192,522067228,589439264,9508,0,0,0,0,0,0,0,0,0,0,0,656801792,724183336,791555372]},{"sector":3,"length":512,"data":[858927408,926299444,993671480,1061043516,1128415552,1195787588,1263159624,1296826368,1364217678,1414746624,1482118741,23129,1583176795,1650548831,0,1701077760,1768449894,27498,0,0,0,0,0,0,0,0,0,0,0,1835794432,0,0,1869479936,1912631664,0,7536640,0,7602176,0,7667712,0,2004221952,2037907456,2046820352,0,2088435712,8355453,-2147483648,0,8454144,0,52559872,52429601,27132707,22937951,27198256,42336766,50856625,70255584,73532479,9962594,10027175,27001180,22938014,13566061,10813613,6357103,6291613,13303964,11469002,6357163,27591038,64422787,72942583,87622926,115410503,121112358,123275077,129566568,133695417,14878998,14745826,14680289,89915616,108070491,111216264,17434299,1048834,17301521,256,17563649,2097412,43712545,43188975,42664686,42992365,48300689,48234801,19595568,17367338,524545,17498121,1573123,17629209,2621701,44040233,8782497,17694855,3145990,16777265,218760964,420877072,589372955,724117285,875704365,1077819959,1229341762,1431391563,1667259737,1802069861,1987276909,-2088797063,-1886549369,-1718185071,-1532977508,-1330730072,-1195985742,-1010778694]},{"sector":4,"length":512,"data":[772550,983053,219086862,185535758,224463630,67175696,67372033,16843009,270532865,134744080,268961800,285149200,134480912,134744072,17434632,404429086,1109007644,1464817497,1364673615,1145849431,1396855887,1313819720,88163909,-16251130,1879271948,226051,146082003,146081973,146409689,149162185,157813096,157813096,157813096,160434545,171575781,172558910,174262879,178522765,172296882,183896784,184814333,184814340,184814340,184814340,184814340,1163412782,1329802756,1850278477,1852990836,1696623713,1919906418,170134029,33883657,1091044353,1145848652,1095516748,1145586504,1095254600,1146635096,1398293080,1397768784,1162429513,1397965651,1179862099,1397966675,1129139540,1414677586,1380863570,1280200782,1447973966,908994126,-1687854018,1291055856,-1610206455,496647,600057574,625812800,627385682,630990231,631514528,633415088,634660325,639247863,642983456,645342819,647440015,651437745,630073098,3221264,1480851507,1414745155,1396986691,1397117765,1397969735,548874009,550117571,552476901,1465079619,1346983764,1028670525,1953525093,1314999929,-134261744,-134258113,318707263,-1410007116,-185530981,83163821,-10680892,17017844,1655567409,262388,-1393229923,-189724109,167023278,-14873980,-9822737,-14737938,-2587664,-14383888,1770516985,1853681919,-282384,-1903955724,-541986572,-2114915073,-1309608914,-252379245]},{"sector":5,"length":512,"data":[-252391810,1157580721,-1277119764,-3855086,539884024,-6272513,1258278986,1307574072,-1136066616,476181503,-329255937,-1604324353,-798952449,-1604324353,945878015,2086925311,-463277057,-1738345473,811856895,-798952449,-1604324353,-329255937,476181503,-329255937,-2074020865,811856895,-1738345473,-463277057,2086925311,1415574527,1281553407,-1268648961,-2074020865,140506111,6484991,6484991,1281553407,1751249919,945878015,286764543,276213713,-12775004,-117487567,-7065095,1149301236,-608898305,410841855,771356927,-1811153044,-782849,1897266430,-12797964,-33613637,-9290770,-1020864,-2003904,1150882712,1103115584,1107279974,-398343937,-1364983871,-9524993,-2069440,-503037446,-851381249,1089732544,-201338675,-3617472,-1072086541,423752703,1106509776,-201340903,-2614975,-657637133,-1630298881,-801357820,-3071936,-266321421,-251379213,1346565119,876803056,866123761,1010853024,-652197672,-639090177,1816195327,1816199167,1106968566,-1493180156,1082435411,1715597365,-12451848,-102219272,-1447843585,-130727708,-1022399,1106313025,-83889688,-2096063,-4147391,-4174014,-510021480,-1636786689,-794820703,-1493237343,-14571280,-2119544663,-1694721793,-16538067,1100746907,-143900417,71432959,-1130496029,-1593840226,-1437753060,815988675,-1526767197,-4086384,-1868996712,-2025791836,1816199104,1816199144,1816199145,1816199146,1816199147,1816199148,1816199149,1168441326]},{"sector":6,"length":512,"data":[-1465857,-375260680,-1686922497,-936034140,-3643839,1103691585,1090505192,1090506860,1090515820,-251660180,-693184,-889792,-234432,-117499485,-15096839,-2512902,-643302920,-43237121,71430143,1089535972,-251658644,-299968,-365504,1352540061,-3098815,-1331658849,-1220436311,-1443168296,-1493500155,-101122135,-83908186,-531479825,-1577110102,1086628499,1715593269,-12451864,-370654744,-1510759425,-399163356,-2070975,1105264449,1090511336,-251665300,-253708223,-1991615,-400539149,-385596941,1346565119,876803048,1106313193,1106307256,-251663972,-1460160,1090454574,1090512236,1816184968,1816199113,1816199156,1816199153,1883832313,-10175489,2146487482,-484446468,-287039506,535711007,-750518450,335492166,-256445423,270593791,-285607681,1023368224,-16630347,-7583760,-234936259,-234921906,-117452355,-9159175,1961917219,1260584736,-1019152,1928396577,790888356,-2853904,1928396577,-101122140,587172675,1014231191,-254073345,637501558,-394923965,-252238593,637508725,880210063,-265346049,570414195,-1535971073,-263511297,603975794,544534651,-263511297,587198578,-2005667613,-259054081,620704886,-1669992201,-264034817,637528181,-2139688741,-256695809,620714098,1349906603,-267180801,587184244,-2005667613,-261676545,620694642,74838111,-262200065,620692597,1349906603,-255384577,587164788,1014231191,1173046783,-1283935432,-8043094,-268487633,989831244]},{"sector":7,"length":512,"data":[926613379,2005004543,-1014894337,-545197825,-1889793,-5489682,-11158289,-6177553,-4079889,-7225873,-8630801,271839477,872020223,1061420892,1140455679,-213713089,1123678463,-213712909,1123678463,-1488781325,1123678463,-1488781401,1123678463,1290796967,-1074790420,-1406140659,1680360752,-1171653336,1848922922,1656803126,-255437328,1458593622,-1386811372,-252029200,822055767,-101122128,-251659216,-2064607100,-2098135067,-2055016392,-8340737,-13321484,-184565718,-184555335,-1862053973,-189878796,-50174974,2051341311,-285222074,-117463008,-199168263,452248319,41355569,-266991788,2129662076,-101122191,-3400466,-1674642952,-1261365249,-1373639152,68493294,164234857,-267910613,2129708155,-101122267,-8381202,1345255928,-923810305,-1312100784,-935606529,-37032292,-665128193,610006015,-1940196609,-168561153,-168561165,972223986,-2999836,1144846840,-973131204,-289880233,-973137462,-301676381,-218143286,788494462,-2017001496,-873535288,-2009071799,-915683329,768405196,-408161025,-1359720184,604501062,872398087,-101122136,-251661261,-251719815,-251666569,-251686025,-251673736,-251686025,-251712648,-251695237,-251668614,-251688070,-251714693,-251673736,-251686025,-251666569,-251719815,-251666569,-251693192,-251714693,-251688070,-251668614,-251695237,-251705481,-251707526,-251680903,-251693192,-251659402,-251661447,-251661447,-251707526,-251700359,-268489864,-956318277,-286734201]},{"sector":8,"length":512,"data":[-251704885,2112941180,-741933255,-873581367,2146500501,-1719668660,163377151,700379135,-105058305,-1291777,1258232907,2016608132,855243007,-1091567676,-1393229963,-200209025,200597166,-8581916,-9413645,-4432909,1119478065,891761703,1505751039,-1514147841,-16503041,-5484815,-12559630,75887092,721300223,-869796609,-3332108,1073730623,-1393229868,-193916981,250882735,-2290108,787883766,1056323318,1710646518,0,4194304,0,0,0,0,0,0,0,0,0,0,655616,1317928960,20110,0,0,0,0,0,0,7319,1644167168,0,0,0,0,0,0,0,0,6029312,7077888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,852096,1253367947,1048584653,1946177014,-1022695421,1152542697,1196769861,1919252000,1852795251,858665248,168649010,1162086925,541545794,1564880731,1683708704,1702259058,1885035834,1567126625,1701603686,1701667182,1918982944,1936288871,224222580,537529610,541470496,538976288,1696604192,1818386798,1634738277]},{"sector":9,"length":512,"data":[1713399143,1886415212,224882281,1713381386,1852140649,543518049,1818846752,1869881445,1650811936,1864394613,2019893362,1852403041,537529701,1735549216,1953720684,1881153568,1835102817,1919251557,1768366195,544105846,1881173876,1919381362,168652129,1866861069,543236210,1953720684,543584032,1969382756,1852401511,1868767335,1851878765,539784036,544109938,1430406468,1851859015,2037653604,1059087728,544497952,543516788,1836020336,221148272,1850287114,1768710518,2004033636,1751348329,2015374624,2361869,-1547137796,480464408,1310761806,-1202870621,567095296,24314428,1337696963,91423804,217712326,-955877397,-1877140730,1036289680,225575711,1308165886,1913063997,-116982268,1140897869,567139123,-494924430,-2114289535,113640821,-1207939634,29049856,1914817792,-820606972,995644493,-1190300476,-439221983,117310580,1978355145,1305020102,-234723326,-161964899,1702162628,1305020158,-461120373,1721526012,-930388392,13670,1348861956,-1670996634,1365661798,-477389466,1958820710,-922288580,-1047828915,13670,1348861984,-1670996634,1365661798,996580710,1713272001,-1576026061,33063782,862327676,-1576058688,254067850,41289276,-912128336,1305059405,1011731106,-616336635,1515895011,-571700400,1012400254,1343059200,1476427481,-2096087259,125059064,1305085638,-2145391617,55429438,-388425611,-102830375,-522600231,-581903906,-1638399874,251528309,1048595914,1929596361,1379450391]}]],[[{"sector":1,"length":512,"pattern":0,"data":[-1392504647,-1878538605,113703394,-969008334,-820291834,-1409252930,-76275652,-143390404,896872252,1950301356,1021256740,-1274055354,1007734031,-958367997,21886982,-1214064149,1336326735,567085492,-850656840,1319352865,567085492,-850657096,-391360991,79282660,725401088,-1404173121,567096756,1166810505,80184066,-1265455726,-501101275,-850217750,1200301601,1975551486,-100219379,113699596,-1946137095,-1096595256,-852183987,-1071740639,-1039758259,112729677,567146845,-1945088885,275914714,567103924,141941051,1304704649,1304827529,-1064386509,-2079978970,-1342016252,1307747096,1308114560,-1977256960,378152688,-889322422,-855309896,-1211550960,-855067648,-1191409136,281871872,28824115,281871028,180225822,1303953152,1153934757,-1946090500,381615692,1284285696,-1542550274,1302904653,-1194707736,-266055139,1212733579,1078828195,-754667200,-61281813,318509818,456921857,457579329,686168990,690235626,692332848,692660550,703146319]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"data":[1634233925,1684366190,1111835680,1713391445,1344303727,1329864771,1851859027,1397563492,1397703725,168626701,543516756,1634233957,1684366190,1111835680,1881163605,1919381362,745762145,1111835680,1629505365,1142973550,1196769861,1918967896,1868767333,1952542829,1701601897,1953068832,1752440936,1141509477,1196769861,1769239840,2037672300,1768453920,1998612579,1763734369,1970037614,543450468,1752459639,1702257952,1981839730,1769173605,1864396399,1129324646,1397703712,1684955424,760433952,777211716,168626701,1430406468,1970479175,1919905904,1629516660,1226861676,1818588270,909670432,1936615712,1668641396,1852795252,1886724211,544175136,543516788,1953391952,544044393,544174672,691425320,1852377613,1685417059,543649385,543516788,1634692198,1735289204,1768910880,1763734638,1920234350,1769235317,544435823,543452769,1868852853,1701672291,1684370542,1936615712,1668641396,1852795252,1930038643,543712117,1394635617,541281345,543452769,1145130828,776752193,1111835680,542656341,1886418291,1937011311,1684300064,1869182057,543973742,1952540006,1936028277,1684955424,1936482592,1930038639,1869639797,544437362,543516788,1969382756,1852401511,1718558823,1297105952,1818435657,1953391977,1869770784,1835102823,168636019,1162086925,541545794,1835888483,543452769,1701734764,757926413,757935405,757935405,757935405,757935405,1162086925,541545794,1564880731,1683708704,1702259058]},{"sector":4,"length":512,"data":[1885035834,1567126625,1701603686,1701667182,1918982944,1936288871,224222580,537529610,541470496,538976288,1696604192,1818386798,1634738277,1713399143,1886415212,224882281,1713381386,1852140649,543518049,1818846752,1869881445,1650811936,1864394613,2019893362,1852403041,537529701,1735549216,1953720684,1881153568,1835102817,1919251557,1768366195,544105846,1881173876,1919381362,168652129,1866861069,543236210,1953720684,543584032,1969382756,1852401511,1868767335,1851878765,539784036,544109938,1430406468,1851859015,2037653604,1059087728,544497952,543516788,1836020336,221148272,1141509386,1196769861,1836016416,1684955501,755633523,757935405,757935405,757935405,1141509421,1196769861,1667592736,1768843119,544433530,2037149295,2019911712,1836412448,1936876898,1769416736,1970235508,543236212,1767993972,1735289196,575152672,168635945,1162086925,541545794,1852399981,1852399988,543236211,544499059,1981834863,1634300513,1936026722,1634235424,1953046644,1702065440,1869881459,1869902624,1629513074,1918989344,225731943,1869770762,1835102823,1126200103,1914721616,1936287589,1936876916,1162092590,541545794,1953066601,1768710505,544433530,1936025716,1635131493,1650551154,544433516,1751343461,1835627552,1762266469,1936269428,1635021600,1684370546,1750343726,1635131493,1650551154,544433516,544370534,543516788,539777089,539777092,539775042,539773267,543452769,1914718532]},{"sector":5,"length":512,"data":[1936287589,1936876916,1918962189,1702043749,1869881460,539897888,1629513289,1918989344,544499047,1735357040,544039282,1864397423,1919248500,1818846752,1936269413,1634692128,744777060,1701344288,1635125773,1650551154,544433516,544370534,543516788,1629509698,1126196334,1701978200,1953720679,544436837,543519329,544499059,1948282740,1931502952,543521385,1948280431,168650088,1735357040,544039282,1713402479,778398825,1752452896,1769435749,539780467,543516788,1769103734,1701601889,1868963955,1752440946,1480728677,1684955424,542655264,1768383858,1919251571,1628048755,1931502962,1948284005,774905967,543574304,1635000417,1952802674,1869770784,1835102823,544434464,1684107116,539780197,543516788,1769103734,1701601889,1868963955,1752440946,1930038629,1701668709,539784302,539775049,543452769,1914720339,1936287589,1936876916,1701994784,1952805664,544175136,1970037110,1629516645,1869770864,1634300528,1713399156,1948283503,168650088,1684107116,1881171045,1919381362,539913569,1701344335,1936291698,1948265573,1981834600,1634300513,1936026722,1919903264,1701344288,1734701856,1953391981,1734701600,1702130537,168653682,543519329,544499059,1948282740,1931502952,1701668709,1629516910,1701995620,1864397683,1752440934,1918967909,1864393061,1701650534,2037542765,1634235424,1162092660,541545794,1936028533,1869875725,1869902624,1948280178,1864394088,1970304117,1919295604,1948282223]},{"sector":6,"length":512,"data":[1092642152,1835365235,543517794,1835888483,744779361,1701344288,1918989856,1818386793,1868963941,1346969714,1936263693,1952805664,544175136,1747988529,1851858988,1752440932,1635131493,1650551154,1713399148,1394635375,1936269392,1952805664,544175136,1162233414,168636008,1866861069,808984690,540424243,543452769,1702125932,1919950962,1936024431,1936879475,1752440876,1768431717,1998612583,1935962735,543584032,543516788,1647129139,1914729577,1936287589,1936876916,1918962189,1852383333,1634301033,1702521196,1869881444,1919253024,1852776559,1869770784,1835102823,1635021600,221148274,1309281546,543519855,1952540788,2037276960,1111835680,1663059797,1634561391,1948279918,544498024,1701012321,544437360,1346576481,1701978197,1953720679,1629516389,543236211,1634886000,1702126957,1762266482,1667309683,1818326388,1965062508,1735289203,1701736224,543584032,1936025716,1635131493,1650551154,779314540,1919895072,1701344288,1835364896,1684957537,1864397413,1752440934,168653673,1952671091,745434985,1819042080,1734701600,1702130537,1634607218,544433517,1701209458,1869881458,1701344288,1936941344,1634296687,543450484,1769103734,1701601889,218762542,1919895050,1701344288,1836016416,1684955501,1752440947,1629516897,1885692771,543236212,1735287154,1634738277,1701667186,745694580,1701344288,1918988320,1952804193,1663070821,1646292577,1963593061,543450483,1931505524,1768121712,1629518182]},{"sector":7,"length":512,"data":[1635021600,1852404850,1684086887,1936028260,1864379507,543236210,1918989427,1735289204,1684955424,1684956448,543649385,1919181921,745763685,1919879693,1931501856,1953653108,543649385,1919181921,544437093,543452769,1701584993,1752459118,1867784238,1718182944,1701995878,1634301038,1629513076,1852140576,224949351,1918988298,1952804193,1713402469,544042866,1696624225,1852400750,1684086887,1936028260,1948265587,1814062440,1952935525,1634738280,1701667186,544367988,1953723757,224748064,1701998602,1701078371,1769414756,1629513844,1277304942,1411395106,1931502952,1953653108,543649385,1919181921,544437093,1634886000,1702126957,1633886322,1852383342,1685417059,224469093,1734701834,1953391981,1734701600,1702130537,1919885426,1931501856,1701668709,1629516910,1701995620,1663071091,1953721967,745827937,1885696800,1952543329,1713398885,544042866,224749684,1717989130,544499059,1919181921,544437093,1752459639,1663066400,1852796015,1867718702,1696621933,1886216568,544433516,1852404597,1752440935,1967399013,1663070317,1634561391,221930606,755633418,221257796,541338890,809128771,1143802381,808470048,1179007536,168638022,807420973,168642080,1142965293,808532563,808525872,755633458,1397956676,540029498,221519948,1409944842,1142973800,544238965,1835888483,543452769,1869835361,1886745376,1953656688,543236211,1735288172,1881172084,1835102817,1919251557,1953068832,1953853288]},{"sector":8,"length":512,"data":[544104736,1919181921,225669989,544175114,1886221668,1701344288,1701868320,1768319331,1814062181,1952935525,1953701992,1769239137,1713399662,544042866,543516788,1953718636,1936286752,2036427888,1629512805,1701995620,168653683,1667852407,1936269416,1702065440,543978854,544370534,1886611812,1769562476,1629513582,2036429426,168636019,1162086925,1481069890,1684960544,1953722981,1935961697,1768453152,1684086899,1769236836,1818324591,1853453088,980967796,168626701,606094371,808464454,1179010618,218762550,1752637450,543712105,1819043188,1162092659,1481069890,1634235424,809902196,1931489328,1819635560,1700929636,1953392928,1919971941,1684370533,544432416,1702043745,1852140903,168635508,1953459744,544432416,1702043745,1952671084,1998615151,544105832,1969382756,1701144423,544434464,1881173609,1702129522,1684370531,1685024045,168636005,1716062733,1701344288,1650811936,1701275509,1936269413,544106784,1953460848,1702126437,1869426020,1629513060,1948279918,1931502952,1701668709,1881175150,544502369,1948280431,1931502952,1953653108,224882281,1684300042,1936942450,544434464,842211425,1953063469,1818587936,1869898597,1948265586,1864394088,1702061670,1634738292,544437362,1948280431,1931502952,1953653108,543649385,543452769,1768189541,168650606,1919181921,544437093,1935745069,1818588960,1935745132,1701344288,1852140576,543716455,1633886253,1700929646,758264608,779381090]},{"sector":9,"length":512,"data":[1635271968,1701605485,168639091,1143802381,978535456,808464689,824193072,1179004977,755633478,1396908100,808465466,540028976,808591436,221261872,755633418,168635693,222366221,1936933130,1701601901,1936615712,1668641396,1852795252,218762611,1853444874,980967796,1528840480,1919181921,1567847269,168626701,543516756,1702064961,1701601901,1836016416,1684955501,692135968,544434464,1684370293,544175136,1702129253,1935745138,1651336563,1830844780,778396783,544098592,1702064993,2037146221,1869416973,539780452,1430406468,1919950919,1953525103,1868963955,1634017394,1629513827,1835365235,544828514,1735287148,1701273973,1635021600,1701668212,1629516910,1663067246,1702260335,225670258,1701344266,1635021600,1701668212,1763734638,544175214,1751343469,543518313,1701080931,1634235424,1936269428,1701344288,1953701998,1684370031,544106784,1869440365,539916658,224749652,1953525514,1634627433,1953701996,544502369,1919181921,544437093,1667592307,1701406313,1752440947,1684086885,1936028260,1952522355,1768453920,1948280931,1935745135,1651336563,1948280172,168650088,1936877926,1852383348,1970435187,1869182051,1411395182,1679844712,1969317477,1931506796,1953653108,1684300064,1936942450,544434464,825905987,778580016,1646280992,1802396012,1852402720,1695157605,1919251566,1629512805,1752440948,1919950949,1953525103,1969316640,544433523,1430406468,1869881415,1769497888,1935745140]}],[{"sector":1,"length":512,"data":[1651336563,1830844780,778396783,168626701,221064493,1124732170,1866664461,1918988397,1633951845,168649076,2035485197,2019652718,541270074,1735287154,1684086885,1936028260,218762611,1701336074,1836008224,1701994864,1836016416,1684955501,692267040,1836016416,1701994864,2004099187,1701650543,2037542765,1734701600,1936617321,1816207406,1768169580,1919247974,1701015141,1769414771,1646292076,1812598117,1702130537,1646275684,543716463,1919181921,1702064997,1918967923,1768169573,1634496627,744777081,1953068832,1752440936,544368997,1886610802,1769235301,1679844726,543257697,1702132066,168636019,2017790477,1819307361,168639077,1127025165,808529952,543957040,842014770,168636464,875770417,808529978,1159733296,908075065,824188981,976499506,808464944,842074637,809120819,540094513,540094496,540160032,858927392,842021428,168636720,757926413,218762541,168641546,1886221636,1835363616,226062959,1393167626,1635020409,1142962808,1634884384,1566926702,538970637,538976288,1111760928,1634884384,1566926702,538970637,538976288,1464082464,1634884384,1566926702,538970637,538976288,1145315360,1634884384,1566926702,168626701,543516756,1886221636,1836016416,1684955501,692332576,1752637484,1965059685,543450483,1752459639,544503151,1634738273,1701667186,745694580,1969316640,544433523,1430406468,1946815815,1768169583,1634496627,1752440953,1868767333,1852142702,1864397684]},{"sector":2,"length":512,"data":[1752440934,842080357,2036477240,1646290292,1801678700,543584032,1869440365,1931508082,1953653108,543649385,168653921,1228559171,1718165584,1948279072,1701278305,1919950964,1634887535,1936269421,1634692128,744777060,544370464,1918989427,1735289204,544497952,825905987,543698992,1847617129,1946815855,1701278305,1919950964,1634887535,1936269421,1634692128,778331492,1701336096,1953525536,1634627433,1634869356,543516526,1634886000,1702126957,1633886322,1700929646,1702065440,1946815844,1886593135,1718182757,543236217,1918989427,1735289204,1684300064,1936942450,1919885356,1931501856,1953653108,543649385,543452769,1768189541,1629513582,1701995620,221016947,1931501834,1953653108,543649385,1919181921,544437093,543452769,1701584993,1752459118,1919885356,1937074720,543236212,1735288172,539912308,1935832403,1702195557,1142977646,225471861,1836016394,1684955501,1769414771,1970235508,543236212,1634886000,1702126957,1633886322,543519605,1430406468,1869881415,1936286752,2036427888,1701344288,1852793632,1953391988,1718558835,1752435213,842080357,2036477240,1646290292,1801678700,543584032,1869440365,1713404274,1869376623,1735289207,1701344288,1869373984,1679846243,1819308905,1684371809,544825888,224749684,1701998602,1970235766,1967399027,1663070317,1634561391,539911278,543516756,539771460,1629509444,1142973550,1635131460,1851877746,1679848308,1819308905,1830844769,1919905125]},{"sector":3,"length":512,"data":[1852383353,2036468237,539780468,1685221239,544370464,1651863396,1870095724,1713398898,1634562671,1701978228,1667592307,1702259060,539916652,1935832403,1702195557,1142977646,1836016416,1684955501,1997147507,543976553,543519605,543516788,1986359920,1937076073,1931508076,1768121712,1684367718,1919903264,544498029,1752459639,1701344288,1717920800,1953264993,1768251936,1646290798,224752761,1919903242,779379053,1701990432,1852404595,1313153127,542262612,1702127201,543236210,1886221636,1836016416,1684955501,1818851104,1969299564,1701998452,1952540016,1684955424,1969621517,1769235310,1629515375,1718165619,1869504800,1919248500,1836401696,1868767344,1851878765,1635197028,1852121203,1701995892,1769414756,1970235508,543236212,1735287154,168636005,757926413,218762541,222905354,1836401674,1850286192,1920099700,1937010805,1162094624,1481069890,1819176736,168634745,2035485197,2019652718,1229201466,1667593760,544370548,1970234203,224228462,1409944842,1142973800,544238965,1702129225,1886745202,1143480436,1663052105,1634561391,1679844462,1819308905,544438625,1702129257,1886745202,1702240372,1919906915,1852383347,1701972493,1982819425,1831679544,543515759,543452769,1229803588,1953392928,1970434661,1981838448,1869898597,1763734386,1919950958,1667593327,761554292,1701080941,218762542,1635271946,1701605485,168639091,1766066701,1634496627,1852383353,1920099700,544501877,1763717168]},{"sector":4,"length":512,"data":[1701978222,1831693409,979723375,168626701,541672493,805965104,842014768,809121862,221791795,1141509386,1819308905,1763735905,1919251566,1953527154,1684955424,1668834592,1769238629,1981836911,1869898597,807433074,1110453560,544106784,1647129139,1881175145,1702129522,1684370531,1685024045,168639077,1143147021,540549193,805965108,808460344,809121603,808464432,540553796,927150128,808464442,842150192,805965112,808460345,809121603,808464432,541340228,927150128,808464442,842150192,805965124,808460353,809121603,808464432,540160836,927150128,808464442,858927408,805965106,808460354,809121603,808464432,540488516,927150128,808464442,858927408,218762551,757935370,168626701,168643652,1886221636,1413762080,1936024608,1885958755,1936879476,1162094624,1481069890,1819176736,168634745,2035485197,2019652718,1279533114,1818587936,1869898597,1666916466,1953396079,218762589,1701336074,1836401696,1145839728,1701060692,1769104243,1919906928,1279535136,1868767273,1851878765,1768169572,1634496627,1142977401,541674832,542393420,1668506980,1953524082,779317871,168626701,1835104325,979725424,168626701,543974435,840971320,808454669,1646277688,1030058849,825307184,808466480,1835625504,809333865,808464432,541471793,1920234593,1177563197,805965106,541276208,1702060386,825241661,808464433,1768693808,1031039341,808464432,1179006768,1953784096,808467826]},{"sector":5,"length":512,"data":[168637254,1279527437,1851876128,1936482592,1700929647,1702065440,1869881444,1936286752,2036427888,1835625504,1629516905,1629512814,1769108596,1702131042,1718558835,1869116448,1193305459,168645700,1668506980,1953524082,544436847,1667852407,1918967912,1667309669,1936942435,1701601897,544825888,543516788,1701407843,539915374,1835104325,979725424,168626701,543974435,857749553,808454669,1646278705,1030058849,1061109567,1061109567,1835625504,1178432617,1179010630,541476422,1920234593,1179009853,805965122,540029488,1702060386,1061109565,1061109567,1768693823,1031039341,1179010630,1179010630,1953784096,1178811762,168637254,942813232,1935761952,1061109093,1061109567,1814052671,1953066345,1061109565,1061109567,1952522303,1060991604,222248767,755633418,168635693,1296304653,1967393293,1293971565,1919905125,1866670201,1869771886,1816273004,543908719,1111706920,1751326761,225339745,1393167626,1635020409,1142962808,218762573,1701336074,1836401696,1129128048,673215298,539577668,1886611812,1937334636,1701344288,1920295712,1953391986,1397703712,1347637280,1684955424,1701344288,1397703712,1835355424,226062959,1852785418,1819243124,1869365792,673213283,692208461,1634231072,221146729,1158286602,1886216568,221930860,755633418,168652132,978342736,875902768,842009101,874529585,842014788,807417650,540618800,1430406468,805965127,540422706,807420980,540488242,842151216]},{"sector":6,"length":512,"data":[1111835680,168642389,959723312,541340704,875902768,808464416,1329864761,1179535699,805965135,540226871,807420213,540292407,1128347705,1397703712,1330007625,168626701,543516756,1936877926,1635131508,543520108,1948283753,1931502952,1701668709,1629516910,1701995620,1864397683,1752440934,1129128037,1713384514,1869376623,543450487,874543458,1919885380,742470944,1752435213,2003771493,544367982,543452769,1702521203,543584032,543516788,541213517,543452769,1634625894,544828524,543516788,2036477240,1847616884,543518049,1948280431,1864394088,1919250039,1091177774,2003771502,544367982,807429743,540028976,1851876717,1752440947,1948284001,544434536,541213517,1668506980,1700948338,543236211,1701147238,1835363616,544830063,1668246626,168636011,1864396353,1919250039,543584032,942682160,1634037024,1948283758,544498024,1936287860,1111706912,1936024608,1651077731,1629516645,1937339168,544040308,1869440365,1646295410,1801678700,218762542,757935370,168626701,168646724,1886221636,1954047264,1701080677,1701650532,2037542765,1162094624,1481069890,1819176736,168634745,2035485197,2019652718,1480859706,1684101920,1936028260,168648051,1750338061,1967399013,1696624749,1852142680,543450468,1869440365,1663072626,1634561391,673211502,539580484,1869376609,1948283767,1679844712,1819308905,1864399201,1752440934,1969627237,1914727532,1701277281,1718553101,1835363616,779711087]},{"sector":7,"length":512,"data":[544491808,1936028533,1953384736,1970434661,824210544,539781173,943540289,1713399863,1696625263,1852142712,543450468,1869440365,1629518194,1936024419,168636019,1931506761,1819635560,1700929636,1953459744,1948279909,745824616,1701345056,1970413678,1852403310,1853169767,544367972,2017796193,1684955504,1293968485,1919905125,1632444537,1701273966,1160257650,740904269,1850280461,1920099700,544501877,745026865,1028145440,543700792,1634231650,544433526,1734962291,2037150824,1668180256,1769172591,1852142707,1629502068,1701995620,1936028531,1818583584,824211311,808464433,168650800,543519329,1634166130,1684366450,544432416,1701734764,539783777,1818847351,1684086885,1936028260,544433523,824196414,808464433,1629513776,1914725746,1918986085,543450468,1881174881,1769175400,778854755,1917848077,1769173861,1159751534,1380275278,1952866592,1629516389,1836401696,1483022448,1684956532,1830839397,1919905125,1868767353,1851878765,1769414756,1629514860,1919906933,1634037861,1851859060,1711934820,1952673397,544108393,1763734369,1851859046,1701344367,1967399026,1696624749,1852142680,543450468,1869440365,1663072626,1634561391,1998611566,1696625505,1919251566,221144165,755633418,168635693,222628365,1953383690,1679848037,543257697,1869901417,1835363616,226062959,1393167626,1635020409,1159740024,1684300064,1936942450,1768708896,224228467,1409944842,1159751016,1919251566,1836016416]},{"sector":8,"length":512,"data":[1684955501,692398112,544434464,1684370293,544175136,1702129253,1633951858,1763729780,544175214,1869440365,539916658,543516756,1970365810,1684370025,1684081165,1936028260,1634738291,1701667186,544367988,1667592307,1701406313,1752440947,1953701989,1769239137,1814062958,1952539503,544108393,1998615649,1751345512,544175136,1702129253,1946815858,1679844712,778138721,543574304,543516788,1919181921,544437093,1634886000,1702126957,1868832882,1847620453,1931506799,1768121712,1629518182,1734701856,1953391981,1162092588,222778690,1702065418,1396973683,1716068398,1701344288,1953525536,1634627433,1768693868,1881175155,1835102817,1919251557,544434464,544501614,1818455657,1684366453,1162092588,222778690,1936286730,2036427888,1752440947,2036473957,1981834612,1702194273,544497952,543516788,1667592307,1701406313,1684086884,1936028260,1851859059,1919950948,1953525103,1868963955,224469106,2003136010,1818326560,539911541,543516756,1667330163,1918984805,544370464,1970170221,1701519475,1633886329,1700929646,1702065440,1869881444,1987013920,1869881445,1701344288,2019913248,1862929780,1919950962,1869182565,1646293877,778400889,1701990432,1852404595,1752440935,1850024037,544367988,544826731,1752459639,544503151,1702129253,1735289202,1981833504,1702194273,1702103565,1852403058,1936028769,1701344288,1836016416,1684955501,1716068398,1701344288,1936288800,1634738292,1701667186,544367988]},{"sector":9,"length":512,"data":[1763734377,1970037614,744777060,544500000,225337699,1852793610,1852399988,544240928,941649780,1954112032,1635131493,1936029036,1885696800,1952543329,1646290021,1886593145,1936024417,1868767276,1935764845,1919885356,1650553888,168635507,795111009,1629516399,1935762208,1769152613,1718185575,1851876201,1953702004,1735289202,1668179232,1702063980,1852383332,1852404512,543517799,1679848047,1818391919,1970348133,1936028783,218762542,1635271946,1701605485,168639091,1160579597,808464672,540094496,807416368,755633459,808525893,1093083184,220676930,541404426,540028977,1128415527,221257767,755633418,168635693,222693901,1818838538,1701650540,2037542765,168626701,1953397075,540702817,1634869318,543516526,1953720684,168626701,543516756,1819044166,1836016416,1684955501,692463648,1818846752,1629516652,1835363616,544830063,1768383858,544435823,1752459639,1646289184,543519865,1953784176,778990181,168626701,1835104325,979725424,1867778573,1818846752,1752440940,1768300645,544502642,808464440,2036473960,544433524,1663067759,1701999221,1679848558,543257697,1835492723,544501349,1752459639,1952542752,1852990836,540357920,221921601,755633418,540024902,808984652,891301936,1094787125,168626701,221064493,1191841034,1866926605,168626701,1953397075,540702817,1029382215,1919181921,1567847269,1919048480,812343653,1701995040,774990689,224210478,1409944842,1193305448]}]],[[{"sector":1,"length":512,"data":[1868767343,1851878765,1193812068,1998597161,544105832,1684370293,1953068832,1953853288,1881170208,1835102817,1919251557,1633886252,1936028533,1111835680,1948272469,1661603183,544829551,543516788,1953394531,1937010277,543584032,543516788,1768383858,1919251571,1918989856,1818386793,1948283749,1752440943,1667309669,1818326388,1431323424,1701972493,1953720679,544436837,543452769,1701209701,1986622563,544828517,1886221674,544175136,543516788,1953721961,1952675186,544108393,1126200417,1346976339,1768366124,1735289206,1969621517,1663069292,1920233071,1948281967,1752440943,1919950949,1634887535,1700929645,543649385,1969382756,1684367207,1162092590,541545794,1819044215,1734701600,225339745,1852793610,1819243124,1701345056,1752440942,1919950949,1634887535,1702109293,1852403058,1936028769,1750343726,1886330981,1852795252,1629514849,1701995620,1881174899,1835102817,1919251557,1633880589,1700929646,1702065440,1869881444,1701868320,2036754787,1701344288,1635021600,1852404850,1684086887,1936028260,1411395187,1864394088,1869182064,543973742,1634038370,1768910955,168653934,1953720684,1851876128,543515168,1684370293,544175136,1667592307,544826985,1948282997,808525935,1835365408,1634889584,1646295410,1801545074,1852403568,1684086900,1936028260,779314547,1867778573,1718182944,1701995878,1634301038,1948280180,1629513064,1701995620,1881174899,1835102817,1919251557,1869768224,1752440941]},{"sector":2,"length":512,"data":[1919033445,1886085477,1953393007,1936288800,168635508,543516788,1919181921,544437093,1634886000,1702126957,1970086002,1646294131,1919950949,1684366181,1998611557,543716457,572550753,539894333,1702129486,1634235424,1752440948,1644825957,1801545074,1852403568,1684086900,1936028260,544433523,1953723757,1768907552,1684628334,1769414757,1948280948,1931502952,1953653108,543584032,1635131489,224684396,1936615690,1668641396,1852795252,1867784238,1936028192,543518069,1667594341,1869182069,1717641326,544367988,1919033441,1886085477,1953393007,1937055788,1752440933,1866932325,1868761613,1851878765,1769414756,1970235508,543236212,1634886000,1702126957,168636018,757926413,218762541,168642570,544761160,543450209,543452769,1952609651,1952670066,168626701,543516756,544761160,1835888483,543452769,539576360,1886220131,1936028789,1701344288,1836413728,1684955424,1718182944,1701995878,543515502,1948280431,1746956151,1847621733,1700949365,221148018,1393167626,1635020409,1210071672,1818326560,540108149,1970037110,168637029,2017790477,1819307361,221934437,1208618250,1179005216,221262112,808595466,825237574,168642117,541592077,808464434,808722480,168636464,842018864,808464436,808464416,808469297,218762544,757935370,168626701,1225395529,1953853550,1869768224,793321581,1869619279,168653938,2035485197,2019652718,541663290,1953656688,538970637,538976288,1464410144]},{"sector":3,"length":512,"data":[1919905824,537529716,538976288,1226842144,1869619268,168653938,1750338061,1850286181,544503152,1835888483,543452769,539576616,1937072483,1142977381,1196769861,544175136,1684104562,1684955424,1936286752,2036427888,1701344288,1818326560,168650101,1836020326,1701344288,1701868320,1768319331,1226859621,1881165615,779383407,1701336096,542591264,543452769,1981826121,1634300513,544437358,1684104562,1998610720,543453807,168653423,1651863396,1870095724,1981834354,1702194273,1869768224,1752440941,1886593125,1718182757,543450473,542060361,1953656688,1867391022,1948280180,1226859880,1868767300,1851878765,1661603172,1864396385,544828526,1965057378,543450483,941649519,909652784,544370464,1702125932,1919950962,1936024431,1936879475,218762542,757935370,168626701,1275727180,543449455,1701603686,544370464,1802725732,1667592992,1936879476,168626701,1953397075,540702817,1633361996,1701995620,224228211,538976266,538976288,1629506592,1701995620,1679848307,1702259058,1635021600,1702065266,1919906915,1836412448,1869768034,1667593062,1936879476,168626701,543516756,1684107084,1836016416,1684955501,692856864,544434464,1684370293,544175136,1684107116,1713398048,543517801,1869901417,1835363616,779711087,1701336096,1818846752,1869881445,1869351437,1763730529,1886593139,1718182757,543450473,1752459639,1701344288,1835093536,1868767333,1851878765,1311252580,1411395113,1864394088]},{"sector":4,"length":512,"data":[1869182064,543973742,1919181921,225669989,1918988298,1952804193,1931506277,1768121712,1936025958,1701344288,1634692128,1684086884,1936028260,1411395187,1679844712,1969317477,1814066284,543449455,1919181921,544437093,168653673,825905987,1713385520,1629516399,1713400940,1936026729,1752461088,1948283493,544104808,541415493,1701603686,1713384563,1998615151,1751345512,1718511904,1634562671,1852795252,225339680,1701344266,1818846752,1701322853,1919247457,1952801824,1768780389,544433518,543516788,1684107116,1684300064,1936942450,1715544110,544367988,1430406468,1869357127,544433249,224749684,1818846730,1953046629,1952805664,1480728691,542655290,1948282740,1713399144,543517801,1702521203,544106784,1702132066,168636019,1750338061,1867260005,1663067233,1634561391,1663067246,1629515361,544174956,1965057378,543450483,1814065012,543449455,543518319,1830842991,543519343,1768386412,543973731,1952671091,225669743,1869768202,543236205,1802725732,1769104416,1763730806,544175214,1430406468,544417607,1869440365,539916658,543516756,1986622052,1752375397,1684829551,543515168,1667592307,1701406313,1628048740,1026564211,824192065,539771453,541277490,778269797,168626701,221064493,1292504330,1867319821,1679844726,224490593,1409944842,1293968744,543520367,1835888483,543452769,539577640,1768976227,1629516645,1835363616,544830063,1768383858,1948282479,1851859055,1701344367]},{"sector":5,"length":512,"data":[1869357170,1769234787,539913839,168650313,1920298867,1629513059,1679844462,1769239397,1769234798,1864396399,1819436406,539783265,1953653104,1718558835,1701344288,1970238240,543515506,1819044215,543515168,1919252079,1953067639,778986868,168626701,1953397075,540702817,1634869325,543516526,1919181921,225669989,755633418,168635693,223152653,1952797450,1431323424,1431324207,1685024032,1143480421,1196769861,1852776536,220821868,1393167626,1635020409,1293957752,1869437728,1316775268,224220284,1409944842,1293968744,1836016416,1684955501,692922400,1952805664,1752440947,1969430629,1852142194,1346576500,1851859029,1346773092,1869422677,1713399140,1948283503,1092642152,1835365235,543517794,224685665,1634620682,1835365235,543517794,1835888483,1935961697,1750343726,1869422693,1981834596,1702194273,544434464,1868963888,543236210,909652024,942684207,773860408,891301422,1919903264,1344299296,1769238117,221015413,1713387018,1629516399,1852133408,1836411252,1869762592,544370464,1702125932,1394617970,1768121712,1852406118,541991015,1768189545,1702125923,1869488243,1431324192,1684955424,1701868320,2036754787,543649385,1762266452,1667851374,1936028769,941646112,909652784,1953068832,543236200,942813240,168635959,1867778573,1936286752,2036427888,1701344288,1920295712,1953391986,1431323424,1684955424,1431324192,1685024032,1937055845,1752440933,541925477,1835888483,543452769]},{"sector":6,"length":512,"data":[1752459639,544503151,1634738273,1701667186,779249012,168626701,221064493,1309281546,1699940877,1919950964,1634887535,1634607213,1629513069,1629512814,1836410738,1937010277,168626701,1953397075,540702817,1768300622,1886610796,1528849253,1969713761,1953391981,168648051,1750338061,1632510053,1663067501,1634561391,673211502,1763715406,1937055859,1948279909,1852383343,544503152,1768300641,1634624876,673211757,1970561889,2037148769,543236140,1701603686,1886587405,1718182757,1952539497,544108393,1952540788,1851876128,1668180256,1701082476,1679843616,1702259058,1684955424,1881170208,694711393,1919903264,1931501856,1702060661,1852142961,1275727220,543449455,1461744239,1702127986,1836016416,1684955501,1698832430,1937072483,1752440933,1632510053,1663067501,1634561391,1965057134,544433523,543516788,1970104691,1702125932,1342836068,1629507667,543236211,1717990754,539783781,1663071337,1629515361,544174956,1965057378,543450483,1696624500,1919251566,1836016416,1684955501,1852402720,1918967909,1701672295,225670254,1684955402,544370479,1953068915,1936025699,1919903264,1701344288,1869770784,1835102823,1768251936,1679845230,1735746149,778331495,168626701,1629513026,1701994871,1634235424,1752440948,541991013,1835888483,543452769,1702128737,1948283762,1981834600,1702194273,543584032,543516788,1914722369,1936287589,779249012,168626701,221064493,1326058762,1968114189,1953853556]},{"sector":7,"length":512,"data":[544175136,542060361,1953656688,168626701,1953397075,540702817,1869619279,1646294130,224752761,538976266,538976288,542592800,1953656688,1919907616,537529700,538976288,1327505440,1869619268,1679848562,1685221239,168626701,543516756,1886680399,1663071349,1634561391,673211502,1663052111,1702065505,1162092659,541545794,1998614388,1702127986,1701344288,1701868320,1768319331,1981834341,1702194273,1869875725,1701344288,1701868320,1768319331,1226859621,1881165615,779383407,1701336096,542592800,543452769,1981826127,1634300513,544437358,1953067639,543236197,1685221239,225603360,1970234378,2003135586,543453807,1970037110,1869881445,1701344288,1701868320,1768319331,1226859621,1881165615,779383407,1953451552,1752440933,1146036325,1836016416,1684955501,1633880589,1852776558,1646295404,1937055845,1864393829,808984686,540424243,1814065775,1919251553,1869770784,1936942435,779317871,168626701,221064493,1342835978,1917848077,1701143407,1920213092,224748385,1393167626,1635020409,1344289400,1631410976,1701995620,542995315,1836412507,1567778146,168626701,543516756,1668248144,543450469,1835888483,543452769,539578408,1668183398,1852795252,1768693875,1948280171,1411409256,1701011826,1836016416,1684955501,693381152,1919903264,1819042080,1852377613,1970435187,1869182051,1864397678,1919248500,1634235424,1752440942,1701978213,1952540016,1163012128,1931487568,1852404340,1277176935]},{"sector":8,"length":512,"data":[743460687,1279345440,1629498444,1226859630,168645710,1953721961,1952675186,1936617321,1866866734,543236210,1701864818,1931506785,1852404340,1852383335,1970435187,1869182051,1142959214,1196769861,1702389024,1702131043,1752440947,1762266469,1920234350,1769235317,1948282479,1868767343,1701605485,1852795252,1866866734,543236210,1347374924,1936615712,1668641396,1852795252,1162092588,541545794,1667594341,1936028789,1701344288,1852115469,1701996916,1869573152,1869881456,1836016416,1952803952,778989417,1919895072,1126195488,541871169,1226863215,539776078,1430406468,2019893319,1953850213,1948283749,1696621928,1919513710,1661603173,543976545,1763734127,1919251566,1953527154,544240928,1629515636,1763730542,1970037614,1735289188,1701344288,1952805408,544109173,1953721961,1952675186,778989417,1952858400,168653413,1667594341,1869182069,1936269422,1836016416,1952803952,1142959205,1196769861,1852793632,1970170228,1629516645,1953046643,1701798944,1868963955,1752440946,1918115941,543515489,1835888483,778333793,1917848077,1769173861,1159751534,1380275278,1952866592,1629516389,1869762592,1684366691,1836016416,1684955501,1818851104,1969299564,1701998452,1952540016,1684955424,1853187616,1869182051,1935745134,1718159885,1869504800,1919248500,1869762592,1684366691,1836016416,1684955501,1935767328,1953391904,1684370021,218762542,757935370,168626701,168645200,1668248144,543450469,1970562386]},{"sector":9,"length":512,"data":[168652402,2035485197,2019652718,1380982842,168626701,543516756,1668248144,543450469,1970562386,673214066,539578960,1835888483,543452769,1953069157,1752440947,1969430629,1852142194,1970479220,1970238050,1701734772,544825888,1668248176,1768187237,168650606,1953718640,1701344288,2019913248,1163010164,1377840212,541480005,1226863215,542393682,1953721961,1952675186,544108393,1667852407,1936269416,1953459744,1936027168,543450484,1881174639,1919381362,168652129,1836213620,1952542313,778989417,1819033888,1752461088,1763734117,1920234350,1769235317,544435823,1818455657,1852400757,1851859047,1701716089,1684370547,1818321696,1864397676,1852383346,1920099700,1937010805,1918962189,2019893349,1953850213,1998611557,1869116521,1931506805,1886416756,778530409,168626701,221064493,1359613194,1968245261,168653929,2035485197,2019652718,223420474,1409944842,1361077608,544500085,1835888483,543452769,539578664,1953069157,1162092659,776426818,168626701,221064493,1376390410,1766066701,1634496627,1919885433,1685024032,544826985,1768383858,1919251571,218762611,1853444874,980967796,1528844832,1768383858,1919251571,1985683549,1702194273,218762589,1701336074,1734693408,1702130537,1868767346,1851878765,1378361444,1998597161,544105832,1684370293,1953068832,1953853288,1881170208,1835102817,1919251557,1633886252,1936028533,1162086925,541545794,1679847284,1819308905,1948285281,1663067496]}],[{"sector":1,"length":512,"data":[1702129263,544437358,1948280431,1948280168,1701278305,1919950964,1634887535,544417645,542462019,1768383858,1919251571,168636019,543516756,1769238639,1818324591,1734701600,1702130537,1634738290,1701667186,544367988,1819044215,1969316640,1142973811,1196769861,544175136,1886611812,544825708,224749684,1852793610,1953391988,1718558835,1701344288,1734701600,1702130537,1851859058,1919950948,1953525103,1919903264,1847615776,1981839205,1702194273,1750540334,1142976101,1196769861,1768163853,1634496627,1948283769,1663067496,1702129263,544437358,1948280431,1914725736,1936287589,1936876916,1953046572,1668179232,1936024687,1701344288,1869770784,1936942435,168653423,1734437990,1935745139,1819239968,1937207148,218762554,538976266,1734437958,538976288,538976288,538976288,1699946528,538976372,1634036803,537529714,757932064,757935405,757935405,757935405,757935405,757935405,757935405,221064493,538976266,1919252047,2003790950,538976288,538976288,1448026144,538976288,168646222,1142956064,1667592809,1852795252,538976288,538976288,542000160,1428168736,537529680,1850286112,1920099700,544501877,538976288,538976288,538986821,1229201440,538970637,1734955808,538976366,538976288,538976288,1310728224,538976327,223105056,538976266,1869768026,538976288,538976288,538976288,1381638176,538976288,168647246,1092624416,1818851445,2037539177,1918976800,538999154,541278496]},{"sector":2,"length":512,"data":[1310728224,537529665,1632641056,2037672306,538976288,538976288,538976288,538985808,1330651168,538970637,1918976800,538999154,538976288,538976288,1126178848,538976345,222514720,1225395466,1752440934,1701978213,1953720679,1629516389,1836410738,544501349,1730179945,1852143209,1953046572,1851876128,543515168,1701670249,1952541028,544828517,1819045734,1684371311,2036468237,1701344288,2003136032,1818326560,539911541,1881173838,1886220146,1769414772,1629514860,1634037872,1852383346,1634235424,1633886324,221144435,1409944842,1881171304,1701015410,1919906675,1634493984,1663071079,1646292577,1751326821,1701277281,1852383332,1870099488,2036430624,1411395187,1713399144,1953722985,1853453088,544760180,1851877475,225666407,1684957450,1684633193,543973749,1734437990,168639091,1378683405,1528841760,1316771407,1313111126,2085639548,1148995909,1196325961,2085376124,1316770394,1128365146,2084654716,1350321488,1497594959,1564692092,168626701,543516788,1701344367,2037588082,2019652718,1818851104,1702043756,1752440948,1163599973,541869661,1768383858,1919251571,218762554,542256394,1180517723,1530667084,1870093668,1981834354,1702194273,218762558,757935370,168626701,168643922,1886611780,544825708,542657869,1768383858,1919251571,1143480435,1196769861,1852776536,220821868,1393167626,1635020409,1377843832,218762573,1701336074,541938208,1835888483,543452769,1886611812,1937334636]},{"sector":3,"length":512,"data":[1481461024,1734701600,1702130537,673215346,1629513321,1818845558,1701601889,168635945,757926413,218762541,223236618,1936278538,2036427888,1431324192,1734701600,1702130537,168653682,2035485197,2019652718,1314005050,224219739,1409944842,1377854824,1868767310,1851878765,1768169572,1634496627,1752440953,1868767333,1852142702,1718558836,1701344288,1869375008,1852404833,1869619303,544501353,1768383858,1919251571,1142959731,1196769861,1913261400,1701080677,1948283762,1663067496,1702129263,1864397934,1752440934,543519589,1768383858,1919251571,1852383347,1701978656,1650549857,539125100,1634692198,1735289204,1768910880,1713402990,1634562671,168635508,1430406468,1768169543,1634496627,1948283769,1663067496,1702129263,1763734638,1634869358,1701322871,1868963960,1952542066,1681989678,1769236836,1818324591,1142978924,1196769861,1970479192,1919905904,168653684,543516788,542264914,1835888483,543452769,1667852407,1768169576,1634496627,1948283769,1663067496,1702129263,1763734638,1634869358,1701322871,1868963960,1952542066,218762542,757935370,168626701,168646738,796157267,1634036835,2019893362,1684956532,673211493,1647129139,539587689,1768383858,1919251571,1685024032,218762597,1853444874,980967796,223892000,1409944842,1377854824,1868767320,1851878765,1936269412,1952669984,543520361,1948280425,1663067496,1701999221,1126200430,1763726672,543236211,942878776,1919885366,1952801312]},{"sector":4,"length":512,"data":[779249012,1481771533,1818851104,1869881452,1701603175,1952801312,1852138871,1701344288,1835627296,543517808,1647130161,1914729577,1936287589,544367988,1886611812,544825708,1768453928,1763731555,1752440947,1678380389,1969317477,539587692,543452769,543516788,1819047270,758264608,544500066,1768383858,1919251571,1936286752,2036427888,218762542,757935370,168626701,1393167699,1668440421,1701650536,2037542765,168626701,1953397075,540702817,1634869331,543516526,1953720684,168626701,1918985555,673212515,1763715411,1937055859,1948279909,1768300655,1948279918,1864394088,1920295779,1668179314,1718558821,1931501856,1768121712,543385958,1702132066,544370464,1769104755,168653669,1646290543,1936028793,1953068832,544106856,1702043745,1852140903,168636020,2017790477,1819307361,221934437,1409944842,1768300655,1629512814,1864395884,1920295779,1668179314,1864397669,1126637670,825368644,1852383271,1835363616,544830063,1768383858,1142976111,808532563,1177627952,168639046,1395460621,808464672,824208416,1126182960,825368644,824183309,976499506,842150192,824183309,976499506,1128608048,168626701,1713401684,543452777,543976545,1769108595,544434030,1818585122,539127660,1142976105,825244243,1177366576,977684038,168626701,824202029,1176514608,541476422,1818585127,220688236,842080266,809120819,221393457,842080266,825898035,221327922,842080266,1161442355,222512193]},{"sector":5,"length":512,"data":[755633418,168635693,223611405,1634882570,168650083,2035485197,2019652718,542384186,1684094299,1936028260,1528847731,1651340654,224227941,1409944842,1411409256,1701011826,1836016416,1684955501,693381152,1752637484,1965059685,543450483,1752459639,544503151,1634738273,1701667186,745694580,1969316640,544433523,1430406468,1946815815,2019893359,1953850213,1752440933,1852383333,1970435187,1869182051,1952522350,978535200,539906121,1868981570,1948280178,1763730792,1920234350,1769235317,1763733103,1695157619,1969448312,744777076,1701344288,1852793632,1953391988,1718558835,1701344288,1734701600,1702130537,1635131506,1650551154,544433516,543519329,1768976227,1948279909,1752440943,1628048741,1635087459,1346576492,1701978197,1953720679,779317861,1952858400,1948283493,1763730792,1920234350,1769235317,1746955887,1696625505,1969448312,744777076,1684955424,1685091616,1684370529,1752435213,1667309669,1818326388,1431323424,1734701600,1702130537,673215346,1818455657,1852400757,1346969703,1948265513,1663067496,1702129263,544437358,1948280431,1629513064,1635087459,1124732268,1914721616,1936287589,1936876916,1701994784,1886348064,543450473,1801675106,544175136,543516788,1768383858,1919251571,1918989856,1818386793,1629516645,1948279918,168650088,1953394531,1937010277,543584032,1936025716,1635131493,1650551154,544433516,543519329,1886611812,1702453612,1411395172,1864394088,1869182064]},{"sector":6,"length":512,"data":[543973742,1919181921,225669989,1918988298,1952804193,1663070821,1646292577,1937055845,1948279909,1886593135,1718182757,1752440953,1953701989,1769239137,1629513582,1701995620,539915123,543516756,1769238639,1818324591,1868761613,544501365,1634886000,1702126957,1633886322,1700929646,1702065440,1869881444,1701868320,2036754787,1701344288,1836412448,544367970,1763731055,1920234350,1769235317,544435823,168652660,1667594341,778400885,544166944,1717987684,1852142181,1952541044,1752440933,1684086885,1936028260,1634738291,1701667186,544367988,1836020326,1701344288,1970234144,168653934,1634886000,1702126957,1948265586,1629513064,1701995620,1881174899,1835102817,1919251557,1937075488,1700929652,1701998624,1701078371,1769414756,1629513844,1025646702,1310731810,224752751,1634235402,1752440948,1768300645,544502642,1702132066,544497952,543516788,1667592307,1701406313,1684086884,1936028260,1970086003,1646294131,1752440933,1953701989,544502369,1629513327,1635125773,543451500,1953721961,1952675186,778989417,1701990432,1852404595,1313153127,542262612,1702127201,543236210,1667330644,1868767333,1851878765,1769414756,1629514860,1919906933,1634037861,1628048756,1713398894,1952673397,544108393,1763734369,1851859046,1701344367,1918115954,543515489,1835888483,543452769,544432503,1702129253,778331506,168626701,1948280393,1663067496,1701999221,1126200430,1346976339,1768910880,544437358]},{"sector":7,"length":512,"data":[1629515636,1313415278,1886330964,1701080931,1162092588,658986306,1700929651,1769365864,544372079,1701864804,225666158,544108298,543516788,1920103779,544501349,1970037110,1718558821,1701344288,541938720,1769238639,539913839,1763731017,1936269428,673198112,543516788,1634100580,695495797,1162092588,222778690,1818851082,1701978220,1852399975,1852793632,1819243124,1701345056,1752440942,1313415269,1634213972,1700929651,1881173605,1701015410,1684370291,1716068398,541938720,824210281,1162092588,222778690,1818851082,1953701996,572551269,1869901417,1752440866,1313415269,168635988,757926413,218762541,223171594,1634882570,1830839651,224748655,1393167626,1635020409,1411398264,811278413,224211324,1409944842,1411409256,1701011826,1685015840,1868767333,1851878765,1411915876,539765069,1937007987,1701344288,1414416672,1634890784,1830839651,778396783,543574304,1763734633,221257843,1701344266,1650811936,1701275509,1769414770,1914727532,1767991141,1868767342,1869771886,1752637548,1948282469,1226859880,1746949198,1646293857,544105829,1668248176,1702064997,168636004,1411409481,1936269389,539767072,543516788,1969382756,1919248231,1818851104,1953701996,572551269,1869901417,1752440866,1313415269,168635988,757926413,218762541,168645898,1935765077,1651336563,1763730796,1920234350,1769235317,225668719,1393167626,1635020409,1428175480,1634884384,1566926702,168626701,543516756]},{"sector":8,"length":512,"data":[1935765077,1651336563,1663067500,1634561391,673211502,539765077,1852139639,1702065440,1769414756,1970235508,1851859060,1634738297,1701667186,745694580,1969316640,225666419,1111835658,1948272469,1701978223,1629512801,1869770864,1634560376,2037146996,540160800,1702132066,1718558835,1835363616,544830063,1918989427,1735289204,544497952,543516788,1953066601,225206633,978535178,1981829193,1702194273,1886593139,1718182757,543450473,1948282473,1713399144,543517801,1684104552,1763734117,1851859046,1163412768,1818846752,1936269413,1634692128,744777060,1919879693,1635021600,1852404850,1952522343,978535200,1747988529,543582496,544829025,1701344367,2037653618,1864394096,1768300646,1864394092,1869488242,1818846752,1936269413,1634692128,778331492,1866861069,1634017394,1763731555,1920234350,1769235317,1763733103,1752440942,1830843241,1919905125,1142959225,1196769861,1936286752,1702064993,1701601901,1948786803,1936613746,1702125932,1711934835,544042866,1751343469,543518313,1701080931,544175136,1702064993,2037146221,1851878432,1734440295,1948264805,1763730792,1920234350,1769235317,1629515375,1679844462,1819308905,225671521,1701344266,1684300064,1936942450,1752440876,1634541669,1852401763,1868767333,539780452,543452769,543516788,1920102243,1869640549,1852400750,1935745127,1651336563,1814067564,1969712737,778397537,1750338061,1886330981,1852795252,1914727521,1701277281,1918988320]},{"sector":9,"length":512,"data":[1952804193,1663070821,1646292577,1937055845,1948279909,1886593135,1718182757,543236217,1918989427,1735289204,1684300064,1936942450,1862929708,543236210,1918989427,1735289204,1684955424,1684956448,543649385,1919181921,745763685,544370464,1953701985,1769239137,1629513582,1701995620,1629516659,1629512814,1852140576,778597479,1968376333,1902474082,1953391989,1634620704,1835365235,543517794,1835888483,1935961697,1953068832,1953853288,2037276960,1918988320,1952804193,1663070821,1702065505,1111835680,1948272469,1930038639,1953653108,544497952,543516788,1953721961,1952675186,544108393,1819045734,1852405615,1752440935,1634476133,1763734643,1920234350,1769235317,1881173615,1701015410,1684370291,226058784,1701344266,1701998624,1970235766,1851072627,1702064993,1701601901,1836016416,1684955501,1917853742,1769173861,1159751534,1380275278,1952866592,1629516389,1851072622,1702064993,1701601901,1868761613,1851878765,1769414756,1629514860,1919906933,1634037861,1851859060,1969627236,1769235310,1629515375,1718165619,1869504800,1919248500,1634620704,1835365235,543517794,1835888483,224685665,1953068810,1953853288,1914724640,1701277281,1935767328,1953391904,1684370021,218762542,757935370,168626701,1443499350,544695657,1885957222,168626701,1953397075,540702817,218762582,1701336074,1701402144,1818632311,1663070313,1634561391,673211502,1679829334,1819308905,544438625,543516788,1735357040]}]],[[{"sector":1,"length":512,"data":[544039282,1886680431,1931506805,1701147235,1718165614,1111835680,168642389,544432503,1918989427,543450484,1752459639,1701344288,541470496,1769238639,539913839,1936028240,1851859059,1701519481,1869881465,1952805408,544109173,1142976372,1196769861,218762542,757935370,168626701,1460276567,1702127986,1818846752,1919885413,1936286752,1702043755,1919906915,218762611,1853444874,980967796,1528846112,1919181921,1567847269,538970637,538976288,542580768,1919181921,544437093,1986622052,1953701989,1937011297,1869898597,1970151538,1919246957,1702061679,1919906915,218762611,1701336074,1769101088,1663067508,1634561391,673211502,1663052119,1702065505,1162092659,541545794,1998614388,1702127986,978862624,1646286915,1936028793,544175136,543516788,1886680431,168653941,1701603686,1750343726,1886330981,1852795252,1629514849,1701995620,1881174899,1835102817,1919251557,1701868320,1768319331,1948283749,1931502952,1953653108,543649385,1920298867,168650083,1919181921,779318117,1701336096,1717920800,1953264993,1635021600,1852404850,1869815911,1701016181,1684300064,1936942450,544434464,1747988529,1867391022,1948280180,225730920,1634692106,1735289188,1713398048,543517801,1836020326,1701344288,1111835680,1663059797,1634561391,1814062190,543518313,1998615151,543716457,543516788,1684107084,1836016416,1684955501,1769409037,1931504748,1109423205,1480800856,544175136,543516788,1702521203]},{"sector":2,"length":512,"data":[543584032,543516788,1701603686,543236140,1952540006,543519349,1634036835,544828530,1702129257,1684366446,1869875725,1684627744,544106784,543516788,1668571504,1735289192,543584032,1667594341,1650553973,779314540,168626701,543516756,1953067607,1868767333,1851878765,1633886308,1818304622,1646292851,1937055845,1948279909,1920409711,543519849,543518319,1830842991,543519343,1768386412,543973731,1952671091,225669743,544175114,1768169569,1679846259,1702259058,1750343726,1919164517,543520361,1970235507,1646290028,1886593125,1718182757,543450473,1713402721,1948283503,1277191528,543449455,1835888483,778333793,168626701,221064493,1477053706,2017790477,1684955504,1830839397,1919905125,1160257657,539579213,1835888483,1935961697,168626701,1953397075,540702817,1663058264,1953396079,2035485197,2019652718,1146626106,1851877408,224750692,1853444874,980967796,541939744,1768386412,1886151011,543516513,1937336432,1818321769,1701273968,1851877408,224750692,1853444874,980967796,542267424,1684955496,1663067500,1953396079,2035485197,2019652718,1398284346,168626701,543516756,542330181,1835888483,1935961697,1096296480,1146626092,1297621036,1381507116,1398284332,1918967849,1937055845,1948279909,1701847151,1919903346,1635131501,1970235762,1158286707,1713394509,1952673397,1936617321,1096294446,1819042080,1952539503,1696625509,1851879544,543450468,1869440365,539785586,1679836248]},{"sector":3,"length":512,"data":[1819042149,1952539503,168653669,1634760805,1684366446,1835363616,746156655,541939744,1936744813,1814061344,1667852143,1881173089,543516513,1629515636,2036887584,1633905011,1634738284,221013351,542267402,1818322290,1633906540,544433524,1634760805,1684366446,1835363616,544830063,543452769,1679840088,1819308905,544438625,1634760805,1684366446,1835363616,544830063,1952543859,221148021,1953451530,1752440933,2019893349,1684955504,1830839397,1919905125,1868767353,1851878765,1629516644,1679844722,1650553705,543450476,1679849826,1969317477,1931506796,1701015145,1701344288,1628048761,1864394098,1768693862,543519860,543519605,1948282740,1667854457,1679846497,1735746149,1735289191,1750343726,1634541669,1700929657,1634624800,1684368482,544825888,1768318308,1735289198,1296370189,1145914195,544175136,1852383281,1111835680,1093551957,1629506899,1914725486,1769300581,1852400748,1162092647,541545794,543452769,1430406468,221141063,755633418,168635693,1967524365,1769235310,1818324591,226063465,757935370,757935405,757935405,168635693,544370502,543516788,1667330644,1344285797,1701015410,539780197,543452769,1768383826,1919251571,1836016416,1684955501,1629498483,1919251558,1111835680,1663059797,1819307375,1936028773,1752435213,1886330981,1952543333,1936617321,1936024608,1651077731,1629512805,1702260578,1953046572,1936286752,1702064993,1701601901,1752440947,1701716069,1763734648]},{"sector":4,"length":512,"data":[1920234350,1769235317,168652399,543452769,1886611812,1937334636,1701344288,1684300064,1936942450,543584032,543516788,1953721961,1952675186,745434985,1701344288,1667329312,1701734760,1685021472,1629498469,168649838,543516788,1920102243,1869640549,1852400750,1935745127,1651336563,1814067564,1969712737,778397537,1919895072,1701344288,1634882592,1629513059,1344300142,1701015410,168649829,1835888483,1935961697,1718165548,1701344288,1936615712,1668641396,1852795252,1852793632,1852399988,543236211,1869440365,1864399218,1634887024,539780206,1430406468,1768169543,1634496627,168653689,543516788,1919181921,544437093,1952540788,1701344288,1701867296,1684955506,1717924384,544436837,1629515636,1948279918,1663067496,1702129263,544437358,1948280431,225730920,1684300042,1936942450,1750343726,1702043749,1852140903,1701978228,1953720679,1931506277,1768121712,1684367718,544106784,543516788,1919181921,544437093,1948283753,1679844712,1969317477,168653932,1835492723,544501349,1768383858,1919251571,1919903264,1701344288,1936615712,1668641396,1852795252,1919885356,1701344288,1734701856,1953391981,1734701600,1702130537,1930038642,1768121712,1684367718,544825888,1702043745,1852140903,1986994292,1769108069,221144420,1326058762,1881171310,1634234981,1847620464,1865248367,1869182562,1965060981,1713399155,1948283503,1377854824,1936287589,544367988,1835888483,543452769,1819635575,1700929636]},{"sector":5,"length":512,"data":[225408032,1852793610,1819243124,1701344288,1635021600,1852404850,1684086887,1936028260,1868963955,1752440946,1701716069,1411413112,1701011826,544370464,1668248144,543450469,1835888483,224685665,544825866,1684107116,543649385,1701716065,1635131511,543520108,1869901417,542327584,795111009,1226863215,1092628048,1629512814,1735290732,1701344288,1835103008,1768693861,745760110,1869482509,1651453294,1970235766,1937055859,1713402725,1948283503,1092642152,1835365235,543517794,543452769,1702129221,1868767346,1851878765,1998615396,1684829551,543515168,168652660,1702128737,1752440946,1852383333,1970435187,1869182051,1629516654,1865376878,1633951858,1713398132,1948283503,1881171304,1919381362,1646292321,1735289189,1650811936,1701275509,168636004,1750534669,1142976101,1196769861,1869770784,1936942435,1629516645,1634882592,539780451,1668248144,744777061,1734693408,1702130537,1864379506,1851072626,1702064993,1701601901,1836016416,1684955501,1762266412,1768169588,1634496627,1629516665,1835365235,544828514,1735287148,1701273973,1935747104,1936024608,1651077731,1629512805,1702260578,1868963881,1851859058,2036473977,1981834612,1702194273,1919879693,1902474016,1668179317,1718558821,1954112032,1635131493,1936029036,1634235424,1953046644,1667592736,1768843119,544433530,1629516641,1818326560,1763730537,1920234350,1769235317,221146735,1919895050,2037276960,1752461088,1646293605,543519865]},{"sector":6,"length":512,"data":[1970037110,1142959205,1196769861,1936286752,2036427888,1752440947,1111760997,1702064160,762274933,1953721961,1952675186,225341289,1819239946,1702326124,2036473956,1701344288,1954112032,1635131493,778401132,1111835680,1830831957,1713404257,543975777,1914728308,1735353189,1702521198,1646289184,543519865,1970037110,1628048741,1634738291,1864397938,543236198,1768710518,1852383332,1970435187,1869182051,1868963950,1851859058,1718558841,1701344288,1819239968,1769434988,1914726254,1869832549,221934446,537529610,1750343712,2036473957,1763730804,1634738291,1864397938,1851859046,1936615712,1668641396,1852795252,1634235424,1936269428,1701868320,1768319331,1869881443,1814061344,1919251553,538970637,1852139296,1952543333,544108393,540424312,1668248176,1869837157,168636018,538970637,1701336096,1936286752,1702064993,2037146221,1869770784,1936942435,1684628512,1953459744,1635021600,1629516914,1752440948,1768300645,544502642,1702132066,543584032,537529697,1635131424,543451500,1953721961,1952675186,778989417,168626701,1411391520,1646290280,543519865,1679848297,778138721,168626701,1702129486,1634235424,1162092660,658986306,1650532467,1953066089,1869881465,1702389024,1702131043,544104736,1953721961,1952675186,544108393,1919903272,1701344288,1634882592,168650083,543452769,1668248144,543450469,1835888483,1935961697,1868832809,1847620453,1679848559,1852141669,1852776548,1937008928]},{"sector":7,"length":512,"data":[1768055072,2037672300,544175136,1868785010,2053729895,1752440933,1762266469,1920234350,1769235317,221146735,1141509386,1196769861,1869572128,1948283755,1713399144,1869376623,1735289207,1953392928,1970434661,980644976,168626701,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1818322290,1685024045,538976357,538976288,1953460848,1702126437,1869426020,673211748,1229803588,805965097,1768169520,1701079414,544825888,1869768058,538976288,538976288,538976288,1629495328,2036430700,538976371,538976288,1629495328,2036430700,805965171,1769152561,1701603182,1702130477,538976368,538976288,538976288,538976288,1629495328,2036430700,538976371,538976288,1629495328,2036430700,805965171,1919033395,1886085477,1953393007,538976288,538976288,538976288,538976288,1629495328,2036430700,538976371,538976288,1629495328,2036430700,805965171,1852383286,1768710518,1886330980,1701080931,538976288,538976288,538976288,1126178848,1212372033,810831433,540097846,1629495328,2036430700,805965171,1953701955,543908705,1819631974,538976372,538976288,538976288,538976288,1126178848,1212372033,810831433,540097859,1629495328,2036430700,805965171,1701257284,1634887022,1919950956,1667593327,1852795252,1969317408,538997868,1126178848,1212372033,810831433,540097860,1629495328,2036430700,805965171,1634738245,1713399143,1953264993,538976288,538976288]},{"sector":8,"length":512,"data":[538976288,538976288,1847599136,1919252069,538976288,538976288,1629495328,2036430700,839519603,1919950898,1634887535,1702109293,1852403058,1869182049,538976366,538976288,1629495328,2036430700,538976371,538976288,1847599136,1919252069,168626701,1430406468,1634934855,544433526,543452769,1953719666,1936028271,1701344288,1869770784,1835102823,1126200103,1920233071,1127050351,1313417248,858923092,1629497704,168649838,1953067619,1818321769,1920099616,673215087,542395977,694694962,1953392928,1970434661,1981838448,1869898597,539784050,1987015280,1852400745,1868963943,1700929650,1919251572,1936263693,1952541807,544108393,2004116834,544105829,543516788,1969382756,1919248231,1684955424,1701344288,1869770784,1835102823,1768251936,1679845230,1735746149,778331495,168626701,1852139607,1679843616,1735746149,543450471,1735357040,544039282,1836213620,1952542313,539784037,1430406468,1769414727,1679846508,1819308905,1948285281,1696621928,544500088,1701080931,1651444237,1852399988,1713398885,544042866,542395977,543699250,1668183398,1852795252,1749300256,1750343726,1768431717,1646291047,543519865,1948283753,1696621928,544500088,1701869940,807930381,1919905341,745300333,1128083744,762081908,840969283,1769104189,1633905012,1919230060,745697138,1413296928,539578963,543452769,543516788,544698220,1702132066,544434464,224749684,1952805386,544109173,1701080931,218762542]},{"sector":9,"length":512,"data":[1111835658,542656341,1886418291,1937011311,1650811936,1768384373,1864394606,1346642022,1663060301,1852139884,1919950964,1634887535,539915117,1852139607,544106784,1953460848,1702126437,1869426020,168650084,543516788,1836020336,1663071344,1735287144,1713402725,544042866,1752392036,690825248,544175136,1752392040,543646068,539566888,1679847284,1953459813,1752440933,1346576485,1869422677,221144420,1225395466,1920234350,1769235317,1864396399,1634887024,225666158,757935370,757935405,757935405,757935405,757935405,1409944877,1763730792,1920234350,1769235317,1864396399,1634887024,544433262,543519329,543516788,1701470831,544437347,1998614127,1751345512,1701344288,1936615712,1668641396,1852795252,1864501773,1634887024,577987956,1866866734,1162092658,742872386,1701344288,1864394099,1667590754,1663071092,1646292577,1868767333,1635021678,745763950,1734701600,1702130537,539784050,168653423,1869440365,539916658,1701650497,2037542765,1701867296,1684955506,1701868320,1768319331,1948283749,1864394088,1702061670,1684086900,1936028260,1718558835,1701344288,1952539680,1869881441,1886325261,1952543333,1852776549,1867784238,1718182944,1701995878,1634301038,1830839668,1919905125,1886331001,1851880037,1713402724,544042866,1936617315,1953390964,1830825075,1919905125,1862929785,1634887024,544433262,1953723757,543515168,1818455653,1684370287,544106784,1635086707,1646290290,1801675122]}],[{"sector":1,"length":512,"data":[779318373,168626701,544370502,1768169569,1952671090,1835363616,544830063,1919250543,744779361,1701344288,1717989152,544499059,1919181921,544437093,1948280431,1679844712,543257697,168653673,1667592307,1701406313,1852383332,1701344288,1701867296,1684955506,1866866734,1851859058,1684957472,1667592809,1701650548,2037542765,1701867296,1684955506,1752440876,1718558821,1952805734,1684081165,1936028260,1718558835,1701344288,1952539680,1936269409,1818321696,1634497891,543450484,1914729569,1949134453,543518057,1852404597,1752440935,1868767333,1852142702,1864397684,1862929766,1864394094,2004099186,1701978223,1953720679,544436837,543452769,1864396385,1869182064,543973742,1886611812,1701011820,1953391981,1850286126,758526240,544500066,1701080931,1752440876,1913261413,1936287589,1936876916,1851876128,543515168,1633820769,1914725747,1936287589,544367988,542655016,1109422703,1864378704,1851859058,1684957472,1914730597,1936287589,544367988,541676328,1142977135,220997961,544370442,543518319,1696622191,778593121,1701336096,1819239968,1769434988,1696622446,1886216568,544433516,1970039913,1634890867,1948280180,1679844712,1701209705,1668179314,168653669,2004116834,544105829,1936617315,1953390964,1701867296,1684955506,1914711155,1936287589,544367988,1919250543,1935961697,1768169516,1952671090,1835363616,544830063,1919250543,1935961697,1628048684,1763730542,1919509614,544498533]},{"sector":2,"length":512,"data":[1869440365,1864399218,1634887024,980640878,168626701,1293951008,538990159,743981344,540028977,540745760,1702260557,1752440947,1635131493,543520108,540028977,1869901417,223887648,538976266,542527309,1480663072,542655020,991961120,1886339872,544433513,543516788,1970037110,1852383333,542655008,1092644724,537529688,1330454560,538976342,1529632833,1563439153,1126185760,1701408879,1752440947,1870078053,1629512818,1396973684,808464698,544175136,168646721,1293951008,538990159,743194912,726680155,540761394,1768976195,1948283749,1646290280,543519865,1394635873,1346517587,1948267051,1279336559,168626701,1243619360,538988621,808464672,538976288,540745760,1953719620,1952542313,544108393,1936090735,1763734629,808525939,537529648,1296703520,538976336,538990657,538976288,1142962976,1769239397,1769234798,1864396399,1702061670,1936269428,1701344288,1818326560,1763730805,1480663150,538970637,1347242528,1528832032,1563439153,538976288,1698963515,1852404851,1869182049,1718558830,1952805734,544434464,543516788,1685221239,544497952,825905988,168636464,1243619360,538988621,1480743712,538976349,540745760,1953719620,1952542313,544108393,1936090735,1763734629,1752440947,1870078053,1629512818,1396973684,223887930,538976266,542133578,1113268256,1563700056,991961120,1936016416,1634625908,1852795252,1717989152,544499059,1948283753,1998611816,543453807,1142977633]},{"sector":3,"length":512,"data":[1480735315,168637483,538970637,1310735136,544366949,1819042147,1870078067,1780509554,544502645,1701538156,1701344288,1836411424,1852383344,1970435187,1869182051,1629516654,1702260578,218762542,1111835658,1931495253,1702125940,1953391981,755633523,757935405,757935405,757935405,221064493,1768444938,1702043763,1869182051,1701060718,544435297,1752459639,1701344288,1635021600,1701668212,544437358,1952540788,1111835680,1914718037,1735353189,1702521198,1752637555,224750697,544106762,1702064993,2037146221,1685024032,168636005,1631914509,1931503715,1702125940,1953391981,1667460896,1701408885,543236211,1735289203,1814062444,778399337,1919895072,1667327264,1953701992,1835365473,745827941,1701344288,1919510048,168653939,1918986339,1702126433,1752440946,1763734625,1869488243,543236212,1667330163,1919885413,1948279072,1830838881,544502645,1629513058,1835365152,1819239273,1864396399,1752440946,1930038629,1953653108,543584032,1635131489,543451500,1953721961,1952675186,544108393,1835363949,1667853935,541138990,1768777075,1869377379,1629498478,1752440948,1953701989,544502369,168650351,1953701985,1835365473,544501349,1629516399,1752660334,543519333,1752459639,1629515369,1635021600,1701668212,539784302,1937072483,1142977381,1196769861,544175136,1869506409,168650098,543516788,1634559346,1701080681,1718558834,1701344288,1852402720,168636005,1933642253,1701998624,1970235766]},{"sector":4,"length":512,"data":[544828531,1702129518,1830825060,1919905125,1886331001,1851880037,1830843236,544502645,1696621922,1869374318,543450483,1931505257,1918989681,1919033445,1701536609,221148020,1225395466,1684086894,1769236836,1948282479,1752440943,1953046629,544435557,1635018084,1684368489,1868718368,539780470,1430406468,1953701959,1835365473,1937010277,1851876128,1668180256,1701082476,1752435213,1868963941,2003790956,979857001,168626701,1411391520,1126196584,1914721616,1936287589,544367988,1701667182,1864900723,1919248500,1634235424,1346969710,168639017,538976288,1480663072,542655008,1142970435,537529688,538976288,541868320,1109411905,1212293196,541868832,1142966339,1212424268,538970637,538976288,1109413971,537529680,538976288,541676320,168642884,538976288,1396908064,542328096,1394627396,218762579,538976266,543516756,1647129139,1126200425,1914721616,1936287589,544367988,1701667182,1864900723,1919248500,1634235424,1229267054,221915472,538976266,1159733280,1159747649,1159747650,1159747651,1159747652,1159745619,1159745602,1159743827,168642884,538976288,1397104672,223561504,537529610,1750343712,1870078053,544433266,1380009294,1919887392,692407840,1684955424,1380009504,1886330924,1852795252,2037148769,1819239968,1702326124,2036473956,1381257248,537529644,1752637472,543712105,543519329,1684370293,544175136,1919252079,1701079410,1701344288,1717920800,1953264993,1919903264]},{"sector":5,"length":512,"data":[1864397677,1752440934,1094918245,1629506636,1243636846,168644685,1763713056,1920234350,1769235317,779316847,1701336096,1717920800,1953264993,1919903264,1718558829,1243636000,1763725389,1920234350,1769235317,1663069807,1646292577,1752375397,745828975,538970637,1634037280,1864379506,1634082930,1679830130,1852141669,1735289188,544108320,543516788,1953719652,1952542313,778989417,1701336096,1717920800,1953264993,1919903264,1718558829,168648992,1126178848,541871169,1953721961,1952675186,544108393,544104803,1847616866,544366949,1713402479,539783777,1701864804,1852400750,1852776551,1701344288,1936024608,1634625908,1852795252,537529646,1867391008,1948280180,544498024,1430406468,1769414727,1679846508,1969317477,1948284012,1634082927,1852776562,1763735916,1752440934,1701060709,1852404851,1869182049,1936269422,538970637,1667592736,1768843119,1818386810,1935745125,1713398048,1629516385,1701995620,539784051,1667852407,1701650536,544435809,1952540788,544500000,1953723757,543515168,537529697,1868767264,1635021678,1864397934,1752440934,1868963941,1931505010,1701668709,1866101870,1702061670,1713905780,1696625263,1886216568,539780460,1347242530,808470048,1179007536,690106438,537529646,1716068384,1701344288,1936024608,1634625908,1852795252,544434464,1667592307,1701406313,2036473956,1830838560,1919905125,1886331001,1851880037,1713905764,1696625263,1886216568,221013356,538976266]},{"sector":6,"length":512,"data":[1347242530,828055584,576532528,1142959145,1196769861,1818851104,1701060716,1819631974,1869881460,1634037280,1411395186,1864394088,1869182064,543973742,542266448,225665384,538976266,1696624494,1667589734,1852776564,1701344288,1936941344,1818389861,1919950969,1936024431,168636019,538970637,1701336096,1919907616,1109422948,541414489,544370472,539580738,543452769,1146244951,1919887392,693065504,1684955424,1331119136,673203282,1142977135,220997975,538976266,1769238639,1818324591,1713404268,1869376623,543450487,1344305506,539775572,1667852407,1918967912,1937055845,1948279909,1886593135,1718182757,1752440953,2037653605,1713399152,168653423,1830821920,1919905125,1633951865,539910516,544370502,1953721961,1952675186,1936617321,1634235424,1635000436,1948280171,1864396663,1634887024,745759854,1111835680,1998604117,225209449,538976266,1970500449,1948280173,544498024,543516788,1701869940,1919903264,1701344288,1952539680,1886593121,1718182757,543450473,1629518178,1835363616,544830063,1919250543,543452769,1668571501,225666408,538976266,543516788,1701869940,1919903264,1701344288,1752461088,1864397413,1634887024,539911278,544370502,1953721961,1952675186,1936617321,1634235424,1635000436,1864394091,1864394094,1634887024,221013102,538976266,543516788,1701869940,1937075488,1700929652,1701868320,1768319331,539911269,543516756,1769238639,1818324591,1381257248,1935763488]},{"sector":7,"length":512,"data":[544173600,1701209701,1864397923,537529710,1752440864,1935745125,1651336563,1881176428,1701015410,221148019,537529610,1866866720,1818632306,1769234799,1881171822,1953393007,1668312864,1936024687,1752440876,543519333,1936291941,540221556,1768186977,1852795252,1830841441,1919905125,2037653625,745760112,538970637,1330398752,673207361,1176531567,539765068,1112887108,673203532,1142977135,1629497679,1411409006,1163155778,1919887392,692212768,537529658,538976288,1279664160,1176510532,1413566284,808540960,168647984,538976288,1176510496,542135379,1112887108,1528841548,1563439153,538970637,538976288,1414743584,1112809552,541414489,808464731,218762589,538976266,543516756,790643268,542589984,1145315375,1702064160,762274933,1953721961,1952675186,1936617321,1752637484,543712105,543519329,1684370293,544175136,1702064993,1701601901,538970637,1954112032,539959397,1685221239,1679830816,1651865455,1870095724,1981834354,1702194273,1411395187,1702061416,1702064160,762274933,1953721961,1952675186,1936617321,1701994784,538970637,1919905312,1819042157,1937055865,1948279909,1702043759,1935745140,543515753,1667330163,1868963941,1851859058,1852383332,1634301033,1702521196,1952539680,1411395169,544826728,225337699,538976266,1869835361,543515168,1684370293,544175136,1953397107,1769170280,1763730810,1920234350,1769235317,544435823,1952540788,1111835680,1663059797,1869508193]},{"sector":8,"length":512,"data":[1935745140,1651336563,221144428,538976266,1702129486,1634235424,1162092660,541545794,1819044215,1953459744,1819042080,1629517679,1634890784,1852402793,1868767335,1852140909,1852776564,1701344288,1835103008,1768693861,168650094,1629495328,1852776563,1718558821,1701344288,1881171315,1685415283,1852386671,1970435187,1869182051,221148014,537529610,1750343712,1936728165,1868854629,1936615725,1668641396,1852795252,1380917363,1936269383,1702065440,1869881444,1952805664,1701344288,1635021600,1852404850,1684086887,1936028260,1868963955,1752440946,537529701,1935745056,1651336563,1864399212,1852383334,1970435187,1869182051,221148014,537529610,1162092576,541545794,1667590243,1713402731,1696625263,1919906418,1935745139,544500000,1702064993,1701601901,1634017395,1931503715,1702125940,1953391981,1716068398,544104736,1869771365,537529714,1936269344,1952801824,1702126437,1142959204,1196769861,1869902624,1629516656,1835365235,1852402786,1752440935,1953701989,1835365473,544501349,543452769,1886611812,1937334636,538970637,543040032,1869771333,1864376946,1752440942,1768693861,1713399150,1869376623,1735289207,1701344288,1635021600,1701668212,539915374,543516756,1769172848,1852795252,543584032,224749684,538976266,1701994851,1852383348,1633904996,544433524,543516788,1633906540,1852795252,544106784,543516788,1952543859,1852140901,1752637556,543519333,1430406468,1701060679,1952671092]},{"sector":9,"length":512,"data":[168649829,1948262432,1696621928,1919906418,218762542,1769166090,1881171822,543516513,1885957222,1735289200,757926413,757935405,757935405,757935405,757935405,1225395501,1162092646,541545794,1931506537,1953653108,1998611557,543716457,543516788,1864386095,1869182064,1752440942,1881173605,543516513,1885957222,1735289200,544434464,1684370293,1141509422,1196769861,1818851104,1920409708,543519849,543976545,1763731055,1864397684,1970304117,1869881460,1684633120,1881173861,543516513,1752637489,543517801,1735357040,225272178,1953853194,544503152,1819044215,543515168,1953067639,544105844,1981837172,1868915817,1734438944,774905957,1852396320,1830839651,544502639,1735357040,1936548210,1702065440,1701344288,1969424909,1852142194,1768169588,1634496627,1634738297,1864394087,1852383346,1701344288,1935762208,1718558821,1819633184,1919120236,544105829,1735357040,1936548210,1634738220,807429479,1752435213,1998615401,543976553,1885693291,1111835680,1931954005,1953853216,544503152,1634755955,1702125938,1869768224,1752440941,1864397921,1752440934,1701060709,1734833506,168649829,1735357040,778920306,1702057248,1701344288,1663063584,1634561391,1948279918,1769349231,1948284773,1881171304,1919381362,1864396129,1970304117,168636020,1702129486,1734438944,1818632293,1768976489,1864394606,544828526,1802661751,1852383347,1635021600,1918985326,1868767332,544370540,1954047348,1685024032]}]],[[{"sector":1,"length":512,"data":[673215333,691219760,218762542,1111835658,1931495253,1885958755,168653684,757935405,757935405,757935405,1107954989,1969316709,1142973811,1196769861,1702065440,1752440947,1953701989,1633971809,1763730546,1953853550,1684955424,1953853216,544503152,1769366884,745760099,1684955424,1667588640,1702065505,1752435213,543519589,1769366884,544433507,544104803,1914725730,1919509605,1702126437,1142959204,1196769861,1851876128,543515168,1701077357,544175136,1970302569,1919295604,168652143,795111009,1864397423,1970304117,1869881460,1948279072,544503909,1701603686,1750343726,1830843241,1936026465,544500000,1936945008,1701601897,544175136,1667329136,1162092645,222778690,1836016394,1684955501,1851859059,1953701988,1835365473,1937010277,544106784,1702109281,1713403000,744844393,1931501856,1633889647,1684368492,1111835680,1931495253,1885958755,1629498484,168649838,1835169139,1948284009,1713399144,543517801,1142976372,1196769861,1919903264,1869770784,1936942435,778530409,168626701,221064493,1309281546,1095715872,777275716,223631444,1411403274,544434536,1629516649,1111835680,1931495253,1885958755,1752440948,1998615649,543976553,2037411683,1330594336,1146045268,1229073989,1309281614,544175136,543516788,1936877926,1702043764,1919906915,543584032,1986622052,776020069,1953451552,1752440933,1948284001,544434536,1819044215,541985293,1802661751,1819176736,1718165625,1701344288]},{"sector":2,"length":512,"data":[542330656,1868785010,2053729895,1948283749,1679844712,1701540713,543519860,168653665,1634213966,1735289206,1981833504,1684630625,1919903264,779379053,541985293,1414483778,1162104643,1313423918,541854221,221261873,824203018,807415856,824193056,223414797,755633418,168635693,540740109,1163280723,777142861,223631444,1411398410,544434536,1629516649,1111835680,1931495253,1885958755,1752440948,1998615649,543976553,1702257011,1701344288,1380076832,544175136,543516788,1701603686,1380076832,1313423918,224463373,1987013898,746087456,168636472,544632685,824997987,1869416973,2019696758,808464940,1869416973,2019631222,825242156,1852377613,858857588,1852377613,221454452,1728711946,544344589,168654946,1913261360,225993504,808464906,544082445,779248237,225339746,840988426,168636464,218762609,757935370,168626701,1498619963,1380013651,1481911891,990514516,1768444960,1936269427,1142972704,1196769861,1919120160,544501865,1952540788,1818851104,1969496172,1948282989,1142973800,891310927,1498619947,1380013651,1635000403,778398818,540740109,1702129486,1950949434,1818851104,1869488236,1870078068,1763732338,1397563502,1397703725,544370464,1142965072,1142969167,1196769861,1628048686,1869416973,1751195766,221394220,1953392906,221327904,1935961098,745108256,1530557285,875264098,1812598109,1931506532,1936010345,2019711802,1563832619,1869482509,218762608,824207114]},{"sector":3,"length":512,"pattern":0,"data":[168637488,1346641979,1953505346,1394617458,1881166918,539783796,1129270339,1881154635,539783796,542003011,225604720,543450122,1647997797,829169784,990514480,1718968864,544367974,1702521203,2003044877,221408288,1646279434,1701209717,1881174898,539783796,542327875,745698416,1111705120,1413894957,1920233504,1684277773,224619552,1176517386,1797276227,544236901,1853189987,1678380404,845946999,540740109,1970561889,1679846497,1702259058,1814047859,1667852143,1679846497,1702259058,1678380403,845946978,540740109,541873486,1769366884,1746953571,1701077349,1678380402,829169762,1946815794,540740109,223626835,543450122,1933210468,879501417,2003044877,221408288,543319050,224539500,543319050,224539500,543319050,224539500,543319050,224539500,543319050,224539500,168653834,1145249851,1678380371,980640800,1814063475,168638517,896278628,1678380344,943025184,543427085,221787500,1814062090,168638517,218762609,757935370,2573]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"data":[758843917,1411394861,544434536,1701603686,1935767328,1852139296,1952543333,1646290021,1802313849,1818386804,1697543013,221144440,990514442,539831597,1919250511,543452769,1701869940,1936288800,221148020,757938954,1750343725,1998616933,543519333,1684104562,1869768224,1768300653,1226859884,1381258062,1497713454,218762542,1819307786,1937011561,1650551840,1646292069,224752761,1886325002,1983580524,543451503,1868963885,1852383346,1970435187,1869182051,1998615406,1869116521,1864397941,1634887024,225666158,1886325002,1347362924,1280065887,1599098667,539777089,1096765519,1328237644,1296654160,540745805,1031300201,1864379441,1144877926,151653736,543977583,1096765519,1328237644,1297243984,1347362860,1280065887,1599098667,541936969,1684611131,741490040,1936092960,1747988797,1862863373,1327524976,909205328,1328230963,1297243984,1347362860,1296910687,990459987,2019846432,539767613,1030973039,224932657,1886325002,1347362924,1280065887,1599098667,539774290,1096765519,1328237644,156393296,1684611131,741621112,1936092960,1748382013,1862863373,1327524976,1279352656,1347365708,539775583,1096765519,1328237644,1297243984,1763719945,893220964,1718558764,959528307,151653736,543977583,828330063,1347365686,743264863,1599098656,1328231985,156393296,1684611131,741752184,1936092960,1749233981,1862863373,1327524976,909205328,1328230963,743595856,1599098656,842217009,1599098667]},{"sector":6,"length":512,"data":[540739917,1031300201,1864379447,826110822,168650822,1819307785,1599098656,842217009,1599098667,1327508562,909205328,1328230963,1297243984,1763719968,943552612,1718558764,842153331,151653736,543977583,861884495,1347365682,1096766047,990463044,2019846432,539769149,1030973039,224933170,1886325002,1347362924,859189599,1347365682,743264863,1599098656,842217009,1599098667,540745810,1031300201,539766833,1030973039,224933682,1886325002,1347362924,859189599,1347365682,743264863,1599098656,944590153,1763719945,826112100,1864379441,842888038,168650817,1819307785,1599098656,827082066,154284854,1684611131,842087800,1718558764,1144143219,151653736,543977583,1180651599,1296650817,540739917,1031300201,539767601,1030973039,224937522,1886325002,1347362924,1380009567,156058957,1684611131,875642232,1718558764,825441651,151653736,543977583,1298092111,990458934,2019846432,741683517,1936092960,1748185917,1862863373,1327524976,1279352656,1347365708,156062303,1684611131,909196664,1718558764,892550515,151653736,543977583,828330063,724710198,1381978191,1145323871,1763719945,826112100,1864379447,859665254,168650807,1819307785,1599098656,1328231985,1296654160,1327508557,1296654160,990459981,2019846432,741880125,1936092960,1748579133,1862863373,1327524976,1179475792,1413566284,1763719945,826112100,1864379449,859665254,168650819,1819307785,1599098656,1431258189]},{"sector":7,"length":512,"data":[155536450,1684611131,808598904,1718558764,1160985971,151653736,543977583,1398755407,1327508564,1414750032,540739913,1031300201,539767090,1030973039,224931892,1886325002,1347362924,1230263135,1347362860,156521311,1684611131,842153336,1718558764,859061619,151653736,543977583,828330063,743131203,1599098656,743003219,1599098656,990467155,2019846432,741552701,1936092960,1748382781,1862863373,1327524976,842227536,1599098667,540739917,1031300201,539767858,1030973039,224936244,1886325002,1347362924,724971871,1298092111,1763719945,842889316,1864379445,876442470,168650819,1819307785,1599098656,154155085,1684611131,909262200,1718558764,1161051507,151653736,543977583,1398755407,990464340,2019846432,741814845,1936092960,1747989821,1862863373,1327524976,1127309136,539773768,1398755407,990464340,2019846432,741880381,1936092960,1748120893,1862863373,1327524976,1481465680,540739928,1031300201,539769138,1030973039,224933173,1886325002,1347362924,724971871,1096765519,540745816,1031300201,539766835,1030973039,224933685,1886325002,1347362924,859189599,1347365682,539775583,828330063,724710198,1381978191,1327508557,1296654160,154686285,1684611131,825441656,1718558764,959790451,151653736,543977583,828330063,724710198,1381978191,1146047839,1347362860,859189599,1347365682,539775583,1230983247,944983373,1763719945,859666532,1864379442,893219686,168650820]},{"sector":8,"length":512,"data":[1819307785,1599098656,842217009,1599098667,1327508562,909205328,1328230963,1297243984,1347362860,859189599,1347365682,1296910687,1763719968,859666532,1864379443,909996902,168650801,1819307785,1599098656,842217009,1599098667,1330470738,1327508548,909205328,1328230963,743595856,1599098656,842217009,1599098667,156061001,1684611131,875773304,1718558764,892747123,151653736,543977583,1096765519,1328237644,1480679248,1347362860,1296910687,540739896,1031300201,539768115,1030973039,224934198,1886325002,1347362924,1280065887,1599098667,539777089,1147097167,540745816,1031300201,539768371,1030973039,224936758,1886325002,1347362924,990458719,2019846432,741815101,1936092960,1749431869,1862863373,1327524976,1296654160,990459981,2019846432,741880637,1936092960,1748055869,1862863373,1327524976,1163026256,990459980,2019846432,741946173,1936092960,1748186941,1862863373,1327524976,909205328,1328230963,1297243984,1763719945,876443748,1864379440,926774118,168650805,1819307785,1599098656,1328231985,1297243984,1763719968,876443748,1864379441,926774118,168650807,1819307785,1599098656,842217009,1599098667,539774290,1398755407,1163020101,540739911,1031300201,539767348,1030973039,224934199,1886325002,1347362924,1195725663,742868306,1599098656,842217009,1599098667,990465362,2019846432,741553213,1936092960,1749235517,1862863373,1327524976,1279352656,1347365708,743981407]},{"sector":9,"length":512,"data":[1599098656,726420545,1298092111,1397114447,1763719945,876443748,1864379444,926774118,168650822,1819307785,1599098656,726420545,1298092111,1397114447,1347362860,1280065887,1599098667,990468161,2019846432,741684285,1936092960,1748121661,1862863373,1327524976,725114704,1381978191,1145323871,1347362860,1328232543,1296654160,540739917,1031300201,539768372,1030973039,224933176,1886325002,1347362924,859189599,1347365682,1096766047,539771972,828330063,724710198,1230983247,990465357,2019846432,741815357,1936092960,1748514877,1862863373,1327524976,909205328,1328230963,743595856,1599098656,1397704787,539777609,945770575,1599098667,991972690,2019846432,741880893,1936092960,1749170237,1862863373,1327524976,909205328,1328230963,743595856,1599098656,1397704787,539777609,828330063,1347365686,156062303,1684611131,959724920,1718558764,1178090867,151653736,543977583,1230983247,741887309,1599098656,726420545,1096765519,540739928,1031300201,539766837,1030973039,224932665,1886325002,1347362924,743982175,1599098656,726420545,1096765519,540745816,1031300201,539767093,1030973039,224933433,1886325002,1347362924,859189599,1347365682,990465375,2019846432,741487933,1936092960,1748580669,1862863373,1327524976,909205328,1328230963,1296654160,540739917,1031300201,539767605,1030973039,224936505,1886325002,1347362924,1296910687,990459987,2019846432,741619005,1936092960]}],[{"sector":1,"length":512,"data":[1749301565,1862863373,1327524976,1279352656,1347365708,743264863,1599098656,540739889,1031300201,539768117,1030973039,224937529,1886325002,1347362924,1280065887,1599098667,539774290,1130319951,540745804,1031300201,539768373,1030973039,224932417,1886325002,1347362924,1280065887,1599098667,539774290,1230983247,154684749,1684611131,926236024,1718558764,893468019,151653736,543977583,828330063,1347365686,1296910687,1763719945,893220964,1864379448,1094546278,168650808,1819307785,1599098656,1347365688,156062303,1684611131,959790456,1718558764,1094794611,151653736,543977583,828330063,724710198,1381978191,1327508557,909205328,1328230963,743595856,1599098656,944590153,1763719945,909998180,1864379440,1094546278,168650819,1819307785,1599098656,842217009,1599098667,539774290,828330063,724710198,1381978191,1347362860,155992927,1684611131,825638264,1718558764,809647475,151653736,543977583,828330063,724710198,1096765519,1327508568,909205328,1328230963,1599233872,155468865,1684611131,842415480,1718558764,876756339,151653736,543977583,828330063,724710198,1381978191,1145323871,1347362860,859189599,1347365682,156778847,1684611131,859192696,1718558764,927087987,151653736,543977583,1163874383,540739923,1031300201,539767862,1030973039,224936258,1886325002,1347362924,156451679,1684611131,892747128,1718558764,1128414579,151653736,543977583,1398755407]},{"sector":2,"length":512,"data":[540739923,1031300201,539768374,1030973039,224937282,1886325002,1347362924,156451935,1684611131,926301560,1718558764,809713011,151653736,543977583,1180651599,540739923,1031300201,539768886,1030973039,224932419,1886325002,1347362924,156452703,1684611131,959855992,1718558764,876821875,151653736,543977583,861884495,1347365682,1298092639,539771983,1130319951,540739922,1031300201,539766839,1030973039,224933443,1886325002,1347362924,743588703,1599098656,1328230963,1599233872,155471693,1684611131,825703800,1718558764,960707955,151653736,543977583,861884495,1347365682,1298092639,539771983,1147097167,540739922,1031300201,539767351,1030973039,224936771,1886325002,1347362924,743588959,1599098656,1328230963,1599233872,155471693,1684611131,859258232,1718558764,1178811763,151653736,543977583,861884495,1347365682,1298092639,539771983,1415532623,540739922,1031300201,539767863,1030973039,224932420,1886325002,1347362924,743593055,1599098656,1328230963,1599233872,155471693,1684611131,892812664,1718558764,893664627,1762266472,1296900198,1347769176,151653712,543977583,1298092111,539777101,861884495,1347365682,223171167,1886325002,1347362924,724710239,1381978191,1327508557,1296916304,151653720,543977583,1298092111,539777101,912216143,1347365684,223171167,1886325002,1347362924,724842079,1381978191,1327508557,1296916304,1695157592,1718183022,168626701]},{"sector":3,"length":512,"data":[1296913217,1158235215,1864389969,2019846512,168626701,757935419,1936933152,1818389861,540701285,1635017060,544108320,1970238055,221148016,757938954,1716068397,1114196000,543519865,807419197,1763716145,544417652,807542881,1919954246,2020173413,1919361058,779122031,168626701,1869768545,544436341,1700946284,1870078060,168649842,544695305,1748187184,221264672,2003044618,808988704,825958504,1678313997,1110515831,991979585,151653682,807434084,543704646,168637243,544695305,1748452145,221526816,2003044618,1162227744,893067368,1678313997,1177559159,991979574,151653686,824211300,543699248,168638267,544695305,1747988529,221788960,2003044618,910372896,960176232,1678313997,942678135,991979590,168636465,544695305,1747993648,825309984,1678313997,1144004727,991979570,168636977,544695305,1747993392,858864416,168626701,757935419,1936280608,1718558836,1936941344,1818389861,1830842981,1869440366,1935894894,1684955424,1952539680,168636001,757935419,1918989856,1953390953,824210215,1918967854,1701672295,673215598,975790397,758843917,538979629,543582496,540811361,808548400,1864383024,1646290286,543519865,1868787823,221144420,757938954,538976301,1629513321,540884512,808548400,640032816,1008754976,846737440,540684336,544175988,1702132066,1177559584,1886334242,1701080931,990514478,539831597,1718165536,1042309408,2016419901,540028978,1629496870]},{"sector":4,"length":512,"data":[807418912,808727160,1885741114,1936615712,1668641396,1852795252,990514478,539831597,1718165536,1042309408,2016419901,976237618,1717924384,544436837,1629515636,1970238055,1528853360,1919115629,1195450479,690507858,544434464,1684370293,168635997,757935419,1918989856,1953390953,840987431,1918967854,1701672295,1763734638,1852383347,544761188,1869901417,1920098592,1864399201,1684957552,221149285,1829375242,1936288878,1634476148,543974754,1702132066,1829308941,1092642158,991969601,1936092960,224931901,1981810954,1634300513,807433326,745027379,168636448,1852121097,1918989924,1953390953,1829308941,1092642158,539771969,1598903105,156778817,1718558779,1748188531,537463309,1769103734,544501345,1748329520,942874668,537463309,1986293349,1634300513,168653934,1701735689,1296122144,1396777004,1094803277,540739928,1030973039,168650807,1635131401,1851877746,1680875636,539781172,168638515,1852121097,1918989924,1953390953,1829308941,1092642158,991974209,1936092960,224936509,1981810954,1634300513,807433326,745039411,168636448,1852121097,1918989924,1953390953,1829308941,1092642158,991970116,1936092960,224937277,1981810954,1634300513,1092645998,676352583,691153968,741548076,1297301792,1129270367,1279410507,151653701,1918989856,1953390953,875638816,824192104,537463309,1769103734,544501345,1347569473,841756968,840969257,1396777004,1330405197,1111575363,168641868]},{"sector":5,"length":512,"data":[1635131401,1851877746,825237620,539781168,1092627508,1281314131,1095451471,222645314,1981810954,1634300513,807433326,745026097,168637728,1852121097,1918989924,1953390953,1829308941,1092642158,991970372,1936092960,1749233981,537463309,1769103734,544501345,1347569473,808202280,857746473,1396777004,1330405197,1111575363,168641868,1635131401,1851877746,808460404,539781172,151653681,1918989856,1953390953,1380401440,741419088,539765040,1092627506,1281314131,1095451471,222645314,1981810954,1634300513,807433326,745025584,539767840,1598903105,1262702412,1162625601,537463309,1769103734,544501345,1748119600,221585452,1696598282,1635148910,1851877746,151653748,543518317,541347393,1718558779,1093811571,151653736,1918989856,1953390953,1380401440,741353552,539765044,1092627507,1281314131,1095451471,222645314,1981810954,1634300513,807433326,745026610,168636704,1635131401,1851877746,1195450484,824725586,740897836,539767328,1598903105,1262702412,1162625601,537463309,1769103734,544501345,1747989040,741613612,1297301792,1129270367,1279410507,151653701,1918989856,1953390953,842149920,891300968,537463309,1986293349,1634300513,168653934,1701735689,1347567904,540739916,1030973039,224933939,1981810954,1634300513,807433326,745026358,539768352,1396777004,1095589709,221399107,1696598282,1635148910,1851877746,151653748,543518317,1314213698,540739908,1030973039]},{"sector":6,"length":512,"data":[224936755,1981810954,1634300513,807433326,745026102,539768608,1396777004,1095589709,221333571,1696598282,1635148910,1851877746,151653748,543518317,541479746,1718558779,808729971,151653736,1918989856,1953390953,1667379488,941632616,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1396842597,540745810,1030973039,224932916,1981810954,1634300513,824210542,745038946,539768864,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,1096241986,1092627536,1147096403,990458419,1936092960,1748513853,537463309,1769103734,544501345,1748525873,741941292,1092627488,1298091347,877151041,537463309,1986293349,1634300513,168653934,1701735689,156516896,1718558779,1144274291,151653736,1918989856,1953390953,862007584,824192104,740305968,1297301792,1128353119,168637256,1635131401,1851877746,1195450484,841502802,740897836,741421344,1092627488,1298091347,860373825,537463309,1986293349,1634300513,168653934,1701735689,1129595424,1864383264,893219686,168650804,1635131401,1851877746,1647386740,539781218,539766833,1598903105,1262702412,1162625601,1396777004,1095589709,221464643,1981810954,1634300513,1092645998,676352583,691481650,825303084,1396777004,1330405197,1111575363,539772236,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1413619813,540745810,1030973039,224937013]},{"sector":7,"length":512,"data":[1981810954,1634300513,824210542,745026402,741355808,1297301792,1129270367,1279410507,1092627525,1298091347,860373825,537463309,1769103734,544501345,1347569473,908866088,824192041,1092627505,1281314131,1095451471,742739010,1297301792,1128353119,168637256,1852121097,1918989924,1953390953,1829308941,1109419374,991974228,1936092960,1748383293,537463309,1769103734,544501345,1751277873,808525868,1396777004,1330405197,1111575363,539772236,1598903105,1212367181,151653683,1918989856,1953390953,1380401440,741484624,539765045,539767089,1598903105,1262702412,1162625601,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,1280065859,1864383241,909996902,168650822,1635131401,1851877746,1697652852,539781176,168636977,1635131401,1851877746,1195450484,858280018,740897324,221262880,1981810954,1634300513,1092645998,676352583,691219507,875634732,537463309,1769103734,544501345,1751202096,858857516,537463309,1986293349,1634300513,168653934,1701735689,1463960352,1396777004,826564429,540739894,1030973039,224933943,1852639498,1464016997,539772228,1598903105,154284868,1718558779,959921523,151653736,1918989856,1953390953,943271968,807414888,537463309,1986293349,1634300513,168653934,1701735689,1129071392,1864383264,926774118,168650820,1635131401,1851877746,1714430068,539781176,151653680,1684956448,1769103734,225734241,1852639498]},{"sector":8,"length":512,"data":[1279467621,540745796,1030973039,224931896,1981810954,1634300513,807433326,745038694,168636448,1852121097,1918989924,1953390953,1829308941,1126196590,991971660,1936092960,1748187197,537463309,1769103734,544501345,1751213616,221257772,1696598282,1635148910,1851877746,151653748,543518317,1398033475,1864383241,943551334,168650806,1635131401,1851877746,808525940,539781174,740305968,1297301792,1128353119,168637000,1852121097,1918989924,1953390953,1829308941,1126196590,991970125,1936092960,1749104701,537463309,1769103734,544501345,1748330032,221257772,1696598282,1635148910,1851877746,151653748,543518317,1448037699,540739905,1030973039,224937016,1981810954,1634300513,824210542,745027380,539768864,1396777004,1095589709,221661251,1696598282,1635148910,1851877746,151653748,543518317,1448037699,990463297,1936092960,1748056381,537463309,1769103734,544501345,1748186161,741875756,1092627488,1298091347,910705473,537463309,1986293349,1634300513,168653934,1701735689,1330463520,990462550,1936092960,1748318525,537463309,1769103734,544501345,1748120625,741875756,1092627488,1298091347,910705473,537463309,1986293349,1634300513,168653934,1701735689,1330463520,155533910,1718558779,960052595,151653736,1918989856,1953390953,909390112,941632616,539762732,1598903105,1212367181,151653686,1684956448,1769103734,225734241,1852639498,1296244837,155407951,1718558779]},{"sector":9,"length":512,"data":[1144601971,151653736,1918989856,1953390953,842281248,941632616,539762732,1598903105,1212367181,151653686,1684956448,1769103734,225734241,1852639498,1296244837,155539023,1718558779,826359155,151653736,1918989856,1953390953,875835680,941632616,539762732,1598903105,1212367181,151653686,1684956448,1769103734,225734241,1852639498,1296244837,155670095,1718558779,893468019,151653736,1918989856,1953390953,1714696480,941632616,539762732,1598903105,1212367181,151653686,1684956448,1769103734,225734241,1852639498,1296244837,1162303055,1864383241,1094546278,168650809,1635131401,1851877746,875634804,539781220,740305976,1297301792,1128353119,168638024,1852121097,1918989924,1953390953,1829308941,1126196590,1280724813,1864383241,1094546278,168650820,1635131401,1851877746,875634804,539781219,740305976,1297301792,1128353119,168638024,1852121097,1918989924,1953390953,1829308941,1126196590,1280724813,540739909,1030973039,224932162,1981810954,1634300513,824210542,745039156,539768864,1396777004,1095589709,221661251,1696598282,1635148910,1851877746,151653748,543518317,1448037699,990462286,1936092960,1748320829,537463309,1769103734,544501345,1748382769,741875756,1092627488,1298091347,910705473,537463309,1986293349,1634300513,168653934,1701735689,1330463520,1161907798,1864383241,1111323494,168650809,1635131401,1851877746,875634804,539781170,740305976,1297301792]}]],[[{"sector":1,"length":512,"data":[1128353119,168638024,1852121097,1918989924,1953390953,1829308941,1126196590,1314279245,540739906,1030973039,224937026,1981810954,1634300513,824210542,745026356,539768864,1396777004,1095589709,221661251,1696598282,1635148910,1851877746,151653748,543518317,1448037699,155533902,1718558779,826490227,151653736,1918989856,1953390953,926167328,941632616,539762732,1598903105,1212367181,151653686,1684956448,1769103734,225734241,1852639498,1296244837,1129207375,1864383241,1128100710,168650805,1635131401,1851877746,875634804,539781171,740305976,1297301792,1128353119,168638024,1852121097,1918989924,1953390953,1829308941,1126196590,1314279245,540739909,1030973039,224934211,1981810954,1634300513,824210542,745026868,539768864,1396777004,1095589709,221661251,1696598282,1635148910,1851877746,151653748,543518317,1448037699,990463822,1936092960,1749304125,537463309,1769103734,544501345,1751462961,741875756,1092627488,1298091347,910705473,537463309,1986293349,1634300513,168653934,1701735689,1330463520,1162301014,1864383241,1144877926,168650801,1635131401,1851877746,875634804,539781219,740305976,1297301792,1128353119,168638024,1852121097,1918989924,1953390953,1829308941,1126196590,1314279245,540739916,1030973039,224933188,1981810954,1634300513,824210542,745038900,539768864,1396777004,1095589709,221661251,1696598282,1635148910,1851877746,151653748,543518317]},{"sector":2,"length":512,"data":[1448037699,155536462,1718558779,960773491,151653736,1918989856,1953390953,1714696480,941632616,539762732,1598903105,1212367181,151653686,1684956448,1769103734,225734241,1852639498,1296244837,1330533967,1864383241,1144877926,168650820,1635131401,1851877746,875634804,539781169,740305976,1297301792,1128353119,168638024,1852121097,1918989924,1953390953,1829308941,1126196590,1314279245,540739920,1030973039,224932165,1981810954,1634300513,824210542,745038388,539768864,1396777004,1095589709,221661251,1696598282,1635148910,1851877746,151653748,543518317,1448037699,990466894,1936092960,1748321597,537463309,1769103734,544501345,1748579377,741875756,1092627488,1298091347,910705473,537463309,1986293349,1634300513,168653934,1701735689,1330463520,156913238,1718558779,960839027,151653736,1918989856,1953390953,892612896,941632616,539762732,1598903105,1212367181,151653686,1684956448,1769103734,225734241,1852639498,1296244837,156194383,1718558779,1145388403,151653736,1918989856,1953390953,808726816,941632616,539762732,1598903105,1212367181,151653686,1684956448,1769103734,225734241,1852639498,1296244837,156259919,1718558779,826686835,151653736,1918989856,1953390953,1630810400,941632616,539762732,1598903105,1212367181,151653686,1684956448,1769103734,225734241,1852639498,1296244837,1162892879,1864383241,1178432358,168650805,1635131401,1851877746,875634804]},{"sector":3,"length":512,"data":[539781217,740305976,1297301792,1128353119,168638024,1852121097,1918989924,1953390953,1829308941,1126196590,1347833677,540739919,1030973039,224934214,1981810954,1634300513,824210542,745038388,539768864,1396777004,1095589709,221661251,1696598282,1635148910,1851877746,151653748,543518317,1448037699,540739923,1030973039,224937030,1981810954,1634300513,824210542,745027636,539768864,1396777004,1095589709,221661251,1696598282,1635148910,1851877746,151653748,543518317,1448037699,540739930,1030973039,1748054065,537463309,1769103734,544501345,1748251697,741875756,1092627488,1298091347,910705473,537463309,1986293349,1634300513,168653934,1701735689,1347240736,1864383264,826110822,224933168,1981810954,1634300513,1092645998,676352583,691481648,221454380,1981810954,1634300513,807433326,745038643,168636704,1635131401,1851877746,1195450484,824725586,740898604,168636960,1635131401,1851877746,858792052,539781176,151653684,1918989856,1953390953,1630744608,891300968,537463309,1986293349,1634300513,168653934,1701735689,1347240736,990462547,1936092960,808530237,151653736,1918989856,1953390953,912338976,807414888,537463309,1986293349,1634300513,168653934,1701735689,1347240736,539776851,1598903105,154546500,1718558779,825310579,168650803,1701735689,1347240736,539771987,1598903105,154284868,1718558779,825310579,168650804,1635131401,1851877746,1630543988]},{"sector":4,"length":512,"data":[539781175,151653680,1684956448,1769103734,225734241,1852639498,1296244837,1212373072,540739911,1030973039,1748513073,537463309,1769103734,544501345,1748001329,741613612,1297301792,1129270367,1279410507,1092627525,1298091347,877151041,537463309,1986293349,1634300513,168653934,1701735689,1347240736,1195918168,990462520,1936092960,1144074557,151653736,1918989856,1953390953,1380401440,741615696,539765041,539768113,1396777004,1095589709,221595715,1696598282,1635148910,1851877746,151653748,543518317,1230327875,540739908,1030973039,1748054577,537463309,1769103734,544501345,1748132145,741351468,1092627488,1298091347,893928257,537463309,1986293349,1634300513,168653934,1701735689,1146569504,1396777004,826564429,540739894,1030973039,1748316721,1829308941,1126196590,539775300,1598903105,154284868,1718558779,842087795,168650806,1635131401,1851877746,959455348,539781177,151653680,1684956448,1769103734,225734241,1852639498,1094983781,540745793,1030973039,1749103153,537463309,1769103734,544501345,1748447792,221257772,1696598282,1635148910,1851877746,151653748,543518317,542327108,1718558779,842087795,168650820,1635131401,1851877746,842014836,539781222,151653680,1684956448,1769103734,225734241,1852639498,1111760997,1396777004,1111777101,1864383241,826110822,224931891,1852639498,1145315429,1396777004,1145331533,1864383241,826110822,224932403,1852639498]},{"sector":5,"length":512,"data":[1162092645,540745795,1030973039,1748251441,537463309,1769103734,544501345,1748513840,925966380,537463309,1769103734,544501345,1347569473,824980776,824192041,1092627510,1281314131,1095451471,222645314,1696598282,1635148910,1851877746,151653748,543518317,542525764,1718558779,858865011,168650817,1635131401,1851877746,1195450484,908611666,740898348,221655328,1696598282,1635148910,1851877746,151653748,543518317,539776836,1598903105,990467908,1936092960,1144205629,151653736,543518317,1163152965,540739922,1030973039,1749431089,537463309,1769103734,544501345,1748525872,942743596,539762732,1598903105,1212367181,151653681,1684956448,1769103734,225734241,1852639498,843456613,154226008,1718558779,875642227,168650803,1885741065,1769103734,544501345,1748591664,741351468,812003360,151653736,1684956448,1769103734,225734241,1852639498,1095114853,990466882,1936092960,926167357,151653736,1987077664,1634300513,807433326,745027940,539766816,1748067632,537463309,1986293349,1634300513,168653934,1701735689,1145128480,540739908,1030973039,1749169201,537463309,1769103734,544501345,1747988530,959520812,537463309,1769103734,544501345,1748250674,808591404,537463309,1635151974,1851877746,1680875636,539781176,539767090,1748001584,537463309,1635151974,1851877746,1680875636,539781219,539767346,1748001584,537463309,1986293349,1634300513,168653934,1701735689]},{"sector":6,"length":512,"data":[1145128480,990466116,1936092960,909455677,151653736,1987077664,1634300513,807433326,745039204,741552672,811806752,151653736,1987077664,1634300513,807433326,745039204,539766816,1748067120,537463309,1986293349,1634300513,168653934,1701735689,1279411744,540739908,1030973039,1749300529,537463309,1769103734,544501345,1748447794,909254700,537463309,1986293349,1634300513,168653934,1701735689,1396852256,990466132,1936092960,808857917,151653736,1918989856,1953390953,926102048,840969320,151653686,1684956448,1769103734,225734241,1852639498,1128669285,990466888,1936092960,859189565,151653736,1987077664,1634300513,807433326,745027940,539766816,1748002096,537463309,1986293349,1634300513,168653934,1701735689,1279477280,539777093,1598903105,1414086999,1864383241,826110822,224933686,1852639498,1313218661,1480936515,1864383241,826110822,224933942,1713375498,1918989936,1953390953,1650733088,807414888,1697652780,168650802,1852121097,1918989924,1953390953,1829308941,1176528238,1448037699,540739906,1030973039,1749235249,537463309,1635151974,1851877746,1680875636,539781217,539767090,1748001584,539762732,1598903105,1212367181,151653686,1684956448,1769103734,225734241,1852639498,1128669285,1112952653,540739909,1030973039,1748055857,537463309,1635151974,1851877746,1680875636,539781217,539767090,1748001840,539762732,1598903105,1212367181,151653686,1684956448]},{"sector":7,"length":512,"data":[1769103734,225734241,1852639498,1128669285,1163284301,1864383241,826110822,224933431,1713375498,1918989936,1953390953,1633955872,840969320,807414833,745027683,1092627488,1298091347,910705473,537463309,1986293349,1634300513,168653934,1701735689,1296254496,1112430159,1864383241,826110822,224936503,1713375498,1918989936,1953390953,1650733088,840969320,807414833,745025635,1092627488,1298091347,910705473,537463309,1986293349,1634300513,168653934,1701735689,1296254496,1112430159,540739909,1030973039,1747990577,537463309,1635151974,1851877746,1680875636,539781218,539767090,1748001840,539762732,1598903105,1212367181,151653686,1684956448,1769103734,225734241,1852639498,1128669285,1314279245,540739909,1030973039,1748318257,537463309,1635151974,1851877746,1680875636,539781218,539767090,1748525872,539762732,1598903105,1212367181,151653686,1684956448,1769103734,225734241,1852639498,1128669285,1314279245,540739925,1030973039,1749104689,537463309,1635151974,1851877746,1680875636,539781218,539767090,1748526128,539762732,1598903105,1212367181,151653686,1684956448,1769103734,225734241,1852639498,1128669285,1431719757,1864383241,826110822,224937528,1713375498,1918989936,1953390953,1633955872,840969320,807414833,745027684,1092627488,1298091347,910705473,537463309,1986293349,1634300513,168653934,1701735689,1329808928,540739917,1030973039,1748252977,537463309]},{"sector":8,"length":512,"data":[1769103734,544501345,1747988786,959520812,537463309,1769103734,544501345,1748250930,808591404,537463309,1635151974,1851877746,1680875636,539781176,539768882,1748001840,537463309,1635151974,1851877746,1680875636,539781176,807414832,224932196,1696598282,1635148910,1851877746,151653748,543518317,1297040198,540739913,1030973039,1749432625,537463309,1635151974,1851877746,1680875636,539781218,539768882,1748002352,539762732,1598903105,1212367181,151653686,1987077664,1634300513,807433326,745038436,539766816,1748067888,539762732,1598903105,1212367181,151653686,1684956448,1769103734,225734241,1852639498,1128669285,1346981199,1864383241,826110822,224933953,1713375498,1918989936,1953390953,1717841952,840969320,807414840,745025638,1092627488,1298091347,910705473,537463309,1635151974,1851877746,1680875636,539781222,807414832,745025894,1092627488,1298091347,910705473,537463309,1986293349,1634300513,168653934,1701735689,1329808928,990466125,1936092960,826421565,151653736,1918989856,1953390953,942748192,824192104,151653689,1918989856,1953390953,1664168480,840969320,151653680,1987077664,1634300513,807433326,745027684,741880352,946090016,151653736,1987077664,1634300513,807433326,745027684,539766816,1748591664,537463309,1986293349,1634300513,168653934,1701735689,1329808928,156258381,1718558779,1110523251,168650819,1885741065,1769103734,544501345]},{"sector":9,"length":512,"data":[1751475248,741351468,962867232,151653736,1684956448,1769103734,225734241,1852639498,1128669285,990466895,1936092960,809709885,151653736,1987077664,1634300513,807433326,745027940,539766816,1751541296,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1145446501,1414742853,540739920,1030973039,1748321073,537463309,1635151974,1851877746,1680875636,539781177,807414832,224933478,1696598282,1635148910,1851877746,151653748,543518317,1397310534,1092627529,1465863507,156518721,1718558779,1127300467,168650809,1701735689,1145980448,155800393,1718558779,1127300467,168650817,1885741065,1769103734,544501345,1751278640,741351468,828715040,151653736,1684956448,1769103734,225734241,1852639498,1145446501,990467657,1936092960,1162031421,151653736,1918989856,1953390953,808661536,824192104,151653689,1918989856,1953390953,875770400,840969320,151653680,1987077664,1634300513,807433326,745027684,741421600,812003360,151653736,1987077664,1634300513,807433326,745038692,741487136,946221088,151653736,1684956448,1769103734,225734241,1852639498,1145446501,156259913,1718558779,1144077683,168650809,1885741065,1769103734,544501345,1751475248,858923052,1714429996,168650808,1885741065,1769103734,544501345,1751475248,741351468,962998304,151653736,1684956448,1769103734,225734241,1852639498,1145446501,156390985,1718558779,1160854899]}],[{"sector":1,"length":512,"data":[168650800,1635131401,1851877746,858923124,539781176,168638769,1635131401,1851877746,858923124,539781219,168636466,1885741065,1769103734,544501345,1748526128,825368620,1714429996,168650808,1885741065,1769103734,544501345,1751344176,842145836,1714429996,168650800,1852121097,1918989924,1953390953,1829308941,1176528238,1381386564,540739920,1030973039,1749173553,537463309,1635151974,1851877746,1680875636,539781221,539767602,1748002352,537463309,1635151974,1851877746,1680875636,539781221,807414832,224932198,1696598282,1635148910,1851877746,151653748,543518317,1229866310,1396777004,1096245069,990467145,1936092960,843460925,151653736,543518317,1313164870,540739913,1030973039,1748190769,537463309,1635151974,1851877746,1680875636,539781218,807414832,224931941,1696598282,1635148910,1851877746,151653748,543518317,1163019846,540739909,1030973039,1748452913,537463309,1635151974,1851877746,1680875636,539781220,539768626,1748001584,537463309,1986293349,1634300513,168653934,1701735689,1380337184,156255557,1718558779,1177632115,168650818,1885741065,1769103734,544501345,1751540784,926031916,1664098348,168650800,1852121097,1918989924,1953390953,1829308941,1176528238,1145323849,1864383241,826110822,224937542,1981810954,1634300513,840987758,745026096,221524512,1981810954,1634300513,840987758,745027120,221590048,1696598282,1635148910,1851877746,151653748]},{"sector":2,"length":512,"data":[543518317,1329809734,540739917,1030973039,1748250674,537463309,1769103734,544501345,1748119858,875700268,537463309,1769103734,544501345,1748382002,892477484,537463309,1986293349,1634300513,168653934,1701735689,1128875552,156257615,1718558779,808598899,168650809,1635131401,1851877746,825368692,539781217,168637490,1635131401,1851877746,825368692,539781221,168637746,1852121097,1918989924,1953390953,1829308941,1176528238,1447642185,1864383241,842888038,224937264,1981810954,1634300513,840987758,745026099,221524512,1981810954,1634300513,840987758,745027123,221590048,1696598282,1635148910,1851877746,151653748,543518317,1229211974,990466646,1936092960,858862141,151653736,1918989856,1953390953,1630745120,840969320,151653684,1918989856,1953390953,1697853984,840969320,151653685,1684956448,1769103734,225734241,1852639498,1229332581,990463052,1936092960,942748221,151653736,1918989856,1953390953,858796576,840969320,151653684,1918989856,1953390953,925905440,840969320,151653685,1918989856,1953390953,1714565664,824192104,151653685,1684956448,1769103734,225734241,1852639498,1229332581,155997517,1718558779,825376115,168650822,1635131401,1851877746,808591476,539781217,168637490,1635131401,1851877746,808591476,539781221,168637746,1852121097,1918989924,1953390953,1829308941,1176528238,1396919881,990466132,1936092960,875704893,151653736,1987077664]},{"sector":3,"length":512,"data":[1634300513,807433326,745027940,539766816,1748461104,537463309,1986293349,1634300513,168653934,1701735689,1313424928,539776073,1598903105,1414086999,1864383241,842888038,224933938,1852639498,1313218661,1414090313,1864383241,842888038,224934194,1713375498,1918989936,1953390953,1650733088,807414888,1697652780,168650803,1852121097,1918989924,1953390953,1829308941,1176528238,156521289,1718558779,842153331,168650820,1635131401,1851877746,825368692,539781171,168637490,1635131401,1851877746,825368692,539781175,168637746,1852121097,1918989924,1953390953,1829308941,1176528238,1347703625,1864383241,842888038,224932403,1981810954,1634300513,840987758,745038385,221524512,1981810954,1634300513,840987758,745039409,221590048,1981810954,1634300513,840987758,745039411,221589792,1696598282,1635148910,1851877746,151653748,543518317,1431521606,540739906,1030973039,1748579122,537463309,1769103734,544501345,1748120114,875700268,537463309,1769103734,544501345,1748382258,892477484,537463309,1986293349,1634300513,168653934,1701735689,1397311008,156385877,1718558779,858930547,168650821,1635131401,1851877746,842145908,539781217,168637490,1635131401,1851877746,842145908,539781221,168637746,1852121097,1918989924,1953390953,1829308941,1176528238,991970380,1936092960,859058749,151653736,1918989856,1953390953,825242144,824192104,151653689,1918989856,1953390953]},{"sector":4,"length":512,"data":[892351008,840969320,151653680,1918989856,1953390953,1647456800,840969320,151653686,1987077664,1634300513,807433326,745027940,741814816,811806752,151653736,1684956448,1769103734,225734241,1852639498,1279664229,990458180,1936092960,1144271421,151653736,1987077664,1634300513,807433326,745027940,539766816,1748526384,537463309,1986293349,1634300513,168653934,1701735689,1145849376,156512844,1718558779,892484979,168650801,1885741065,1769103734,544501345,1748591664,741351468,962932768,151653736,1684956448,1769103734,225734241,1852639498,1279664229,1160924228,1864383241,842888038,224933173,1713375498,1918989936,1953390953,962867232,807414888,1697652780,168650849,1852121097,1918989924,1953390953,1829308941,1176528238,1229997132,1864383241,842888038,224934197,1713375498,1918989936,1953390953,962867232,807414888,1697652780,168650850,1852121097,1918989924,1953390953,1829308941,1176528238,1196180556,540739890,1030973039,1749300530,537463309,1635151974,1851877746,1680875636,539781177,807414832,224944997,1696598282,1635148910,1851877746,151653748,543518317,1279544390,990458446,1936092960,825635389,151653736,1987077664,1634300513,807433326,745027940,539766816,1751409968,537463309,1986293349,1634300513,168653934,1701735689,1145849376,540739930,1030973039,1748317746,537463309,1635151974,1851877746,1680875636,539781177,807414832,224945509,1696598282]},{"sector":5,"length":512,"data":[1635148910,1851877746,151653748,543518317,1128549446,540739927,1030973039,1748579890,537463309,1769103734,544501345,1748578866,892477484,537463309,1986293349,1634300513,168653934,1701735689,1145849376,156651077,1718558779,909262195,168650819,1635131401,1851877746,842145908,539781169,168638770,1852121097,1918989924,1953390953,1829308941,1176528238,1313162316,539776854,1598903105,154546500,1718558779,909262195,168650822,1701735689,1145849376,1146506821,1396777004,860118861,540739890,1030973039,1747990322,537463309,1769103734,544501345,1748054578,959586348,537463309,1986293349,1634300513,168653934,1701735689,1431127584,540739916,1030973039,1748252466,537463309,1769103734,544501345,1748512818,959520812,537463309,1769103734,544501345,1751330866,808591404,537463309,1635151974,1851877746,1680875636,539781176,539767090,1748525872,537463309,1635151974,1851877746,1680875636,539781219,539767346,1748525872,537463309,1986293349,1634300513,168653934,1701735689,1431127584,990466124,1936092960,1178022461,151653736,1987077664,1634300513,807433326,745039204,741552672,946024480,151653736,1987077664,1634300513,807433326,745039204,539766816,1748591408,537463309,1986293349,1634300513,168653934,1701735689,1330529824,540739920,1030973039,1748383794,537463309,1635151974,1851877746,1680875636,539781177,807414832,224931940,1696598282,1635148910,1851877746]},{"sector":6,"length":512,"data":[151653748,543518317,1413566534,990465601,1936092960,1094201917,151653736,1987077664,1634300513,807433326,745027940,539766816,1748198960,537463309,1986293349,1634300513,168653934,1701735689,1380992544,990465349,1936092960,1161310781,151653736,1987077664,1634300513,807433326,745027940,539766816,1748526640,537463309,1986293349,1634300513,168653934,1701735689,1380992544,154225989,1718558779,959593843,168650802,1885741065,1769103734,544501345,1748591664,741351468,895889440,740306024,1297301792,1128353119,168637256,1852121097,1918989924,1953390953,1829308941,1176528238,1312904272,1864383241,842888038,224933689,1713375498,1918989936,1953390953,962867232,807414888,1714429996,168650802,1852121097,1918989924,1953390953,1829308941,1176528238,1229213266,990467150,1936092960,1111044669,151653736,1987077664,1634300513,807433326,745027940,539766816,1751344688,537463309,1986293349,1634300513,168653934,1701735689,1397900832,156389204,1718558779,959593843,168650822,1635131401,1851877746,842145908,539781173,168638770,1852121097,1918989924,1953390953,1829308941,1176528238,1330926418,539776850,1598903105,154546500,1718558779,1093811571,168650802,1701735689,1397900832,1146244948,1396777004,860118861,540739890,1030973039,1748189490,537463309,1769103734,544501345,1748316722,959586348,537463309,1986293349,1634300513,168653934,1701735689,1095976480,539772246]},{"sector":7,"length":512,"data":[1598903105,1414086999,1864383241,842888038,224933697,1852639498,1313218661,1163280723,1864383241,842888038,224933953,1981810954,1634300513,840987758,745026867,221852192,1696598282,1635148910,1851877746,151653748,543518317,1447121734,539776837,1598903105,154546500,1718558779,1093811571,168650818,1701735689,1095976480,742671702,1297301792,842220639,1864383241,842888038,224936769,1981810954,1634300513,840987758,745026867,221852192,1696598282,1635148910,1851877746,151653748,543518317,1094931270,990463308,1936092960,809644605,151653736,1987077664,1634300513,807433326,745027940,539766816,1751410224,537463309,1986293349,1634300513,168653934,1701735689,1163085344,156061780,1718558779,1110588787,168650804,1885741065,1769103734,544501345,1751278640,741351468,879046688,740306024,1297301792,1128353119,168637000,1852121097,1918989924,1953390953,1829308941,1176528238,156125523,1718558779,1110588787,168650809,1885741065,1769103734,544501345,1748591664,741351468,1701195808,740306024,1297301792,1128353119,168637256,1852121097,1918989924,1953390953,1829308941,1176528238,1129204051,990466895,1936092960,1161966141,151653736,1987077664,1634300513,807433326,745027940,539766816,1751279152,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1397104741,156521041,1718558779,1127366003,168650803,1885741065,1769103734,544501345]},{"sector":8,"length":512,"data":[1748591664,741351468,1634086944,151653736,1684956448,1769103734,225734241,1852639498,1397104741,540745812,1030973039,1748452146,537463309,1769103734,544501345,1748054322,959520812,537463309,1769103734,544501345,1748316466,808591404,537463309,1635151974,1851877746,1680875636,539781220,539768626,1748001840,537463309,1986293349,1634300513,168653934,1701735689,1414743584,540739920,1030973039,1749435186,537463309,1769103734,544501345,1748578610,959520812,537463309,1769103734,544501345,1751396658,808591404,537463309,1769103734,544501345,1751266098,909254700,537463309,1635151974,1851877746,1680875636,539781220,539768626,1748526128,537463309,1986293349,1634300513,168653934,1701735689,1414743584,539776835,1598903105,1414086999,1864383241,842888038,224934212,1852639498,1313218661,1464030291,1864383241,842888038,224936260,1981810954,1634300513,840987758,745027891,221590048,1696598282,1635148910,1851877746,151653748,543518317,1163154246,539776590,1598903105,1414086999,1864383241,842888038,224937028,1852639498,1313218661,1313166419,540739926,1030973039,1749369906,537463309,1769103734,544501345,1748054834,959586348,537463309,1986293349,1634300513,168653934,1701735689,1414743584,1465273925,1396777004,826564429,540739894,1030973039,1748059442,1829308941,1176528238,1313166419,539771990,1598903105,154284868,1718558779,1160920435,168650802,1635131401]},{"sector":9,"length":512,"data":[1851877746,858923124,539781169,168638770,1852121097,1918989924,1953390953,1829308941,1176528238,1465078867,1396777004,1096245069,990467145,1936092960,910504509,151653736,543518317,1414745670,990467923,1936092960,927281725,151653736,1987077664,1634300513,807433326,745039460,741356320,811937824,740306024,1297301792,1128353119,168637000,1635131401,1851877746,858923124,539781220,168637746,1852121097,1918989924,1953390953,1829308941,1176528238,155342163,1718558779,1160920435,168650821,1635131401,1851877746,842145908,539781168,168638769,1635131401,1851877746,842145908,539781172,168636466,1885741065,1769103734,544501345,1748526128,825368620,1697652780,168650800,1885741065,1769103734,544501345,1751344176,842145836,1697652780,168650808,1852121097,1918989924,1953390953,1829308941,1176528238,1346524499,1864383241,842888038,224934214,1713375498,1918989936,1953390953,1701064736,840969320,807414835,224933989,1713375498,1918989936,1953390953,1701064736,807414888,1697652780,168650809,1852121097,1918989924,1953390953,1829308941,1176528238,1380078931,1864383241,859665254,224931888,1981810954,1634300513,840987758,745027634,221851936,1981810954,1634300513,840987758,745038642,221262368,1713375498,1918989936,1953390953,946090016,840969320,807414833,224933989,1713375498,1918989936,1953390953,1667510304,840969320,807414834,224931941,1696598282,1635148910]}]],[[{"sector":1,"length":512,"data":[1851877746,151653748,543518317,1112888134,990466130,1936092960,1110455101,151653736,1987077664,1634300513,807433326,745039204,741552672,811937824,151653736,1987077664,1634300513,807433326,745039204,539766816,1748067632,537463309,1986293349,1634300513,168653934,1701735689,1398031904,540739924,1030973039,1748119859,537463309,1635151974,1851877746,1680875636,539781177,807414832,224932965,1696598282,1635148910,1851877746,151653748,543518317,1329812806,540739917,1030973039,1748382003,537463309,1635151974,1851877746,1680875636,539781220,539768882,1748002096,539762732,1598903105,1212367181,151653683,1987077664,1634300513,807433326,745038948,539766816,1748067632,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1430659173,1229803331,1864383241,859665254,224937521,1713375498,1918989936,1953390953,1650733088,840969320,807414840,745027685,1092627488,1298091347,910705473,537463309,1635151974,1851877746,1680875636,539781218,807414832,745027941,1092627488,1298091347,910705473,537463309,1986293349,1634300513,168653934,1701735689,1129661984,1346981199,1864383241,859665254,224933938,1713375498,1918989936,1953390953,1717841952,840969320,807414840,745027685,1092627488,1298091347,910705473,537463309,1635151974,1851877746,1680875636,539781222,807414832,745027941,1092627488,1298091347,910705473,537463309,1986293349]},{"sector":2,"length":512,"data":[1634300513,168653934,1701735689,1129661984,156257615,1718558779,858996083,168650801,1885741065,1769103734,544501345,1751409712,942809132,1697652780,539781176,1396777004,1095589709,221464643,1713375498,1918989936,1953390953,1684287520,807414888,1697652780,539781177,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,1329812806,156258381,1718558779,858996083,168650817,1885741065,1769103734,544501345,1751213104,741351468,962932768,740306024,1297301792,1128353119,168637256,1852121097,1918989924,1953390953,1829308941,1176528238,1414086999,1864383241,859665254,224937523,1981810954,1634300513,807433326,745038393,168636448,1852121097,1918989924,1953390953,1829308941,1176528238,156057944,1718558779,875773299,168650802,1885741065,1769103734,544501345,1748591664,741351468,895823904,151653736,1684956448,1769103734,225734241,1852639498,1480990821,990464067,1936092960,909390653,151653736,1987077664,1634300513,807433326,745027940,741880352,946024480,151653736,1987077664,1634300513,807433326,745027940,539766816,1748591408,537463309,1986293349,1634300513,168653934,1701735689,1415071264,1413693778,1864383241,859665254,224937012,1713375498,1918989936,1953390953,962867232,807414888,1714429996,168650804,1852121097,1918989924,1953390953,1829308941,1176528238,1479691353,1864383241,859665254,224932149,1713375498,1918989936]},{"sector":3,"length":512,"data":[1953390953,962867232,807414888,1714429996,168650801,1852121097,1918989924,1953390953,1829308941,1176528238,1479691353,990458192,1936092960,892678973,151653736,1987077664,1634300513,807433326,745027940,539766816,1748592176,537463309,1986293349,1634300513,168653934,1701735689,1414285344,1864383264,859665254,224934197,1981810954,1634300513,807433326,745026662,168636448,1852121097,1918989924,1953390953,1829308941,1226859886,156649796,1718558779,892550515,168650819,1635131401,1851877746,1195450484,908611666,740898604,221655328,1696598282,1635148910,1851877746,151653748,543518317,1280658761,1864383241,859665254,224937525,1981810954,1634300513,1092645998,676352583,691350582,909189164,537463309,1769103734,544501345,1751540017,741875756,1092627488,1298091347,860373825,537463309,1769103734,544501345,1751266864,825434156,539762732,1598903105,1212367181,151653681,1918989856,1953390953,1647718432,857746536,740305970,1297301792,1128353119,168636744,1635131401,1851877746,909123700,539781177,539767603,1396777004,1095589709,221333571,1981810954,1634300513,807433326,745027894,741618464,1092627488,1298091347,826819393,537463309,1986293349,1634300513,168653934,1701735689,156125472,1718558779,926104947,168650801,1635131401,1851877746,1697652852,539781172,168637747,1635131401,1851877746,1697652852,539781219,168638003,1852121097,1918989924,1953390953]},{"sector":4,"length":512,"data":[1829308941,1226859886,991970126,1936092960,909587261,151653736,1918989856,1953390953,808726560,824192104,151653687,1918989856,1953390953,1380401440,741681232,539765040,539768369,1598903105,1262702412,1162625601,537463309,1986293349,1634300513,168653934,1701735689,1397639456,540739906,1030973039,1749235507,537463309,1769103734,544501345,1751332400,741351468,1092627488,1298091347,826819393,537463309,1986293349,1634300513,168653934,1701735689,1397639456,1092627543,1147096403,990459441,1936092960,808989501,151653736,543518317,1146310217,1396777004,860118861,540739890,1030973039,1748056115,537463309,1769103734,544501345,1751397936,741351468,1092627488,1298091347,826819393,537463309,1986293349,1634300513,168653934,1701735689,1414416672,1864383264,859665254,224933432,1981810954,1634300513,807433326,745038691,221721376,1981810954,1634300513,807433326,745038947,221786912,1696598282,1635148910,1851877746,151653748,543518317,827608649,1864383241,859665254,224936504,1981810954,1634300513,807433326,745025894,539766816,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,1330925129,1864383241,859665254,224937528,1981810954,1634300513,807433326,745039203,168636448,1852121097,1918989924,1953390953,1829308941,1226859886,155473486,1718558779,959659379,168650802,1635131401,1851877746,808525940,539781176,740305968]},{"sector":5,"length":512,"data":[1297301792,1128353119,168637512,1852121097,1918989924,1953390953,1829308941,1226859886,1347180110,540739911,1030973039,1748384051,537463309,1769103734,544501345,1347569473,925644584,840969257,740305977,1297301792,1128353119,168637512,1852121097,1918989924,1953390953,1829308941,1226859886,743720274,1297301792,909198431,1864383241,859665254,224936249,1852639498,1380524133,742675525,1297301792,842220639,1864383241,859665254,224936505,1981810954,1634300513,807433326,745039459,168636448,1852121097,1918989924,1953390953,1829308941,1243637102,540739905,1030973039,1749432627,537463309,1769103734,544501345,1748449072,959651884,537463309,1769103734,544501345,1748449329,842080300,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1095376997,540745797,1030973039,1748320563,537463309,1769103734,544501345,1748186928,959651884,537463309,1769103734,544501345,1748187185,842080300,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1112154213,1864383241,859665254,224936513,1981810954,1634300513,807433326,745026103,221852448,1981810954,1634300513,824210542,745026104,741486880,1092627488,1298091347,860373825,537463309,1986293349,1634300513,168653934,1701735689,1161972256,1864383264,859665254,224932162,1981810954,1634300513,807433326,745027127,221852448,1981810954,1634300513,824210542]},{"sector":6,"length":512,"data":[745027128,741486880,1092627488,1298091347,860373825,537463309,1986293349,1634300513,168653934,1701735689,155404832,1718558779,1110654323,168650807,1635131401,1851877746,925900916,539781170,168638771,1635131401,1851877746,942743668,539781170,539767345,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,1515733834,1396777004,826564429,540739894,1030973039,1749303859,1829308941,1243637102,1515733829,1396777004,860118861,540739890,1030973039,1749369395,537463309,1769103734,544501345,1748198704,959651884,537463309,1986293349,1634300513,168653934,1701735689,155535904,1718558779,1127431539,168650802,1635131401,1851877746,925900916,539781172,168638771,1635131401,1851877746,942743668,539781172,539767345,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,990463818,1936092960,943928125,151653736,1918989856,1953390953,1714892832,857746536,151653689,1918989856,1953390953,1714958624,824192104,740305970,1297301792,1128353119,168637256,1852121097,1918989924,1953390953,1829308941,1243637102,991970631,1936092960,1162031933,151653736,1918989856,1953390953,1681338400,857746536,151653689,1918989856,1953390953,1681404192,824192104,740305970,1297301792,1128353119,168637256,1852121097,1918989924,1953390953,1829308941,1243637102,540739916,1030973039,1748255795,537463309,1769103734,544501345]},{"sector":7,"length":512,"data":[1751332656,959651884,537463309,1769103734,544501345,1751332913,842080300,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1279926373,540745797,1030973039,1749107763,537463309,1769103734,544501345,1751463728,959651884,537463309,1769103734,544501345,1751463985,842080300,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1313480805,540745793,1030973039,1747993907,537463309,1769103734,544501345,1748383536,959651884,537463309,1769103734,544501345,1748383793,842080300,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1313480805,990463297,1936092960,910504765,151653736,1918989856,1953390953,842477600,857746536,151653689,1918989856,1953390953,842543392,824192104,740305970,1297301792,1128353119,168637256,1852121097,1918989924,1953390953,1829308941,1243637102,991969870,1936092960,1128608573,151653736,1918989856,1953390953,859254816,857746536,151653689,1918989856,1953390953,859320608,824192104,740305970,1297301792,1128353119,168637256,1852121097,1918989924,1953390953,1829308941,1243637102,155533902,1718558779,1177763187,168650802,1635131401,1851877746,925900916,539781175,168638771,1635131401,1851877746,942743668,539781175,539767345,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,541281866,1718558779]},{"sector":8,"length":512,"data":[1177763187,168650808,1635131401,1851877746,925900916,539781171,168638771,1635131401,1851877746,942743668,539781171,539767345,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,541412938,1718558779,1177763187,168650821,1635131401,1851877746,925900916,539781173,168638771,1635131401,1851877746,942743668,539781173,539767345,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,541544010,1718558779,808729971,168650804,1635131401,1851877746,925900916,539781221,168638771,1635131401,1851877746,942743668,539781221,539767345,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,1162301002,1864383241,876442470,224936240,1981810954,1634300513,807433326,745038647,221852448,1981810954,1634300513,824210542,745038648,741486880,1092627488,1298091347,860373825,537463309,1986293349,1634300513,168653934,1701735689,1280199200,1864383264,876442470,224931889,1981810954,1634300513,807433326,745038903,221852448,1981810954,1634300513,824210542,745038904,741486880,1092627488,1298091347,860373825,537463309,1986293349,1634300513,168653934,1701735689,1280199200,540739909,1030973039,1748382004,537463309,1769103734,544501345,1751529264,959651884,537463309,1769103734,544501345,1751529521,842080300,539762732,1598903105,1212367181,151653683,1684956448,1769103734]},{"sector":9,"length":512,"data":[225734241,1852639498,1313480805,540745807,1030973039,1749233972,537463309,1769103734,544501345,1748055856,959651884,537463309,1769103734,544501345,1748056113,842080300,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1313480805,540745808,1030973039,1748120116,537463309,1769103734,544501345,1751267120,959651884,537463309,1769103734,544501345,1751267377,842080300,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1313480805,540745811,1030973039,1748513332,537463309,1769103734,544501345,1748580144,959651884,537463309,1769103734,544501345,1748580401,842080300,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1313480805,540745818,1030973039,1749365300,537463309,1769103734,544501345,1748318000,959651884,537463309,1769103734,544501345,1748318257,842080300,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1330258021,1864383241,876442470,224932915,1981810954,1634300513,807433326,745025591,221852448,1981810954,1634300513,824210542,745025592,741486880,1092627488,1298091347,860373825,537463309,1986293349,1634300513,168653934,1701735689,156256800,1718558779,859061619,168650817,1635131401,1851877746,925900916,539781217,168638771,1635131401,1851877746,942743668,539781217,539767345,1396777004,1095589709]}],[{"sector":1,"length":512,"data":[221464643,1696598282,1635148910,1851877746,151653748,543518317,541413450,1718558779,875838835,168650800,1635131401,1851877746,925900916,539781217,168638771,1635131401,1851877746,942743668,539781217,539767345,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,542068810,1718558779,875838835,168650806,1635131401,1851877746,925900916,539781218,168638771,1635131401,1851877746,942743668,539781218,539767345,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,990466890,1936092960,1127494717,151653736,1918989856,1953390953,943140896,857746536,151653689,1918989856,1953390953,943206688,824192104,740305970,1297301792,1128353119,168637256,1852121097,1918989924,1953390953,1829308941,1243637102,540739930,1030973039,1748120884,537463309,1769103734,544501345,1748252464,959651884,537463309,1769103734,544501345,1748252721,842080300,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1296703589,540745808,1030973039,1748514100,537463309,1769103734,544501345,1751278896,959651884,537463309,1769103734,544501345,1748591920,842080300,537463309,1769103734,544501345,1347569473,875311912,874523689,151653680,1918989856,1953390953,1380401440,741550160,539765045,168637489,1635131401,1851877746,1697652852,539781217,168637233,1852121097,1918989924,1953390953]},{"sector":2,"length":512,"data":[1829308941,1277191534,155600961,1718558779,909393267,168650803,1635131401,1851877746,959455348,539781222,151653680,1684956448,1769103734,225734241,1852639498,1095508069,540745810,1030973039,1748383284,537463309,1769103734,544501345,1748119601,741875756,1092627488,1298091347,843596609,537463309,1986293349,1634300513,168653934,1701735689,1396984864,1864383264,876442470,224936246,1981810954,1634300513,807433326,745026915,168638240,1852121097,1918989924,1953390953,1829308941,1277191534,991974213,1936092960,1144403005,151653736,1918989856,1953390953,878915616,924855400,537463309,1986293349,1634300513,168653934,1701735689,1397115936,1864383264,876442470,224931895,1981810954,1634300513,824210542,745026658,539768608,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,542328652,1718558779,926170483,168650804,1635131401,1851877746,1647386740,539781173,740305975,1297301792,1128353119,168637256,1852121097,1918989924,1953390953,1829308941,1277191534,991974227,1936092960,943141949,151653736,1918989856,1953390953,845295904,924855400,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1162616933,540745793,1030973039,1749235508,537463309,1769103734,544501345,1751398448,221716524,1696598282,1635148910,1851877746,151653748,543518317,1447118156,540739909,1030973039,1749432116,537463309]},{"sector":3,"length":512,"data":[1769103734,544501345,1748591408,741351468,1092627488,1298091347,826819393,537463309,1986293349,1634300513,168653934,1701735689,1145523232,540739924,1030973039,1748187188,537463309,1769103734,544501345,1347569473,841758504,840969257,740305977,1297301792,1128353119,168637000,1852121097,1918989924,1953390953,1829308941,1277191534,156517449,1718558779,942947699,168650807,1635131401,1851877746,1195450484,925388882,740897580,741945888,1092627488,1298091347,843596609,537463309,1986293349,1634300513,168653934,1701735689,1145850912,540739924,1030973039,1749170228,537463309,1769103734,544501345,1347569473,841758760,874523689,740305969,1297301792,1128353119,168637000,1852121097,1918989924,1953390953,1829308941,1277191534,156717901,1718558779,942947699,168650822,1635131401,1851877746,1195450484,925388882,740898348,741422112,1092627488,1298091347,843596609,537463309,1986293349,1634300513,168653934,1701735689,1095715872,1280065860,1864383241,876442470,224932665,1981810954,1634300513,824210542,745026864,539766816,1396777004,1095589709,221399107,1696598282,1635148910,1851877746,151653748,543518317,1262702412,1396777004,1330405197,1163021123,807414864,157823078,1718558779,959724915,168650807,1701735689,1146047520,990462547,1936092960,960050237,151653736,1918989856,1953390953,1667313696,807414888,537463309,1986293349,1634300513,168653934,1701735689]},{"sector":4,"length":512,"data":[1146047520,539776851,1598903105,154546500,1718558779,959724915,168650819,1701735689,1146047520,539771987,1598903105,154284868,1718558779,959724915,168650820,1635131401,1851877746,1630543988,539781220,151653680,1684956448,1769103734,225734241,1852639498,1330389093,990466127,1936092960,826356797,151653736,1918989856,1953390953,845492256,857746536,151653689,1684956448,1769103734,225734241,1852639498,1330389093,743919695,1297301792,909198431,1864383241,876442470,224932929,1852639498,1330389093,742674511,1297301792,842220639,1864383241,876442470,224933185,1981810954,1634300513,807433326,745026149,221852448,1696598282,1635148910,1851877746,151653748,543518317,1347374924,540739909,1030973039,1748582708,537463309,1769103734,544501345,1748067632,959651884,537463309,1986293349,1634300513,168653934,1701735689,1330596896,743916880,1297301792,909198431,1864383241,876442470,224936769,1852639498,1330389093,1145393231,1396777004,860118861,540739890,1030973039,1749303604,537463309,1769103734,544501345,1748067632,959651884,537463309,1986293349,1634300513,168653934,1701735689,1330596896,990468688,1936092960,826422333,151653736,1918989856,1953390953,828715040,857746536,151653689,1684956448,1769103734,225734241,1852639498,1330389093,1465536591,1396777004,826564429,540739894,1030973039,1748255284,1829308941,1277191534,1515212623,1092627524,1147096403]},{"sector":5,"length":512,"data":[990458419,1936092960,893531197,151653736,1918989856,1953390953,828715040,857746536,151653689,1684956448,1769103734,225734241,1852639498,1330389093,1162760271,1864383241,876442470,224934210,1981810954,1634300513,807433326,745025637,221852448,1696598282,1635148910,1851877746,151653748,543518317,1347374924,743916878,1297301792,909198431,1864383241,876442470,224936770,1852639498,1330389093,1162760271,1092627524,1147096403,990458419,1936092960,1145189437,151653736,1918989856,1953390953,811937824,857746536,151653689,1684956448,1769103734,225734241,1852639498,1330389093,1515081807,1864383241,876442470,224932163,1981810954,1634300513,807433326,745025637,221852448,1696598282,1635148910,1851877746,151653748,543518317,1347374924,743922254,1297301792,909198431,1864383241,876442470,224932931,1852639498,1330389093,1515081807,1092627524,1147096403,990458419,1936092960,893596733,151653736,1918989856,1953390953,811937824,857746536,151653689,1684956448,1769103734,225734241,1852639498,1397497957,540745804,1030973039,1748583220,537463309,1769103734,544501345,1748185137,741875756,1092627488,1298091347,843596609,537463309,1986293349,1634300513,168653934,1701735689,1381256224,1864383264,876442470,224937027,1981810954,1634300513,1092645998,676352583,691219512,825499692,539762732,1598903105,1212367181,151653682,1684956448,1769103734,225734241,1852639498]},{"sector":6,"length":512,"data":[1330454629,540745814,1030973039,1748059188,537463309,1769103734,544501345,1748001072,875831340,537463309,1769103734,544501345,1748132144,892608556,537463309,1769103734,544501345,1748514864,221519916,1981810954,1634300513,807433326,745038136,168637728,1635131401,1851877746,942678132,539781219,168636980,1635131401,1851877746,942678132,539781221,168637236,1635131401,1851877746,1647321204,539781168,168638004,1635131401,1851877746,1647321204,539781176,168638260,1635131401,1851877746,1195450484,958943314,740896812,168636960,1635131401,1851877746,842080372,539781168,539766839,1396777004,1095589709,221464643,1981810954,1634300513,824210542,745026098,741422880,1092627488,1298091347,860373825,537463309,1769103734,544501345,1748054577,842473516,539762732,1598903105,1212367181,151653683,1918989856,1953390953,858927392,924855400,740305971,1297301792,1128353119,168637256,1635131401,1851877746,842080372,539781172,539767863,1396777004,1095589709,221464643,1981810954,1634300513,824210542,745027122,741685024,1092627488,1298091347,860373825,537463309,1986293349,1634300513,168653934,1701735689,1448037664,990462547,1936092960,910570557,151653736,1918989856,1953390953,878784544,807414888,537463309,1986293349,1634300513,168653934,1701735689,1448037664,539776851,1598903105,154546500,1718558779,1177828723,168650809,1701735689,1448037664,539771987]},{"sector":7,"length":512,"data":[1598903105,154284868,1718558779,1177828723,168650817,1635131401,1851877746,1630543988,539781173,151653680,1684956448,1769103734,225734241,1852639498,1330454629,156783446,1718558779,1177828723,168650821,1635131401,1851877746,1647386740,539781221,539768884,1396777004,1095589709,221464643,1981810954,1634300513,824210542,745039458,741946400,1092627488,1298091347,860373825,537463309,1986293349,1634300513,168653934,1701735689,1448037664,990468186,1936092960,892351805,151653736,1918989856,1953390953,912404768,874523752,740305976,1297301792,1128353119,168637256,1635131401,1851877746,1647386740,539781175,539769140,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,541873485,1718558779,808795507,168650819,1635131401,1851877746,1195450484,908611666,740897836,221655328,1696598282,1635148910,1851877746,151653748,543518317,541541710,1718558779,808795507,168650822,1635131401,1851877746,1195450484,908611666,740897580,741749024,1297301792,1129270367,1279410507,151653701,1684956448,1769103734,225734241,1852639498,1330520165,540745808,1030973039,1748185397,537463309,1769103734,544501345,1747990832,221257772,1696598282,1635148910,1851877746,151653748,543518317,542396238,1718558779,825572723,168650806,1635131401,1851877746,1195450484,908611666,740897324,741749024,1297301792,1129270367,1279410507,151653701,1684956448]},{"sector":8,"length":512,"data":[1769103734,225734241,1852639498,1380917349,1864383241,893219686,224936241,1981810954,1634300513,1092645998,676352583,691088432,741548076,1297301792,1129270367,1279410507,151653701,1918989856,1953390953,1664102432,824192104,537463309,1769103734,544501345,1347569473,824979752,840969257,1396777004,1330405197,1111575363,168641868,1635131401,1851877746,808460404,539781176,1092627508,1281314131,1095451471,222645314,1981810954,1634300513,807433326,745038128,168637728,1852121097,1918989924,1953390953,1829308941,1327523182,539772754,1598903105,155669071,1718558779,842349939,168650808,1701735689,1414876960,1864383264,893219686,224936242,1981810954,1634300513,807433326,745027173,221263136,1981810954,1634300513,807433326,745039205,221328672,1696598282,1635148910,1851877746,151653748,543518317,1398035791,540739906,1030973039,1749430837,537463309,1769103734,544501345,1751463472,741351468,1092627488,1298091347,826819393,537463309,1986293349,1634300513,168653934,1701735689,1414876960,539776851,1598903105,154546500,1718558779,859127155,168650803,1701735689,1414876960,539771987,1598903105,154284868,1718558779,859127155,168650804,1635131401,1851877746,909123700,539781222,740305968,1297301792,1128353119,168636744,1852121097,1918989924,1953390953,1829308941,1344300398,991973455,1936092960,959657277,151653736,1918989856,1953390953,1380401440,808527952]},{"sector":9,"length":512,"data":[740896812,221394208,1981810954,1634300513,807433326,745027637,221720864,1981810954,1634300513,807433326,745039409,221722144,1981810954,1634300513,807433326,745027376,221525536,1981810954,1634300513,807433326,745027377,221656608,1981810954,1634300513,824210542,745025889,741881376,1092627488,1298091347,860373825,537463309,1769103734,544501345,1748590897,959848492,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1330651237,539771216,1598903105,154546500,1718558779,875904371,168650817,1701735689,1347375136,539771969,1598903105,154284868,1718558779,875904371,168650818,1635131401,1851877746,909123700,539781169,740305968,1297301792,1128353119,168636744,1852121097,1918989924,1953390953,1829308941,1344300398,742805583,1297301792,909198431,1864383241,893219686,224931893,1852639498,1330651237,742671952,1297301792,842220639,1864383241,893219686,224932149,1981810954,1634300513,807433326,745038905,168636448,1852121097,1918989924,1953390953,1829308941,1344300398,155734869,1718558779,892681587,168650805,1635131401,1851877746,892346484,539781168,168638257,1635131401,1851877746,1195450484,858280018,740898348,221262880,1981810954,1634300513,807433326,745038134,741618976,1092627488,1298091347,826819393,537463309,1769103734,544501345,1748514352,859119660,539762732,1598903105,1212367181,151653681,1918989856]}]],[[{"sector":1,"length":512,"data":[1953390953,1697656864,908078184,151653685,1918989856,1953390953,909193248,908078184,151653686,1918989856,1953390953,1697722400,908078184,151653687,1918989856,1953390953,909127712,908078184,151653684,1918989856,1953390953,811675936,908078184,740305976,1297301792,1128353119,168637256,1635131401,1851877746,1630609524,539781176,539769142,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,1213420880,1092627521,1147096403,990459441,1936092960,1161180477,151653736,543518317,1213420880,539771969,1598903105,154284868,1718558779,909458803,168650822,1635131401,1851877746,909123700,539781168,740305968,1297301792,1128353119,168636744,1852121097,1918989924,1953390953,1829308941,1344300398,1179145045,1396777004,826564429,540739894,1030973039,1748252469,1829308941,1344300398,1179145045,1092627524,1147096403,990458419,1936092960,892810557,151653736,1918989856,1953390953,1664692256,807414888,537463309,1986293349,1634300513,168653934,1701735689,1279480352,1864383264,893219686,224934199,1981810954,1634300513,1092645998,676352583,841756977,891300905,151653685,1918989856,1953390953,1380401440,842082384,740897324,221656352,1981810954,1634300513,1092645998,676352583,841757489,891300905,740305975,1297301792,1128353119,168636744,1852121097,1918989924,1953390953,1829308941,1377854830,991973955,1936092960,825767229,151653736]},{"sector":2,"length":512,"data":[1918989856,1953390953,1380401440,825305168,740897580,221590816,1981810954,1634300513,1092645998,676352583,858534449,891300905,151653686,1918989856,1953390953,1380401440,858859600,740897580,741815584,1092627488,1298091347,826819393,537463309,1986293349,1634300513,168653934,1701735689,1296323104,990466643,1936092960,959984957,151653736,1918989856,1953390953,842215712,807414888,539762732,1598903105,1212367181,151653685,1684956448,1769103734,225734241,1852639498,1146232933,155405648,1718558779,943013235,168650820,1635131401,1851877746,858857588,539781171,740305968,1297301792,1128353119,168638024,1852121097,1918989924,1953390953,1829308941,1377854830,1129534532,1864383241,893219686,224932153,1981810954,1634300513,824210542,745025843,539766816,1396777004,1095589709,221595715,1696598282,1635148910,1851877746,151653748,543518317,743458130,1297301792,1129270367,1346720331,1714429996,990472243,1936092960,892941629,151653736,543518317,1162888530,1396777004,1330405197,1163021123,807414864,157823846,1718558779,959790451,168650807,1701735689,1346720288,1092627546,1281314131,1380664143,539775045,1748198960,1864383241,893219686,224934201,1852639498,1163010149,742739536,1297301792,1129270367,1346720331,1714429996,990472242,1936092960,1111045437,151653736,543518317,1313883474,1092627546,1281314131,1380664143,539775045,1748133424,1864383241,893219686]},{"sector":3,"length":512,"data":[224937017,1852639498,1163010149,540745812,1030973039,1749432629,537463309,1769103734,544501345,1748198192,221257772,1981810954,1634300513,807433326,745026147,221787424,1696598282,1635148910,1851877746,151653748,543518317,1179927890,1396777004,826564429,540739894,1030973039,1748255029,1829308941,1377854830,1145459781,1396777004,860118861,540739890,1030973039,1748320565,537463309,1769103734,544501345,1751278384,221257772,1981810954,1634300513,807433326,745038179,221787424,1696598282,1635148910,1851877746,151653748,543518317,541871954,1718558779,1094008179,168650818,1635131401,1851877746,1195450484,824725586,691022897,892674092,537463309,1769103734,544501345,1347569473,741486888,539765040,168638005,1635131401,1851877746,1195450484,824725586,691022899,926228524,539762732,1598903105,1212367181,151653681,1684956448,1769103734,225734241,1852639498,1330782309,540745810,1030973039,1748189749,537463309,1769103734,544501345,1347569473,741421352,539765041,168637749,1635131401,1851877746,1195450484,824725586,691088434,909451308,537463309,1769103734,544501345,1347569473,741552424,539765041,539768629,1396777004,1095589709,221333571,1696598282,1635148910,1851877746,151653748,543518317,541938514,1718558779,1110785395,168650818,1635131401,1851877746,1630609524,539781217,740305968,1297301792,1128353119,168637768,1852121097,1918989924,1953390953]},{"sector":4,"length":512,"data":[1829308941,1394632046,155600961,1718558779,1110785395,168650822,1635131401,1851877746,959455348,539781221,151653680,1684956448,1769103734,225734241,1852639498,1095966821,540745804,1030973039,1748124469,537463309,1769103734,544501345,1347569473,741421352,539765044,168637749,1635131401,1851877746,1195450484,824725586,691285042,909451308,537463309,1769103734,544501345,1347569473,741552424,539765044,539768629,1396777004,1095589709,221333571,1696598282,1635148910,1851877746,151653748,543518317,1129070931,1864383241,893219686,224936259,1981810954,1634300513,807433326,745027172,168636448,1852121097,1918989924,1953390953,1829308941,1394632046,991973953,1936092960,1145255229,151653736,1918989856,1953390953,1380401440,825305168,740898604,221590816,1981810954,1634300513,1092645998,676352583,925643313,891300905,151653686,1918989856,1953390953,1380401440,858859600,740898604,741815584,1092627488,1298091347,826819393,537463309,1986293349,1634300513,168653934,1701735689,1111642912,1864383264,893219686,224933188,1981810954,1634300513,1092645998,676352583,691219504,741548076,1297301792,1129270367,1279410507,151653701,1918989856,1953390953,1664167968,824192104,537463309,1769103734,544501345,1347569473,858534184,840969257,1396777004,1330405197,1111575363,168641868,1635131401,1851877746,825237620,539781176,1092627508,1281314131,1095451471,222645314]},{"sector":5,"length":512,"data":[1981810954,1634300513,807433326,745038129,168637728,1852121097,1918989924,1953390953,1829308941,1394632046,1112752451,1864383241,893219686,224932677,1981810954,1634300513,807433326,745039201,168636448,1852121097,1918989924,1953390953,1829308941,1394632046,1465073987,1396777004,826564429,540739894,1030973039,1748387125,1829308941,1394632046,1146306883,1396777004,860118861,540739890,1030973039,1748452661,537463309,1769103734,544501345,1751540016,221257772,1696598282,1635148910,1851877746,151653748,543518317,1096041811,1864383241,893219686,224936517,1981810954,1634300513,824210542,745027385,741946656,1092627488,1298091347,860373825,537463309,1986293349,1634300513,168653934,1701735689,1413829408,990463297,1936092960,1178940733,151653736,1918989856,1953390953,859386144,891300968,740305977,1297301792,1128353119,168637256,1852121097,1918989924,1953390953,1829308941,1394632046,155341893,1718558779,1177894259,168650803,1635131401,1851877746,959520884,539781170,539769141,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,1112819027,540739909,1030973039,1748452917,537463309,1769103734,544501345,1748384049,959782956,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1163075685,990462804,1936092960,1111897405,151653736,1918989856,1953390953,842608928,891300968,740305977,1297301792]},{"sector":6,"length":512,"data":[1128353119,168637256,1852121097,1918989924,1953390953,1829308941,1394632046,155538501,1718558779,1177894259,168650822,1635131401,1851877746,959520884,539781172,539769141,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,1196705107,1864383241,909996902,224932656,1981810954,1634300513,824210542,745039417,741946656,1092627488,1298091347,860373825,537463309,1986293349,1634300513,168653934,1701735689,1413829408,990463303,1936092960,925906493,151653736,1918989856,1953390953,1681469728,891300968,740305977,1297301792,1128353119,168637256,1852121097,1918989924,1953390953,1829308941,1394632046,155997253,1718558779,808861043,168650818,1635131401,1851877746,959520884,539781219,539769141,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,1280591187,540739909,1030973039,1749430326,537463309,1769103734,544501345,1751464241,959782956,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1163075685,155274836,1718558779,825638259,168650803,1635131401,1851877746,959520884,539781174,539769141,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,1314145619,990463297,1936092960,925972029,151653736,1918989856,1953390953,842608928,891300968,740305977,1297301792,1128353119,168637256,1852121097,1918989924,1953390953,1829308941]},{"sector":7,"length":512,"data":[1394632046,1112429637,1864383241,909996902,224936497,1981810954,1634300513,824210542,745026361,741946656,1092627488,1298091347,860373825,537463309,1986293349,1634300513,168653934,1701735689,1413829408,155533902,1718558779,825638259,168650822,1635131401,1851877746,959520884,539781175,539769141,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,1314145619,540739907,1030973039,1748185654,537463309,1769103734,544501345,1748187441,959782956,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1163075685,155536980,1718558779,842415475,168650807,1635131401,1851877746,959520884,539781173,539769141,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,1314145619,540739911,1030973039,1749168694,537463309,1769103734,544501345,1751464241,959782956,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1163075685,1162301012,1864383241,909996902,224937522,1981810954,1634300513,824210542,745038649,741946656,1092627488,1298091347,860373825,537463309,1986293349,1634300513,168653934,1701735689,1413829408,990465102,1936092960,858994237,151653736,1918989856,1953390953,1681469728,891300968,740305977,1297301792,1128353119,168637256,1852121097,1918989924,1953390953,1829308941,1394632046,1280201797,540739909,1030973039,1748448054]},{"sector":8,"length":512,"data":[537463309,1769103734,544501345,1751529777,959782956,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1163075685,156192340,1718558779,859192691,168650818,1635131401,1851877746,959520884,539781169,539769141,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,1314145619,540739920,1030973039,1749431094,537463309,1769103734,544501345,1751267633,959782956,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1163075685,156454484,1718558779,875969907,168650803,1635131401,1851877746,959520884,539781177,539769141,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,1314145619,540739930,1030973039,1748448310,537463309,1769103734,544501345,1748318513,959782956,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1163075685,990465876,1936092960,1110718013,151653736,1918989856,1953390953,809054496,891300968,740305977,1297301792,1128353119,168637256,1852121097,1918989924,1953390953,1829308941,1394632046,156259397,1718558779,875969907,168650822,1635131401,1851877746,959520884,539781217,539769141,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,1347700051,540739909,1030973039,1748186422,537463309,1769103734,544501345,1751202097,959782956,539762732]},{"sector":9,"length":512,"data":[1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1163075685,156192852,1718558779,892747123,168650807,1635131401,1851877746,959520884,539781218,539769141,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,1398031699,1864383241,909996902,224936501,1981810954,1634300513,824210542,745027641,741946656,1092627488,1298091347,860373825,537463309,1986293349,1634300513,168653934,1701735689,1413829408,540739930,1030973039,1749431606,537463309,1769103734,544501345,1748252977,959782956,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1196630117,990467140,1936092960,859190845,151653736,1918989856,1953390953,1380401440,741812304,539765040,539769138,1396777004,1095589709,221399107,1696598282,1635148910,1851877746,151653748,543518317,541870163,1718558779,909524339,168650807,1635131401,1851877746,1195450484,824725586,691285041,892674092,537463309,1769103734,544501345,1347569473,741486888,539765044,168638005,1635131401,1851877746,1195450484,824725586,691285043,926228524,539762732,1598903105,1212367181,151653681,1684956448,1769103734,225734241,1852639498,1213407333,990463052,1936092960,1177957949,151653736,1918989856,1953390953,878784800,908078184,740305968,1297301792,1128353119,168637256,1635131401,1851877746,1630609524,539781173,539767094,1396777004]}],[{"sector":1,"length":512,"data":[1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,542263379,1718558779,926301555,168650806,1635131401,1851877746,1195450484,824725586,691350577,892674092,537463309,1769103734,544501345,1347569473,741486888,539765045,168638005,1635131401,1851877746,1195450484,824725586,691350579,926228524,539762732,1598903105,1212367181,151653681,1684956448,1769103734,225734241,1852639498,1213407333,990463058,1936092960,1161246269,151653736,1918989856,1953390953,1667313952,908078184,740305968,1297301792,1128353119,168637256,1635131401,1851877746,1630609524,539781220,539767094,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,1413761363,1864383241,909996902,224933176,1981810954,1634300513,1092645998,676352583,691088439,959586348,539762732,1598903105,1212367181,151653682,1684956448,1769103734,225734241,1852639498,1280516197,990467140,1936092960,959985213,151653736,1918989856,1953390953,1380401440,741877840,539765040,539767092,1396777004,1095589709,221399107,1696598282,1635148910,1851877746,151653748,543518317,1465077075,1864383241,909996902,224937016,1981810954,1634300513,1092645998,676352583,691285047,825499692,539762732,1598903105,1212367181,151653682,1684956448,1769103734,225734241,1852639498,1414733925,540745795,1030973039,1748056374,537463309,1769103734,544501345,1748592176,221257772]},{"sector":2,"length":512,"data":[1696598282,1635148910,1851877746,151653748,543518317,541348947,1718558779,959855987,168650804,1635131401,1851877746,1714430068,539781220,151653680,1684956448,1769103734,225734241,1852639498,1414733925,540745801,1030973039,1748449590,537463309,1769103734,544501345,1751279152,221257772,1696598282,1635148910,1851877746,151653748,543518317,1397707859,540739906,1030973039,1749104950,537463309,1769103734,544501345,1751212336,221257772,1696598282,1635148910,1851877746,151653748,543518317,1397707859,1092627543,1147096403,990459441,1936092960,1144600125,151653736,543518317,1397707859,1092627524,1147096403,990458419,1936092960,1161377341,151653736,1918989856,1953390953,1650536480,807414888,537463309,1986293349,1634300513,168653934,1701735689,1381258016,1864383264,909996902,224932417,1981810954,1634300513,1092645998,676352583,691088440,825499692,539762732,1598903105,1212367181,151653682,1684956448,1769103734,225734241,1852639498,1431511141,540745794,1030973039,1748386102,537463309,1769103734,544501345,1347569473,892088360,857746473,1396777004,1330405197,1111575363,168641868,1635131401,1851877746,842014836,539781219,151653681,1918989856,1953390953,1380401440,741419088,539765045,1092627506,1281314131,1095451471,222645314,1981810954,1634300513,807433326,745027634,539767840,1598903105,1262702412,1162625601,537463309,1769103734,544501345,1751200304]},{"sector":3,"length":512,"data":[221585452,1696598282,1635148910,1851877746,151653748,543518317,1163090259,1380275278,1864383241,909996902,224932930,1981810954,1634300513,824210542,745026611,539766816,1396777004,1095589709,221661251,1696598282,1635148910,1851877746,151653748,543518317,1163090259,156518744,1718558779,1110850931,168650808,1635131401,1851877746,858857588,539781173,740305968,1297301792,1128353119,168638024,1852121097,1918989924,1953390953,1829308941,1411409262,156521285,1718558779,1110850931,168650819,1635131401,1851877746,1630543988,539781176,151653681,1918989856,1953390953,1380401440,741746768,539765040,151653682,1918989856,1953390953,876097568,874523752,537463309,1769103734,544501345,1748252720,221585452,1696598282,1635148910,1851877746,151653748,543518317,1381123414,1864383241,909996902,224933187,1981810954,1634300513,1092645998,676352583,691285048,825499692,539762732,1598903105,1212367181,151653682,1684956448,1769103734,225734241,1852639498,1163272293,990467922,1936092960,960706109,151653736,1918989856,1953390953,1380401440,741877840,539765045,539767092,1396777004,1095589709,221399107,1696598282,1635148910,1851877746,151653748,543518317,1414086999,1864383241,909996902,224937027,1981810954,1634300513,807433326,745038393,168636448,1852121097,1918989924,1953390953,1829308941,1461740910,1447971138,540739908,1030973039,1747993654,537463309,1769103734]},{"sector":4,"length":512,"data":[544501345,1748578353,741351468,1092627488,1298091347,877151041,537463309,1986293349,1634300513,168653934,1701735689,1297241888,990466643,1936092960,876885565,151653736,1918989856,1953390953,808661280,807414888,539762732,1598903105,1212367181,151653685,1684956448,1769103734,225734241,1852639498,1096294501,990463044,1936092960,943994429,151653736,1918989856,1953390953,811807008,874523752,1396777004,1330405197,1111575363,539772236,1598903105,1212367181,151653684,1684956448,1769103734,225734241,1852639498,1129848933,990463816,1936092960,1145321021,151653736,1918989856,1953390953,809054240,908078184,151653682,1918989856,1953390953,809054240,908078184,151653683,1918989856,1953390953,909652000,874523752,1396777004,1330405197,1111575363,168641868,1635131401,1851877746,942678132,539781174,1092627509,1281314131,1095451471,222645314,1696598282,1635148910,1851877746,151653748,543518317,1413565528,1864383241,909996902,224933957,1981810954,1634300513,807433326,745027428,168636448,1852121097,1918989924,1953390953,1829308941,1478518126,1112817996,1864383241,909996902,224936517,1981810954,1634300513,807433326,745027428,168636448,1852121097,1918989924,1953390953,1829308941,1478518126,991973967,1936092960,1162163773,151653736,1918989856,1953390953,1380401440,741353552,539765046,1092627507,1281314131,1095451471,222645314,1981810954,1634300513,807433326]},{"sector":5,"length":512,"data":[745026611,168636704,1635131401,1851877746,1195450484,824725586,740898348,539767328,1598903105,1262702412,1162625601,537463309,1769103734,544501345,1747989296,741613612,1297301792,1129270367,1279410507,151653701,1918989856,1953390953,842215456,891300968,537463309,1986293349,1634300513,168653934,1701735689,743654688,1297301792,1195725663,842014764,990472246,1936092960,1128674877,151653736,543518317,539775811,1598903105,742868307,1697787936,540739944,1030973039,1749370422,1829308941,1394632046,1092627539,1398754643,539772741,1748382512,1864383241,926774118,224931888,1852639498,1396973669,1396777004,1163091789,807414855,157836595,1718558779,808926579,168650802,1701735689,743654944,1297301792,1195725663,909123628,990472244,1936092960,875575101,151653736,543518317,539775815,1598903105,742868307,892743712,540739944,1030973039,1748381751,1718159885,1481461024,1347442003,1829308941,1159751022,223563085,1981810954,1634300513,824210542,745027383,539766816,1396777004,1095589709,221595715,1696598282,1635148910,1851877746,151653748,543518317,1146507085,537463309,1769103734,544501345,1751463473,909582380,539762732,1598903105,1212367181,151653685,1918989856,1953390953,1698115872,924855400,740305975,1297301792,1128353119,168637768,1852121097,1918989924,1953390953,1829308941,1293968750,223434319,1981810954,1634300513,824210542,745039414,741881632]},{"sector":6,"length":512,"data":[1092627488,1298091347,893928257,537463309,1769103734,544501345,1751529265,959914028,539762732,1598903105,1212367181,151653685,1684956448,1769103734,225734241,1684956426,168650345,1852115469,1852661604,1953720684,1650551840,1646292069,224752761,990514442,539831597,1634953540,1835365235,1919249506,1868767290,1701998701,1684370291,1650553888,1864394092,1752440934,1886330981,1701080931,1887007776,221148005,757938954,1716068397,1701344288,1702127904,1634213997,1752440947,1868963941,1952542066,676613920,740915320,544500000,1701209458,1948283762,1635000431,543517794,1819307815,1937011561,168635943,757935419,1752452896,1769435749,1763730803,544417652,1864396385,1702061670,1868963956,1852383346,1852990836,1948281953,1701601889,1768171296,1886218867,168635943,1886325261,1701869940,1634476147,543974754,1702132066,1678313997,1414471778,691286056,676613932,740897840,807949391,1328294197,892348500,1414474793,691089448,676613932,740897072,875058255,1328294192,808724564,540739881,757084208,540487712,1767992616,1886330990,1701080931,1918988320,168634740,543319049,807949391,1328294196,875571284,1414474793,691351592,676613932,740898096,807949391,1328294193,825239636,1414474793,691090472,807411756,157823536,942678075,807415072,151653734,1327522404,875571284,1414474793,691286056,676613932,740898096,807949391,1328294197,825239636,1414474793,691089448]},{"sector":7,"length":512,"data":[676613932,740897332,875058255,990456114,540029216,925966381,1678313997,1414471778,691286056,676613932,740897840,807949391,1328294197,892348500,1414474793,691089448,676613932,740897072,875058255,1328294195,859056212,540739881,757086257,224801056,1650723082,676613920,740897840,807949391,1328294196,892348500,1414474793,691351592,676613932,740897072,807949391,539765041,1093677088,1414474856,691023912,840973065,539828272,168638258,543319049,807949391,1328294196,875571284,1414474793,691351592,676613932,740898096,807949391,1328294193,825239636,538979369,1749102640,676613932,153694256,942809147,840969504,151653734,1327522404,875571284,1414474793,691286056,676613932,740898096,807949391,1328294197,825239636,1414474793,691089448,807411756,745029936,807949391,990456112,540029728,926097453,1678313997,1414471778,691286056,676613932,740897840,807949391,1328294197,892348500,1414474793,691089448,676613932,740897072,808460320,1328310337,808462420,540739881,757086259,224801568,1650723082,676613920,740897073,824726607,1328294193,825305172,1414474793,691089704,676613932,740897073,824726607,1328294193,825305172,1414474793,691089704,874527497,539828272,168638260,543319049,824726607,1328294193,825305172,1414474793,691089704,676613932,740897073,824726607,1328294193,825305172,1414474793,691089704,676613932,153694513]},{"sector":8,"length":512,"data":[942940219,874523936,151653734,1327522404,825305172,1414474793,691089704,676613932,740897073,824726607,1328294193,825305172,1414474793,691089704,676613932,740897073,824726607,990456113,540030240,926228525,1678313997,1414471778,691089704,676613932,740897073,824726607,1328294193,825305172,1414474793,691089704,676613932,740897073,824726607,1328294193,825305172,540739881,757086261,224802080,1650723082,676613920,740896816,807949391,1328294192,925902932,1414474793,691417128,807411756,745029936,1093677065,538979432,1749102640,807411756,157827376,808853563,908078368,151653687,1327522404,892545108,1414474793,691089960,676613932,740898355,824726607,1328294214,808462420,1414474793,691023912,676613932,740896816,807949391,990456112,540554784,1714823213,1678313997,1414471778,691483176,676613932,740898610,841503823,1328294199,926034004,1414474793,691483176,676613932,740898610,841503823,1328294199,926034004,540739881,757084215,221722400,1650723082,676613920,740898610,841503823,1328294199,926034004,1414474793,691483176,676613932,740898610,841503823,1328294199,926034004,1414474793,691483176,924859145,539828280,168650295,543319049,808460320,539781172,875573280,538979432,1748250672,807411756,745026608,807949391,1328294196,875571284,1414474793,691351592,676613932,153695536,808984635,941632800,151653687,1327522404]},{"sector":9,"length":512,"data":[875571284,1414474793,691286056,676613932,740898096,807949391,1328294197,1093806164,1414474793,691482664,676613932,740901426,808460320,990472244,540555296,1714954285,1678313997,1414471778,691023912,676613932,740902195,858281039,1328294213,1160980564,1414474793,692400936,676613932,740902195,858281039,1328294213,1160980564,540739881,757084217,221722912,1650723082,676613920,740896816,807949391,1328294192,1144006740,1414474793,691023912,676613932,740896816,807949391,1328294192,808462420,1414474793,691023912,958413577,539828280,168650297,543319049,841503823,1328294211,1127360596,1414474793,692335144,676613932,740901938,807949391,1328294192,808462420,1414474793,691023912,676613932,153694256,811671611,1629498656,151653687,1327522404,825239636,1414474793,691089448,676613932,740896816,807949391,1328294192,808462420,1414474793,691023912,676613932,740896816,807949391,990456112,540565792,1717641261,1678313997,1414471778,692400680,676613932,740902194,841503823,1328294213,1160915028,1414474793,692400680,676613932,740902194,841503823,1328294213,1160915028,540739881,757084258,221733408,1650723082,676613920,740902450,841503823,1328294214,1177692244,1414474793,692466216,676613932,740902450,841503823,1328294214,1177692244,1414474793,692466216,1646279433,539828280,168650338,543319049,808460320,539781172,875573280,1414474856]}]],[[{"sector":1,"length":512,"data":[692138792,676613932,740896816,807949391,1328294199,925902932,538979369,1748250672,807411756,157824048,811802683,1663053088,151653687,1327522404,842082388,1414474793,691023912,676613932,740901171,807949391,1328294192,892479572,1414474793,691417640,676613932,740896816,807949391,990456112,540566304,1717772333,1678313997,538976354,1748250672,807411756,745026608,808460320,539781172,875573280,1414474856,691417640,676613932,740898354,807949391,1328294192,808462420,540739881,757084260,221733920,1650723082,807411744,745027120,808460320,539781174,909127712,538979432,1748381744,807411756,745027120,909127689,538979432,1748381744,807411756,157824560,946085947,1679830304,151653734,1327522404,926034004,1414474793,691483176,676613932,740898610,841503823,1328294199,858925140,1414474793,691221032,676613932,740897331,858281039,990456114,540042528,929374253,1678313997,1414471778,692269096,676613932,740901680,807949391,1328294212,926034004,1414474793,691286568,676613932,740897842,858281039,1328294195,858990676,540739881,757086309,224814368,1650723082,807411744,745029936,807949391,539765040,1093677088,538979432,1749102640,676613932,740896816,807949391,539765040,875573280,538979432,1748250672,1713388297,539828272,168638310,543319049,807949391,1328294192,808462420,1414474793,691023912,676613932,740896816,807949391]},{"sector":2,"length":512,"data":[1328294192,808462420,538979369,1748250672,807411756,157824048,946217019,1713384736,151653734,1327522404,842016852,1414474793,691154984,676613932,740897328,807949391,1328294194,842016852,1414474793,691154984,676613932,740897328,807949391,990456114,808464672,824192288,673199920,1702129225,1919361132,544241007,168634673,543319049,807949391,1328294195,858794068,1414474793,691220520,676613932,740897584,807949391,1328294195,858794068,1414474793,691220520,676613932,153695024,808525883,539828280,224800817,1650723082,676613920,740898611,858281039,1328294199,926099540,1414474793,691483432,676613932,740898611,858281039,1328294199,926099540,1414474793,691483432,824195849,757084209,925970720,1850288160,543974772,1970238055,691150960,1678313997,1414471778,691548968,676613932,740898867,858281039,1328294200,942876756,1414474793,691548968,676613932,740898867,858281039,1328294200,942876756,540739881,540553521,825303085,151653734,1327522404,959653972,1414474793,691614504,676613932,740899123,858281039,1328294201,959653972,1414474793,691614504,676613932,740899123,858281039,990456121,808595744,824192288,673199922,1702129225,1919361132,544241007,220815666,1650723082,676613920,740897328,807949391,1328294194,808527956,1414474793,691024168,676613932,740896817,824726607,1328294192,808527956,1414474793,691024168,824195849]},{"sector":3,"length":512,"data":[757086258,1714565408,1850288160,543974772,1970238055,691216496,1678313997,1414471778,691024168,676613932,740896817,841503823,1328294200,1160783956,1414474793,691548712,676613932,740902192,841503823,539765048,808464416,540739944,540029745,858857517,1227366455,1818588270,1869768480,891318389,151653673,1327522404,959588436,1414474793,691614248,676613932,740899122,841503823,1328294201,959588436,1414474793,691614248,807411756,745025584,808460320,990472240,942879008,824192288,673211955,1702129225,1919361132,544241007,168634678,543319049,824726607,1328294212,1144072276,1414474793,692334888,676613932,740901937,841503823,153889081,1747988528,676613932,740899122,824726607,990456132,808726816,824192288,673199924,1702129225,1919361132,544241007,168634679,543319049,824726607,1328294195,858859604,1414474793,691220776,676613932,740897585,824726607,1328294195,858859604,1414474793,691220776,676613932,153695025,875634747,539828280,543568945,1886339880,1701015410,1919906675,691561504,1678313997,1414471778,691351848,676613932,740898097,824726607,1328294211,1127295060,1414474793,691351848,676613932,740898097,824726607,1328294197,892414036,540739881,540030257,892411949,151653687,1327522404,858859604,538979369,1747988528,676613932,740897585,824726607,1328294195,1144072276,1414474793,691613992,676613932,740901937,824726607]},{"sector":4,"length":512,"data":[990456121,943010080,824192288,673211957,1919971139,1936024431,544370547,220805476,1650723082,676613920,740901425,824726607,539765059,942682144,1414474856,692203816,807411756,745027632,942682121,538979432,1748512816,807411756,157825072,909189179,539828272,221722161,1650723082,676613920,740898865,824726607,1328294200,942745684,1414474793,691548456,676613932,740898865,824726607,1328294200,942745684,1414474793,691548456,824195849,757086262,1714827552,1866672160,1668248176,1869837157,1633951858,151653673,1327522404,892414036,1414474793,691351848,676613932,740898097,824726607,539765045,808464416,805907560,745027632,808460320,539781168,808464416,540739944,540030769,925966381,151653687,1327522404,942745684,538979369,1747988528,676613932,740898865,824726607,539765048,808464416,1414474856,692138280,807411756,745025584,824726607,990456129,943141152,824192288,673211959,1919971139,1936024431,544370547,220815972,1650723082,676613920,740898097,824726607,1328294197,892414036,1414474793,691351848,807411756,745027632,824726607,1328294211,1127295060,538979369,1747988528,824195849,757084216,926429472,1678313997,1414471778,691286312,676613932,740897841,824726607,1328294196,875636820,1414474793,691286312,676613932,740897841,824726607,1328294196,875636820,540739881,540555313,942743597,1126703206,1869770863,1936942435]},{"sector":5,"length":512,"data":[1679848047,168634723,543319049,824726607,1328294198,909191252,1414474793,692269352,676613932,740901681,824726607,1328294198,909191252,1414474793,691417384,676613932,153695793,959520827,539828272,221722929,1650723082,676613920,740897841,808460320,1328310320,875636820,1414474793,691286312,676613932,740901937,808464393,1414474856,692334888,676613932,153696561,959520827,539828280,543570225,1886339880,1701015410,1919906675,694445088,1678313997,1414471778,692203816,676613932,740901681,824726607,1328294210,1110517844,1414474793,692269352,676613932,740901681,808460320,539781168,808464416,540739944,540041521,1630609453,151653687,1327522404,959522900,1414474793,691613992,676613932,740899121,824726607,1328294201,959522900,1414474793,691613992,676613932,740899121,824726607,990456121,945893664,824192288,673212001,1919971139,1936024431,544370547,220816740,1650723082,676613920,740898609,824726607,1328294199,1127295060,538979369,1748512816,676613932,740898609,824726607,1328294199,925968468,1414474793,691482920,824195849,757084258,929181984,1678313997,1414471778,691613992,807411756,745025584,824726607,1328294201,959522900,1414474793,692138280,676613932,740902448,824726607,1328294209,1177561172,540739881,540566065,1647386669,1126703206,1869770863,1936942435,1679848047,168634726,543319049,824726607,1328294210,1127295060]},{"sector":6,"length":512,"data":[1414474793,692203816,676613932,740901425,808460320,1328310328,1127295060,1414474793,692269352,807411756,157823024,1664163899,539828272,221733681,1650723082,676613920,740896816,807949391,1328294192,808462420,1414474793,691023912,676613932,740896816,807949391,1328294192,808462420,538979369,1747988528,824195849,757086307,1717776672,1866672160,1668248176,1869837157,1919361138,1936749935,151653673,1327522404,808462420,1414474793,691023912,676613932,740896816,807949391,1328294192,808462420,1414474793,691023912,676613932,740896816,807949391,990456112,811872544,824192288,168638308,543319049,807949391,1328294192,808462420,1414474793,691023912,676613932,740896816,807949391,1328294192,808462420,1414474793,691023912,676613932,153694256,1680941115,539828280,224814129,1095783178,1598378834,1163084098,1970365728,757081120,1953525536,1936027769,168626701,757935419,1701336096,1936028192,1718558836,1701344288,1629513075,1931502962,1701148017,778331514,1678313997,741345634,808460320,539781172,875573280,1414474856,691548200,676613932,740898864,807949391,1328294192,808462420,1414474793,691023912,808467209,1678313997,1414471778,691023912,676613932,740896816,875058255,1328294198,942942292,1414474793,691483688,676613932,740899124,875058255,1328294209,1110714452,809175337,151653688,1327522404,808462420,1414474793,691023912,676613932]},{"sector":7,"length":512,"data":[740896816,807949391,1328294192,808462420,1414474793,691023912,676613932,740898864,807949391,990456120,168636465,543319049,807949391,1328294200,942680148,1414474793,691548200,676613932,740898864,807949391,1328294200,942680148,1414474793,691548200,676613932,153696304,221786427,1650723082,676613920,740898864,807949391,1328294200,942680148,1414474793,691548200,676613932,740898864,807949391,1328294200,1127229524,1414474793,692269096,808598281,1678313997,1414471778,692269096,676613932,740901680,807949391,1328294211,1127229524,1414474793,692269096,676613932,740901680,807949391,1328294211,1127229524,842729769,151653688,1327522404,1127229524,1414474793,692269096,676613932,740901680,807949391,1328294211,1127229524,1414474793,692269096,676613932,740901427,858281039,990456130,168636467,543319049,858281039,1328294210,1110648916,1414474793,692204328,676613932,740901427,858281039,1328294210,1110648916,1414474793,692204328,676613932,153698867,221786939,1650723082,676613920,740901427,858281039,1328294210,1110648916,1414474793,692204328,676613932,740901427,858281039,1328294210,875833428,1414474793,691287080,808729353,1678313997,1414471778,691023912,676613932,740901168,858281039,1328294211,1144203348,1414474793,691352616,676613932,740898100,807949391,1328294192,1093675092,876284201,151653688,1327522404,1127426132,1414474793]},{"sector":8,"length":512,"data":[692335400,676613932,740898864,807949391,1328294196,875571284,1414474793,691482664,676613932,740901168,807949391,990456119,168636469,543319049,807949391,1328294199,808659028,1414474793,691090216,807411756,745026608,807949391,1328294209,942680148,1414474793,691548200,676613932,153694259,221787451,1650723082,676613920,740897075,807949391,1328294196,875571284,538979369,1748250672,676613932,740899120,807949391,1328294201,959457364,1414474793,691613736,808860425,1678313997,1414471778,691613736,676613932,740899120,807949391,1328294201,959457364,1414474793,691024168,676613932,740896817,807949391,1328294210,1110452308,909838633,151653688,1327522404,1110452308,1414474793,692203560,676613932,740902448,858281039,1328294196,842016852,1414474793,691023912,676613932,740896816,807949391,990456112,168636471,543319049,807949391,1328294192,808462420,1414474793,691023912,676613932,740896816,807949391,1328294192,808462420,1414474793,691023912,676613932,153694256,221787963,1650723082,676613920,740896816,824726607,168634693,1293969001,1431525453,168644688,543319049,875058255,1328294211,1161046100,1414474793,691023912,676613932,740901940,875058255,168634694,1768189541,218762598,942755850,1902446902,808525941,224931888,942821386,1902446902,808591477,224931888,942886922,1902446902,808657013,224931888,942952458,1902446902]},{"sector":9,"length":512,"data":[808722549,224931888,943017994,1902446902,808788085,224931888,943083530,1902446902,808853621,224931888,151653642,1734962273,221388910,990514442,539831597,1634953540,1835365235,1919249506,1868767290,1701998701,1684370291,1650553888,1864394092,1684086886,1769236836,1818324591,1718511904,1634562671,1852795252,990514478,539831597,1937008962,825045024,1937055793,1819042165,1918967929,1752440933,1718558821,1952805734,543584032,543516788,1835363949,1667853935,1635000435,778398818,758843917,1109404973,544437353,825045553,1918967861,1752440933,1885544549,1752637557,543712105,1920233065,1668637807,1948279909,544434536,1868787823,221144420,1862929674,1718511984,1634476143,543974754,1685221239,1678313997,1293951095,1145134926,1293954116,1145134926,1293954116,1145134926,1293954116,1145134926,540739908,168636464,544695305,1598967072,742671425,1598967072,742671425,1598967072,1213420880,1313677356,1347375199,807418633,151653684,538998628,1331646029,1293954130,1380933454,1313677356,743591775,1598967072,990466639,221786144,2003044618,1313677344,743591775,1598967072,539775567,1348423245,742937429,1697722400,990472240,224604192,2003044618,1313677344,1128546655,1313677356,1128546655,1313677356,1128546655,1313677356,1128546655,824195849,151653680,538998628,1096765005,539771716,1096765005,539771716,1348423245,742937429,1598967072,156258128,875634747,1678313997]}],[{"sector":1,"length":512,"data":[1293951095,1112760142,1293954114,1112760142,1293954114,1112760142,1293954114,1112760142,540739906,168638513,544695305,1598967072,742539859,1598967072,742539859,1598967072,1213420880,1313677356,1347375199,824195849,151653731,538998628,1096765005,539771982,1096765005,539771982,1096765005,539771982,1096765005,990463054,221262368,2003044618,1313677344,1145979231,1313677356,1145979231,808460332,745025840,1598967072,155271492,875700283,1678313997,1293951095,1431527246,1293954114,1431527246,1293954114,1431527246,1293954114,1431527246,540739906,168638514,544695305,1598967072,742544723,1598967072,742544723,808529952,539781169,1147096653,990466881,224604704,2003044618,1313677344,1380931679,1313677356,1380931679,1313677356,1380931679,1313677356,1380931679,857750281,151653680,538998628,1482640973,539775567,1482640973,539775567,825242160,1293954152,1094803278,540739905,168637491,544695305,1598967072,743460163,1598967072,743460163,1598967072,743460163,1598967072,156257603,942874683,1678313997,1293951095,1296260942,1293954128,1296260942,807414864,1748054067,1313677356,1396785503,857750281,151653731,538998628,1230982733,539771726,1230982733,539771726,1230982733,539771726,1230982733,990462798,221262880,2003044618,1313677344,1129204063,1313677356,1129204063,1313677356,1129204063,1313677356,1129204063,874527497,151653684,538998628,1147096653,539771717]},{"sector":2,"length":512,"data":[1147096653,539771717,1147096653,539771717,1147096653,990462789,221787168,2003044618,1313677344,1128612959,1313677356,1128612959,1313677356,1128612959,1313677356,1128612959,874527497,151653731,538998628,1348423245,742937429,1598967072,1213420880,1313677356,1398100063,1293954120,1431330638,990464083,221263136,2003044618,1313677344,1398100063,1293954120,1431330638,539773011,1348423245,742937429,1598967072,1213420880,891304713,151653684,538998628,1348423245,539775055,1348423245,539775055,1348423245,539775055,1348423245,990466127,221787424,2003044618,1313677344,1347375199,1313677356,1347375199,1313677356,1347375199,1313677356,1347375199,891304713,151653731,538998628,909652304,1293953824,1431330638,742475859,942755872,539697206,1348423245,742477903,942755872,539697206,1113542221,1145984335,844111916,723531320,1598967072,1280332353,908081929,151653680,538998628,909652816,807414560,1748054068,860889132,723531320,808792096,539781169,909652816,807414560,1747988784,860889132,723531320,842018848,990472240,221525536,2003044618,827334688,723531320,1598967072,1213420880,827334700,723531320,1598967072,1280658761,827334700,723531320,1598967072,1213420880,827334700,723531320,1598967072,1280658761,908081929,151653688,538998628,909652304,1293953824,1313431374,539771475,909652304,1293953824,1313431374,539776851,909652304,1293953824,1431265102]},{"sector":3,"length":512,"data":[742544212,942755872,539697206,1331646029,1465078869,908081929,151653731,538998628,1247759949,1293954127,1313496910,1293954127,1112170318,1313677356,1161906783,924859145,151653680,538998628,1247759949,1293954138,1313496910,1293954138,1112170318,1293954117,1095393102,924859145,151653684,538998628,1247759949,1293954131,1313496910,1293954131,1347051342,1293954117,1347051342,540739919,168638519,544695305,1598967072,539774026,1247759949,539772231,1247759949,539772236,1247759949,540739911,168649527,544695305,808529952,539781168,808464688,807414888,1747988529,825237548,157825072,808984635,1678313997,1293951095,1163157326,539776083,1415532109,743723845,1598967072,1195918168,1313677356,1212373087,540739911,168637496,544695305,1598967072,743853901,1598967072,743853901,1598967072,743853901,1598967072,156651341,943202363,1678313997,1293951095,1330470734,1293954134,1162633038,1293954113,1330470734,807414870,1748526642,941636361,151653731,538998628,1314868813,539775055,1482640973,742869059,1598967072,1195918168,1313677356,1212373087,540739911,168636473,544695305,1598967072,1195918168,1313677356,1212373087,1293954119,1129865038,539772744,1482640973,155666499,876159035,1678313997,1293951095,1111711566,1293954135,1464033102,1293954116,1094934350,539774028,1465863757,156518721,943267899,1678313997,1293951095,1431330638,742803539,1598967072,1179668304]},{"sector":4,"length":512,"data":[1313677356,1212240735,1293954118,1095524174,991970888,224606496,2003044618,1313677344,1448037727,1313677356,1448037727,1313677356,1448037727,1313677356,1448037727,1629502217,151653680,538998628,1298091597,1112757839,1313677356,1448037727,539776851,1130319437,1112756301,1313677356,1347240799,990467923,221536544,2003044618,1313677344,1397052511,1293954132,1163157326,539776083,1398754893,1112756052,1313677356,1330926431,990467923,221798688,2003044618,1313677344,1146047583,539771475,1281314381,1465074767,1313677356,1094931295,539771475,1398754893,1465073987,1629502217,151653731,538998628,1298091597,539776591,1298091597,539776591,1298091597,539776591,1298091597,990467663,221274656,2003044618,1313677344,1448037727,1313677356,1448037727,1313677356,1448037727,1313677356,1448037727,1646279433,151653684,538998628,1298091597,539776591,1298091597,539776591,1298091597,539776591,1298091597,990467663,221798944,2003044618,1313677344,1448037727,1313677356,1448037727,1313677356,1448037727,1313677356,1448037727,1646279433,151653731,538998628,808595760,807414888,1747989041,1313677356,1413829215,1313677356,1413829215,1663056649,151653680,538998628,1281314381,539775813,1281314381,539775812,808465200,807414888,1747988531,1663056649,151653684,538998628,909652304,1293953824,1313169230,743589204,942755872,539697206,1281314381,1163280709,1313677356,1413829215,1293954118]},{"sector":5,"length":512,"data":[1163026254,990463572,221799200,2003044618,1313677344,1414416735,1313677356,1414416735,1313677356,1414416735,1293954127,1380540238,990467141,224617248,2003044618,825237536,745025585,825307168,539781168,942747952,807414888,1748513073,1679833865,151653680,538998628,1096765005,539774273,1096765005,539771969,1398754893,742607937,1598967072,1413565528,540739906,168637540,544695305,875638816,539781176,943010096,807414888,1748514353,825237548,157825079,946085947,1678313997,807411831,1748514865,825237548,745027641,1630613536,539781176,945959216,540739944,168649572,544695305,1598967072,1347374924,743922254,1598967072,1347374924,539776858,1281314381,1464880975,1313677356,1480804959,540739930,168636517,544695305,1598967072,539774537,1230982733,1293954126,1431265102,1293954132,1431265102,540739924,168637541,544695305,1598967072,1280065859,1313677356,1347242591,1313677356,1347242591,1313677356,1347242591,1696611081,151653688,538998628,1230982733,1293954126,1313431374,1313677356,1414877023,1313677356,1414877023,1696611081,151653731,538998628,942682160,1344285800,540424243,1313677355,1414416735,807414833,1748119600,808460332,543700528,811999291,1678313997,1293951095,1279811406,1293954132,1296260942,807414851,1748513329,825237548,157825074,879108155,1678313997,1293951095,1279483726,1293954115,1414750030,1293954115,1279483726,1293954121,1414750030]},{"sector":6,"length":512,"data":[540739913,168638566,544695305,1598967072,742673475,1598967072,742675539,1697787936,539781168,808661296,540739944,168649574,544695305,1598967072,742671425,1598967072,539775567,1096765005,539771716,1398754893,990462530,808464672,1678313997,1293951095,1312907086,1293954116,1431527246,1293954114,1331191630,1293954130,1296260942,540739920,221524017,2003044618,1313677344,1145323871,1313677356,743591775,1598967072,742605889,1598967072,155337299,808525883,151653688,538998628,1096765005,539771982,1398754893,539771477,1482640973,539775567,1130319437,990466125,1664102688,1678313997,1293951095,1330798414,1293954124,1330798414,1293954130,1129471822,1293954124,1129471822,540739922,221262129,2003044618,1313677344,1279808351,1313677356,1380471647,1313677356,1279349599,1313677356,1380012895,824195849,168637489,544695305,1598967072,743198546,1598967072,743591762,1598967072,743195474,1598967072,156386130,825303099,151653688,538998628,1398754893,539774024,1398754893,539775560,1398754893,539774017,1398754893,990466625,1664168224,1678313997,1344282743,540424241,1313677355,1280266847,827334700,723531320,1598967072,743591762,942755872,539697206,1381977677,539774019,909652304,1293953824,1129471822,540739922,221262385,2003044618,827334688,723531320,1598967072,743196755,942755872,539697206,1398754893,539775560,909652304,1293953824,1095982926,1344285772]},{"sector":7,"length":512,"data":[540424241,1313677355,1380012895,824195849,168637490,544695305,1598967072,1414743380,1313677356,1397052511,1293954132,1330536270,1293954132,1162764110,540739911,221786673,2003044618,1313677344,1280658783,1313677356,1431128415,1293954124,1229217614,1293954134,1145659214,990467657,1664233760,1678313997,1293951095,1313431374,1293954115,1162108750,1293954115,1094934350,539774028,1130319437,155995201,858857531,151653680,538998628,1247759949,539775053,1247759949,539775053,1348423245,742937429,808464416,990472240,875770144,1678313997,1344282743,540424242,1313677355,1145852767,1344285780,540424242,1313677355,1381258079,844111916,723531320,1598967072,1413762124,844111916,723531320,1598967072,156390476,858857531,151653688,538998628,909652560,1293953824,1163288398,539775570,909652560,1293953824,1163288398,539776850,808464432,807414888,1747988528,824195849,168649523,544695305,942821408,539697206,1398754893,743720007,942821408,539697206,1398754893,743720009,942821408,539697206,1281314381,743720007,942821408,539697206,1281314381,156517449,875634747,151653680,538998628,909652560,1293953824,1297309518,539776851,808464432,1344285800,540424242,1313677355,1397574751,1344285783,540424244,1313677355,1447971167,155668556,875634747,151653684,538998628,1180651085,742671425,1598967072,1280658758,1313677356,1329808991,1293954125,1128685390,542133583]},{"sector":8,"length":512,"data":[875634747,151653688,538998628,1180651085,742544723,1598967072,1112888134,1293954130,1145462606,539776585,1180651085,1381386564,824195849,168649524,544695305,1598967072,1145323846,1313677356,1431127647,1293954124,1128685390,539774287,1180651085,1347243843,824195872,168636469,544695305,1598967072,1112888134,1313677356,1431520863,539775554,1180651085,743852356,1598967072,1447642182,540739922,221525297,2003044618,1313677344,1145849439,808460332,745025584,1598967072,743723846,1598967072,1347703622,824195849,168638517,544695305,1598967072,1162103878,539776590,1180651085,1464026188,1313677356,1397638751,1447970132,1313677356,1397638751,156713812,892411963,151653731,538998628,1180651085,539771980,1180651085,742933336,808661024,539781176,1180651085,156259411,909189179,151653680,538998628,808530736,807414888,1748525873,825237548,745025636,1680945184,990472248,875966752,1678313997,1293951095,1229348686,742671425,1598967072,1431128390,1293954124,1229348686,743264067,1598967072,1329809734,990466125,943075616,1678313997,1293951095,1229348686,742544723,1598967072,1431521606,539775554,1180651085,1447642185,1313677356,1145652831,156390985,909189179,151653731,538998628,909653584,1293953824,1128685390,1112952653,911220780,723531320,1598967072,1330463558,539772246,909653584,1293953824,1128685390,1112952653,1344285765,540424246,1313677355,1296254559]},{"sector":9,"length":512,"data":[156587599,925966395,151653680,538998628,808464432,807414888,1748513075,808460332,745025584,808464416,990472240,876032288,1678313997,1293951095,1229348686,539771980,808464432,1293954152,1229348686,539776083,1180651085,1347703625,824195849,168638519,544695305,808464416,539781168,1180651085,539771980,808464432,1293954152,1397120846,990466132,1664561440,1678313997,1344282743,540424246,1313677355,1296254559,1112430159,911220780,723531320,1598967072,1330463558,742739542,943083552,539697206,1180651085,1448037699,742736462,943083552,539697206,1180651085,1448037699,991974734,808988960,1678313997,807411831,1747989043,911220780,723531320,1598967072,1329812806,539773261,909653584,1293953824,1128685390,743001423,808464416,990472240,876097824,1678313997,1293951095,1095130958,539771972,1180651085,743200077,1598967072,1297040198,1313677356,1329808991,991973453,943206688,1678313997,1293951095,1397120846,539771477,1180651085,1380078931,1313677356,1229211231,1293954134,1145462606,156390985,942743611,151653731,538998628,1180651085,742671425,1598967072,1280658758,1313677356,1329808991,1293954125,1128685390,542133583,959520827,151653680,538998628,1180651085,1380078931,1313677356,1431520863,1293954114,1145462606,743593545,1598967072,1447642182,824195849,168637497,544695305,1598967072,742673478,808464416,539781168,1180651085,539776083,1180651085]}]],[[{"sector":1,"length":512,"data":[156259411,959520827,151653688,538998628,1180651085,1330926418,807414866,1747988528,1313677356,1397638751,742741569,1598967072,1414745670,990467923,1664692512,1678313997,1293951095,1179017038,742737234,1598967072,1212373062,1313677356,1414743647,1313677356,1414743647,540739920,221274417,2003044618,860889120,723531320,1598967072,1329812806,1344285773,540424243,1313677355,1129662047,743460175,808464416,539781168,808464432,540739944,221536561,2003044618,1313677344,1095321183,539771972,1180651085,1280658761,1313677356,1128875615,539774287,1180651085,1297040201,540739920,221798705,2003044618,1313677344,1397311071,539771477,1180651085,1112888137,1293954130,1229348686,743852356,1598967072,1229211974,990466646,1667313952,1678313997,1293951095,1095130958,743457860,1598967072,1280658758,1293954128,1128685390,743460175,842215456,991979576,811741472,1678313997,1293951095,1397120846,1347568213,1313677356,1431520863,539775042,1180651085,1381386564,1293954128,1145462606,156259913,1647386683,151653684,538998628,1180651085,742673481,808464416,539781168,1180651085,743723849,1598967072,1414744390,540739920,221798961,2003044618,1313677344,1279411807,1293954116,1229348686,539771980,1180651085,1347703618,1313677356,1397311071,990466132,1667379488,1678313997,1293951095,1179017038,1346717010,1313677356,1129858655,1293954120,1397120846,539775060,1180651085,156259411]},{"sector":2,"length":512,"data":[1664163899,151653680,538998628,808661808,1344285800,540424246,1313677355,1129662047,1346981199,911220780,723531320,1598967072,1297040198,539775049,808464432,540739944,221537073,2003044618,1313677344,1145849439,1293954097,1279680334,1412582468,1313677356,1145849439,742732364,1598967072,1346653254,540739913,221799217,2003044618,1313677344,1145849439,741492556,1598967072,1279544390,539767374,1180651085,744113228,808464416,990472240,1667445024,1678313997,1293951095,843472718,741428568,1598967072,843864390,1293954136,1346789198,743326036,1598967072,1413566534,990465601,811872544,1678313997,1293951095,1481006926,1128354388,1344285780,540424243,1313677355,1380992607,741428549,1598967072,1128612934,743461971,1598967072,1129204038,156259411,1680941115,151653684,538998628,1180651085,1296388688,1313677356,1280919135,827349042,1313677356,1364411999,539776082,909652816,1293953824,1397120846,1329811017,540739923,221799473,2003044618,1313677344,1314014815,1414416708,1313677356,1129530975,742739009,942886944,539697206,1180651085,743328083,942886944,539697206,1180651085,156454723,1680941115,990514531,539831597,543516756,1953719666,543584032,1936025716,1918967909,1903370341,2053465461,221144165,2003044618,741351456,858861600,539781176,808726832,1344285800,540424242,1313677355,1380011103,808467209,1678313997,1344282743,540424242,1313677355,1280527455]},{"sector":3,"length":512,"data":[844111916,723531320,1598967072,1145130828,743197761,942821408,539697206,1130319437,743658572,942886944,539697206,1281314381,1094992207,991972428,168637488,544695305,942952480,539697206,1230982733,742676046,942952480,539697206,1465863757,1447971138,1344285764,540424243,1313677355,1448037727,860889132,723531320,1598967072,156651341,221786171,2003044618,860889120,723531320,1598967072,743853901,942886944,539697206,1298091597,539776591,909652816,1293953824,1330470734,1344285782,540424243,1313677355,1448037727,1127234313,1678313997,1344282743,540424245,1313677355,1297241951,539775571,909653328,1293953824,1146249038,742609748,943018016,539697206,1381977677,1381190980,911220780,723531320,1598967072,1297106002,825952579,151653680,538998628,909653584,1293953824,1498636110,1414415699,539775557,909653584,1293953824,1498636110,1230521683,1344285780,540424246,1313677355,1330463583,539774806,909653584,1293953824,1296260942,1330533967,875641609,1678313997,1344282743,540424246,1313677355,1330463583,539771478,909653584,1293953824,1296260942,1161909839,911220780,723531320,1598967072,1448037699,1344285786,540424246,1313677355,1330463583,156913238,221786427,2003044618,911220768,723531320,1598967072,1448037699,539772226,909653584,1293953824,1296260942,742479439,943083552,539697206,1130319437,1398165325,911220780,723531320,1598967072,1448037699]},{"sector":4,"length":512,"data":[990466894,168641329,544695305,943083552,539697206,1130319437,1347833677,1344285765,540424246,1313677355,1330463583,743395414,943083552,539697206,1130319437,1280724813,911220780,723531320,1598967072,1448037699,990463303,168636466,544695305,943083552,539697206,1130319437,1280724813,1344285765,540424246,1313677355,1330463583,539772758,909652816,1293953824,1330274126,860889132,723531320,1598967072,156192330,221524539,2003044618,860889120,723531320,1598967072,539771466,909652816,1293953824,1095393102,1344285765,540424243,1313677355,744114783,942886944,539697206,1247759949,990468686,168638514,544695305,942886944,539697206,1247759949,539772226,909652816,1293953824,1095393102,860889132,723531320,1598967072,539775818,909652816,1293953824,1313496910,842729811,151653699,538998628,909652816,1293953824,1347051342,1344285765,540424243,1313677355,1330661983,860889132,723531320,1598967072,539774026,909652816,1293953824,1196056398,859507013,151653680,538998628,909652816,1293953824,1279942478,1344285765,540424243,1313677355,742869599,942886944,539697206,1398754893,743396421,942886944,539697206,1398754893,1330533445,875772681,1678313997,1344282743,540424243,1313677355,1413829471,1344285762,540424243,1313677355,1413829471,539772225,909652816,1293953824,1163091790,539777620,909652816,1293953824,1163091790,156913236,221786939,2003044618]},{"sector":5,"length":512,"data":[860889120,723531320,1598967072,1112819027,1344285765,540424243,1313677355,1413829471,1344285761,540424243,1313677355,1413829471,1344285779,540424243,1313677355,1413829471,990466894,168641331,544695305,942886944,539697206,1398754893,1162892357,860889132,723531320,1598967072,1347700051,1344285775,540424243,1313677355,1413829471,1344285772,540424243,1313677355,1413829471,990463303,168636468,544695305,942886944,539697206,1398754893,1162630213,860889132,723531320,1598967072,1196705107,860889132,723531320,1598967072,1213420880,860889132,723531320,1598967072,156258128,221525051,2003044618,894443552,723531320,1598967072,1230327875,1344285764,540424243,1313677355,743719519,942886944,539697206,1398754893,742673480,942886944,539697206,1398754893,155470920,221787195,2003044618,860889120,723531320,1598967072,1213420880,860889132,723531320,1598967072,743460688,943018016,539697206,1381977677,539774291,909652816,1293953824,1413635918,876290131,151653699,538998628,909652816,1293953824,1213423438,539771986,909652816,1293953824,1213423438,539771986,909652816,1293953824,1296654158,539774037,909653072,1293953824,1296260942,1212373072,893061447,151653680,538998628,909653072,1293953824,1296260942,1212373072,1344285767,540424243,1313677355,1397967967,860889132,723531320,1598967072,743593026,942886944,539697206,1281314381,990466886,168637493]},{"sector":6,"length":512,"data":[544695305,942886944,539697206,1281314381,539775815,909652816,1293953824,1330470734,743987798,942886944,539697206,1298091597,1482315343,842014764,157825125,221787451,2003044618,860889120,723531320,1598967072,742609986,942886944,539697206,1113542221,539772499,909652816,1293953824,1396858702,1344285778,540424243,1313677355,1448037727,990468179,168641333,544695305,942886944,539697206,1298091597,1481856591,877666348,723531320,1598967072,1145323864,877666348,723531320,1598967072,1145323864,842014764,157823078,221263419,2003044618,877666336,723531320,1598967072,1096241986,1344285776,540424244,1313677355,1465074271,539775041,909653072,1293953824,1396858702,743457111,942952480,539697206,1113542221,1346459475,875969289,1678313997,1344282743,540424244,1313677355,1465074271,539775041,909653072,1293953824,1396858702,743457111,942952480,539697206,1113542221,1346459475,877666348,723531320,1598967072,1096241986,909838672,151653688,538998628,1230982733,539771726,1147096653,539771717,909652816,1293953824,1413635918,860889132,723531320,1598967072,542331970,222508603,2003044618,860889120,723531320,1598967072,743593026,942886944,539697206,1113542221,539771732,909653328,1293953824,1296260942,1212373072,742537287,1598967072,156258128,221263675,2003044618,1313677344,1448037727,1313677356,1330529887,1293954128,1128685390,539775816,1180651085]},{"sector":7,"length":512,"pattern":538979376,"data":[156451393,221525819,2003044618,1313677344,1398031967,1293954132,1481006926,539774273,909652816,1293953824,1430675278,1347243843,1293954128,1313234766,155799109,221787963,2003044618,1313677344,1145980511,743002953,1598967072,1279479366,539777093,1180651085,1229867342,1344285780,540424242,1313677355,1163085407,156061780,222508859,2003044618,1313677344,1329808991,743460941,942821408,539697206,1180651085,1398035278,1762266455,1296900198,1347769176,151653712,538998628,909653328,1293953824,1330470734,539771990,909653328,1293953824,1330470734,539775318,909653328,1293953824,1296392014,539775821,909653328,1293953824,1330470734,168641622,544695305,943018016,539697206,1298091597,223434319,1684956426,168650345,758843917,1142959405,1935766377,1651336563,980575596,1650553888,1663067500,1702260335,544437362,1903390325,2053465461,1847616613,1700949365,1948283762,1903370351,2053465461,221144165,757938954,1160847405,1144139056,1918967878,2019893349,1684956532,1864393829,1685021552,673215333,2015381040,221129080,1930038538,1635023473,1634476130,543974754,1702132066,1678313997,538976354,538979377,538979378,538979379,538979380,538979376,538979381,538979382,825952567,168636485,543319049,741875744,741941280,741351456,741351456,741351456,741351456,741351456,154148896,944058683,1678313997,538976354]},{"sector":8,"length":512,"pattern":538979376,"data":[538979376,538979376,825952560,168636486,543319049,741351456,741351456,741351456,741351456,741351456,741351456,741351456,154148896,944124219,1678313997,824189026,824192048,824192049,824192050,824192051,538979380,824192048,538979381,842729776,168636464,543319049,741351456,741351456,741351456,741351456,741351456,741351456,741351456,154148896,942682683,1678313997,824189026,824192054,824192055,824192056,840969273,840969264,538979377,538979376,842729776,168636465,543319049,741351456,741351456,741351456,741351456,741351456,741351456,741351456,154148896,942748219,1678313997,840966242,840969266,840969267,840969268,840969269,840969270,840969271,840969272,842729785,168636466,543319049,741356320,741421856,741487392,741552928,741618464,741684000,741749536,154612512,942813755,1678313997,538976354,538979376,538979376,538979376,538979376,538979376,538979376,538979376,842729776,168636467,543319049,741351456,741351456,741351456,741351456,741351456,741351456,741351456,154148896,942879291,1678313997,538976354,538979376,538979376,538979376,538979376,538979376,538979376,538979376,842729776,168636468,1293969001,1431525453,168644688,543319049,741351456,741351456,741351456,741351456,741351456,741351456,741356337,154219313,942944827,1678313997,538976354]},{"sector":9,"length":512,"data":[538979376,538979376,858860592,842729778,168636469,543319049,741351456,741351456,741351456,741351456,741351456,741351456,741552945,154415921,943010363,1818561037,168650099,543319049,741351456,741351456,741351456,741351456,741351456,741351456,741351456,154148896,942944827,1678313997,538976354,538979376,538979376,538979376,538979376,538979376,538979376,538979376,842729776,168636469,543319049,741351456,741351456,741351456,741351456,741351456,741351456,741351456,154148896,943010363,1852115469,224815460,1650723082,942874656,959651884,808722476,825499692,842276908,859054124,875831340,892608556,909261577,151653680,538993252,539768372,539768628,539768884,539769140,539766837,539767093,539767349,990458677,221787698,1650723082,875896864,892674092,909451308,926228524,943005740,959782956,808853548,825630764,926038793,151653680,538993252,539767350,539767606,539767862,539768118,539768374,539768630,539768886,990460214,221787954,1650723082,808919072,825696300,842473516,859250732,876027948,892805164,807411756,807411756,942816009,151653680,538993252,539768375,539768631,539768887,539769143,539766840,539767096,539766816,990458424,221788210,1650723082,859316256,876093484,892870700,909647916,926425132,943202348,959979564,809050156,959593225,151653680,538993252,539766816,539766816,539767097]}],[{"sector":1,"length":512,"data":[539767353,539767609,539767865,539768121,990459449,221788466,1650723082,926490656,943267884,807411756,807411756,807411756,807411756,807411756,960045100,1093810953,151653680,824205924,824979504,824979760,824980016,824980272,824980528,824980784,824981040,990459696,221790514,1650723082,807411744,807411756,807411756,807411756,807411756,807411756,807411756,807411756,1110588169,151653680,538993252,539766816,539766816,539766816,539766816,539766816,539766816,539766816,990457888,221790770,1650723082,807411744,807411756,807411756,807411756,807411756,807411756,807411756,807411756,1127365385,151653680,538993252,539766816,539766816,539766816,539766816,539766816,539766816,539766816,990457888,221791026,1650723082,807411744,807411756,807411756,807411756,807411756,807411756,807411756,807411756,1144142601,151653680,538993252,539766816,539766816,539766816,539766816,539766816,539766816,539766816,990457888,221791282,990514442,539831597,1886593077,1702064737,1869768480,225669237,151653642,824205924,824981552,539769136,539766816,539766816,539766816,539766816,539766816,990457888,221267250,1650723082,807411744,807411756,807411756,807411756,808530220,825307436,842084652,858861868,1160919817,151653688,538993252,824979488,539767857,539766816,539766816,539766816,539766816,539766816,990457888,221267506]},{"sector":2,"length":512,"data":[1650723082,892416288,807411756,807411756,807411756,807411756,807411756,807411756,807411756,1177697033,151653688,824205924,539768369,539766816,539766816,539766816,539766816,539766816,539766816,990457888,221261875,990514442,539831597,1886593078,1702064737,1970300448,1869768480,225669237,1393167626,1380405318,1397773647,1970365728,1095783200,1598378834,1163084098,673196832,757081120,2054255392,543318388,151653673,824205924,539768625,539766816,539766816,539766816,539766816,539766816,539766816,990457888,221786163,1650723082,942747936,959525164,807411756,807411756,808595756,825372972,807411756,807411756,825441033,151653680,538993252,824979488,539767346,539766816,539766816,539766816,539766816,539766816,990457888,221786419,1650723082,858927392,875704620,892481836,909259052,926036268,807411756,807411756,807411756,842218249,151653680,538993252,824979488,539768882,539766816,539766816,539766816,539766816,539766816,990457888,221786675,1650723082,959590688,807411756,807411756,807411756,807411756,807411756,807411756,807411756,858995465,218762544,757938954,1766072365,1936941427,1818389861,540701285,1818386804,1718558821,1701735712,1768845165,1948283747,544498024,1851877475,1763730791,1752440942,1919950949,1852142437,1864394083,543236198,1414086999,758843917,1763716397,1920234350,1769235317,221146735,1997147402]},{"sector":3,"length":512,"data":[828531060,544695305,842150704,858795112,745025842,808596272,858795112,745026354,1698246960,825240680,745039413,1697984816,858795112,224931891,2003044618,959524896,168650854,1650553975,1634476082,543974754,1685221239,1678313997,1313677431,1279477343,168646725,544695305,1180651085,1230195012,1678313997,1313677431,1313162847,151653705,1293973348,1229348686,223627598,2003044618,1598967072,1447121734,151653701,1293973348,1397120846,223822676,2003044618,1598967072,1163154246,168646222,544695305,1180651085,1465078867,1678313997,1313677431,1414743647,168646483,1415012174,1695105601,673215857,539828260,1650553975,790636850,168636960,758843917,1142959405,1935766377,1651336563,980575596,1650553888,1713399148,1864397423,1634887024,544433262,1667852407,1634213992,1629513078,1718182944,1701995878,1830843502,1869440366,543385966,225603430,757938954,1752440877,544368997,1646277171,1981838441,1769173605,544435823,1748383272,1701998624,695757158,218762542,1635019786,154234722,807434084,745027641,1748459824,960049196,825240680,745038645,1664692528,825240680,745039161,1697984816,909126760,168650852,544695305,1751540528,1684090924,1630547048,808216629,745039414,1748055600,1681469484,909126760,808216624,224944953,2003044618,1650667552,1664101480,808216673,745039457,1751277872,1953237517,846160481,1650551840,1998613605,224686703,2003044618,1598967072]},{"sector":4,"length":512,"data":[1162106691,1678313997,1313677431,1347240799,168641619,544695305,1130319437,168644932,544695305,1180651085,1313162316,168641622,544695305,1180651085,1330926418,168641618,544695305,1180651085,1163280723,151653700,1293973348,1397120846,1447970132,151653700,1293973348,1313431374,168641619,544695305,1230982733,1146373458,1678313997,1313677431,1146047583,168641619,544695305,1298091597,1146312271,1678313997,1313677431,1414877023,168641619,544695305,1348423245,1145131087,1678313997,1313677431,1347375199,168641606,544695305,1348423245,1095258965,151653700,1293973348,1431330638,1145456723,1678313997,1313677431,1413829215,168641606,544695305,1381977677,1145459781,1678313997,1313677431,1094931295,168641619,544695305,1398754893,1146310484,1598949901,1111577676,1902452815,606609525,1814048032,1868718452,790636850,168636960,758843917,1142959405,1935766377,1651336563,980575596,1650553888,1713399148,1864397423,1634887024,544433262,1667852407,1634213992,1629513078,1718182944,1701995878,1830843502,1869440366,543385966,225603430,757938954,1752440877,544368997,1646277171,1981838441,1769173605,544435823,1748448808,1701998624,695757158,218762542,1635019786,154231138,807434084,745026405,1748133168,828715052,1697655912,808216625,745025637,1748002096,1953237517,845242977,1650551840,1998613605,224686703,2003044618,1598967072,1480803658,151653722,1293973348,1330405198]},{"sector":5,"length":512,"pattern":0,"data":[222580815,2003044618,1598967072,1347374924,168641605,544695305,1281314381,1515212623,151653700,1293973348,1330405198,1162760271,151653700,1293973348,1330405198,1515081807,1309281604,1096043615,1696612674,673215857,539828260,1650553964,539570785,221388847,990514442,539831597,1634953540,1835365235,1919249506,1635000378,543517794,1814062703,1634427759,543517794,1953721961,1952675186,1936617321,168626701,1801678700,543318388,1700946284,1870078060,168649842,544695305,1630548272,825240680,745026096,1747988784,825307180,825240680,745027632,808464688,808463464,825240680,151653736,807434084,1751330865,808529964,808216628,745025586,1748054576,959590444,808216674,1751541042,959590444,808216627,1751475506,1678313997,842014839,745038392,1684353584,842017896,745025593,825831984,842017896,745025893,825438512,842017896,745025637,808661296,151653736,807434084,1751265841,842084396,808216673,1748578353,808529964,808216625,808216632,808216633,1751265329,808529964,168650803,544695305,1748513072,959524908,825240680,745038896,892350768,842017896,808216632,745027890,811676208,842017896,224932193,2003044618,909652000,942681192,808216631,1751461937,808529964,808216630,745025587,1748054832,1598949901,1262702412,1970365705,539240480,1869357101,1635019619,790636898,168636960]},{"sector":6,"length":512,"data":[1449324777,16286544,-654900611,-661985063,1947198336,1452064262,-1979699992,-771444264,266567915,582878836,1828951,-478094198,-1106873313,250107832,-125609984,-570131200,-557621511,-20750647,1342224331,-150992200,-614951965,-1010180568,-2081649835,1994329324,-59339276,-1979708999,282349060,805684358,-203248848,-1017256565,-2081649835,1465263340,-1929087349,96072318,-1952058624,1190528638,125075707,2147182208,-609604176,-1059458450,-656542503,-908137255,-2080481569,1930624638,-641672911,-572925700,1190591614,578044157,-595686057,1610584552,-1962929736,-1054081458,-596210367,1015083011,1174566192,-375065783,280494229,-28955904,-587261720,-581532650,1190591614,125043197,1450970844,1476284159,-388202867,-1923088558,1317789046,-1048358402,536445711,1093957465,2130770307,774944783,-1327892565,-1179978960,199950352,783328499,1096106,-201437653,-8552284,1325626672,2105604075,24456959,-1540560049,-1515573584,1706599845,-27882709,75092515,766827255,180261547,309504,-151530957,-1309023662,805591044,1610277546,1575324510,-1677720382,1947633469,-13722362,778178094,1645092607,259375139,1681819950,109850210,-1530961306,-821621246,1653383726,1679753006,-402427294,1623916545,-1944130421,702667,326250957,244111502,512516718,45703788,-843042048,-1207602383,567102719,-1956476253,-2134297640,56735038,-2092367502,146341834,-2093888256,-919402301,-855635784,341216049,-1944355352]},{"sector":7,"length":512,"data":[-939388984,-1207375423,835518473,-65773943,1638538891,-855637320,1638703921,1638932107,-855637320,1639097137,-1185384770,-1951596542,-1206023176,835518466,92903794,1466364130,1048636723,1946182284,-1203419902,835519237,1652559497,1652694665,-2076276378,-1232519582,2124636806,50772066,243872205,512320116,-1989778826,1046640702,1652209289,2059296614,1716676184,-1095052749,-662000637,62441868,-2093888254,-25098558,-311273343,800283238,-855506760,-1978778831,-1961921183,862064150,269387721,33667170,1629434317,1746846712,585842701,1075603486,1746803947,384516148,1078683678,1746800875,183189596,1080715294,1746797803,-1909571451,-1889375202,-2141069306,6458430,1617065247,773778571,1651252878,-1961474421,1317738590,475433754,-1944160629,1586239566,-1153531874,427032673,-1990037341,-949849570,411113030,-1990098783,1719671878,-346489317,373737250,1719674770,1187511323,-1553839076,512320088,243884622,378102364,914973268,1629446732,1717593803,773778571,1651252878,1166763623,1569417004,-1956223184,1718039629,1731745163,1732015499,1731218828,-2143527540,6404926,1889739636,1914603874,-949590174,411118661,258342912,1635780279,1166632551,1702913848,-346489291,-949590227,663891013,-2140733440,1744581989,944097126,25164,1649976166,1649286793,1650200201,1410763110,1278642530,1634082658,-2144416922,6458430,-899283852,46792708,1048587776,1946182284,-53516799,-661731188,646697102]},{"sector":8,"length":512,"data":[113729920,83779970,1005061918,-402426603,1069167700,338946107,1085932404,112955,1008996584,-1962445555,1315037718,993796587,1060949108,537673844,373055788,-1818748809,-785895704,1251445731,-502872262,-1087830175,-755014854,-829708053,1656547713,1639845379,1097022143,-1426906960,-1321293634,-391843065,654259146,1102995842,-467760325,1664794465,1952332972,1963539663,1665841160,-348941336,222079727,1397746293,1530110440,-2132904629,6405182,116839285,1954570685,1051704012,-402651207,11809681,-1108666675,1712928744,115589954,-726868,-943457566,-396262906,1947024389,1310624531,642902114,1713866984,1640240777,1640504969,1635788427,-1587332417,300442056,-1438994381,1653606086,956742912,1640504971,-1575450648,74736270,1715011005,-10369887,-1440698155,1008931304,1012823053,-943360965,6459654,1664794368,1918975062,2004499462,-1428216830,1947024556,1950039056,1948269580,1949973512,1963539460,-11697952,658565248,264132174,-2082567357,-829750586,2042634924,1372489723,985648683,1587999587,-25096588,-512602954,-639017378,-25236994,56256702,-180584393,749475698,-1740147467,1209889864,1950881652,1929591819,-1878652848,16050530,1653608064,-337033664,14018816,1653777068,243320970,1578132112,977054808,-823609227,1947024422,1966816260,1664794541,-374685302,-2035548024,1013092614,1587180800,222080088,993797236,1021911156,-1858173953,-2055929758,1963142238,647489562,125046076]},{"sector":9,"length":512,"data":[1640504971,-369175831,-1851719970,1664794466,-1085543510,-778869958,28281827,645130329,980684092,427041340,359933756,772315624,2147438138,-704670946,1681588097,-342682249,-1394570730,192154940,175424570,989823402,-370117020,-391315676,222045720,985581173,-937522333,378234465,-812949052,1374211627,378103550,1877565892,-1834285826,46371499,-1442724949,-1825142333,1017929314,1006924813,-1106545349,99309748,1653814921,985640030,1947024483,1966816260,49473795,440663,-1410088909,76238431,-2132811995,1962934909,-440445133,833880,1969205234,1976109863,38046217,1379720996,-377469067,-1998981620,-1528298931,623151653,1346232287,-389647020,-1041554025,1653751424,1462138112,-1185298241,-1343094778,1444574559,629663917,276118076,629139544,727314363,-1576564007,-1779735918,-1463855266,1816921,1594370024,226520946,73238532,1931017088,61969163,-33232686,1256915732,-1341377152,519798786,208938615,1914502016,-1878097863,854270050,1965571200,749513771,1996962864,88442888,1948859564,-33101541,1009790124,-1997113593,78644549,1965030272,67993609,48956848,1161429168,-2046331902,3932741,-521545867,300461057,-399085049,1300760354,140347655,-401975927,-109042462,1008893698,-400657094,132654293,139299591,-1996141175,1435043933,537755658,-385766935,-1159200603,1968913444,17662198,1009037544,1324315741,1505279831,-402650951,1918830432,284917827,-1015020173,-2145522936]}]],[[{"sector":1,"length":512,"data":[1962935677,613148695,1965702222,1569211919,612362245,-402214424,1374357269,294272,1569195381,-2146833660,1962935677,90015752,-349937432,-45946568,109897900,1009014248,134968362,1560348493,173347080,-555212821,608167942,-1195419826,-389467303,1918830324,92111060,-1999735552,652739933,1949121572,1965767880,-9901821,-2080413463,1962935421,125665325,-2145094656,108331069,-384823936,243269866,-1333763440,122025474,1074230276,-1878097856,1166541922,-370873597,226557132,71666178,-1476049654,-165317360,1963198277,-1878097889,1166770274,2009348612,1472497154,-1185372993,-1343094776,-1143966369,1793786374,1653608064,71666308,1963345162,71666440,1166656646,67484420,359808,1300893813,284786692,-511662724,83460103,243285109,-1979161968,61933165,1166730706,1947483141,1962949770,1007988738,612400144,-756545017,1166688741,1962949636,97353733,272382187,119822716,87877642,-885389708,11731572,138775121,-120453199,157649497,326485050,1963607355,167819022,175376477,-914307074,-2147226816,2106097865,72190211,588507214,1007470467,1008169997,1007907899,-2129890004,1935892223,586934278,-369293591,96926684,-1070377217,-1184720961,-1410138105,1653814923,1928146092,1946631189,-1576241401,-253009249,1654853248,-370545919,-1387332689,-768359290,-150974277,1653974003,1996545853,1926773780,-1609662448,-527826590,1654235820,1654853248,-1825142526,-1963816094,-1923732324,-1086186569]},{"sector":2,"length":512,"data":[-1365023942,3976290,1031812212,1016296703,-737643968,-1540978672,67300194,-1953261554,-782693745,-1232631061,1946518616,-2116944114,1515650940,-947662988,-372577524,1031864164,-1594329601,279470755,78124148,145231989,915138932,1015046803,-385649409,-1851720933,1946172514,1978678305,-1559824887,-344719006,-1784605461,1040065634,-545849089,-1186851649,-1359871993,116839797,1947230864,1653973266,1996554045,1108066246,-234878535,-1950583378,191011614,-1609796389,-654941534,1199890640,1722316039,1640240779,1640504971,1653606134,-1341819902,-101390181,1013092768,-402426880,-1868498454,1954588770,-1979440104,-2141024730,-1005960988,158614564,91505724,-873961552,-1876522247,1654890594,1653475062,-1475644352,-166693600,192233668,1084755691,-990509707,-1341819903,-106633114,1013093024,-401837056,1681717658,243271026,-1591713136,-125082987,37810049,4003699,-2145095166,23240718,101201956,613900953,-338162681,-754732771,-771283729,-1727657760,-1947741854,-2075987067,1342665956,1407717296,101341433,1273520801,1654235641,1654851318,1343321090,1492729320,1653606134,-1979354104,-114235196,1654079115,192216843,-1258074742,141921536,-1946606616,191011646,-1609861889,-1852284254,-402098803,1049360656,-16031075,1972177268,-1852265468,1727594472,1640240777,1654603392,-166497533,627216390,116787061,1950376611,-1626946043,-2118319262,700573784,985598179,-391842973,-202822582,42199288,1166684395,-1324932092]},{"sector":3,"length":512,"data":[148951555,-345859834,71666209,-1583216860,-1994921118,-345859266,33945105,1049184117,116089495,117720566,243284853,-1609538909,86794916,1081356924,51707140,1654853248,39684632,158653194,1654853248,1975728644,-1576650220,-2045938590,1013096966,-2147060480,73573134,33679811,1006781834,1914991617,-1592885238,65732962,1006781834,1009284096,-2146994942,543335182,71043563,243324789,-1975491933,-2073910754,973370587,-1564052029,243294882,-1023122781,-1979592472,-346491513,-167595893,1080200710,2105738869,125042698,1654853248,-972771264,-1996356539,-1570596034,1049191074,-1329372515,26339337,-1610612039,1101554320,27795316,67895924,-2146648540,-1973251934,-2141024730,69484772,91538442,24396860,-1004631231,-1948712095,-2090744306,1166737617,173378312,-786709717,-1325054584,989385223,996898244,-966298174,-352254907,-1004631135,244065,-1979034229,1048642117,16802453,1010893170,1007186944,1007907844,-163613430,1080200710,-771028875,45102197,78648043,1654853248,63013696,1653475062,1224832064,244046083,-779918906,71665664,721962379,-1982784573,1435043141,-1656846073,-722877598,1827231744,-1977700100,938149213,753606576,1006978442,1978103556,-1626946043,20710754,548461684,565188331,1166676715,1912814597,1929788621,-1626946043,581960802,-1325048438,149148163,-2141021922,40018702,1946436922,8513817,738477450,1929788440,-771509772,-1727657760,-1559330718,-2134703006]},{"sector":4,"length":512,"data":[-278748378,-1324857973,-336014841,138775301,-1002831696,1161515893,-1337035510,5105665,-1995938422,1049166917,-154967395,274899718,116787060,1946444451,-1557757904,1015085922,-2147126238,274899726,1654785734,-1259776000,125665787,267059457,17268097,-1979127037,-1739014265,1946436923,904485057,41779451,951546880,-1301020091,-152114344,376767493,1946289654,71666437,112204523,1653606134,1209103364,1166675691,1964981252,88443395,-1072953564,1654195721,1654853248,-1757509374,758956898,743444852,1477065776,609224818,1010904287,-1007331322,259271996,-1191165976,-771031039,-16108427,-1396493707,-1962922008,-1177941045,561250305,-604515593,13796341,1954596598,-359594,-940175243,-2146732928,141950975,1954595830,1094828803,-617364671,938005043,171209245,803777752,-152407523,662040774,-788527943,-489500189,-2132218886,393544185,1946286976,-75480555,1108308994,1946483584,-75480567,-385649656,1435038984,76268294,1021304613,1344435525,1686815882,-538673150,1505279831,571729,-645156878,1968725849,-738769400,-350698624,-220624111,722433455,-75478055,-2147257840,1178994883,-1007041544,773448680,1653554816,1711371264,369499713,401795103,-2144461049,6459198,-211353228,-2144428122,6459198,-1972960908,24444756,1971988071,369499903,400615455,1973296903,1365895938,1711740422,985653131,-388461469,984623136,956743082,-1956229530,776365766,1653554816,-1123847168,-704694019]},{"sector":5,"length":512,"data":[-1423957832,82363018,539015208,-389641557,548939771,1347988256,-1339560984,1265019450,1724091238,517340995,-397205738,526329870,-2144446201,6459198,-479788684,-10360573,118890262,474736835,-1961103384,472049882,1006633402,-401902579,182983648,1976705820,-225754623,1963451624,1083817490,-218097223,1090895524,-383287576,1321412546,985660536,-389837981,1465264000,-396798274,1583294311,-855636296,-2096270799,-1047853369,-1960351768,660793538,-1023209626,258353013,-1050225918,1405028586,-1254195101,91358049,-349749528,658696200,-1423957832,1667350443,904446603,1667612455,660924499,147030875,-1293378069,459335707,-1981228405,113179,192154940,-400862744,-769451151,-398327435,-225765780,-1089038360,-1014340806,-1339620632,988326432,-1203735545,-75496956,30900256,1316106701,-504839797,-1438994394,1653358208,1711830016,282108943,-1960390680,650832066,-1196810064,-805436926,1743312501,-269987050,1313037094,-1312575883,-472689918,-1900006626,38243288,1528764299,-1339645976,28813882,985647595,1091550819,-1104773400,-890568703,451405996,-1420603208,-1582613836,2045272456,648865830,1638282891,509819583,-1979686168,-1962934226,-1962933986,-1962933482,643492038,-1968562000,643426501,-1951784784,642443459,-1951784784,641919170,598352048,1444771035,146690641,178432,125099579,2353227,-1409283911,-524279126,1582914298,1928463135,-41925090,-2147126195,326458109,-349814296,-388068457]},{"sector":6,"length":512,"data":[91489865,1860752267,-1009021429,1008370920,-401705971,1323833852,-703166182,-669087391,-502872223,-1089270687,-1070374086,-218097479,552567723,-1582596176,-1599381034,-1196793384,-1599405933,-1331011111,-1969116289,-149900959,1673135585,-1426009469,-1816870262,1664794283,-2018230095,1946543336,922693132,359293322,-351908632,1914031362,1673182797,-1587332417,-2115477032,1641455909,-1205503000,-1918164960,280571997,783592448,108142652,41385532,663281802,627435587,-492166992,-414857496,-386168019,109258118,-2096078378,6412310,1681587841,1019459186,-1189579507,512426111,-1956224562,1717684758,-788270453,-4555661,-1971852289,-461308316,1157398751,537672565,58027068,1023233769,-385649303,2017263072,1048578677,1912758709,-16717565,58027324,1023306217,1007187042,1006924919,-1576372892,1860723177,1947024409,1008733346,-401377940,99096929,-473265383,422307846,-376444087,-2135297772,1209961216,390129762,-1994843928,1717685790,-779357557,113705195,332095970,-396243295,984622240,868649898,501764333,192174090,-1542494651,-1981280016,1355189028,-1205566488,1487609888,-399483507,-829746212,1913635203,1925856004,734694146,-102219314,1642700819,1640898190,1685354300,2020893756,1961698129,1353475841,-1339796760,1012443680,1006924320,-1342015874,126363182,1491264067,721424569,-1207470904,-1431625696,521599458,-902395546,331933793,1642675840,-972655262,-1959925947,1139299067,994990628,1175155698]},{"sector":7,"length":512,"data":[-1956431169,-379466210,-1992097968,-1017001450,-2081828543,930610942,24440099,-437736089,-1440698333,-1226052126,-788283005,-2081828375,460848382,24440099,592489831,1728148717,599976109,599713880,-492166992,865070050,-376706058,300478464,1209961235,382593122,1008209896,1379890189,-1961455384,1664793295,-1956656597,-956086079,501799282,-1896707309,-1891729213,242483298,-1956194421,-1223727366,-1223727370,-1527552055,118890262,-396260161,199758563,-1014250733,-1339859992,113093178,-1891729351,74711138,1715011005,-704658805,-1423957832,1393742824,1527340264,-401415704,783295291,-397257814,1532633958,862145214,-1136754487,863240289,1656405846,1639986827,1640117819,401082226,1913499668,-1136754665,208997729,1963605120,117327367,-521444932,1639752364,1639986825,-401609890,108335824,567085236,11797739,540808909,222049140,138162036,758914420,-108851084,-2002619646,386459652,-1404986510,-941092117,985614866,-481891485,-397522548,-2048191826,-351095320,-2011307136,1374759684,-672617390,1522698774,304539737,-1089962008,149447052,305195026,1664794434,410258748,1946665718,-2083391732,548406465,669625075,168671487,-16324181,857905641,1209961417,350677090,1653554816,1712026624,1097255467,1382437222,-903150101,-397258431,854070956,-2117104875,-2140980503,6459198,1600536436,-2090417266,729022969,-1721345946,1727133542,292864011,1664794214,1365639168,1722050547,1967679065,-896833809]},{"sector":8,"length":512,"data":[-1102650521,1744003898,1715399588,1664786521,-341153805,-1014079692,1946286467,-768387036,-2097022845,-235470638,175423499,1365457598,1213834483,-896797067,985534435,-341511325,983587080,-213276061,-1022945622,-1105761601,-1850907846,-1385821213,-1817341338,-498673665,-860830733,-2012770328,76202788,57986108,-1022917656,1650464315,1048695412,1094410720,1048584308,1946182458,2114882329,722789218,-402607903,182976591,-402542592,637730887,-389848450,-1545076731,1711336447,-594814157,-1073794202,-1830283297,-1592822527,915104364,-796171666,788514955,-1969134988,-1947169951,-2134340656,6458430,-10092172,-2090698706,-10330058,-13408573,-947651445,22800386,520029557,-2134678912,6458430,-10092172,-1016953826,1649320339,-1822302557,-1089327896,-1070374086,1491619499,1947024405,-568423660,336193633,-1419341210,-28857453,-345818618,392347620,-59160,-396206026,1239944833,1653514758,-385876039,1348077149,1493116392,443927612,1642086017,309674036,-385876039,-868481467,-1989801868,-379430882,378216087,-186097184,1006272781,-402426815,2112429703,521600236,-1961874968,-396238826,985599451,1083358819,-1591714072,1776837234,-1438994400,-396201823,-1813503904,-330110688,1393845224,348055634,-401318936,1482233005,-376704885,-1039941237,331778896,-402426685,-396877768,548937780,-980702432,-1957641685,1958943686,1962085127,538896387,538634328,-1289728535,-26965504,-2132810624,460671484,-461315958]},{"sector":9,"length":512,"data":[1476165855,1048579444,1912824245,1157398538,1128465781,-401310488,1256723488,33259540,209127540,535161068,-387118101,99295192,-924258970,537192735,-1962929944,-1906201034,1969336862,512634373,784556464,1650474627,-879967488,-219656012,1360753919,-1202695342,835518470,216121688,184871617,-388330543,1515913279,1048822617,1946182064,-397009345,1552547766,-1021354480,-1092070988,-401902337,45613087,-1959670528,1048822744,1946182064,-397009381,1552678802,-1021354480,1962908904,922693131,560619914,-1023408920,1438851533,-326898549,118883890,-1982955895,1586090614,-497645090,-1981395319,1183574598,-700020480,1317652787,-61961746,-1946268023,1183385158,-230258192,-830567066,-1207673205,835519232,-1611766134,-1949401461,1586221686,-497644578,-1947840885,-922228154,503317698,521560070,2117504358,378189913,20721613,520577525,-1105258813,80101568,1083816484,-972281112,-1011217148,203548992,996247713,-1017017850,-726960,1381175157,-1960899608,-1956491722,1516394558,-389851045,678695028,1962859752,-5773307,-2144421006,39972158,-796258702,-1023478221,-109902408,48964045,1941579213,180218175,1013049504,-1173981952,-924237449,1946593291,1310604047,-2130283166,1946222842,-358422269,-91491445,-1170407240,-337117056,-385649666,-1198322822,-919387646,567136819,1642596086,-394365690,141885041,-398419526,1793788807,-1895863832,1449232390,909846099,-140771326,91463134,37094182,309504]}],[{"sector":1,"length":512,"data":[-422454477,-85797935,-652478677,-633665422,-264568203,1583024755,-398330438,787155787,378101339,1084449336,1107343458,-768358093,263856589,-1311300864,66048772,-1187007241,-561054208,-964615731,-1053093920,1052045172,521544141,1052004547,-161799731,73525254,-343865484,-628948480,-397257984,57999066,-1089799192,498688552,-205507840,939954091,1074171746,966242,-1520333633,-1197103707,-2135274751,1645394688,57876941,-401956375,-997523345,3016235,1912635453,8435715,-1000241501,643964982,1648665517,1649686153,1649149580,1646540484,1649948297,1649280652,1642530502,-133753344,-1812091416,-1084127069,-1414831544,-1191351320,934946082,-1910387417,-1990096866,-1946154474,369101838,1640283935,1466063038,1319216549,-1184978078,-1510801402,1721525955,1650198159,1411811686,222085986,-527816076,-2145334144,141913852,288876716,1693188020,1970601088,719891562,-1255765487,-18579359,1946352768,-385160881,-1606448194,3957173,-1732376716,-2010119105,479586308,-1606442562,-12820042,-1531048844,-1257883073,-1107069855,2095595433,482404636,-401553944,-1031139099,1639384634,-1247625353,1929591905,-1188659195,-527761823,1639458362,646448255,1354981814,275441750,1007741416,1951948301,231139531,-57415599,-336067724,-754667235,-1949105174,-1930898490,1002636251,-1962183230,-1961941818,266567903,-1621507270,521537054,118208488,1048587807,1946182287,125017619,1727071078,-201459453,-1536711577,-124196356]},{"sector":2,"length":512,"data":[50688926,-34012175,-56318733,-1074230807,222036096,-2065164428,1007842320,1007580207,1007055457,604141434,-341005601,-1442795291,1645493897,-8300969,611582081,8781697,1435311218,1501936635,1358955193,-91491445,-1325022333,-1968770300,74733828,28372450,1583474850,1466120895,1017818190,1593472269,-402629441,1151467552,7126882,-1577052184,985555525,1196908387,222079660,-1755776395,1212729131,1017955242,-402033651,-160165889,510930748,687978574,1358692840,1947024556,266987529,792462452,1481568885,24445244,1017955144,-388140019,-160165933,1319764144,1918975148,2004499462,-1428216830,-1423957832,-1414812757,-1414807501,-1279022165,-26965504,-2132810624,460673020,-461315958,1476165855,1048579444,1912824245,1157398538,1128465781,-401637144,-397275356,-75493544,1997304833,253814804,-1844494104,-389812646,921177868,-279277041,249227459,1393503464,1515742802,-389812378,779418373,-1957341360,149717996,-1922630517,768061,393359821,134563318,1702891892,1300296453,512426501,213410442,-919483136,784554079,1653218955,-490616181,216645892,-855636040,512475953,11559502,1639267968,-401772029,141884081,-1023275162,283689318,113459368,1649280654,1478396774,-1912146334,225722466,-910225562,1742275430,117672486,651756483,-1022949494,1310624518,-9443230,-1014098062,1478396774,-1912146334,192168034,-910225562,76031591,63112985,126363353,-400637177,427096657,1929331944]},{"sector":3,"length":512,"data":[-1981263840,225728767,-1972905074,42493730,-352175513,1406897676,663411339,121243528,24452955,-389809725,-1910571164,-628398373,-1972960908,-1178394873,1793654783,1959542015,1077197327,1653475062,1711371328,1649942153,-2132768061,-58662940,-401967790,115871251,-339135730,-502872311,-400595615,-1169093626,367525903,1653515007,62260084,1479969638,1976141154,18671635,-1187300673,-1359871995,1096354165,13756753,-1090450968,532232956,1974399488,507873825,158630056,-889262030,-1259739531,1950394368,-2143345657,-972946714,13756568,-12825109,-1662450828,13953024,271906596,57948328,1006669545,-164334656,242549190,628360764,661798972,544374844,87825387,70521204,58001320,1006669032,1007710784,-402034048,2129133697,8120320,-1962903320,-345879010,-11343609,1358954937,1717779135,-860825973,-1963013144,-1106480188,-1058520797,419751960,1357169641,-1426062920,-1419340186,1487651723,1614217130,107997282,-1560397848,-396729714,-768346342,1642086017,276119604,-335621912,1561231371,1323827554,1075624454,1642075705,-480703627,-2065149685,-1780328170,-135861821,-151067671,1080200710,1181090164,-1912146237,91504738,-1061744794,-1007680666,1310625310,116797026,1950376590,531392257,-2079930685,117309442,-1377279347,1643822853,-1187349314,-1968439290,46564312,-1951533177,-142103088,1948449664,1958748942,-661774838,632603530,-501276211,1637924573,-1526723905,1490853,-331448155,91488353]},{"sector":4,"length":512,"data":[-855310152,1275115536,-391372339,1048579161,1912824245,1070513690,-2145920280,23181622,1965059768,1718007811,-1442795349,-1021833752,-551287670,24465980,1642766918,203942060,1639333504,-370641665,222041684,-1259797643,1021256725,1018393688,1020621902,-1408338611,-2146695960,23194430,1240057205,632114711,-1933582369,1095994,-544493582,1969437375,1967471672,-2146661873,-108994591,-2144701367,628379897,-1440698197,-400662645,222038995,-1957491083,392095751,1527216872,141823292,-401897496,394857393,1967537347,-391360961,222038960,-739768715,123332630,-395047620,-551178930,987545567,-234876743,-2123270737,2000350463,-297432309,102879479,132866652,165561739,-396207098,-789902473,1639267968,1011708419,-1404471995,1396498212,-997834124,-1090514759,-1343079796,-544524683,-966575425,-1421392635,-1951784784,1156062815,1963801611,-1956228337,382068743,1527180008,259263804,181332051,-396637301,394857245,-1023258743,-486348466,1648893579,803785011,185788425,-1763159471,727276041,988774858,-819245213,-169287822,-388528379,-1014102496,-1402783042,57978610,1362523566,-204829865,695558054,1376132584,-1014237305,-1340707864,1150134842,375580927,-1425404488,-1929376839,-397150891,1515918997,-504824181,-499033851,99674557,1007333096,-401640435,-92075408,-394103039,378014357,-641834566,1639620671,77332904,189040688,-1105850648,1956462585,1072872963,-384433432,-527821242,-2132810624,-1066119684]},{"sector":5,"length":512,"data":[1642202823,1810375424,82333960,-102606592,-76093245,-1956475230,-1587390434,507208270,745890408,1651115579,1048585845,1946182285,1476839178,-1945983902,375541262,512433671,512647764,931881548,520249227,-1006842392,1390987571,1976384763,1256734995,1946369275,-1173948917,678691169,1182073148,1650265728,-389467391,-397345999,1012400965,-402426468,1048641723,1075601888,-504822924,326494708,-402652487,-730726261,1649286795,1653475062,1711371328,1649948299,-2090466956,1810367174,-661994500,1979028712,503363410,-661733325,-472783919,-1976056326,-13336572,76022842,-1945668357,1139285979,-661863428,1479968543,1309050722,1544457058,512433762,512647764,-343711156,-1991883258,38242615,520376201,1649680009,1650271872,-1199379460,835518980,-1007232629,-385649404,-1956184238,-67311374,-92018493,-13311862,1929028072,-92805106,125100090,-1813461878,-104597254,109971139,-1014209972,1962559464,512452109,644309588,-33463424,512428523,-2144968108,134087015,-502872125,1009019745,-397642483,-1901921764,1714713698,1641027211,1724549990,1931460995,-4626938,1728053247,1716610625,153151570,1499880294,1641062758,1724943206,728154411,-1019517223,-1950096525,-1956524010,532775882,-4646029,-1189680129,512426016,-873962930,144959494,-803829402,-736196255,1381056865,1527307752,1641062745,-1054093173,-1019487957,1355017331,-1185787565,-662042550,-1174358205,230162433,1512164676,-1017619623,1381061456]},{"sector":6,"length":512,"data":[-351769927,-331448091,242483297,-855310152,-855591920,83998742,-389869363,1718879680,1962158312,-185341944,82379635,1048588021,1912758765,-1093629417,-1023516671,-1191205656,-839290107,-1276601311,48995839,2042242765,-1898738625,-2144957477,1942195809,1980513318,-1743998974,-2071269237,-1229045914,-1074789570,-2132253894,-386757869,2143163259,326494271,-384583192,-392110216,1946462305,1096399365,3934187,2008680053,13494593,1962126568,1083816454,-1124023575,-25140422,-2146995458,-1014890770,1451823072,-1259107574,-1161219268,-404225920,1350136563,-398357574,950075547,284722018,-1070398862,185091721,-402426688,1084298038,105285986,-401400856,-1799744686,7727169,173443931,738066616,142508226,990409984,57804358,-1861859701,1085595278,521544141,360038715,-964570573,1311313888,1585487622,-797638648,-338856546,1100855822,-1275054360,8436289,-1259114008,-1021194946,-1174210429,561267139,-1174144893,427049428,-1174013821,292831717,-1173817213,158614005,-398348353,-1447423328,-385239999,244118334,113730126,554000984,1520681011,1649845090,1649153676,1411811664,854087778,-1933655296,-222828447,856035701,-1077440769,-1515913076,1441310117,-1144846573,-1956249053,72125204,-855505480,113673009,-805387266,-389813131,512426909,-1947704952,-4003598,1642872448,-1207602176,281871616,1636050569,1636181547,3024521,1646836986,1639267968,1712091651,1344704097,1378782818,1595075426,1566400094]},{"sector":7,"length":512,"data":[1527170179,1499028058,-998025128,386336514,1411812198,-1157183902,-10092447,1717722166,1649293055,1479999334,1560737378,512623202,24404552,-87070981,-536426706,776026977,1642202823,-930338553,-661729138,-953255957,224518150,773450560,1642071751,283852828,-536426706,-348107935,113716743,1077174752,110046970,-1892785576,778194438,1650198159,1276546094,-1993447838,-1939712986,-1126920500,503734860,1048583958,1912824245,1344703512,1378782306,-1650694558,1650329231,1721499754,-346003811,1364217872,1397903953,116163411,1465275989,-2077848745,-1191445407,801969798,453113987,1650500544,-1980650008,-396261346,119406638,-2131661848,-27108058,1639646918,-331448319,91488353,-855309896,-532774640,1967209313,-850545654,1095876385,-1022298136,-396260161,494268725,-164428002,-1933648242,-1515891200,106931621,-1896467681,966342,-1515870811,35896259,-855505736,361326129,-2096870007,-1006762297,-327823362,862347366,980991698,-1392368709,-913518453,-855505480,-20709839,1727034831,1048626017,1962959284,-1732290807,911457,1381024607,-396783686,1482358247,-255596349,1444810613,-561056205,-1526690626,1587914149,-967392481,23180294,-396260162,662040741,-1612180245,-1022945537,1639188166,-258742272,-1101598603,861364632,-1077440769,-1515913076,1583326629,381880078,-1151310329,-1956249053,72125204,-855505480,113673009,-805387266,1634135157,1444856670,-1947182872,-1906202570,1969335326,512634373]},{"sector":8,"length":512,"data":[1015046570,-1021354496,132647088,-400510976,145752066,1347572051,-1962933831,271050964,1532582488,539015363,-1438994261,-1956431174,-1983239217,-396247538,-392429399,1922895881,-502872257,-1960245407,727826958,-1408469810,376704316,309594684,-386604374,-411893582,-8320336,41050938,914968398,-1130208832,-1441943455,-1162162293,-389403806,468389833,-396183366,527826792,1978646760,1209055241,-1065013299,179570036,-1326444056,-9115638,-396182850,1472398317,1111623454,11860619,3937997,-532875148,138212468,2134645620,-391506060,222101326,726656117,-1949856774,-12220166,-346076598,1962556354,669536209,-2134119425,6405182,-1007091083,-1956463937,996261942,1919009334,1370117,1048579954,1963811260,171737094,-129629835,-156898877,1381061456,1068824459,985258803,735546211,-401705782,158527366,91537419,-336018941,-1543925246,1499095490,-960276389,6415878,443891004,-1962717976,1717718558,-521612749,378103297,512319962,117334494,-2134679066,6415934,-1587145868,-1553571366,-559848872,1649320801,1642464966,-303512832,1209961469,-389467294,-2142043892,6459198,728107380,1716676298,721742673,-397323574,512426708,1048601160,1946182287,25290782,1653540550,1717134849,57080203,-400526598,-1956248919,1724092154,-389865634,-1957101213,1928987641,43247626,-1014039925,-373088418,512481912,12214862,1947024385,21096530,1006797800,1397257229,8436562,108321527,-355268175]},{"sector":9,"length":512,"data":[1072233099,40560642,1103265874,-2009101893,33482775,1392663528,501765714,-683980286,-1958561421,37742794,1642937984,1577940224,-620012710,1532536181,-1010234593,1643035483,1200555919,72321282,105353048,-389467302,460647929,1653358208,-1995148288,258345559,-1050223689,1048580330,1946247823,-1982713086,-1018623913,-385956632,28901880,1947024384,28764170,-1962811160,-1016208438,10610769,-397343509,-397016937,540803544,1499341687,1048598243,1946182287,1716086285,242469379,-3570842,55118059,-1190956086,-1404108801,1008733379,-2145029012,56735038,1382420850,1711315176,1516685963,2010200934,1377168155,-1962846232,-784639286,149622391,-402554136,74580115,-1023097725,-1076274199,222061370,658306676,574360692,937953396,1192593409,-527821845,1959017132,1947024391,-185881893,1959017132,21686520,-696971972,507755203,-1895381422,2088763490,443884799,-317986644,-169339788,1356499712,-855637320,-1951829455,1490062296,317195243,937973248,1949973505,-1404150268,-628401981,1342253288,1492262888,113643380,1392599695,1392547816,1532651090,11987139,-322705213,1048587636,1912824245,1716610598,1724580367,49655,1499856960,1397888372,1392536552,1532585554,-479725222,1716086288,1388562947,-1962901528,55139018,1464910794,982302545,-1979707207,-539024092,1090616448,-1343090317,-617401483,-1960936053,1509443093,1019435103,-1977453243,-997850812,1038081829,91574345,-345876289,571658]}]],[[{"sector":1,"length":512,"data":[158707698,-1960936053,-347733411,1482643922,-1377254407,-1409125633,3205315,-1835511694,-391324877,-260964314,1978714102,309569,-741219631,-804586782,-397154069,-618397740,-1020562085,587199464,-1021086218,1009790032,1477211657,740297808,1996831841,-2096495609,-1007156540,-389809832,222036010,-437708172,535342295,1965833216,384325135,1963801600,749755908,46433219,-551244605,423379244,-1404110986,-76275652,-143390404,1948269763,1946762254,1949056010,1950039046,-1019397118,1655965382,-1306097408,-1547685022,-1448910171,-736195742,-255399839,1952616098,-1458667515,113651810,-972856659,-2141017082,1654589127,149422080,1973107720,-1458667512,-51888030,1655415303,-661978956,1029877411,175243744,1376558986,-1014955849,-1752563232,11947190,-1618222127,-225751266,212976523,104523987,57827999,-2141020254,-92270617,-10194164,-346404716,129362113,-1268601950,31458560,117827779,-1010629736,1655967360,-1609662448,-18349726,1925200902,-771509784,-1743770392,-1597783293,119825049,-1010629736,-478100598,-1457617713,135886178,-1973245666,808461528,-161306362,74711491,1655520904,-10557096,-2096737815,1784852030,-119012491,-1215474170,-25083121,91571019,1946610408,116451555,1656096455,-2124546048,-2143154234,1651769404,1656030918,1077718016,113653618,1008755381,1008431968,-1274449072,-1425606913,376701282,1655312000,-1457092080,283410530,-527824661,-2131696512,-662015764,-15801469,-346424169]},{"sector":2,"length":512,"data":[-2137810921,208808187,1510639499,1977910443,82530055,1510643711,1946172544,-1439911931,-1432314133,584119906,1969400070,15722755,-1157625415,280646980,-2076134400,-1189186108,1757085716,2538069,-997977932,112791413,1438169856,-1275065670,1959035936,-1440348115,-74754206,-1365123958,1974465122,-1946549490,264667445,103344195,-156767393,125055171,1653475062,-370051776,27788634,-1365169804,1977910370,163141618,1108066048,1969204978,244198,1460069608,-396142913,-2141256261,23243278,-1459655703,607286274,-1442445306,1655611746,-1082792828,-1084752348,96027156,-1095831040,913590942,-1359871311,-1547785867,-1442384310,645203042,-347426882,1946724385,-1365157994,1439743842,-234869063,-158829137,23243270,1119781236,-1441890231,-1184954270,-397017080,1465779829,1594197480,-1946221591,-480070130,1656004637,376770728,309600424,-141832313,1974345904,80184317,-835979385,-1084775181,-727620806,146466913,1722432176,-1100885855,116799750,1950376590,956153347,548460287,-1524724822,1666563682,-288229589,427744827,-1957437909,-588752930,146597893,985619289,-1328600221,-341118176,97118428,1454973104,1926179683,1605038850,1655965430,-1106414584,2105556995,24453375,138799174,-396849219,266536435,727943608,1642615233,-1527555832,-1610577943,104096436,2121598632,1655586433,1987313805,-2140962888,1281578558,1048644469,542335832,-394067083,-1405190140,125567074,-394067084,-1958197244,136505576]},{"sector":3,"length":512,"data":[-1593547032,-796171600,-1341654040,-1381979587,-523134878,-559969389,529407577,-41821557,611607423,1668939137,158602359,-1979431030,-773323417,38242823,-402430070,126486472,-402561142,99289024,-1058535542,-454549753,1656004615,427033000,309659816,-2090684767,175380472,1946193469,16465157,1072235381,-555170820,1925200899,26929411,-2147206936,23243278,1655244534,-402426879,-1717566501,-2134432670,543336974,1655244534,-385649632,243269788,-956013900,6467590,-1828307968,1957321648,132350843,1503698826,1963508726,79951385,1119365236,806259536,-1459161502,225771874,1655508734,1119356907,940477272,-1341224606,-1007244446,-1340443645,1404611115,739150665,29619810,1152386676,1646792331,1655705089,-1727596885,779403362,1654195958,-400919168,26739671,1013100550,2100016128,-164776956,1193642200,-351870232,-1439977459,17035240,-396185594,1571817164,87868330,1538263413,53602474,1342214889,71042852,-1729624459,1654301187,1971365976,1950394390,59369493,108855356,96917750,-1662499027,-402396410,-1717566717,1007101026,-1604160252,607937178,78644341,119822315,208995644,1654195958,-402295360,216728287,1163593159,-471316665,-1436700670,-798844256,-790048536,1007101160,-952011772,1195727621,46721095,1654269578,1958790390,-1440042988,-990498128,-1341557632,1086649908,951059060,-1436700502,1527105475,-397981883,1571816094,1659421610,1941978114,-24844029,-402527767,384500309]},{"sector":4,"length":512,"data":[-1341999896,-1459161595,24453218,1654235712,-385979159,119800371,1656032906,1655967240,2080439424,-2146864115,326377724,1195705798,-778565628,-2020895776,-1012180568,-1157494040,820596045,1655414785,11586795,548718827,1186472427,1336978252,1413593258,1152912363,1438165839,1287170882,1961405253,-1205212414,-391446700,-1069809187,645933171,-369270092,283704826,1095153666,542292139,-1406760789,-2147095710,-43863002,1006745832,-385649728,1072299485,41609217,32106576,1911030900,1843941378,89057282,-391497040,74711511,88270936,88009048,-1744690456,1374171115,29485058,-162519180,1080200710,-169343371,82805505,37415002,1641029259,1654988291,101962499,233333202,166302213,-1912146427,192233570,1641022979,1654982147,1711601641,100886168,57041360,-379411194,-1604844321,119825049,57934140,-369453591,-1717503244,-1828248478,-1420536904,-1196808016,-1022744272,82363307,1380170497,192349244,113640821,1006985887,-383879935,-320339830,1380236032,-454552597,1912814592,1929788654,-1626946043,1421542498,-1817472174,-1012256756,1006684904,1013019398,-2147126270,-27085786,91358268,1654589126,-2146434045,543339534,-385969175,3932491,2100015251,-1327761916,-342644179,16547879,-157540484,274904070,-152566156,82805504,-1660855320,-397408140,904397140,837376004,18212868,-2147208471,274904078,-102962856,1655842443,1345229752,1654982343,113704960,25257,1655441094,-1626945664]},{"sector":5,"length":512,"data":[-2147483550,-77417434,-1090460952,179919338,1957622272,-1525743861,28621666,-1023381058,1655967360,637704,-472786645,1913453443,-392197368,835161,1666629571,-1207946776,-1414914016,-639018837,518393,-388889679,-154990812,-2141017594,243272565,-394239318,-1717436277,1654235234,1655546051,-1813982824,1506314123,-1438994261,10938563,10676304,1476625384,-1023180824,-1813982824,-1199076528,-1822905511,-1441890109,116789346,-1022336343,-1402775873,2133123210,2044994218,-1440698122,1667170177,-2000422542,-1990022106,-1335708098,553418833,-58715532,1946910464,1497544716,1163180203,1152387819,1331148970,1146271915,1344321707,1381284011,-1440698197,116793027,1967153806,915101206,512647632,53371348,-1402821322,117383006,1724080805,918906454,778461648,1654994435,1583787111,-1526268129,-165756062,1080200710,-1957292171,-1906192330,778163230,1654994435,-2095096147,40019206,1716938435,1641035461,906178150,-1385733467,-2095096218,40019206,-1912146237,376782946,1641035403,1641291406,44165292,385447243,-801732321,-983121055,1734463542,42854572,385381707,914974239,-2084347440,6469182,234947700,-141860170,-812910333,1666640257,1330576727,-60840717,1068416707,-167769159,23240710,1153833076,-1231014135,1979661409,1639292948,1654588986,-1178726030,1153876799,-1247791607,-1626981791,-1609993374,805593759,-1022933880,-41201577,-1184715103,-1343094777,-1089440424,-114599773,87738675,-994179714]},{"sector":6,"length":512,"data":[1594536255,982302403,-1184679233,116785160,1946247609,-402214654,417857621,1664794370,1639515894,1444115713,-1325087101,4646916,988299614,23390208,78714347,1442859496,-402564632,-1084358161,112288570,-402642968,1488847331,1641070434,1319216549,113683298,-402431308,-1587087793,-1553571240,-154967600,23181574,-1331359115,1552656957,-402158818,548405636,-1007689046,-1515567696,-1951777360,-1956241828,23455751,-492166992,1421788139,1656404826,-1187521178,-1331363837,-209212867,-209212058,21948496,-492166992,1359131117,-209214299,-1956205210,-2018679088,-511973133,837290100,-1438994431,212931819,-2132225178,56735038,501745010,-402396415,-1956249302,-514332478,1048579188,1912824245,16640005,31982571,-1440698367,-2018188711,19261683,-1319479203,619238154,-741832178,1026603469,1365457599,-1420536904,1470873995,548929960,1423648,57977587,-1425404488,-775582881,617468365,1444639747,-1319477058,1996635141,1516617228,91489201,-1314246480,1587868416,1048585451,1951556074,-396994809,384551178,-402111349,783286416,441258,-2048393077,48988928,1438643837,11855971,180781913,955875393,-580482443,-1016939994,-1187328834,-2052259832,-1956488186,57937476,-1424079733,-492166992,-580467731,-1100826058,817455830,1296939069,-1413379157,71600998,1711288040,686294155,539015168,180781995,1946272246,1474842888,985618688,-109035165,1725068600,1656366809,-1398100797,-92995524,-1050259261]},{"sector":7,"length":512,"data":[31985896,-1974446080,125124,-1320071080,-387395068,1482227714,-1878782172,658510887,726713258,-402229305,985595915,-819242653,-1426906960,1031819203,1207596064,-1425404488,985321355,-389403805,158724004,-1275067973,-531044288,1443816387,-1146293621,246677511,-152956723,683656030,1948002,-1410088909,-4503372,-2094936577,2104627707,567101620,117340018,-1998036391,1220498402,-1414812830,-496375637,1649286795,-1957117042,651363280,136841,1980760125,-1312804094,1222693636,1649713992,-1413467241,-1030990412,37128998,639749376,657095,-1943656649,-2147480562,6416190,117312117,-970563097,-1023344634,1636304524,-1907834740,-1557774144,-970588159,2054,1508378398,1048822751,1962959376,377993288,-1071435827,1049182069,109863524,1049191014,109863528,1048601194,1962959501,1745274664,-1945983902,-1201509874,567096623,1645092489,1645217420,-1207795782,567092527,-1186931270,-18350040,97240062,278136150,357962695,402921123,418322604,89523542,471734887,501947663,548740945,575938890,610345718,622535941,82642142,19353088,1761814359,660604455,788854562,1480742977,1480874051,1346523219,1229211987,1279676489,1397052228,1396921171,1397183302,1647862340,1648124480,1647338068,1646813740,1650221656,1649041992,1649304140,1649566288,67110912,8389120,1048640,65540,1347769934,1280330052,1095653966,1129205584,1313101391,1196312901,1128354394,1497580880,774268774]},{"sector":8,"length":512,"data":[1701068342,-1381174286,-1515934806,-1347508314,1869507948,-505360948,-2103777054,-2139062143,-2139062144,128,0,0,0,16843009,-1010678718,768592842,1936941347,1818389861,541133157,1684300123,1936942450,1868762461,1918988397,541264229,1735287154,1684086885,1936028260,1969491315,1141469293,1467761243,542983292,1851880027,224224615,1886221668,1953392928,1970434661,1141470320,1852383305,1920099700,544501877,1970234203,224228462,1886221668,1413762080,541869065,1701602675,1919906915,1868782368,1567911541,1836409869,1129128048,1751326786,158230881,1678593348,544238965,544503909,1869440365,1141471602,1885020248,1769175400,1600938339,1919181921,1567847269,1953391885,1158247013,1684300064,1936942450,1768708896,224228467,1819044198,1914717705,1701277281,1936288800,1869024628,1528841993,1684300093,1936942450,1650139229,1801545074,1852403568,224228212,544761192,795108449,157447539,1635131464,828732780,1818326560,221406581,1970302569,1531513204,1564769367,1919905824,1869352308,1713398881,157641833,1633361996,1701995620,224228211,1684107116,1667592992,1936879476,1629506569,1701995620,1679848307,1702259058,1667592992,544370548,1853189987,1869417844,1292461430,1851879968,1629513063,1701995620,1930261363,1126200421,1830835536,157639791,2019237965,1417432700,2015895645,774778941,1310731318,544173629,743788614,859657248,1998599736,543716457,691484722]},{"sector":9,"length":512,"data":[1835101709,541985125,1919179611,979727977,1634753373,1717397620,1852140649,543518049,1735549275,1953720684,1863146845,1970304117,1531906420,1564769367,1919905824,1635131508,224753004,1668248176,157574501,1029382224,1919181921,1567847269,1868782368,1567911541,1869770765,1684366691,1952805408,158233205,1896698448,158624117,1701973329,1953720679,1376350821,1701993248,1953720679,1528853093,1970037110,224222565,542657869,1768383858,1919251571,223171081,542462022,1768383858,1919251571,1531859465,1947032914,1818716015,942874725,1701978166,1376351079,1702038872,1751347809,1914721033,1701277281,1936288800,1920208244,157639521,1029382228,1919181921,1567847269,1868782368,1567911541,1634890765,1830839651,157639791,1528843604,1563524144,1634628877,1835365235,157641826,1918574677,1701277281,1769344349,1713403749,158361964,1920404822,543519849,1701603686,1528846089,1919181921,1567847269,1769109261,1931502964,1869898597,1460237170,1684300064,1936942450,1769104416,1931502966,1869898597,1868767346,225734261,1869770765,1937010797,757538874,540876839,1818322290,909669935,1685024045,656423781,1025517347,1869770784,1952671092,1831691365,224748655,1917132894,1534226290,1701998445,1918307677,543519849,1953460848,544498533,1869771365,1851064434,2003791467,1853169774,1140880489,1702259058,1953459744,1634038304,1426094436,1869507438,1663069815,1634561391,1140876398,543257697,1869771365]}],[{"sector":1,"length":512,"data":[1699938418,1696623461,1919906418,1802392832,1853321070,1684368672,1948279145,6647929,1952671059,1847620207,1713402991,1684960623,1802392832,1853321070,1920099616,1459647087,1702127986,1969317408,1375761516,543449445,1819631974,1699151988,1634887022,1634082924,1920298089,335544421,2067869985,2070566732,547394953,1684104562,1920409600,1761637481,1679845230,1702259058,939548448,792082480,1998600248,6845545,540424312,1752459639,1953853184,1431324192,942809088,1851457591,1935959397,909670432,1701731165,544433253,1565872198,1935830875,1952803951,942890341,1701978166,1864397671,1634890752,1830839651,543515759,539828272,1934904905,1701994784,1920204832,1684366177,1869770752,1936942435,536896613,1970173224,694445427,1986610176,543515753,1869771365,604638578,1735289171,1932354924,544236916,1702129257,1886745202,604638580,1634038338,1768910955,1763734638,1919251566,1953527154,1227098637,1818326638,1864393833,1685021552,604638565,1667331155,1634082923,225733749,1699161098,1634887022,1919950956,1667593327,1852795252,1969317408,168653932,1734430756,1634082917,225733749,1396909066,1028671802,1836008192,1684955501,1953459744,1886745376,1953656688,1763730533,1919950958,1667593327,761554292,1701080941,539232781,1752459639,544503151,1329864801,2019893331,1684956532,168653413,1297105956,1852121161,544830068,1802465128,539780197,544695662,1920233061,1600077177,1597661023]},{"sector":2,"length":512,"data":[224354143,1634038282,1869426028,1728079204,543519841,544501614,1701012321,1651078003,1124099436,1869508193,1920409716,543519849,1634038370,1768910955,218133614,1869762570,1835102823,1919251488,1634625901,543450484,1600085800,168634719,1163412772,1818846752,1663071077,1869508193,1700929652,1769109280,1852142708,1310984717,1768300655,1634624876,1730176365,1852143209,1461979661,1769236850,606103406,1954112032,168653669,1936278564,1969627243,168651884,1920091428,1595961967,543121247,1852141679,543649385,1701603686,1176766989,543517801,544501614,1853189990,604638564,1752457552,1953459744,1970234912,168649838,1667449124,544437093,1768842596,168649829,1936607524,1768318581,1852139875,1701650548,2037542765,1847855629,-1499093905,-676483929,-1432064404,11445932,1107312718,542244928,4866560,1912619594,1415184506,5396992,1515323532,2249216,917522,131084,6029378,67117680,805307904,806748182,806753280,1946190848,369100800,1446912,8257546,2118234,2120278,5263962,5266006,1308631630,2752556,1048610,7471186,503324242,1213071442,5130240,1543528556,643432528,643432546,1310851186,5123072,5242964,675414048,3031552,1879056962,1375756800,1375740506,1577070170,1583087708,838874624,872430592,973092864,1607168,-2046786024,-2045116390,1869312,604014108,612499586,9577472,-2097142638,-1174372352,-956236031,-167707135]},{"sector":3,"length":512,"data":[65792,-1895774719,-771698688,49152,-1052688128,1094778883,1090521028,773441,248725825,-1018937088,1145110556,1090529988,3720270,-867151295,1329725500,1086606933,-967622144,1396834372,1107314898,-801024173,-733872051,1413611604,1107320259,6738516,1876120642,1279345408,1124104396,7984962,-985376957,1279459453,1124106435,8635468,-2033628093,1414284032,1124109011,9290573,1448037699,1124110785,1096175437,1124111813,-1034530995,1296236697,-985508273,1296236701,-1581033905,1330463488,10863958,1448037699,1124116935,1196838733,1124117957,-866758835,1296236721,-984852913,1296236725,-1051830705,1296236729,1095652943,1124122053,1314279245,1124123074,1314279245,12961090,1448037699,13222734,1448037699,13485390,1448037699,13748046,1448037699,-708491442,1330463488,-640922026,1330463488,-984854954,1296236765,-816949681,1296236769,-800172465,1296236773,-749840817,1296236777,-632400305,1296236781,-238070193,1330463488,16109654,1448037699,16368976,1448037699,16633680,1448037699,1124139475,-631877811,1296236805,1124143312,-1034727347,1296236819,349655888,1347240705,18400339,1481657667,499599427,1347240705,1195918168,18989624,1230327875,1124148676,19317847,718357571,-1052687359,1094975789,1140928723,1140928962,1140929220,20497221,1003899204,1020740609,1414415617,21025349,1297625670,1174488241,1221804609,1145128449,1174492100,-800832447,1111884122,22922316]},{"sector":4,"length":512,"data":[1414742598,1174495440,1691568195,1279477249,23451717,1279479366,23713861,1330463558,24035926,1330463558,1942307414,1296254465,2026198607,1296254465,-1035053489,1128661373,1314279245,25347394,1330463558,-2017112490,1296254465,-716286385,1128661388,-715763891,1128661393,27053391,1297040198,1174513097,1229803331,1174515408,-800239805,1128661433,-800043697,1128661437,29545295,1128612934,-959425453,1229211137,29870419,1229213254,30132563,-699841466,1145438678,-573548983,1229211137,32035414,1447642182,32493650,-917617338,1313210864,-188133819,1380337153,33080645,1163019846,33345605,1145129286,1174536644,-850443447,1229324806,-800239805,1229324811,282478916,1145652738,366106185,1279870466,1174543556,-866824887,1229324833,1414742862,1174545872,-733393335,1313210918,-733393335,1229324842,36688979,1414744390,1174550224,-1034595511,1229324859,-767404717,1279656512,1174555332,1320240204,1145849346,1389638220,1145849346,1455764044,1145849346,39504208,1279544390,39760455,1279544390,40022606,-633058234,1279656550,1775715140,1145849346,1825984069,1145849346,-682209723,1279656557,1447970116,1174565316,2093765965,1431127554,42192972,-800108986,1346765447,-834579391,1346765451,-1882372782,1380992514,-1800319675,1414546946,43568705,1145983558,-1663807927,1397900802,-1613607084,1397900802,-682471596,1380319904,1380930643,1174578372,-984202925,1313211045,-984202925,1397097128]},{"sector":5,"length":512,"data":[-683321791,1397097129,-1002088895,1397097133,-984858301,1397097137,-850373563,1397097142,45862473,1313428294,-1059893437,1364411906,46453842,-858500282,1414743554,1174591184,-683453357,1313211095,-683453357,1397097178,-699513516,1313211099,1313166419,1174593238,1313166419,48224086,1163154246,-473672114,1414743554,48551763,1414745670,49010515,-1034595514,1397097206,-36683179,1431520770,50909762,1112888134,51368018,-732736442,1430651667,483217219,1129661955,633949519,1129661955,-800502449,1430651694,-800239805,1430651703,1347243843,1174617296,-733396649,1480983359,54775105,-935110586,1480983370,1128354388,1174621908,-667792295,1497760594,1347957324,1208178353,56218700,-699841463,1296630620,57592917,57921097,2042842697,1397639427,1224965570,2128040782,1397639427,1224967108,59298894,-1319874999,1313407884,59756372,-1000976823,1313407891,-951038890,1380516759,60347461,1413829193,1241750724,1241752257,61392193,61784650,-1262140854,-1161606653,1480804867,1241758682,-631749819,-985005121,-951450683,1196032971,1241764293,1241765836,64865612,-473870774,1095649795,1241770437,66044494,-985510326,1313473525,1241775043,67224910,130502218,1196313092,1241779653,68406350,-984854966,1313473561,1241784271,69587022,735268426,-632403452,-817232847,-800455625,1347028029,1241793477,71946064,72340298,72735306,1624264010,1212238852,1275356102,73912897,1792230476]},{"sector":6,"length":512,"data":[-750433276,1179386989,1275359699,74830663,2043892556,-1052423164,1162609788,-2134550975,1145523204,1275364564,-1999354807,1145850884,1275366612,-1864936627,1095715844,-867417788,1330381972,76991299,1396985676,1275369922,-682408881,1330381978,-1631300796,1330596868,1275371984,-682602673,1330381986,-1497083825,1330596868,78234960,1347374924,78305093,1347374924,78562373,1347374924,1275376090,1515212623,1275376343,1515212623,1275377348,1313886031,1275378117,1313886031,79353669,1347374924,-1094433458,1330596868,-1042657712,1330596868,-681947568,1330382018,1515081807,1275381444,80399443,-825076660,-699446012,1330447603,-155036842,1448037636,83351379,1398165325,1292172228,-665627057,1330447618,165173846,-866824955,1162741004,1308954823,85184591,399789902,634539781,-950907131,1431242022,1325738964,-1034726315,1431242031,819417940,1414876933,87409747,1188056912,1347375109,1342523329,-1002352561,1330644300,88983120,1179668304,1342525892,1791513429,1398099973,90947912,1213420880,91276353,1213420880,1342534086,1179145045,1376089540,92130371,-2049817774,1296323077,92918355,1297106002,1376095683,-1017949116,1163003281,1376097232,-1782230971,1346720261,1376098266,-984723387,1163003289,-1680191920,-733654523,1163003296,94488148,1179927890,1376102340,95407183,-1210953902,-850177531,1095959995,96388680,-959692461,1279349509,1392888259,97636929,-540917165,1094931205,98746963]},{"sector":7,"length":512,"data":[1396786003,1392894935,-1001176765,1163068903,99336532,1096041811,1392897989,-205368251,1413829381,100123970,-1017887405,1163068923,100648276,-950778541,1163068931,130369364,1413829382,1392905164,-984853435,1163068943,331435604,1413829382,398803278,1413829382,102482510,1314145619,102745410,1314145619,1392911299,-984722363,1163068967,734482004,1413829382,801457998,1413829382,104057934,1314145619,104318284,1314145619,1392917455,-800172987,1163068991,1137921620,1413829382,105372238,-816560813,1163069003,105893972,1347700051,1392923589,-816819131,1163069015,106681172,-632011437,1196623455,107205700,1808549971,1279808262,1392931524,108712520,-1001240493,1230177921,109433924,-733721517,1297286793,109958995,-1866247085,-1001106682,1414727315,1392940745,-1034727596,1414727321,-1697164465,1330926342,111068243,-1563274157,-1034595578,1498613424,1414415699,112513605,1163090259,-1194047144,1397052422,1443283412,-976072123,1380275718,1460062679,-858502847,1229084422,-792439218,1297241862,114610771,-1002159784,1129842393,115656520,-733918120,1280837351,-356363199,-766552058,-750450952,-750582022,-749533444,-750516482,-750385408,-750319870,1296369412,118018893,-1000976563,1330448143,370594134,218962201,370588346,218962201,370541244,218962201,370589374,218962201,370589888,218962201,370543626,218962201,370543626,218962201,370543626,218962201,926354442,926365495,926365495]},{"sector":8,"length":512,"data":[926365495,926365495,926365495,926365495,926365495,202127159,168434719,1637550602,202135965,1936919564,1936946035,1936946035,1936946035,67400563,370541572,370546969,528029977,-1274280836,-1263225676,202159284,202116143,2139032588,202146434,218958860,202116108,-2054878196,-2054847099,-2004318843,-2004318072,67405960,522128552,205063172,1903103144,67374092,1903232004,101059596,101058054,1936918022,1768518515,757961619,1819046703,202020502,202115594,202114052,202116108,269485060,269488144,320016400,320017171,-1616964845,-1616928865,-1566400609,-1566399838,-1515871582,-1515870811,269526437,892679477,892679477,829763957,2004287605,2004318071,1431633920,7820629,1010586999,1010580540,1077951548,1077957202,3948608,1280654396,1380994133,134762504,1246365704,1246382666,1077955146,134234176,4849664,1308641866,1077956096,1376272448,1044250706,1044266558,1128480318,1128485458,4080451,5586494,1380994133,1381126224,1280049152,1280068684,1179012172,1178994770,4998726,860769356,1380987726,1376276560,202113106,202116108,202113036,202116108,202116108,202116108,67111948,203563524,202116108,-808858426,202167762,202116108,572662306,572662306,572662306,572662306,757935405,757935405,757935405,757935405,-1431655766,-1431655766,-1431655766,-1431655766,655147714,-993742676,-1330895092,521541154,-1960894681,572982415,378506018,623182870,623191333]},{"sector":9,"length":512,"data":[892675365,707406378,202414387,202116108,202116108,1460407308,-619913512,1769697,1769499,1769499,122421275,118097709,118097674,118097674,122423050,1442272,1441814,1441814,122421270,132450093,132450277,132450277,122423269,2098989,2097184,2097184,65568,153223594,153225506,153225506,16845090,158990767,158992762,158992762,33622394,23789570,23789931,23789931,50397547,83689489,83690749,83690749,83690749,29099261,29098428,29098428,29098428,122421692,122423116,122423116,122423116,120391500,120391469,120391469,120391469,391251757,271259442,872488997,806368513,390869024,390862067,352457971,387454216,96671519,88671663,98108740,88933822,97846592,97191353,91227600,91489643,16778599,16777472,154796296,157747514,114166119,114165454,114165454,114165254,117441272,157747559,157747559,157747559,6031719,5636512,123799884,131008319,114165218,114165454,114493134,24119002,154796407,151521594,104401167,132777536,114165745,114165454,114165454,114165454,114165454,114165454,114165454,114165454,18876110,128844064,99747758,50333165,298451712,129177099,85198771,85918996,17827123,18350352,786712,131727367,21498227,23593304,25690488,27787672,112329144,106169984,83428694,118686969,5637907,98371037,83428829,118686969,526099]}]],[[{"sector":1,"length":512,"data":[144665,82313222,19398780,6750504,7407865,7080195,48236798,1769776,1443594,2099173,158992674,1769835,1443594,2099173,158992674,130023787,124782533,147916661,131401948,130025440,124782533,147916661,131401948,398460896,393222085,416356213,399841500,154802144,117770554,116786939,29426931,83690733,5636540,98369622,122422749,686620672,639510813,692070089,10566,684392448,638724327,687023640,639893504,31343915,38994828,74515048,43320446,31326882,38994828,74515048,43320446,53674658,69533696,57803818,71762795,53675063,50857161,51381290,30409160,46989784,47448824,52691675,48431915,1645019882,1645568542,25163,792,49414144,51838976,797,819,1646658602,1647272505,52453954,1650025626,31326208,38994828,74515048,43320446,31326882,38994828,75367016,44172401,53674645,69533696,63308842,65470464,46007401,69534921,882050090,13483,46989312,47448824,52691675,48431915,31720170,40371090,75825960,44631159,49414811,51838976,32178973,32572146,46465821,69862601,53478442,1650484386,54001664,54919998,55903054,56951645,30474240,62260440,80675743,41759662,61276927,69076191,62731285,873399295,12919,20971832,650388968,544613930,1160066602,919488850,919484110,919484110,1499084494]},{"sector":2,"length":512,"data":[1467635592,1764190081,1631545649,1620074783,1633968264,1620533559,1633509505,1632461103,1622958421,1623417012,901996717,893990319,903427396,894252478,903165248,902510009,896546256,896808299,950351207,940325001,952449029,940718238,952055807,951138455,942815416,943208491,927741989,1368995629,953561155,927742166,1472870189,954282065,888355041,1099252101,810300929,905721335,921646831,809960168,808923186,921188072,1231112545,1077674736,1077690428,1077690428,1077690428,83705916,809697724,810299473,1368272967,114165549,33031065,76349912,884147395,42795703,51315205,40838151,1503470697,1503091107,1503877533,67305985,117835008,2312,0,0,0,0,0,218893066,983054,0,0,319951120,5396,0,0,421009174,488381210,555753246,623125282,0,0,0,0,0,0,0,-2088632320,0,-2080374784,0,-2038104064,690497318,757869354,825241390,892613426,959985462,1027357498,1094729534,1162101570,1229473606,19274,1330531660,1375752528,1448432723,1515804759,1549467648,1616862813,25185,1660944384,1734763876,1802135912,0,0,0,0,0,0,0,0,0,0,0,0,28012,0,0,1903193966,29184]},{"sector":3,"length":512,"data":[0,115,0,116,0,117,0,30582,31096,31232,0,2122153083,127,32768,0,129,0,52495138,52626208,23003550,53477726,33423775,45154950,65012488,71238704,73532514,10944664,22806681,27132316,7143774,11337935,7274661,10289249,10223712,13238475,11206831,25034849,58917285,66520023,84804697,105317689,119932641,121964344,124258137,129566649,152438776,14811363,14745825,14680288,106628444,109577841,112920225,16908554,1114128,16777480,65536,17039628,2162720,49218203,49152659,49087115,43057808,19989217,19923680,19530027,16843017,589832,16974091,1638424,17105165,2687016,44106400,8847494,17170702,3211312,117702912,319819018,505092374,656745249,808266537,976696370,1145192510,1296779590,1566135633,1734697824,1886219113,2088334963,-1970830465,-1819177075,-1633904234,-1415011168,-1263357778,-1111836490,-909720640,-707604532,0,1076101120,937459712,1128383353,0,-1610612736,16386,0,1074120704,0,-100663296,16392,0,1074568256,0,-1018167296,16399,0,1074983972,0,-1734967296,16406,536870912,1075429052,0,-294967296,16412,-117440512,1075877122,0,-1169967296,16419,-1525678080]},{"sector":4,"length":512,"data":[1076291796,0,-1853561046,16426,552894464,1076737510,-1610612736,-480270031,16432,-910228480,1077186075,728806814,-1647989336,-1781055383,-1929048509,1084141353,-3168555,-1032315063,-134463277,2056226778,1091098599,-979692381,-273437930,849232189,-1379886813,1098089743,-2132177696,-1816508471,-1494793816,-1178228525,1105044482,2145785770,-1240030933,-1080868334,-1567521381,1112001064,958879083,-529467507,1631994492,204814210,1118959918,-482555600,-1974298881,392577767,-1493969217,1125947793,-1644568946,-1434522629,-1849212079,-1599166962,1185145625,-855595380,-1757438808,202852854,1971749237,1296615798,-343576885,-2043900914,-1478209381,893073811,1408086712,-1840596852,-301081212,1575311167,996001085,1519558283,1106542703,-751951822,-257532444,1421877409,1631030437,-1680246836,-1151923558,1519084681,1562761355,1742469513,1452932677,-1506742403,-201823442,-928858329,1853939037,2110148462,-1821505677,-1751420461,1375898144,1965409376,2078350516,-2100735261,1508931704,291663573,2076880437,-1189843603,-401917825,1640529692,16802254,218891779,-505683954,98297051,604047105,536946177,604184835,-419306237,100795393,33620226,67371778,851979,917519,219024655,185469711,84938081,67175425,16843780,16843009,135270432,134744072,135270408,68161791,134744068,134744072,421396746,488380443,1465467418,1146050383,1180127575,1414480972,1279808322,1178947151,117835073]},{"sector":5,"length":512,"data":[2047672072,-2096660473,219348999,217386229,219745525,218696954,229117220,229117352,229117352,229707176,238095831,244911765,247074468,250089150,252514047,254480032,257429329,257888095,257888095,257888095,257888095,1646268255,1030058849,1061109567,1061109567,1835625504,1060992105,1061109567,541015871,1920234593,1061109565,1397555263,1397703725,1480928768,1127089221,1224887631,1919251566,543973742,1869771365,604638578,84281610,134480130,1279478849,1279413316,1212368961,1212303428,1480808513,1480742980,1346523219,1229211987,1396921157,1396986707,1397183302,1296913491,1380209219,1649037908,1649173070,1649435208,774267474,1701068342,-202182501,104008012,127141792,829568177,855323374,856896256,860500805,861025102,862925662,864170899,868758437,874394574,876753966,878851162,882848892,859583701,3224795,1480851507,1414745155,1396986691,1397117765,1397969735,775238884,776482369,778841699,1465079619,1346983764,1028670525,1953525093,1314999929,-134270959,-134236606,335504962,-1259012176,-197065053,99885751,-5962492,17020148,-2101939135,262388,-1242234971,-197063869,183812791,-5961212,-647441,-5824786,-3634448,-15168528,-1987120647,-92081921,-11814160,2055926004,1002172660,-2014251777,-1158613766,-252379157,-252413307,1224711098,-1136083828,-13815682,-2144339464,-8368641,1325383758,1374682912,-1874001952,946271231,-127601665,-1469778945]},{"sector":6,"length":512,"data":[-395971585,-1469778945,1214641151,-1201081345,409531391,-932711425,1751708671,-395971585,-1469778945,-127601665,946271231,-127601665,-1738148865,1751708671,-932711425,409531391,-1201081345,1483011071,2020078591,-664341505,-1738148865,140833791,677901311,677901311,2020078591,-2006518785,1214641151,305379071,296925377,-14347644,-117448653,-13617927,76018164,1606349567,-1602030849,804911359,806158288,-5239041,-1860764418,-2047756,-33558332,-7192850,-995261,-1978301,1419842464,1153471811,1174388950,1615183991,1252851649,-11881985,-2043837,-495958790,893711359,1156841408,-201338827,-3656380,-1065007885,-2059078657,1156841424,-201340795,-2587324,-667597581,-1508661761,-795065516,-3047357,-259242765,-244300557,-867830785,-1337592848,-1817706511,-1673276248,-645905448,-648002049,-800853761,-800849921,1157300214,-1342185104,1129623571,-700125035,2001076216,-111131144,-1298943489,-124435500,-993724,1173387077,-83889824,-2068412,-4183227,-4142267,-106841952,-1497848321,950599673,-1342211671,-413512,2041788594,-1576492545,-4215223,2040805539,-137346049,1883568895,145162211,-1459664473,-1278629496,-1196752961,-1375733333,-8802760,-1532927072,-347895123,-800849984,-800849944,-800849943,-800849942,-800849941,-800849940,-800849939,-374538258,-9590017,1839921656,-1550605569,-929741868,-3615164,1170765637,1140836704,1140838608,1140847568,-251660080,-667581,-864189]},{"sector":7,"length":512,"data":[-208829,-117461589,-5395463,-5394182,-1380910600,-36682753,1883566079,1139867620,-251658544,-274365,-339901,-1532599387,-3134651,615113639,725977778,-1308950568,-1342504983,-101122195,-83923537,-523352593,-1426118221,1129622291,-700129131,2001076200,-379566616,-1382830849,-392870956,-2042300,1172338501,1140842848,-251665200,-253744059,-2027451,-393460493,-378518285,-867830785,-1337592856,1173422057,1173415980,-251664112,-1499068,1140813872,1140843984,-800864020,-800849975,-800849932,-800849935,1078788089,-12532225,-2031050556,-1893601608,-292544018,552530208,1665662962,352314441,-1866402799,-1071517953,-285607681,1073680418,-13221659,-11514896,-234921920,-234913710,-117453369,-5226247,2062571301,388300604,-231184,2029045539,119930796,-1279504,2029045539,-101122132,620697415,1283059815,-254334977,671071356,477950007,-253286657,671075451,1820127367,-267966977,603974777,-1401360185,-266918657,637533304,1014689879,-266918657,620756088,-1669730121,-259577857,654273660,-864292633,-264820737,671030396,-1132662569,-260627457,654269560,2088497303,-252238337,620747898,-1669730121,-265870337,654249080,746319943,-263772417,654257275,2088497303,-257481217,620727418,1283059815,1217874431,-1108820772,-13809378,-268455887,1040164944,1195245463,1200156927,-1752633089,-1484263169,-15258369,-3129618,-12728593,-7485713,-3553041,-7747601,-7319057,-1070206731]},{"sector":8,"length":512,"data":[922351871,-951648496,1190787327,2001141703,1190787327,2001141623,1190787327,658964343,1190787327,658964263,1190787327,1357905703,-907018248,741539609,-2077569742,-366271189,775392044,-2100646087,-263824656,1525737306,962326680,-259367952,872360796,-101122240,-251686861,-1947168629,-1980694559,1636429840,-11483905,-16726796,-184614867,-184569661,-1056746572,-187517196,620987394,306772991,-285240502,-117481438,-1339887879,456445439,49482129,-260962448,-2047830910,-101122283,-11526418,271710712,-1122952705,1445064328,78979310,153225121,-266337629,-2064628606,-101122107,-16769298,-1070532104,-765996801,1507192536,-743976705,-1445597656,-1604324609,-262147073,1348465407,-168561153,-168561165,1022555634,-2474768,1883240952,-805348801,-298265929,-788547116,-293023225,-218166827,838803589,-137298080,-705791789,-532480007,-723004929,-371790232,-206244609,-1208696568,-2079853454,922690824,-101122208,-251678666,-251696257,-251712642,-251667587,-251716737,-251667587,-251692162,-251663487,-251704447,-251659392,-251683967,-251716737,-251667587,-251712642,-251696257,-251712642,-251671682,-251683967,-251659392,-251704447,-251663487,-251688067,-251679872,-251720832,-251671682,-251708547,-251700352,-251700352,-251679872,-251675777,-268469378,-788554299,-294071305,-251659819,-2081391485,1204944845,-688994093,-2047803575,1300689148,-305795073,701034495,-372838401,-3125761,1325338703,540409712]},{"sector":9,"length":512,"data":[905574655,-923795600,-1242235015,-188674669,217322168,-14348924,-12558093,-7315213,46367028,1160332329,1774841855,-1177948161,-9424641,-3124495,-16752654,76345844,759049727,-467012545,-1758732,1140797507,-1242235088,-197062429,267674296,-5959932,787883766,1056323318,1710646518,-13601294,-223579406,-218124937,2012413554,65535,0,4194304,0,0,0,0,0,0,0,0,0,0,0,0,16777216,10,1656382138,0,0,0,0,0,0,0,688324608,0,25088,0,0,0,0,0,0,0,0,0,0,0,92,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,852096,1253367947,1048584653,1946182120,-1209473021,1151479785,1196769861,1702240344,1869181810,774971502,224473651,1141509386,1196769861,794501208,1528847686,1769104475,1564108150,1952542811]}],[{"sector":1,"length":512,"data":[1768316264,1634624876,1528849773,1818718817,1567912809,218762589,790634506,538976326,538976288,1634624800,543517794,1701273968,1768711712,1852403824,537529703,1818846752,1835101797,1713381477,543517801,1679847284,1735746149,544370464,1835104357,224751209,1629495306,1768712050,538997875,1918988320,1952804193,544436837,1702259047,1869881454,1869770784,1835102823,168626701,544370502,1768693857,1864397939,1701060710,1734833506,543649385,1835888483,1935961697,1970413612,1162092654,1481069890,1684955424,1887007776,541007973,1948284001,1881171304,1886220146,168636020,1986939172,1684630625,1769435936,543712116,225976365,842015754,792015407,-67095751,379832460,1645912930,-1553850717,12083594,1008848176,-1023315198,1013183138,-955550973,-1876439546,-100219248,71091001,113640819,2011894473,-1878604026,-2037346263,52379076,117312882,171794925,-33263097,-1201541882,-617397248,225583565,-2138971520,91587066,1639712454,1140897792,-855637573,-2012974559,1415691542,1959017304,18987277,74769874,1639253758,113672171,1744986549,-1667370494,-255527336,117337972,-594845259,1727849603,1717069468,895928459,262144,-1654239130,1483119718,-1654238874,996598667,-28937023,1717679366,895926667,2097152,-1654239130,1483119718,-1654238874,1958820710,-1070373336,-2090425841,494666232,1086337894,258384399,253223610,1642792594,254067850,41289276,-1247672656,1639293025,1013036706]},{"sector":2,"length":512,"data":[-616336635,1515895011,-571700400,1012400254,1343059200,1476427481,-2096087259,125059064,1639319238,-2145391617,56735038,-388425611,-102830375,-522600231,-581903906,-1638399874,251528309,-1247780426,1639424609,-1570654560,1048601016,1929601461,1724825111,-1392489287,-1878538605,113703394,-969005296,-819514106,-1409252930,-76275652,-143390404,896872252,1950301356,1021256740,-1274055354,1007734031,-958367997,23194630,-425534997,1674951267,567085492,-850656840,1657780769,567085492,-850657096,-391360991,96057173,981253632,-1402864961,567096756,1166810505,80184066,-1265455726,-501101275,-850217750,1200301601,1975551486,-922302963,113699602,-1946131987,-1499248440,-852183967,-1474393823,-1442411423,112729697,567146845,-1945088885,275914714,567103924,141941051,1638807177,1638930057,1676820096,-1207340541,801969664,343261218,-1896873800,-671808,-1184634178,-1477246972,82510452,1653409534,-88144098,-389510080,-1203252556,-1377303900,-1900006446,101328576,41223300,-459073360,-331448223,628359265,-1977159542,-33273322,83998922,-919400243,146014391,-58060595,-855244616,-1210961136,-855460863,-1106829808,-1598095350,-945445535,83360836,-1090630516,-1935343594,244121164,-1933614712,-1043470239,610683320,1222151152,1635820360,78725184,-269882413,54395131,57803608,58786684,60556163,98502079,124847973,214109107,283906267,284233966,287314206,295964963,296620458,332862418]},{"sector":3,"length":512,"pattern":0,"data":[350229587,391649110,397416363,405018597,409344038,438311412,471014417,508697624,517480108,539172653,541204544,616834074,656025258,656680735,675096453,676210764,684796007,686434518,709962315,711600742,929443919,933508970,935606192,935933894,938358748,14486]},{"sector":4,"length":512,"data":[942878217,218762550,1163157258,842224728,1734701856,1953391981,1702065440,1881158195,543257185,1818391920,656434025,1162104643,151653671,1970500449,1661560173,1415527027,861165637,1935944754,1094999866,168640852,1920233061,976368505,1829308941,1628010095,875572344,157823024,1699166985,1346642036,1981827405,1769173605,1713401455,1952673397,225341289,1852377354,825428340,151587176,1818313531,1346642028,168642893,158494473,1936876918,745434985,151611489,1869894459,1830839666,1919904353,1919252000,1852795251,1661536781,1628008557,809053292,151587176,1735737915,1830844775,1919905385,1919252000,1852795251,1836412448,544367970,151653695,157642346,151610944,1867397897,1829308941,1628010095,809053292,990447881,1684107084,1919902496,1952671090,1981834341,1769173605,168652399,154812480,158163297,990447881,1768714323,1768169588,1937008999,2013858317,157771875,1630300257,151587180,1635210043,1768169584,1937008999,1862863373,1870072178,1881171058,1981837940,1769173605,841707119,158884140,1869894459,1830839666,1919905385,1919252000,1852795251,1829308941,1695118959,1865181555,1702061670,1852383348,1953722214,1346046322,1953393007,544175136,1769108595,168650606,1818321673,1919945068,158625385,1346046217,1953393010,1920234272,224882281,1869416714,2019625334,809710636,151611440,1919243323,1634625901,1713399156,1952673397,225341289,1852377354,825362804,151587176]},{"sector":5,"length":512,"data":[1952797243,544109173,1142976372,168645455,1919945229,980708969,1685023753,151609971,1195051273,1663071333,1634885992,1919251555,1661536781,1628008557,154152044,1312491785,543976565,151653695,1678337386,157642351,1497041161,168653669,1987013897,745301001,168651873,1987013897,745038089,157823536,1329269001,1970304117,1751326836,1667330657,544367988,1668183398,1852795252,1762200077,839480430,151611441,1631795977,1142975596,168645455,1886218761,1769107465,168653934,1701736292,1701972282,1594494324,1415071060,1696608819,225666158,1594494218,1415071060,1734701833,1953391981,1702065440,1881159217,543257185,1818391920,656434025,1162104643,151653671,1970500449,1661560173,1415527027,743725125,1597666148,1096040772,1852115469,981037684,1829308941,1628010095,1147087992,155276353,1867266825,1679844449,543257697,1835492723,225734245,1869416714,1935935862,158884140,1396377865,1142977637,151653715,158756717,1932294242,151587187,1634683963,1397956708,1829308941,1628010095,1936010360,990447881,1684107084,542328096,1347637288,151653673,157447539,1630304354,151587192,1952794427,1718182944,1701995878,543515502,1869770792,1835102823,2053731104,1852383333,1918988320,1634887521,695429232,1627982349,1644782692,673721464,1702521203,1931503215,724134772,791229745,991966769,543450177,1667331187,1769152619,1763730810,1634738286,1919377778,1936224353,1829308941,1628010095]},{"sector":6,"length":512,"data":[1093938280,151587176,1634030139,1668246636,543519841,1869440365,1713404274,1952673397,225341289,1852377354,825362804,151587176,1818313531,1329864812,151653715,158756717,824997985,1748449334,1144719625,541674832,1953721961,1634495585,1852795252,1701339936,168651619,1953392905,1749430793,1946749453,158626661,1630304353,151587192,1297105979,1919950921,1852142437,222240884,1852442890,1869482362,1953722216,990447881,168652622,1937076233,1936001384,990447881,1702256979,1297105952,1852121161,544830068,1919181921,544437093,1931505263,1801675124,1919903264,1818321696,151653740,1752397168,225010697,1702103306,1929999475,1769155689,990447881,1986622032,543519841,1635017060,1701146144,543450468,151653695,1074362986,151587174,225398331,1869416714,2019690870,157905708,1278937353,543449455,1998608450,543716457,1986622064,543519841,1635017060,2053731104,151653733,158756717,875325537,151611448,1816214281,1633906540,1830839668,1919905125,1969627257,1769235310,168652399,1953392905,1748054537,990447881,1819042115,1397703712,1778977293,1869482339,225273197,1869416714,1936001398,158884140,1278937353,543449455,1998607173,543716457,1986622064,543519841,1635017060,1734701856,1953391981,1077938701,1869416762,1885473142,225473324,1869416714,2019625334,151597356,1951611657,544502369,842211425,1953063469,1768710944,225734245,1633880330,1678339180,1685221239,1920233504]},{"sector":7,"length":512,"data":[1885494048,990447965,1953066569,543973737,1953068915,1948280931,1919950959,1667593327,761554292,1701080941,1778977293,1852377443,1919251561,218762610,824195850,1768041782,1919950964,1667593327,761554292,1701080941,1919098924,1702125925,758264608,544500066,1701080931,1818587936,1869898597,1851859058,1969889380,1948282989,842211439,1953063469,1685021472,218762597,1869416714,2019756406,151597356,1816214281,1633906540,824206708,1936024608,1885958755,225603444,1870137610,2019625330,158884140,1094387977,1668246636,543519841,542393420,1668506980,1953524082,544436847,1668183398,1852795252,1762200077,856257646,151611441,1631795977,1142975596,222907728,1667893514,1769497865,151653748,158756717,1630304354,151587192,1634683963,1480728676,1953068832,1702043752,1952671084,168653423,1987013897,746087177,1480938591,154284884,1867266825,857760865,1768041778,1868767348,1931502948,1701668709,168653934,1987013897,746087433,168654947,1818784521,746087433,151587124,1952794427,1852402720,544366949,1919181921,544437093,1937008994,825045024,151653685,158492787,824997987,151587122,1952794427,1852402720,544366949,1919181921,544437093,1937008994,758526240,168638769,1987013897,746086665,925904944,990447976,544499027,1835492723,544501349,1702060386,1684300064,1936942450,1853187616,1869182051,151653742,158625385,157823283,1127942409,543976545,1229803588,1829308941]},{"sector":8,"length":512,"data":[1678341743,1177562232,1749435974,1278937353,543449455,541799478,1835492723,544501349,1768778092,151653748,158494584,1663858787,151653752,158756717,808220769,1748512816,1396377865,1931506789,1701668709,1814066286,1953066345,1853187616,1869182051,151653742,158625385,157823283,1127942409,543976545,1229803588,1829308941,1628010095,1935879288,990447881,544499015,168645443,1918987273,746087177,151615585,1699166985,1868767348,1931502948,1667591269,544370548,1701012321,1914729331,1952999273,151653747,158756717,1663855715,151587176,1634683963,1279467620,1953068832,1667309672,1936942435,1734963744,225670248,1869416714,1751320950,1747989548,990447881,1684107084,1954047264,1701080677,1667309668,1936942435,1734963744,544437352,1717920808,1953264993,1953063456,1952805664,151653673,158756717,808220769,1748578352,1396377865,1679848549,1919120229,1869901929,1667309682,1936942435,1734963744,544437352,1668183398,1852795252,1762200077,856257646,151611441,1631795977,1142975596,222907728,1970276618,1695115379,168654946,1937076233,1718552936,1952805734,1953391904,842234226,1913195021,157578341,990447881,1886221642,544175136,1647129139,1663071337,224748655,1846152458,1936681071,1830828660,1678341743,1718561912,1952805734,1920099616,828863341,1778977293,1678340205,1836086121,168650611,1701670766,1829321325,1678341743,1718561912,1952805734,1920099616,845640557,1778977293]},{"sector":9,"length":512,"data":[1678340205,1836086121,168650611,1953066601,980578917,158756717,1865185380,1702061670,1919230068,1735617906,1678380339,1836086121,1832544115,1628010095,959458408,151587176,1936278587,2036427888,1920234272,543649385,1668183398,1852795252,1762200077,839480430,151611441,1631795977,1142975596,168645455,1953069157,1869416762,2019625334,809710636,151611441,1919243323,1634625901,1713399156,1952673397,225341289,1852377354,825362804,151587176,1952797243,544109173,1142976372,168645455,1480938591,1852115284,168653668,1147079181,155276353,1835492723,544501349,828732277,1634738230,1881170290,1768710773,1143414883,658592833,1919224333,1735617906,1650729009,1867392777,1297105952,1869094985,1763734643,1635021678,1684368492,858860583,741355820,220668967,1920099594,845640557,157443104,1953451559,1869505824,543713141,1869440365,1713404274,1763734127,1769236846,2053729377,1869182049,824977262,808528947,656680748,1919224333,1735617906,1650729011,1346643721,1763723597,1769236846,2053729377,1869182049,1634082926,1684368489,858860583,741355820,220668967,1718511882,1920234351,157443104,2003783207,544106784,1647129139,1881175145,1702129522,1684370531,1685024045,1142959205,541674832,1936876918,544108393,1980370215,1769173605,1679847023,807864674,657469486,741552428,808202289,1147079181,155276353,1935961701,168626701,1128354899,1702037835,1852140903,1634738292,1931501938]}]],[[{"sector":1,"length":512,"pattern":0,"data":[1801675124,1414735648,659243841,1953696269,1650723179,842019081,1969496116,692004976,1414728205,155927361,1935961701,1695091213,1695114350,2037544046,2573]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[23026253,131074,4259872,1507327,-1594489856,262144,30,65537,4259844,4]},{"sector":4,"length":512,"pattern":0,"data":[67156070,140980685,1006667814,-1342016112,-2046110630,157706208,-1107260922,93,1768,12084736,-1407070900,141819964,45404298,-202694195,195,0,-1912599112,-1932292904,-2082985024,1253327043,-2017975859,-2060464874,106395072,1962313047,-1260483830,1914817864,-1950314930,112876,1912626943,112967,835567667,-661961358,-1962934087,81969617,-1207113279,835518471,872415162,571593,-930336307,-1966603761,-1203718707,835518473,1751536486,0,12241766,-1173820672,65732633,-1275051846,-1205744375,567102465,0,0,1142976334,541674832,1953722216,1936615712,1819042164,168649829,1953451556,1869505824,543713141,1869440365,1713404274,1763734127,1769236846,2053729377,1869182049,604638574,1229803588,1768843552,1818323316,1952545385,544108393,1818845542,168649829,2003783204,544106784,1647129139,1881175145,1702129522,1684370531,1685024045,1142959205,541674832,1936876918,544108393,808463920,2573]},{"sector":5,"length":512,"data":[758843917,1679830317,1852401253,1881174885,1701015410,1701999972,990514547,539831597,1702326096,828788594,990514480,539831597,1634692166,1114592372,168641603,757935419,1869366816,1867805793,225604691,990514442,1701336096,1629513075,1646290290,544437353,1948282473,1176528232,1953701968,1937077345,1919907616,168636004,1346767373,1397050463,1095259219,1902446926,825237621,1175063912,1363500880,1414283605,1902446927,808722549,218762600,1480674570,541939022,544567653,168638001,1329793549,542397262,1835492723,225734245,1946815754,1678339685,808525937,168636462,829318516,1902381366,808333600,221655397,1946815754,828337765,544498697,1697656369,990447921,808333361,1678313997,774971508,154297648,808532745,221261360,1952712970,808333600,151597925,808202555,808333360,1678313997,774971508,154428720,808532745,808464428,168636462,544498697,1697656369,990447925,741355569,774910000,151653680,824210532,912601134,825952521,808464428,808464428,168636462,544498697,1697656369,990447927,808202289,808202288,808333360,1678313997,774971508,154690864,808532745,808463408,808463408,221261360,1952712970,808333600,151599461,808202555,808202288,808202288,808333360,1678313997,774971508,808543536,825952521,808463408,808463408,808463408,221261360,1952712970,808333600,154218853,808532745,808463408,808463408,808463408,221261360,1952712970]},{"sector":6,"length":512,"data":[808333600,154284389,741423881,741355568,741355568,741355568,774910000,151653680,824210532,828715054,990447923,808202289,808202288,808202288,808202288,808333360,1678313997,774971508,875652400,825952521,808202288,808202288,808202288,808202288,808333360,1678313997,774971508,892429616,825952521,808464428,808464428,808464428,808464428,808464428,168636462,1702103565,909205358,544498697,1697656369,168638001,544498697,1697656369,168636979,544498697,1697656369,168638516,544498697,1697656369,168637494,544498697,1697656369,168636472,544498697,1697656369,168638009,544498697,1697656369,221393201,1952712970,808333600,942813541,1678313997,774971508,875652400,151653684,824210532,828715054,168636470,544498697,1697656369,221656881,1952712970,808333600,842608997,1678313997,774971508,808609072,151653688,824210532,845492270,168637490,544498697,1697656369,221262898,1946815754,845114981,1679832629,774971508,892495152,218762550,1411398410,1914725736,1767992677,1735289198,1886938400,1852141167,1629516660,1864394098,544828526,1701012846,1918989171,1868963961,808525938,1954112045,1868832869,1701601909,168636019,1678313997,774971508,825582896,151653682,824210532,929378350,168638518,544498697,1697656369,875704369,1678313997,774971508,842097968,168636472,544498697,1697656369,909325617,1678313997,774971508,925984048,168636985]},{"sector":7,"length":512,"data":[544498697,1697656369,942944306,1678313997,774971508,858940720,168637488,544498697,1697656369,808858930,1678313997,774971508,942826800,168638001,544498697,1697656369,842477619,1678313997,774971508,859006256,168638514,544498697,1697656369,876098867,1678313997,774971508,942892336,168636468,544498697,1697656369,909717556,1678313997,774971508,859071792,168636981,544498697,1697656369,942683700,1678313997,774971508,942957872,168637494,1329793549,542397262,1935961701,168626701,1480938591,1702043732,1852140903,218762612,841877770,151598648,1701985033,1702260589,1096238624,544429129,1868981602,1176528242,1852383312,1970435187,1869182051,168653678,758843917,1663053101,1701604449,2036473956,1869366816,1867805793,225604691,757938954,1852383277,2019631162,2021161021,758843917,1830825261,1718183023,980641129,746086944,746087456,225207072,1342835978,1919252335,808543823,1869770784,1937055843,1931506533,218762601,1970276618,1629513843,151653752,544238947,539785313,151653680,543516522,168642112,1734700553,225992992,977289226,1711868429,221340780,1869416714,1818370166,1818304556,1627982349,1646290030,807414892,151611494,1953063483,758128755,151653683,1075864938,151653702,544632685,1865181555,1702061670,1702109300,221339502,1633880330,1830841452,808545397,1077938701,151653690,544632685,539782242,168651873,1987013897,745300768,168637472]},{"sector":8,"length":512,"data":[1919447817,745300512,225207072,1851853066,1818370148,1714429996,990447976,1937008994,925709344,1778977293,1178607717,1829308941,1931507311,1718561897,1952805734,1852142624,221655391,1633880330,1830841452,808545397,1077938701,151653690,544632685,539782242,168650849,1684955401,745300512,1751527712,1648036105,544437353,842083640,1778977293,1178607717,1829308941,1931507311,1718561897,1952805734,1852142624,909455967,1661536781,543976545,829191533,1074400560,168639040,1886351369,225992992,1835206922,2019631216,221257772,1735002378,1178607717,1711868429,1886808420,678720288,539765041,168653939,1952805385,1077938701,151653690,1819635046,1953702000,740897064,225735456,1701972234,218762612,1819634954,221917233,1701054730,1818370147,1829308941,1646294639,221260904,1970276618,1629513843,151653752,544632685,824997985,151653680,543978861,168654946,1751349257,2019696743,225993004,1869613322,2019631216,1711868429,1948279916,1702132066,1920233504,2019711776,1931488032,168648041,1970103817,1931505772,691087476,1953701932,1913195021,225342565,1342835978,1919252335,808543823,1684956448,218762608,1126185738,1702260335,1629516914,1869375008,1852404833,1869619303,544501353,1768383858,1919251571,544175136,1229148993,538979913,544370502,1702129257,1818324594,1702065440,990514478,1701336096,1936028192,544500853,1635216481,1746957177,1696625505,1952670072,824211820]},{"sector":9,"length":512,"data":[1768169528,1937008999,1769414700,2048944244,544174693,1684300144,543649385,1948282479,168650088,1701584955,1763734630,1701978214,1919513969,221144165,168639242,1850023995,981037684,676614944,1025517872,1847615776,1700949365,1869881458,1852793632,1953654134,540024876,1394621756,691021908,824196128,775500101,154864141,541672480,1851859005,758657312,1918986339,1702126433,1969365106,1919247974,990514478,1685024032,1701406313,1230184563,742999084,1093425219,218762584,1869366794,1867805793,541344578,1668248176,168626701,1937076233,1885479016,1829308941,1646294639,1886596208,1929972237,1931502197,842083440,168626701,1411398409,1713399144,1886679906,1936615712,1668641396,1852795252,1852793632,1953654134,1752440947,1869881445,1718558832,1701344288,1635021600,1948281699,224469103,540739850,1801675120,1109419109,1713390659,544043631,1948282473,1646292581,1936028793,1769414700,1948280948,1679847287,1953064809,1701847155,2036473970,539911540,1701336096,1886352416,990448141,1954112032,1634213989,1752440947,1769152613,539782759,1667852407,1702305896,1852270880,778400367,168626701,1935828489,1948282996,1702132066,1920233504,1885494048,1563570477,168626701,1310735113,1998616431,1701716069,1948279909,1853169775,1801675120,1701344288,1145258528,544175136,1229148993,168635977,1812531725,1931501925,1528835177,875393122,151653725,544632685,539785315,1074400569,168639040]}],[{"sector":1,"length":512,"data":[1987013897,745300256,1769167648,990447965,2021160992,2021138552,1092647032,541147457,1111638594,1678313997,1931502437,1762266473,221257830,1869416714,1751195766,154148908,807418633,540028976,808464432,1094795552,1111629889,168641090,1919906313,746086688,151598112,1111629883,807420482,540028976,808464432,1094795552,151653697,544370546,539781217,990447924,808464416,1111629872,807420482,540028976,1094795585,1818561037,168650099,543319049,1748255792,1747988780,540739849,544039265,540685873,808464432,1094795552,808460353,1109405744,222446146,1668811018,1629513576,1751198828,540739849,808464432,1111638560,808460354,1092628528,222380353,1684956426,168650345,1684300041,746086688,858796832,168650800,1869902601,168654707,1869573129,1111498864,1829308941,1931507311,1885482096,1879640589,1646293103,151653744,225731954,1175063818,1952542572,1128427348,1852121156,168652900,772344333,909652024,168626701,1866670139,1919252078,543236212,1651863396,1881171308,1768121714,1852795251,1836412448,544367970,1629515636,1920234272,778530409,221973005,1159740170,2037544046,1885741114,1025535593,758133024,1702132066,1970234400,543517794,1663070068,1702260335,168653938,1881147707,1648654963,540876908,1918986339,1702126433,1969365106,1919247974,221973005,1159740170,980707704,1936728096,1818379386,1663057184,1702260335,1684370546,1818326560,168650101,990514491]},{"sector":2,"length":512,"data":[2054385696,543973956,1970235507,1646290028,1952522341,1634036768,824210547,2036473913,544433524,1735290732,218762542,1869366794,1867805793,544371795,1129271888,1685353248,1819042147,1163089184,1769152595,543777824,1768973936,1344289390,1411404372,1163155778,1936728108,1818379386,1414537274,1497505874,168641876,1330383373,541868355,1886930281,1331109946,168641618,1094930252,2037194828,1952543859,1331109946,168641618,1094930252,1885741132,540700265,1415135828,1275727173,1279345487,1417311008,1534094693,979186226,1415135776,218762565,841877770,151598648,1701985033,1702260589,1096238624,544429129,1868981602,1176528242,1852383312,1970435187,1869182051,168653678,758843917,1394617645,1768121712,1663069281,543519585,1869768058,1935763488,1701143072,1768300654,1919251564,1629512805,1634038380,673216868,1920235622,544498529,1818845542,1868963955,1702502514,774467442,168626701,1987013897,745108256,1718639392,1567517040,1812531725,1679843685,1528835177,1852403814,151653725,544632685,539785315,151653685,544236914,1937141613,218762615,1869416714,1768169590,1885020204,1648654963,168648044,758843917,1126182189,1801676136,1919903264,1847615776,1952540517,543520361,1651340654,221147749,151653642,1953719668,1954112032,1953505381,1717248114,728656240,942431545,168650800,544893449,168642112,1684955401,1954112032,1953505381,1717248114,728656240,925654329,990472294]},{"sector":3,"length":512,"data":[1634231072,543516526,1881173876,1953067887,224753257,1869416714,1818304630,657270572,990447881,1869902624,1629513074,1852402976,1931506549,225339241,1953696010,224555887,977289226,168626701,757935419,1634692128,1970217060,1635131506,543520108,1869901423,1701344288,1635021600,221145955,151653642,543452262,1954112116,1953505381,1717248114,1567517040,1711868429,1931502700,218762612,1126185738,1970302319,1948280180,1663067496,1702063980,1881175155,1919252335,543584032,1646276657,2003790949,1701344288,1836412448,779248994,1700208672,1851876128,1730180135,1629516901,990514542,1635280160,1981838435,1702194273,1667588640,1702065505,543584032,1853190002,1735289188,1461723182,1868767333,543452277,544499047,1936682083,2036473957,1684300064,543649385,168652393,1869357115,674247015,1953390957,1634956137,1646275625,1763734645,1953702004,543976553,1819635575,1948741220,543515168,1667332197,538979956,1668180307,1702305893,543976487,1702257000,225408032,1663056650,1801676136,1701344288,1936028192,544500853,2004446817,539785569,1931965545,1818850080,1948285292,1635197039,543519859,1818458467,1998615397,2037543535,543649385,1970233953,990514548,1701344288,1851878688,1936943476,168636001,990514491,1701336096,1886938400,1852141167,1936269428,1935761952,1818321769,1814067564,674391919,1852403814,538979881,1936681044,1718558821,1970239776,1869117216,1835364896,1700949349]},{"sector":4,"length":512,"data":[990514546,1735156000,1634886245,1634038304,1702521196,1634235424,1869357172,1713910375,695101808,1814067232,808544111,539570728,1869357117,674247015,1852403814,1998597161,1751345512,225667360,1998600970,544498024,1998611831,779382369,168626701,1954047497,1952670066,990447904,1028936480,1634541630,1936290926,539779443,1869641829,1953391982,1885741100,168652393,1953719817,1953702000,990447904,1869767712,1752440944,1634541669,1936290926,168649075,1684825609,154298220,540739849,1752397168,1735355424,841494577,151653673,1819635046,1953702000,740897064,544502560,1394621193,540876884,828862316,1885743152,740912745,1768973856,151653742,1953720678,1767579760,1567651909,540739849,1025528915,1768973856,218762606,757938954,541138989,1647128625,543519865,1651863396,1663067500,1663069793,2037543521,1835819296,544502639,1679833393,1953064809,1646275699,1713402997,1886679906,1819176736,1953702009,1936028271,1701344288,758843917,1730161965,1634886005,1701147758,942743652,1226842158,1870209126,1701980021,1768907808,824207214,2036477232,1679844724,1818391919,539784037,1851877475,1948280167,656434536,539440689,656437108,774322225,168626701,1886216969,1164532512,744321144,168638513,1668180489,1953459744,1869374818,221786487,151653642,543452262,151614579,1394621193,540876884,1852403814,1885741100,168652393,1852990985,1953392996,990447904,542397216,1852383293]},{"sector":5,"length":512,"data":[1885743220,740912745,1768973856,151653742,1836016486,1953702000,153694504,1394621193,540876884,1852403814,1953701932,1937077345,1952805664,1711868429,1937011566,1834688631,1635021689,168648052,1936028681,2036473972,1881171316,1528853108,1953724781,824931425,1176513629,1363500880,1414283605,151653711,1847622250,1902474351,225206645,990514442,539831597,1746953559,543520353,1763733089,1734702190,539062885,544163616,1986948963,544502373,1763734633,544175214,1702109281,1646293101,1701209717,168636018,1879640589,543716213,168651108,1634036745,745104416,2054380320,1886217556,151653725,1819042147,1869366816,1867805793,222577474,1869613322,1768169584,168626701,1987013897,746086688,1480674592,726488398,151653681,544632685,539785315,2017814875,168648048,1651864329,746086688,225993504,1852377354,2019762275,1812531725,1931501925,1528835177,1700035187,224227437,1684080906,1769152612,2019631148,168626701,757935419,1701336096,1717989152,762929709,543518319,1701081711,1718558834,1734438176,1970563438,1881171300,1818390386,1646292325,2003790949,1851876128,1953064992,544437536,1701995880,990514478,539831597,1780507991,544502645,1835627124,1717989152,1701344288,1936683040,1818388851,1701584997,1852400737,1702502503,221146994,151653642,544238947,1702132066,1920233504,1769167648,807873629,151653671,544894570,168642112,1668180233,225014560,1701054730,2019762275]},{"sector":6,"length":512,"data":[1077938701,218762554,757938954,1866670125,1948285296,1914725736,544502629,1948280431,1663067496,1702260335,1684370546,1145258528,1818326560,1948280181,1970217071,1969365106,1919247974,218762542,1701972234,1869422704,224555894,1835665674,1952850032,1769489779,218762612,1953459722,1635086693,168639084,1651797870,2003790949,221919281,990514442,539831597,1702256968,1935828512,1914728564,1684960623,544175136,1881159473,1701011820,168636019,1829308941,1629517423,1293954168,1431197761,151653709,543323507,539785313,2017814875,151608688,1684086843,1953723754,1886938400,1852141167,1869881460,221720864,1633880330,1344302188,1919252335,808543823,168626701,1766137915,1919248500,543520544,1702257000,1635280160,2037150819,540487968,1768384868,539784052,1998615151,1634213989,1696621942,1952670072,824211820,1768169526,1937008999,1461723182,1633886309,990514542,1952801824,544498533,1952540788,1852793632,1769236836,1629515375,1629512814,1937074788,1869488244,168636023,1711868429,544042851,1919907697,1953505380,1952129138,909209189,537529693,991961120,2016442400,813201528,1701650480,544435809,544239476,1931503215,1801675124,1948270112,909209189,538970637,540745760,2021142648,825260152,1634037024,1948283758,1864396911,1953701990,543908705,1702109244,221655406,538976266,2015378208,2021161009,540029048,1851876717,1869881459,1718558832,1635021600,1025534819,1852142624]},{"sector":7,"length":512,"data":[168638001,1936614921,544699252,1937337691,1567908212,1946749453,544502629,1702132066,1920233504,2037209888,1952543859,744304939,1599096352,1397966156,1312901204,1778977293,1178607738,1711868429,543978861,1919907697,1953505380,1952129138,224226917,1701054730,1767579747,1567651909,1077938701,218762554,757938954,1866932269,1852793632,1953654134,544175136,776225602,168626701,1937076233,1768169576,1812531725,538992997,539781476,1417311067,1567649125,1661536781,543976545,1634692166,1114592372,168641603,1886351369,225010720,151653642,942684206,218762550,1701579018,1769152609,1935351852,1835357306,1563503472,1881160457,1953393007,544175136,1986948963,1702130277,1969365092,1919247974,168626701,757935419,543574304,543516788,1869641829,1953391982,544434464,2004116834,544105829,540356909,543452769,539768369,1931502967,1819635560,2019893348,1936028272,1752440947,1629516649,543236211,1651340654,168653413,757935419,1953068832,1953853288,1768125216,1769238117,543385958,1635020654,1852795252,218762542,1869416714,2019762294,1767579692,1567651909,1879640589,543716213,168654947,1684300041,746087200,1314406733,825052501,1661536781,1663070317,1095576696,1297436248,825045546,1879640589,1663070319,151653752,1713398122,540439412,1765476617,1668489318,1953391977,1667851881,1953459744,1869182049,218762606,1226849034,1752440934,2019893349,1701736304,1763734638,1701585011]},{"sector":8,"length":512,"data":[1948283763,544104808,1869768058,1702305836,1936615712,544502373,657338407,1752440876,757100133,225993573,1814051594,1768186213,2048943982,1936683621,1752440876,824208997,1768169526,1937008999,543584032,1953390957,1634956137,1226842158,1752440934,2019893349,1701736304,1763734638,990514547,1936683040,1986622569,1998597221,1868767333,1696627056,824932451,1734960160,745763945,1701344288,543236206,1768121700,543973741,1852403568,1831346292,1700952417,1948265513,225338728,1948269322,1914725736,1767992677,1735289198,758526240,544760677,1768384868,221148020,151653642,543387241,168654947,1886216969,746087200,168636448,543648265,168642112,1987013897,746086688,657468967,1929972237,2004053876,1846086157,1663068005,151653752,544632685,539782241,220672039,1701972234,1953702000,224555887,1869416714,2019762294,1095573548,1297436248,1778977293,1713401965,221475700,977289226,1913195021,1830842469,1651734127,1829308941,1629517423,774319212,151653671,1936684147,151653730,544632685,539785315,1314406733,168643925,1651864329,746087200,1164532512,224227448,1937008138,168639027,1885696521,1987013920,168649331,758843917,1411394861,544041330,543581807,1767993972,1735289196,1919253024,221148015,1074400522,168639040,1886216969,1954112032,1953505381,1683693682,1563503977,657467180,1778977293,1075870318,151653702,543384932,168651108,1886218761,222445600,977289226]},{"sector":9,"length":512,"data":[168626701,757935419,543574304,1663067511,1918985580,1864393829,1629516917,1948281964,1679844712,1835623269,1679846497,1953064809,1797270643,543976553,543516788,1768121700,543973741,1852403568,1948265588,221146991,151653642,544238947,1702132066,1920233504,1768184608,744304941,657336096,1778977293,1075870318,151653702,543384932,168651108,221921344,1835665674,1952850032,1769489779,218762612,1937008138,168639030,1867391035,1868767351,1919252078,1752440948,1948283753,543236207,1851880563,1685217636,1937055788,1701601889,1919903264,779379053,1716068384,1701146144,744777060,1830838560,1937075817,540740109,1852270963,544434464,1701997665,544826465,1936028272,544501349,1948282473,1864394088,1869050997,543649385,1717990754,539783781,543452769,1629514084,1634038380,1881176420,1953393007,990514547,1935765536,1953046644,218762542,1869416714,157447030,540739849,2037411683,1701344288,1919510048,1679848563,1953064809,1829308941,1629517423,774319212,151653671,1936684147,151587170,1819287611,1763733615,543236206,1768121700,543973741,1852403568,151653748,1937141613,151587191,1868767291,1713404272,544372079,1701998445,1734960160,225670249,1869416714,225932150,1869416714,158823286,540739849,2037411683,1870099488,1919905056,1768169573,1937008999,168626701,807429737,168626701,1750343739,1919950949,1718906473,543630624,1667592307,1701406313,1920213092,544435561]}]],[[{"sector":1,"length":512,"data":[543581807,1767993972,1735289196,1919253024,1746957167,778400357,541663264,1819502948,543517545,1936287860,990514476,544174880,1702242121,1936286752,1701601889,1953046628,1126178862,1701670255,1864397934,1948284021,1763730792,540024934,543452769,1768189541,1718165606,1970239776,1851881248,1752440948,221148009,1074400522,168639040,1886216969,1954112032,1953505381,1683693682,1563503977,657467180,1778977293,1178607738,1678313997,1679844197,151653737,544238954,168641088,221921344,1684956426,168650345,758843917,1394617645,1702260584,544106784,543516788,1869641829,1953391982,1226842158,1870209126,1970479221,1919905904,808525940,1954112045,1701978213,745761889,1835364896,1700949349,1869881458,758843917,1629498669,2003790956,1679832096,1953064809,1868963955,1752440946,2019893349,1701736304,221148270,151653642,544632685,657225825,220685611,1869416714,2019827830,1767579692,1567651909,1627982349,1679844462,1679830136,151653752,544435818,168642112,1734700553,225993760,1869416714,1751195766,657270572,1077938701,151653690,1936684147,218762615,1668811018,1629513576,2019830904,1829308941,1931507311,824192105,151653680,544632685,875329635,1077938701,151653690,544370552,539785316,168654948,1986618377,225014560,1970276618,1679845491,151653752,1886351212,222445600,1869416714,1818435702,168637484,221921344,1869613322,2019631216,1627982349,1629512804,807873644]},{"sector":2,"length":512,"pattern":0,"data":[151653671,1936684147,151653730,1886351212,222445600,990514442,1684300041,745104416,151598112,1869619259,544501353,1948282740,1768780389,1869898094,218762610,1126185738,1851876716,544240928,543452769,1746956135,778399087,168626701,1165194342,980707704,1718159885,168636448,1987013897,746086688,168651108,1651864329,746086688,1148875611,224226402,1869416714,2019762294,221327916,1970473226,2019762274,225993004,1869416714,1818304630,656418604,1913195021,1931505765,1651732340,1852115469,224815460,1701972234,218762612,1869366794,1867805793,544371795,1346653765,168626701,1480938591,1852121172,168653668]},{"sector":3,"length":512,"data":[1953720648,226062959,537529610,807411744,1697986862,825318176,1851869728,2037539189,808464928,538991923,1702390086,543236196,543651170,1948282473,1629513064,1835365235,1919249506,537529646,807411744,1714764078,808540960,1885688608,1651336564,840987237,1563635760,1766203424,543450488,1701670771,1853453088,544760180,1868787305,1952542829,1818845801,1701409897,168636019,538976288,943271472,926047008,1952665376,1919246959,808464928,538991923,1701078081,1296375908,1868767315,1851878765,1629516644,1663067246,1920561263,1952999273,1852793632,1769236836,779316847,168626701,538976288,757935405,1663053101,1735287144,1646293861,2003790949,1852793888,2036473957,1885432352,1752458600,168626701,538976288,960048688,926047008,1885688608,1651336564,840987237,1563832368,538970637,538976288,1646275872,1768318837,1226848888,1635196998,1869488243,1768169588,1634496627,543450489,1920102243,1819566949,168636025,538976288,757080096,542328352,543452769,1914721095,1936287589,1936876916,1936286752,2036427888,1763730533,1346576486,1936269397,858798112,774583864,538970637,538976288,1377840416,1768169560,1634496627,1948283769,1931502952,1684955508,543453793,1647129139,1914729577,1936287589,1936876916,537529646,538976288,539828256,1701978194,1953720679,1528853093,1970037110,1965055333,1919247470,1851880563,1948283748,1931502952,1684955508,543453793,1647129139,1914729577]},{"sector":4,"length":512,"data":[1936287589,1936876916,537529646,807411744,1631140142,942824224,1885688608,1651336564,840987237,1563832368,538970637,538976288,1646275872,1768318837,1243626104,1515733829,1684105248,1869772576,1881171822,1768318322,908599416,539781174,1970235507,1646290028,926294117,221129064,538976266,538976288,541138989,543452769,1853169749,1936876900,1684955508,1701344288,758264608,544500066,1868787823,544433508,1347374924,1316772392,2084928602,1143555406,537529646,807411744,1647917358,959601440,1885688608,1651336564,840987237,1563832368,538970637,538976288,1277177120,1684955424,1847613216,1998616431,543912559,1752459639,1413563936,1679831603,1702259058,168636019,538976288,960048688,844832867,1699946553,1835365488,544367970,909127730,537529693,538976288,539828256,1663064146,1735287144,539911269,544698190,1948284009,1818716015,824210277,842215222,1953063456,1734701600,1702130537,1969496178,221147245,538976266,538976288,1314005037,1936286752,2036427888,1818632307,1769234799,1881171822,1953393007,1734701600,1702130537,1953702002,1937077345,537529646,807411744,1681471790,842029856,1952665376,1919246959,808464928,168647990,538976288,757080096,1735746080,980969830,542003744,1886611812,1702453612,1919230052,762474354,1852403568,544367988,1768383858,1919251571,1920409715,778530415,538970637,774905888,543504697,540160347,1869898575,544367970,909127730]},{"sector":5,"length":512,"data":[537529693,538976288,539828256,1663062616,1634561391,1629512814,1684366436,544175136,1818322290,1633906540,1159751028,1746948941,1818521185,168636005,538976288,757080096,541153312,1835888483,543452769,1869376609,1948283767,1818304623,1633906540,2048943476,544174693,1701273968,1852776563,1397572896,808334368,537529646,538976288,539828256,1528843604,1563524144,1684300064,1948279909,1700929647,1818386720,1869881445,1769435936,543712116,1869881428,1701344288,760433952,542330692,1430406468,537529671,538976288,538976288,1886220131,1651078241,1646290284,1986095205,1920298857,1752442912,1763734625,1411394675,1836411424,1763734384,544175214,1414416679,662206496,168635945,538976288,960048688,828055654,1666129975,1700949876,808591474,224212528,538976266,538976288,1701060653,661091682,1296375923,1969627219,1769235310,544435823,544825709,1802661751,1702257952,1769414766,1629513844,1768432160,1852138596,1296375842,168635981,538976288,757080096,1735746080,980969830,1936286752,2036427888,543584032,1886413165,1701601889,1734438944,1679848293,661546089,1667309684,1853189987,1868963956,1835081842,1953396079,224816928,538976266,538976288,1752440864,543519589,1701273968,1027416179,221130784,538976266,959328288,1528850233,1327510834,1651471459,840987237,1563832368,538970637,538976288,1646275872,1768318837,1428175480,1935767328,1634628896,543517794,1914728308]},{"sector":6,"length":512,"data":[1735353189,1702062446,1397054240,1914723664,1952541797,1830839397,1919905125,1886331001,1851880037,168653668,538976288,538976288,778643488,1830825573,1696626287,1529641057,1567650661,168635945,538976288,960048688,811278440,1867391031,1651336566,840987237,1563832368,538970637,538976288,1646275872,1768318837,1377843832,2037543968,543649385,1679847284,1819308905,1663072609,1702129263,1864397934,1717903462,1952671078,543520361,1919181921,544437093,225665384,538976266,538976288,1633886240,1684370293,1193304352,1763722832,947265646,1869425974,1763730788,1752440934,1629516649,1701995620,1998615411,1176531809,1749435974,543584032,1145456198,168636008,538976288,757080096,743917856,742672672,542592800,543452769,1763722319,1701605485,1953391981,221144165,538976266,959328288,1528850745,1310733361,1835365999,544367970,909127730,537529693,538976288,539828256,1718056290,540702825,1751326817,543452265,542135120,544432503,1634038371,543450484,544503138,544501614,1836213620,1952542313,539780197,1937072483,543649385,1701603686,537529715,538976288,538976288,544501614,1646292852,1818435685,1684370287,1950949422,1667588640,543518049,1769366127,544437615,1931503209,1852400756,1684955424,544370479,1868854387,1998615669,224752229,538976266,538976288,1701978144,1701996900,1684370531,544175136,1701603686,573055091,1046231619,1430406468,2034114631,690125177]},{"sector":7,"length":512,"data":[538970637,774905888,543832377,540422491,1702260558,1919246957,808464928,168647990,538976288,757080096,1735746080,980969830,1769174304,1411409774,543582496,1920103779,544501349,1953721961,1952675186,544108393,1629516649,1313415278,2021138516,1851861024,1920213092,224748385,538976266,538976288,1869422624,1025533284,691019837,1869902624,1684369520,1650811936,1701275509,1852776549,1852383333,1970435187,1869182051,1630150766,1919251558,1752440874,1313415269,1680351316,168650101,538976288,538976288,544175136,947396705,1701060662,1852270963,1634039584,1936027243,221129075,538976266,538976288,1969365037,2020173415,1752440890,774905957,543766841,1718056290,1746958441,1931502689,543518063,1651470960,1936549228,544108320,1734833506,1917198457,1329882469,168635987,538976288,808463921,892492576,1987005984,1700949349,808591474,224212528,538976266,538976288,1969365037,2020173415,1701060666,1734833506,1931961701,1347637280,1935767328,1986097952,1629512805,1919251558,1869770784,1835102823,1634692128,1852776548,539785580,225736034,538976266,538976288,1752440864,1746957161,1948283745,1700929647,1852793888,1986338917,544830053,1701669236,1701344288,1650811936,1701275509,1701978226,1852399975,1868767347,1869771886,168636012,538976288,757080096,1701344288,1763730802,1869488243,543236215,1229803588,1635213600,1981834610,1769173605,1864396399,1162092646,742872386]},{"sector":8,"length":512,"data":[1111835680,743982933,1701995296,1634038881,224750690,538976266,538976288,1919295520,1948282223,1931502952,1668445551,168636005,538976288,757080096,1735746080,544762214,1679847017,1935766377,1651336563,980575596,1413829152,1768169542,1869488228,1634214004,1629513078,1919902496,1886610802,1768189551,1377855342,1145459781,538970637,538976288,1696604192,2037544046,1869883424,1769435936,543712116,1752459639,1701998624,544762214,694695478,538970637,774971424,1528836400,1310733874,1835365999,544367970,909127730,537529693,538976288,539828256,1718056290,540702825,540164941,1852074340,1998615591,778793583,538970637,538976288,1914711328,1936287589,544367988,1701667182,1633886323,1700929646,1702065440,1851859044,1701345145,1998611826,1701995880,1847615776,1700949365,1936269426,1886938400,1702126437,537529700,538976288,538976288,1763734369,1953853550,537529646,824188960,540160046,540619355,1702260558,1919246957,808464928,168647990,538976288,757080096,1735746080,980969830,541665056,1629497188,656434286,660873295,1684628512,544483182,1802661751,1667588640,1702065505,1701344288,1918988320,544367987,1970500449,224683373,538976266,538976288,1145643040,1684955424,541347616,1835888483,1935961697,537529646,538976288,539828256,1430406468,1646286919,1768318837,1411398264,1851859005,1028071524,1684628512,544483182,1802661751,544106784,1953460848,1702126437]},{"sector":9,"length":512,"data":[1869426020,221144420,538976266,538976288,1969365037,2020173415,1869357114,1852400737,543236199,1701603686,544497952,1953459809,544367976,1633906540,1852795252,1634235424,1396908142,808464698,1635197032,1869488243,537529716,538976288,538976288,1886418291,1702130287,1852383332,1919252000,1852795251,774905971,757086521,808333600,168635953,538976288,757080096,1650811936,1701275509,1633886322,1700929646,1634692128,543450468,1751607656,537529646,824188960,540225582,1176514907,1970430565,544830049,925904946,537529693,538976288,539828256,1430406468,1969365063,2020173415,1919950906,1869182565,1981838197,1769173605,1864396399,1162092646,776426818,541937475,543451492,544501614,1768711538,2037146209,1936028192,168653925,538976288,538976288,1969300000,1915580276,1952805733,1919033378,1886085477,1953393007,1965564019,543450483,544370534,1668248176,1769173861,1226860398,695424078,537529646,538976288,539828256,1430406468,540694599,1847609668,1998616431,1936421487,544106784,1818322290,1685024045,1935745125,1818588960,168636012,538976288,757080096,541934624,1835888483,543452769,1701078113,168636004,538976288,875572785,540171040,1668440397,808591464,224212784,538976266,538976288,1634541613,1735289195,1852404512,761621607,1885697139,1919448096,1751610735,1701344288,1397703712,1919249184,543974766,1936945008,1701601897,537529646,824188960,540356654]}],[{"sector":1,"length":512,"data":[1092628827,1818849904,808464928,168647991,538976288,757080096,1869770784,1835102823,1769497888,1868767348,1679844708,1819308905,1684371809,537529646,538976288,539828256,1679838532,1819308905,544438625,543516788,542135120,1835101730,221127269,538976266,538976288,1969299501,1701998452,1952540016,1919903264,539771936,539777092,1851859028,542449764,1701078113,168636004,538976288,757080096,1111835680,978863957,542655520,1701078113,168636004,538976288,909127217,825383712,2036419872,808464928,168647991,538976288,757080096,1735746080,980969830,1397576480,1296838487,1763727187,1935745134,1651336563,544367980,1852074340,1629516839,1885692771,543236212,1647129139,1864397929,1634887024,221144174,538976266,538976288,1969365037,2020173415,1464803386,541347631,1852074340,1629516839,1885692771,1752440948,1635131493,543520108,1634886000,1702126957,168636018,538976288,757080096,2036689696,657270560,1886745376,1953656688,1763730533,541401198,1835888483,543452769,1931505524,544236916,1801675106,1685217655,537529646,824188960,540487726,1310733147,1835365999,544367970,925904946,537529693,538976288,539828256,1718056290,540702825,1702129253,1735289202,1851879968,544433511,1752459639,1886418208,1646293605,1684960623,1935767328,1717924384,1684370293,537529646,538976288,539828256,1430406468,1646286919,1768318837,1763719800,1701322854,1663070316,1998611565]},{"sector":2,"length":512,"data":[1702127969,1868963940,543236210,1887004011,1936942450,1953046572,1936286752,2036427888,168649829,538976288,538976288,1918986016,1701273954,543582496,542462019,544432503,1881173609,1702129522,1684370531,1685024045,1851859045,1464016996,1297106003,1635197001,1937055859,221144165,538976266,538976288,1920213037,1852400481,1852383335,1629515636,1313415278,1411915860,691085389,2003791392,1919907616,1763734379,1852383334,1920099700,544501877,1952671094,1881174639,1953393007,537529715,538976288,538976288,1377857396,1663061327,778396783,538970637,774971424,1528838192,1310733106,1835365999,544367970,925904946,537529693,538976288,539828256,1718056290,540702825,1835492723,544501349,1717924464,1998616681,1814066017,544502639,544370534,1835363949,1667853935,1769414771,1970235508,1918967924,1701672295,225670254,538976266,538976288,1881677856,1751348321,544825888,1734700111,539905824,1802856515,695625057,537529646,824188960,540618798,540029787,1701012804,1919246957,808464928,168647991,538976288,757080096,1111835680,978863957,1986360096,1818325605,1735746080,1702390118,1868963955,541139058,543452769,1634213973,1768711278,857761646,1768041778,1868767348,1931502948,1701668709,779318382,538970637,538976288,1646275872,1768318837,1428175480,1819308832,1814066281,1936027241,543582496,1953721961,1952675186,544108393,1702521203,1668834592,1701078373,775299172]},{"sector":3,"length":512,"data":[538970637,538976288,1646275872,1768318837,1293957752,1684628512,544483182,1802661751,1953068832,1965170792,1919250544,1970233888,539124846,1735287154,221148005,538976266,538976288,1162092589,1481069890,1634231072,979724142,544106784,1647129139,1663071337,543515759,1835492723,1937010277,542449708,1886611812,1702453612,1128603748,1935745112,1919510048,168653939,538976288,538976288,1701867296,1684955506,1919903264,1330596896,1948285008,1852383343,1633904996,1948280180,544498024,542655301,1965060969,543450483,1953721961,543449445,1126196847,168635992,538976288,538976288,2003783200,656433440,1763714884,1952522355,1751343476,1948279909,1752440943,1886330981,1701080931,1330391072,1148735567,1031282732,1515093082,1316767100,1763715397,1702130542,221144161,538976266,538976288,1969365037,2020173415,541139002,1852074340,1663071271,1936682856,1752440933,1752375397,544502383,1769159976,1684368999,1868963881,1864396146,1918967910,1835562089,1667855461,538970637,538976288,1763713056,1920234350,1769235317,544435823,1667522856,1684086828,773860452,539569710,1159751273,542654767,544432503,1936877926,1886330996,1851880037,168636004,538976288,808529457,892492576,1851869728,2037539189,808464928,168647992,538976288,757080096,1111835680,978863957,544175136,1702129257,1885692786,1346642036,1763723597,1769236846,1931504737,1668573559,544433512,1881173876,1702129522]},{"sector":4,"length":512,"data":[1684370531,1685024045,168635493,538976288,538976288,1414416672,1749430816,544434464,544698222,1802465128,1814062181,1919251553,1750343726,1629516649,2003790956,1869881459,1650811936,1629513589,1768714352,1769234787,225668719,538976266,538976288,1752637472,543712105,1953721961,543976545,1768253556,2003771506,1346642030,1746946381,544502639,1769108836,1763731310,1769236846,2053729377,1869182049,168636014,538976288,757080096,1111835680,978863957,541869088,1701080693,1635021682,544433262,1864396385,1869182064,543973742,1970234146,539128942,1969713761,1953391981,537529646,824188960,540094766,540422235,1919051078,2037539189,808464928,168647992,538976288,757080096,1735746080,980969830,1650811936,1701275509,1869357170,1679848563,1735746149,660956519,1766334579,1685221207,1279673640,1852383273,1634038304,1869426028,221144420,538976266,538976288,1969365037,2020173415,1718165562,1650811936,1701275509,1702043749,1380130932,1296113712,1953063456,1684955424,1279673632,541278496,1734437990,1851858988,538970637,538976288,1696604192,1885692792,1852795252,1748054304,1667460896,1684370037,544106784,543516788,1969382756,1919248231,537529646,538976288,539828256,1430406468,1646286919,1768318837,1193294456,1836016416,1684955501,1935767328,1634628896,543517794,1931505524,1915712613,1869902693,1646290290,1801545074,1852403568,1763734388,537529702,538976288,538976288]},{"sector":5,"length":512,"data":[1867999560,1160275058,539578441,1853055351,1663071271,1918985580,537529646,538976288,539828256,1430406468,1646286919,1768318837,1428175480,1852270880,1684370031,1466517536,543453807,1629513327,1836410738,661941861,1718558835,1952805734,1918988320,168636020,538976288,757080096,1111835680,542656341,1718056290,540702825,1734942789,1701998446,1766334564,1685221207,543584032,1969713761,1953391981,1864397607,1702061670,1634738292,221148274,538976266,538976288,1162092589,1481069890,1735746080,980969830,1679838496,661546089,1667309684,1953523043,1919510048,1629516915,1836410738,661941861,1718558835,1952805734,1176518176,776357446,538970637,538976288,1142959392,1196769861,1969365080,2020173415,1970413626,1852403310,1852383335,1448365600,1629506884,1881171054,1936942450,543649385,1819440195,1998603053,1701603688,1650811936,1701275509,537529701,538976288,538976288,1763734377,1919950958,1667593327,761554292,1701080941,544173600,1735290732,1679848037,1936748402,544175136,1818322290,1685024045,168636005,538976288,757080096,1111835680,978863957,542003744,544698222,1684956530,544436837,1634692198,1735289204,1768910880,1914729582,1936287589,544367988,1953394531,544501349,1886351984,2037150309,538970637,538976288,673194016,1430406468,1953701959,543976553,1953723754,1936286752,2036427888,1634869363,1701322871,1868963960,1952542066,1919903264,2053731104,1701978213]},{"sector":6,"length":512,"data":[1852797793,221129075,538976266,538976288,1162092589,1481069890,1229201466,1953457952,544104736,1769238639,1818324591,1868769056,661941877,1918988320,1952804193,221147749,538976266,538976288,1162092589,1481069890,541335610,1634100580,544500853,1835492723,544501349,1953653104,544434464,1667590243,543450475,1763731049,1936269428,1818326560,1763730537,1836064878,224748655,538976266,538976288,1851858976,1751326820,1701277281,1869881444,1818326560,1864394101,1818435686,1953391977,1142977319,1718165587,779054624,538970637,774971424,1528836657,1176515633,1970430565,544830049,942682162,537529693,538976288,539828256,1718056290,540702825,1735288172,807430260,544106784,1735287154,1635197029,1948741235,1953392928,1919971941,1684370533,544432416,1797272630,168635970,538976288,757080096,1111835680,542656341,1718056290,540702825,1852383301,1869770784,544501869,1701080941,1684628512,544483182,1802661751,1953068832,842211432,1953063469,1717989152,1937007987,537529646,538976288,539828256,1430406468,1646286919,1768318837,1277180536,1684955424,1679841056,661546089,1870078068,1998613362,543716457,1717990754,1864397413,1702061670,1027481716,808464672,778580016,538970637,538976288,1142959392,1196769861,1969365080,2020173415,542187578,1818847351,1701060709,1734833506,1998611813,1763734369,1836064878,543515759,1937072483,1629512805,1179666208,224815392,538976266]},{"sector":7,"length":512,"data":[538976288,1766334496,1685221207,1346979112,1919885353,1466517536,677671535,693130053,1935767328,544483182,1869768058,537529646,538976288,539828256,1430406468,540694599,1629505860,1953064036,1634627433,544828524,1886611812,1937334636,1297105952,2019893321,1953523043,544108393,1952671094,779317871,538970637,538976288,1142959392,1196769861,1998600792,544105832,1852732786,543649385,1310748265,1296324180,1162092588,1448630338,1143882820,1998605388,543976553,1814062434,1701077359,1998597220,1751345512,538970637,538976288,1998594080,543976553,1701536109,1629506592,1461740654,1919907616,1769414763,1931503732,1869898597,1864397682,1752440942,1881174889,1718903148,778924655,538970637,538976288,1142959392,1196769861,1142962776,1869488205,1870078071,544435058,1881173609,1702129522,1684370531,1685024045,1935745125,1818588960,168636012,538976288,757080096,2003791392,1819042080,1836016416,1684955501,1918967923,1701060709,1769104243,543450466,1142976105,1196769861,1415074862,537529646,824188960,540225838,540488283,1919051078,2037539189,808464928,168647992,538976288,757080096,1111835680,1646282581,1768318837,1277180536,1684955424,1998608160,543716457,1952671091,544436847,1802661751,1713398885,1142977135,1196769861,1852776536,1763735916,829825134,775041326,538970637,774971424,1528837169,1243623985,1635085921,840989042,1564028976,538970637,538976288,1142959392]},{"sector":8,"length":512,"data":[1196769861,1969365080,2020173415,1143414842,661678368,1969316640,543450483,2037588065,2019652718,1920099616,221147759,538976266,538976288,1162092589,1481069890,1735746080,980969830,543582496,1969382756,1919248231,1702130464,1684369520,1953392928,1851859055,1414416672,544106784,1953460848,1702126437,1869426020,221013348,538976266,538976288,1752440864,1633886309,544830066,1734437990,1935767328,1701602080,1684370017,537529646,538976288,539828256,1835606088,1987015280,221144165,538976266,538976288,1869815853,1701016181,1852793632,1953654134,1948279909,1632444527,1931505011,1635020409,168636024,538976288,757080096,1835103008,1936026736,544106784,1836278093,1853453088,544760180,1701078113,168636004,538976288,892415537,842095392,1919959328,840985705,1564028976,538970637,538976288,1646275872,1768318837,1763719800,829825134,758394926,825110902,1914711092,1869902693,1735289202,1650811936,1701275509,544417637,1702129257,1886745202,1702240372,1919906915,537529715,538976288,538976288,841691954,1633886260,1684370293,1830838560,1919905125,1868767353,1886745202,1852795252,540551200,1702132066,1679829363,1948280181,543236207,1852797559,1702043751,1852140903,537529716,538976288,538976288,1768383858,1919251571,1818326560,221144437,538976266,825110816,844832822,1883316272,543975794,959459378,537529693,538976288,539828256,1718056290,540702825,1668181287]},{"sector":9,"length":512,"data":[1868767271,1851878765,1635197028,1701978227,1952671082,539911269,1953397075,1663072353,1735287144,1948279909,1831280751,661528675,537529646,538976288,539828256,1718056290,540702825,1981836905,875638321,825110829,656419893,1679828839,661546089,1701978228,1650551148,1679849836,1667593317,1752637556,1701344357,543236210,1998614626,168653665,538976288,538976288,1954047264,1634628197,168636012,538976288,757080096,1735746080,980969830,661071648,1836016416,1684955501,1970234144,1730176108,1663071333,1969647215,543450483,1864399202,1685021552,1145249893,775106592,538970637,538976288,1142959392,1196769861,1969365080,2020173415,1629954106,1868767271,1851878765,1734942820,1701998446,1768431716,1685221239,543584032,1920103779,544501349,1936090735,1763734629,537529710,538976288,538976288,1647129139,1931506793,1701668709,779318382,538970637,538976288,1142959392,1196769861,1969365080,2020173415,1752637498,1679847013,1735746149,543516007,544432503,1881173609,1702129522,1684370531,1685024045,1851859045,1752440932,168652389,538976288,538976288,1919251488,1634625901,543450484,1769108836,1696622446,1969448312,1852795252,543584032,539455527,656437871,1663051636,1634561391,539780206,543516788,544830068,168652660,538976288,538976288,1936028192,1701998452,544104736,1702129257,1818324594,544236064,544825709,1702257000,1969316640,543450483,1869440365,1663072626]}]],[[{"sector":1,"length":512,"data":[1970434671,1869182064,168636014,538976288,925969969,942824224,1919959328,840985705,1564028976,538970637,538976288,1646275872,1768318837,1377843832,842218528,1953063469,1734701600,1702130537,1008746098,544695662,1970037110,1679834725,661546089,1870078068,1763732338,829825134,775303470,538970637,538976288,1646275872,1768318837,1142962808,1128877392,775303500,541938497,1853055351,1629516839,1835103008,543517808,544370534,909189217,1953063469,1297105952,1818435657,1953391977,537529646,538976288,539828256,1718056290,540702825,1701080693,1869815922,1663067501,1768189551,1852795252,1831280755,1635196967,1769152627,1953391980,1914730860,1667590757,778331508,538970637,774971424,1528838193,1293957169,840989025,1564028976,538970637,538976288,1142959392,1196769861,1969365080,2020173415,1314005050,1902473760,1701996917,543236196,942878776,1346576438,168635989,538976288,757080096,1111835680,542656341,1718056290,540702825,1629507154,2036430700,1935745139,1701672307,1752440932,1663071329,1701999221,1830843502,543515759,1914729321,762077541,1701080941,537529646,538976288,538976288,1702326088,745694582,1701344288,2036427808,544503151,1176528495,1163280723,1397900847,542265172,1717987684,544436837,544370534,1953460848,1702126437,1869426020,221144420,538976266,538976288,1969365037,2020173415,1093083194,1868767271,1851878765,1768169572,1948741220,1667457312]},{"sector":2,"length":512,"data":[544501861,1702043745,1663920493,1852796015,1734963744,1629516904,1919251558,1701344288,538970637,538976288,1830821920,1869440366,543385966,1635280168,1701605485,1818435642,220805987,538976266,538976288,1718165549,1431323424,544434464,942878776,539765558,543516788,1647129139,1981838441,1769173605,1864396399,1397104742,793073217,1414746694,1763725903,1937055859,1847616613,221017967,538976266,538976288,1752637472,543712105,1919970665,1936029295,1936286752,2036427888,543584032,543516788,542462022,1952543859,221148021,538976266,538976288,1915166765,1868767271,1851878765,1159740004,1629506630,1684366436,544175136,540424243,1768383858,1919251571,1936286752,2036427888,537529646,538976288,539828256,544370534,1162103878,539776590,1163154246,539776590,1447121734,1851859013,1380327524,1380930643,909189164,540160815,544500066,1769103734,1937010273,1953068832,537529704,538976288,538976288,1717990771,1936029801,1143953184,1919252256,1684086885,979658084,1145849376,1465273925,1145849391,1146506821,1397104684,1447970132,1397108567,1447970132,773860420,168635950,538976288,757080096,1111835680,978863957,1836197664,1868767271,1851878765,1684086884,543450468,1679847284,1819308905,1293973857,1914722381,1936287589,1936876916,537529646,538976288,539828256,1430406468,540694599,1953721961,1952675186,1936617321,1448037664,1293954116,743528015,1296909600,1684086867]},{"sector":3,"length":512,"data":[543450468,1629515636,1835365235,1919249506,1684955424,538970637,538976288,1679826976,1935766377,1651336563,779249004,538970637,538976288,1814048032,1970239841,1718558836,1650553888,544433516,1679847017,1735746149,778855028,543387241,1768189805,1684367718,544175136,1701536109,1701344288,1937055853,537529701,538976288,538976288,1651341683,1667853423,1852793632,1851880563,1629516660,1629512814,1701995620,1936028531,1750343726,1629516649,2003790956,1869881459,1685024032,544826985,1936287860,538970637,538976288,1713381408,543517801,1701996900,2037150819,537529646,824188960,540619054,540553563,1869898575,544367970,808529970,537529693,538976288,539828256,1430406468,1646286919,1768318837,1646279288,1801545074,1852403568,1931506548,1998615653,543716457,1868767303,1852075125,1646294055,1701978213,544499059,1948280425,168650088,538976288,538976288,1650811936,1701275509,544417637,1920103779,544501349,1701080941,1701980192,1831693409,543515759,1919950895,1667593327,761554292,1701080941,1768169513,1751326820,1701277281,538970637,538976288,1763713056,1684632430,776413285,538970637,774971424,1528836146,1327509554,1651471459,840987237,1563439408,538970637,538976288,1142959392,1196769861,1646279256,1768318837,1718558840,774993440,1830828337,1718183023,543450473,1847619444,1734964833,543519841,1970238049,1629512814,1970234144,543517808,168650351,538976288]},{"sector":4,"length":512,"data":[538976288,1398227744,1229803588,1735746080,168636019,538976288,825372209,959601440,1952665376,1919246959,825242144,168647984,538976288,757080096,1111835680,542656341,1718056290,540702825,1702129257,1818324594,1701995040,1869638497,1937010281,1952805664,544825888,1919885396,1931497504,1819044212,1684105248,538970637,538976288,1881153568,1818390386,544435557,1629513321,1685024032,2004033637,1751348329,1667460896,1684370037,537529646,824188960,540160558,540094811,1702260558,1919246957,825242144,168647984,538976288,757080096,1111835680,542656341,1718056290,540702825,1852797559,1635131495,543520108,1344300655,1679839315,1819308905,1684371809,1953068832,1296310376,543582496,1969382756,1701144423,538970637,538976288,1998594080,1746957153,1702128737,1852383332,1634038304,1869426028,1629513060,1919251558,1768843552,1818323316,1769435936,543712116,1881173876,1702129522,1684370531,1685024045,168636005,538976288,757080096,1111835680,542656341,1718056290,540702825,1701734764,1936941344,1818389861,1679848037,661546089,1634214004,1701602414,759386144,1634493810,1702259060,1684300064,1936942450,168653669,538976288,538976288,1919902496,1952671090,1763735916,1869815910,1701016181,544370464,1953719652,1952542313,544108393,544432503,2016419902,1179010630,537529646,824188960,540226094,540356955,1769107521,808591468,224211249,538976266,538976288,1969365037]},{"sector":5,"length":512,"data":[2020173415,660678432,1836016416,1684955501,1852121146,1769104756,1629513582,1734701856,1953391981,1734701600,1702130537,1634607218,1830839661,1746958689,224753249,538976266,538976288,1948393504,1768780389,1702125934,1679827556,1735746149,1701737760,1667592312,1818518900,168636025,538976288,757080096,1735746080,980969830,542332960,1635216481,1629516665,1836413811,840983653,1159738677,1746948941,1818521185,539915109,544698190,1948284009,1936025970,544175136,225731943,538976266,538976288,1752440864,1970151525,1919246957,543584032,542330181,1684955496,544433516,1965062498,1735289203,1397572896,1713386528,1952673397,544108393,842019893,168636008,538976288,757080096,660678432,1836016416,1684955501,1752440890,1702043749,1852140903,1919950964,2020173413,1853453088,544760180,1763734369,1936269428,1886218528,1701668204,1684370542,226058784,538976266,538976288,1397563424,1111835680,1763723093,1667309683,1953523043,1847616613,673216367,1768453920,1763731555,543236211,1835492723,544501349,1768383858,1919251571,1819239968,1702326124,537529700,538976288,538976288,1629518178,1819239200,689991279,537529646,538976288,539828256,1701603686,1801547040,1647212645,1629516897,1684366436,537529646,824188960,540291630,540291163,2037151050,825242144,168647985,538976288,757080096,1735746080,980969830,1852402720,1935745125,1651336563,544367980,1852074340,1696625703]},{"sector":6,"length":512,"data":[1685021550,842211429,1953063469,1684300064,1936942450,543649385,1752459639,1112101664,538970637,538976288,1646272544,543519865,1920102243,1819566949,1852383353,774993440,221131570,538976266,538976288,1701060653,543651170,1769104243,1142977648,1128877392,775303500,542262099,1701078113,168636004,538976288,892481073,942693152,1735737632,544502645,825307186,537529693,538976288,539828256,1635131442,1851877746,673215348,539369542,1629497671,1684366436,544175136,1701536109,1633824376,218762612,538976266,757935392,539831597,544695662,1702258020,1836085100,544501349,1918989427,543450484,1668440397,808591464,1646277425,1129717881,218762562,538976266,841888032,811278390,1967792177,840983918,1563636016,538970637,538976288,1629498656,1684366436,742540320,542589984,543452769,1663059012,1634561391,779314286,538970637,538976288,1663053088,1851876716,1881174133,1769173601,1864394606,542253158,1835888483,543452769,1931505523,1701011824,1918967923,1948741221,1701146144,778331492,538970637,538976288,1629498656,1684366436,1413763616,1629504339,1377854574,1129140292,1936615712,1668641396,1852795252,168636019,538976288,757080096,1936286752,1702064993,1701601901,1668312864,543515759,543699512,1701538156,1668312864,543515759,778580024,538970637,538976288,1713384736,1684371561,1887007776,1763734383,1263345774,1279410516,1127109445,538970637,538976288]},{"sector":7,"length":512,"data":[1142959392,1196769861,1914714712,1987013989,1696621669,1634890872,1935762464,544433512,1293971049,1914722381,1936287589,544367988,1886221668,537529646,538976288,539828256,1634953572,1835365235,543517794,1213420880,1835886880,1953068832,1953853288,1564760864,1146244951,544432416,543516788,1702521203,544434464,1634758753,1953391986,537529646,538976288,539828256,1226860137,1397703790,1634493984,1936269415,1952805664,1702065440,1330201120,1852383315,1634038899,1718558820,1397703712,1919903264,1663059232,1634561391,1763730542,1953853550,537529646,538976288,539828256,1635216481,1965060985,1109419379,542330697,1970302569,1868963956,1701322866,1931505772,1635020409,1634738296,778400629,538970637,538976288,1142959392,1196769861,1931491928,1919971445,544437093,1918986339,1702126433,1042314098,1749366560,544106784,1663064132,1634561391,1948279918,1700929647,1852793632,1953720691,225734245,538976266,538976288,1769414688,1142974580,1836016416,1684955501,537529646,538976288,539828256,1735550317,1814062181,1684759407,1702259058,1684955424,1819178272,1684759407,1702259058,1970237984,1701734772,1869881459,1684369952,543515509,1702521203,537529646,538976288,539828256,1702390118,1969365092,1852383335,1663063328,1634561391,1998611566,1751345512,1836020512,1835627621,1663071077,1702065505,1852776548,1864399212,1814062446,543518313,1646292852,537529701,538976288,538976288]},{"sector":8,"length":512,"data":[1886680431,1713402997,1629516399,1919906933,1634037861,168636020,538976288,757080096,1953849632,1885696623,544498021,544370534,1868767312,1851878765,1684086884,778331492,538970637,538976288,1629498656,2003790956,1634038304,1818386788,1818632293,1769234799,1882023790,1953393007,1734701600,1702130537,1948283762,1700929647,1668180256,1701082476,1852383332,538970637,538976288,1142956064,1196769861,1297040174,1769174304,1847617390,1176532837,1397707856,1679839828,1852401253,168636005,538976288,757080096,1936286752,1702064993,1701601901,1279349536,1684955424,1397052448,1969496148,1667853424,543519841,1868787823,779314532,538970637,538976288,1713384736,1684371561,1397572896,1818585120,2037588080,2019652718,1936026912,1701273971,544106784,1920298867,1663067491,778396783,538970637,538976288,1914711328,1987013989,1159750757,1663062861,1634561391,544433262,1836020326,1717920800,1953264993,1769300512,221144172,538976266,538976288,1684086829,543450468,1953397107,1142978657,1887007835,1277189477,1852140576,543716455,1679847284,1819308905,1814067553,1952935525,2036473960,544433524,1918989427,1735289204,1869768224,537529709,538976288,538976288,543516788,1953718636,1684300064,1936942450,1936286752,2036427888,221144165,538976266,538976288,1684086829,543450468,673206864,1668248176,543450469,1970562418,539586162,1835888483,543452769,1667852407,1919950952,1701143407]},{"sector":9,"length":512,"data":[1881174884,544502625,543516788,1954047342,538970637,538976288,1377837088,539776069,1179927890,544370464,1413829193,1768453920,1763731555,1869488243,1701716084,1684370547,1953068832,1953853288,1869902624,1852403824,168636007,538976288,757080096,1835364896,1684371055,1935830816,1952803951,2004033637,1751348329,1634231072,1952670066,1881174629,1701015410,1852404595,168636007,538976288,757080096,1163089184,977355859,1919252000,544826985,542135120,1629516649,1146298484,808528705,1700929640,1701998438,1769174304,221144942,538976266,538976288,1818304557,544698220,542527309,744973683,544026482,543452769,542527309,745353074,543647091,1646292852,1935745125,1651336563,543450476,1752459639,544503151,1970365810,1852404329,537529703,538976288,538976288,1146244951,1381257248,537529646,538976288,539828256,1634953572,1835365235,543517794,542527309,744973683,544026482,543452769,542527309,745353074,543647091,1752459639,544503151,1146244951,1381257248,537529646,538976288,539828256,1634953572,2003790956,1986947360,1684630625,1701867296,1684955506,1836016416,1634625890,1852795252,1852383347,1936941344,1818389861,221147749,538976266,538976288,1886724141,1702125924,1398284388,1836016416,1684955501,544175136,1802661751,1953068832,1296375912,775102547,168635954,538976288,757080096,2020173344,1646290021,1763731317,1398284398,1836016416,1684955501,1885696544]}],[{"sector":1,"length":512,"data":[544502383,1948280431,1818326127,1836412448,544367970,1746953839,1818521185,221148005,538976266,538976288,1751326765,1701277281,1852402720,1970233189,1969365108,1919247974,2053731104,1869881445,909455904,1954112032,221148005,538976266,538976288,1684086829,543450468,1936943469,543649385,1970037110,1869881445,1886938400,1852141167,1635000436,543517794,1176530537,1397707856,1227772500,221135694,538976266,538976288,1768759341,544370542,1702521203,1953525536,2053729641,1869182049,221148014,538976266,538976288,1868767277,544501365,1701734764,1868963955,1634738290,1852404597,1852383335,1818585120,2037588080,2019652718,2019914784,1768169588,1634496627,168636025,538976288,926035505,909269792,1853180448,808591461,224211761,538976266,538976288,1868832813,544483182,1886611812,544825708,541213517,1701667182,543582496,1329864764,775168083,538970637,538976288,1914711328,1987013989,1931502693,1830843493,543515759,1835888483,1935961697,541927456,1851859064,1129128036,539588640,1836020326,1717920800,1953264993,1769300512,221144172,538976266,538976288,1768759341,544370542,1702521203,1953525536,2053729641,1869182049,221148014,538976266,538976288,1701650477,1684367218,1397572896,1818585120,1852383344,1830842228,544106849,1886152040,1684955424,1835364896,1684371055,541022240,1835888483,778333793,538970637,538976288,1679830304,1948741231,1936286752,2036427888]},{"sector":2,"length":512,"data":[1701868320,1768319331,1746953317,1818521185,1852383333,541349920,1835888483,778333793,538970637,538976288,1713384736,1684371561,1735746080,544106784,1663062872,1634561391,1914725486,1919905893,1718558836,1851877408,1936026724,537529646,538976288,539828256,1701078113,1296375908,1850286163,1768710518,1969627236,1769235310,1696624239,1919906418,1936026912,1701273971,537529646,824188960,540553774,540225627,1969714497,840987763,1563636016,538970637,538976288,1914711328,1987013989,1864393829,1819243362,543519845,1953721961,1952675186,544108393,1667590243,168636011,538976288,757080096,1684300064,1965057125,1668244590,1852140917,543450484,1129070931,1684955424,1414416672,1852383281,1970435187,1869182051,221148014,538976266,538976288,1684086829,543450468,1163090259,1380275278,1684955424,1398362912,1414092869,1936615712,1668641396,1852795252,168636019,538976288,757080096,1835364896,1684371055,1869509920,1667851878,543973737,1330463558,543384406,1634298977,779314547,538970637,538976288,1713384736,1684371561,1414221088,1162625601,541273683,1646292852,1684826485,1869770784,1819436400,1937055865,543649385,543452271,542330692,1126191949,1836016416,1701603696,168636018,538976288,757080096,2020173344,1293968485,1111577675,777209164,1869881411,1869770784,1819436400,1634214009,1701602414,1667329312,1701734760,1701868320,1768319331,1769234787,1998614127,224949353]},{"sector":3,"length":512,"data":[538976266,538976288,1768169504,1936941427,1818389861,1852779897,1763735916,1920234350,1769235317,1981836911,1634300513,779318382,538970637,538976288,1763716384,1970037614,1931502948,1830843493,543515759,1835888483,1935961697,541927456,1851859064,1129128036,539588640,1142976105,1196769861,168635992,538976288,757080096,1668180256,1701082476,1869116192,1634541687,1852401763,1868767333,1864394084,544828526,1852139639,1146047776,1413829445,541347139,1679848297,1852401253,221144165,538976266,841888032,1528848696,1092630576,1937074037,808591476,224211761,538976266,538976288,1684086829,543450468,1515210066,1684955424,1346720288,1629510222,1935763820,221148005,538976266,538976288,1701978157,1702260589,1852383332,1920102243,544498533,1145851462,1629509443,1176527982,1413829454,1629506896,1935763820,221148005,538976266,841888032,1528848952,1092628785,1937074037,808591476,224211761,538976266,538976288,1684086829,543450468,1163019846,1629507653,1965057134,1668244590,1852140917,543450484,1634692198,1735289204,1768910893,1629516910,1935763820,221148005,538976266,841888032,1528849208,1092629042,1937074037,808591476,224211761,538976266,538976288,1818304557,544698220,1663064132,1634561391,1948279918,1700929647,1668180256,1701082476,1852383332,1111835680,1127106389,221138255,538976266,841888032,1528849464,1092630834,1937074037,808591476,224211761,538976266]},{"sector":4,"length":512,"data":[538976288,1768300589,543450488,1869642100,544106784,1414745673,1380920914,168635972,538976288,757080096,1936286752,1869376609,1330454647,1869881430,1869768239,1380130925,168635953,538976288,757080096,1684957472,1952539497,1397104741,542593876,1763727425,543236211,725039154,1936615712,1668641396,1852795252,537529646,538976288,539828256,1869506925,1869815922,1701016181,1685021472,1818435685,1970168165,168636016,538976288,942812721,828055653,1699946549,1835365488,544367970,858861618,537529693,538976288,539828256,1634036835,544241006,1096043341,1397050434,1948271406,1701978223,1702260589,1918990112,1735289198,1851859059,1700929636,1397637408,541270089,1886220131,1851877740,168636020,538976288,757080096,1852402976,1931506287,1668445551,1868767333,1663067492,1851876716,221147253,538976266,538976288,1768169517,1936941427,1818389861,842211429,1953063469,1734964000,2019896686,1684956532,1344300133,541610837,778923369,538970637,774971424,543569970,540029787,1953523027,1700949349,808591474,224211761,538976266,538976288,1768169517,1634496627,1296900217,1701978200,1953720679,544436837,1931505257,1684955508,543453793,1768383858,1919251571,1919903264,779379053,538970637,538976288,1663053088,1735287144,1230970981,1415071060,1734701856,1953391981,1634493216,1847620467,543518049,1948282739,544498024,1263421772,1230253856,1998608718,1936421487,537529646]},{"sector":5,"length":512,"data":[824188960,1731736110,942824224,1952665376,1919246959,825242144,168647987,538976288,757080096,1852270880,543519343,543453037,1937008994,1701345056,1768169582,1936941427,1818389861,543649385,542527309,796414531,796414532,544756308,1953721961,1952675186,1936617321,537529646,824188960,540619310,540029787,1970168138,544830049,875638834,537529693,538976288,539828256,1330925638,978474067,1684300064,1377854565,1663062606,1634561391,1948279918,1768169583,1634496627,1634869369,1818632311,1769234799,1882023790,1953393007,1734701600,1702130537,221148018,538976266,538976288,1162092589,1481069890,1920213050,1226862689,908088398,544106784,1818322290,1685024032,1851859045,1919950948,1667593327,543450484,1701080941,537529646,538976288,539828256,1970499173,1948280178,544498024,1886152040,1853453088,544760180,1937072496,1870078053,544435058,1886351984,2037150309,544108320,792806477,541148995,1953724787,779316581,538970637,538976288,1830825248,1919905385,2053731104,1886330981,1768778100,1769234810,779316847,538970637,538976288,1914711328,1987013989,1965057125,1667591790,1634956133,1176533362,1414086999,1700929651,1701998438,1869375008,1852404833,1869622631,544501353,1953721961,1952675186,1936617321,537529646,538976288,539828256,1869440370,543450486,1953718636,1668312864,543515759,1836020326,1869375008,1852404833,1869622631,544501353,1952543859,1679848309]},{"sector":6,"length":512,"data":[1819308905,221149537,538976266,538976288,1852383277,1633904996,1226859892,540103758,1629516649,909652768,1852383275,1970435187,1869182051,168636014,538976288,757080096,1936286752,2036427888,542328352,543452769,1830835015,1919905125,1701978233,1701995878,1936024430,537529646,538976288,539828256,661548900,1768169588,1634496627,1701650553,2037542765,1717924384,1852142181,1763730787,1162616934,168635969,538976288,757080096,1869770784,1819436400,1768169593,1634496627,1145839737,1162620755,1179397971,1196175187,1397501779,1701650515,2037542765,1717924384,1852142181,779314531,538970637,538976288,1679830304,1819308905,1126201697,793529409,542133578,542261574,1869440365,1914730866,1919247973,1701015141,537529646,538976288,539828256,1702390118,1886330980,1851880037,1701519460,1713402745,1394635375,542393420,543452769,1465077075,537529646,538976288,539828256,1869506925,1869815922,1701016181,1685021472,1818435685,1970168165,168636016,538976288,959589937,811278433,1699094580,1635086946,840989042,1563701552,538970637,538976288,1679830304,1667855973,1919164517,1919252073,1919252000,1852795251,1969365050,543452265,1430406468,1498623559,1852383315,1634038899,1718558820,1163412768,537529646,538976288,539828256,1869376609,1313415287,741744724,1864385312,541335666,1646292852,1920213093,1701867617,1852383332,1111835680,1127106389,221138255,538976266,538976288]},{"sector":7,"length":512,"data":[1818304557,1937334647,1634890784,1313415280,540418132,543452769,1852383299,1869770784,1952671092,1830839397,778396783,538970637,538976288,1914711328,1987013989,1293968485,1480936257,1413562926,1701650491,1684367218,1953392928,1095573615,1110328651,221140033,538976266,538976288,1768300589,543450488,543651170,1277193833,1684955424,1663063840,1634561391,544433262,1869771365,1701650546,1734439795,1768169573,1634496627,1869750393,1852404853,168636005,538976288,757080096,1869770784,1819436400,1852383353,1634301033,1702521196,1986097952,1226859621,840979534,1629513779,840983662,1981835316,1702194273,1868963955,1852383346,1920099700,225734773,538976266,538976288,1768169504,1634496627,1634214009,1914727267,1769239919,779314542,538970637,774971424,543308082,540094811,1919051078,2037539189,825242144,168647988,538976288,757080096,2020173344,1935762208,1969365093,1852383335,1952138272,1566929017,1814055968,1952935525,2037588072,2019652718,1918988320,1735289203,537529646,538976288,539828256,1869440370,1293968758,1679835715,1852401253,1869815909,541934624,1835888483,543452769,1629516649,2036430700,1919950963,1852142437,168636020,538976288,757080096,1936614688,543519349,1663061316,1634561391,1679844462,544433519,544501614,1886611812,544825708,1696624225,1634890872,1970234734,1852121203,779711092,538970637,538976288,1663053088,1801676136,1919903264,1819634976]},{"sector":8,"length":512,"data":[1635019124,1852402547,1397563495,1397703725,221131808,538976266,538976288,1818304557,1937334647,1769497888,1937055860,543649385,542395977,543699250,1668183398,1852795252,1749234720,537529646,538976288,539828256,1869506925,1769152626,1864394106,1835627632,1952545385,1936617321,537529646,824188960,1664692782,909204256,1650804256,1918989682,808591481,224212017,538976266,538976288,1868832813,544483182,543519605,1447118156,1852383301,1869366816,1867805793,544371795,1998614388,543912559,941649519,792082480,943206456,537529646,538976288,539828256,1869440370,543450486,762212206,1851880563,1685217636,1195725600,1702064160,762274933,221147247,538976266,538976288,1768759341,544370542,1702521203,1953525536,2053729641,1869182049,221148014,538976266,538976288,1818435629,1970168165,1701060720,1701013878,1769104416,544367990,1818850658,168636004,538976288,959589937,844832868,1699094584,1635086946,840989042,1563701552,538970637,538976288,1679830304,1819308905,1931508065,543518049,1869771365,1868963954,541859954,543452769,1868767319,1851878765,1763734372,1869488230,1818846752,1835101797,1768366181,778986870,538970637,538976288,1830825248,1919905385,1970238240,543515506,1701080931,1701602080,1886744161,537529646,824188960,1698247214,808540960,1918979360,840984675,1563701552,538970637,538976288,1830825248,1919905385,2053731104,1886330981,1768778100]},{"sector":9,"length":512,"data":[1769234810,779316847,538970637,538976288,1159736608,743656781,1448037664,1851859012,1330454628,1847611734,1830844271,1635085921,544828524,1701078113,1869881444,1111835680,1112819541,1313418828,1868963907,537529714,538976288,538976288,1430406468,1127110727,673205583,1398295885,693129301,1835364896,1852405359,1986994279,1701343845,1713398881,544042866,1430406468,1329802823,168635981,538976288,808660529,942693152,1919959328,840985705,1563701552,538970637,538976288,1830825248,1919905385,2053731104,1886330981,1768778100,1769234810,779316847,538970637,538976288,1629498656,1684366436,1734438944,1919295589,543518049,1886611812,544825708,1478520692,1868767315,1851878765,168636004,538976288,757080096,1634231072,543516526,1701734764,544106847,1717990754,1931506277,543521385,824209268,1646276659,1936028793,537529646,538976288,539828256,1969513842,1914725731,1684632421,544501349,1702521203,543584032,1769366884,1679844707,1702259058,1969365106,778333289,538970637,538976288,1965042976,1142973811,1162564431,1868963929,1852383346,544503152,1814062697,1701077359,1851859044,1850286180,542330692,544501614,779380083,538970637,538976288,1679830304,544239474,541344854,1886418291,779383407,538970637,774971424,543240243,540553563,1702260558,1919246957,825242144,168647988,538976288,757080096,1852793888,1965061159,1142973811,1162564431,1718165593,1142963232]}]],[[{"sector":1,"length":512,"data":[891310927,537529646,538976288,539828256,1430406468,540694599,661548900,1936269428,543520115,542395977,543704626,1008756329,1397703712,221131552,538976266,538976288,1684086829,543450468,1868852853,1701672291,1684370542,909652512,1095715872,1280065860,1936615712,1668641396,1852795252,537529646,538976288,539828256,1869506925,1869815922,1701016181,1685021472,1818435685,1970168165,168636016,538976288,808660529,811278434,1698963505,1651336547,840987237,1563701552,538970637,538976288,1679830304,1948741231,1819042080,1931507567,1830843493,543515759,1835888483,543452769,539577640,1931505524,1629516901,1818326560,1746953589,1701341033,1752440946,1948282465,168650088,538976288,538976288,1952669984,543973749,777343043,538970637,538976288,1679830304,1948741231,1819042080,1931507567,1830843493,543515759,1835888483,543452769,692276520,544175136,544499059,1346773089,1718165589,1701344288,1763730802,1948741235,1701736224,537529646,538976288,539828256,1869506925,1869815922,1701016181,1685021472,1818435685,1970168165,168636016,538976288,825437745,875649824,1918979360,840984675,1563832624,538970637,538976288,1713384736,1684371561,1735746080,544106784,792148018,540489779,1702126948,1869182051,168636014,538976288,757080096,1684300064,824206437,1679832632,1667593317,1852795252,537529646,538976288,539828256,1701078113,1853169764,1969450852,1953391981]},{"sector":2,"length":512,"data":[857760869,1277179448,1094992207,1763724364,1920234350,1769235317,221146735,538976266,538976288,1919950893,1919250543,1679849836,1819308905,1746958689,544238693,1954047348,1701345056,1850286190,542330692,1931506537,221148261,538976266,538976288,1768759341,544370542,1920298867,1663067491,543515759,1634036835,779122030,538970637,774971424,1528836659,1092630576,1818849904,825242144,168647990,538976288,757080096,1684300064,1881171045,543516513,1885957222,1735289200,1886745376,1953656688,1177495584,168635945,538976288,757080096,1801547040,1314005093,1684955424,542332960,1835888483,1935961697,1702065440,1635021600,1918985326,1970217060,1953853556,1970237984,1701734772,537529646,538976288,539828256,1702390118,1768759396,544370542,543651170,1478520425,1868767315,1851878765,1701978212,1953656688,543584032,1886413165,1701601889,1734438944,221148005,538976266,538976288,1162092589,1481069890,1701978170,1919906931,1864393829,1819243362,543519845,1953721961,1952675186,544108393,1667590243,168636011,538976288,757080096,1852402976,1931506287,543521385,1769238639,1635412333,1852795252,168636019,538976288,757080096,1852402976,1931506287,1668445551,1868767333,1663067492,1851876716,221147253,538976266,858665248,1528848690,1092629553,1818849904,825242144,168647990,538976288,757080096,1701602080,1886744161,1918988320,1735289203,543584032,539774276,1327508553]},{"sector":3,"length":512,"pattern":0,"data":[1684955424,541938208,1835888483,1935961697,537529646,538976288,539828256,1953069157,543582496,542330692,168635953,538976288,757080096,1919249696,543450471,1663058765,1634561391,1763730542,544175214,1868767309,1851878765,168636004,538976288,757080096,1819042080,1142978415,1868767320,1851878765,1869881444,1919907616,1852776555,840982816,221132344,538976266,538976288,1701978157,1702260589,1195462688,1229735493,1701060688,1701734758,544174880,1701273968,1768711712,1852403824,791158887,1763715398,1818304627,1937334647,1701998624,1953391987,658734]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"data":[538976291,538976288,1936287828,544434464,543516788,1701603686,1852383776,779252851,578381163,1752637484,543712105,1937334643,1634236192,1752440948,1886330981,1851880037,1768697188,1797289075,544438629,1851876717,218762542,538977034,538976288,1836008224,1953391981,1918967923,1935745125,1936024608,1651077731,1763730533,1763844206,1920234350,1952805678,168635938,538976291,538976288,1768186945,1852795252,2037148769,543236140,1768777075,1819239213,1629515375,2003790956,1868767347,1852140909,1763734388,1633951854,1814061428,1936027241,218762542,540094474,1096765519,1328237644,1480679248,1347362860,1280065887,1599098667,541936969,538976288,538976288,538976288,538976288,538976288,538976288,1684093728,1684089956,1851862115,1919888484,1651864364,774774828,805965102,1347362866,1280065887,1599098667,539774290,1096765519,1328237644,1296654160,538976333,538976288,538976288,538976288,538976288,538976288,991961120,744776801,744711265,744779361,1831629423,1932293743,539779701,221130286,540225546,828330063,724710198,1381978191,1327508557,1296654160,540562253,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1684093728,1684089956,1851862115,1919888484,1651864364,774774828,805965102,1347362868,1280065887,1599098667,539774290,1096765519,1328237644,542269264,538976288,538976288,538976288,538976288,538976288,538976288,991961120]},{"sector":6,"length":512,"data":[744776801,744711265,744779361,1831629423,1932293743,539779701,221130286,540356618,1096765519,1328237644,743595856,1599098656,726420545,1381978191,538976333,538976288,538976288,538976288,538976288,538976288,538976288,1684093728,1684089956,1851862115,1919888484,1987013932,1651864364,774774828,805965102,1347362870,724971871,1381978191,1327508557,909205328,1599098667,538976338,538976288,538976288,538976288,538976288,538976288,538976288,991961120,1819308641,925895181,1599098656,842217009,1599098667,1327508562,909205328,1328230963,541941584,538976288,538976288,538976288,538976288,538976288,538976288,1648042016,1684960623,2018254892,805965139,1347362872,859189599,1347365682,539775583,828330063,724710198,1381978191,538976333,538976288,538976288,538976288,538976288,538976288,991961120,1987013987,539785336,744911714,1920164384,1835606060,539782261,745693548,1819503648,959449613,1599098656,1328230963,1599233872,541344833,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1648042016,1885435763,1093667341,1599098656,842217009,1599098667,539774290,828330063,724710198,1381978191,538976288,538976288,538976288,538976288,538976288,538976288,1648042016,1646275700,539783796,745763938,1668571680,1110444557,1599098656,842217009,1599098667,539774290,1230983247,540560717,538976288,538976288]},{"sector":7,"length":512,"data":[538976288,538976288,538976288,538976288,538976288,1648042016,1646275700,539783796,745763938,1668571680,1127221773,1599098656,827082066,540160822,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1664819232,795634785,544238954,1918985582,2020220972,805965176,1347362884,1380009567,541936969,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,991961120,1819042147,1886218799,1734701856,1936092986,1160776205,1599098656,1297236294,538987845,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1664819232,795634785,544238954,544366950,1835363675,805965149,1347362886,875973983,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,991961120,2020633955,946301027,1713384546,744778857,1936287264,168652916,1327509553,1279352656,1347365708,541938271,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1667589179,1852383276,1763716195,745305453,774778400,825297421,1599098656,842217009,1599098667,1145134930,538976324,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1681596448,539779941,744713833,1886351392,1970282540,168650867,1327510065]},{"sector":8,"length":512,"data":[909205328,1599098667,743263561,1599098656,944590153,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1953391931,168653413,1327510321,1179475792,1413566284,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1684825659,1936072748,773860468,168635950,1327510577,1145921360,1279415631,538976325,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1684825659,1936072748,773860468,168635950,1327510833,1414750032,1347362860,1230263135,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1768187451,1713384566,745305453,1835230752,2021160559,774778412,909183501,1599098656,743003219,1599098656,538989651,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1715150880,744776801,1768187424,773860470,168635950,1327511345,1127309136,539773768,1398755407,539773268,1398755407,538976340,538976288,538976288,538976288,538976288,538976288,538976288,538976288,2021156411,168652920,1327511601,842227536,1599098667,538976333,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,2020173371,168654968,1327511857,909205328,1599098667,538976333,538976288,538976288]},{"sector":9,"length":512,"data":[538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,2020173371,168654968,1327513905,944594768,538976304,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1818388027,1713384548,1886679906,1110510093,1599098656,541676627,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1715150880,539780204,745829222,774778400,1127287309,1599098656,1263026993,1347362860,1230263135,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1715150880,1667069275,225996143,541339914,1298092111,538980408,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1818639136,1713384548,225473651,541405450,1298092111,538990680,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1817918240,1532851068,1567194215,539784292,1986098022,1713384549,1869902706,1713384562,1852138604,822742390,1347362886,724971871,1096765519,538976344,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,991961120,1937011558,839519607,1347362864,859189599,1347365682,539775583,828330063,724710198,1381978191,1327508557,1296654160]}],[{"sector":1,"length":512,"data":[540562253,538976288,538976288,538976288,991961120,1819635049,825362957,1599098656,842217009,1599098667,1330470738,1327508548,909205328,1328230963,743595856,1599098656,1397574985,538976312,538976288,538976288,1765482528,225211757,540160522,828330063,724710198,1381978191,1347362860,859189599,1347365682,743264863,1599098656,842217009,1599098667,541936969,538976288,538976288,1835612960,168651893,1327510322,909205328,1328230963,1599233872,742674253,1599098656,842217009,1599098667,1327508562,909205328,1328230963,1296654160,538976333,538976288,1970104635,839519596,1347362868,1280065887,1599098667,539777089,1230983247,540560717,538976288,538976288,538976288,538976288,538976288,538976288,538976288,991961120,1629515369,2019654764,2019648892,1835606060,839519597,1347362869,1280065887,1599098667,539777089,1147097167,538976344,538976288,538976288,538976288,538976288,538976288,538976288,538976288,991961120,1629515369,2019654764,2019648892,2019827756,909249037,1599098656,538976307,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1765482528,857764974,926026253,1599098656,944590153,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1765482528,2015392878,1629498488,2015388769,1629498488,2015391073,839519608]},{"sector":2,"length":512,"data":[1347362872,1279611487,538976312,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,991961120,746092650,1869573152,746092656,1886218784,1869116192,168653938,1327511858,909205328,1328230963,1297243984,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1818321723,1835695212,1970306160,1528850547,1567450477,1093798413,1599098656,1328231985,1297243984,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1815814176,539783796,1952738412,1835802668,539785075,1920099702,1702240300,539785074,225604723,541209098,828330063,724710198,1381978191,1327508557,1163091792,1195725383,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1869429536,1916543094,2084464485,1835363675,1008741469,1919378803,839519550,1347362883,1195725663,742868306,1599098656,842217009,1599098667,538987858,538976288,538976288,538976288,538976288,538976288,538976288,991961120,544632685,1734701884,1009532530,1046963570,1701665660,168648045,1327514674,1279352656,1347365708,743981407,1599098656,726420545,1298092111,1397114447,538976288,538976288,538976288,538976288,538976288,538976288,1987013947,2087477536,1702656097,539785313,1835363675,839519581,1347362885,1280065887,1599098667,1179012941,1327508563]},{"sector":3,"length":512,"data":[1279352656,1347365708,542654815,538976288,538976288,538976288,538976288,538976288,991961120,544632685,1835363675,1629498461,2019654764,2019648892,1177684493,1599098656,1347365688,1096766047,539771972,945770575,1599098667,541936969,538976288,538976288,538976288,538976288,538976288,538976288,1832591392,1008760431,1046963570,1765548076,222195053,540029706,828330063,724710198,1381978191,1145323871,1347362860,859189599,1347365682,1296910687,538976288,538976288,538976288,538976288,538976288,1869429536,1916543094,742287205,1835613216,168640109,1327509811,909205328,1328230963,743595856,1599098656,1397704787,539777609,945770575,1599098667,538987858,538976288,538976288,538976288,538976288,1987013947,539785338,1937141613,856296824,1347362866,859189599,1347365682,539775583,1398755407,1230196552,1327508570,909205328,1599098667,538987858,538976288,538976288,538976288,991961120,2054582125,1830825080,2020832879,858982925,1599098656,944590153,1347362860,1280065887,1599098667,538990657,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1866145824,1763734645,539782509,1635544161,1634040952,856296824,1347362868,743982175,1599098656,726420545,1096765519,538976344,538976288,538976288,538976288,538976288,538976288,538976288,538976288,991961120,544503151,1630304356,2019654764,2019648892,892537357,1599098656,842217009]},{"sector":4,"length":512,"data":[1599098667,538976333,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1882923040,1528852591,1567450477,909314573,1599098656,842217009,1599098667,541936969,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1882923040,543716213,1835886908,856296766,1347362871,1296910687,538982483,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,991961120,1752397168,1954112032,1953505381,1765548146,222195053,540553994,1096765519,1328237644,1297243984,1347362860,538980703,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1752382240,1931488364,539783784,745303922,1919906336,774774828,856296750,1347362873,1280065887,1599098667,539774290,1130319951,538976332,538976288,538976288,538976288,538976288,538976288,538976288,538976288,991961120,745302131,1919447840,1869750316,1914711148,539783791,221130286,541143818,1096765519,1328237644,1297243984,1347362860,1296910687,538976312,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1752382240,1931488364,539783784,745303922,1919906336,774774828,856296750,1347362882,724971871,1230983247,538987853,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,991961120,544499058]},{"sector":5,"length":512,"data":[1914711160,543585381,856296824,1347362883,1328232543,1297243984,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,991961120,2020894067,856296824,1347362884,859189599,1347365682,743264863,1599098656,842217009,1599098667,1327508562,1296654160,538982477,538976288,538976288,538976288,991961120,1684826227,1752375340,168649842,1327514931,909205328,1328230963,1297243984,1347362860,859189599,1347365682,539775583,1130319951,538976332,538976288,538976288,538976288,538976288,1818784571,1931488356,224686696,541471498,828330063,724710198,1096765519,1327508568,909205328,1328230963,1599233872,541344833,538976288,538976288,538976288,538976288,538976288,1668823840,168650600,1327509556,909205328,1328230963,1599233872,742671425,1599098656,842217009,1599098667,538990657,538976288,538976288,538976288,538976288,538976288,1751349307,587861351,1701336096,2019913248,1769152628,1970086008,1646294131,1852383333,1667329312,1701734760,1685221152,221147749,540095498,1163874383,873074003,1347362866,223560543,540226570,1398755407,873074003,1347362868,223560799,540357642,1180651599,873074003,1347362870,223561567,540488714,861884495,1347365682,1298092639,539771983,1130319951,538976338,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1869429536,1916543094,742287205,2018657056]},{"sector":6,"length":512,"data":[942934541,1599098656,539775555,861884495,1347365682,1298092639,538985551,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1832591392,1126200943,539785298,1734701628,873073982,1347362873,724710239,1381978191,1146047839,1347362860,542262367,538976288,538976288,538976288,538976288,538976288,538976288,538976288,991961120,544632685,1734701628,1380199486,873074040,1347362881,743588959,1599098656,1328230963,1599233872,541347661,538976288,538976288,538976288,538976288,538976288,538976288,538976288,991961120,544632685,746082884,1701985312,168640103,1327514164,842227536,1599098667,1330470738,1327508548,1381261136,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1987013947,1701985312,1412185703,168654930,1327514420,1381261136,1347362860,724710239,1381978191,1146047839,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1987013947,2018661408,1701985324,168640103,541340707,1298092111,539777101,861884495,1347365682,541938271,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1869429536,168649846,541406243,861884495,1347365682,743264863,1599098656,542657869,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1869429536,168649846,541471779,1298092111,539777101,912216143,1347365684]},{"sector":7,"length":512,"pattern":0,"data":[541938271,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1869429536,168653174,540030243,912216143,1347365684,743264863,1599098656,542657869,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1869429536,168653174]},{"sector":8,"length":512,"data":[538976291,538976288,1936287828,544434464,543516788,1701603686,1852383776,779252851,577008239,1226842158,1768366196,544433526,543516788,1701081711,1919950962,1919247973,1701015141,1752440947,168653921,538976291,538976288,1953723757,543515168,1886610802,1702126437,2036473956,1701344288,1936941344,1818389861,221147749,587861258,538976288,1126178848,1701670255,544437358,543519329,1679848289,1919120229,1684365929,544106784,1936615714,1932423796,774009957,168626701,538976291,538976288,1751343429,1869490208,1868770670,1852140909,1814047092,543518313,1970235507,1646290028,543236197,1919508848,543584032,1937335659,1411391534,1948280168,1701601889,1852139309,1952543333,224882281,538977034,538976288,1869770784,1835102823,1818851104,1751326828,543908709,1952540788,1701344288,1685221152,1864397413,1852383334,1970435187,1869182051,1635131502,1851877746,1713402740,1696625263,224944993,538977034,538976288,1936615712,1668641396,1852795252,544106784,543516788,1701603686,1852383776,779252851,578053491,544434464,1886220131,1651078241,1998611820,543716457,1751343461,1767993376,168636018,538976291,538976288,1847617097,539784303,1998615657,543976553,1701995379,221146465,805965066,825237555,858786317,221392928,540094730,168636465,840970290,839519538,926031926,942803469,222507040,541471242,168636976,807415859,839519538,892346436,1160907277,221524000]},{"sector":9,"length":512,"pattern":0,"data":[540094730,168638770,807418162,856296773,909320247,942869005,222376736,541471498,168637488,807421491,873073973,875569200,808716813,221589536,541470986,168638769]}]],[[{"sector":1,"length":512,"data":[538976291,1936287828,544434464,1936615714,1932423796,740455525,1701344288,1767992608,1852383342,1970435187,1869182051,1702043758,1701060724,1769104243,1869182064,1768300654,221144428,587861258,1411391520,1713399144,1634562671,1718558836,1768453152,1768300659,1763730796,1935745139,1819239968,1937207148,1176510510,1953722985,543584032,745303137,1634492960,1814063982,1936027241,539167245,1851858976,1768693860,544433518,1936681079,1768300645,544502642,1918986339,1702126433,1936269426,656433440,1629497123,1663067506,1701670255,1814066286,1936027241,218762542,538977034,1752452896,1769435749,539780467,1751343461,1852402720,1868767333,1936290670,1864397684,1852776550,1919885413,1919905056,1768300645,1935961189,1702043692,1634886000,543450484,168655202,538976291,1667330163,673215333,544503138,544501614,1935827316,168635945,539167245,1750343712,1768300645,544502642,1818585446,1936269412,1701344288,1668312864,543515759,1818585446,538979940,1814066249,1936420719,1802071072,1752440933,1868963941,2003790956,979857001,539167245,538976288,1583292448,2021161070,539167245,1919885344,1583292448,2021161070,2021161007,539167245,1919885344,1583292448,2021161070,2021160995,539167245,1919885344,1583292448,2021161070,2021161002,539167245,1699225632,221930866,538977034,543105056,1764237344,1919950950,1852142437,1931487604,1768843113,1936025958,1634235424,1752440948,1768693861]},{"sector":2,"length":512,"data":[1629513070,1768714352,1864397669,544828526,1948282740,168650088,538976291,538976288,1936941344,1818389861,221147749,538977034,1851662368,1764237344,1919950950,1852142437,1763715444,811475059,1919903264,1145127200,544370464,743260481,540106272,544370534,539771460,1713386078,1142977135,168635479,538976291,538976288,540237344,544370534,539771972,1713386590,1327526511,539772754,543452769,1713386846,857764463,1768038450,1886330996,1851880037,1919950948,2020173413,587861294,538976288,544766072,1629516649,1886330990,1701080931,1701735712,1768845165,168636003,538976291,657401632,1634037024,1752440942,1948284001,1713399144,1869376623,1735289207,1668312864,543515759,1948283753,857761128,1768041778,1635131508,1851877746,1718558836,1701344288,539167245,538976288,1713381408,1953722985,1701736224,1851858988,543236196,543700534,1717924464,1998616681,543976553,1953068915,221145187,538977034,589766688,1701650471,1948282465,544498024,543516788,1819045734,1852405615,1886330983,1701080931,544434464,543516788,1647129139,1981838441,1634300513,1864397934,1752440934,587861349,538976288,538976288,1936877926,1852776564,1629498469,1629512814,1748448800,1701998624,544762214,1819044215,1769435936,778593140,539167245,656416800,1830823722,544104805,1952540788,1701344288,1701998624,1768187235,1864394606,1685021552,1668227173,1936880995,1953068832,543236200,1414086999]},{"sector":3,"length":512,"data":[1936615712,1668641396,1852795252,587861307,538976288,538976288,543516788,1819045734,1852405615,1998597223,1869116521,221148277,587861258,1411391520,1914725736,1767992677,1735289198,1701406240,544433260,1668506980,1700948338,1701344288,1936683040,1818388851,1635131493,1851877746,1864397684,1752440934,1852383333,1970435187,1869182051,168636014,538976291,2036688980,1986095136,1752440933,1868963941,2003790956,543649385,1836216166,980644961,539167245,538976288,1281302560,1915713656,225327918,538977034,538976288,2018271008,712126328,168652347,538976291,538976288,2021149791,992375343,587861358,538976288,1595940896,2021149764,1798992431,225327979,538977034,1919240224,168639077,538976291,538976288,538976351,543582504,1936028272,695496293,1634037024,1948283758,544498024,1936287860,1918989856,1953390953,544434464,1646292852,1937055845,1864393829,544828526,168655202,538976291,538976288,538976288,543516788,1702064993,1701601901,168636018,538976291,538976288,538976324,543582504,1936028272,695496293,1634037024,1948283758,544498024,1936287860,1918989856,1953390953,544434464,1646292852,1937055845,1864393829,544828526,168655202,538976291,538976288,538976288,543516788,1634953572,1835365235,1919249506,587861294,538976288,1277173792,673194016,1881171561,1702061426,539587694,1851876717,1752440947,1948284001,544434536,1629516649,1668246560,1818386795]},{"sector":4,"length":512,"data":[1852383333,1970435187,1869182051,168636014,538976291,538976288,538998904,543519329,543518319,1948283503,1646292855,1936028793,543584032,543516788,1953721961,1952675186,544108393,1818585446,168636004,538976291,538976288,538997295,543582504,1936028272,695496293,1701868320,1768319331,1948283749,572548456,1881154162,544502369,1629515369,1146047776,1195725344,1296387375,1954112032,168636005,538976291,538976288,538976302,1768189545,1702125923,1752440947,1948284001,1763730792,1920234350,1769235317,1746955887,1847620449,1886330991,1851880037,221148004,538977034,538976288,538978848,1684957472,1952539497,1948283749,544498024,543516788,1702132066,544434464,1919950945,2020173413,1330391072,1864387395,1163010162,774778448,168635945,538976291,538976288,538976294,1768189545,1702125923,1752440947,1948284001,1646290280,543519865,1629516649,1734701856,1953391981,1701998624,779643238,539167245,538976288,1798971424,1768366187,544433526,1763733089,2019910766,1953392928,1752440943,1768300645,572548460,1953721961,1701523058,539894393,1634227232,1768300660,1730176364,1936029289,539167245,538976288,538976288,1752440864,1886330981,1851880037,1768693860,1629516915,1668248435,1702125929,1869881444,1701344288,2036689696,1411391534,1797285224,1663072613,1769172591,544437363,168650351,538976291,538976288,538976288,544175988,544761192,1768384868,221148020,538977034]},{"sector":5,"length":512,"data":[538976288,544095008,1718167584,1701998624,1953391987,1852383273,1633904996,544433524,543516788,1668248176,1869837157,1852776562,1768453920,1948280931,225667432,538977034,538976288,538976288,1936615712,1668641396,1852795252,1919510048,1629516915,1634037872,778331506,1699225632,1847616882,2036428064,543515168,1752440881,1735749490,775299176,220400141,538977034,1701336096,1685221152,1864397413,1752440934,1635131493,1851877746,1763734388,1835606131,1953656688,745827937,1667588640,1702065505,1701344288,1936941344,1818389861,1998615141,543976553,1701536116,539167245,1752440864,1768300645,544502642,543518319,1952540788,1953064480,1752440947,1852383333,544503152,1701734764,218762542,538977034,1717916192,1852142181,980641123,539167245,1095311392,540160813,1702129225,1916870764,1953065059,1970561893,1394632050,2004117103,543519329,1702257988,1701867372,544417650,1970168141,539782241,1970040662,840983917,168626701,543252833,221132595,1630559754,1679844449,926038581,811469325,544039265,842675300,1628048695,857764705,168636006,543384673,791885900,858798642,976498976,1277178160,841953336,540160058,976236876,824194096,892353074,1684081165,944513124,976236339,807416624,825244212,808995872,809119791,810295346,875575856,976367648,168637744,543452769,791885900,858798644,976499232,1277178160,875507768,540160058,976237132,840971312,892353074]},{"sector":6,"length":512,"data":[1918962189,908094576,909130291,168636987,1853189986,842408036,993472570,1644825905,807429747,979591782,859519024,1935804941,1714430066,809133154,221461304,1647664650,1885435763,1667641376,959461944,168637499,807433314,976445798,859521328,1650864160,976498529,859521584,1952582157,810295395,979526246,859521328,1714441248,925852002,994193466,1644825907,1277194868,862086704,994127930,810295347,794911334,1110456886,168637243,544437346,1634086988,1093679714,1277178683,1633838640,809121071,221461314,1818321674,946151532,541274170,841967206,540619322,858744422,541405242,809132345,1661603140,1664055138,543515767,221132857,1668047626,775448096,1818429965,1667637348,1661603118,1713400172,168636001,1937009763,812003360,842739254,1835207181,895885411,1661603118,1635151725,879112224,942684727,168638011,1987013987,807429473,976434278,909850672,1835207181,543323759,842294832,993538106,1661603126,1651928941,1714430053,809121332,221657912,1835228938,543389295,842294832,993538106,1594494262,1987013987,1714430053,809120820,221657912,1869439754,807430006,979776614,909850672,1835207181,1701279343,879112224,942684772,168638011,1987013987,1714430060,809132852,221657912,1869439754,543517814,1697932848,993538106,1594494262,1987013987,807428462,976630886,909850672,1667172877,1853255533,807429473,976368742,909850672,1667172877,1853255533]},{"sector":7,"length":512,"data":[1714430050,809120564,221657912,1835228938,1651406447,1714430053,809121588,221657912,1835228938,1668183663,879112224,942684723,168638011,1869439839,543518326,892626480,993538106,1594494262,1987013987,807429998,979711078,909850672,1667172877,1853255533,807429479,979580006,909850672,1667172877,1853255533,1714430060,809133108,221657912,1835228938,1819178607,1714430053,809133620,221657912,1869439754,544173686,825517616,993538106,1594494262,1987013987,807432302,979514470,909850672,1835207181,1936619119,879112224,942684729,168638011,1987013987,807434862,976565350,909850672,1835207181,544175727,808740400,993538106,1594494262,1987013987,1714430064,809132340,221657912,1869439754,543518838,1630823984,993538106,1661603126,1886809965,1714430063,809132596,221657912,1869439754,807433078,976761958,909850672,1835207181,544896623,875849264,993538106,1661603126,941650029,976695091,857748272,825244259,791689248,842021431,976761632,857748528,892353121,1835207181,543322992,221132385,1886216970,1664055155,1685287021,775381280,1835207181,1751349360,810295399,976249446,876295216,1835207181,1751349360,543307879,929261104,809120047,221592390,1970299658,807429225,775053670,168637755,795113315,544302179,221133113,1633772554,775369248,1633946125,1714561139,1594494254,1650733406,1583286797,224683059,1667589130,976761888,1277178161,825189734]},{"sector":8,"length":512,"data":[540029242,1717980228,825897263,1678380336,1713403497,976629558,168636465,1681022559,1695157623,1919251566,976773920,825963057,845548045,540110200,812005732,1711934766,544432737,828717412,1711934766,543450209,808400996,540225850,808412004,540291386,811808868,540356922,811819876,221655354,1684104714,1679847524,976249701,1595946801,828597604,1711934766,543452258,875521636,222376250,1935828490,1679847540,976629606,168640817,1936221030,1698260000,168635952,1701602150,1852189304,2019912803,1700946976,168635954,1869439846,1679843958,976249697,909849905,1667631629,1651928941,1633951845,825897060,221657909,1835230730,543520367,946037092,993341754,1711934774,1987013987,1679843950,976249698,909849905,1667631629,1853255533,1679844706,976249954,909849905,1667631629,1853255533,1650729061,825899107,221657909,1835230730,1970173551,1684169760,892418616,168638011,1869439846,1679848822,976774241,909849905,1667631629,1679846767,976367416,1679831857,976367459,1679832113,976249912,1595949873,828651620,1682186286,976249955,168641329,1836016486,1650729065,825897062,540425027,1717724255,909848113,1667631629,1885957487,1717986336,1127299632,1595946555,828794468,221657902,1868785162,1679847533,976432952,1679831857,976432995,1679832113,976774200,1595949873,962869348,1682186286,976774243,1142965041,811885924,222507322,1868785162,544239725,962880868]},{"sector":9,"length":512,"data":[1711934766,544436067,1717975396,221461294,1701078538,1886679907,1715037216,168635958,1936286822,1852189289,1769171300,1700946976,168635953,1986618470,792224800,858864182,795042848,875641398,1714971680,892418608,1717789728,909195832,1684408845,544241257,946234724,540487994,1717920863,168635961,1986618470,946086002,825898799,1667506227,825898799,946085940,825899110,1667506229,825897062,1711934774,1920362852,1701060720,825897062,1683955767,774989413,1701186061,1714055534,1768842606,1700946976,168635952,1701996134,1684283493,825897059,1711934786,1701147238,1717837936,825897059,1711934786,1684300137,794911776,942750256,795173920,959527472,1768294925,544042851,841965924,540553530,841966948,221851962,1667851786,544238959,858743140,540553530,858744164,221851962,1684629002,1679849065,976629601,1679833137,976629605,168638769,1768188262,1679848054,976695137,1679833137,976695141,168638769,1684826470,794977312,942750256,795239456,959527472,795239456,1177565749,1768294925,543978861,825188708,540553530,825189732,221851962,1852401162,1886679907,1715037216,168635959,1768843622,1852189300,1953066601,1700946976,168635955,1953720678,794977312,942750258,795239456,959527474,1768294925,544240755,858743396,540553530,858744420,540619066,925853284,222703674,1936287242,1679843957,976498529,1679833137,976498533,168638769,1970497894,1679848034]}],[{"sector":1,"length":512,"data":[976564065,1679833137,976564069,168638769,543452262,808401252,540225850,808412260,540291386,892297828,541339962,811809124,222441786,1684825610,962863153,221132901,1684825610,544485996,962935140,1711934766,845964396,962863205,221143397,1684825610,1679845744,778200377,1818626573,845638756,1698260000,168636003,1818520678,1679831662,778331449,1818626573,1679850084,778396985,1818626573,544695140,892287332,221851962,1684825610,544632421,875510116,222638394,1818648330,1986946404,1818636151,1986946404,962863204,825898031,1711934789,543978861,825178212,540225850,825189220,540291386,946026596,540356922,946037604,221655354,1970103818,1679847532,976773989,1595946801,962815332,1711934766,544239470,811874660,1711934766,1635017072,962863214,221131622,1919968778,1679846757,775448121,1885735437,829252978,1715037216,859516469,1885735437,544104820,845560164,1711934766,1768189554,1679848558,778266169,1919289869,1919906931,795108384,1160854068,1717504525,1869902706,1714386802,1869902706,1679844466,976498532,168641841,1986098022,1852189285,1702257011,795108384,1160854070,1717504525,1702257011,1936076663,1684371041,795108384,1160854070,1936067085,1701601635,1715037216,168636004,1952805734,1679846768,775185762,168636987,1852404582,1715037216,859516517,1936067085,1868787305,962863219,992895590,1711934771,1953657203,1715037216,168636001,544502630]},{"sector":2,"length":512,"data":[841955684,540225850,841966692,540291386,811885668,222441786,1953719818,962863216,825897775,1684283443,825897775,1650729012,825898799,1684283460,825899108,1682186306,976774201,1142964785,811886180,541208890,1684431940,1110522424,1936067085,712467316,1953721958,1679849315,976695097,168638769,1702130534,1714058862,1702130542,1679849070,976629561,168641841,1953719903,2004250213,1953719855,1685483109,792290336,1160854070,1936067085,712471412,1953721958,1679849331,976250214,842745393,795108384,959527479,1936067085,1679843957,976498488,1679831857,976498531,1679832113,976250168,1679832369,976774499,168638001,1651864422,1701060720,825899109,1683955767,775513445,1936067085,544367221,892287076,540225850,892298084,540291386,946157668,540356922,811950948,221655354,1970497034,544240226,811951460,540487994,1701143647,168635953,1953723494,1698260000,168635956,1868789094,1684283501,825897061,540228419,1701078111,859516465,1969621517,1768779619,1700946976,1127299640,1595946555,962945636,221657902,1668638218,1885957487,1701209120,1127299640,1595946555,962946660,221657902,1668638218,544238959,946168932,994259258,1683955763,775513444,168637243,1868789094,544239725,962945380,221461294,2003197706,544500065,221143609,1635280394,962863213,221132133,1668834826,962863208,825899107,1683955779,775512889,1684292640,825899107,1682186307,976773990]},{"sector":3,"length":512,"data":[168641329,1920235622,544498529,879114596,1711934766,2016570489,1715037216,168635953,845969766,540110968,963000676,1745489198,1713402988,168635956,1986618473,792094240,808532535,1835600397,1713400949,976564022,807415857,979788134,859519024,979514912,825962546,1647730464,993079866,959848497,993145402,912203825,858929721,168636731,1696624233,875706932,979592480,168637746,543387241,825897012,1716265009,976236389,1142960177,795240012,808532528,1852377613,908092019,825962083,1852377613,1764718451,543454062,992896054,1762266417,1663071342,909261411,979657504,168638258,829714025,774989344,168637243,1869901417,778396448,1852377613,807429238,775434342,168637499,1819700841,807430000,791752806,1160854071,168637499,1952805481,1701996847,1663067252,168636006,924868970,942815799,946221088,1127234103,168637243,543514986,842674999,1714430008,809120568,221461315,543320586,842674743,1714430008,809120312,221461315,1700948490,976631584,807417906,976631910,859521840,1784613389,842473571,540553786,842556976,994259002,1779043635,595228771,2019779946,862265466,221786682,1701469962,976500512,807417906,976500838,859521840,1735002637,979777312,807417906,979777638,859521840,1735002637,1681334373,540553786,1681417776,994259002,1779043635,1664557164,540553786,1664640560,994259002,1779043635,924869996,942815845,946221088,1127234149]},{"sector":4,"length":512,"data":[168637243,1634626143,976631584,807417906,976631910,859521840,1784613389,543514990,842674743,1714430008,809120312,221461315,1852464906,859250786,540553786,859334192,994259002,1594494259,1700949610,976697120,807417906,976697446,859521840,1784613389,924869486,942815795,946221088,1127234099,168637243,1701735007,976566048,807417906,976566374,859521840,1784613389,924870510,942815845,946221088,1127234149,168637243,1735289439,1664557157,540553786,1664640560,994259002,1594494259,543977066,842687543,1714430008,809133112,221461315,1852464906,924869996,942815846,946221088,1127234150,168637243,544173674,842674487,1714430008,809120056,221461315,1852464906,1647779952,540553786,1647863344,994259002,1779043635,924873582,942815801,946221088,1127234105,168637243,544894570,842675511,1714430008,809121080,221461315,544172554,842674231,1714430008,809119800,221461315,1886019338,979449632,807417906,979449958,859521840,1885997581,1631002725,540553786,1631086128,994259002,1779043635,924872560,942815842,946221088,1127234146,168637243,924873578,942815800,946221088,1127234104,168637243,924875370,942815796,946221088,1127234100,168637243,544238954,842687077,962928696,541274170,875521638,540619322,892298854,541405242,809132389,1812598084,543582305,221144633,1918987274,812003360,942684722,168636987,544433260,809121123,1812598071]},{"sector":5,"length":512,"data":[1663071077,925907508,1718356493,1714430067,809120866,221461303,1936157706,1650864160,925907509,168637243,544437100,845309488,993472570,1812598067,941646181,925907556,1701579277,543520353,992885091,1812598065,544498791,825255472,825897519,221395781,1684630538,1714430068,858730800,994390330,1812598066,544498796,808478256,842674735,221395777,1936550922,1714430071,909062448,994128442,1812598066,1633968495,807431276,775237734,1142960699,925918768,221461294,1668246538,811999339,1812598058,1651729519,778264864,1869351437,796357476,1935961964,1684086884,1594494254,1886351212,976381216,168638514,1886351212,1869357943,543453295,842674789,1594494264,1886351212,828711013,221786682,1869373194,2003136623,1869573155,543450480,842674533,1594494264,1886351212,828711034,221786682,1869573130,595032688,1886351212,1696621690,942815793,1818167821,1852862319,811933797,221786682,1869373194,1701736559,1869357943,1701736559,811933796,221786682,1869373194,2054058095,976250144,168638514,1886351212,595032686,1886351212,543455854,842674277,1812598072,807431283,976433254,842741808,1953237517,1714430066,858730544,994128442,1829375282,1629517423,1144142384,976380192,941638962,875575864,979449888,941634864,1110588003,979712032,1646281522,1177696816,976773664,1663053875,976236342,807416368,976237158,859518772,845557792,942946866,807416635,976302694]},{"sector":6,"length":512,"data":[859519284,845557792,1093941811,807416635,976499302,859521588,845557792,1127496246,168637243,1937141613,878780514,1829375278,2004055663,1987013935,1629512819,168635957,1937141613,1714430072,859465058,540228401,1717724720,993145658,1829375283,2021291631,1650864160,825440822,807416635,976708198,859517491,1970080269,912662636,825898031,1846152496,1277192037,858732134,221262138,1886350858,774912288,1869482509,1716265076,976367414,168636465,1277194863,825176888,540225594,809132848,944513073,976301872,1277178416,809121840,1630543924,221589562,878599946,224883311,1953853194,976643360,1696609075,875772517,1970211341,543322996,992896310,1862929713,2004055157,1953853231,908092531,825962086,1869613581,1714954352,859451439,943005749,540094778,876242481,925900852,540095546,876230449,1714430003,876228961,540228405,962684464,993408058,1879706931,794914927,1634758512,825630820,221330222,1886351370,1869623142,543450736,221144121,1937076234,808788072,540094778,909076070,540619322,859463990,540097335,859453494,540097334,876242224,909189170,540226618,876242225,909123636,540095546,811689520,993342522,1714430003,876230753,221461302,1937076234,1882153320,1634235253,808853604,221330222,1937076234,1882154600,1718121333,1664688228,1913261358,1679846499,976367408,1679833139,976367410,1663056179,976367408,825966899,1668418061,811868274]},{"sector":7,"length":512,"data":[859452207,845422648,859452207,811802681,859452207,221330241,1835299338,807432819,775041894,168637755,1836082290,1714430051,992883507,1913261366,1668510820,862335008,893070897,1701972493,862330992,1913261354,543518821,220869478,1701994250,1713404528,168634931,1852859762,845553765,1594494250,1852859762,845553786,1913261354,1663071333,1663053363,1110653490,1701972493,1915709044,1684436069,778199840,979460896,168641075,543977330,808398948,540554042,808399460,540619578,808398947,994128698,1913261361,1679848047,976301872,1679833139,976301874,1663056179,976301872,825966899,1936853517,1714430061,992895329,1930038581,543582305,221144377,1818325770,811884320,859452463,1683955768,976498482,1595947315,875507811,994128698,1682186289,976629552,1142962227,909062756,540619578,791700292,1093876278,168636731,1668047219,775316512,1634929165,811868274,859453231,845422648,859453231,811802681,859453231,221330241,1650619146,859327520,809120559,1664163891,540094522,791689292,842021427,942754848,540291130,809132337,1930038581,1651728739,778395936,1668483597,796357473,1935762291,1717641316,1930038574,543257701,926508592,994259770,1930038579,1700885605,962998304,1127430707,168637243,1651795315,962998304,1127430706,168637243,1651795315,1714430053,859452985,221461315,1702059786,807428980,976370022,859521843,1935608333,543519845,876176944]},{"sector":8,"length":512,"data":[994259770,1930038579,543650917,1715037744,994259770,1930038579,1701278821,962998304,1127430756,168637243,1819567475,962998304,1127430755,168637243,1819567475,1714430053,859465017,221461315,1702059786,543256180,909731376,994259770,1594494259,1853121907,807429473,976370022,859521843,1935608333,1651405925,962998304,1127430707,168637243,1952805727,543515246,926508592,994259770,1594494259,1853121907,1714430051,859452217,221461315,1702059786,543518324,892954160,994259770,1594494259,1853121907,1714430055,859465017,221461315,1702059786,1701277300,962998304,1127430755,168637243,1952805727,807431278,979646822,859521843,1935608333,1819178085,1714430053,859465273,221461315,1952805642,807432046,976304486,859521843,1935608333,1886286949,962998304,1127430754,168637243,1853121907,1714430067,859453753,221461315,1952805642,807434862,976566630,859521843,1702038029,807432052,976238950,859521843,1935608333,544240741,1631151664,994259770,1930038579,1701868645,962998304,1127430753,168637243,1886676339,1714430063,859464249,221461315,1952805642,1714430067,859453497,221461315,1952805642,1714430074,859452473,221461315,1684501258,1714430068,808399152,994390330,1930038578,1679846504,976498480,1679833139,976498482,1663056179,976498480,825966899,1752369677,807429228,976511334,859522099,1634086944,1160985141,168637243,544368755,892285028,540554042]},{"sector":9,"length":512,"data":[892285540,540619578,892285027,994128698,1930038577,543453800,1667327536,994325306,1714430003,859464801,221461317,1684632330,1714430068,825176368,994390330,1930038578,544498796,808478256,842674223,221395777,1936552714,1714430071,875508016,994128442,1930038578,1713398644,168635961,543454323,221144166,1769239306,778200608,1953696269,543322991,221143393,1869902602,1932490611,1685286772,778199328,1953696269,1714430066,825176112,994128442,1930038578,1277190773,892285752,540225594,809132850,944513073,976564016,1277178416,809121842,1630674996,221589562,1937339146,1702129253,1714430066,992883763,1930038582,2019914617,807433321,775238502,168638011,1953719668,976773408,1713385776,976236342,1142960688,825177702,540160058,809120824,945758260,892353076,1702234637,807432818,791687270,1093810740,168636987,2003985782,812003360,976564016,842744114,1635191309,958428265,168636002,1852400247,807429238,775499878,168637499,1936552567,1714430066,992882739,2013924661,543450209,1667641420,875575856,168637499,1734894456,976238880,1595950643,876228665,1281302576,809121336,944513076,892353078,1819806221,1595962465,221132644,1634498570,1679843956,168635959,544370552,791885900,858798646,976499488,1277178160,909062200,540160058,976237388,857748528,892353074,1936001549,909270816,1661603110,845095027,168633957,1595962227,220608051,544433162]}]],[[{"sector":1,"length":512,"pattern":0,"data":[644166495,1936067085,875978528,1728711974,912203891,168633909,1835885859,1714430067,992884535,587861301,1685483373,912666656,1144273509,807417147,979711846,893076788,1831012877,544306799,1714841136,994456634,1714430005,893019703,221592368,10]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"data":[538976288,538976288,538976288,538976288,538976288,542461511,1162757447,541868370,1279415632,1277182793,1313162057,537544019,538976288,538976288,538976288,538976288,538976288,1700143136,1869181810,741548142,540619296,1701737802,808464928,537528887,2037411651,1751607666,1126703220,808591401,1176516400,543516018,1952870227,1701994871,1970226720,1952539758,745434985,1668172064,1748770862,980448372,1936076591,1919888998,171847527,1702249760,1852799346,1936269413,1919250464,1953786221,1948279909,1868767343,1629518192,1679844462,1920234345,1953849961,1702240357,1952539250,1663069545,1701408879,1864370803,1752440934,1814066025,1852138345,1679844723,1836409711,745827941,1953849888,1634231072,1852401518,1953046631,544434464,544501614,1869376609,778331511,538970634,538976288,538976288,538976288,538976288,538976288,538976288,1917853728,1651335525,168453484,1750343712,1313284197,1699160149,1634887022,1968185452,1667853410,1667845152,1702063717,544434464,1919295585,539780453,2037411683,1952867692,1667853344,1702063717,1919903264,1718579978,1918990196,1851859045,1953439844,544367976,1684957547,1718558835,1919907616,170816363,1411391498,1814062440,1852138345,544433523,544370534,1953722221,1718580000,1918990196,1851859045,1953439844,544367976,1667330672,1633905012,1870078060,544435058,543519329,1769170276,1684368999,544175114,1701536116,1635213600,1870209145]},{"sector":4,"length":512,"data":[1713402485,1684366706,1948282223,1752375407,543519329,543452769,1851877475,1948280167,1998611816,1936421487,1109401646,1868767353,1634890862,170685555,543516788,542461511,1701733703,543973746,1818391888,1277191017,1852138345,1763730803,1852383347,1684956532,1948279909,1969692783,1851880033,543516020,1920298873,1701996064,1836016741,175076384,1918986355,1851859045,1751326820,1701277281,1819042080,1919252000,1852795251,1718558835,1881170208,1919381362,757951841,1830842228,543517537,1701999987,544500000,1634559346,544435817,1701147238,1718579978,1918990196,1868963941,1818304626,1953046636,1937055859,779317861,1700208672,1752440876,1917198437,1394632037,2004117103,543519329,1853189958,1769234788,539782767,543519605,174418036,542461511,1701733703,543973746,1818391888,1277191017,1852138345,1713399155,1830842991,544502639,1864394351,1931506293,2004117103,996504161,544500000,1819308129,544433513,1869835361,175076384,544829025,1701344367,1870078066,1914727282,1634036837,543450483,1936287860,2036430624,544825888,544437353,1752462689,779317871,1868111904,1633886325,1885413486,544828528,1948284009,1870203503,1881174645,1919381362,745762145,1869575200,537528878,1701336864,1702305902,1701868320,1864395617,1919295590,1931502949,2004117103,744845921,543520544,543519329,1701209458,1852404338,1869881447,1701996064,1836016741,1869488172,1919945332,778396521,1968119840]},{"sector":5,"length":512,"data":[1699160178,1634887022,1968185452,1667853410,1667845152,1702063717,1918967923,1701060709,1852270963,1948279909,1634541679,1931502955,543519349,1952540788,1970239776,1986095114,1752440933,1919295589,1868850533,1869881453,1936286752,1651077748,543519861,1768976227,1864397669,1919295590,1931502949,2004117103,543519329,1684955432,1634231072,543516530,175271782,1835362420,543582496,544567161,1752394103,1948265513,544498024,544567161,1701012850,543520361,1920298867,1663067491,543515759,1663070831,1730178657,1763734629,1718165620,1970239776,1851881226,1953046644,1752440876,2032170081,1663071599,1663069793,1735287144,1752440933,1869815909,1635218534,1864394098,1937055858,1768956005,1936024421,543584032,1763734633,1701716078,1919289975,1881171301,1919381362,745762145,1684955424,1634235424,1870209140,1852514421,2032170863,1663071599,1679847009,1752440943,543519589,1852401780,170816359,1411391498,1919950959,1667593327,1870209140,1914729077,1952999273,1998597235,1701716069,1948279909,1919950959,1852143205,1953439860,1936876904,1869768224,1701060717,1852406126,1870209127,1752435317,543519589,1751607666,1864397684,1935745138,1735289195,1970239776,544175136,1920103795,1701080677,1752440946,1769087077,1937008743,1411391534,1701995880,1701998438,1870209068,1634214005,1661625718,1635021413,1914728041,1869640549,1651077998,1953066089,544433513,2032166505,1679848815,1920234345,1953849961]},{"sector":6,"length":512,"data":[1868767333,1936025968,543584032,543516788,1952870259,1701994871,1919885356,174483744,544567161,1768189805,1763735910,1914714740,1869640549,1651077998,1953066089,544433513,1914728308,1701868389,1948284003,1713399144,1684366706,1864396143,1953439846,1936876904,537528878,1919895072,1635280160,1701605485,1718165548,1970239776,1936286752,1651077748,543519861,1768976227,1864397669,1970479206,1629513827,1869770784,1835102823,1752637484,1701344357,1919355506,1936290913,544370464,544370534,1701191777,2032151653,1830843759,544502645,1936941424,544108320,1948282740,1914725736,1885954917,1953391977,1752440947,1634934885,1711957357,1684366706,544435567,1952540788,1970239776,1667592736,1702259045,538979940,544567129,1953723757,1801547040,1970479205,1948280178,544498024,2036689012,1869881388,1914711151,1768252261,1862952310,1633886322,1701257326,1752440948,1869815909,1701016181,1685021472,538979941,543452737,544567161,1953723757,1869116192,1752440951,1948282213,1702061416,1919251488,1931506541,1752440943,1795848549,544698222,1768253556,1769087090,1937008743,537528878,1986348064,1886350437,544436837,1952540788,1702065440,1701344288,1431193376,1280329504,1869770784,1952671092,1970239776,1769087090,1937008743,1953068832,2004099176,1953701999,980643941,691087370,1936941344,544502373,2037411683,1751607666,1852776564,1701344288,1718580000,1918990196,1629498469,673211502,1864378674]},{"sector":7,"length":512,"data":[1919247974,1970239776,1768453152,1766596723,1936614755,1768360549,1735289206,1970239776,1734700064,1881173089,1768780389,1869181811,1869881454,1886348064,1679830137,1920234345,1953849961,1851859045,1919889252,1685024032,544826985,170816617,1176510474,1948283503,1679844712,1818588773,1919250543,1629497203,1629512814,1869116533,539456370,1953460848,1769235301,539782767,543516788,541872199,1634036835,544828530,1819310181,1936615777,1634235402,1752440948,543519333,1847620457,1635197039,1851880050,1713404276,1948283503,544434536,1701147238,1718580000,1918990196,538979941,544370502,1752461154,1702065440,539456370,174354017,1752462689,661877359,1801548576,1948265573,1193305448,1914719312,1769304421,544433522,1952540788,1685024032,1701406313,1702240356,1869181810,1646293870,1634541669,1684368242,175333664,1851877475,744777063,544174880,1952540788,1701344288,1881174633,1818390386,544435557,1819044215,1953459744,543515168,1920234593,1953849961,1696621669,1852797554,1937076069,1948285292,1969293935,1919903860,1718558835,1701998624,1970235766,1702240371,1869181810,170816366,1394614282,543518063,1769366884,544433507,543519329,1769170276,1684368999,544175136,2037278052,1702065440,1629516658,1936024419,1869881459,1936615712,1819042164,544370464,175011186,1768189805,1684367718,1919252000,1852795251,1718558835,1701344288,1718580000,1918990196,1852383333,1701079411,1701344288]},{"sector":8,"length":512,"data":[1629498477,1869116524,543713141,543516788,1970168173,1952670054,1919251061,1851876106,544171040,539914099,1768444960,1936269427,1853187616,1701667172,1818326126,1763735916,1836016494,1769234800,543517794,1752459639,1701344288,1835622688,174485280,1953460848,1769235301,1965057902,1936876915,1919295527,1868850533,1869881453,1634231072,543516526,543516788,1952870259,1701994871,1411391534,1931502952,1702130553,1769234797,1634732643,1919251572,1718558830,1668641568,1650532456,543519605,1969447791,1763734386,1752440942,1918967909,1864393061,1919950950,1668637807,1713402740,1763734127,1986618478,1635083369,1948283756,1937050223,1998597221,1751345512,544434464,1667592816,1818588009,1752637561,543519333,1763734633,1869422707,1965061235,1667457390,1635020901,778398818,1750343712,1717924453,744845935,174421792,1702257000,1936024608,1701734249,1752440932,1981838185,1769173605,1864396399,1752440934,1346838629,1869881420,1869770784,1768057192,1752440948,1919950949,1769235297,1713399139,1948283503,1702063976,1869770762,1952675172,538979955,1931503177,543712117,1651470960,1936549228,1769103648,1931502963,1953718901,1769238113,2037148769,544106784,1701344367,1868832882,1852399981,1998597235,1953696357,543452769,1684104562,1869881465,1954047264,543452773,1936287860,1869770784,1769171318,1948282479,1752440943,543519599,1634561892,544435817,1713401449,1920300149,1702240357,1869181810]},{"sector":9,"length":512,"data":[1862955886,1752440934,1346838629,1629498444,1701716083,1684366437,544175136,1953460848,544498533,543516788,1701147238,544042852,1965057647,1936876915,537528878,1852392992,2037148769,1986338860,544830053,1735357040,544039282,1948283753,1634038376,1701733748,1868767332,1635021678,2037150830,544825888,1952870259,1701994871,1952542752,1937010277,1951599150,1936028769,1869116192,543452277,544501614,1869376609,1634738295,1953391988,1869881459,1936028192,1667854964,1701060724,1869374838,1852140912,1851859060,1937055844,1718558821,1718579978,1918990196,1852776549,1852139296,1818325605,1920299053,1702063984,1836016416,1702131056,539784050,544503138,1948282473,1702063976,1634235424,1868832884,1702305836,1936291616,1869881448,1870029066,1948279913,1931502952,1768121712,1679846497,1701277281,1752440946,1881175137,1852142689,1629516660,1768714352,1948279909,543236207,1701147238,1869770784,1835102823,1970234144,1829397612,543517537,1696625769,1667589734,1702259060,1881176428,1919971186,1635018089,539916658,544166944,1986359920,544501349,1936287860,1752440876,1346838629,1935745100,1701999987,1752440947,1879733345,1852142689,1663071092,1869508193,1700929652,1702065440,1869881444,1852142112,544367972,543516788,1735357040,544039282,762212206,1701147238,537528878,1701336096,1701998624,1702062435,1919251488,1629516653,1663067246,1768189551,1852795252,1868963955,1868767346,1852406128]}],[{"sector":1,"length":512,"data":[1679830119,1920234345,1953849961,544108393,174354017,1768189805,1633904998,1852795252,1819239968,779579244,538970634,538976288,538976288,538976288,538976288,538976288,1380275232,1092637517,1126188110,1229213263,1313818964,537528915,539897888,1768318276,1769236846,779316847,538970634,1768444962,1766596723,1936614755,1914708581,1919247973,1869881459,1919252000,1852795251,1864381216,1752440934,1313284197,1699160149,1634887022,1968185452,1667853410,1667845152,1702063717,537528878,1866670624,1769109872,578054247,1936482592,1701650543,544435809,2037411683,1751607666,1768697204,1814062443,544438113,1952540788,1886413088,1948285292,1953439855,544367976,1684957547,1718558835,1919907594,539784043,1751348595,544432416,1768777075,1684959075,1869898613,1634541682,779316083,538970634,1701336098,1869762592,1835102823,1701978146,1936876902,544175136,544829025,2037411683,1751607666,1818386804,1870078053,1814063986,1852138345,543450483,1701080693,1752440946,1275753321,1852138345,539911539,1667319072,1768693864,1936614755,1763730789,1684086899,1936028260,543450483,572552033,578121593,572530734,1701013836,1701147502,1629495923,571106414,1768121714,1852139888,539128692,544825709,1763730786,1986618478,1635083369,1864397676,1919885426,1768841575,1769234810,779316847,538970634,572550996,1768189805,539130214,1870078049,1830841202,1936613733,544175136,2037411683,1869768224]},{"sector":2,"length":512,"data":[1919885421,1633968416,1629516912,1864395884,1634738290,1864397938,1752440934,1870078053,1762290546,543236206,1752392038,544108393,1970365810,1852404329,1868767335,1769109872,544499815,1836213616,1769173865,539782767,1701344367,1752440946,1948282465,1830839656,1852402529,1718558823,175005984,1667332197,1868767348,539916656,1701336096,1936028192,1769237621,1998612334,543912559,1663071081,1701604449,543236196,1685024034,1701406313,1702240356,1869181810,1864376942,1752440934,1634011749,1701407858,1870078066,1864395634,543236210,1802661751,1633821216,543450483,539127407,543516788,1819435365,544367977,1802661751,537528878,572539168,1702260579,543450482,1802661751,1701650466,544435809,1752459621,1948283493,1965057384,1685024110,1701406313,1917853796,1634887535,1919885421,1998610720,543912559,1702060386,1852770916,1701344288,1869762592,1835102823,537528878,544166944,1869770786,1634165104,539125108,1870078049,1830841202,1936613733,544175136,1629515620,1752463726,543649385,1752459639,544500000,1952540788,1769414700,1970235508,1701841524,1936289138,1852795251,1870077996,543452277,1701536109,1970239776,1919509536,1819566949,1919885433,1667592992,1633971823,2037148018,1634298912,543517794,175271782,1919315561,1701277289,1953391981,1684960544,1629516389,1768714352,1818386787,1868767333,1769109872,544499815,746021228,1668834592,544501861,1667594341,1852404853,1953046631]},{"sector":3,"length":512,"data":[544108320,1868761697,1953853549,1864397413,1869422706,2036754788,543649385,1919950945,1952544361,1868767333,539916656,1869762592,1634165104,1852795252,1668180256,1701082476,1868767347,1852406128,1678388327,1920234345,1953849961,544108393,1953068840,1919885416,1953068832,1953853288,1685024032,1667851881,1869182049,539765102,1768644973,1629513582,1818845558,1701601889,544175136,174418036,1818391920,539779945,543452769,1931505257,543518063,1853189987,1701409396,1953439859,544367976,1769235297,1769236854,1629516645,1702305907,170814572,1411391498,1663180911,1702260335,1629495929,1919907616,1701650539,544435809,544829025,1684957547,543584032,1886351984,1952540513,544108393,1952540788,1634624800,1936026722,1752461088,1879732837,1769239137,1948283749,1634541679,1864394091,1701978226,1986618723,1868767333,1936025968,1293951022,543519333,1702129257,1952670066,544108393,1752459639,1965056288,544367987,1869768820,174614389,1868767329,1953853549,1847620197,1870099557,539782002,1752459639,544173600,1851880052,1919247987,543584032,1868767329,539785584,1847620457,1663071343,1702260335,1735289209,537528878,544096544,1702129257,1952670066,543520361,1919251317,1953392928,1634103909,1679844707,1819308905,544438625,1886404898,1919971186,1702125929,1734691872,1310747745,1667855471,170029925,1948282740,1696621928,1852142712,1752440948,1763734625,1852383348,1685417059,1629516645]},{"sector":4,"length":512,"data":[1852793632,1768842614,544501349,543452769,1836020336,1852141161,544828532,1769171318,174419042,1952540006,543519349,1952540788,691087392,1936286752,2036427888,1851859059,1886413088,1919971186,1702125929,1886348064,1734963833,1847620712,1667855471,1629498469,673211502,1946822962,1936485477,1701344288,1702065440,1752440946,1948284001,1701995880,544434464,1998614382,1634890337,544830574,544370534,543516788,1802661751,2019895328,1953523043,544175136,174418036,1702131813,1948284014,544498024,1920098679,1769238113,1629516645,1881171314,1769369458,694445412,1752440876,1814066273,1852138345,1936024947,2036428064,1852793632,544826742,174418036,1802661751,1684960544,1948283493,544434536,1701013836,744846190,1684955424,2003789856,544175136,2003134838,1663066400,544829551,1948280431,544434536,1701013836,778400622,1716068384,1701344266,1953392928,1634103909,1881171299,1702061426,544437358,1768693857,1864397939,1937055846,1663070821,1634561391,544433262,1864397423,1869182064,539784046,1751348595,544432416,1701644897,539784558,1919950945,1852403055,544501349,1835365481,544106784,543516788,1953720684,1701145888,1948283764,544434536,1953067619,1869181541,168439406,774971424,1970230048,543515506,1701080899,537528878,1701336096,1869816352,1701016181,1685021472,1713381989,1629516399,1919907616,1701650539,544435809,543516788,1717924464,1701999205,1868963940,1864396146]},{"sector":5,"length":512,"data":[1752440934,1870078053,1711958898,1830842991,1852402529,1869422695,1768319332,1769234787,544435823,1763733364,538979956,1784827682,544498533,1701080931,1701650466,544435809,544829025,762212206,1920298867,1711957347,544043631,1629513327,1919907616,168439403,541138976,1635013410,1918985326,1850286180,1718773108,577069921,1634037024,1629516654,1852383342,1718773108,543515489,1952540788,1953064224,544367976,1629516649,1718558830,1768122726,1930062945,1684955508,543453793,1768318308,543450478,1629518178,1667592736,1768843119,543450490,1851880563,1685217636,1868701811,539785572,539783791,1948282473,1663067496,543519585,1762289263,1919251566,1701011814,1886593139,1718182757,543450473,544370534,1634738273,1667855474,1918987381,1869770784,1835102823,1735289197,1851878432,1734440295,1864379493,1948280174,175399272,1998615401,1818584169,1937055865,1629512805,1735290733,1986356256,1886350437,544436837,1802661751,543649385,1948282473,544498024,1735287148,1701273973,537528878,1701336096,2035491360,1835365491,1651067936,1769103730,539128677,1629513327,2019893358,1953850213,1701601889,1919907616,1852383339,1685417059,1851859045,1768453241,539780974,1701344367,1752435314,1948282465,1998611816,543912559,1629516641,1869117216,539780460,1952540788,694233120,544434464,1818455657,1684366453,544106784,543516788,1836216174,1713400929,544043631,1879729775,1634427745,1735289191]},{"sector":6,"length":512,"data":[1293967648,1919904353,1836008224,1701736304,539784302,544503138,1667852407,1936269416,1953459744,1918988320,1718558836,1634235424,1632444532,175271786,1886220099,1852141167,1629498484,673211502,1931487586,1702261349,1852776563,1948285292,1852121199,1701601889,1702065440,543584032,543516788,1802661751,1953068832,1752440936,1292530785,1919904353,1836008224,1701736304,539784302,1948283503,1835606127,1835363440,544501349,1951604833,1633971809,1226859634,1919251566,1701011814,1919903264,1768453920,1629513827,1835600494,1835363440,1635020389,1852795252,544434464,1767994977,1818386796,1869881445,1701344288,1651863584,543385964,1931505257,1668445551,1868767333,1713399140,778924655,172040224,1784761634,1126199919,1869639023,1953391982,1763716130,1752440942,1663071081,1702129263,539784312,1851876717,543236211,1869242733,1936007282,1953391987,543973737,1886220131,1852141167,1797786228,1701737061,1998597228,1868852841,2037588087,1835365491,1851858988,1869815908,695103264,543584032,543516788,1667592307,1667851881,1701867296,1769234802,1931503470,1702130553,1764231789,1851859046,1864378745,1752637550,543712105,543516788,1667594341,1650553973,1998611820,543912559,1936618866,1919885356,1663066400,1768975727,544367980,1684370293,175076384,1685025392,543515509,543516788,1802661751,1919885356,544104736,1701470831,1663071331,543515759,1702129257,1701998706,544367988,1684370293]},{"sector":7,"length":512,"data":[544175136,544109938,170816617,1411391498,572548456,1920102211,1869640549,1852400750,1867718759,1701016181,1868963874,543236210,1802661751,544106784,1701470831,1663071331,543515759,1836216166,1634037024,1629516654,1946840172,1931502952,1668445551,1868767333,1847616868,1701078373,1869881444,1852139296,1952543333,1763716197,1635021678,539782252,543452769,1919903272,544104736,1667594341,1650553973,1997170028,694907503,1853190688,1701344288,1784835872,544498533,1701080931,1684955424,544175136,1768189805,1948285286,1998611816,745239151,1668180256,1768191340,1931503470,1885958755,1948283764,1868761711,1869771886,1752440940,543519599,1769235297,1769236854,539915109,2003781664,1919252069,1953046572,1701798944,1869488243,1852383348,1685417059,1752440933,1870078053,1931963250,1937330954,544040308,1919052108,1701409377,1864379507,1701257330,1634887022,1970285932,1936683122,1869881445,544435311,1730179695,1919250021,2037148769,1635148064,1650551913,1713399148,174417266,1735357040,1936548210,1768453920,1629513827,1965057394,543450483,1869442677,1768319332,1763730533,1701847150,1919903346,1735289197,1869116448,1629513075,1986622563,1701409897,1969365107,1752631924,543712105,543519329,544501614,1953653104,543584032,543516788,1802661751,1176510510,1696625263,1886216568,539780460,1920102211,1869640549,1852400750,1867718759,1701016181,1668180234,1701082476,1852383347,1718773108]},{"sector":8,"length":512,"data":[543515489,1768318308,1769236846,1713401455,1936026729,1936941344,1634296687,543450484,1752459639,1970238240,543515506,1701603686,1868963955,1752435314,1870078053,539782002,543452769,543516788,1920298867,1663067491,543515759,544370534,1918986355,1814062181,1634886249,1936025970,1684955424,1853449248,1667853665,2037148769,1852402698,543450475,1885500787,1919381362,544435553,1952540788,1701344288,1919907616,1936269419,1701868320,1768319331,1819042147,1701060729,1852270963,1948279909,1701978223,1919513969,1930046565,543712117,1646293857,1852383353,1634560372,1679844724,543257697,1835888483,1667853941,1869182049,1919885422,1852793632,1819243124,1869375008,1700929655,1701148532,1752440942,174420847,1885500787,1919381362,544435553,543452769,1701344367,1634738290,544437362,1948280431,1998611816,778793583,538970634,543516756,1920102211,1869640549,1852400750,1867718759,1701016181,1701146144,1869488228,1852383348,1685417059,1851859045,1768453241,1948280686,544498024,1919251317,1633880691,1701978222,1701733735,1702125938,1953849632,1952542063,1818321769,1713404268,544042866,1701344367,1634738290,544437362,1948280431,1126196584,1701999215,1852797043,1735289188,1970230026,778396530,538970634,543516756,1920102211,1869640549,1852400750,1867718759,1701016181,1919903264,1998610720,543912559,1931505257,1668445551,1868767333,1713399140,544043631,1948283753,175399272,1701667187]},{"sector":9,"length":512,"data":[1919907616,168439403,775036960,1935753760,1344299881,1768780389,1869181811,170816366,1092624394,1914727532,1952999273,1919361139,1702129249,1853169764,544367972,1936287860,1667845152,1702063717,1701994784,1634887456,1684370542,1919903264,1701344288,1919251488,1718558829,1886348042,1734963833,1864397928,1752440942,1917853797,1634887535,1629498477,1629512814,1763730802,1986359922,1650549615,1881171308,1769369458,543450468,543516788,1952543859,1661625445,1768189551,1852795252,1918967923,1701650533,538979956,1936287828,1667845152,1702063717,1886938400,1768122732,544828532,1768318561,544435570,1920298873,1819178272,1953066345,1879729253,1768780389,1869181811,1869881454,1853190688,1701344288,1835955488,1718183023,543450473,1735357008,778920306,1750343712,1970217061,1953853556,1869768224,1970413677,1852403310,174137447,1702260579,543450482,1802661751,544434464,1702260579,543450482,1948285282,544434536,1701013836,543519598,2037149295,543582496,543516788,1886680431,539784309,1702259047,1953046638,1868761715,1852142702,1663052916,1953721967,1953854569,1629516645,1987011360,1684370021,1919907616,538979947,1936287828,1667845152,1702063717,1801675040,1819766638,1701274725,1870209139,1913287285,1952999273,1718558835,1767990816,1937055858,1919885413,1752461088,1696625253,1986622833,1852140641,1629498484,1919950963,1684633199,1646290021,1868767353,1769109872,544499815,779575660]}]],[[{"sector":1,"length":512,"data":[538970634,544567129,544825709,1701536109,1970413612,1851859054,1919950948,1734439023,543519841,1702260579,543450482,1802661751,1752440947,2032170081,1679848815,1869488239,1868761716,2036692590,1769414700,1970235508,1868767348,1953064046,1936617321,544174880,1735290732,544432416,1920298873,1667853344,1702063717,1752461088,1769435749,1914725747,1767992677,1762292590,1868963950,778396530,1868111904,1634541685,1868767353,2036692590,1987011360,1684370021,1919907616,1948283755,1953439855,1936876904,1919903264,1701344288,1819243296,1970282597,1936683122,1718553189,1986095136,543649385,1835362420,1801547040,1869422693,1768319332,1769234787,544435823,1818458213,1986622325,544828517,544370534,745893753,544370464,1987015280,543515753,175468409,1752459639,1667327520,1953066089,544433513,544370534,1852732786,543649385,1936681076,1870078053,745761650,1869770784,1701079414,1752440932,2032170081,1663071599,1819307375,1769414777,1946839156,1948280168,1936552549,543584032,1936287860,1667845152,1702063717,544106784,1986948963,1852406117,1818304615,1634541676,1769104756,1713400929,1998615151,1751345512,1970239776,175072288,544501614,1953394531,543977330,2037411683,1751607666,538979956,1936681044,1752440933,1830843253,1852402529,1919885415,1853190688,1735289198,1701344288,1987011360,1684370021,1919907616,1711960939,2032169583,1830843759,544502645,1931505508,2019893359,1937075299]},{"sector":2,"length":512,"data":[1818588777,1852776569,1970239776,1700929650,1718378856,1853169708,544367972,1920298873,1919509536,1769235301,1628073583,1663067246,1920233071,539782255,1948282479,1936552549,1634235424,1919950964,1651075183,1948284009,544040296,1836020326,1801547040,543649385,544829025,1768976227,1864397669,1870203494,1663070837,1920561263,1952999273,1830839397,1919251553,543973737,1937012079,543515753,1768253556,1701978226,1769234796,1752395375,1998614633,543716457,779448185,538970634,1986948931,1852406117,1853169767,544367972,544829025,1701344367,1768104050,1836409714,1851880563,544433507,1881174889,1768780389,1684370548,1819243296,544828517,1701080693,1752435314,1868767333,1953064046,1936617321,1635021600,543450484,1869374818,538979959,1818391891,1852138345,1735289203,544434464,544501614,1869376609,996435319,1667592992,1852795252,170930464,1701536109,1953046643,1852732704,1936024421,2037539187,537528878,539898656,1953460816,1769235301,1428186990,1936876915,1699487783,543973735,1751607634,1176531828,544042866,1769238081,1919501101,1986884963,1769238117,1277193839,170817377,1310728202,1868767343,1701995894,1870078052,1931504498,1819042152,543515168,1835361636,1881171045,544502369,1629513327,1717903470,1952671078,543520361,1751344500,1869377390,1633904999,1701644908,1920299873,1853169765,544367972,544829025,1819308129,1650549609,1814062444,1713403745,1768320117,1852402796]},{"sector":3,"length":512,"data":[1651449959,1634167148,1852795252,1853169779,544367972,1769239137,174419043,1864380721,1752440934,1230446693,1663061840,1920561263,1952999273,1701999648,544830561,1886348385,543450484,840986223,1698963504,1651336547,824210021,741751097,175271712,1768778099,544366956,1937203564,1869770784,1768057192,1735289204,544370464,1953719666,1952672114,543649385,1668442467,1702260085,1869182062,1718558830,1668641568,1701644904,1920299873,170816357,1461723146,544105832,544567161,1986948963,1629518181,1987011360,1684370021,1919907616,2032151659,1998615919,1702259041,2037276960,1734700064,1881173089,1919252335,544175136,1651666790,1661625449,1969451625,1852143213,1852795252,543584032,1751344500,1869377390,1633904999,1701650540,1920299873,1948283749,1752440943,2019893349,1953391988,1668641568,1768104040,1836409714,1953391990,175009641,1696625513,1667589734,543450484,1696627042,1668441464,1852404585,1769087079,1937008743,1684960544,1948283493,544434536,1701013836,543519598,1752459639,1936028192,1952671088,175076384,543516788,1702260579,543450482,1802661751,1851858988,1870209124,1768169589,1634493299,1629515113,1763735918,1852142702,1852795252,544175136,1768778092,1886330996,1952543333,544108393,1829401199,1718183023,1952539497,544108393,1948280431,1998611816,543912559,1629516641,1634037024,1864397678,1852121190,1668444006,744975977,1634165024,1953721961,1701344288,1919907616]},{"sector":4,"length":512,"data":[175318891,1919251317,2032151667,544372079,1948283503,1685219688,1918988320,1936025972,1701584935,543973735,1751607666,1948283764,1868963951,1684628082,1919509280,1986884963,1769238117,1864396399,1702103654,1869506659,1768386412,543973731,1935762797,1936028277,537528878,539898912,1986948931,1852406117,1700143207,1952539250,1126198633,1701408879,168439411,1868111904,1634541685,1868767353,2036692590,1919252000,1769234786,1868767341,1936025968,543584032,543516788,1735357008,661479794,1869815923,1701016181,1685021472,1935745125,1970239776,1667592714,1702259045,745826592,544106784,544829025,1768187245,539782517,1987015280,1684366441,1634235424,1870209140,1868767349,1768977262,1970238819,544828531,174354017,1919971425,1769107567,1818588257,1970282617,1936288866,1852776552,1667327264,1868767336,1629518192,1885413486,1886351984,1952541042,1868767333,1769109872,544499815,1769238382,171664739,1885693291,1953392928,544498529,543976545,1769238382,544433507,1952543859,543649385,1952540788,1768453152,1766596723,1936614755,1851859045,1851859044,1869482617,1701850478,1936289138,1702259059,1919251488,1629516653,1684366436,544106784,1868784481,1998611570,543716457,1952671091,544108393,1885413431,544828528,1948282740,1663067496,996500591,1701145354,1852383344,1952670068,1819042080,1953459744,1936024425,543584032,543516788,1702060641,543515502,1629513327,1998616942,1634890337]},{"sector":5,"length":512,"data":[997815406,1684955424,1986619168,1818304613,1701972588,1768974691,1937010277,1663066400,544829551,1948280431,544434536,1701013836,543519598,1852796001,1769414759,1948280948,1344300392,1919381362,170814817,1495277578,1830843759,1663072609,1735549288,1851859045,1919950969,543515497,1847620207,1919950959,543515497,544370534,1751343461,1886348064,1752440953,2032170081,1663071599,1702260335,1628056697,2032165998,1830843759,1864399201,1919247974,1886745376,1953656688,544370464,1920098679,2037673569,1869770784,1952671092,544108393,544370534,1701191777,168439397,775233568,1852785440,1769563510,1293969262,1718183023,543450473,1920298835,1444963683,1769173605,779316847,538970634,544567129,544825709,1986948963,1629518181,1919907616,1633820779,543450483,1948282479,1344300392,1919381362,539782497,1948283503,1830839656,1718183023,1952539497,1936617321,175076384,1685025392,543515509,1713402985,544042866,543516788,1735357008,745365874,544106784,543516788,1836216166,543584032,1920298867,1663067491,543515759,1701080693,1752440946,1702103653,544435570,1931503215,1769235301,874540655,1919950892,1684633199,1948279909,544498024,544567161,1869835361,1701145888,1818304628,1718558828,1701344288,1663067507,1768189551,1852795252,168442483,538976288,1411393889,1998611816,543912559,1953723757,1918984992,1881176434,1768779634,1953391982,1953459744,1936024425,1635021600,1735289204]},{"sector":6,"length":512,"data":[1634235424,1870209140,1869422709,1768319332,537551973,1763713056,1629498484,1730176110,1852405353,543236199,1701602674,1953390966,1952539680,168439397,538976288,1411393890,1998611816,543912559,1953723757,1918984992,1881176434,1768779634,1953391982,1953459744,1936024425,1635021600,1735289204,1634235424,1953046644,175335712,538976288,1701602674,1684370273,1684960544,1948283493,544434536,1701013836,543519598,543452769,544829025,1684959075,1869182057,1629516654,1684366436,1684960544,1931506277,1769235301,537554543,924852256,1411391534,544434536,1970365810,1835364969,544501349,1768189805,1936025958,1701344288,1902473760,1701996917,1953391981,544106784,1952671091,544108393,1869881396,538976266,1701519904,1763733605,1667331182,1818304628,1869488236,1701013876,170795635,538976266,539583264,544567129,1953723757,1667853344,1702063717,1701344288,1953391904,543519337,1802661751,1935745068,1998610720,1701605224,1853169708,544367972,1936287860,538976266,1667845152,1702063717,544175136,1870229089,1998611822,1663070056,1936026991,1953392928,1869619311,1936028531,1852795251,543584032,1868767329,539916656,1768444960,538970739,1766596640,1936614755,1769414757,1948281964,1701995880,1701998438,1886413088,539785580,1852796001,1769414759,1629513844,1629518190,1768714352,1818386787,1702043749,1869182051,171384942,538976288,1768186977,1852795252,1948281953,1936552549,1869881388]},{"sector":7,"length":512,"data":[1701344288,1869117216,1864394092,1752440934,1870078053,539782002,543452769,543976545,544437353,1953653104,537537651,1914708000,1918986085,1936026724,1718558835,2003789856,1701344288,1918967929,1634738277,1734437731,539911269,1768444960,1766596723,1936614755,1768366181,544433526,537554798,1881153568,1768780389,1869181811,1869881454,1667853344,1702063717,1701344288,1919907616,1852383339,2037276960,1752461088,1998615141,539785569,544503138,1679848553,544433519,175402862,538976288,1635151465,1633970540,1931502964,543712117,1836213616,1769173865,1763733103,1870209126,1634214005,1931502966,1918988389,1818588257,1701978233,1986618723,1763730533,168439412,538976288,1226844516,1752440934,1870078053,1746955122,1763734369,1919251566,1769235297,1965057398,544367987,1702129257,1667327602,539784037,1751343461,1937075488,1768169588,1634496627,538970745,1883316256,1886351984,1952541042,1699487845,543973735,1769238350,997418339,2003789856,1919252069,1718165548,1701344288,1869762592,1835102823,1935763488,1953392928,1667330661,1702259060,538976266,1953392928,1634103909,544433507,1952540788,544171040,544501614,1886611812,544825708,1919971393,1769107567,543519841,1634166092,1867391084,1701013876,2032151667,175273327,538976288,1802661751,1701146144,1869488228,1634541684,1948280171,544040296,1931505508,168439407,541138976,1886220131,1952541801,544108393,1629513327,1987011360]},{"sector":8,"length":512,"data":[1684370021,1919907616,1769414763,1864394868,1919248500,1885696800,1952543329,1851859045,1852383332,1701864804,1852138606,1870072436,745761650,1768453920,1629513827,1847616882,1646294127,1752440953,544368997,1970561390,1696621938,1852142712,1852795251,1718558835,1701344288,1987011360,1684370021,1919907616,1628056683,1998611566,1751345512,1701994784,1953459744,1836016416,1701734754,1769414756,1763731572,1970479220,1629513827,1869881459,1919903264,543236205,1735549292,1881174629,1919381362,170683745,1864396393,1852776562,1981833504,1836412015,1718558821,1931501856,1634889588,1864394087,1768169586,1769108595,1769239906,1830841967,1969841253,1763716205,1633886323,1684368492,175005984,1734828322,1634166130,539125108,1948280425,1663067496,1768975727,1769234796,1629515375,1763730542,1914729332,1819636581,1735289204,1886348064,1734963833,1629516904,1847616882,1963619439,543450483,1814065012,1953066345,1701344288,1667457312,544437093,1814065775,1818322789,1734963744,544437352,1948280431,1663067496,1768975727,1769234796,1931964015,1702065440,1644852082,1852799333,1752637540,1948284001,1763730792,1986618478,1635083369,1870078060,544435058,1836213616,539915369,1668172064,1769174380,1864396399,543236198,1702260579,543450482,1802661751,544106762,1629515361,1701996391,1702125927,1701798944,1869488243,1633886324,543519605,1936287860,1667845152,1702063717,544175136,1819308129,1869881465]},{"sector":9,"length":512,"data":[1701344288,1752461088,1879732837,1937011297,543584032,543516788,1919379297,1952540517,168439397,775299104,1852785440,1769563510,1310746478,1395486319,1668445551,1866866789,779316594,538970634,544567129,544825709,1986948963,1629518181,1987011360,1684370021,1919907616,1852383339,1784835872,544498533,1701080931,1919903264,1853169773,544367972,543516788,1836213620,1718553203,1667592992,1852795252,540287091,543452769,1881156661,1769369458,543450468,1952540788,1970239776,1936482592,1868767343,2036692590,1701344288,1667329290,1701734760,1634038317,1818386788,1866670181,1936028274,1684959088,543649385,1920298835,1965057379,1919247470,1701344288,1919251488,1864397677,1752440934,1277195113,1852138345,170681715,1864396393,1864394094,1752440934,543519589,1937334647,537528890,1629495328,1866670121,2036692590,1701344288,1784835872,544498533,1701080931,745433376,544370464,1868721509,1684367716,745433376,1881170208,1769175400,543973731,1685025392,175399797,538976288,1668180264,1768191340,1629513582,2036887584,1633905011,1768169580,1769108595,1769239906,1830841967,1969841253,539765101,1868784481,1851879533,543450473,1948285282,537552232,1126178848,1701999215,1852797043,1735289188,1970230048,543515506,1702390118,1852776548,1679843616,1650553461,1881171308,1769175400,543973731,1768187245,537554293,1663049760,1869902709,1769103725,1965062508,543450483,544370534,1952870259]}],[{"sector":1,"length":512,"data":[1701994871,1953392928,1751347813,1701277281,537528878,1646272544,1866670121,2036692590,1701344288,1784835872,544498533,1701080931,745433376,544370464,1868721509,1684367716,745433376,1881170208,1769175400,543973731,1685025392,175399797,538976288,1668180264,1768191340,1629513582,2036887584,1633905011,1768169580,1769108595,1769239906,1830841967,1969841253,539765101,1868784481,1851879533,543450473,1629518178,538976266,1769109280,1852142708,1717989152,539783781,1768710518,1868963940,1952522354,1634036768,1948284019,1701147240,1634040096,1629516658,1981834350,1684630625,1919903264,175333664,538976288,1735290732,544432416,544567161,1701209711,1886593138,543519329,1953653104,1919885427,1937072928,1701670772,1970479218,1919905904,1868963956,1752440946,1881175137,1969516402,537556067,1830821920,1818584175,1869881388,1986619168,1851859045,1701736313,1869117216,1936683040,1936942451,1948283749,1864394088,1667590754,1868767348,1696621924,1701344361,824713330,174137385,538976288,2037411683,543584032,543516788,1920102211,1869640549,1852400750,1867718759,1701016181,1919903264,1819042080,1701344288,1718580000,1918990196,1852383333,1701344288,538976266,1869770784,1952675172,1634235424,1936269428,1987011360,1684370021,544825888,1936287860,1667845152,1702063717,1852776492,1679843616,1650553461,1881171308,1769175400,174874979,538976288,1768187245,1663069557,1869902709,1769103725]},{"sector":2,"length":512,"data":[1965062508,543450483,544370534,1952870259,1701994871,1953392928,1751347813,1701277281,1868963884,543236210,1667854960,1869488229,538976266,1919905056,1752440933,2032168545,544372079,1935762802,1650552431,1663067500,544502639,1881171567,1769175400,1819042147,1701847161,1919903346,1735289197,1768453152,538970739,1868767264,2036692590,543649385,1931503215,1668445551,1864379493,841490546,1667309609,1936942435,544175136,2037411683,1701344288,538976266,1919894304,1886610802,1768189551,1394632558,1668445551,1919295589,1629515119,1952804384,1802661751,1919251232,544367990,1847620705,1751326831,1701278305,537528878,1663049760,1866670121,2036692590,1684957472,1684633193,543973749,1768976227,1864397669,1752440934,1651449957,1952671082,1685021472,1769414757,1629513844,1886348064,1718558841,1701344288,538976266,1769109280,1852142708,1717989152,1948283493,1919950959,1684633199,1752440933,1866670181,1936028274,1684959088,543649385,1920298835,539911523,1768444960,538970739,1818304544,1852990836,1986622561,1936269413,1819042080,1684371311,1819176736,1668227193,1769169251,1818324591,1629518188,1847616622,1868787311,1919249773,1818323299,539785580,174354017,538976288,2037149295,543582496,544567161,1701012850,1684371049,1701344288,1784835872,544498533,1701080931,1953068832,1970479208,1629513827,1718558830,745694566,544106784,1868784481,537551986,1998594080,543716457,1935832435]},{"sector":3,"length":512,"data":[1769235301,908095087,168439394,538976288,1126181220,1702260335,1752440953,1651449957,1952671082,1685021472,2036473957,1717989152,1852404325,1667309671,1936942435,1869768224,543236205,1769170276,1952542311,537551973,1881153568,1701011820,1919363104,1936290913,544370464,544370534,1751326817,1701278305,1629498409,1864393838,1919247974,1970365728,1818326633,544501349,1701012321,1948283763,1752440943,538970725,1866670112,1936028274,1684959088,543649385,1920298835,1763730787,1752440942,1634934885,1998611821,1948285281,1970238056,1948280935,1931502952,543518049,1667329136,1952522341,175074848,538976288,1953658214,544367976,1918986339,539911527,1970231584,1701146144,1869488228,1701978228,1919513969,1701978213,1768974691,1937010277,544175136,2037411683,1701344288,538976266,1919894304,1886610802,1768189551,1394632558,1668445551,1818304613,543649391,1752459639,1701344288,1784835872,544498533,1701080931,1226842158,1752440934,1819287653,543515489,537554804,1663049760,544829551,543516788,1701470831,1663071331,543515759,1629516649,1952804384,1802661751,1919251232,745694582,1701344288,1919894304,1886610802,1768189551,1394632558,1668445551,538970725,1634541600,1700929657,544108320,1768169569,1919247974,544501349,1987208563,673215077,1919250543,1684370529,544825888,544567161,1629516399,1768453152,1881171058,2037674593,538970665,1752440864,1931506785,1869639797,544437362]},{"sector":4,"length":512,"data":[1769304421,1701601654,1663071342,1769566319,1713399662,1818846049,1701409897,1881156723,1769369458,543450468,544567161,1852399981,1852399988,538976266,1701602080,1679848033,1667592809,1852795252,1701716083,1948284024,1752440943,1651449957,1952671082,1685021472,1634934885,1735289209,1701345056,1948280178,1768300655,1948279918,537552232,1126178848,1701999215,1852797043,1735289188,1970230048,778396530,1699880992,1685217639,1936942444,543584032,1952540791,1919251232,544367990,1953722216,1752440947,538970725,1866670112,1936028274,1684959088,543649385,1920298835,539780451,544567161,1634559346,1864396393,1734962274,1684370529,544175136,1970499173,1948280178,544498024,1763734633,538970739,1986076704,1634494817,543517794,544370534,1814066017,543649391,1847620449,1701078373,1869881444,1952543520,2036757353,1701344288,1914725747,1769304421,1701668210,779318382,538970634,694493216,1852785440,544826742,543516788,1701470831,1663071331,543515759,1852404597,1701847143,1949135461,1701850479,1948283493,1936613746,1936943469,745434985,1869770784,1701079414,538970724,1870209056,1852383349,1836216166,1752461088,1881174629,1936876901,1701345056,1948280178,1864394088,1667590754,1868767348,1629513060,1126196334,1701999215,1852797043,1735289188,538976266,1970230048,543515506,1948280431,1998611816,543912559,543519329,1852400994,1718558823,1701995878,1869881444,1701344288,1852139296]},{"sector":5,"length":512,"data":[1818325605,1651863584,543385964,1847620705,538970735,1751326752,1701278305,1684960544,1931506277,1702060661,1869182051,1681268846,537528878,1931493664,1918988389,1701601889,1919905824,1852795252,543584032,543516788,1701470831,1663071331,744842351,1869117216,1931502963,1668445551,1868767333,1763730788,2019893363,1685417059,1711957093,544042866,543516788,1920102211,1869640549,1852400750,1867718759,1701016181,544432416,2035490913,1835365491,1651067936,2037539186,1701716012,1847616613,1646294127,1852377701,1685417059,1763730533,1868767342,2036692590,543649385,543516788,1701470831,1663071331,543515759,1802661751,537528878,572539168,1919251285,1869762592,1952675172,1936269346,1953064224,544367976,539570472,1663180897,1970499183,544367981,1685025392,578052981,1752637484,543712105,1851876717,1851859059,1634994809,1651074926,1881171308,1869836901,543973742,1886351984,2037674597,1768453920,1763731555,1869488243,1818324338,1965062508,543450483,544370534,1936876912,1818324591,1634082860,2037148013,1919879724,1970235424,1869112691,1881171052,1869640309,745760115,544370464,539570728,1954115169,1735289192,1936024608,1701734249,1919885412,1819243296,1868963940,1852383346,1886547811,1952543343,175009641,1869901417,1679843616,1819043191,778530409,1850286112,1952801824,1768780389,1735289198,1701345056,1919248500,1881170208,1969516402,1763734627,543236211,1936617315,1919249781]},{"sector":6,"length":512,"data":[1869770784,1952675172,1868827180,1718903413,1663069301,1936028513,1634235168,1646292076,1701978213,1986817907,1763730533,1634082926,544370550,1663067759,1919252079,778397537,1866866720,543236210,1953653104,1819632489,1879732833,1969516402,1914729571,1768252261,543450486,1629518178,1918988320,1969449332,544366956,1919251317,1847730220,1634562671,544828524,1684370293,1701978146,1936876902,544175136,2037647969,1633905008,1919885420,1836016416,544108397,543519605,1948280431,544498024,1935764579,1718558835,1869770784,1952675172,1701978156,1685217639,1936942444,543584032,543516788,1952543859,1862955893,1752440934,1634738277,1667855474,1918987381,1702065440,1919885426,543584032,543516788,544825719,1998614121,1751345512,1701344288,1918988320,1969449332,544366956,1919251317,1952669962,1819042165,1937055865,539784037,1696625263,1667592312,1864397684,1936269426,1886938400,1702126437,1869881444,1702065440,1752440876,1919950949,1668637807,538979956,1919950913,1668637807,1936263796,1663066400,1970499183,544367981,1685025392,544498549,1634166130,1701602418,1864397683,1752637542,1701344357,1752440946,1919950949,1668637807,1634214004,1970479219,1635021666,1634301038,1868761708,1919249773,1818323299,1852383276,1953723748,1818323314,544370464,762212206,1936617315,1919249781,1702065440,1965042803,1936026734,1970479219,1965058147,544433523,1919968626,1852142437,1752435316,1852776549]},{"sector":7,"length":512,"data":[1931508076,1768843113,1633904998,1830843502,543515759,1965057647,1864394099,1752440934,1919950949,1668637807,168439412,1226973216,1635021678,1952541804,544108393,1868983881,1952542066,577662825,1919903264,1428185376,544367987,1685025360,544498549,1851876717,1851859059,1701650553,1685022836,1879714931,1701015410,1701999972,1629498483,1869116533,1635412338,1852795252,2036689696,1864379507,1953439858,544367976,1868983913,1952542066,544108393,1970365810,1684370025,544175136,1953721961,174877793,543452769,1667594341,543519861,1768189805,1684367718,1919252000,1852795251,1718558835,1663066400,1919252079,1998611557,543912559,1948282473,544498024,1919251285,1869762592,1952675172,1869768224,543230573,1768189805,1684367718,1919252000,1852795251,543584032,544437353,1920102211,1869640549,1852400750,1867718759,1701016181,1411391534,1763730792,1919903342,1769234797,1830841967,175403893,1717990771,543515497,1696624500,1920299886,1752440933,1948284001,1663067496,1769238127,1684370798,1853187616,1869182051,1735289198,543584032,543516788,1768189805,1684367718,1784835872,175399781,1701080931,544434464,1847619177,1633886319,1881171315,1702258034,1684370542,544370464,1702129257,1919247986,1998611557,543716457,1701605235,1646295404,1969316709,1829397875,1718183023,1952539497,544108393,544432488,1852138850,1684106528,168439397,1716068384,1970239776,1852793632,544826742,1864396385]},{"sector":8,"length":512,"data":[1667590754,1868767348,1998611812,543912559,1701080693,1752440946,1931506537,1769235301,1763733103,1864379502,1769414770,539781236,1930064495,1768121712,1633904998,544828524,544370534,543519605,539782761,1934958689,1344303717,1969516402,539784291,543452769,543516788,1986948963,1852406117,1668227175,1936880995,175333664,1953653104,543584032,1920213089,1634954849,1869182051,1852383342,1768453920,1948280931,1914725736,1952999273,543584032,1936945008,1769173861,1629515375,1965057134,1864394099,1752440934,1934953061,1344303717,1969516402,1763734627,1920213107,1718840929,1701999205,1869881444,1701344288,1667592736,1701408873,1763734638,1701847150,1952804978,2037672309,544370464,544370534,1768295009,543450488,1836213620,1701980192,1685217639,1936942444,543584032,544698216,543516788,1851880052,1952670067,544108393,1663071081,1634885992,1919251555,1684372073,1948265513,1124754792,1701999215,1852797043,1735289188,1970230048,543515506,1986948963,1684371813,1684960544,1948283493,544434536,1952671091,544108393,1953723757,543515168,1868784481,1851879533,174351721,1948285282,1226859880,1635021678,1952541804,544108393,1868983881,1952542066,778989417,1967267872,1752440948,1914729321,1769304421,1701668210,1679848558,544433519,544501614,1819308129,1718159993,1768255008,1919248500,1970239776,1919905312,2037276960,1768453152,1881171058,2037674593,1952805408,1936615777,1701344288]},{"sector":9,"length":512,"data":[1768055072,2037672300,544175136,1953721961,174877793,1768189805,1684367718,1784835872,544498533,1701080931,544108320,543516788,1919251285,1869762592,1952675172,1868965920,2019893362,1819307361,1948265573,1998611816,543912559,175333736,1852138850,1936615712,1819042164,1763730533,1330782318,170797389,1411391498,1914725736,1769304421,1701668210,1948284014,1919950959,1684633199,1850286181,1818326131,1769234796,1226862191,1919903342,1769234797,1679847023,544433519,544501614,1818455657,543515765,1701972577,1919513969,1852140901,1869881460,1852793632,1970170228,1869881445,1869770784,1701079414,1886745376,1953656688,1919251232,1701013878,1635196972,1851880050,539785588,1965060719,1952539760,1711960933,1629516399,1919907616,1752440939,1746957409,1646293857,544105829,1768189805,1684367718,544370464,1953721961,1701604449,2036473956,1701344288,1667592736,1701408873,539784302,1713402479,1946841711,1428186472,544367987,1685025360,544498549,1998614121,1751345512,544500000,544432488,1852138850,1685024032,1701406313,1919885412,1936615712,1819042164,539911269,1667449120,544437093,1629515636,1952804362,1802661751,2036428064,543515168,1768842596,1998611557,544105832,543516788,1768189805,1633904998,1852795252,1937008928,543583333,1702125933,1818323314,1629518188,1628071022,1919252068,2037146995,1717985568,1937007461,1701344288,1701867296,1769234802,1864396399,1752440934,1701716069]}]],[[{"sector":1,"length":512,"data":[1919907700,1919885419,1869182496,1702125932,1752440947,1970413669,544433516,174354017,1953460848,1819239279,1868963955,1868767346,1853189485,1952539497,544108393,1869767521,1948283763,1847616872,1870099557,170814322,1126178826,1701999215,1852797043,1735289188,1970230048,543515506,1986948963,1684371813,1851858988,1850286180,1818326131,1769234796,1226862191,1919903342,1769234797,1881173615,1769369458,744777060,544106762,1868784481,1998611570,543716457,1936287860,1667592992,1852795252,1937075488,1700929652,544106784,1868963937,1952542066,1634235424,1936269428,1651863584,1818454380,1868827257,1701672291,1684370542,1851861024,1769414756,1629513844,1835606126,1835363440,1635020389,1852795252,1635148064,1650551913,1948280172,1752440943,1970282597,1667853410,175008032,1920298867,1663067491,543515759,1836216166,1629498409,1830839406,544502645,1970365810,543519337,1931505518,1768121712,1881173089,2004054881,543453807,1797288559,1713404261,1963618927,1667330158,1735289195,1701978156,1852400737,1919885415,1886348064,1735289209,537528878,539899680,1768186945,1852795252,1411411041,1936552549,537528878,1681990176,1769236836,1818324591,1919250464,1936943469,1936617321,1918967842,1702109285,544435570,1952540788,1886745376,1835363440,544501349,543516788,1836213620,1718558835,1768453152,1766591091,1936614755,2036473957,1801547040,543649385,1701017701,1869182064,1713402734,544042866]},{"sector":2,"length":512,"data":[543518319,1830842991,543519343,1763731055,1663071092,1768189551,1852795252,1091186291,1953064036,1634627433,1701847148,1936289138,1852795251,1752440947,1629516897,1629513074,1768714352,1818386787,1869881445,1701344288,1953391904,543519337,1735357008,544039282,1818323059,1700924012,1701999648,1684370529,544432416,1970235508,1948280935,544826728,1701995895,1668180256,1701082476,1852383332,1768453152,1766596723,1936614755,1948265573,1752440943,2019893349,1953391988,1634235402,1752440948,1629518181,1981834610,1684630625,1684960544,1629516389,1768714352,1818386787,1634476133,538979959,1629513289,1953064036,1634627433,1701847148,1936289138,1852795251,1885407859,544828528,2037149295,544175136,1953653104,543584032,543516788,1735357008,745365874,1634235424,1634738292,1830843506,1646295393,1937055845,1931502693,1918988389,1818588257,1853164153,544367972,1936681076,1701847141,1936289138,1852795251,1646275699,1948284021,1696621928,1919513710,1917853797,1634887535,1701978221,1852399981,1869029491,1852990838,1646290021,1752435321,1277195113,1852138345,1998611827,1869116521,1914729589,1918986085,1869881444,1701344288,1684300064,1869182057,543973742,1836213616,1769173865,779316847,538970634,1852139607,1970239776,1852793632,544826742,1868767329,1864399216,543236198,1702260579,543450482,1802661751,1870209068,1634541685,1952522361,1970239776,1886330994,1852795252,1835364874,543520367]},{"sector":3,"length":512,"data":[544829025,1768186977,1852795252,1881173089,1768780389,1869181811,1713402734,544042866,1952540788,1886348064,1864379513,1919295602,1629515119,1881176430,544502369,1762289263,538979956,1684291880,1869182057,543973742,1836213616,1769173865,544435823,544825709,1998611810,1953786226,1948282469,1701978223,1919513969,1752440933,544368997,175011695,1869440370,543973750,1663069801,1635021413,1663069801,1936028513,1701345056,1870209134,1869422709,2036754788,1701344288,1919907616,539569771,1970231584,2036428064,1634496544,1628071267,1953064036,1634627433,1701847148,1936289138,1852795251,1852776563,1952541984,1634300517,1629498476,1684366436,544825888,544567161,1629515636,1987011360,1684370021,1919907616,1711942763,1998615151,1751345512,1970239776,1986095136,1919885413,1851876128,1986619168,1885413477,1886351984,1952541042,1868767333,1769109872,544499815,1836213616,1769173865,170815087,1310728202,1769436271,1953720436,1768189537,1629513582,1864399214,1919248500,1869770784,1769171318,1864396399,1752440934,1277195113,1852138345,539780467,544370534,1702125933,1818323314,1970239776,1684300042,544175136,1868767329,1701995894,1870078052,539782002,544567161,544825709,543582504,1752462689,2053730927,1646290021,1752440953,1868767333,1769109872,544499815,1684828008,544436837,1946838639,544498024,1702125933,1818323314,1970479145,1701605488,1953391981,1701344288,1919251488,1864397677]},{"sector":4,"length":512,"data":[1752440934,1277195113,1852138345,1998611827,543716457,1836213620,168442483,538976288,1142958433,1818456937,1768778081,1998612334,1634890337,544830574,1814065775,1953066345,543649385,1650551148,1953066089,1768169593,1919247974,1819569765,1919295609,1948282223,537552232,1948262432,1936552549,543584032,1952671091,1936617321,540356896,543452769,1864382001,1752440934,1277195113,1852138345,540763507,168456815,538976288,1377839458,1769304421,1735289202,1701998624,1987208563,1869182049,1718558830,1701868320,1768319331,1914725477,1869832549,1818386798,1701584997,543973735,1769238382,544433507,537555567,1629495328,1869116533,1952522354,1651077748,1869182069,1763734382,1752440942,1830843489,1919251553,543973737,1763734127,1752440942,1883316325,1886351984,1952541042,1699487845,174874983,538976288,1769238350,544433507,1886611812,1702453612,2036473956,1919907616,1663071083,1635020399,1852403305,1953046631,1919885371,538970634,694362144,1869762592,1768057192,1735289204,1936289056,1919968626,1852142437,1769234804,1864396399,1752440934,1919885413,1852401513,543584032,1952540788,1952541984,1634300517,1864379500,538970738,1701978144,1919513969,543649385,1952540788,1685024032,1701406313,1702240356,1869181810,1864397678,1970479206,1830840419,1919251553,543973737,1830839650,1701540449,1852383332,538976266,1634038304,1634627443,543517794,1937334647,544432416,1717987684,1852142181]},{"sector":5,"length":512,"data":[1919295604,1948282223,1864394088,1768384882,543973742,1936876918,997093225,175271712,538976266,539583520,1768778060,1735289204,1701344288,1702065440,1919903264,1651863584,1768122732,1881176436,1869640309,544433523,1847617135,1936026977,543584032,1701013868,1919906670,1919885427,538976266,1953849632,1936879464,543584032,543516788,1702125933,1818323314,1919885371,538970634,694493216,1667580960,1768843628,1948280686,1919361135,544501345,1751607666,1965060980,1919247470,1634890784,1634559332,1814063986,1713403745,1965060719,1864394099,1869815910,537552237,1948262432,1701077362,1835101728,539784037,1684107892,1918987621,539784043,1931506287,1769370213,1830839651,1936421473,1919885371,538970634,694558752,1902465568,1769105781,1763731310,1835361390,1768319342,1769234787,1864396399,1768693862,1936614755,544436847,543452769,1752462689,544436847,1948280431,175399272,538976288,1702125933,1818323314,544825888,1870229089,1998611822,1663070056,1702260335,1948283769,1830839656,1919251553,543973737,544370472,1768189805,1684367718,1919252000,1852795251,1718558835,538976266,695494944,1953068832,1868767336,1634890862,1635087459,1935745132,1886221683,1852795252,1718558835,1634298912,1768712546,1948285300,1752440943,1701978213,1768974691,745827941,1919903264,538976266,2037276960,1634298912,1768712546,1948285300,544498024,1936025716,1868767333,1634890862,1635087459,1935745132]},{"sector":6,"length":512,"data":[1886221683,1852795252,1768169587,1952671090,1763735916,1936683117,1852776549,538976266,1869116448,1814062451,1852138345,1936879475,1684955424,1953849632,1936879464,537528878,1819033888,1752461088,1847620197,1882025583,1768780389,1986622323,1684086885,1769236836,1818324591,1919251488,1629516653,1663067506,1769172591,1701995876,1713512548,1752461941,1913287269,1920234341,1769235305,577990255,1953068832,544106856,543516788,1851876717,543649385,1931503215,1769235301,824209007,538979888,1948280393,1344300392,1919381362,1629515105,1870209139,1701972597,1986618723,1763730533,1864379508,1851859058,1634738297,1864397938,1953046630,1868767276,1767994478,1629516654,1953459744,543515497,1952543859,543649385,1952540788,544500000,1728738153,1919252079,543450478,1948285282,544434536,1701013836,543519598,1852796001,1769414759,1629513844,1919251488,1752440941,1763734625,543236211,1953658214,175269224,1953719666,1952672114,745434985,1970239776,2036428064,1835364896,543520367,1952540788,1919251488,538979949,1629513289,1667853344,1702063717,1668244512,1852140917,1868767348,1767994478,1628074862,1920296480,1919248500,1936028192,1667854964,1852795252,1953849888,1919250464,1937009005,1818587680,1852138345,1735289203,544370464,1986948963,1852406117,1853169767,544367972,1936287860,1667845130,1702063717,1870209068,1634541685,1684086905,1869881444,1663066400,1919252079,1998611557,543912559]},{"sector":7,"length":512,"data":[1702125933,1818323314,1987012384,1701737061,2036473956,1701344288,1919251488,1862955885,1752440934,1814066273,1852138345,1679844723,1836409711,745827941,1869770784,1701079414,1752440932,1948284001,1713399144,1752461941,1914729061,1920234341,1769235305,1679847023,175334767,544501614,1987212659,543520361,1751348595,1818587680,1852138345,1735289203,544370464,1986948963,1852406117,168439399,1716068384,1970239776,1684300064,1919251488,1948283757,543236207,1702260579,543450482,1802661751,544106784,1868784481,1998611570,543716457,1936287860,1667592992,1852795252,1870209068,1970080373,1881175155,1701011820,1852383276,1701344288,1818587680,1851881061,1869815924,1701016181,1818846752,539784037,1953701985,1835365473,544501349,1948280431,1628071272,1953064036,1634627433,1702109292,544435570,1952540788,1886413088,1948285292,1752440943,543519599,1701603686,1864379507,543236210,1769238382,1763730787,1667851374,1852404833,1752631911,543519333,1713401716,543452777,543516788,1819308129,1650549609,1948280172,1936552549,537528878,1684291872,1869182057,543973742,1836213620,1881156723,1768780389,1986622323,1919885413,1852796448,1919250477,1936943469,744846953,2036428064,543515168,1952543859,1763730533,1752440942,1868958309,1864396146,543236198,1634755955,1702125938,1998616940,1953786226,1814064741,1852138345,539780467,1931506287,1702125940,1935745124,1668834592,1769238629,997420655]},{"sector":8,"length":512,"data":[1701344266,1868718368,1914725750,1769304421,1701668210,544437358,1819308129,1768235129,1919248500,2036430624,537528878,539899936,1836213588,1952542313,778989417,538970634,544567129,544825709,544501614,1886351984,1952540513,1919885413,1685024032,544826985,1868767329,1701995894,1870078052,1696623474,1885692792,1935745140,1886938400,1936942450,1879734636,1769369458,543450468,1701080693,1752440946,1277195113,1852138345,539911539,2037268768,1953784096,1953525093,1752461088,1769435749,1948280179,1919950959,1734439023,543519841,1829401199,1718183023,1953046649,544434464,1684631414,1851858988,1769414756,1629514860,1836020853,1667855457,2037148769,1919251488,1634625901,2032166260,544372079,1751607666,1965060980,1919247470,1768453130,1766596723,1936614755,1764237413,1970037614,1735289188,2037276960,1952542752,544501349,1701013868,1936028526,1634887456,1684370542,1684960544,1948283493,1948280168,1685219688,1918988298,1634887521,1864394864,1702043750,1869182051,825303150,168439337,1866997792,1702258039,1763716210,1870209126,1700995189,543519585,543976545,1819240822,1869182049,1718558830,1768453152,1766596723,1936614755,1948265573,544105832,1920298873,1667853322,1702063717,1869768224,543236205,1953653104,1819632489,1663070817,1920561263,1952999273,1819240480,544367972,1914729321,1936615781,1702125940,1630019684,1919945257,1936291439,1634627433,746155116,1819178272,544437093]},{"sector":9,"length":512,"data":[543452769,1769238133,1752440940,1868767333,1769109872,544499815,1684828008,1696625253,1768714360,1819568483,1851859065,1768295012,1819042158,1702109305,1852403058,1936028769,1970239776,1768693874,1936614755,1629498469,673211502,1881155938,1634562661,1953391982,539785580,1948280425,1663067496,1920561263,1952999273,1819240458,544367972,1818845542,1869881459,1953459744,544826985,544567161,1948280431,1981834600,1634496361,1852795252,544825888,1701670771,1634038304,1634627443,543517794,1851876717,1919945331,544370537,908095348,1633951792,1629516665,1919251558,1701344288,1936024352,1769234803,170815087,1293950986,1868919407,745694582,1970239776,1768693874,1936614755,1919295589,1629515119,1918988320,1969449332,544366956,2037411683,1751607666,1869095028,1919247468,175335712,1852401010,1952543859,1881171045,1634562661,1953391982,1763735916,1752440934,1868767333,1769109872,544499815,1684828008,1847620197,1718187119,544433513,544567161,1948280431,1980392808,1634496361,1852795252,544825888,1701670771,1634038304,1634627443,543517794,1851876717,1948265587,544434536,1948283753,1713399144,1953722985,1835627552,1870209125,1634214005,1913283958,1768252261,543450486,1769238382,1864394083,1769349222,1952541807,544108393,1948280431,544434536,1701013836,543519598,1919903272,2037276960,1919907616,1713383787,544042866,1952540788,1886348042,1734963833,1746957416,1701080175,1629498482]}],[{"sector":1,"length":512,"data":[2032165998,1663071599,543519349,543516788,1819240822,1869182049,1919950958,544370537,857763700,1633951792,1629516665,1919251558,1970239754,1701978226,1885955427,1718558836,1701344288,1953459744,778396521,538970634,1836213588,1952542313,544108393,2032166511,544372079,1751607666,1965060980,1919247470,1768453152,1702043763,1869182051,1868832878,1847620453,1948284015,1768780389,1702125934,1701344288,1667853322,1702063717,1718558835,1918988320,1936025972,1869117216,1986095136,1701978213,1986618723,1663067237,1701408879,1919885427,1734963744,544437352,1836020326,1970239776,1684960544,1946841701,544434536,1701013836,778400622,1716068384,1970239776,1769087090,1937008743,1986095136,1700929637,1948282469,1768780389,1702125934,1851859044,1869488228,1701847156,1851878770,1819569765,1701972601,1953721961,1684370529,1870209068,1868832885,1953459744,1635086624,2036754796,544175136,1701012850,543520361,544695662,1701013868,1936028526,1919903264,1701344288,1835103008,1634536037,1769104756,1965059169,1919247470,1667592992,1852795252,774910240,538970634,1092628025,1885692771,1668178292,1867391077,1699881076,1919513969,1713398885,1210085999,1852405345,1866670183,1936025968,537528878,1970231584,1701994784,1953459744,1902473760,1701996917,1869881444,1667457312,544501861,1936287860,1667845152,1702063717,544106784,1701081711,1869881458,1667592736,1702259045,175271712,544109938,1868767329]},{"sector":2,"length":512,"data":[1864399216,1752440934,1917853797,1634887535,538979949,1768123969,1918987372,1919950969,1734439023,1869182049,1718558830,1663066400,1919252079,1998611557,174813807,1969447791,1852404338,1869815911,2037146988,544432416,1868767329,1902474094,1668179317,1718558821,1769174304,1881171822,762471781,1882025844,544367973,1851880052,1936289139,1852795251,544175114,1701012850,543520361,1868767329,1814067568,2003135337,543519593,1936027492,1953459744,1902473760,1701996917,1667457312,1635020901,778396526,1866997792,1702258039,1846160498,1768453231,1864394606,1919248500,1634235424,1752440942,1277195113,1852138345,1730176371,1953390962,1870209139,1701847157,1936289138,1852795251,544175136,1886351984,1952540513,1919885413,1685024010,544826985,544829025,1702260579,543450482,1802661751,1411391534,1702061416,1952669984,1936617321,1718511904,1735289202,1868767333,1769109872,544499815,2032166505,1679848815,1869482607,1667309684,1953523043,1768453152,1766596723,1936614755,538979941,1919248468,1919903333,1646275685,1869422713,2036754788,543649385,1881174639,1634758514,1769234791,1629513582,1987011338,1684370021,1919907616,2032151659,1763734895,1667851374,543519841,1920298873,1667457312,1635020901,543515502,1948280431,544434536,1701013836,543519598,1679847284,1869815919,537528878,774910240,1953841440,1952542063,1277191017,1852138345,1735289203,543584032,1853321028,1701999731,1377856865]},{"sector":3,"length":512,"data":[1885954917,1953391977,168439411,1631920160,1948280931,543518057,544567161,1986948963,1629518181,1987011360,1684370021,1919907616,1948265579,1914725736,1885954917,1953391977,1953849632,1952542063,1818321769,1913289068,1768252261,544433526,1768693857,1936614755,1919295589,1948282223,1864394088,1768384882,543973742,1701013868,1919906670,1948265587,1970413679,1830825070,1718183023,1851859065,1919945316,1734439023,543519841,1952540788,1919907616,1931488363,1701470837,1948284003,1752440943,1277195113,1852138345,539911539,1970231584,1701994784,1953459744,1936028192,1936617328,1701601897,1919903242,1718510880,1768125039,1663068014,1819307375,1668178281,2036473957,1768453152,1881171058,1769239137,1998615397,543716457,1936287860,1667845152,1702063717,537528878,544096544,1953391906,544830569,1851880052,1952670067,577662825,544434464,1920213089,1634954849,1869182051,1920213102,1718840929,1769108069,1663068014,1920233071,1864395887,1851859046,1735552778,2053729889,1869182049,1864379502,1970479218,1635021666,1634301038,544828524,543976545,1702064993,1864397684,1852776550,1864379493,1970479218,1986618466,1852400745,1851859047,1735552778,2053729889,1869182049,1864379502,1701650546,1852401522,1919885415,1768841575,1769234810,779316847,1716068384,1869770784,1634165104,1852795252,543584032,1868767329,1701995894,1870072420,1914727282,1819636581,1713402740,544042866,1696624225,1953068142]},{"sector":4,"length":512,"data":[1920213113,1634954849,1869182051,1696607342,543712097,1953653104,1869881465,1634235424,1920207476,1634954849,1869182051,1752637550,1701978223,1986618723,1629516645,1886348064,1718558841,1701344288,1919907616,1818304619,1914728307,1768252261,544433526,1952540791,1919252069,1667853322,1702063717,1869881459,1701344288,1919907616,1752440939,1634738277,662271090,1919950963,1667589221,1869837157,1852383346,1953392928,1936028261,1634214004,1919885412,1970234144,1728734316,543520361,1701080693,1752440946,1919950949,1869182565,1881174901,1734439521,1752195442,1819287596,1629516661,1734963744,1948284008,1869619311,1936028531,1852795251,543584032,174418036,1920102211,1869640549,1852400750,1867718759,1701016181,543584032,543516788,1802661751,1869768224,1752440941,1919950949,1667589221,1869837157,1852383346,1953392928,1936028261,1763716212,1752435302,1919950949,1667589221,1869837157,1634214002,1953046643,544370464,544104803,544499047,1998615657,543716457,1935762802,1650552431,1696621932,1919903334,170816372,1495277578,1830843759,1847621985,1763734639,1936683117,1851859045,1969627257,1701344370,1701978226,1769108595,1869182051,1864397678,1752440942,2019893349,1768125029,1864394099,1752440934,1769081445,1937008743,1634887456,1684370542,544370464,1768318561,1684368754,1684960544,1948283493,544434536,1701013836,778400622,1866866720,2019893362,1819307361,2032151653,1830843759,1846180193]},{"sector":5,"length":512,"data":[1763734639,1936683117,543236197,1701013868,543519598,744842598,2037346848,2037673057,1919885356,1752461088,1663070821,1735549288,1868963941,2019893362,1768125029,1864394099,1769081446,1937008743,1634887456,1684370542,1684960544,1948283493,544434536,1701013836,744846190,1684955424,1970239776,2036428064,1953459744,1768843552,1952541044,1768693861,1634167156,1852795252,1852385290,1685417059,543649385,1919098977,762540911,1767992419,1919885421,1970234144,1919251566,1767992419,1852383341,1814061344,1970501473,539587689,1701604449,1735289191,1634235424,1851853428,1634738297,1953391988,1634493216,1763732841,1852383347,1852404326,543450471,1830844770,1852402529,1965042791,1735289203,1702043692,1852402796,1864379495,1919247974,543649385,175271782,1701601651,1919885356,1886218528,1769239151,1948280686,1344300392,1919381362,1864396129,1851859058,1869619321,1869182066,1718558830,779381024,538970634,539898161,1702125904,779318382,538970634,1663180865,1920233071,1953849961,539128431,1629516649,1886348064,1734963833,1746957416,1701080175,1752637554,1969299567,1919903860,1936030313,1702065440,1684960544,1948283493,175335784,1701013836,543519598,1948280431,1344300392,1919381362,1864396129,543236210,1802661751,544108320,1667852407,1752440936,1917853797,1634887535,1936269421,1935761952,539911269,1701336096,1919907594,1752440939,1814066037,1852138345,543450483,1663071081,1701604449]},{"sector":6,"length":512,"data":[1752440932,1868767333,1769108590,1869903202,544417650,1852793634,1651077748,1919906933,1919252000,1852795251,168439330,541138976,1953394531,1969383794,661811060,1696735347,1852142451,1818323316,1952542752,544501349,1767992419,539128685,543519329,543976545,1702125936,1663071342,1835622764,2003765875,543450478,1663070831,1920233071,1701604463,2036473956,1701344288,1852793632,1651077748,1919906933,1752637484,1701344357,1818304626,1684104562,1667309689,1919513969,1864393829,1701317234,1717658994,544367988,1970365281,1684370025,1752440876,1998615649,1684829551,543515168,1919315561,1701277289,2036473956,1836020512,1634541669,1919250030,1701847084,1953066354,174351732,1948285282,544434536,1701013836,744846190,543584032,1768644973,539780974,1852404597,1864379495,1702043762,1852402796,1953046631,1868767347,1769108590,1869903202,1702240370,1869181810,1644833902,1679848565,1869488239,1852383348,1685417059,1818435685,1936550241,1634235424,1870078068,543452277,1763730786,1769105006,1684367214,1819176736,1935745145,1661624608,1702063727,1852142961,1864394083,1969627238,1701344370,1869422706,1768319332,1769234787,1864396399,1752440934,1868767333,1769108590,1869903202,1702240370,1869181810,538979950,175271750,1886549360,1936028527,543584032,1936287860,1717920800,1953066601,745434985,1868767776,1869771886,1763713644,1970037614,544433508,543516788,1751607666,1869881460,1634887456]},{"sector":7,"length":512,"data":[1879733358,1852142689,1970479220,1667853410,1702063717,1852383347,1830838560,1701736033,1868767346,1936290670,1953391988,1953068832,1752440936,1701978213,1919513969,1852140901,1864397684,1752435302,1277195113,1852138345,170812787,1159733258,543712097,1953394531,1969383794,544370548,1851880039,2032169844,1629517167,1852796448,1668834605,1769174380,539780470,1819438967,1684633444,1914711141,1818327407,1714256244,174417266,1702125936,1814066286,1852138345,1965057395,1919247470,1701344288,1852793632,1651077748,1919906933,1696625447,1852142451,1818323316,1952542752,544501349,1767992419,539784045,1829400436,744844129,1702065440,1702043692,539782252,1701209711,1868963954,1634934898,539780460,1869639017,1629516914,1864393838,1919248500,1702062455,1853190688,1869422636,2036754788,1684955424,1869770762,1634165104,1948280180,1663067496,1702129263,544437358,1763731055,1663071092,1920233071,1953849961,1981837935,1769173605,170815087,1226842122,1752440942,1868963941,2003790956,543649385,1701996660,1634738277,1919377778,1936224353,543236140,1952542754,544501349,1701013868,577074030,544434464,544829025,1919973477,175338341,1701996385,1852140901,1919885428,1836016416,1836345709,745827941,2003789856,1919252069,1852138528,1852403055,1684370529,1869488172,1869881460,1718510880,1701016175,1881170208,1852142689,1932003956,543712117,1629516641,2019893358,1936028272,1701847155,1936289138]},{"sector":8,"length":512,"data":[1852795251,544175136,1667330672,1701013876,1881170208,1852142689,1919885428,1987011360,1851879013,1869488244,1869881460,1702195978,1919903264,1952542752,544501349,1919315561,1701277289,1953391981,538979881,572550996,1851880039,1931485812,543712117,1634738273,1953391988,1667853344,1702063717,544175136,1634732641,544830578,1851876717,1869881459,1801547040,1970479205,1629513827,1734418542,1835361650,544501349,1663070831,1768779119,1852140916,1869488244,1869881460,1718510880,1701016175,1879728416,1852142689,1734418548,1936615777,1752440948,1634738277,779711602,538970634,2032166473,1663071599,1702260335,543236217,1702260579,543450482,1802661751,1852514348,1852405615,544828519,2037146994,543649385,1629515375,1952542752,544501349,1701013868,744846190,1684955402,1701344288,1919894304,1886610802,1768189551,1394632558,1668445551,1718558821,1701344288,1919907616,1936269419,1953459744,1635148064,1650551913,1713399148,1629516399,1852799342,1869875813,1886348064,1713384569,543516018,1663067759,1735549288,1851859045,1853169764,544367972,543516788,1836213620,1718558835,1768453152,1766596723,1936614755,1948265573,1970238056,1629513831,1651863562,1818454380,1986076793,1634494817,543517794,2004116846,543912559,1987208563,1864397413,1953439858,544367976,1684104562,544828521,1701012321,1651078003,1830839660,1936613733,1752435244,2032168549,1830843759,544502645,1752459621,673215077]},{"sector":9,"length":512,"data":[1663052081,1702065505,1701344288,1919894304,1886610802,1768189551,1394632558,1668445551,1869881445,543515168,1628073843,1818845558,1701601889,1919885356,691152928,1920098592,1701277281,544175136,1919968612,543520361,1920298873,1718379891,543584032,543516788,1701733730,544500070,1948280431,1879729512,1852142689,1768693876,1936614755,1868963941,1752440946,1881174889,1769239137,1634497891,1870078066,539782002,673215087,1629497651,1851880050,539780455,1629515369,1851878688,175269230,1936617315,1702130537,1998615662,543716457,543516788,1970365810,1835364969,1937010277,543584032,1936287860,1667845152,1702063717,1869881388,1954047264,543452773,543516788,1702125936,1812624494,1852138345,1948280179,1868832879,1953721975,1835099506,1667592736,1701408873,779318382,1260527648,1769434990,2037147502,1818587680,1735289209,1701650466,544435809,544567161,1702257000,1952669962,543973749,2003791467,1734632812,1752440933,539784289,544503138,544370534,543516788,1702125936,1814066286,1852138345,539780467,1920298873,1852793632,1769563510,1948280686,1661625704,1919252079,1998611557,543912559,1629515369,1970234144,2037544046,1919885356,1970239776,1701978226,1768974691,661941861,1937055859,1718558821,1701344288,1987011360,1684370021,1919907616,1852377707,1663066400,1953396079,539785586,1819635575,1852383332,1852404326,1864394087,1864394094,1869422706,1763730802,1953391972,1634297449]}]],[[{"sector":1,"length":512,"data":[543517794,1702125936,544437358,1948282473,175399272,1853189987,544830068,1952540788,1970239776,1986095136,1701978213,1852797793,544175136,1768711522,543520357,543519329,1768710518,168439396,1716068384,1970282540,1635087218,1948284014,1919885423,544106784,1852731235,1769235301,1998614127,543716457,1769152609,1701603182,1634890784,1667330926,1852795252,175271712,1634890337,1835362158,745827941,1970239776,1852793632,746153334,544370464,1886351984,1952540513,2036473957,1869770784,1769108835,1663068014,1702260335,1668178297,1718558821,174137388,1702260579,543450482,1802661751,1851858988,1919361124,544501345,1634738273,1953391988,1667853344,1702063717,544175136,1701670771,543584032,543516788,1953653104,175334761,1701012850,1852405353,1752440935,1868767333,1701995894,1870078052,1629514610,1869116533,1769630066,1948280686,544040296,1965059956,539780467,1886351984,1952540513,1830825061,1718183023,1919879801,1852793632,544826742,1886593121,1718182757,1663066985,544829551,1948280431,1663067496,1919252079,1998611557,745239151,1701344288,1752440942,1634738277,1953391988,1667853344,1702063717,1970239754,1634887456,1763734638,1969299571,1634561908,1633905012,544828524,1702131813,1684366446,544175136,543976545,1768121714,1852139888,1864397684,1752440934,1868767333,1701995894,1870072420,1629514610,1998611566,1936421487,1935761952,1864393829,1953046638,537528878,1881162016]},{"sector":2,"length":512,"data":[1852142689,1768693876,1936614755,1936269413,1768170016,1769104243,1634625901,2037542772,1718165538,544500000,1936027492,1953459744,1668180256,1701082476,1953068832,175008104,543516788,1886348147,1718558821,1937008928,1987011360,1734439525,1881156709,1768451954,1937008994,1701344288,1702389024,1936286578,1718558821,1919885356,175335712,1684959075,1869182057,543450478,1948282479,1847616872,1697476207,1668441464,543519593,1864394351,1864394094,1869422706,1864394098,1752440934,1769087077,1937008743,1634235424,1918967924,1886587493,1718182757,1818321769,1730181484,1953390962,1965057125,1919247470,1768453152,1766596723,1936614755,538979941,544567129,544825709,544501614,1986948963,1629518181,1987011360,1684370021,1919907594,1718165611,1970239776,1701994784,1881170208,2037674593,544175136,1629515361,1851880050,1701668199,1998615662,543716457,1752440929,543453801,1953653104,1752440953,1763734625,1852377715,1701344288,1937072672,1936027241,1718558835,1936286752,1651077748,1852404853,1869815911,1635218534,539780466,1701080693,1752637554,543712105,544567161,1701536109,2036428832,1953391981,544175114,543516788,1919510644,1634738276,544830578,1702060386,1852776548,1701344288,1954047264,544501349,2032166511,544372079,1769235297,2037672310,543584032,1986948963,1852406117,1752435303,1870078053,539782002,543452769,1701080693,1752637554,543712105,543516788,1919510644,1634738276]},{"sector":3,"length":512,"data":[544830578,1851880039,539784052,1629515636,1864399214,1752440934,1634732645,1701409906,1752637555,1870078063,543452277,1701012850,543520361,543516788,1702260579,543450482,1802661751,1869768224,1870209133,1629498485,1936286752,1835627107,1952542313,175731311,1702125936,1814066286,1852138345,673211763,1763715425,1868767342,1667591790,1852795252,1953068832,1868767336,1936025968,543584032,543516788,1702260579,543450482,1802661751,1852793610,1702454646,2036473956,1970239776,1919887392,1886348064,544433513,1701077357,1869768224,1752440941,543519599,1768976227,740914021,544370464,539583016,1835627120,1818849889,1868958329,1851859058,1852383332,1852793632,1952671086,544108393,1752459639,1701868320,1768319331,1919950947,1668637807,1864397684,1868767346,1818849389,1869182049,1948283758,175399272,1953394531,544106849,543516788,1702260579,543450482,1802661751,1853169708,1936942444,1970239776,1953391904,1684370021,1953392928,1752440943,1629516897,1851880050,1701668199,170685550,1948283503,544498024,1702125936,1814066286,1852138345,1998611827,1730179937,1953390962,539780197,1869181552,1869881458,540553760,1668440397,808591464,170800944,1310728202,1768453231,1763731310,1752440942,1277195113,1852138345,1931502963,1819042152,543515168,1936617315,1702195828,1935745124,1668834592,1768191340,1864394606,1768693874,1769236845,1628071790,1763735918,1768714349,1814062181,1852138345]},{"sector":4,"length":512,"data":[1864394099,1953439858,544367976,1701209444,1936028526,544175136,1919315561,1701277289,1953391981,1634235424,1634541684,1953434233,2003985768,543519593,1629513058,1818845558,1701601889,544175136,544567161,1701080693,1885413490,1667853424,1701601889,1952542752,544501349,779575660,538970634,539898417,1394634574,1701999221,1919247470,543584032,1701344335,539456370,1701147206,778923876,538970634,1663067721,1768189551,1852795252,1918967923,1835606117,1702063984,1852776548,1970239776,1752639520,1701344357,2036473970,1970234144,1864397938,1919247474,1734418476,1835361650,544501349,1862955631,1919248500,1702062455,1752440873,1663071329,1920233071,1667851361,1752440948,1868767333,1953064046,1936617321,543584032,1936287860,1667845152,1702063717,1752440876,1679849829,1869488239,2019887732,1702065507,1970239776,1869768224,1752440941,1868767333,1953064046,1936617321,543584032,1936287860,1667845152,1702063717,1226842158,1870209126,1633886325,1953459822,1852793632,544826742,1868761697,1701995894,1870078052,1931504498,1935745135,544175136,1769234803,544826995,1970104691,1851880556,1937076069,2032171372,544372079,1768710767,1769234791,544435823,1701080693,1752440946,1275753321,1852138345,1629513075,1629512814,1864399214,1919248500,1919250464,1701734772,1864397934,1734962274,1869182049,539784046,1852139636,544432416,1868767329,1902474094,1668179317,1870209125,1634541685,1869482617]},{"sector":5,"length":512,"data":[1868767348,2036692590,544500000,1629516897,539913324,1919895072,1635280160,1701605485,1718165548,1970239776,1919377696,1948280165,1702109295,544435570,1952540788,1818390304,1952540521,1870209125,1869875829,1819239200,1952671084,1914724640,1818327407,1713404276,1713402479,1752461941,1663070821,1702260335,1735289209,1869768224,1752440941,543519599,1998614388,544042856,544567161,1986948963,1946843493,1344300392,1919381362,539782497,543516788,2037149295,2036430624,1970239776,1970234144,1931502700,1936290913,1646295398,543716463,1936681076,1702109285,544435570,543452769,1936287860,1667845130,1702063717,1970239264,1646290028,1869881445,1717924384,1852399986,1953391904,1818587753,1919295609,1663069551,1702260335,1735289209,1701344288,1869762592,1835102823,537528878,775106848,1702057248,1953068832,1752440936,1313284197,1715544149,1869768038,1852131104,1818325605,1651855392,543385964,1701013836,778400622,538970634,2004119374,1936225385,1684955508,543649385,544829025,1701344367,1919950962,1936291439,544108393,1948280431,544434536,1701013836,744846190,1970239776,1986095136,1701841509,1936289138,1852795251,544175136,1802398060,544370464,1651339107,543518313,544829025,1702260579,543450482,1802661751,1953068832,543236200,1802661751,1667853344,1702063717,1853164132,544367972,1936876918,544108393,1718558771,1701344288,1431193376,1717977376,544174693,1701733703,543973746]},{"sector":6,"length":512,"data":[1818391888,1277191017,1852138345,1763730803,544175214,1769152609,1701603182,1836016394,1701734754,1870078052,539782002,543452769,1663070068,1702260335,1752440953,1701978213,1953265011,543649385,1802661751,1411391534,1948280168,1936552549,543584032,1936287860,1667845130,1702063717,1818851104,1868767340,1852404846,1948280181,1885413487,544828528,1948282740,1881171304,544502369,1667852407,1936269416,1701344288,1987011360,1684370021,1919907616,1644833899,1948284021,1931502952,1768121712,1914727521,1769304421,1701668210,544437358,1948280431,1193305448,1092638030,1919247974,1699160175,1634887022,1968185452,1667853410,1667845152,1702063717,1702038060,1869182051,858857582,1868767276,1919247214,1735289198,1953392928,1667330661,1852795252,1919448096,1751610735,1847615776,1870099557,1998613362,543976553,1819308129,1869881465,1701344288,1836016394,1634625890,1852795252,544432416,1751348595,537528878,775172384,1986351648,1684370281,1919243808,1852795251,1718558835,1768453152,1766596723,1936614755,168439397,1750343712,1917198437,1394632037,2004117103,543519329,1853189958,1769234788,1830841967,1881176417,1768710773,1914726515,1936291429,1629512805,1865376878,1701716082,1702240375,1869181810,1864397678,1752435302,1313284197,1699160149,1634887022,1968185452,1667853410,1667845152,1702063717,1869768224,1769218157,1948280173,1769218159,539911533,1668633376,1701716072,1702240375,1869181810]},{"sector":7,"length":512,"data":[1998615406,174877801,1931502946,1818848617,1763734113,1886593134,1953067625,544175136,543516788,1936028272,544501349,1936876918,745434985,1953849888,2036428064,1718182944,544367974,1679847017,1767994469,1869881452,1684300042,1936942450,2003136032,1869770784,1835363426,1919885427,1852793632,1852990819,168439411,1631920160,1981835363,1769173605,1763733103,1768366195,544105846,1768169569,1852404851,1936291175,1735289192,1919252000,1852795251,1836412448,779248994,1716068384,1701344288,1869762570,1835102823,1701868320,1768319331,1948283749,544498024,1700995169,1767994482,1970151534,1919246957,1981834341,1769173605,1864396399,1752440934,1313284197,1699160149,1634887022,1968179820,1667853410,1667845152,1702063717,1919885856,2037276960,1952541728,1981837925,1769173605,539127407,1819308129,544433513,1763733364,2032151668,1746957679,543520353,174418036,1769238639,1864396399,1868963942,2003790956,543649385,543516788,1836213620,1851859059,1868767332,1953064046,1936617321,1953064224,544367976,1948280431,544498024,1651340654,1684370021,1919251978,1852795251,544370464,1629513327,1814067566,1919251553,1919252000,1852795251,1651863584,1752394092,1646290021,1752440953,1917198437,1394632037,2004117103,174420577,1853189958,1769234788,539913839,543574304,543516788,1735357008,544039282,1936027492,1953459744,1701868320,2036754787,1981833504,1769173605,1847619183,1700949365,1718558834]},{"sector":8,"length":512,"data":[1701344288,1431193354,1852131104,1818325605,1651855392,543385964,1701013836,744846190,1970239776,2036428064,1869112096,543519599,544829025,1936876918,544108393,1919252069,1651863584,1752394092,1644848229,1752440953,1917198437,1394632037,2004117103,543519329,1853189958,1769234788,170815087,1226842122,1752440934,1917853797,1634887535,1886593133,1718182757,544433513,1952540788,1881170208,2037935986,1851876128,1667589152,543515753,1667852407,1969627240,1701999988,1919251978,1852795251,1718558835,1701344288,1431193376,1852131104,1818325605,1651855392,543385964,1701013836,543519598,544104803,1965057378,744777075,1634235424,1919950964,662272111,1970276979,1667853410,1635021600,1701668212,1864397934,1667309670,1953523043,1701015137,543584032,1702240353,1869181810,1701847150,1851878770,1819569765,1969299577,1919903860,1936030313,1970239776,544175114,1869572195,1948280179,544498024,1936876918,544108393,544370534,543516788,1735357008,778920306,538970634,1702125900,1768693874,1936614755,1702240357,1869181810,1830843246,1730181473,543520361,544567161,1768186977,1852795252,1864395873,1768169586,1919247974,175402597,1836213616,1769173865,779316847,1866997792,1702258039,1847602290,1684086895,1769236836,1818324591,1818390304,1952540521,1936617321,1701994784,1886218528,1684370287,544108320,175730273,1752462689,1864397423,1868767346,1769109872,544499815,1684828008,1629516389]},{"sector":9,"length":512,"data":[543236211,1970496882,1864397932,1870209126,1663070837,1936682856,543649385,1713401716,1869376623,174137463,1702125932,1702240370,1869181810,168439406,892411936,1766072366,1634493299,1919249769,543584032,1920098647,2037673569,537528878,1162368032,1226851666,1330520147,1380013856,1414414674,1329995865,1213472850,1380982853,1095911247,1411394637,1213472847,1480925253,1414415700,1380274208,1414809933,1109410885,1346439769,1128877136,1162625601,1463897120,1159733294,1346716504,1213669460,1327517253,1380272212,1163086167,1096045344,541345108,1461734985,1230260562,1411401550,1126188360,1381584975,1414022985,1280264202,1397900612,1145979168,542265135,1162368079,1095770194,1162433618,1380982867,1145656911,1213472837,1380982853,1095911247,1092755533,1397301331,1230446626,1431259220,1096228948,1312903762,1326078292,1312890950,1229660249,539771982,1213483333,1159746117,1163022424,1145394003,542265120,1280331081,742671689,1129204000,1229215052,539772750,542397762,542396238,1229801804,541345108,170676052,541411412,1280331081,541345097,1381122391,1230261825,1327518533,1162682438,1095254866,1111577678,1414089801,1312890969,1229332548,1397050964,1329995859,541139026,1414676816,1280656201,1342853697,1330664021,539903315,1162368032,1414415648,541413961,1263749458,542327072,1411403604,1361069384,1229734229,1092639060,1344291918,1330008645,1312902482,1327514947,1213472838,1380982853]}],[{"sector":1,"length":512,"data":[1095911247,1397295693,1414092576,1331241032,538979925,1431259219,1411400780,1344292168,1380405074,1344294209,1163284306,1178944544,1230259013,539772246,542461785,1431524161,1411401037,1126188360,542397263,1091192399,1310739532,1397048133,1498562899,1380274976,1229146454,539772750,1095779666,1327518281,1329799250,1128616530,1313818964,537528878,775303456,1835617312,1952543849,544108393,1277191791,1768055145,2037672300,537528878,542001440,1159745358,1414415702,1280202016,542331717,1431389522,1145393737,542720544,1280331841,1111573321,1277183308,1327519553,1195450450,1145390418,542069792,1461734985,1230260562,1460291406,541871177,542723649,1498435395,1212631378,1330126932,1380271180,1380917292,1498300704,1213484832,1344295493,1498698305,1330140960,1146047776,1162430025,1312890963,1380921156,1313817376,1398359382,1162368010,1330794528,1296126535,542327072,1297237328,1163154505,1111564356,742741583,541409824,1111574860,1411401036,1331241039,1329995861,1094983762,1162297677,1226845267,1431061326,1196312900,1498300704,1313163018,1279349317,1347625004,1095320389,1226845260,1145652046,1096044101,1380917324,1313817376,1431389523,1230261829,1142967361,1195461953,1092637509,1230195026,1327515470,1327518805,1213472838,1398082117,1380917317,1095649568,1229736258,1411406164,1398087759,1213472837,1380982853,1095911247,1227366477,1431061326,1196312900,1414873632,1414483488,1296649248]},{"sector":2,"length":512,"data":[1145394249,542069792,1397968716,172379936,1096040772,542265120,1096040772,1229275680,1377847118,1162104389,541345106,1128353353,1095914819,1327514964,1330389074,1397052243,1398100768,1313423700,1109410885,1331241049,1380917333,1229476896,1342850130,1230262849,1327518533,541139026,1279869254,541413973,1411401295,1344292168,1380405074,1411403073,1347362895,1413567045,1230446661,1092634708,1327520078,1380272212,1330794528,1296126535,170666323,1313166917,541477152,1212372307,1280264224,542262596,1327518287,1380272212,1380012064,1210079572,1109414721,542000453,1230390337,541345107,1411401295,1344292168,1230197583,1229736258,1327520084,1431505478,1142966339,1195461953,170808133,824188938,1226845751,1919251566,1952805488,1869182049,1718558830,1667584800,1852795252,892412019,1684955424,775303456,538970634,1948280393,1679844712,1818456937,1701669217,1718558834,1918990112,1953390962,1851859065,1768693860,1635019117,1852795252,543584032,1650551148,1953066089,1919950969,1684633199,1628071013,1702260578,1851876128,544501614,1730176354,1852143209,1668246560,1814064225,1818322789,1717986592,544498533,1868784481,1852400754,1869881447,1701344288,1948283497,1936552549,1701972524,2003134838,543649385,1920298851,1931506548,1819042152,1886413088,1814067564,1818321775,2002873376,1634235424,1869422708,1663071347,1702063980,1629518188,1869770864,1634560376,175334772,1629515361,1819243362]},{"sector":3,"length":512,"data":[543519861,1986617719,1864397413,1818304614,1768104044,543975798,1650551148,1953066089,1852383353,1852793632,1952671086,544108393,1752459639,1701344288,1869762570,1835102823,1853169708,1936942444,1998610720,1634890337,544830574,1629516399,1836413811,1869182064,1718558830,1634298912,1768712546,1629518196,1836016483,1768841584,1629516645,1886348042,1718558841,1701344288,1869762592,1835102823,544106784,1970562418,1713401458,1629516399,1701144096,537528878,538976288,538976288,538976288,538976288,538976288,541347397,1411401295,1397576261,1145979168,1313817376,1230260548,173231695,538976266,538976288,538976288,2003781664,544175136,1819308097,1750343801,543519589,1836213588,1869881459,1970231584,1699618930,1917853815,1634887535,168457069,1716068384,1970239776,1986356256,1886350437,1847615776,1881175909,1919381362,539782497,543452769,544567161,1953390967,544500000,1646292852,1718558821,1701344288,1701996320,1936028769,1869613684,1651078003,1965057388,1948280179,1752440943,1970282597,1667853410,1752440876,1700929637,1998615667,1948285281,1667309679,1986357608,1752440933,1763734377,1869881459,1801547040,1953046629,1701996042,1869815909,1635218534,1998611826,1751345512,1702257952,1852799346,1633886309,1701978222,1953720676,1969383794,1629513076,1663067246,1735287144,1853169765,544367972,1936025716,1702109285,779316594,538970634,1679847252,1869815919,1952522284,1751343476]},{"sector":4,"length":512,"data":[1701344288,1819239968,1769434988,1847617390,1667855471,1948283749,1752440943,1919950949,1634887535,538979949,1763734601,1634934899,1953719654,544175114,1635021921,1948280931,544040296,1948282740,1931502952,1953653108,543584032,1751343461,1970238240,543515506,1701603686,544175136,1953722221,1717986592,1769235301,2037146998,1635021578,1948280180,1696621928,1970037624,1852795251,543584032,1920098679,2037673569,1851859003,1634017380,1713399907,543517801,1970235507,1746953324,543520353,1814066273,1953718629,1701344266,1868767776,1769109872,578054247,1852402720,1851859045,543236196,1852403568,544367988,1998614388,1701995880,1701344288,1819633184,1869488236,1701013876,544434464,1853189990,168439396,538976288,1701736315,1852402720,1869881445,1986619168,1752440933,1919950949,1634887535,544417645,1701667182,1684955424,1646289184,1717922162,1701079328,1718558817,1634236192,1953046644,1701798944,175976051,538976288,2037411651,1751607666,1126703220,2038112297,2104648037,1853562912,543518049,1629513327,1869116533,168459634,538976288,1936287828,1869770784,1835102823,544434464,1701147238,1718580000,1918990196,2032155237,1663071599,1914728033,1936286821,1651077748,543519861,1629516905,1865376878,1869422706,2036754788,538976266,544500000,1701080693,1752440946,1702109285,544435570,1948280431,1193305448,1193301326,1919250021,1344302177,1768710773,1766596707,1936614755,1935745125]},{"sector":5,"length":512,"data":[1651863584,1752394092,1646290021,538970745,1752440864,1917198437,1394632037,2004117103,543519329,1853189958,1769234788,539782767,1752459621,1981837925,1769173605,857763439,543584032,543516788,1701013836,744846190,175271712,538976288,544497960,1920298873,1953525536,695103337,2037276960,1952541728,1981837925,1769173605,170815087,538976266,1768444960,1919950963,1634887535,1936269421,1936286752,1651077748,1684370549,544106784,543516788,1701867368,1634235424,1953046644,1818851104,1700929644,1702065440,745305446,538976266,1953849888,1414092576,1414877000,1498300704,1380013856,1414414674,1998601049,1869116521,1696625781,544105846,543516788,1819307369,543450473,1920098679,2037673569,174485280,538976288,1129465165,1414414664,1279869505,542725193,1176531567,1162761289,1176523603,1092637263,1380012064,1430473044,542261580,1347573072,776295247,1699946528,1752440933,538970725,1313284128,1699160149,1634887022,1968185452,1667853410,1667845152,1702063717,1919903264,1919905056,1701060709,1818845556,168439411,538976288,544567129,1970235507,1746953324,543520353,1701012850,1684371049,1663066400,544829551,1948280431,1193305448,1193301326,1919250021,1344302177,1768710773,1766596707,1936614755,538970725,1818304544,543649391,1752459639,1768453152,1919950963,1634887535,538979949,1847617097,539784303,543516019,1953785916,791624304,779581303,779447911,795308655,1701013868]},{"sector":6,"length":512,"data":[1936028526,170802735,1936474378,1684086895,1852383332,1836216166,1869182049,1852776558,2003789856,544175136,1953394531,544498529,544567161,1696627042,1952671084,1768845170,1851859043,1634738276,544367984,1818845549,537528878,543574304,543516788,1735357040,544039282,1936027492,1919251488,1634625901,1852383340,1634887028,1869182051,1830825070,543517537,1864397929,1970304117,543236212,1919903859,1869482612,1701013876,1802071072,1752440933,1998615401,544105832,1931506793,1953653108,1852383347,544104736,1702129257,1952670066,543520361,1701080941,537528890,2065702944,1785688688,2104779621,1866670112,1769109872,544499815,539575080,1634040187,539000178,1819633275,1835101804,537558373,1411391520,544434536,1735357040,544039282,1701670755,1769414771,1092642932,1280267074,1279611989,1330520153,1380013856,1414414674,1713388377,1679848047,1767994469,1948283756,543518841,1869116256,662118519,538970670,1750343712,1763734377,1919295603,1931502949,2004117103,744845921,1684955424,1970239776,1701994784,1818588960,1701670755,544175136,1768187250,1769108595,1702131042,175401248,538976288,1701080693,1700995186,1767994482,1868767342,1953064046,1936617321,2037653563,1612735856,2003789939,539452192,544370534,1635018084,779316329,1750338058,2036867173,1752461168,1667855461,1663069281,1634561391,544433262,1869116256,662118519,1684955424,1752391712,1663072111,1752375335,1684829551]},{"sector":7,"length":512,"data":[1869116192,1752440951,1885413477,1886351984,1952541042,1634732645,544437362,1948280431,1193305448,1919250021,1344302177,1768710773,1766596707,1936614755,538979941,1663067727,1936881007,2032151653,544372079,1735357040,661479794,1868767347,1851878765,1829401444,1952999273,543515168,1717987684,1852142181,1713388404,1629516399,1230325536,1953392928,1634103909,539780451,544567161,1819635575,1937055844,1851859045,1650532896,544503151,578318178,537528878,1970231584,1869116192,543452277,1869835361,1952802592,1970239776,1835343986,2037345392,673215077,2032166505,1998615919,543912559,1629516641,1869770784,1835102823,695362925,544370464,1869112179,170683503,1629513321,539785582,1931505524,544106345,1663180897,1920561263,1952999273,1936286752,1767992419,577922413,1919903264,1701344288,1869770784,1835102823,1718165548,1667591712,1634956133,170817906,544370502,1701998445,1718511904,1634562671,1852795252,544108320,1936287860,1851858988,1869095012,1869881463,1886413088,1629518188,1713398894,1869376623,1752440951,1313284197,1346838613,1931488332,1007314277,1886680168,1999580986,1731098487,1865315694,1815046002,1852138345,796091763,168439358,1750343712,1313284197,1699160149,1634887022,1968185452,1667853410,1667845152,1702063717,1701798944,1869488243,1701847156,1953066354,1668180256,1869640303,1769234802,2032166766,544372079,1735357040,174940530,1869901417,1869770784,1701409392]},{"sector":8,"length":512,"pattern":0,"data":[2037539188,1869770784,1835102823,538979955,2032166473,544372079,1735357040,544039282,1629516649,1651864352,1953853298,543518313,1919052140,746156641,1970239776,2036428042,1852793632,1701079411,1953046642,1919905056,1937055845,1819633253,544175136,1836213616,1814066281,1768648297,1881171822,1919971186,1635018089,1629518194,1768714352,1769234787,544435823,1752459639,1701344266,1651076128,2037539186,1226842158,1752440934,1763734377,1752637555,2032170081,1998615919,544501345,1679847284,1965042799,1948280179,1193305448,1277187406,1702064997,1699160178,1634887022,1968179820,1667853410,1667845152,1702063717,1936615712,1684104564,543584032,1936287860,1667845152,1702063717,1109401646,1713402997,1953722985,1819287596,1702060389,1634038304,1748765284,980448372,2004299567,1852255863,1919889013,1752182631,1936682089,2036887663,2036889391,1953459757,1885826093,1952984684,775842925,10]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"data":[1751344448,1718558831,1762266470,623779942,775765297,544630116,1869901671,1986356256,1718159885,824520224,1697529149,1634890872,1953457952,2019893359,224490100,543582474,1026630958,1768697405,1730177902,544175215,1802398060,168626701,1869112165,1769292320,1852400748,1162092647,776426818,223170371,1635215882,757099891,1869377390,757100391,544106850,540301101,1346323501,540032333,544163373,1430406468,1329802823,1701060685,778532194,225276769,1751344394,1967267951,1768189033,1142974318,1196769861,1329802840,1779043661,1836278135,1869491488,1869049708,1768041760,1462575214,1143808052,1028476991,1177362481,1162092655,1481069890,1297040174,1650811936,1630431093,168652147,1869901671,1684956448,168626701,1954047290,168649074,1869112165,1769292320,1852400748,1162092647,1481069890,1329802820,539828301,1969382756,1702240359,1869181810,1718558830,1650811936,225994613,1635215882,757099891,1869377390,757100391,544106850,540301101,1346323501,540097869,544163373,1430406468,776230983,541937475,1094927405,1229472596,825250894,757084221,1413563204,1313425475,1026764884,1701060656,778532194,225276769,1695157514,544172131,1818850626,1735289188,1111835680,1163413333,1297040174,1746939168,1936420719,1953392928,1970434661,544437360,539768368,1629504304,807429230,1852383300,1634038304,1869426028,168650084,1935767402,1848451181,1735355503,1647124591,757100137,757085271]},{"sector":2,"length":512,"data":[1297104708,757084477,1142976326,1196769861,1127105880,757091663,1413563204,1313425475,1026961492,1143808049,1129595203,1414416712,826098480,1128541472,1212372033,810831433,540097860,1969382756,1935748711,218762605,1751344394,1967267951,1768189033,1142974318,1196769861,1127106136,757091663,1297105952,1818435657,1953391977,1851876128,544501614,1768189805,1763735910,1919251566,1953527154,825237619,858791980,1144004652,1684955424,222638112,1635215882,757099891,1869377390,757100391,544106850,540301101,1346323501,540097869,544163373,1430406468,776362055,541937475,1094927405,1229472596,825447502,1679831357,1735746149,1836278062,168626701,1986356282,1667566093,1109421928,1684826485,543649385,1430406468,1498623559,539828307,1769366884,1679844707,1702259058,1702240370,1869181810,1718558830,1650811936,168650613,1935767402,1848451181,1735355503,1647124591,757100137,757085271,1297104708,757084221,1142976326,1196769861,1398362926,1145318688,1163282770,540097874,1094927405,1229472596,909136974,1679831357,1735746149,1836278062,1869023757,1696624500,168649838,1815742989,225144425,1751344394,1967267951,1768189033,1142974318,1196769861,1297040174,2003438093,1684894561,1869491488,1869049708,878128416,1061432608,809323856,1866870048,1111835680,1328432981,1679837762,1735746149,1836278062,1768688141,790653806,1869377390,790654823,2037279092,1650811936,221996917,1751344394]},{"sector":3,"length":512,"pattern":0,"data":[1967267951,1768189033,1142974318,1196769861,1329802840,1779043661,1836278135,1848451172,1735355503,1462575215,1143808052,1028476991,1177362481,1162092655,1481069890,1245859630,1650811936,1630431093,168652147,1802398060,1869492000,1869049708,1769221920,1679849838,1735746149,168639352,543974756,1969382756,1865296487,168651362,1869901671,1684956448,168626701,544040306,1646292820,1684826485,1953068832,1095573608,221924691,1835364874,543976736,542392623,1819242031,544171887,540235567,1346323503,540032333,543508015,1430406468,1329802823,1701060685,778532194,225276769,1835364874,543976736,542392623,1819242031,544171887,540235567,1346323503,540097869,543508015,1430406468,1127110727,1679838543,1735746149,1836278062,1701972493,1701060717,1701060716,711423330,1784835886,1698302477,168649838]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[1751344448,1718558831,1913261414,1109421413,1684826485,1802313843,1818386804,1697543013,539911544,1852141647,1952536352,661483363,541270131,1886220131,1919249513,544434464,1684370293,1913261358,1411411301,544434536,1885697139,544434464,2037149295,1902473760,1701996917,1718165604,1701736224,543584032,543516788,1819045734,1852405615,1768300647,544433516,1701995895,1685024032,1701406313,168639076,544040306,1763715377,1920234350,1952805678,1701972493,691150957,1936615712,1798206068,168655205,544040306,1763715379,1920234350,1685221166,1701972493,691282029,1953197344,1701601889,224603763,1818457866,2020551968,540224800,1635019629,1936026722,168649518,544040306,1646292820,1684826485,1953068832,1766662248,1936683619,544499311,1868767299,1818849389,1965060709,1948280179,1713399144,1869376623,1735289207,1852402720,168639077,544040306,790654051,790657103,1830826839,1650553963,779314540,658787]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"data":[168634927,1411394080,544434536,1735357040,544039282,1684104562,1852383347,1701344288,1918989856,1937076073,1952539680,1768300641,745760108,1919250464,1836216166,1869815923,1663067501,1801676136,168635507,1629497888,1730176110,1919250021,1936028769,1701344288,1650553888,544433516,1684366702,1713398885,1629516399,1835365235,544828514,543452769,1634953572,1835365235,779709538,706742797,706742797,1701336096,1886284064,1713402997,1936026729,1701994784,537529658,1762199850,1920234350,1952805678,1936607497,1668641396,1852795252,1952805664,706742797,1852377353,779252851,158950763,1851880020,1952541811,544108393,1836020326,1634231072,1952670066,1797288549,544438629,1864396660,1634887024,1814062190,544502633,1701869940,537529715,1762199850,1920234350,1685221166,1685212937,1852404325,1701978215,1769234796,544435823,1696624500,1919903342,1864394083,1752440942,1886330981,1851880037,168653668,168634912,1411394080,1864394088,1970304117,1635000436,1936026722,1701994784,1769109280,1852142708,544175136,1430406468,1279415367,1129204014,1752637484,543712105,1763734377,1970037614,543450468,168655202,1142958624,1196769861,1297301806,537529646,168636202,1763904013,1970037614,1008756068,1818522739,1747870313,587861310,1818455657,543515765,1685353276,1747873641,587861310,1818455657,543515765,1685353276,778531425,168640104,1668180259,1701082476,1953709088,1735289202,222193710]},{"sector":8,"length":512,"data":[1852384010,1685417059,1664884837,1701869940,222193710,587861258,1768318308,1293968750,1331648577,1498701644,156452176,221394953,1701061386,1701734758,1480674592,1331646047,156451922,808651017,1680017933,1852401253,1229725797,1162626382,151593038,824188960,168636979,1717920803,543518313,1599619405,1598903105,541213012,840966153,221787184,1701061386,1701734758,1480674592,1380863327,156451653,538976265,221261876,1701061386,1701734758,1480674592,1447121759,1298089029,1397572942,808519968,1680017933,1852401253,1095573605,1280532312,1598575425,1381256773,156452169,168636466,1717920803,543518313,1599619405,1213415752,1414415711,1397049682,221589769,1701061386,1701734758,1480674592,1096045407,1313169234,1162433108,892406099,1680017933,1852401253,1095573605,1330405208,1096043331,1313169218,1162433108,808788051,1680017933,1852401253,1095573605,1195466584,1347768146,1414415711,1397049682,221524233,1701061386,1701734758,1213418784,156517961,822675721,707731506,1836412448,544367970,1646290543,544437353,1869374818,1634541687,1852401763,2037653605,706766192,587861295,1768318308,1394632046,1297371727,151587150,538980361,1931487791,544502383,1835363949,1667853935,791289971,168626701,1701869940,543581540,1918986339,1869562377,1851876716,587861307,1768318308,1411409262,157644146,587861297,1768318308,1176528238,1702063201,168636425,1680017933,1852401253,1431183461]},{"sector":9,"length":512,"data":[1380270669,153712680,2053731112,677801829,790636920,2053731104,677801829,690583594,168626701,1918986339,1852402720,1229740901,1162626382,221994318,1852793610,1663071347,544366952,1818846762,1835101797,168639333,544501353,1701734764,221998958,1762266378,1847620718,2036689759,540876915,168639280,1970435187,1797289059,1635023205,226173026,1852377354,1701519476,168639353,1953392905,1818326560,221996405,1852377354,1769414772,996701284,998050317,168626701,544501353,1819238254,1887007839,1025536869,221982752,1920234250,544498549,1954112875,1864393313,2036689772,1952672100,1480674651,1598836575,1162893652,221994323,1634231050,1865031794,1835101804,1297838949,1331648577,1498701644,1565738320,790634555,1868767274,1767994478,544433518,1701734764,1718558835,1397639456,1261326932,706763077,1762266415,1864397934,1717989228,1534354803,1599619405,1415531599,1397051481,168639325,1852377613,1601052788,1935962735,807419168,1930038587,1668641396,1701519476,1650553977,1701521952,1685221241,1095588657,1598971736,1396986447,168639325,1970435187,1797289059,1635023205,1797922914,1919908197,1297822308,1314871361,1146244959,221994323,1869562378,1851876716,1685221152,1818324339,1095588716,1280270168,1348031583,995971909,168626701,168634927,1159735840,1952544113,1713402725,1948283503,1629513064,1835365235,1919249506,1650553888,221144428,539631626,1936025684,1752375397,1684829551]}],[{"sector":1,"length":512,"data":[543515168,543516788,1701667187,544432416,1679847017,1735746149,1836278062,537529646,168636202,1680017933,1852401253,1396777061,1313169229,805904452,224814712,1701061386,1701734758,1297301792,155337823,1719152649,587861349,1768318308,1092642158,1147096403,805898583,224683640,1701061386,1701734758,1297301792,155468895,1719152649,587861347,1768318308,1092642158,1331645779,153110354,1650882608,1680017933,1852401253,1396777061,1096245069,805917769,224487032,1701061386,1701734758,1297301792,842220639,2016413984,168638822,1717920803,543518313,1598903105,540422468,1719152649,587861304,1768318308,1092642158,1096764755,153114689,929462320,1680017933,1852401253,1396777061,1163091789,805904455,221668984,1701061386,1701734758,1297301792,1129270367,1346720331,1719152672,587861301,1768318308,1092642158,1281314131,1095451471,155536450,879130672,1680017933,1852401253,1396777061,1095589709,154552387,862353456,1680017933,1852401253,1396777061,1095589709,154159171,1684371504,168626701,544501353,1935761262,1635016557,540876898,168639280,1769172597,1684368999,1634231072,1935745138,1650553965,1480674651,1297301855,1111577695,168639325,1953696269,1952675186,1919839520,2065720165,1929972237,1668641396,1852645492,543384946,2019913258,168639348,1634231049,1932140658,1852404340,168639335,1953392905,1852140576,151653691,544501353,1936090735,222000229,1852377354,1935745140]},{"sector":2,"length":512,"data":[1717989229,997483891,539635488,1936090735,1763734629,1935745134,1650553965,221194784,222002442,1762266378,1847620718,1834970485,1667592814,168639347,1970435187,1830843491,1667592814,1819176224,1534358377,1599619405,1163021901,995971907,1953696269,1952675186,1919839520,706765669,1701342829,221996129,1762266378,1847620718,1986098015,1834968165,1936549230,807419168,1762266427,1931506798,1684371041,1701735775,1095588717,1095982936,1598309718,1296387661,221994323,1762266378,1847620718,1634497375,1700751475,1769108590,221999973,1953392906,1634497312,1635018867,1702059874,1095588721,1280532312,1598575425,1381256773,1565738313,1762266427,1931506798,1752392044,1600282996,1297837677,1398757441,1213415756,1414415711,1397049682,168639325,1852377613,1601052788,1752392040,1953391967,1936025970,1762266427,1746957422,1953002337,1935630945,1297838437,1214208065,1598575425,1381256773,1565738313,1762266427,1746957422,1953002337,1834967649,1095588718,1095262040,1163872339,1230132302,995971909,168626701,544501353,1953718126,1700754017,1769108590,221999973,1953392906,1635021600,1650553970,1902474079,1480674651,1096045407,1313169234,1162433108,221994323,1953392906,1635021600,1650553970,1533963615,1599619405,1380013139,1414415711,1397049682,168639325,1852377613,1601052788,1801678700,996303220,1852377613,1869357172,1635019619,1095588706,1330405208,1096043331,1313169218,1162433108,221994323]},{"sector":3,"length":512,"data":[1762266378,1847620718,1919377759,1936749935,1762266427,1629516910,1970238055,1533632368,1599619405,1330792257,1163874389,1230132302,995971909,1852377613,1734418548,1886744434,1718511967,1480674651,1380401503,1599100239,1381256773,1565738313,218762555,1768912394,1634082916,1663593577,1953721967,1634231072,1831477362,1634956133,539780455,690892334,226167309,1635125514,1936288863,1918967924,221999975,151653642,1935630710,1953653108,1735549224,1830825075,1634956133,992568679,1980303885,1769107558,677803118,1701082227,539783794,1936942445,744843105,1735549216,221981043,1635125514,1684956511,1735549224,221981043,1970276618,656958324,740781660,1685353248,695366245,151653691,1953069157,992555304,226298381,1175063818,541412425,1886330922,1701998181,1663591521,1953721967,1634231072,1881809010,694711393,226167309,1229326602,706757964,168639334,1711868429,1713388832,1852141679,1952542760,572533864,992551538,1762200077,1713905766,540884256,1280070990,226172969,1879640330,1869771365,1634740338,992569460,151587341,1953069157,992555304,2097744397,1711868429,1852140649,543518049,1634738237,221997172,1768687882,1869505902,807419168,151653691,1970562418,1713401458,2097810747,168626701,1684631414,1852402720,1718578789,678193505,1936617315,1751326836,706769505,1936942445,744843105,774778400,2064256297,1980303885,1768709985,1629516915,997418866,168626701,1919968777]},{"sector":4,"length":512,"data":[1718906473,1685353256,745697893,1766597152,622880110,1718558820,1931829280,538982951,1814047778,1852141161,1713384559,1852140649,694512993,151653691,1935630710,1953653108,1735549224,1830825075,1634956133,992568679,1980303885,1769107558,677803118,1701082227,539783794,1936942445,744843105,1735549216,221981043,1635125514,1684956511,1735549224,221981043,1970276618,656958324,740781660,1685353248,695366245,151653691,1953069157,992555304,226298381,1980370186,543451503,1836589098,1869376609,1853171811,1852270963,1763730533,1814066286,539782757,1936617315,1751326836,706769505,695822455,226167309,1870006538,706765929,544371824,1634541629,1668246636,1852140584,168639273,1762200077,1881677926,1025536628,1431183421,539577420,1818845542,1631789608,1953459822,1819042080,1952539503,1965367397,1954112032,1713402725,622883439,539763315,745432428,2036889376,168639273,1952805385,544109173,997356656,226298381,1107954954,1701605231,1730178657,1768715365,1177052526,541412425,694576682,226167309,1852377354,997073012,168626701,1919903241,993732640,226172969,1762199818,1713905766,1937007975,1852402728,1277176933,1279610441,539774533,539584102,1310735677,692866133,1952805408,544109173,1936482630,168639333,724240649,1701734764,221998958,1762199818,1814569062,1533374057,1025531184,589766717,1663052071,1769238127,996504942,151587341,540876910,1819440243,1814589029]},{"sector":5,"length":512,"data":[694513257,824192288,151653691,543582473,1008758312,2082484256,1768693884,1851483502,1025581149,1851533088,168634663,1812531465,1852141161,1767990895,1948395628,1814065007,778530415,221980962,1762199818,1848123494,807419424,539371040,1701734764,825060955,1027416157,1918641952,757082407,221998637,1762199818,1848123494,540884256,1663052080,1769238127,996504942,151587341,1701734764,542994011,1546068029,221980464,1913194762,1920300133,1918115950,221996405,226298122,168656138,1852377613,1701257332,2036689780,1634231080,707403890,220819568,168655626,1953392905,2036689696,151653691,1918986339,544221728,1881808957,168639344,1762200077,707272806,1027416176,656418592,545029152,1025536042,1546068029,2082482036,1881809020,540884256,539441959,706772092,1027416176,811345696,168634663,1768687881,1869505902,1818845542,1701519912,2019893369,1952671088,690119781,151653691,544826731,1881808957,221981483,1718159626,1881810976,540877088,539435047,706749990,1025581168,1952196384,640032807,544221728,656424225,639641403,1881808934,540877088,657480743,226172969,1795754250,1025538405,1701521440,1010573433,539572256,1881809020,221981483,1762199818,707272806,1025581168,656418592,539371040,555773994,1546068029,639641460,1881808934,540877088,539441959,706749990,1025581168,811345696,168634663,1812531465,1852141161,1767990895,1797400684,1948285285,1814065007]},{"sector":6,"length":512,"data":[577203823,168639273,168656137,1886398985,1881160992,151653691,1970562418,1797287538,222001509,168656138,707725837,706742797,1918979337,1752440939,1768366181,544105846,544826731,1852403568,544367988,1931506529,1819042157,1935745068,1818588960,1935745132,2037276960,1852401780,1836261479,1701604449,1752440946,168652385,1762208288,1630019700,1919902563,1735289188,544175136,1953721961,1919889010,221129060,791289866,168626701,1684631414,1918987552,1634562923,1932029036,1668641396,1701519476,1650553977,1886071328,2064256297,1762200077,1763734638,218762555,1919879434,1634562916,1801153644,539828336,1701538927,1667851385,1025531252,1970426912,168639333,1919903241,543762464,993009725,1008757024,1868525088,997418098,1764436768,151653673,543582473,2036689704,845443695,542992731,1797274941,168634736,1829308681,1936421473,1819042157,2036689704,828666479,693987675,2097810747,168626701,168634927,1092626976,1629512804,1954112032,1869881445,1701344288,1936941344,1818389861,1948283493,1701601889,1935747104,1650553965,168635945,1411394080,1713399144,1634562671,1718558836,1768453152,1635000435,543517794,1679848297,1919120229,1684365929,544106784,1869357153,1663068014,1701670255,1763734638,1701060718,778532194,745370465,706742797,1836020512,1701345125,1998611826,1768453225,1752440942,1768759397,1630366062,1835365235,1919249506,537529646,168636202,1870006797,1629512809]},{"sector":7,"length":512,"data":[1952408676,1935761263,1650553965,1936618792,1701734249,1751326820,1646293601,694514809,226167309,1718159626,1601054752,1601008481,543318388,1293958462,1096767553,1415531859,220807745,1812531466,1852141161,1767990895,1092757612,1835365235,1919249506,1650553888,1864394092,1718773110,779579244,221980962,1935739146,1650553965,1633644123,1952410995,724263521,540876893,1702132066,2097810747,168626701,1769172597,1684368999,1634231072,1701257330,1667329396,1701734760,1634231080,707403890,539783280,1819242306,544104805,1601399140,1734437990,2064256297,1661536781,544366952,1025536042,1886399008,151653691,1769172597,1684368999,1634231072,1635131506,996504940,168626701,543582473,544221736,656424225,539567931,1970562418,807431794,151653691,997206827,1762200077,707272806,540811376,539439143,706772092,540942448,690435623,151587341,1701734764,1634103150,573074537,543449442,1751343469,543518313,1701869940,221980962,1635125514,543520108,1965563965,1734964078,543450478,1918986339,1881810985,757082923,657467168,168639273,543582473,1768169768,1818648435,220817249,1627982090,1952408676,1935761263,1650553965,1853171752,1852270963,1663067237,695361896,1297301800,1128353119,723529800,1818326560,690578805,151653691,544239658,997204029,1913195021,1920300133,1635131502,996504940,226298381,1930038538,1668641396,1701519476,1650553977,1814047264,1969975151,2036689776]},{"sector":8,"length":512,"data":[1953392936,2036689696,2064256297,1929972237,1668641396,1701519476,1650553977,1886071328,218762555,1868957962,1797791858,540876912,1701538927,1667851385,1797274484,540811376,1701538927,1667851385,539697268,1112364366,1864913477,2036689772,1952672100,723532585,695233323,151587341,673212009,544826731,1797274941,1799236976,539588965,1970562418,1797287538,168639344,1852402697,1718578789,678193505,1851876130,1713402919,543452777,544826731,740448293,2036689696,168639273,1952805385,544109173,1280070990,2097810747,168626701,1918986339,1931487776,2003855723,1702127976,1634231080,1881809010,2064256297,1997081101,1701603688,1881810976,540884256,539435047,706772092,1027416176,1952196384,723527975,221999147,1701972234,1852994932,221999136,168656138,707725837,706742797,1952531465,1851859041,1702043748,544241012,1718973555,1868963942,1752440946,1768169573,1936941427,1818389861,1881174629,1701015410,1852404595,168636007,221194784,789187850,1631848746,1864393076,1868767342,1668248176,1869837157,1919361138,1936749935,221194784,1963592970,1734964078,543450478,544501353,1919381606,1953527151,1566270049,2065710368,962885680,539768933,962885680,539766886,962885680,998062182,168626701,1717920803,543518313,1330792270,542330965,168638729,1680017933,1852401253,1380393061,676353359,671689065,540423474,540549163,673718314,757082473,690565408,1680017933,1852401253]},{"sector":9,"length":512,"data":[1329799269,1764250192,671686697,540423474,540549163,1196302378,1347768146,539697235,706754097,694757408,587861289,1768318308,1176528238,1330792272,1764249685,841484585,723531317,706754592,1380404768,1397773647,824191776,539631670,539697208,539631672,690579752,1680017933,1852401253,1347625061,1163088449,1396785759,841490501,723531317,706754592,1380404768,1397773647,824191776,539631670,539697208,539631672,1112364366,1713918533,1869768560,1635020917,220801378,789187850,1680023594,1852401253,1347362917,1162628169,541868359,791289904,1680017933,1852401253,1347362917,1112495956,155538521,587861298,1768318308,1327523182,1330792272,153112661,587861300,1768318308,1327523182,1347371856,906561874,1680017933,1852401253,1347362917,1380405318,156259663,587861304,1768318308,1327523182,1163022416,156780870,168636465,1717920803,543518313,1230196815,1162629197,221393161,1701061386,1701734758,1414549280,1397051481,842074400,539635465,1948282991,1936027769,1635021600,1746957426,543519333,1668180264,1701082476,1769152627,1701605485,1936748320,791289897,168626701,1717920803,543518313,1397051984,151603013,707725617,1701344288,1931502963,1819635560,1700929636,1701344288,1835103008,1935745125,544106784,1969382756,1935748711,791289965,1680017933,1852401253,1380982885,1346720325,221382921,1701061386,1701734758,1163022368,1515210066,221514016,1701061386,1701734758]}]],[[{"sector":1,"length":512,"data":[1163022368,1262702412,221776160,1701061386,1701734758,1163022368,155464243,829960201,587861296,1768318308,1344300398,842220882,805898561,221262456,789187850,537529642,1866860842,1886593138,1702064737,1713404268,1701604457,1634738276,544437362,1948280431,1864394088,1685021552,1634541669,1998597232,1634213989,1663067510,1953396079,1634759269,225670258,153755658,1948282740,1629513064,1702260578,1752637484,543712105,543519329,1886220131,1936942450,1763730533,543236206,1886218611,1998611820,221149537,791289866,168626701,1393109551,1936875888,1868767333,1668248176,1869837157,1919361138,1936749935,221194784,1963592970,1734964078,543450478,544501353,1717530739,1869768560,1635020917,542989154,813375549,1681482872,807414832,1698260088,807414832,1700881528,807414840,1700947064,807414832,1684366456,807414840,1701209208,222002480,587861258,1768318308,1310745966,1330792275,542330965,218762549,1701061386,1701734758,1380406048,676353359,671689065,1380012115,1113539923,541414209,892477483,539697206,539631672,694757416,824192288,168634665,1717920803,543518313,1196443219,1347768146,539584808,1095783208,1598378834,1163084098,840968992,723531317,706754592,1196641824,1347768146,539697235,539631672,690579752,1680017933,1852401253,1330520165,151606096,1095783208,1598378834,1163084098,840968992,723531317,706754592,1196641824,1347768146,539697235,539631672]},{"sector":2,"length":512,"data":[1112364366,1932022341,1885757296,1970238055,1650553968,168634665,1852377613,1886330996,1701869940,1347374683,221994323,1953392906,1768976160,1534027374,1397772110,168639325,1769172597,1684368999,1634231072,1886330994,1751343469,1347374683,221994323,789187850,537529642,1699225642,1629513074,1948280178,1948280168,1701601889,1868963955,1752440946,1634541669,1881173609,1701015410,1919906675,1869768480,779317365,706742797,218762543,1920234250,544498549,151653755,544501353,997287283,539635465,1970365811,1701015141,1836412448,544367970,1948280431,1730176360,1886744434,221194784,1852377354,1852383348,154890086,1998596655,1751345512,1869768480,1847619701,1700949365,1953046642,544434464,168636202,1919361149,1953527151,1566270049,226172989,813369610,741357688,1330792224,824725589,153910569,1226844719,1818588270,1869768480,824209525,221194784,813369610,741423224,1330792224,824725589,221019433,813369610,741488760,1330792224,824725589,221019433,813369610,741554296,1330792224,841502805,221019433,813369610,741368952,1330792224,858280021,153910569,1226844719,1818588270,1869768480,840986741,221194784,813369610,741434488,1330792224,858280021,221019433,813369610,741500024,1330792224,875057237,221019433,813369610,741565560,1330792224,875057237,221019433,813369610,741368696,1330792224,891834453,153910569,1226844719,1818588270,1869768480,840986741]},{"sector":3,"length":512,"data":[791289953,2064189965,828602416,1380393004,676353359,746400053,2064189965,912685104,1380393004,676353359,746400054,539635465,1702129225,1919361132,544241007,791289907,2064189965,929462320,1380393004,676353359,746400054,2064189965,1717991472,1380393004,676353359,746400055,539635465,1702129225,1919361132,544241007,791289909,2064189965,1380012115,1113539923,541414209,2016419883,539766832,1431261767,691546192,790637693,1850286122,543974772,1970238055,540418160,168636202,1347648265,1163088449,1396785759,539697221,825260080,1380393004,676353359,159197497,1226844719,1818588270,1869768480,924872821,221194784,222002442,789187850,1680023594,1852401253,1196302437,1347768146,540614739,1768453160,1635197043,1868832883,1629513070,1702260578,791289897,168626701,1970435187,2065724515,539635465,1918988403,1730176371,1886744434,791289971,1762200077,1931506798,154890597,1931487791,1702195557,543515502,1651340654,1864397413,1752440934,1919361125,544241007,168636202,1953392905,1718511904,789134191,1752637482,543712105,1970238055,1970151536,1919246957,544500000,706769769,2097810735,1601205024,1970238055,1650553968,1025531227,168655648,2016443145,539780454,1330792275,824725589,153910569,539635465,1702129225,1919361132,544241007,791289908,2064189965,1380012115,1113539923,725963585,1633843248,1196630060,1347768146,2099851816,707725612,1953384736,1730178149]},{"sector":4,"length":512,"data":[1886744434,706754592,151653679,1095783291,1598378834,1163084098,1668821035,1394617399,1431261767,691218512,789130365,1850286122,543974772,1970238055,540614768,168636202,2016443145,539780664,1330792275,875057237,153910569,539635465,544501582,1226862177,1818588270,1869768480,706769013,151653679,1668821115,1394617398,1431261767,691349584,151596157,1226844719,1818588270,1869768480,824209525,791289905,2064189965,929265712,1196630060,1347768146,2099852584,998050317,168626701,589310511,1768318308,1310745966,1330792275,542330965,1948786741,544434536,544432503,1701736292,1868718368,539583862,168636202,707725837,706742797,1701987081,1936028769,544104736,1920233061,1852383353,1701344288,1936286752,1702064993,1701601901,1869357170,1886743407,1650553888,168650092,221194784,1980370186,543451503,1702129253,1650553970,1764255084,1763734638,1852383276,2037653620,539780464,544501353,1868983913,2064256297,1762200077,1864900710,1887007856,1567185765,540877088,168634672,1768687881,1869505902,1818845542,1967399464,1667853424,543519841,1868983913,1952542066,544108393,544370534,1701080681,1680154744,1763716130,168639273,1953525513,1533374585,1025531241,1887007776,168639333,1768976137,1534027374,1025531241,1718511904,168639343,218762621,220868362,153755658,544499015,1701322849,2037260408,1701601890,1869768224,1752440941,1852383333,544503152,1701734764,544370464]},{"sector":5,"length":512,"data":[1818845542,537529646,168636202,1852377613,1701257332,1652125300,677735522,1918986339,220816160,168655626,543582473,1042309928,807870525,640032807,1008755488,958865469,1914710311,1920300133,543367278,807870509,168639271,543582473,1042309928,1629954109,640032807,1008755488,1713840189,1914710311,1920300133,543367278,1629954093,539697191,221982769,1768687882,1869505902,1818845542,1699226152,1768169592,544500071,1701869669,1684370531,1936615712,1684104564,543584032,660809056,1663052834,168639273,1952805385,544109173,221983021,168656138,707725837,706742797,1952794377,1746952480,1646295141,543519865,1836020326,1701344288,1886284064,1814066293,543518313,543452769,1633972341,1948280180,1881171304,1953393007,1629516389,1919902563,1735289188,221149548,791289866,168626701,544501353,1651795303,677737593,1918986339,1881811488,168634736,151653755,1918986339,544221728,1881808957,168639344,1953392905,1936613664,997352823,168626701,1936613641,544367991,1701257277,1652125300,677735522,724267050,168639273,1936613641,544367991,1630019645,1702327150,1010573426,539571232,1701257340,1652125300,677735522,724267050,168639273,1886398985,1881160992,151653691,1970562418,1629515378,1702327150,168639346,218762621,220868362,153755658,544499015,794828897,1679828850,1919120229,1869901929,1919295602,1948282223,1763730792,1953853550,1852402720,1851859045,1886724196]},{"sector":6,"length":512,"data":[1702125924,1701344288,1768910880,1919251566,706742797,1667457289,1768190575,2037147502,537529646,168636202,1852377613,1701257332,1634497396,1663592563,544366952,1886399018,2064256297,1661536781,544366952,1025536042,1886399008,151653691,544501353,2004053601,221999717,151653642,673212009,555773994,791093309,1814047015,1852141161,1767990895,1612851308,1696605999,1667592312,577004916,168639273,1881877257,151653691,673212009,1008758826,657467168,545029152,1042313258,657925920,1768693801,1869505902,1818845542,1666130472,543973748,1768384868,2019893364,1952671088,690119781,151653691,2004053601,1025536613,544221728,807870509,168639271,1881877257,151653691,544239658,997204029,1913195021,1920300133,1851859054,1919252339,2097810747,168626701,544501353,1702129253,678325618,1918986339,1953704480,1663052914,544366952,1920234282,1684956511,2064256297,1661536781,544366952,221999146,151653642,673212009,1601009006,1701998189,1042314083,1095573565,1313693528,1396917586,151653673,1852402697,1718578789,678193505,1869567010,1851878688,1852645497,1852796261,577987433,168639273,1762200077,707272806,544371827,656424253,539567915,151653755,543582473,1935633960,1684371041,1701735775,1042314093,1095573565,1095982936,1598309718,1296387661,168634707,1812531465,1852141161,1767990895,1411524716,1830842223,544829025,1835363949,1667853935,1869881459,1986097952,992551525]},{"sector":7,"length":512,"data":[151587341,1702257011,1852661604,1851485541,1986098015,1834968165,1936549230,542976811,1970151485,1852661613,1935893874,151653691,1932208905,221999732,226298122,151653642,540876912,1818324344,677605228,1601336435,543452773,1953701933,539697266,572533809,1835363949,1667853935,1835101728,992551525,1829308941,1936288878,1970166644,1852661613,1935893874,1953705565,1735289202,1881160992,151653691,1768713837,1851487347,1834970485,1667592814,1814977907,1025535589,1920234272,1684956511,1931488544,221999732,1752631562,543517801,1920234280,1931492384,1700754036,539583598,1881809019,1025518379,1751328800,1948873313,1886418287,707293797,695366771,1953701947,992684914,168656160,544221705,993009725,1829308941,1936288878,1970166644,1852661613,1935893874,1935748701,1717989229,544499059,1601052733,1601008481,996303220,1913195021,1920300133,1970151534,1852661613,1935893874,221981483,168656138,707725837,706742797,1919241481,1931502951,544502383,543516788,1768189545,1702125923,1634869348,543516526,1830839919,1869440366,543385966,1868785010,779314290,706742797,587861295,1394632297,1297371727,1930038606,1668641396,1852645492,543384946,1852645418,1919906655,1953704052,1952675186,1919839520,706765669,1918989427,1763716212,1814066286,220819045,168655626,1920234249,544498549,1701998189,1881808995,706751537,539767408,1936613674,997352823,1929972237,1668641396,1852645492]},{"sector":8,"length":512,"data":[543384946,1701325354,1886413921,151653691,544501353,168639337,1762200077,1814052128,790654565,221983264,1718159626,543762464,807419197,151653673,1952805385,544109173,1918989427,168639348,1879640589,540876849,1935634029,678720111,1918989427,1763716212,168639273,540176393,1852645437,1919906655,1953704052,544502369,745087019,1852140576,1763716384,168639273,1634035721,544239716,1629888573,1702327150,168639346,1919903241,993732640,226172969,1762199818,1932009574,1835233908,829433968,1953709613,1735289202,846209068,1953709613,1735289202,540811305,2065705264,151587341,1701325321,1886413921,1881160992,168639281,1745422601,1885626725,540876912,758214694,2019913278,168639348,1879640329,540876849,1634035754,997224548,151587341,543582473,540110888,1310735677,692866133,168655648,151587081,1634035754,544239716,846209085,151653691,1644759305,1801545074,151653691,226298121,2097744138,1936483616,226173029,151587082,1634035754,544239716,846209085,151653691,1701316873,1886413921,639647008,1043149424,1954047342,151653691,846203145,706755872,1684104552,221999216,151587082,673212009,1025520240,1431183421,539577420,151653755,705235209,1684104552,1025536112,993095712,151587341,1919027465,996893029,151587341,168656137,226298121,226298122,1701972234,1852994932,1936613664,997352823,226298381,1852121866,224815460,789187850,537529642,1750337834]},{"sector":9,"length":512,"data":[1914729321,1935958373,1701344288,1767992608,1768300654,539780460,1936615714,1932423796,774009957,706742797,218762543,1768912394,1701978212,1767859297,1229334643,706757964,220803430,168655626,1953392905,221997344,151653642,1702129253,1650553970,807953772,744894584,1414549280,1497517911,539772244,1380012115,1113539923,692409153,151653691,1702129253,1650553970,807953772,741749368,1347440416,1229342034,1344285784,1163085138,545005639,1008742440,691544124,789134121,1702043690,1936007271,221194784,1852115210,1953654132,1701601889,846737448,1327508581,1163022416,743983430,1163022368,541541715,824713340,540818464,992553272,539635465,543647091,706769763,151653679,1702129253,1650553970,807953772,741749624,1347440416,1229342034,1344285784,1163085138,545005639,1008742952,691544124,789134121,1702043690,1936924775,221194784,1852115210,1953654132,1701601889,863514664,1327508581,1163022416,743983430,1163022368,541541715,858267772,540818464,992553272,539635465,543647091,706769764,151653679,1702129253,1650553970,807953772,741619320,1347440416,1229342034,1344285784,1163085138,545005639,1008743464,691544124,789134121,1702043690,1936072807,221194784,1852115210,1953654132,1701601889,913846312,1327508533,1163022416,743983430,1163022368,541541715,891822204,540818464,992553272,539635465,543647091,706769767,151653679,1702129253,1650553970,807953772]}],[{"sector":1,"length":512,"data":[741369464,1347440416,1229342034,1344285784,1330398546,992561987,539635465,1701344367,1919950962,2020173413,706769765,151653679,1702129253,1650553970,807953772,741500536,1347440416,1229342034,1344285784,1163019602,221981008,1852115210,1953654132,1701601889,1719152680,1327508531,1163022416,743983430,1163022368,542131538,1380982908,1346720325,221981018,1852115210,1953654132,1701601889,913846312,1327508534,1163022416,743983430,1163022368,692335155,151653691,1702129253,1650553970,807953772,741815928,1347440416,1229342034,1344285784,842220882,221980993,1886325002,1751343469,913846363,1025531188,1836085024,1533567841,892762160,540876893,1634562159,811296867,1563833976,1864383776,1667329392,2016435048,542979894,993206333,168626701,1919903241,543762464,993009725,1008757024,1297436192,676480322,1970238055,1650553968,723532585,220817707,1695090954,1919251566,1818386804,1919363173,1953527151,1767596641,1702047325,1327508593,1330792272,539775061,1970238055,1650553968,777873755,1868983913,168639273,1919903241,543762464,993009725,1008757024,1297436192,676480322,1734307955,1886744434,694313332,724246587,168634729,1852115209,1953654132,1701601889,1601205032,1970238055,1650553968,777873755,745629043,1196445472,1347768146,1886593068,1869768543,1635020917,1567185762,1718511918,221981039,1868957962,1764237426,807419168,543760443,993534012,1764436768,151653673]},{"sector":2,"length":512,"data":[1953391881,1635021413,677735522,946108464,1763715872,1347362860,1380994883,1329799212,1764250192,221980969,1868957962,1764237426,807419168,543760443,1431183420,1380270669,1735419432,1886744434,694313332,724246587,2065705321,151587341,1769172597,1684368999,1953392928,1025534496,1735419424,1886744434,1533174132,221994345,1963526410,1734964078,543450478,544501353,540876907,1042311720,691544126,807415072,993551480,168626701,1718159625,543893536,540549182,673217660,539369578,1717991472,540811305,811825200,151653673,1634076937,573074537,543449410,1970037110,1868963941,1885741170,1970238055,1650553968,1566844251,1763716130,168639273,1852115209,1953654132,1701601889,1347371816,694888530,941632288,673196832,543828008,2016419878,539584102,2016419885,539570275,857751102,168635433,1325992201,1196443216,1347768146,1346773036,1431261767,694757456,168639273,168656137,1919903241,543762464,993009725,1008757024,1297436192,676480322,1717530739,1869768560,1635020917,540748130,694758187,168655648,1853163785,1852270963,1763730533,1780511854,1931492640,1885757296,1970238055,1650553968,995977563,151587341,1769172597,1684368999,1953392928,1025534752,543828000,941637182,539828265,946108464,218762555,1762199818,1797791846,941637152,545029152,639658536,1719152672,1008740710,1668821024,168634672,1711868169,678193505,1684095522,1818326560,1713399157,1931506287]},{"sector":3,"length":512,"data":[1885757296,1970238055,1650553968,1566844251,1763716130,168639273,1852115209,1953654132,1701601889,1347371816,694888530,941632288,673196832,543828008,2016419878,539584102,2016419885,539570275,857751102,168635433,1325992201,1196443216,1347768146,1179852844,1330792272,1764249685,221980969,226298122,1752631562,543517801,1952802600,1701734764,691103272,159064105,1814047279,544239471,1919252079,1852402720,1763734373,1752440942,1768300645,706766188,151653679,1953392905,1701735712,1830825069,1818320750,168639348,1751320841,706769505,706751600,539766896,1819504682,745042785,1752181280,745042785,1936730656,997351796,151587341,1819242306,544104805,1601008481,2037149295,1852402783,168639333,1853163785,1852270963,1663067237,544366952,1650553953,1684300127,1969516133,168639341,151587341,1601008481,2037149295,1852402783,540876901,1936482630,168639333,812648713,1814052128,996503145,151587341,673212009,1701734764,542978139,656424253,539567967,151653755,1935739145,1852792685,1818196332,543518313,1918115901,221996405,151587082,812657451,151653691,168656137,1952516361,1633641057,1852138596,544044388,1546068029,221980464,1762199818,707272806,1025519728,1579622461,2065705255,151587341,1635021577,543385972,1936617315,1853169780,1852270963,1663067237,544366952,1635020917,542989154,151653693,1098582281,1096764755,539777089,1598903105,539771460,1598903105]},{"sector":4,"length":512,"data":[539776836,1598903105,539771972,1598903105,742871631,1297301792,842220639,168639357,151587341,1881877257,168639280,1627982089,1600282996,1701078113,1836409966,1965047072,1650553968,812657243,757082923,657467168,168639325,226298121,1879640330,1931492640,1751347828,812656754,539435052,221980967,1762199818,1881677926,540884256,1280070990,544219177,812654653,1931488032,1701606004,812656750,168639273,151587341,1663052335,1801676136,1919903264,657401632,589766700,1851858983,707207268,1702043687,1634886000,1936879476,221194784,151653642,1819504649,543716193,1701650493,1919443821,741371944,657401632,544219180,812654637,168639273,1752172809,543716193,1701650493,1919443821,741371944,656615200,544219180,812654637,168639273,1936722185,544366964,1701650493,1919443821,741371944,657073952,544219180,812654637,168639273,1718159625,1936730144,1752392044,540877088,1280070990,226172969,151587082,1835363949,1696611616,1919251566,1881697901,1881156656,1935764595,221981032,151587082,1600414817,1633644404,1635020147,1396779106,826564429,221980982,153759498,724240649,1768713837,1834710131,1567450478,1836278062,1936090735,154891365,1948265007,544434536,543518319,661549929,842211444,1953063456,221194784,151587082,1936730923,1752392044,151653691,1852639497,1953259871,1696611616,1919251566,1881697901,1935764595,1881156712,168639273,1627982089,1952408676]},{"sector":5,"length":512,"data":[1935761263,1650553965,1297301800,842220639,168639273,545065225,1702063205,543582496,1634234408,555772019,1431183421,539577420,151653755,1852639497,1025535333,1953391904,1852666469,741371944,1634234400,992569459,151587341,1684300041,1601139807,1953330017,1093165665,1147096403,992556593,707725837,722012425,1819176235,1534358377,1835363949,1935748701,1717989229,997483891,539635465,1936287860,1701736224,1853057312,857764903,1768038450,791289972,151587341,1881877257,1752392040,151653691,1852639497,1953259871,1696611616,1919251566,1881697901,1752392040,695214124,151653691,1684080905,1869897572,1836278111,677536116,1598903105,691155780,151653691,1696627977,543519596,673212009,1635021680,1025581170,1280658976,2065705292,151587341,1601072393,544500833,1852121149,1836213620,812656750,1936728108,695361908,707725627,1953459744,1752440933,1701978213,1936876918,706767969,151653679,1684080905,1869897572,1836278111,677536116,1598903105,1414086999,168639273,722012425,1953722411,221999713,151587082,1835363949,1696611616,1919251566,1881697901,1918989427,695214124,151653691,1696627977,543519596,151653755,1852639497,1025535333,1953391904,1852666469,741371944,992571424,151587341,218762621,1762199818,1630019686,1600282996,1701078113,1836409966,540877088,657480743,1684086825,1869897572,1836278111,677536116,1650553953,1684300127,1969516133,221981037,151653642]},{"sector":6,"length":512,"data":[1635016969,1684103010,1684956516,1025535349,1297301792,1145980255,151653691,1835363593,678716787,1935962735,1819042157,741351468,1801416224,544438629,1769152554,1718576506,1869562408,1851876716,221980969,1997080842,1701603688,1881810976,540884256,690429991,153123616,1814047279,544239471,1919252079,1936615712,1668641396,1852795252,1918989856,1953390953,791289971,151587341,1869562377,1851876716,1869351200,1650551651,221996396,151587082,1819242306,544104805,1836278025,1819176799,168639353,1107888393,1701605231,153120353,1601399140,2037149295,151653691,1853163785,1852270963,1663067237,158490984,1751343469,996503145,151587341,1936618761,1701734249,1852383332,1952516468,1767858785,221996654,151587082,1769172597,1684368999,1953392928,1635016969,1701535586,540876921,168639280,1963526409,1734964078,543450478,158625385,1650553953,1920235615,540876897,168639280,151587341,1768453897,673211756,1025536042,539435069,723527975,221999147,151587082,1601008481,2037149295,1629502752,1868524915,1601793134,1701734764,151653691,1768163593,1852792691,1025538412,1818314272,221996403,151587082,673212009,1025536042,1596399677,2065705255,539635465,1629513321,1835365235,1919249506,1819176736,791289977,151587341,724240649,168639344,151587081,1601008481,2037149295,1411398944,996504946,151587341,168656137,1695090953,543519596,673212009,1025536042,1143414845,2065705255]},{"sector":7,"length":512,"data":[539635465,1679844969,1935766377,1651336563,544367980,2037149295,221194784,151587082,1881877257,151653691,1678313737,1868526441,544828526,1918115901,221996405,151587082,151653757,1869351177,1650551651,1025533292,1818314272,221996403,151587082,673212009,1025536042,1277632573,2065705255,151587341,724240649,168639344,151587081,1801678700,1701601889,1411398944,996504946,151587341,1718159625,1768171552,1852792691,1025538412,1631985725,694514540,151587341,1627982089,1952408676,1935761263,1650553965,1297301800,1129270367,1279410507,221980997,151587082,151653757,1952516361,1767858785,1025533550,1025534240,1952802592,1702132066,695215656,151653691,1718159625,543762464,807419197,694562936,168655648,151587081,540876905,1651795303,677737593,992571430,151587341,1952516361,1767858785,1025533550,909455904,1763715872,151653691,1762199817,540879648,1380012115,1113539923,994399041,151587341,168656137,1762199817,1864900710,1887007856,1567185765,540884256,1380405327,693130575,168655648,151587081,544501353,540876906,1937007975,1752392044,695215656,151653691,1762199817,1797289070,218762555,151587082,1919903241,543893536,993009725,724246587,2065705323,151587341,1762199817,1797791846,540884512,1734434670,1886744434,2065705331,151587341,151587081,673212009,1601055531,1869768545,544436341,1095573566,1195466584,1347768146,1414415711,1397049682,151653673]},{"sector":8,"length":512,"data":[151587081,1768687881,1869505902,1818845542,1867784744,1634541679,1629518190,1970238055,1852121200,1701409396,992551539,151587341,151587081,1869768545,1767862389,542993243,996745277,151587341,151587081,1869768545,1767862389,1801152110,540876893,1650553953,1718511967,151653691,151587081,1701995017,221997921,151587082,226298121,151587082,1718159625,1734420512,1886744434,1801152863,1027416157,220817696,151587082,1644759305,1801545074,151653691,2097744137,151587341,1952516361,1767858785,1025533550,846737440,723529780,706754592,723544864,221997600,151587082,1025534217,1768976160,1534027374,723541353,221997600,151587082,151653757,1718159625,1886332960,1701869940,542992731,1327512893,1347371856,2065705298,151587341,1718159625,1881810976,540884256,690433831,168655648,151587081,1953392905,1025534496,1952802592,1935764595,1881548904,168639273,151587341,1627982089,1600282996,543583849,2016419901,540028978,543825963,540549162,1764237355,807415072,691561592,151653691,151587081,540876905,1852403823,1767599974,539697245,168639338,151587081,1818566781,2065720691,151587341,1627982089,1600282996,1634890872,1730166048,2036495461,640181620,221981040,151587082,1718159625,1952524320,2019517025,543257204,2016419900,220803171,151587082,1812531465,1852141161,1767990895,1109534828,1931502689,1852793701,1936007268,1701863779,1954112032,992551525,151587341]},{"sector":9,"length":512,"data":[1762199817,1864383776,1718511984,1567185775,941632288,673196832,1635017000,1954045794,757096818,1668821024,1042295088,691216446,151653691,151587081,673212009,2037674095,1767597424,1027416157,1179668256,1330792272,220811349,151587082,1762199817,1864383776,1718511984,1567185775,673196832,1650553953,1920235615,539369569,221980983,151587082,168656137,2097744137,151587341,1769435913,543712116,728771112,2065705259,151587341,1935762185,774316133,168639015,151587081,1751343469,543518313,1701257277,1667329396,1701734760,745547304,1936286752,1819176799,221981049,151587082,543582473,1935745320,1852792685,539588972,151653755,151587081,1702129253,1650553970,1764255084,1347362860,1347242323,539772236,1835363949,168639273,151587081,1836085001,1533567841,1025531241,1667329312,1701734760,151653691,2097744137,151587341,1919027465,996893029,151587341,1935762185,707207269,789133863,1869357098,1864395619,1701978226,774778480,1701998624,544762214,168636202,151587081,1600414817,1633644404,1635020147,1396779106,1330405197,1163021123,221981008,151587082,1684300041,1601139807,1953330017,673735265,1769172597,1684368999,1634231072,1952524658,1767858785,992568942,539635488,1667592307,543973737,1702060387,221194784,151587082,1635016969,1684103010,1684956516,1025535349,811345696,168639271,151587081,1634038370,168639339,1661536521,543519585,975644199,539635465]}]],[[{"sector":1,"length":512,"data":[1835492723,544501349,1717924464,706771049,151653679,1627982089,1952408676,1935761263,1650553965,1297301800,1195725663,168639273,151587081,1600414817,1633644404,1635020147,1965566050,1734964078,543450478,1918986339,1635017001,1852399458,540748134,1931487791,1768121712,1663069281,543519585,168636202,151587081,1650553953,1684300127,1969516133,540876909,657480743,151653691,1644759305,1801545074,151653691,1633880329,656434547,540682042,151653755,1929971977,1668641396,1701519476,1650553977,1886071328,1814052128,1969975151,2036689776,1952802600,679044459,690581542,151653691,1762199817,1998615662,1752458345,1797274912,2000563568,1752458345,151653691,1762199817,1780511854,218762555,151587082,1667329289,1701734760,1730166048,1634563173,1852401763,1881548901,1768169516,1852792691,992573804,151587341,1718159625,1679894560,1868526441,695823470,168655648,151587081,543582473,1685221160,1818324339,1886083948,1864379680,2036689772,1952672100,168634717,151587081,1768687881,1869505902,1818845542,1633034792,1851877746,1864397684,1864397941,1919885414,779248996,221980962,151587082,1634535689,1836280690,678194273,992571499,151587341,226298121,151587082,1635016969,1701535586,540876921,1043165291,1970037110,539697253,168639281,151587081,673212009,1042311464,892477501,640032822,1008757024,1095783200,1598378834,1163084098,151653673,151587081,1763736700,540884512]},{"sector":2,"length":512,"data":[1380012115,1113539923,541414209,892477483,2065705270,151587341,1762199817,1999118438,1752458345,840973856,151653673,151587081,1852402697,1718578789,678193505,1684633378,1713399924,1970039137,690120050,151653691,151587081,1952737655,540876904,168639281,151587081,151653757,1762199817,1764237414,673195552,1952737655,539828328,220801329,151587082,1768687881,1869505902,1818845542,1769415208,543716452,1734962273,1852140910,1634082932,1920298089,992551525,151587341,1718159625,1629562912,1868524915,695823470,151587341,1711868169,673215087,540876906,1025534248,2016419901,992555065,1008757280,1684633376,540764276,694823723,168655648,151587081,707725577,1579163657,1583242846,1583242846,1818959904,1701274741,1919903264,1347374624,1936615712,539914868,168636202,151587081,1852115209,1953654132,1701601889,1786538280,1819222060,1936090735,1801155685,1983786352,1702194273,1830825053,695035246,151653691,151587081,1836085001,1533567841,545005673,1025531242,1667329312,1701734760,151653691,151587081,543582473,1668246568,1818386795,2065705317,151587341,151587081,543582473,1818193448,1953194863,1042309729,1095573565,1330405208,1096043331,1313169218,1162433108,168634707,151587081,151587081,1701734764,1634103150,573074537,544173908,2037277037,1668246560,1818386795,1852383333,1970435187,1869182051,690123630,151653691,151587081,1869351177,1635019619,1601067874]},{"sector":3,"length":512,"data":[1801678700,1566728564,1763720480,1780513824,151653691,151587081,724240649,1869373294,1635019619,168639330,151587081,226298121,151587082,226298121,151587082,151653757,1919027465,996893029,151587341,1717920777,1953264993,151653690,1812531465,1852141161,1767990895,1394747500,1635020409,1919230072,779251570,221980962,151587082,151653757,1718159625,1952524320,1633641057,1852138596,544044388,656424225,539439196,1679828518,1868526441,544828526,1176517949,1702063201,226172969,151587082,1635016969,1852399458,540876902,1650553953,1718511967,673196576,1819238254,1887007839,723546981,539570464,1952522283,1801413217,222001509,151587082,1684300041,1601139807,1953330017,673735265,1769172597,1684368999,1634231072,1630022002,1600282996,543583849,941637182,221980969,151587082,543582473,1952524328,1767858785,1042310766,691544126,540884512,1598903105,1212367181,168634672,151587081,1767990793,1092757612,1835365235,1919249506,1650553888,1763730796,1869881459,1969365103,690125171,151653691,1627982089,1952408676,1935761263,1650553965,1853171752,1852270963,1663067237,695361896,1650553953,1718511967,168639273,151587081,673212009,1650553953,1920235615,1025581153,220803104,151587082,1684080905,1869897572,1836278111,677536116,1936618792,1701734249,1751326820,1630106209,1600282996,1634890872,168639273,2097744137,151587341,543582473,1819504680,543716193,1310735649]},{"sector":4,"length":512,"data":[692866133,168655648,151587081,673212009,1819500398,1600680801,1920233061,544433513,1293958462,1398757441,1213415756,1414415711,1397049682,151653673,151587081,1701734764,1634103150,573074537,544173908,2037277037,1634497312,1696622707,1769108590,690123621,151653691,1929971977,1752392044,1600282996,1534158195,1819500398,1600680801,1920233061,1567843689,1763720480,151653691,1929971977,1752392044,1600282996,1851485805,1634497375,1700751475,1769108590,542995301,1852645437,1953259871,151653691,722012425,1935633963,1752392044,1953391967,1936025970,151653691,545065225,1702063205,543582496,1634234408,555772019,1431183421,539577420,151653755,1762199817,1848123494,1935763551,1852137320,1701409396,1027481715,1480674592,1396787295,1313169224,1162433108,168634707,151587081,1852402697,1718578789,678193505,1869567010,1851878688,1634214009,1696622707,1769108590,690123621,151653691,1745422601,1953002337,1935630945,1851486565,1935763551,1852137320,1701409396,1025531251,221997344,151587082,1935763465,1650553960,1533963615,1634230126,1700751475,1769108590,542995301,1852645437,1953259871,151653691,722012425,1751084587,1600680801,1920233061,997418345,151587341,1696627977,543519596,673212009,1635021680,1025581170,1280658976,2065705292,151587341,1718159625,1601054752,1918989427,1953391967,1936025970,540884512,1599619405,1380013139,1414415711,1397049682,151653673,151587081]},{"sector":5,"length":512,"data":[1701734764,1634103150,573074537,544173908,2037277037,1635021600,1852121202,1701409396,992551539,151587341,1953696009,1635021409,1702059874,1601067889,1918989427,1953391967,1936025970,540876893,168639337,151587081,1918989427,1600282996,1851485805,1635021663,1852137330,1701409396,1025531251,1601072416,997485665,151587341,724240649,1953718126,1700754017,1769108590,221999973,151587082,151653757,790658313,1852121130,1752637540,543517801,1769103734,1937010273,221194784,1762199818,707272806,1025581168,811345696,168634663,1812531465,1852141161,1767990895,1394747500,1635020409,1919230072,779251570,221980962,1762199818,1630019686,1600282996,1701078113,1836409966,540877088,657480743,226172969,151587082,1600414817,1633644404,1635020147,1952524386,1633641057,1852138596,695039332,707725627,1297301792,1145980255,1718165548,1886413088,1633905004,543517794,168636202,226298121,226298122,168656138,707725837,706742797,1769099273,1696625774,2037540214,1852401780,1852776551,1948282740,1713399144,778398825,706742797,218762543,1920234250,544498549,1868983913,543384946,707725691,1920234272,1936158313,544175136,544503152,1869901417,1836016416,1953391981,1701406240,544433260,168636202,1953392905,1902474016,221998958,1751320842,706769505,1769108595,221996910,1948286218,1868786786,1852140909,1566274420,2065710368,2064189965,572533808,1852399981,1668312864,543515759]},{"sector":6,"length":512,"data":[1953653104,221019426,1199245578,1347768146,740897064,1850286624,543974772,1970238055,573644912,168635517,1380416265,676353359,539765043,1953384738,1730178149,1886744434,2099393056,151653676,1330792315,891834453,572533801,1702129225,1919361132,544241007,2099405106,151653676,1330792315,908611669,572533801,1702129225,1919361132,544241007,746398259,2064189965,1431261767,691480656,1226973228,1818588270,1869768480,891318389,221019426,1199245578,1347768146,740898856,1850286624,543974772,1970238055,573972592,168635517,1380416265,676353359,539765049,1953384738,1730178149,1886744434,2099394336,151653676,1347371899,691021906,1126309932,1869770863,1936942435,1679848047,746398264,2064189965,1380994883,740897064,1866670624,1668248176,1869837157,962863218,221019426,1132136714,676483151,539765042,1886339874,1701015410,1919906675,576807968,168635517,1329822473,858280528,572533801,1919971139,1936024431,544370547,2099405412,151653676,1347371899,691284050,1126309932,1869770863,1936942435,1679848047,746398307,2064189965,1380994883,740898088,1866670624,1668248176,1869837157,1684283506,221019426,1132136714,676483151,539765046,1886339874,1701015410,1919906675,577070112,168635517,1329822473,925389392,572533801,1919971139,1936024431,544370547,2099406436,151653676,1196443259,1347768146,740896808,1866670624,1668248176,1869837157,1919361138,1936749935,221019426]},{"sector":7,"length":512,"data":[763037962,1310731313,2102152277,168639357,1870006797,1881171049,1683977333,1229334647,706757964,539767398,1936617315,1751326836,706769505,1700946284,1763716204,706770030,1635017060,1763716208,1847620718,2064256297,1661536781,1953721967,1634231072,1764368498,1937009006,221999732,1852377354,996745332,168626701,1970300425,1814590324,1818583649,691168812,151653691,1818847351,1848123493,807419424,226172969,1762199818,1937009006,1025536628,1952195104,572553060,151653691,1919903241,543762464,1848123453,540884000,541007928,540680302,540748088,540942441,757087024,539584813,151653755,1885735177,678655093,1953066601,745698419,691168800,151653691,1852377353,1953723497,540876914,992095266,151587341,1919968777,1718906473,741500456,623911456,740452472,1633954336,728785268,221980971,2097744138,151587341,1953853542,1545742451,539763310,992555622,151587341,1026367598,221984800,226298122,168656138,1751321101,706769505,1667592307,1533174132,540876893,1096229499,740447305,1380917792,539763271,574899234,1143087148,539763287,574768162,168639357,1918986339,1886595616,1635017573,1566257762,2065710368,1129270306,1346720331,572533794,575096147,168639357,1870006797,1679844457,1953525109,1701601889,1229334643,706757964,220803686,168655626,1953392905,1717989152,997483891,1929972237,1668641396,1852645492,543384946,1886285098,151653691,1918986339,1969302048]},{"sector":8,"length":512,"data":[1920234360,151653691,1970435187,1763734627,1919903342,706765669,1886151284,221999732,1852377354,745087092,221997600,1853163786,1852270963,1763730533,1797289070,996941868,168626701,543582473,1836412456,1919839583,544432997,807419197,151653673,1767990793,1310861420,1935745135,1651336563,544367980,1835363949,1667853935,690102643,218762555,707725578,537463309,1867718698,1948284018,1830839656,1869440366,1935894894,1886150944,1700946280,1633905012,779709548,537463309,168636202,543582499,1414680403,168644173,1752067337,543449445,1852645437,1919906655,1852647540,1953720684,1970151468,1852661613,1935893874,168639273,1936483619,151653733,1701342829,1025533025,1819176224,997487465,1711868429,673215087,540876905,1763719984,1847606304,1834970485,1667592814,1763720051,220801835,1829308682,1936288878,1567185780,2019913262,540876916,1819176230,1534358377,1563503465,151653691,1768713837,1851487347,1834970485,1667592814,1563503987,2019913262,540876916,1280070990,587861307,1768189541,218762598,1885735178,1953393010,845555814,1545740332,757939054,1750343725,1713402729,543517801,544432503,1701733735,1702125938,2036473956,1953197344,1701601889,2019896947,1851534949,221980962,151653642,168634927,539631625,1852404304,1970217076,1886330996,1953720684,224222067,706742538,218762543,1885735178,678655093,997088290,539831597,1919250511,543452769,1701869940,1936288800]},{"sector":9,"length":512,"data":[1546548084,168632942,538970377,757938978,1750343725,1998616933,543519333,1684104562,1869768224,1768300653,1226859884,1381258062,1497713454,1550736430,168632942,538970377,1819307810,1937011561,1650551840,1646292069,1550152825,1869896814,1952214128,1768912443,539828324,544370534,1953721961,1952675186,1936617321,1953068832,1953853288,1701867296,1684955506,577657971,845553708,168639273,1919903241,543762464,993009725,1008757024,1868525088,2037669740,997418352,1764436768,226172969,1718166282,168636448,1853163785,1852270963,1663067237,544366952,1699445363,1563712377,151653691,543582473,1802268456,1768192357,1767601251,1701523037,540942457,1179023408,226172969,151587082,1699445363,1563450233,673201440,1769172597,1684368999,1634231072,1864903026,2036689772,1952672100,777873755,544826731,941637182,168639273,1929971977,2036681594,542978395,1965563965,1734964078,543450478,1918986339,1819224105,1685677419,1534354281,1798200681,639662437,1182281760,221980998,151587082,1699445363,1563581305,656424224,992424028,151587341,1818566781,2065720691,151587341,1266316041,811301221,540876893,1936618792,1701734249,1751326820,673804897,1701538927,1667851385,1567185780,2036689710,168639273,1929971977,2036681594,542978395,1546068029,221980464,2097744138,151587341,1769107558,677803118,539767398,1869896738,622881904,622865523,997481587,1936092960,1750607165,740453980]}],[{"sector":1,"length":512,"data":[1266316064,539785573,1634626671,1534289261,539778409,1718578287,1952805734,693987675,587861307,1702063205,151587341,1769107558,677803118,539767398,1869896738,622881904,997481587,2019846432,745874749,1936092960,1750607165,740453980,1852600096,1936026977,744319323,824928544,1819222060,1936090735,1767601253,221981021,1852121866,224815460,226298122,789187850,1885735210,1953393010,845555814,1545740332,1297301870,1547980621,1431389556,1551181088,539763310,1819238254,1887007839,824931173,706755369,151653679,1769107558,677803118,539767398,1097751586,1330466131,1165253700,1864389969,2019846512,690122332,218762555,707725578,537463309,1967398954,1864396909,1629516917,1970238055,1852399472,168636006,791289865,168626701,1970300425,573076340,758869596,1092627757,1835365235,1919249506,1633951802,1864393076,1919361134,1936749935,577657902,151587341,757938978,1716068397,1114196000,543519865,807419197,1763716145,544417652,576462945,1882015280,1768318322,539122808,1970238055,1851534960,220360284,571017482,1869768545,544436341,1700946284,1870078060,1851548786,1713384482,221980978,1868957962,1764237426,807419168,543760443,1601052732,1869768545,997421173,1764436768,226172969,1711868170,1852404336,1713923700,572533810,2003072092,858793248,1952213080,1551181115,539763310,1869768545,1767862389,1767597678,1763716189,168639273,168656137,789121549,151653674]},{"sector":2,"length":512,"data":[1142958624,544238965,544503151,1953330017,221143649,706742538,218762543,1885735178,678655093,997088290,539831597,1953720652,543584032,1702064993,1701601901,1852645490,1852796261,544433001,543452769,1635017060,577657902,151587341,992092192,539831597,1769103734,661941857,774971507,1735549216,1852140917,1026039924,1547315553,168632942,538970377,757938978,538976301,1629513321,807418912,808464760,1852776506,2036473957,1864394100,1685021552,1851534949,151653666,572530697,757935419,1763713056,543236198,807419198,808464760,539371040,540811361,808613936,1948269104,1646292855,543519865,1177559644,1865228892,1685021552,1851534949,151653666,572530697,757935419,1763713056,543236198,807419198,808465016,539371040,540811361,875722800,1713388080,1852383344,1970435187,1869182051,1851534958,151653666,572530697,757935419,1763713056,543236198,807419198,808727160,1701978170,1936876902,544175136,1869768545,544436341,1667329371,1092644722,676352583,1936269353,1702065440,1546542436,168632942,538970377,757938978,1635131437,1851877746,544417652,1629498930,1836410738,544501349,1763734377,2019910766,1953392928,1918967919,544825714,1852403823,779642212,1851551324,151653666,572530697,1768713837,1814066291,1818583649,1954112032,577657957,845553708,168639273,1919903241,1852647456,540876912,1701342829,539780193,1936090735,1025537125,540749856,544239213]},{"sector":3,"length":512,"data":[1310735649,994856021,1886285088,1830829344,1043165294,1954047342,226172969,1829308682,1043165294,1936090735,1025537125,1717989152,544499059,993140779,151587341,1936090735,723547237,1852645437,1816014192,723545701,221983264,1711868170,1852404336,1713923700,572533810,1852666972,1931812965,1830824994,1043165294,1769108595,992569198,168626701,543754505,1852645437,1631464816,1718578547,1952805734,218762555,1762199818,1630019686,1635020147,1567185762,540884256,1598903105,540422468,1629496870,1635020147,728324962,1025531185,1396777021,860118861,2065705266,151587341,1919968777,1718906473,741500456,539763232,1598903105,1547055428,1864383348,624784230,1851549784,1763716130,168639273,545065225,1702063205,543582496,1836278056,1533174132,1042308457,1396777021,1096245069,539579465,151653755,1885735177,1953393010,845555814,740433964,1297301792,1551050079,1864383348,624784230,1851549784,1931488290,1952671088,1633378913,1635020147,1567185762,1092627744,1465863507,1565804865,694755372,151653691,1696627977,543519596,673212009,1836278056,1533174132,1025531241,1396777021,1163091789,2088509511,1836278048,1533174132,1025531241,1396777021,1330405197,1163021123,539568464,151653755,1885735177,1953393010,845555814,740433964,1297301792,745743711,858793248,1952213112,1718558779,1478835571,577657960,1886593068,1635017573,1633366626,1635020147,1567185762,1092627744,1281314131]},{"sector":4,"length":512,"data":[1380664143,744312901,1836278048,1533174132,1563503465,694755372,151653691,1696627977,543519596,151653755,543820041,996745277,151587341,1768453897,673211756,1953330017,1784373857,540942429,1598903105,541541715,1629496870,1635020147,1567251298,1092631584,1465863507,693389633,168655648,151587081,1953068915,673212515,1953330017,1784373857,2065705309,151587341,1633880329,1092642163,1096764755,221927489,151587082,1885735177,1953393010,845555814,740433964,1297301792,1480671583,221980962,151587082,1919027465,996893029,151587341,1633880329,1092642163,1147096403,221918769,151587082,1885735177,1953393010,845555814,740433964,1297301792,909198431,221980962,151587082,1919027465,996893029,151587341,1633880329,1092642163,1147096403,221917747,151587082,1885735177,1953393010,845555814,740433964,1297301792,842220639,221980962,151587082,1919027465,996893029,151587341,226298121,151587082,724265481,151653691,226298121,151587082,1769107558,677803118,539767398,997481506,1936092960,1750607165,740453980,992569632,168626701,1711868169,673215087,543825979,1601052732,1601008481,996303220,226172969,151587082,1634231049,1814700146,1936417647,1025536628,992092704,151587341,1751320841,1830842977,1936221025,828076660,1025531186,572685088,168639357,151587081,673212009,1953330017,1784373857,1027416157,1182281760,168634694,151587081,1701995017,221997921]},{"sector":5,"length":512,"data":[151653642,1762199817,1630019686,1635020147,1567251298,540884256,1598903105,1262702412,1162625601,226172969,151587082,1869351177,1953721187,540876914,1297301794,1129270367,1279410507,221979205,151587082,728369417,168639275,151587081,151653757,789121289,1752440874,660959845,543236211,1651470960,544040300,1752459639,1128612896,1684955424,1129204000,221194784,151587082,543582473,1836278056,1533174132,1025531242,2016419901,220808774,151587082,1919027465,996893029,151587341,1718159625,1935747104,1650553965,542992987,1092631870,1298091347,810042177,539371040,1953330017,1784373857,1027350621,1297301792,1128353119,539571784,151653755,151587081,1769107571,677803118,1751343469,745698419,1396777504,1095589709,1965377603,1629498402,1635020147,1567251298,1092627744,1298091347,810042177,168639273,151587081,724265481,151653691,2097744137,168626701,151587081,540876907,1953392936,1836278057,1533174132,706764138,909455904,1629498144,1635020147,728390498,221994289,151587082,1025534985,622881568,1601054752,1952410735,1936027769,992555307,151587341,543885577,543891517,1848123439,1600941919,1701869940,691088243,218762555,151587082,543582473,1042311976,2016419901,639645764,543891494,807419196,692470904,151587341,1711868169,1852404336,1713923700,572533810,1713402972,1918989936,1953390953,992551456,151587341,1818560777,168650099,151587081,1919968777]},{"sector":6,"length":512,"data":[1718906473,741500456,1952195104,1918989856,1953390953,992551456,168626701,151587081,673212009,1027481707,846737440,220803124,151587082,1885735177,1953393010,845555814,1092755500,676352583,623670565,539765109,740455717,543893536,2016419885,691024946,540950048,673197107,539828331,875722800,639641904,539768608,221981036,151587082,1936483593,151653733,151587081,1769107558,677803118,539767398,858793250,539781240,740455717,539781920,221981036,151587082,723544585,993140797,168626701,151587081,673212009,1027481707,1148727328,640032824,1008757536,2016419901,539575876,151653755,151587081,1769107558,677803118,539767398,622865442,1752707888,1629498402,1635020147,1567251298,168639273,151587081,724265481,151653691,2097744137,151587341,1718159625,1814702112,1936417647,1025536628,1546068029,639641392,1634541606,1953720419,1563450226,540884256,657480743,151653673,151587081,1769107558,677803118,539767398,577657890,168639273,151587081,1702063205,543582496,1667329320,1920234344,542978139,656424253,690434140,151587341,1711868169,1852404336,1713923700,572533810,1931812908,740453980,1668246560,1920234347,168639273,151587081,1702063205,151587341,1711868169,1852404336,1713923700,572533810,1931812908,1931812908,740453980,1668246560,1920234347,1634541612,1953720419,221981042,151587082,151653757,1885735177,1953393010,845555814,1545740332]},{"sector":7,"length":512,"data":[1852121204,1918989924,1953390953,690122332,151653691,543754505,996810813,151587341,151653757,151653757,1953853542,1545742451,1684956526,1819176287,544502633,1700946284,2036473964,1851549044,740453980,691168800,218762555,1718159626,1718560800,1952805734,540884512,1008742696,1397563452,1413892424,2065705257,151587341,1769107558,677803118,1701082227,539783794,543434018,1702132066,1718558835,1701735712,1768845165,539915107,1634227232,544417652,544173940,2037277037,577657902,1718558764,1952805734,168639273,2019887369,824734825,168639273,168656137,1763904013,221257830,707725578,537463309,1917853738,544501353,543516788,1852403823,544761188,1634890337,168636025,791289865,168626701,2020958473,544371827,1545740349,757939054,1916870701,544825714,1646290543,543519865,1936090735,544437349,544370534,543516788,1768714351,544437363,1634890337,1630019705,1702260578,220343849,571017482,758869596,1226845485,1936269428,1702065440,2036473956,1701344288,1936941344,1818389861,1948283493,1634934895,1931502966,1701011824,577657902,151587341,1869503522,1684957552,1814067301,1818583649,1954112032,1550736485,543319156,741351456,168639266,1919903241,543762464,993075261,1008757024,1601052733,1952410735,1936027769,724246587,2065705321,151587341,1769107558,677803118,539767398,628303138,740451379,2020958496,745698419,1869377312,1702061670,761879412,757095729]},{"sector":8,"length":512,"data":[1414549280,1397051481,168639273,1718159625,1764239392,924853792,1027416105,220804896,151587082,1937274209,1025536628,1851531808,1650750556,221979168,1695090954,224752492,151587082,1937274209,1025536628,573317664,151653691,587861373,1768189541,218762598,707725578,537463309,1917853738,544501353,544503151,2037674095,1566270832,537463309,168636202,1711868429,1937012080,758850088,1142959405,1935766377,1651336563,980575596,1836016416,1936028272,543450483,1818386804,1718558821,1701344288,1668312864,543515759,1701869940,220343923,537463050,1851531808,757935419,543574304,543516788,1835365481,1935763488,1701344288,1919903264,544498029,2015908943,539765112,1914729577,1919247973,1869881459,1650553888,656434540,1768714351,661877875,168632878,538970377,997088290,539831597,1701344335,1936291698,1953046629,1629516583,1718558830,1952805734,1919903264,1953392928,1634628197,1635000428,543517794,1936286759,661679466,168632878,538970377,1550736418,1953525614,1936027769,1650551840,1646292069,577074297,845553708,168639273,2020958473,544371827,1545740349,1685347438,992092258,1946749453,1953524834,540876914,1668047476,1701670255,997422190,168626701,1919903241,543762464,993009725,1008757024,1095783200,1598378834,1163084098,543760443,941636907,226172969,1711868170,673215087,540876906,1780497200,941636640,724246587,2065705322,151587341,1970300425,1630040948]},{"sector":9,"length":512,"data":[1953724533,1713384562,221980978,151587082,673212009,2037674095,1767597424,1780493088,1027481693,1414549280,1397051481,226172969,151587082,1953392905,1025538336,221982752,151587082,543582473,1953525544,1533374585,539697257,1042308458,1414549280,1397051481,151653673,151587081,544370534,1025538344,540750112,1027350649,1868525088,2037669740,997418352,724269344,151653673,151587081,543582473,1869377320,1702061670,762927988,1025531185,1886330941,1701869940,723544411,693987872,151587341,151587081,1701995017,221997921,151587082,543582473,1008761128,1601052733,1952410735,1936027769,151653673,151587081,1769107558,677803118,539767398,676613922,1479684133,539763241,221981049,151587082,1936483593,151653733,151587081,1818845542,1718559272,1952805734,1953459744,1970234912,1713398894,622883439,622869109,539763288,745155433,1953525536,1533374585,1567239017,168639273,2097744137,1936483616,151653733,1711868169,1852404336,1713923700,572533810,807739424,577263667,1886330924,1701869940,723544411,693987872,151653691,1969293577,1920234360,572538144,221979180,2097744138,151587341,1769107558,677803118,539767398,997481506,842016032,539828344,2016555045,1763716130,543760428,691478571,151653691,543582473,1025534248,1651777597,1920233580,1702051373,695168625,168655648,1711868169,1852404336,1713923700,572533810,1931814944,539763241,1818391592,728921200]}]],[[{"sector":1,"length":512,"data":[1043147051,1769108595,992569198,151587341,151653757,2020958473,544371827,1545740349,1685347438,992092258,2097744397,168626701,1919968777,1718906473,741500456,1851531808,1380012115,1113539923,541414209,544567653,539828260,2037674095,1551066480,992551534,168626701,2020958473,544371827,1545740349,757939054,1750343725,1701978213,1864397939,1752440934,543519589,543519329,1702195571,1684372069,577657902,1952195104,538993252,538976288,992095280,1711868429,673215087,540876905,1380012115,1113539923,742740801,826108704,543760443,1330520124,540758864,694758187,151587341,673212009,1025534504,1953525536,1533374585,539581801,807419169,226172969,151587082,673212009,1027481706,1414549280,1397051481,226172969,151587082,1953392905,1025538336,221982752,151587082,543582473,1042311720,1414549280,1397051481,151653673,151587081,544370534,1025538344,540750112,1027350649,1868525088,2037669740,997418352,724269344,151653673,151587081,543582473,1869377320,1702061670,762927988,1025531185,694820925,151587341,151587081,1701995017,221997921,151587082,543582473,1008761128,1601052733,1952410735,1936027769,151653673,151587081,1769107558,677803118,539767398,1332946210,807741524,573134898,1969299500,1920234360,695803948,151653691,1695090953,224752492,151587082,1634076937,573074537,1936090735,1847620709,1713402991,1684960623,1919903264,980755744,576202016]},{"sector":2,"length":512,"data":[745087020,992569888,151587341,1696627977,224752492,151587082,1919968777,1718906473,741500456,1931813408,807739424,577263667,1969299500,1920234360,694820908,151653691,728434953,168639275,1762199817,673718374,539369579,1025517879,691019837,168655648,151587081,1769107558,677803118,539767398,997481506,1479684133,1797270562,992557101,151587341,1969293577,1920234360,572538144,1952214620,572547684,151653691,545065225,1702063205,151587341,1969293577,1920234360,572538144,221979180,2097744138,1711868429,1937012080,1851531816,1713384482,221980978,151653642,168634927,539631625,1852404304,1970217076,1886330996,1868983913,168648027,791289865,168626701,1970300425,573076340,740453980,691168800,151653691,544370534,1025534248,540750112,540811369,1763719991,220801835,1711868170,1852404336,1713923700,572533810,947201360,1702124598,622884209,1851549784,1763716130,543760428,1293958204,1179207763,221981012,151653642,1953853542,1545742451,1635015790,1852270956,1851535904,1713384482,221980978,151653642,1953853542,1545742451,757939054,1766072365,1936941427,1818389861,540701285,1886220131,1936942450,1948279909,1701601889,543584032,1768186977,1852795252,1763732577,1919903342,1769234797,573468271,151587341,1545740320,757939054,1765941293,807433076,540094765,1635087221,544828524,543519329,543516788,1936090735,1864397925,1752440934,1852645477,1852796261]},{"sector":3,"length":512,"data":[544433001,1818386804,220343909,537463050,1851531808,757935419,1953055264,842080371,540356909,543519329,543516788,544567395,1667852407,1852383336,1685025396,1684366197,1768453152,1886330995,1701080931,168632878,538970377,1550736418,1768976238,544171630,1700946284,1870078060,1851548786,1713384482,221980978,151653642,544370534,1025534248,540749856,540811369,1380012115,1113539923,994399041,723544352,691281981,168655648,1969293577,1920234360,572538144,2003072092,221979168,1711868170,673215087,540876906,1780497200,874527776,724246587,2065705322,151587341,1970300425,1630040948,1953724533,1713384562,221980978,151587082,673212009,1634562159,1767598179,693987883,151587341,1885735177,1953393010,845555814,539107372,947201360,573251638,1886330924,1751343469,1781229915,221981021,151587082,673212009,2037674095,1767597424,1780493088,1027481693,1414549280,1397051481,226172969,151587082,1919968777,1718906473,741500456,1293951520,1931829070,1830824994,1936288878,1886346100,1868983913,1781229915,1932418397,1852404340,221981031,151587082,1818566781,168650099,151587081,1769107558,677803118,539767398,807739426,577271860,1886330924,1868983913,1781229915,221981021,151587082,1937274209,1025536628,573317664,151653691,168656137,1885735177,1953393010,845555814,1545740332,622869364,1551381040,539763310,221981033,226298122,1969293578,1920234360,572538144]},{"sector":4,"length":512,"data":[757935419,1701336096,1936028192,1718558836,1701344288,1629513075,1931502962,1701148017,778331514,539127388,1685347362,807411831,221979180,1868957962,1764237426,1394621728,1397899600,1094868805,539772243,540876907,1763719985,1310735392,995315791,1764436768,226172969,1762199818,673718374,540876906,2037674095,1767597424,555755869,691019837,168655648,1711868169,1852404336,1713923700,1629498418,1953724533,221981042,151587082,673212009,1634562159,1767598179,168634717,151587081,1769107558,677803118,539767398,626008098,540424309,539763243,1634562159,1767598179,221981021,151587082,673212009,1027481706,1414549280,1397051481,226172969,151587082,1919968777,1718906473,741500456,1293951520,1931829070,1830824994,1936288878,1886346100,1868983913,1566402907,1920234286,694644329,151653691,545065225,1702063205,151587341,1885735177,1953393010,845555814,539107372,2016686117,539763304,1852403823,1767599974,221981021,151587082,992684907,151587341,543582473,543893544,691216422,540884256,2065705264,151587341,1885735177,1953393010,845555814,1545740332,807746420,740448306,757099296,992556064,151587341,1969293577,1920234360,572538144,1952214620,572553060,151653691,545065225,1702063205,151587341,1969293577,1920234360,572538144,221979180,2097744138,2097744397,1711868429,1937012080,1851531816,1713384482,221980978,151653642,168634927,539631625,1852404304]},{"sector":5,"length":512,"data":[1970217076,1903370356,1650553978,537463309,168636202,1711868429,1937012080,1851531816,757935419,1936278560,1702064993,1701601901,1948269170,1701601889,1852793632,1953654134,1853169779,1702195571,1684372069,1836412448,1936876898,544175136,1702195571,1684372069,168632878,538970377,997088290,539831597,758138161,541475890,543519329,1702131813,1684366446,1668312864,1936024687,1177561120,695760928,168632878,538970377,1550736418,2054255470,543318388,1700946284,2036473964,1851549044,1713384482,221980978,151653642,540876907,168639280,1919903241,543762464,1347625021,1163088449,1396785759,1763720005,1310735392,995315791,723544352,691544125,168655648,1718159625,543762464,1394621757,1397899600,1094868805,723535187,909455904,151653673,1885735177,1953393010,845555814,1545740332,757939054,1965367341,1634759456,543519602,1970238055,1851552624,740453980,1196641824,1347768146,221981011,1695090954,543519596,673212009,1027416169,1095783200,1598378834,1163084098,840968992,723531317,706754592,1196641824,1347768146,2065705299,151587341,1919968777,1718906473,741500456,1851531808,757935419,544548128,1918988403,1713399155,1730180464,1886744434,1550736499,539763310,1112364366,1932022341,1885757296,1970238055,1650553968,221980969,151587082,1769107558,677803118,539767398,1346786082,1431261767,1696617296,1394636145,1397899600,1094868805,723535187,606087200,1931488544]},{"sector":6,"length":512,"data":[1635023473,1546199138,992551534,151587341,151653757,2020958473,544371827,1545740349,543319156,168639266,1868957961,1781014642,807419168,543825979,993534012,1781213984,226172969,151587082,1769107558,677803118,539767398,628303138,740451379,2020958496,745698419,1953525536,1533374585,539697257,1025531242,540024893,540024895,724246586,221981035,151587082,1937274209,1025536628,573317664,151653691,168656137,1885735177,1953393010,845555814,1545740332,1478835060,740453980,992569632,2097744397,168626701,220868361,706742538,1769099296,1864397934,1948284021,1663067496,1851876716,1948282997,1701601889,168636019,791289865,168626701,1970300425,573076340,758869596,1142959405,1935766377,1651336563,980575596,1650553888,1864394092,1852645478,1852796261,544433001,1952540788,1634231072,543516526,1948282473,572548456,151587341,1881284640,1702061426,543515502,1629513327,1229018912,572531284,758869596,1763716397,1920234350,1769235317,1546546799,577657966,845553708,168639273,1953853449,678913119,539767398,1635022626,740438370,1635021600,1650553970,1902474079,1601052716,1918989427,1953391967,1936025970,168639273,543582499,151653680,544370534,1025534248,540749856,540811369,1953718126,1700754017,1769108590,540767077,694758187,151587341,1918989427,1600282996,1767599725,540876893,1768713837,1935373427,1953653108,1834967649,1567185774,1718562397,1952805734]},{"sector":7,"length":512,"data":[151653691,1601467760,1713928036,572533810,1650553975,539763250,1918989427,1600282996,539782765,1953718126,1700754017,1769108590,992572261,1696795149,224752492,1885735178,678655093,1635022626,1814049378,1818583649,1919907616,577657956,845553708,168639273,1919903241,543762464,993009725,1008757024,1935633952,1601331572,1920233061,997418345,1764436768,151653673,1919968777,1718906473,741500456,1952195104,1293973348,1931829070,740453980,1819176224,1534358377,1918989427,1600282996,1767599725,1932418397,1852404340,221981031,1852121866,224815460,1885735178,1953393010,845555814,1310859308,1096046431,1702124610,673215857,539828260,1650553975,790636850,1851535904,221980962,151653642,1953853542,1545742451,757939054,1766072365,1936941427,1818389861,540701285,1818386804,1868963941,1886330994,1851880037,1998615396,1751345512,1986095136,543236197,1717987684,1852142181,220340340,571017482,1835363949,1667853935,1919903264,1545740322,757939054,1752440877,544368997,1646277171,1981838441,1769173605,544435823,1748383272,1701998624,695757158,1550736430,539763310,992555622,1879640589,1683977333,845555831,1814175788,1868718452,539763249,1935764595,1650553960,1902474079,1601052716,1935764595,1852137320,1701409396,221981043,1718166282,168636448,1919903241,543762464,993009725,1008757024,1935633952,1752392044,1953391967,1936025970,724246587,168634729,1819478281,1953002337]},{"sector":8,"length":512,"data":[1834967649,1567185774,1830829344,1936288878,1819499380,1953002337,1834967649,1567185774,1718562397,1952805734,151653691,1601467760,1713928036,572533810,1650553964,740438639,1634497312,1635018867,1852661602,1601052716,1935764595,1852137320,1701409396,221981043,1818567434,168650099,1970300425,573076340,1650553964,1814049391,1818583649,1919907616,577657956,845553708,168639273,1919903241,543762464,993009725,1008757024,1935633952,1752392044,1953391967,1936025970,724246587,168634729,1885735177,1953393010,845555814,1545740332,544695412,627002957,577657971,1852645420,1953720684,1634497371,1635018867,1852661602,1566402907,1920234286,694644329,587861307,1768189541,151653734,1769107558,677803118,539767398,1281314338,1329742164,1902474332,606609525,1814048032,1868718452,790636850,1851535904,221980962,151653642,1953853542,1545742451,757939054,1766072365,1936941427,1818389861,540701285,1818386804,1868963941,1886330994,1851880037,1998615396,1751345512,1986095136,543236197,1717987684,1852142181,220340340,571017482,1835363949,1667853935,1919903264,1545740322,757939054,1752440877,544368997,1646277171,1981838441,1769173605,544435823,1748448808,1701998624,695757158,1550736430,539763310,992555622,1879640589,1683977333,845555831,1814175788,1633837428,539763249,1752392040,1600282996,745629043,1751084576,1600680801,1920233061,695428457,587861307,807429737,1711868429]},{"sector":9,"length":512,"data":[673215087,540876905,1763719984,1847606304,1935763551,1852137320,1701409396,723532659,220817707,1745422602,1953002337,1834967649,1567185774,1830829344,1936288878,1634229108,1635018867,1852661602,1566402907,1717989166,997483891,1879640589,1683977333,845555831,1814175788,1633837428,539763250,1752392040,1600282996,539782765,1634230126,1700751475,1769108590,992572261,1696795149,224752492,1885735178,678655093,1635019810,540172642,1700946284,1870078060,1851548786,1713384482,221980978,1868957962,1764237426,807419168,543760443,1601052732,1752392040,1953391967,1936025970,724246587,168634729,1885735177,1953393010,845555814,1545740332,544695412,627002957,577657971,1852645420,1953720684,1935763547,1650553960,1533963615,777870697,1769108595,992569198,1696795149,1718183022,1711868429,1852404336,1713923700,572533810,1414291278,1547780673,1970365812,539240480,1953243181,845242977,539959337,577657906,168639273,1711868429,1937012080,1851531816,757935419,1936278560,1702064993,1701601901,1948269170,1701601889,543584032,1801678700,1701601889,1936615712,1668641396,1852795252,1550736499,740303470,691168800,151653691,1601467760,1713928036,572533810,1801678700,543318388,1700946284,1870078060,1851548786,1814047778,1953194863,539779681,1869373294,1635019619,221981026,1885735178,1953393010,845555814,1310859308,1129270367,1702124619,673215857,539828260,1801678700,694313332]}],[{"sector":1,"length":512,"data":[840970016,690122332,218762555,168656138,1852377613,1634541684,690515561,226167309,1229326602,706757964,221983078,1229326602,706757964,221983334,1852377354,1718558836,1952805734,218762555,707725578,537463309,1699881002,1763730529,1752440942,1701519461,1768169593,1869182051,2037539182,151653678,221194784,151653642,1025519974,1701867296,1634038382,1763846244,1920234350,2036689710,221980962,1718552842,1952805734,1327512864,1348031568,723538757,221983008,1752631562,543517801,1952802600,1701734764,691103272,226172969,1661536522,544366952,1025536042,1852402720,168639333,1751320841,706769505,540876913,1668445299,1881698920,992419884,221980967,1762199818,1763734638,218762555,1762199818,1898455142,226172969,151587082,1025536298,811345696,168639271,1896417545,221981997,151587082,1818847351,1898455141,1881161248,539371040,544287272,656424253,2082481952,1898586236,540884256,661937191,2065705257,151587341,1898580233,656424224,992424028,151587341,762382601,168639277,2097744137,151587341,218762621,1762199818,1848123494,2036689759,1027481715,1480674592,1598836575,1162893652,168634707,1711868169,678193505,1869567010,1851878688,1701519481,573469561,168639273,1819216137,1685677419,1534354281,1701535598,777876345,544826731,1701257277,2036689780,695215656,151653691,1025536009,1768649504,1768454000,1881695604,168639273,1868957961,1764237426,807419168]},{"sector":2,"length":512,"data":[723532603,539584811,151653755,1718159625,543762464,1847606590,1600941919,1701869940,2065705331,151587341,1751320841,706769505,540876913,1818324344,677605228,1819440243,1881697893,539697193,572533809,1919250543,543452769,1701869940,1835101728,992551525,168626701,151587081,1668445299,1898477936,695214124,151653691,1762199817,1848123494,1600941919,1701869940,1027481715,1480674592,1598836575,1162893652,168634707,151587081,1767990793,1411524716,1830842223,544829025,1919250543,543452769,1953720684,1887007776,573469541,168639273,151587081,1634626671,1534289261,1819238254,1887007839,542995301,997269565,151587341,1819216137,1936090735,1851487333,1600941919,1701869940,1025531251,1717989152,997483891,151587341,1868957961,992485490,2065705275,151587341,722012425,1717989163,997483891,151587341,1896417545,1931492640,1751347828,745613426,657205024,168639273,151587081,543582473,1025536296,1431183421,539577420,1634038370,168639339,151587081,1898654473,151653691,2097744137,151587341,724240649,1936090735,222000229,151587082,1848322825,1600941919,1701869940,168639347,2097744137,151587341,543582473,1920234280,678456675,1864379504,1835101804,1767600997,1025517917,691019837,151587341,1919027465,996893029,151587341,151653757,1802268425,1768192357,1851487331,2036689759,1982750067,1702194273,1763720480,151653691,1802268425,1768192357,1851487331,2036689759]},{"sector":3,"length":512,"data":[1999527283,1752458345,824196384,151653691,543582473,1920234280,678589555,572533872,1096765519,690113612,540877088,1280070990,151653673,1819216137,1685677419,1534354281,1701535598,777876345,1952737655,540876904,168639282,1818560777,1763730803,1932009574,1953722996,745547890,1347363360,1096766047,690111556,540877088,1280070990,151653673,1819216137,1685677419,1534354281,1701535598,777876345,1952737655,540876904,168639288,724240649,1701535598,221999993,226298122,1667631370,1702063980,691103272,151653691,673212009,1936090735,1042314341,892477501,2065705270,151587341,1769107558,677803118,1701082227,539783794,543434018,1702132066,1718558835,1701867296,1684955506,1936288800,539915124,1634227232,544417652,544173940,2037277037,577657902,1718558764,1952805734,168639273,2019887369,824734825,168639273,168656137,789121549,151653674,1377839648,543449445,1948282473,1864394088,1919247474,543649385,1634493810,1852795252,168636019,791289865,168626701,540108297,1886330941,1701998181,573072481,1953721961,1919889010,992551524,1997081101,1701603688,1701259296,1852402804,828778597,2065705257,151587341,1918986339,544221728,1768693821,221996398,151653642,543582473,1868525096,544433266,1293958462,1314871361,1146244959,168634707,1711868169,678193505,1869567010,1851878688,1919885433,1769104740,1914726254,1920234341,1769235305,779316847,221980962,1795754250]},{"sector":4,"length":512,"data":[1919908197,1851470180,1685221215,1025531251,1869573152,1802532203,1730705765,1701540965,1881548921,221980969,1879640330,1931492640,2003855723,1702127976,992571432,151587341,1870226795,1530029170,1919901550,542995300,1869357117,1886743407,679044459,1802790247,640186725,992553328,151587341,673212009,555773994,1546068029,220800816,151587082,1818845542,2035491368,2019652718,1920099616,1763734127,1919885422,1769104740,1713399662,778398825,221980962,722012426,1868525099,997418098,2097744397,1711868429,1936682083,828778597,168639273,789121549,151653674,1142958624,1752440943,1634541669,1881173609,1701015410,1852404595,168636007,791289865,168626701,540108297,1886330941,1701998181,573072481,1953721961,1702047346,992551540,1913195021,1600414053,1713927017,221980977,1667631370,1702063980,691103272,218762555,707725578,537463309,1918312490,543519849,543516788,1701603686,151653678,221194784,151653642,1025520230,1886348832,573075045,1969382756,1818391655,1886221358,572533794,992551543,1762200077,1713905766,1027416114,1280658976,2065705292,151587341,1920099696,573076079,1969382756,1818391655,1886221358,221980962,1695090954,678717816,221980977,226298122,151653642,1886221668,1818386804,1713927013,221980978,1667631370,1702063980,691168808,218762555,707725578,537463309,1867325482,1948280182,1713399144,543517801,1763733364,1864397684,1768384882,543973742]},{"sector":5,"length":512,"pattern":0,"data":[1769172848,1852795252,151653678,221194784,151653642,1869440370,573072758,1969382756,1818391655,1684827950,221980962,151653642,673212009,1634624882,573072749,1969382756,1818391655,1668180270,572533794,1969382756,1818391655,1684827950,1025517858,825040957,226172969,1879640330,1869771365,1914841202,1835101797,1701060709,1952937314,1764650082,757097326,1701060670,1952937314,1865313378,690119788,151653691,151653757,673212009,1634624882,573072749,1969382756,1818391655,1886221358,572533794,1969382756,1818391655,1668180270,1025517858,825040957,226172969,1879640330,1869771365,1914841202,1835101797,1701060709,1952937314,1949199458,757100653,1701060670,1952937314,1764650082,690119534,151653691,1952805385,544109173,168639281,168656137,1879640589,678655093,1852785698,690105957,151653691,1970562418,807431794,2097810747,2573]},{"sector":6,"length":512,"data":[824183309,1648435246,225736047,537529610,1411391520,544434536,1629516649,1852121198,1668178280,1663067237,1701736300,543584032,543516788,1143821133,1345278799,1329864771,1162092627,541545794,1835888483,543452769,1667852407,1634213992,537529715,1830821920,544829025,1952540006,1936028277,1953459744,1635148064,1650551913,1763730796,1752440942,1919885413,1852401513,1142975585,1196769861,1866866734,1701060722,1818845556,1702043763,1700929637,779579244,168626701,840960525,1766203438,544433516,1919252047,2003134838,168626701,538976288,543516756,1701603686,1852383347,1768453152,1768169587,1769108595,1769239906,1629515375,221930866,537529610,1679826976,1735746149,1836016430,538976288,1701344288,1935761952,2019893349,1953850213,1701601889,537529646,1679826976,1735746149,1868770936,538976365,544104736,1702131813,1684366446,1919252000,1852795251,1768453920,1763731555,1818304627,1142976371,541674832,1918990177,168636005,538976288,1969382756,2020879975,538976372,543236128,1701209458,1668179314,1969692773,778396777,538970637,1768431648,1919906931,2020879993,538976372,1953720684,543584032,1851877475,779314535,538970637,1701978144,1701667937,1954051118,538976288,1936287860,1818846752,168636005,538976288,1768779876,842230883,538978862,842211360,1953063469,1297105952,1818435657,1953391977,1835103008,543517808,1735357040,778920306,168626701,538976288,543516756]},{"sector":7,"length":512,"data":[1819045734,1852405615,1768300647,544433516,543519329,1869835361,1918988320,1718558836,1701344288,1936286752,1651077748,1869182069,1646275694,168653941,538976288,2036689012,543519271,2037149295,1701146144,543450468,1679844969,1735746149,1836016430,544370464,1969382756,1663989863,1763732847,1869881459,543515168,1969382770,980708457,168626701,538976288,1969382756,1935748711,538976365,1933647904,1651336563,544367980,1920298867,1663067491,543515759,544370534,1752461154,1650811936,1663985525,1629515119,1679844462,1735746149,1868770936,168636013,538976288,538976288,538976288,538976288,1933647904,1651336563,1998611820,543716457,1935759178,1919885421,1396788512,1932009549,1830839653,778398561,695492962,537529646,1679826976,1735746149,778855028,543387241,1668180256,1701082476,1818846752,1868963941,1701060722,778532194,745370465,1852793632,1852399988,1635000435,1936026722,1919903264,1701344288,538970637,538976288,538976288,538976288,538976288,1702064993,1701601901,1684955424,1634628896,1835365235,543517794,1835888483,1935961697,537529646,1713381408,1936684144,1764651636,538993518,1668180256,1701082476,1818846752,1868963941,1701060722,778532194,745370465,1852793632,1852399988,1752440947,1869750373,1852404853,1869881445,538970637,538976288,538976288,538976288,538976288,1986948963,544502373,1818632289,1769234799,1882023790,1953393007,1836412448,544367970]},{"sector":8,"length":512,"data":[1092644724,1229538131,537529646,1763713056,1920234350,538978862,538976288,1886284064,1679848565,543257697,544370534,1635019629,1936026722,537529646,1830821920,1650553963,779314540,538976355,1881162528,1919381362,1948282209,1868767343,1818849389,1752440933,1852383333,1852990836,1763732577,1920234350,1769235317,1931505263,168653925,538976288,538976288,538976288,538976288,1635000352,1936026722,1953392928,1869815919,1701016181,1818846752,1701060709,1952937314,1764650082,221143918,538976266,1801547040,1633824357,538976372,1646272544,1751348321,1818846752,1869881445,1769300512,1679844460,1735746149,1836016430,1684955424,1650811936,779642741,778923875,538970637,1634541600,778265963,544498018,538976288,1668571490,1768300648,1948280172,1969365103,543452265,1635019629,1936026722,1702389038,218762542,537529610,1092628019,1684366436,1936280879,1735289203,1634027040,1701999988,218762611,1629495306,1750343726,1679848297,1735746149,544367975,1702131813,544433262,1143821133,1142969167,1196769861,544106784,543516788,1819045734,1852405615,1635197031,221934457,537529610,539828256,543516756,1702064993,1701601901,1851859058,1768169572,1936941427,1818389861,1931506277,1869639797,1629516914,1763732588,1920234350,1769235317,544435823,1818455657,1852400757,1346773095,537529685,538976288,1953721961,1952675186,1936617321,1919903264,1953384736,1663069285,1936746856,1919448096]},{"sector":9,"length":512,"data":[1751610735,1701344288,1852133408,1836411252,1869762592,911222816,1696607273,1885692792,1868963956,1752440946,537529701,538976288,542657869,1953721961,1952675186,1936617321,1935747104,1919903264,1111835680,743982933,1481461024,544434464,1953653104,1819042153,1970479225,1919905904,543450484,1668180339,829825125,691548462,537529646,538976288,543516756,1702064993,1701601901,1851859058,1768169572,1936941427,1818389861,1763734117,1919903342,1870209133,1718165621,2037276960,1936615712,1668641396,1852795252,225667360,538976266,1852383264,1919971425,1769107567,543519841,544370534,543516788,1920103779,544501349,1668248176,1869837157,168636018,538970637,1411394848,1663067496,1701999221,1881175150,1701015410,1919906675,1868965920,1752440946,1970282597,1936683122,1864397669,1935745126,1651336563,544367980,543452769,1634953572,1835365235,1919249506,538970637,1998594080,1768845921,695428974,1851876128,543515168,1818453348,1684370017,544175136,1931502946,1952804207,1735289192,1936483616,1769349221,1752440929,1868963941,2003790956,543649385,1835888483,1935961697,218762554,538976266,538976288,1528851744,1931500920,1126200421,1177507152,1830835536,778396783,538970637,538976288,538976288,538976288,540876848,909652024,942684207,824192056,941636896,909652272,825243695,539768888,540876850,942813240,857746486,941636896,909652784,537529644,538976288,538976288]}]],[[{"sector":1,"length":512,"data":[538976288,1025520672,875575328,539768376,540876853,1953391952,745370985,1025521184,1852133408,1836411252,1869762592,1919887392,1952541728,774468197,538970637,538976288,538976288,538976288,540876884,1752457581,1886348064,1701015410,1919906675,544434464,808984673,540489778,1819176744,1635131513,543451500,1663067753,1701999221,168653934,538976288,538976288,538976288,538976288,1919950880,1936024431,544370547,1629516649,858798112,774452792,538970637,538976288,538976288,538976288,540876878,1752457581,1886348064,1701015410,1919906675,544434464,1702060641,221148270,538976266,538976288,538976288,1847599136,1918967919,1701672295,1025537134,1769107488,1663071342,1701999221,1126200430,1177507152,1948276048,1936027769,218762542,538976266,1680285741,656419879,539764592,539456551,543452769,539456807,543519329,1869903201,1769234797,1819042147,1701978233,1952540016,1763730533,543236198,1851878498,1768693867,1763730798,537529715,538976288,1702129253,778331506,168626701,757080096,1650730784,656419879,539457380,543452769,660890663,1936286752,2036427888,2036473971,745760116,1919907616,1864397668,2003050610,1935962735,1750343726,1634476133,1679848563,1819308905,168655201,538976288,1887007776,1702043749,1952671084,1763730533,1937055859,1713398885,1931506287,1702060661,1852142961,1680285812,1868767271,1851878765,221148004,537529610,539828256,661480487]},{"sector":2,"length":512,"data":[1936286752,2036427888,1752440947,1329864805,1701650515,2037542765,1852793632,1819243124,1869373984,673213283,692208461,1634231072,1629515369,1948279918,168650088,538976288,1920295712,1953391986,1347637280,218762542,538976266,1701978157,1953720679,1847620197,1936026977,1851876128,543515168,1684370293,2037276960,1919248503,1752637541,543519333,1970151521,1919246957,544434464,1701869669,1684370531,225665312,538976266,1852383264,779384176,1919895072,1635280160,1701605485,1965170746,980640544,539127913,572551791,1935941732,577336122,218762542,538976266,1915166765,544760608,875770417,1634541607,1700929657,1702065440,1852383332,1634038899,1718558820,1986095136,543649385,1881173876,1948284021,656434536,875770417,1852776487,168648992,538976288,1885696800,1952543329,1768693861,221144430,537529610,539828256,1914728999,1936287589,544367988,1818326619,660432245,1667457312,1937010789,758264608,544500066,1768383858,1919251571,1835101728,673215333,544370534,542462019,942878776,774449974,168626701,757080096,1852974880,1768169511,1634496627,1176531833,1914721616,1936287589,1936876916,218762542,538976266,1915166765,1931487096,1668573559,544433512,2004116834,544105829,1647130161,1629516905,857760878,1768041778,1701978228,1953720679,1679848037,1819308905,673216865,544370534,542462019,942878776,774449974,168626701,757080096,661137184,1851876128,1851877408]},{"sector":3,"length":512,"data":[543517796,1919907684,1635131492,1936029036,218762542,538976266,1764171821,539764599,660891943,1864835116,1629497207,656434286,539452527,1684104562,1769109295,1629513076,1380931360,1919885380,1331119136,1981826130,1702194273,1869768224,1869885293,1881170208,225735279,538976266,1464082464,541348431,1970037110,1914729317,1769304421,1629513074,858798112,539702840,777343043,168626701,757080096,1919952672,1802706983,544436329,544503151,1948280431,1663067496,1701999221,1931506798,1869767285,1852404853,2036473957,1869770784,1684366691,543649385,1953718640,1701344288,2019913248,537529716,538976288,743720274,1413829152,1919885382,1163020576,1752637524,543712105,1847620457,1847620719,1702130533,1769414756,1970235508,1953702004,1768976495,221144942,537529610,539828256,544044071,657554480,1952805664,1920213107,543515489,1835888483,543452769,1701080941,540024876,1919950909,1936024431,1313415283,673215316,1634100580,695495797,537529644,538976288,540876849,1735289203,1932354924,544236916,1934904905,1752442912,1397563493,1397703725,1111835680,1663059797,1634757999,1818388852,1869422693,774464868,168626701,757080096,1920476960,1818304551,1937207148,1634038304,1668246636,1869182049,1718558830,544104736,542330181,1684955496,1629513068,656434286,539451768,1869376609,1629516663,1668246636,1869182049,1718558830,225337632,538976266,1696735264,2037674093,1296375842]},{"sector":4,"length":512,"data":[1634213971,1701602414,1769416736,2048944244,544174693,1701273968,757082483,1953849888,1819176736,1718165625,544104736,541936965,808334454,544434464,1936028272,779382373,168626701,757080096,543582496,542330692,544432488,544499059,544437353,1329884745,1818632275,539780961,1430406468,1769414727,1629514860,1684631414,1769174304,1226860398,840987758,168650801,538976288,1953392928,1634628197,746155116,1768453920,1629513827,2003790956,1769152627,1701603182,1702130477,1852403824,1752440935,1735749490,1329864808,1868767315,221144420,537529610,539828256,1852139607,1768907808,656435054,1969382756,540811367,1701603686,1679830055,1735746149,1818851104,1869488236,1634214004,1763731310,1953046630,1634038304,1936025699,544104736,543452773,168650351,538976288,1818846752,1700929637,1701998438,1668179232,1953396079,1852404325,543236199,539455783,1835888483,778333793,168626701,757080096,1768444960,1701060723,1734833506,1931506277,1936029281,1684955424,1936028192,1701998452,1752440947,1919950949,1634887535,544417645,1953394499,762081138,1851859011,1919098980,1667855465,168651873,538976288,1920099616,1763734127,1919251566,1953527154,1881156723,1769369458,1735289188,1919903264,1952801312,544367988,1819243369,1869182049,1700929646,1701148532,1752440942,1701060709,1734833506,168653413,538976288,1684955424,1701344288,1869770784,1835102823,1768251936,1679845230,1735746149]},{"sector":5,"length":512,"data":[778331495,168626701,757080096,1701336864,543236206,1969382756,1684367207,1869770784,1835102823,1919251488,1634625901,745760116,1111835680,1998604117,543976553,1886611812,544825708,543516788,1953069157,1685021472,537529701,538976288,1635017327,1684369001,1869768224,1850286189,825368692,1969627240,1769235310,874540655,539912260,543516756,1751607656,1954112032,1936269413,1701344288,1769497888,2037653620,168650096,538976288,1026566176,1836216174,539782241,1950563633,1127050354,1026695212,1953067619,1818321769,1920099616,539783791,1398029619,1629497682,1948279918,1814062440,1646294895,543519865,1948283753,168650088,538976288,1952805408,544109173,1701080931,218762542,538976266,1767252013,544171364,1701273968,1768711712,1852403824,1936269415,1886745376,1953656688,539911269,1852139607,1701344288,541470496,1953068915,1763731555,1937055859,1763730533,1702109294,1830843512,224748655,538976266,1752440864,1948282469,1679844712,1735746149,544367975,1819044215,1702065440,1734438944,540090469,1818847351,1919950949,1634887535,1970217069,1953853556,1852139296,1818325605,1965062508,225666419,538976266,1634738208,807429479,1750343726,1982275685,1868767271,1851878765,1769414756,1931504748,544698216,543516788,1735357040,544039282,1886680431,1864397941,1634738286,807429479,218762542,1646272522,541138990,1229803588,1635213600,1981834610,1769173605,1864396399,1752440934]},{"sector":6,"length":512,"data":[1701060709,1734833506,539783781,1430406468,539777095,1629516649,1818845558,1701601889,1769414700,1948280948,168650088,538976288,1819239968,1769434988,1629513582,1953064036,1634627433,1701191788,1920300129,221934437,537529610,539828256,1769170274,544433508,1818322290,1685024045,1885413477,1667853424,1869182049,1763734382,1633886324,1701060718,543651170,1752461154,758526240,544500066,543452769,1647129139,168653929,538976288,1297105952,1818435657,1953391977,1411395187,1701060719,543651170,1229803588,1768710944,1937010277,1142972704,541674832,1953722216,1935763488,544175136,1763730786,1635021678,1684368492,537529646,538976288,1953719636,1998611557,543716457,1937204000,1768779876,1684545580,745106800,1852397344,1310740568,1296324180,842211372,778925170,544098592,1165193028,1629517165,168649838,538976288,1852397344,1937207140,792017184,1294940217,1142956101,1646285647,1936029807,544500000,1914729321,1769304421,543450482,1931505524,1818717801,1953705317,1948282981,1970238056,168650855,538976288,1701344288,1768843552,1818323316,1769435936,543712116,1881173876,1702129522,1684370531,1685024045,1696607333,543519596,1430406468,1998608455,543976553,1702063980,1852793632,1819243124,538970637,1864376352,1752440934,1701060709,1734833506,221144421,537529610,539828256,661218343,1768169530,1634496627,1852383353,1920099700,544501877,1952671094,1932030575,218762537]},{"sector":7,"length":512,"data":[538976266,1680285741,540682092,1886611812,544825708,542393420,1668506980,1953524082,1932030575,1764237353,1919950958,1667593327,761554292,1701080941,1819176736,168634745,538970637,656420128,975665252,1936286752,2036427888,1954047264,1701080677,1701650532,2037542765,1701980192,1981834337,1226858857,824210542,539781173,943548513,774465591,1902465568,1701996917,224469107,538976266,808984608,540424242,777343043,2019829536,1936269351,1953849632,1952542063,1818321769,1914730860,1634037861,543450484,1629513321,1634492960,1814063982,543518313,1696625513,1919251566,221144165,537529610,539828256,661484071,1936286752,2036427888,1296900211,1701978200,1953720679,779317861,168626701,757080096,1852974880,1768169511,1634496627,1176531833,1914721616,1936287589,1936876916,544106784,1634038306,1818386788,1713381989,1634562671,168636020,538970637,656420128,661810802,1936286752,2036427888,1346773107,1701978197,1953720679,544436837,1914728041,1713403745,1634562671,168636020,538970637,1327509091,1869182064,1819042158,1864379513,1830839662,1646295393,1684826485,1701868320,1818323299,1920299053,1702063984,1919252000,1852795251,1718558835,1111835680,221136725,538976266,1968316448,1830953070,543517537,1920235621,1948263009,1969365103,543452265,1835362420,1870209083,1819027317,1701146144,1752440932,1464475749,544043873,1702064993,1701601901,537529714,538976288,544370534]},{"sector":8,"length":512,"data":[1970479201,1936024419,1819633267,1853190688,1750343726,1684086885,1769236836,1818324591,1919252000,1852795251,1918967923,168639077,538970637,1142959392,1196769861,1127105624,540691791,1702240353,1869181810,1752637550,543712105,1936027492,544483182,1802465128,1953384736,540094496,543452769,544501321,539898672,1936287828,538970637,1629495328,2003790956,1869881459,1650811936,1948280693,544434536,1936876918,544108393,1752459639,572547360,1836216174,539126881,1936876918,544108393,1142974063,1196769861,218762542,538976266,1162092589,1481069890,1329802821,1629502029,1919252000,1852795251,1768453920,1746954339,1936420719,1953392928,1970434661,544437360,539768368,543703856,543452769,543704112,168652393,538976288,1634038304,1869426028,539911524,1936287828,544434464,544370534,1634869293,757097842,1935762208,1998615397,544105832,1751348595,1668834592,1769238629,544435823,226058605,538976266,1668227104,544372067,1914728041,762077541,1701080941,1886413088,1633905004,1852795252,168636019,538970637,1142959392,1196769861,1127106136,540691791,1702240353,1869181810,1752637550,543712105,1802465128,1852383347,1920099700,544501877,543699251,1881173609,1702129522,1684370531,1685024045,537529701,538976288,543452769,1852139636,1785033248,1937007461,2037276960,1953784096,1953525093,544175136,1768189805,1696627046,1885692792,1852795252,1667593760,1936879476,741421088]},{"sector":9,"length":512,"data":[741552160,538970637,807411744,1629513796,807429230,539912261,1936287828,1819042080,544438127,1679847284,1735746149,1397703712,1954047277,1701080677,1885413476,1667853424,1869182049,1948283758,225730920,538976266,1869422624,2036754788,1701344288,1981834611,1869898597,221148018,537529610,539828256,1430406468,1498623559,1629502035,1919252000,1852795251,1634235424,1936269428,544106784,542330692,1769366884,1679844707,1702259058,1868963954,1952542066,1750343726,168653673,538976288,1918989856,1953390953,1851876128,543515168,1684370293,544175136,1969382756,1953439847,544367976,1769366884,1679844707,1702259058,539915122,1919248468,1918967909,543236197,225928550,538976266,1701847072,1768715619,1953067617,980641129,1836016416,1684955501,541991027,543452769,1918967889,1701978213,1952671082,539780197,1835888483,1935961697,1629506592,1461740654,1851876128,1646294055,537529701,538976288,1684370293,544175136,1684107116,544370464,1953067639,1768300645,544433516,543452769,1702129257,1886745202,909123700,1852385312,1768710518,1886330980,1701080931,1668834592,1769238629,220819055,538976266,1936269344,1869572128,778331499,168626701,778313760,1701336096,1819239968,1769434988,1713399662,1970561381,544433522,1293969007,1329868115,1162092627,541545794,543519329,544501614,1819307369,1852140901,979658100,168626701,757080096,1634683936,1735289188,543584032,1480935470]}],[{"sector":1,"length":512,"data":[1818846752,221148005,218762506,775168010,2003781664,544175136,1969382770,543452265,543516788,1430406468,1329802823,1162096461,1481069890,1297040174,1852400160,1701409377,218762611,538976266,1262570784,1094856261,1936269396,1953392928,1701080677,1868963940,1701978226,1818850658,1735289188,1701344288,1650811936,1701275509,1768038514,1769103726,539915109,224749652,538976266,1667592736,1701670255,1684366446,1869575200,1868963948,1752440946,1763734377,1752440947,1464475749,544043873,1702064993,1701601901,1092628082,1919251564,1769234798,2037146998,537529644,1293951008,541938497,544104803,1965057378,744777075,1953849888,1701344288,543236206,1647130161,1327527017,1814054477,1701539433,1769414770,1646292076,1701716069,1684366437,218762542,537529610,1126182453,1920561263,1952999273,168626701,538976288,1936287828,1869770784,1835102823,544434464,2037411683,1751607666,744777076,1953849888,1701144096,1919295596,1948280165,1937055855,1953046629,544432416,544567161,1752394103,537529646,1176510496,1713402479,543976565,2037411683,1751607666,1868767348,1953064046,1936617321,1702043692,1752440933,1768300645,1679844716,1735746149,1836278062,218762542,538976266,1969311776,1867915372,543257706,960049448,808594741,220803888,538976266,1684947232,1935762802,1701988128,673212515,909127730,825242157,168634673,538976288,1852990806,1109421679,1802465138,841490547,758329648]},{"sector":2,"length":512,"pattern":0,"data":[909193266,658729]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[1701060643,2020046178,1850018317,1668178280,1142973541,1196769861,1919903264,541282336,542330692,543452769,1143821133,168645455]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]]] \ No newline at end of file +[[[{"sector":1,"length":512,"pattern":0,"data":[1351679723,777210435,4674127,66050,-1610584062,260357,131081]},{"sector":2,"length":512,"data":[67108857,1610940480,8390400,184590345,-536018752,16781056,318840849,1611989312,25171713,453091353,-534969920,33562369,587341857,1613038144,41953026,721592361,-533921088,50343682,855842865,1614086976,58734339,990093369,-532872256,67124995,1124343873,1615135808,75515652,1258594377,-531823424,83906308,1392844881,1616184640,92296965,1527095385,-530774592,100687621,1661345889,1617233472,109078278,1795596393,-529725760,117468934,1929846897,1618282304,125859591,2064097401,-528676928,134250247,-2096619391,1619331136,142640904,-1962368887,-527628096,151031560,-1828118383,1620379968,159422217,-1693867879,-526579264,167812873,-1559617375,1621428800,176203530,-1425366871,-525530432,184594186,-1291116367,1622477632,192984843,-1156865863,-524481600,201375499,-1022615359,1623526464,209766156,-888364855,-523432768,218156812,-754114351,1624575296,226547469,-619863847,-522383936,234938125,-15851295,1625624143,243328782,-351362839,-521335104,251719438,-217112335,1626672960,-985329,-82861831,-520286272,268500751,51388673,1627721793,276891408,185639177,-519237439,285282064,319889681,1628831729,293672721,454140185,-518188607,302063377,588390689,1629819457,310454034,722641193,-517139775,318844690,856891697,1630868289,327235347,991142201,-516090943,335626003,1125392705,-247131071,344016895,1259643209,-515042111,352407316,1393893713,1632965953]},{"sector":3,"length":512,"pattern":0,"data":[360797973,1528144217,-513993279,-958699,1662394721,1879048177,377579286,1796645225,-268495167,385969942,1930895729,1635063617,394360599,2065146233,-511895615,-950505,-2095570559,-242935743,412090367,-1961320055,-510846783,419532568,-1827065857,1637161281,427923225,-1692819047,-509797951,436313881,-1558568543,1638210113,444704538,-1424318039,-508749119,453095194,-1290067535,-239730703,462422015,-1155817031,-507700287,469876507,-1021566527,1640307777,478267164,-887316023,-506651455,486657820,-753065519,-237691583,495048703,-618815015,-57919,255]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"data":[67108857,1610940480,8390400,184590345,-536018752,16781056,318840849,1611989312,25171713,453091353,-534969920,33562369,587341857,1613038144,41953026,721592361,-533921088,50343682,855842865,1614086976,58734339,990093369,-532872256,67124995,1124343873,1615135808,75515652,1258594377,-531823424,83906308,1392844881,1616184640,92296965,1527095385,-530774592,100687621,1661345889,1617233472,109078278,1795596393,-529725760,117468934,1929846897,1618282304,125859591,2064097401,-528676928,134250247,-2096619391,1619331136,142640904,-1962368887,-527628096,151031560,-1828118383,1620379968,159422217,-1693867879,-526579264,167812873,-1559617375,1621428800,176203530,-1425366871,-525530432,184594186,-1291116367,1622477632,192984843,-1156865863,-524481600,201375499,-1022615359,1623526464,209766156,-888364855,-523432768,218156812,-754114351,1624575296,226547469,-619863847,-522383936,234938125,-15851295,1625624143,243328782,-351362839,-521335104,251719438,-217112335,1626672960,-985329,-82861831,-520286272,268500751,51388673,1627721793,276891408,185639177,-519237439,285282064,319889681,1628831729,293672721,454140185,-518188607,302063377,588390689,1629819457,310454034,722641193,-517139775,318844690,856891697,1630868289,327235347,991142201,-516090943,335626003,1125392705,-247131071,344016895,1259643209,-515042111,352407316,1393893713,1632965953]},{"sector":6,"length":512,"pattern":0,"data":[360797973,1528144217,-513993279,-958699,1662394721,1879048177,377579286,1796645225,-268495167,385969942,1930895729,1635063617,394360599,2065146233,-511895615,-950505,-2095570559,-242935743,412090367,-1961320055,-510846783,419532568,-1827065857,1637161281,427923225,-1692819047,-509797951,436313881,-1558568543,1638210113,444704538,-1424318039,-508749119,453095194,-1290067535,-239730703,462422015,-1155817031,-507700287,469876507,-1021566527,1640307777,478267164,-887316023,-506651455,486657820,-753065519,-237691583,495048703,-618815015,-57919,255]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"data":[1145589317,1196769861,136323104,0,0,1610612736,780,0,1430406468,538976327,541938497,0,0,1291911168,149653,230198,1430406468,538976327,541937475,0,0,1291976704,14895253,20816,1430406468,538976327,542398548,0,0,1568735232,16271500,27998,1430406468,1279415367,541281865,0,0,-1686962176,18106475,51176,1430406468,538990663,541937475,0,0,1291976704,21383317,26198,1229803588,842222659,541938497,0,0,1219166208,23087246,3130,1229803588,842222659,541415493,0,0,1219231744,23349390,863,1330925638,542266451,541281865,0,0,1939603456,23414140,7908,1414744392,542724687,542398548,0,0,1295319040,23939221,18800,1414745673,538976338,542721355,0,0,1496186880,25183338,5740,1414745673,538976338,541348431,0,0,1467547648,25576505,576,1414745673,538976338,542393683,0,0,-1698955264,25643115,9309,1162037580,541414222,538976288,0,0,1854930944,26298499,35141,1162559821,538976288,542392642,0,0,-1688469504,28591172,1320,1162559821,538976323,542392642,0,0,1952251904,28722228,335]},{"sector":9,"length":512,"pattern":0,"data":[1096043341,1397050434,538976323,0,0,1849688064,28787802,31542,1145128274,538985805,542398548,0,0,-1383137280,30820495,7118,1145128274,538985805,538985549,0,0,1854930944,31279235,48,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229]}],[{"sector":1,"length":512,"pattern":0,"data":[229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229]},{"sector":2,"length":512,"pattern":0,"data":[229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229]},{"sector":3,"length":512,"pattern":0,"data":[229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229]},{"sector":4,"length":512,"pattern":0,"data":[229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229]},{"sector":5,"length":512,"pattern":0,"data":[229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229,0,0,0,0,0,0,0,229]},{"sector":6,"length":512,"data":[538976315,1430406468,1396780615,1632444493,1244622195,1836278103,1936941344,1818389861,1931506277,1668445551,1868963941,1851859058,1752065312,1701015137,1818435684,543518319,1142974063,1196769861,1297040174,154864141,1936876886,544108393,842214961,807414881,825372468,825242159,218762550,538983178,544166944,1818850658,1162092644,776426818,743264067,1702065440,990514490,1635215881,757099891,1297104708,757084221,544106850,544163373,1969382756,1868770919,1701060717,778532194,225276769,168639242,538976315,1646292820,1684826485,1111835680,777537365,743264067,1701344288,1297105952,2002853961,543519329,1936876918,544108393,1679844975,1735746149,1937055788,168639077,2003437883,544043873,1346323501,540097869,1852400173,1866870048,1650811936,779642741,544042851,1969382756,1935748711,990514541,540740109,1867784224,1769300512,1142973548,1196769861,1398362926,1752440876,1701060709,1701013878,1769104416,544367990,1936876918,544108393,1679844975,1735746149,1937055788,168639077,2003437883,544043873,1346323501,540032333,1380205613,1380275785,757084477,544106850,544163373,1969382756,2037591655,1701060723,778532194,225276769,990514442,1027423520,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,990514493,540740109]},{"sector":7,"length":512,"data":[2037411651,1751607666,1663574132,959520809,841823545,540225584,1969311776,1867915372,224490602,168639242,1213472827,1330847813,1096242246,1226851666,1380982867,1145656911,572539973,1226855233,539763283,1213483351,542397775,1381122391,1498697281,541478688,542723649,1145981259,1480925228,1397051984,1380917331,540740109,1280331081,742671689,1129204000,1229215052,1109411662,1310741589,1277187151,1414090057,1411400773,1213472847,1096228933,1312903762,1397049684,541478688,1129465165,1414414664,1279869505,744051785,540740109,1314146630,542331717,542265158,1095770177,1128879186,1380011093,1381322784,1163087696,1145979168,1313820192,1380339273,1162301001,1414415693,1313415214,542068256,1313166917,1213407316,541871169,222644308,1142962954,1279612485,1380274255,1161961555,1095322656,541412418,542265158,542723649,1229016131,1142959181,1195461953,1327518533,1414471762,542262600,1111574860,1414089801,1461726297,1213482312,168645189,1313415227,541999392,1230259009,1327517263,1329799238,1095914574,539776067,1414680404,542265120,1162368079,1397315410,1092627525,1230195026,1176520526,743264082,1414876960,541478688,1226854991,990514510,1313817376,1413694798,542003017,1213483351,1162368032,1179603744,1380013908,1380917317,1162368032,1163089184,542265120,1162368079,1162092626,1313426497,1226855239,1213472846,1330847813,1096242246,221136210,168639242,1027416123,1027423549]},{"sector":8,"length":512,"data":[1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,168639805,1632247867,1952802928,1629502056,1696623724,1852142712,1852795251,1634541683,1646290276,1701650553,1701994784,1651855392,543385964,1634561860,539913833,1936287828,1701798944,1869488243,990514548,538976265,1701209697,1864397923,1919248500,1886348064,1734963833,779318376,540740109,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,540740109,2037411651,1751607666,1663574132,808591401,841823025,540422448,1852990806,1109421679,1802465138,990514547,1027423520,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,1027423549,218762557,1886325002,1852795252,1935762208,1885433189,1852796474,151653733,1769238639,1881173615,979595122,1986622064,224752737,1862875914,1869182064,1869488238,1886218860,1852128009,1701601889,544175136,543516019,543516788,1919903859,1969889396,1696624749,1852142712,1852795251,218762611,156451338,1696604192,941651313,1096026637,538970434,1970365728,168638752,537478732]},{"sector":9,"length":512,"data":[1902452768,808525941,1380125197,538976265,544567653,168637233,1330401108,542262615,1696604192,840988017,168650800,1347768148,542262608,1696604192,807433585,224945764,1431262218,1380274256,538990431,544567653,1684431920,168650854,1296387661,1179602511,1696604243,840988017,1866139960,1702061670,1852383348,1953853216,544503152,1701734764,1701345056,1830839666,1869440366,1935894894,1635021600,673215602,1634953572,1835365235,1919249506,218762537,543582474,223170623,1195525130,1162690894,538976288,544567653,1111835687,660096853,1330514445,1163155525,1380271182,1970365728,990458144,661548900,1935745140,1701672307,1297105952,1869094985,1763734643,1970037614,544433508,1329864801,2019893331,1684956532,168653413,961431895,1347769176,1696604240,824210801,1986083593,543451503,1802465128,543649385,1229803588,1953391904,1998616946,544105832,1852732786,543649385,1461743209,2017029737,1329859085,1431127379,538976265,544567653,1631258929,1684631414,1869572128,1735289195,1297105952,1852121161,544830068,1852139639,1853190688,1735289198,544106784,1165193028,168654189,1128486981,542132563,1696604192,824210801,1768176393,1634496627,1396908153,542132538,1919248503,2019893349,1953523043,544108393,1969447791,224683378,1397310474,1330595920,538976331,544567653,1681590577,1819308905,572553569,1229803588,1953391904,1746958706,1701539695,774778468,1124732194,1212372033]}]],[[{"sector":1,"length":512,"data":[810831433,1902452790,154214517,1952539451,1696622691,1885692792,1852795252,1748381728,544106784,1818322290,1685024045,1141509477,1347769176,538970448,1970365728,990458144,1886418291,544502383,1663064132,1634561391,168649838,1330925638,542266451,1696604192,824210801,1970486025,1919905904,1701978228,1650549857,1713399148,1952542572,761753193,1852403568,1701978228,1953720679,225669733,1481461002,1347442003,538976288,544567653,1933248817,1869639797,1293972594,1931499597,1768121712,543385958,1835888483,1935961697,1330448909,1163085124,1145914196,1970365728,990458144,1886418291,544502383,1629517901,1293968494,1663072323,1634561391,225666158,1936483594,1141509477,1095649090,538985805,1902452768,1143414901,1196769861,1141509415,1347769176,538970448,1970365728,168636448,1330925638,542266451,1696604192,807433585,1296894477,1347769176,538976336,1970365728,168636448,1162104653,1129596243,1696613453,807433585,1852115469,224815460,1158286602,1296257869,538970436,1970365728,990457888,1886418291,544502383,1663072344,1634561391,225666158,1163089162,155272275,1696604192,824210801,1937062665,1146298469,1869881409,1952802592,1952805679,1347637280,544106784,1818322290,1685024045,1426722149,1329874259,1497713491,1902452768,154214517,1702065467,1397703712,542721355,544370534,1970302569,1718165620,1634692128,224683364,1096045322,1230195523,538976346,544567653,1747988530]},{"sector":2,"length":512,"data":[1701067529,661091682,1953702003,543908705,1702521203,168626701,1684956777,1126196837,1212372033,810831433,1124732209,1212372033,810831433,1902452785,154214517,1952539451,1226860643,807425102,1932009521,1818717801,1953705317,220819557,1684956426,168650345,1684956777,1126196837,1212372033,810831433,1124732211,1212372033,810831433,1902452787,154214517,1952539451,1226860643,807425102,1646796851,1801545074,1852403568,168634740,1768189541,1762266470,1701080678,1094918246,1229472596,909136974,1094912525,1229472596,909136974,1970365728,990457888,1668571491,2019893352,1953523043,544108393,543700528,1914728041,762077541,1701080941,1852115469,224815460,1852205322,543581540,1129595203,1414416712,168641328,1129595203,1414416712,1696613168,807433585,1633893129,543712116,1701017701,1869182064,1127227502,1852383336,1634038304,1869426028,168650084,1768189541,1762266470,1701080678,1094918246,1229472596,1144017998,1094912525,1229472596,1144017998,1970365728,990457888,1668571491,2019893352,1953523043,544108393,543704112,1914728041,762077541,1701080941,1852115469,224815460,1852205322,543581540,1129595203,1414416712,168636723,1129595203,1414416712,1696608563,807433585,1869101833,1142975343,541674832,544501353,224932147,1684956426,168650345,1684956777,1142974053,1163282770,1141509458,1163282770,538970450,1970365728,990457888,1886418291,544502383,1646292852,1869357157]},{"sector":3,"length":512,"data":[1684366433,544432416,1769366884,1679844707,1702259058,1852383346,1313817376,776423750,223566163,1684956426,168650345,1229720077,1230980430,1162633038,1902452814,858857589,1815808304,1952935525,1718558824,1852402720,1852399461,1852385312,1685417059,543649385,1684104552,1931506277,1717990772,218762537,757938954,1397760045,1718558800,1952805734,218762611,1095516426,156254547,544567653,543699504,1684291899,1936942450,543584032,1953718604,1734701856,1953391981,1819042080,1952539503,1948279909,1919950959,1634887535,1409944941,156649808,544567653,543711536,1919243323,1634625901,1344300404,1919381362,1226861921,1919251566,1953527154,1667585568,544370548,1953392936,1748120096,1124732201,156649795,544567653,543712560,1852785467,1819243124,1226851104,1919251566,1953527154,1667585568,544370548,1953392936,1748185632,1124732201,156649797,544567653,543699505,1769095995,1633905012,1917132908,544370546,1702129225,1886745202,1700143220,1919906915,1852385312,875700340,168634728,1163018576,1695110222,824210801,991979574,1835492691,544501349,1881171567,1852142177,1397760116,1393167696,1447121744,1970365705,1751462432,1632844576,1948280182,1931502952,1801675124,1768910880,1919251566,1919248416,1141509477,1695105364,941651313,991979568,1735357008,544039282,1969713761,1953391981,1629502323,544174956,1684370293,544175136,1919906931,1768300645,1634624876,673211757,1835212878]},{"sector":4,"length":512,"data":[168634724,758843917,1830825261,1830839662,1869767521,1937055788,1713398885,1948283503,1629513064,1835365235,1919249506,1701735712,1768845165,1948283747,1701601889,168626701,543518317,1919115629,1635131503,1379545708,539775301,1954112100,1446671205,1380012609,1091177799,1094995283,1931493716,1701668709,168653934,1381127491,542328399,220471357,1718159626,1008755310,1954112100,222196581,1679821066,1650729058,1936028793,1695091213,1718183022,1396771341,1413563469,1852121153,168653668,544695305,1381127491,542328399,1935745069,1650553965,1313671693,1635133023,1696608876,606106993,1830825248,1936288878,1946815860,1953722477,1633886322,1920234356,572603424,1396714558,1951621749,1635133554,824980076,1767063596,1951622522,1635133554,757674604,1009527089,556540449,1076641319,1398961491,1982362228,741502049,2053722944,1920226149,1818326568,740895026,1042751804,942357548,222193712,1650723082,1886221344,225604723,1852115210,168652132,1195444749,1830834258,1869767521,1836412448,1818653228,151653732,1953069157,842801261,543698996,1970151467,540551789,1718755371,222192748,1852115210,168652132,1635125773,1851877746,1634541684,544174691,1868787823,1916429668,539783525,981034347,745629042,1668246560,539779691,1751343469,224751209,1297301770,1096040772,1734701856,1953391981,1762200077,543321702,1668246588,222192235,1679821066,1869357154,224553827,1852115210,224815460]},{"sector":5,"length":512,"data":[1718159626,1008755310,1751343469,1046834793,537463309,1830838884,1768448865,168650094,1684956425,168650345,1718511969,540876911,1668312872,694510703,1092626976,1330466131,539697220,226059627,1650723082,1195984928,1767972936,745498222,1464814624,1852399904,168652646,1145918273,541152321,1935961701,1695091213,225272942,1711934730,1918989936,1953390953,1667329312,1864396658,1685021552,1797270629,539785573,1650746465,1869357100,744647523,1667329312,1701734760,1980303885,1634300513,1864397934,1685021552,1797270629,539785573,1801678700,1830825058,1768448865,168650094,1145918273,541152321,1835492723,225734245,1650723082,1684300064,1091177826,1094995283,1696612692,225666158,1852115210,168652132,1852115469,1918989924,1953390953,1667329312,168652658,1145918273,541152321,1835492723,225734245,1650723082,221326624,1297301770,1096040772,1684956448,151653747,1835298405,168626701,757935419,1819307808,1667329312,539783026,1684370293,544175136,1768318308,1864394094,1634887024,1948279918,1936027769,168626701,1684631663,540876920,1862929712,1830841456,1869767521,1818326560,1446667637,1380012609,151653703,1684107822,824211561,1762266422,1886330982,544760937,824210540,168650800,1852402783,1702109285,1902474360,1329340533,1397312592,1043357524,1886332204,746087529,1902452796,539238517,1886330925,1953720684,168640115,1702063205,1818167821,543518313,1954047348,544567653]},{"sector":6,"length":512,"data":[1280331580,1599361865,1864707134,2019846512,1696611372,606106993,1864379680,1936288880,222196596,1684956426,168650345,1852402783,151653733,1651402345,1635138592,1046836588,537463309,1981833828,1702194273,1695091213,1718183022,1678313997,221257826,1886325002,544760937,1886330941,544760937,221323307,1915619594,2020172897,221262112,1852115210,168652132,1414466061,1667329312,1847619442,168652149,1936747892,1695117940,1327527281,1397312592,1848008532,1328246133,1348031568,1113543493,222647105,2019887370,544044137,1886221372,1047688307,1695091213,225272942,990514442,539831597,1702521203,543584880,1948283753,1634541679,1142973803,1196769861,1931506471,1869639797,1713402994,857764463,1768041778,1868767348,1629513060,1836261491,543976545,1881174881,1769173871,778398818,758843917,1713384749,1948283503,544434536,1629515636,1701406819,1629513078,1952542752,1948280931,1701601889,544434464,1634038371,543450484,1595960937,1413563465,1752637505,543712105,1713402729,1701604457,990514532,539831597,1830844770,1919905125,1718558841,1952805734,1752637555,543519333,1717924464,1646295145,1936028793,1748383264,544370464,543700790,543519329,1853189990,168636004,1769146893,1919968634,1634541670,225407587,1920295690,1885955442,606092576,1230965261,1096040772,1734701856,1953391981,1678313997,1969430647,1768256114,1594494320,1413563465,1852121153,168653668,543319049,224933430]},{"sector":7,"length":512,"data":[1852115210,168652132,1769146893,1919968634,1830836326,1869767521,1718159885,1297104672,1929972237,1885698665,168650354,1768189541,151653734,1835298405,168626701,808988169,168638008,1415514637,542398533,1835492723,544501349,1919907684,1970282596,1667853410,1329800992,220677444,543582474,1447645764,168645189,1918989427,168639092,543450121,168636717,544695305,808464440,990447976,1986622052,1629516389,1769108596,1702131042,1393167731,1952543348,544695305,1936090735,1931506789,1952543348,1601791845,1953066601,1953708832,1702125938,1914730855,1769239919,1864394094,1702061670,1225395572,158495854,1864398692,1702061670,1919164532,1919252073,1953391967,990476658,1702129257,1886745202,1634214004,1701602414,1718558834,1952805734,1701054989,1701013878,1835101791,1650729061,1162094368,608654658,153568324,1986356283,543515497,1986622052,1847620197,224750945,1913261322,1751085413,1931506276,1668641396,1701972493,1769168753,1679844730,155132002,808139529,1836412448,544367970,1646290543,1936028793,1869902624,224683378,1768846602,1684627316,1650728992,151600928,540093243,1953066613,541346080,1701080931,1835207181,1679821156,155132002,841693961,1836016416,1684955501,1685021472,1930038629,1970561396,1679821171,155132023,858471177,1635021600,544437620,1685221239,1936853517,537486454,941646436,1886741536,153698088,540355387,1702061426,1684371058,1701972493,1684561777]},{"sector":8,"length":512,"data":[1852121202,168653668,1701972493,1936029041,1953521524,1684283506,168636448,1953696269,1702125938,221935975,1869416714,1936007286,2019711802,1701981789,1684561777,1953705586,1937077345,808532012,168650803,1702129257,1886745202,168639092,1952805385,1695157606,224752492,1919879434,808525927,168650800,1918989427,168639092,1886218761,1768843552,1685021556,1695157605,1718183022,1415514637,542398533,1935961701,168626701,1397641027,1702043732,1852140903,1701978228,1852793953,1998616940,543453807,1818391920,656434025,1096040772,1124732199,1414745679,1684956448,218762611,1297301770,1096040772,1734701856,1953391981,1919907616,1970282596,1667853410,1094985504,220676436,1836278026,543318388,1700946284,2036473964,168650100,1145918273,541152321,1935961701,168626701,1413563487,1702043713,1852140903,2003050612,543453807,1818391920,656434025,1096040772,1594494247,1096040772,1684956448,218762611,1414094602,542398533,1835492723,544501349,1685221239,1651863584,543385964,1415530791,659839045,1230965261,1415071060,1684956448,218762611,1145659146,541152321,1835492723,544501349,1685221239,1651863584,543385964,1147095335,658592833,1634732557,1701340020,1634476147,543974754,1685221239,1230965261,1096040772,1684956448,218762611,1380402186,542135631,1970238055,1415520368,743725125,1313817376,539776083,1145918273,742478913,1094999840,539771220,1163151711,539776088,1094994271]},{"sector":9,"length":512,"data":[168640852,1329793549,542397262,1835492723,225734245,1661603082,1768711277,1679848563,1633755255,1684890412,1920099679,1663857263,1684286563,151653732,1696626532,1717972069,744974124,168650856,544695305,1663854953,1700750445,1919906418,1684890412,1920099679,1814852207,151653740,1830844260,168652141,1142974057,1163282770,151653714,1663072100,1700750445,1919906418,1869495049,1713393184,1948283503,1679844712,1702259058,1635131506,1851877746,1695157620,224752492,2003044618,225340960,1684956426,168650345,544695305,1881960303,1762266480,1380196454,1380275785,1678313997,1835212919,1919246180,158494578,544173627,1868963921,1752440946,1919164517,1919252073,1918989856,1953390953,1818561037,168650099,544695305,168653169,1768189541,151653734,1914730340,1936927858,1953770611,1678313997,1970610295,745961004,168654711,1159751273,1296257869,151653700,2015393636,1158286712,1296254030,1902446916,658251893,222177144,1936483594,1158286693,1296254030,1902446916,658251893,222177143,1684956426,168650345,1718159885,1297104672,1650723341,842216039,2003050548,858941728,539782512,1882468969,1695157613,1718183022,168626701,1397641027,1852121172,168653668,1147079181,541152321,1835492723,225734245,1946815754,1935634543,2003044720,151597088,1650811963,1701275509,544417650,1948274771,673214575,1869835361,1684956448,543584032,1969382756,544417639,692208461,1919224333,1952805490]}],[{"sector":1,"length":512,"data":[544695305,990447920,1970562418,1746955890,543519333,1696622185,1919906418,1970407949,1886609262,544695305,990447920,1969382756,1919248231,1394635559,1752637520,1914728037,690515573,544434464,1667594341,1684370549,1886587405,1969906785,1679848563,808722551,990453864,1969906785,1394635891,2036473936,1768453152,1835081843,1953396079,1919903264,1986097952,1879706981,1650749555,2003044709,151597088,1650811963,1701275509,544417637,1735357040,544039282,1835492723,544501349,1717924464,168654953,1685091184,1678337890,154148983,1701067529,1734833506,1931965029,1869770784,1835102823,1734701856,1953391981,1701998624,544762214,2003591464,544438625,1702043745,1852140903,168634740,846099826,540291635,807434084,808202284,990457900,1969382756,1701144423,1763734311,1919251566,1953527154,1667593760,1936879476,540226080,543452769,673199154,1752461154,1685024032,220820325,543582474,223170623,2003044618,808202272,1852115469,224815460,1986097930,875705138,544695328,741354544,154151984,1650811963,1701275509,544417650,1702129257,1886745202,1702240372,1919906915,858923123,1684955424,540291616,1634038312,1869426028,1864394084,695823470,1936722445,154284656,807434084,151597100,1769107259,1634625895,1702109292,1852403058,543519841,1919181921,544437093,1679847017,1735746149,661808487,1397760115,1879706960,1852142177,2003044724,151597088,1769107259,1634625895,1634738284]},{"sector":2,"length":512,"data":[1953391986,1347637280,544106784,1969382756,1919248231,1344303911,673206355,1953723757,543515168,1954047342,1997147433,155337549,807434084,1933248777,1953653108,543584032,541213517,1767991395,1630019694,2036430700,1702043763,1852140903,168634740,1148078448,1678332751,154148964,1634089737,540422514,1919181921,544437093,1226860143,1397703790,1634493984,1915232359,543973733,1701080941,1762266409,1346314342,1225395533,1936671854,543974739,807434084,1933248777,1667591269,544370548,1970037110,1868963941,1232085106,1397703790,544106784,1953460848,1702126437,1869426020,168650084,1768189541,1762266470,1398087782,1094996805,1399851533,1678328132,154148964,1634089737,540422514,1919181921,544437093,1142974063,1931498319,1886413175,1701601889,1952539680,1918967905,673210725,1818322290,1685024045,168634725,1059087977,168643920,1396786259,1678339173,154148983,1702050569,1952671084,1981837935,1702194273,1919903264,1146318880,1852383297,1869770784,1952671092,1831691365,224748655,1684956426,168650345,1768189541,1745489254,1953721185,1679848545,154148962,1752644361,1701344357,1702305906,1986095136,1634213989,1684368227,1701344288,1667593760,1936879476,544370464,225734510,1667329290,1701734760,543319072,990447920,544567395,943534120,741750832,741485617,808992051,741750835,690892334,1634535949,945776739,1650729015,151597088,1886348091,1701015410,1919906675,1026566176]},{"sector":3,"length":512,"data":[926429240,841756972,943534892,926430000,774778412,1762266409,1330454630,1163085124,1145914196,1634535949,1852401763,1869438821,1679844708,221257826,1667329290,926441320,1685024095,1650729061,168636448,1768189541,1913261414,1701080941,543319049,990447920,1734437990,1868963955,542253170,1835888483,224685665,1598902794,1379285043,542328645,544567653,1648036145,807433321,1026629690,540424243,1768383858,1919251571,1936286752,2036427888,1836321293,157639791,807428708,1648036105,807433321,1026629690,1680700269,1735746149,1836016416,1769234800,543517794,1667330676,1869422693,168650084,1148078434,1678337890,154214498,1026636553,1969382756,1919248231,544434464,1852732786,224882281,1953459722,2037675105,543319072,151602764,543582523,1851880563,1685217636,1886284064,1763734645,1919295603,1629515119,1818846752,1930038629,1970234484,1679844980,154148962,1818639113,544434017,1868854387,1679848565,1667855973,1879706981,1886220146,1852140660,544695328,990447920,1735288172,1864394868,1919950950,1953525103,1969359373,2019913318,2003050612,1852402720,1852399461,990458411,1919181921,544437093,1847617135,544503909,1767994977,1818386796,1751326821,1667330657,225600884,1718968842,157576805,1814067044,1600482921,841707113,1684093705,1936028260,539697267,1718558769,1935764512,1635131508,543451500,1918986339,1702126433,218762610,1633640714,158491748,807434084,808202284]},{"sector":4,"length":512,"data":[1684093705,1936028260,1868963955,1701716082,1092646008,1836016416,1684955501,1600391693,1919181921,544695305,741354544,1631258928,1701995620,1713402739,1814065775,544502625,1868767300,1851878765,1830828900,544502645,1819045734,1629517679,1684300127,1963593074,1684300127,2003044722,808202272,990457900,1919181921,544437093,544370534,1953718636,1663063328,1634561391,540763246,1953723757,1819239968,544698220,1684103012,168653412,1718159885,1398293536,223367253,1633646602,158491748,807429220,674957577,1937336432,1684086825,1936028260,1868963955,1634476146,1142977651,1868767320,1851878765,1695157604,1718183022,1902447117,1684300140,2003050610,808202272,990457900,1769238639,1818324591,658319136,1735549216,1852140917,1852383348,539772704,1851859024,542384228,1835888483,224685665,1970420490,1935892334,544695328,990447920,1702257011,1769107232,1634625895,1396908140,1701345056,1970413678,1852403310,1852383335,168642336,1601074546,544501353,807434084,1765476617,1919251566,1953527154,1887007776,1752440933,1931506785,1886416756,1948279909,1914725736,1768844917,168650606,1953718636,543452515,1679849316,1835235693,1829375332,1869772897,2003044727,168636448,1818653029,1678337889,154148962,1818639113,1763731297,1667851374,1852404833,1919950951,1852142437,1864394083,1025974374,1918967847,1701672295,168653934,1768835426,1650723188,151597088,1698508859,1920299886,543236197]},{"sector":5,"length":512,"data":[1768710518,1886330980,1701080931,544434464,1679848545,1735746149,660956519,1396908147,223365434,1818846730,1954047333,543319072,990447920,1701603686,1954047264,1769172581,673214063,1718165552,544173600,1701603686,1701667182,1158286633,1331647576,1380272212,1902452768,221323381,1415070986,1297040223,538976288,544567653,1158286642,1163875416,538985816,1902452768,221519989,1835426826,1650723188,660743968,1815808265,544502625,1868767300,1851878765,2037653604,673211760,746007650,168634724,1176528489,1397707856,168645204,1952411250,543518841,807428708,1379600649,1868767310,1851878765,2037653604,168650096,1768189541,1762266470,1296900198,1347769176,1745489232,1834972001,1679849581,221257826,1684956426,168650345,1885957222,543319072,218762544,757938954,1937055789,1667330149,980706667,758843917,807415085,1634738234,1952803683,544434464,544501614,1684370293,1852385312,892477556,909258600,1663052904,1178411384,692471366,758843917,824192301,1634738234,1952803683,544434464,1684370293,1852385312,892477556,909258600,1663052904,1178418552,692471366,758843917,840969517,1634738234,1952803683,544434464,1684370293,1852385312,825368692,1629498472,859258232,745026864,1031299872,1179010621,168634694,1937050125,1667330149,544499051,807428708,168626701,1768710409,840986215,168626701,1262698832,1931498565,1668641396,1702038029,158297699,1059087460,1702050569]},{"sector":6,"length":512,"data":[1919906915,1836412448,225600866,1836412426,1935893875,544695328,1849362751,1700949365,1718558834,1667592992,1936879476,544175136,1684104562,1935936013,1936093044,544695305,1866139967,1948283750,1936613746,544367974,1919181921,225669989,1953719306,157771123,1059092324,1702050569,1920213095,1718840929,1629516389,1701995620,168653683,1262698832,1696617541,225666158,1762266378,1346314342,1342836045,1162560321,540160852,1970435187,1930038627,1869505381,543450121,1846152511,1702063477,1679848291,222240887,1953719306,158557807,1059087460,1935936013,1734701940,544695305,1342836031,1162560321,540160852,1935961701,168626701,1801675120,1344304229,1162560321,540160852,808202300,808202284,1695157566,224752492,1667330058,544499051,1262698832,1008751685,741354544,1043344432,1852115469,224815460,1762266378,1634956398,1814062454,1818583649,1870095392,168649842,543450121,1933248816,1684371041,1667593760,544370548,168636464,1126196841,1212372033,810831433,151653681,807429220,1634941705,543450486,1952671094,807432815,1695157553,1718183022,1718159885,1413563168,1313425475,221458516,1684277514,990457888,1702257011,1702240356,1919906915,221458464,1684956426,168650345,1126196841,1212372033,810831433,151653686,807429220,1634941705,543450486,1952671094,807432815,1695157558,1718183022,1718159885,1413563168,1313425475,222507092,1684827914,155398249,807429220,1634941705]},{"sector":7,"length":512,"data":[543450486,1952671094,807432815,1695157571,1718183022,1718159885,1413563168,1313425475,222572628,1684827914,155463785,807429220,1634941705,543450486,1952671094,807432815,1695157572,1718183022,1678313997,154148964,1986097979,1981834341,1869898597,842145906,1718159885,1297104672,1819216397,1714579812,543450121,1695157552,1718183022,168626701,757935419,1918980128,1952804193,1646293605,1801678700,1919903264,1702389024,1633886307,221146220,1158286602,1396917592,1920234272,168649589,1769369189,544108402,1059092324,723532553,1852121136,1869769078,1852140910,1702043764,1852140903,1661603188,1635017837,1679846505,155132004,841687099,1684300064,1936942450,543584032,1835888483,543452769,1818845556,544175136,2037411683,1667631629,1678324066,155132004,908795963,1684300064,1936942450,543584032,1936877926,1128669300,1869881410,1886348064,1711934841,154296931,1059087460,824916745,1684086832,1936028260,1718558835,1667592992,543452783,541213510,1663070068,226062447,1936945930,1684277616,990461728,540291371,1953066601,543973737,1396331347,1661603152,158361971,1059087460,824916745,1852383288,1634301033,1396908140,223365434,1163412746,1696617283,225666158,1695157514,1650681208,1159752556,1396917592,741358624,1664429104,1664494696,741354600,168640048,1163004429,1931498311,1668641396,1148324365,2003044681,1059864352,808139529,1684348976,1913261417,1678330195,742334583]},{"sector":8,"length":512,"data":[725289279,1696609328,168651123,156254834,1059092324,990461740,540553259,225469029,2003044618,1059864352,824916745,1701978162,1987208563,168649829,156779122,1059092324,990461740,540422443,225993317,1480880650,544695305,155135039,808594235,2019845408,1131547149,2003044696,1059864352,841693961,1667571764,1913261432,1678334017,742334583,725289279,1696610354,168654945,1148324365,2003044691,990461728,540160811,168653668,156452210,1059092324,858471177,1936007220,1399982605,2003044691,990461728,540422955,168653683,156451698,1059092324,858471177,1935876152,1181878797,2003044691,990461728,540029995,168653670,156452722,1059092324,875248393,1936138290,168626701,156259186,1059092324,990461740,540292139,225473381,1346990602,544695305,155135039,942943035,1885955360,1181878797,2003044684,1059864352,892025609,1717903410,1936154988,1718159885,1297104672,1936525837,2003044727,990461728,808464432,1634038333,1869426028,539780452,1179010630,1869770813,1952671092,1831691365,224748655,1684956426,168650345,1397179730,1684956448,218762611,757938954,1699881005,1953720679,1931506277,543520353,1634038369,218762542,1818298634,544106345,990453812,539831597,1953723757,543515168,1380931396,1818304580,1701734249,168632676,1701972493,1377858407,542328645,168640060,1147079181,541152321,1935961701,168626701,1397641027,1702043732,1852140903,218762612,757938954]},{"sector":9,"length":512,"data":[1635000365,543517794,1763731055,1919251566,1953527154,1768843552,1818323316,1952545385,225341289,1225395466,1414091854,1931496773,1668641396,1678313997,222240866,2003044618,168640288,1230261833,541934932,1935961701,168626701,1953787497,1814061665,1818583649,1414416672,1296389193,1225329165,1414091854,1008749893,745025584,1953392928,1043345522,1718159885,1413563168,1313425475,221327444,1313409290,1163151700,809246797,539781169,1920233065,222179632,1684956426,168650345,1126196841,1212372033,810831433,151653683,1230261833,541934932,1748185148,1852383276,858813044,1695157566,1718183022,1718159885,1413563168,1313425475,221655124,1313409290,1163151700,809246797,539781174,1920233065,222180912,1684956426,168650345,1126196841,1212372033,810831433,151653699,1230261833,541934932,1749233724,1852383276,1127248500,1695157566,1718183022,1718159885,1413563168,1313425475,222572628,1313409290,1163151700,809246797,539781188,1920233065,222184496,1684956426,168650345,1414416649,1296389193,842152992,1763716200,846361710,168640050,1229804878,542331982,539500605,539828260,1953787497,689988193,1931489056,1868921449,1313415270,1163151700,1762266445,1346314342,151653709,840983140,168650822,1229804878,1481856078,1310735648,1313426773,824922964,1818561037,168650099,1229804878,1481856078,1310735648,1313426773,168645460,1768189541,218762598,757938954,1701978157,1953720679]}]],[[{"sector":1,"length":512,"data":[1847620197,1936026977,1919903264,661792544,1850679342,1953046629,1763732837,540156019,1702132066,168636019,757935419,1734701600,544433775,1953723757,1819239968,544698220,1852269938,1936026977,1684955424,1685221152,1864397413,1953046630,544435557,1953723757,1952541984,168650851,757935419,1869116448,1763730803,1701978222,1835101799,539915109,1701081679,1970086002,1646294131,1701257317,1634887022,1701978220,1953720679,745763429,542132512,543452769,168643654,757935419,1684955424,1734701856,1953391981,1734701600,1702130537,1814066034,779383649,168626701,1852269938,1936026977,543319072,660095271,1480730412,1126640679,657205080,740776004,151587341,659575591,1346512684,1395076135,657205065,740772164,659573031,1279665964,168635431,1143408905,657205075,740774725,659772199,1396909868,1176972327,657205075,220681031,1297436170,1313293650,1397050689,1970365728,539240480,1701978157,1835101799,539587429,221388847,1734701578,158557807,1914730340,779315045,743981426,1734701600,1114779251,1914711128,779315045,743981938,1734701600,1148333683,168635480,1701972233,1915646823,539775059,1936156018,1346531886,1701978156,1915646823,539773267,1936156018,1229222446,1701978156,1915646823,539775049,1936156018,1279685166,151653676,1734701577,1148333683,1914711123,779315045,743654770,1734701600,1399991923,1914711123,779315045,743654258,1734701600,1181888115,1914711123]},{"sector":2,"length":512,"data":[779315045,223561586,990514442,539831597,1634890337,1713402745,1768056684,539784052,1852271718,544435553,543452769,1852271718,544435823,1953723757,543515168,1936617315,1953850213,224753257,1735157258,1937008994,544695328,1747988536,808465452,808594536,942434352,875325488,824993840,875325488,168636716,1852271718,544435553,656433764,740775502,659576103,1229203244,1344744487,657205068,740776526,658591271,1330652972,1311190055,168634179,1852271718,544435823,656433764,740775503,659440679,1229268780,1311190055,657205063,740774490,658719015,1162880812,1126640679,168634201,758843917,1226845485,1920234350,1769235317,1931505263,1763734629,1919903342,1769234797,1847619183,1701078373,1868963940,1752440946,1881612389,1868767271,1851878765,168636004,757935419,1920098592,544438625,2036494448,544433524,543452769,1852403824,1830842214,544502645,1663067490,1702063727,1769239907,220292470,1879706890,1954112112,1679848293,909516898,926297192,909257832,1697786984,909323368,1697852520,875965544,892742760,1714433128,808216626,157823846,1701998651,1702390118,151653747,807428708,745038689,1751408944,1633759276,1630547048,808216674,745026657,1748328752,1869363977,1932292964,745762676,1937141613,1678313997,1630543970,808216630,745027425,1751474480,1717645356,151587176,1886217019,1668492403,168653665,543319049,745038646,745038902,745039158,157836854]},{"sector":3,"length":512,"data":[1765476617,1865184110,225670261,1650723082,1667444768,1664101480,151611492,1765476617,1763734638,1920234350,1769235317,225668719,1650723082,811937824,1697655912,808216625,157823589,1815808265,544239471,1953721961,1952675186,1936617321,1678313997,1697652834,153118776,990447881,1819042147,1818587680,858732081,151653682,807428708,543711545,151587081,1818321723,1634082924,1702043762,976630119,858732081,990514482,1750345737,1814066025,544502625,543518319,1679848297,543518319,1819310181,1953063785,1646295404,1752440953,1868767333,690906468,154864141,807428708,543712870,151587081,795239995,1919885362,795239968,1762212403,1919509614,544498533,1819042147,168626701,538976315,1868983881,1919903264,1701344288,1868718368,539780470,1886610802,1769235301,2037146998,990514478,941629472,1025534000,1701998624,779643238,540740109,825761824,540876904,1919181921,544437093,1702521203,1701998624,779643238,540740109,842539040,540876904,1919250543,543452769,1702521203,1701998624,779643238,540740109,1716068384,1701344288,1734961184,1768038504,1936269428,1953459744,1952805664,1752440876,1701716069,1746957432,1701341033,1646294131,673215593,694693940,1684957472,1952539497,1948283749,225730920,538983178,1701344288,1936615712,1668641396,1852795252,2053731104,1701060709,1684956528,1852776563,1701345056,1919248500,1701344288,1763730802,1851859059,1684300064,1936942450]},{"sector":4,"length":512,"data":[2053731104,1919950949,2020173413,990514476,1629495328,1948279918,1914725736,1767992677,1735289198,1953063456,1702109299,1948281964,1847616872,1700949365,1718558834,1684300064,1869182057,543973742,1702132066,1852383347,1701344288,540740109,1852383264,1970435187,1869182051,168636014,1347422733,1380204895,156911955,544567653,224932144,1599098890,1230196815,1902446938,842014837,1342836072,1380998992,1481197125,1970365705,1747990560,1347422733,1380013663,156911955,544567653,224931892,1879706890,1718511984,1650723183,1748121632,1748056108,1747990572,1747990572,1747990572,1747990572,1747990572,1747990572,1747990572,1747990572,1919957769,2020173413,168653669,543319049,741354544,741354544,154151984,990447881,1769108595,1763731310,1920234350,1678313997,741351522,741354544,151587120,1953708809,1735289202,1936615712,168653428,543319049,741354544,154151984,990447881,1769108595,1763731310,1920234350,1678313997,741351522,151587121,1228605705,1763726414,1920234350,1678313997,741417058,154217521,990447881,1347374924,1852383352,225604723,1650723082,1748120608,151587081,1701722889,1126199905,541871169,1953721961,151653746,874537572,151611444,990447881,544366950,1280065859,1936615712,168653428,1162629200,1902446926,539238517,1886396461,1868983913,168626701,1701998704,1650723188,845361184,1664101480,808216627,745038179,1751278384,1717776428,990447976,745825650]},{"sector":5,"length":512,"data":[1718904178,1701996844,1342836084,1413829200,542000460,544567653,539828260,1701998704,218762612,757938954,1951604781,1735289202,168636019,1919945229,1953525103,1650729009,657270560,1832585481,544106849,1836020336,168653936,1059087977,168643920,1836020336,540177520,656433764,151594787,1869770811,1952671092,1831691365,543515759,1836020336,168653936,1768189541,218762598,1818585098,1735617904,1650551840,1646292069,224752761,1650723082,1935746848,1651336563,740779372,654912569,1633361985,1701995620,660435827,223494956,1650723082,1868769056,1918988397,959194981,654909484,1634869315,543516526,1919181921,661877605,223494956,1650723082,1969497888,740782189,151596089,1113277479,1148999548,1918574685,1701277281,1126967133,1762266450,1346314342,151653709,656433764,1886221668,1953392928,1970434661,740783216,654912569,1763723588,1919251566,1953527154,1868782368,1567911541,1380133927,1678313997,1680285794,544238965,659833932,153893164,541869095,1701602675,1919906915,1868782368,1567911541,1380133927,1852115469,224815460,1650723082,1969497888,1293971565,1663058499,1852399976,741944359,1296312073,1380133927,1718159885,1398293536,223367253,1650723082,1969497888,1696624749,1830843512,1919905125,959195001,1143414828,1885020248,1769175400,1600938339,1919181921,1567847269,1380133927,1852115469,224815460,1650723082,1852122912,661808500,153893164,541402889,1919181921]},{"sector":6,"length":512,"data":[544437093,1936288859,740777332,168645187,543319049,1818846759,959194988,654903596,1634869318,543516526,1953720684,1380133927,1678313997,1730617442,959194991,654903596,1029382215,1919181921,1567847269,1919048480,1886085477,1953393007,740777331,168645187,543319049,2019911719,1684300064,1651864367,741944359,541599497,1970037110,1981821285,1702194273,1126967090,151653714,656433764,1970302569,959194996,654903596,2086099785,1881169220,661942895,223494956,543582474,1447645764,1696617029,221257841,1650723082,1869358880,1713398881,660958313,153893164,1528843303,1919181921,1567847269,1380133927,1852115469,224815460,1650723082,1869358880,1931502689,1869898597,740782962,654912569,1684086860,1936028260,1919164531,543520361,1952671091,1663070831,1953396079,1380133927,1678313997,1831280738,660960879,153893164,541927177,1735287154,1684086885,1936028260,1126967155,1762266450,1330454630,1163085124,1145914196,1678313997,1931944034,1126200421,1830835536,660956271,153893164,1528843559,2085518456,673209684,774913400,539768366,1869495630,1431324192,1028923436,540424243,1752459639,926429728,1126967081,1695157586,1718183022,1718159885,1230128160,542262614,807432549,1678313997,1848057954,660958561,153893164,541992713,1919179611,979727977,1634753373,1717397620,1852140649,543518049,1735549275,1953720684,740777309,168645187,1768189541,151653734,656433764,1886680431]},{"sector":7,"length":512,"data":[740783221,151596089,1465601831,542983292,1953656688,1818326560,740779381,168645187,543319049,1869770791,1684366691,741944359,1344735520,1631410976,1701995620,542995315,1970234203,660436078,223494956,1650723082,1919952672,1701143407,1701978212,1852994932,741944359,1380984585,1380133927,1718159885,1230128160,542262614,807432549,1678313997,1898389602,661940597,153893164,659629833,223494956,1684956426,168650345,543319049,1734701607,1702130537,959194994,1378289964,1701993248,1953720679,1528853093,1970037110,660430181,223494956,543582474,1398295885,223367253,1650723082,1296901920,1701978200,1953720679,740782693,654912569,740773202,168645187,1768189541,1762266470,1346773094,1414745940,151653714,656433764,542462022,1768383858,1919251571,741944359,1314006793,660427355,223494956,1936483594,151653733,656433764,542462022,1768383858,1919251571,741944359,1314006793,1380133927,1852115469,224815460,1650723082,1869883168,1701603175,909652768,1734701600,959194995,1378295852,1126967128,151653714,656433764,1918985587,740780131,151596089,1914721063,1701277281,1936288800,1126967156,151653714,656433764,1667330676,959194981,654903596,1029382228,1919181921,1567847269,1868782368,1567911541,1380133927,1678313997,1948721250,1701011826,1685024032,959194981,1411844396,811278413,660418940,223494956,1650723082,1853171488,1702064993,1701601901,741944359,542451465]},{"sector":8,"length":512,"data":[1851880027,660432231,223494956,1650723082,1769350944,1713403749,661678444,153893164,740775463,168645187,1142974057,1163282770,1902452818,168636448,543319049,1769109287,1713399156,660958313,153893164,1528846119,1919181921,1567847269,1380133927,1852115469,224815460,1650723082,1920411424,543519849,1952671091,661877359,153893164,1629509415,1701995620,1679848307,1702259058,1667592992,544370548,1853189987,1126967156,1762266450,1296375910,1145914195,1678313997,1160192098,1629508429,1668246636,660960353,153893164,541153319,1853189987,1126967156,151653714,656433764,542330181,1818322276,1633906540,740779380,654912569,1746945112,1818521185,1126967141,151653714,656433764,542330181,544235885,1869440365,740784498,654912569,1814056280,1667852143,1885301857,543516513,1937336432,1818321769,1734439007,1634213989,1701602414,1380133927,1678313997,1160192098,1914721101,1819042149,1952539503,959194981,1478953260,1634213970,1701602414,1970234144,740783214,168645187,543319049,1397572903,1869116192,1953702007,1937077345,741944359,1398286112,1380133927,1852115469,224815460,543582474,223170623,1650723082,223494944,1650723082,1919951392,1953525103,656423539,1025517357,1634038304,947269484,1869425974,540763492,539435815,1919950909,1667593327,761554292,1701080941,1380133922,1852115469,224815460,1695157514,1633907314,544499058,656433764,1917132894,661811058,1633893129]},{"sector":9,"length":512,"data":[544499058,1684370293,544432416,1886152040,2019914784,1701060724,1768778092,225600884,1701998602,1701540723,1650729081,1834690336,1566929519,1380133927,168626701,1701540708,540045938,656433764,1953067607,1919950949,1667593327,1919230068,661811058,168636460,1701540708,540111474,656433764,1852534357,544110447,1953066613,221260839,1802724362,846361189,543319072,1769096231,1847616886,1914729583,2036621669,221260839,1802724362,863138405,543319072,1802392871,1853321070,1836016416,1684955501,221260839,1802724362,879915621,543319072,1952531495,1919230049,661811058,168636460,1701540708,540439154,656433764,1801807187,1920099616,740782703,1678380336,1919249267,1679832946,1428627554,1869507438,1830841975,1634296933,1887007776,808200037,1935936013,1920099691,1650729016,1699948320,1919906915,1953459744,1970234912,740779118,1678380336,1919249267,1679833458,1428627554,1869507438,1696624247,1919906418,221260839,1802724362,1634890341,543319072,1769101095,1713399156,1953264993,221260839,1802724362,1651667557,543319072,1634030119,1634082916,661941365,168636460,1701540708,543388274,656433764,1701733703,543973746,1818845542,660959861,168636460,1935936013,1920099691,1650729075,1802724384,812806757,1802724397,812806757,1802724396,829583973,1802724397,812806757,1678313997,1935941730,1920099691,1935945010,1920099691,1935944752,1920099691,1935945011,1920099691,151653680]}],[{"sector":1,"length":512,"data":[1679843940,1919249267,1680684146,1919249267,1680617586,1919249267,1680685426,1919249267,168636530,543319049,1701540708,758542962,1701540708,741372530,1701540708,758608498,1701540708,221278834,1650723082,1802724384,947024485,1802724397,812806757,1802724396,963801701,1802724397,812806757,1678313997,1935941730,1920099691,1935945057,1920099691,1935944752,1920099691,1935945058,1920099691,151653680,1679843940,1919249267,1680696178,1919249267,168636530,1701972493,1852400737,1650729063,1914709792,660889957,168636460,1953067639,543649385,656433764,1769109280,808200052,1919158797,157644393,656433764,543649385,1986622052,220668005,1769104394,1701602678,1650729076,660547360,168636460,1718159885,1146047776,1413829445,222580035,1735617802,943206456,543319072,942684199,943206198,1953068832,808200040,1936525837,909670503,543319049,909670439,1953068832,808200040,1869482509,1970300511,543319049,1953853223,1745489191,1717531489,1679848816,539435106,659902534,168636460,1601397096,540489778,656433764,926429728,221260839,1701146122,1936552804,1650729063,1851467552,1935959397,909670432,990455645,757935420,1685024032,1701406313,925376612,1684955424,220805408,1701146122,1885762404,1650729077,1851467552,1935959397,1431324192,168634205,1869832815,1702126956,543319072,1651464999,1701605235,660432244,1852115469,224815460,1913261322,863201125,1679832632,858202210]},{"sector":2,"length":512,"data":[1914713656,544434021,808200047,1836321293,1936024687,543319049,1634890791,1830839651,543515759,1946815783,1701080941,1679831667,807870562,1226845472,544429134,543519329,221260839,1869444106,154232164,656433764,1667330676,740779109,1946815792,1701080941,1650723120,1919952672,1936024431,660890995,168636460,1937075829,1678337125,539435106,1970173224,694445427,221260839,1762266378,1831892078,1679845235,1143414882,1684633193,1919230053,661811058,743588652,657213004,168634148,829714025,543650669,656433764,1735289171,1932354924,544236916,1702129257,1886745202,1126967156,1179397202,656680748,1852377613,1936536436,1650729063,1916938016,1886085477,1953393007,1953392928,1970434661,740783216,1277973059,606547014,1762266407,1346314342,1919885389,1413563168,1313425475,221655124,1668834570,1936537136,1650729063,1850287904,1768710518,1886330980,1701080931,1380133927,742804524,220668967,1684956426,168650345,1059087977,1864387920,1094918258,1229472596,1127240782,2019887629,1833119843,1679845235,1395073122,1801675124,1969317408,740783212,1277973059,606547014,1695157543,1718183022,1718159885,1297104672,544370464,1129595203,1414416712,168641584,811825253,1735617860,543319072,1852131111,1818325605,1869770784,1952671092,544108393,1819631974,1126967156,1179397202,656680748,1852115469,224815460,543582474,223170623,1668834570,1936540976,1650729063,1632642848,1713399143]},{"sector":3,"length":512,"data":[1953264993,1380133927,742804524,220668967,1762266378,1480925286,1230193475,1695157584,1869374328,1650723171,1396909856,1028671802,221260839,1684956426,168650345,1869482509,1886745460,1679827056,1126637666,1634561391,1847616622,1931506799,1869639797,1684370546,544106784,151653671,543319072,1869770791,1952671092,1831691365,660956271,1869482509,1886745460,1679831664,1380130914,742804524,220668967,1685024266,2019914607,1650729076,1998595872,1869116521,1629516917,1397703712,1954047264,1701080677,1126967154,1179397202,656680748,1718159885,1397310496,1330595920,1678380363,1751739760,543911791,656433764,1229803588,1953391904,1746958706,1701539695,1847602276,1696626533,2037544046,168634173,1768779876,1802465128,1650729009,1600071456,1597661023,660561759,743588652,168642124,1702521203,1836082271,1869572201,1902452843,539238517,1885610029,1869113709,168651631,1768189541,1913261414,1735617901,543319049,1634038311,1869426028,740779364,1728711984,2003137633,1735290738,543319072,1952540455,1869488229,1667309684,1936942435,1701601897,221260839,1684956426,168650345,1633880589,1920431214,1650816105,1650729072,1631790880,1953459822,1769109280,1646290292,1801545074,1852403568,808200052,168626701,1735357040,544043636,1126195812,1179397202,1917855532,1634887535,1702109293,1852403058,1684370529,220669984,1869770762,1769497959,1650729076,1600071456,657022815,743588652,657213004]},{"sector":4,"length":512,"data":[168634148,1702326126,1678337400,1160192098,1713390936,1936026729,1851876128,544501614,1998611810,1953786226,740781669,1277973059,606547014,1846152487,1634625135,1679844717,1311187042,1768300655,1634624876,1730176365,1852143209,1380133927,742804524,220668967,1836545802,154232691,656433764,1953067607,543649385,168634148,1936553847,1678324327,539435106,1702132066,1126967155,1179397202,656680748,1768163853,1969646451,1650729068,1766074144,1713400691,661417077,743588652,657213004,168634148,1852141679,544371301,656433764,1869771333,220668018,1701867274,1920099694,1650729009,1600071456,1864392543,1768842608,1713399662,660958313,743588652,657213004,168634148,1702063972,540177010,656433764,1701603654,1953459744,1970234912,740779118,1277973059,606547014,1678380327,1919251311,1679831922,1344741474,543716449,544501614,1853189990,1126967140,1179397202,656680748,1868827149,1920099699,1650729013,1665214240,1936942435,1852138528,660890985,743588652,657213004,168634148,1702063972,540570226,656433764,1970499145,1667851878,1953391977,1835363616,662270575,743588652,657213004,168634148,1718159885,1397572896,222580035,990514442,539831597,542330181,1869771365,1953702002,1735289202,218762611,1936549130,158625646,656433764,542330181,544501614,1953721961,1701604449,808200036,1835338253,1920099699,1650729011,1632118560,1701602414,1953459744,1970234912,740779118]},{"sector":5,"length":512,"data":[1695157552,1919251309,1679832178,1227300962,1818326638,1713398889,1952673397,661548905,168636460,1702063461,540373618,656433764,1713401678,543516018,1684955496,661874028,168636460,1702063461,540504690,656433764,1635020628,1634738284,544433511,1701017701,1684366437,221260839,1936549130,947024485,543319072,1701987879,1634738277,544433511,1701017701,1684366437,221260839,1936549130,963801701,543319072,1918980135,1952804193,1696625253,1919906418,221260839,1936549130,1634890341,543319072,1735347239,1818321769,1734438944,1970217061,1718558836,1851879968,740779367,1695157552,1919251309,1679843954,1344741474,1769175400,543973731,1701273968,1953853216,543584032,1735287154,808200037,1835338253,1920099699,1650729080,1296377632,1919230035,544370546,1695157543,1919251309,543258738,656433764,740777823,218762544,1936549130,1936880229,544695328,741354544,1835346992,1920099699,1835346995,1920099699,1835346996,1920099699,741354549,1702063461,741831282,1702063461,741896818,1702063461,221868658,2003044618,1936549152,1634890341,1936549164,1651667557,168626701,757935419,1920234272,1936158313,1702065440,2036473956,742479904,742676512,542267424,543452769,1663061336,1634561391,225666158,2013924618,1936613729,543319049,1851869223,543517796,1869376609,1702125923,656423524,168636460,1851876472,1650723187,1632118560,1701602414,1634034720,1668246636,1684370529,221260839]},{"sector":6,"length":512,"data":[1634564106,1678340974,1277632610,1667852143,1881173089,543516513,2013924647,1936613741,1936683103,1902452785,539238517,1836589101,225668705,1650723082,1600071456,1885433120,543450480,1881173876,1769175400,543973731,1701273968,168634144,1851878776,1869635443,1696608883,606106993,2015374624,1936613741,1678313997,1596399714,808200031,168626701,757935419,1920234272,1936158313,1702065440,2036473956,542332960,1835888483,224685665,2013924618,1920234355,1650723120,1632642848,1713399143,1701667186,544497952,221260839,2013924618,1920234355,1650723121,1632118560,1701602414,168634144,1953723256,543240562,656433764,1600085855,1935763488,168634144,1953723256,543306098,656433764,1600085855,1734438944,1629516645,1668246636,1684370529,1380133927,222710828,2053731082,1937268581,829584499,1970365728,757081120,1936947232,221344372,2013924618,1920234355,1650723122,1752180512,1667855225,1881173089,543516513,2013924647,1920234355,1679843634,1596399714,540876895,1835492723,544501349,2013924647,1920234355,1679843890,1596399714,543121247,168634144,1702521203,1936947295,540177012,544567653,539828260,1953723256,168637042,1953723256,543371890,1126195812,1179397202,168626701,1953723256,1678324594,539435106,1629513327,1953461280,656436321,168636460,1953723256,543649906,656433764,1397572896,1734438944,221260839,1936947210,1684566644,543319072,1296375847,1634213971,661415022]},{"sector":7,"length":512,"data":[168636460,1953723256,543241074,656433764,1746957157,543520353,1852138850,1819042080,1952539503,740779109,218762544,1853061130,1936158831,543319072,544173607,1886413165,1701601889,1734438944,740782949,1277973059,2013924678,1819435891,1650723174,743588640,808207948,168626701,1768189541,1161502822,1296257869,218762564,757938954,1818632237,544434017,544370534,1953721961,1952675186,544108393,1919250543,1935961697,990514478,539831597,1936877894,1752440948,1769152613,779314554,168626701,1096765519,1695108172,874542449,153118768,1954112059,1870081893,1680827506,1685221239,1701867296,1684955506,1868769312,543452277,857761122,1646290992,773878901,220802606,1599098634,842217009,1970365728,1747989792,2000357664,543453807,1679848047,1685221239,1701867296,1684955506,1347357197,1695103071,908096881,153118768,1954112059,1886330981,1851880037,1326058852,909205328,1970365705,1747990304,2000357664,543453807,1919250543,224685665,1599098634,1695101491,941651313,153118768,1870095419,1864393842,1634887024,168649838,912216143,1902446900,809050229,990453864,1919907697,1886330980,1851880037,218762596,1599098634,1163544915,1970365728,1599098656,155995201,1701344315,2003790880,544502629,1948280431,1702061416,168626701,757935419,1701336096,1864394099,1634887024,1948279918,1936027769,1701146144,1869881444,543515168,1651339107,1684369001,1953068832,543236200,1702521203]},{"sector":8,"length":512,"data":[1634493984,168636007,757935419,1685221152,1830842981,544502645,1668571501,1953046632,544435557,1629515369,1784638835,741437549,1953063456,543318388,543452769,1601399140,829451626,168626701,1230983247,151604557,544567653,990447920,1701670249,1952541028,1326058853,1297243984,1902446857,154280053,1701985033,1701654375,1326058861,156065616,1970365705,151598112,1835363643,1969367072,1869488244,1701978228,168634727,1381978191,1146047839,1970365705,151598624,1734701627,1702130537,1679830130,1919251557,1701734765,1919295588,1293970799,1377846351,1881165103,225735265,1599098634,1179012941,1902446931,154673269,1701657353,2037542765,1717989152,997483891,1731093792,1528835118,875770417,1326058845,156393296,1970365705,154153248,1701985033,1634738279,1864397938,1701978214,1701654375,2036473965,168650100,1381978191,1145323871,1970365705,154284320,1701985033,1953720679,539783781,1702126948,1852403058,1713398885,544042866,1953721961,1952675186,544108393,1702132066,1347357197,156778847,1970365705,154415392,1818311433,544370464,1864398945,1634017394,218762616,757938954,1750343725,543519589,661548900,1701716084,1629512805,2053731104,168636005,757935419,1685221152,1830842981,544502645,1668571501,1953046632,544435557,1629515369,1784638835,741437549,1953063456,543318388,543452769,1601399140,1635020911,168636002,757935419,1684300064,1869182057,1819042158,1864379513]},{"sector":9,"length":512,"data":[1919247474,543584032,1298092111,757085238,1599098656,1297236294,1763724613,1937055859,168649829,757935419,544106784,1818386804,1935745125,1769168749,1836412538,168626701,757935419,1818326560,807429493,544434464,1684370293,544175136,1836213620,1952542313,1851859045,1701867296,1684955506,1936288800,539500660,543516019,1919115629,1886330991,220799084,1599098634,154416717,1970365705,151597600,540024891,1919907697,1701650532,2037542765,1651451936,1701605235,692020596,1347357197,1279675743,156516687,544567653,990447924,1713385760,1952542572,1835363616,226062959,1599098634,1431258189,155536450,544567653,990447926,1679831584,1818391919,1919954277,1936286565,544108393,1634692198,1701650548,2037542765,1347357197,808996191,1902446857,154673269,857750281,2036495392,1830839668,1919905125,1326058873,1481465680,1695091032,824210801,990447920,1830827040,1919905125,1932009593,543521385,1852534389,695105391,1347357197,1380009567,156058957,544567653,151597617,540352571,1869440365,1713404274,909210209,1918985775,1881158195,1953393007,168653413,1180651599,1296650817,1902446925,875634805,540739849,1634082870,792080754,863134054,1835606066,1768187245,224752737,1599098634,944522578,1902446880,909189237,540739849,2036473911,1629513076,1701995620,1914729331,1952541797,543520361,1226862452,1326058832,1163026256,859189580,1902446898,942743669,540739849,1870078008]}]],[[{"sector":1,"length":512,"data":[1864393842,2003050610,543453807,1919181921,544437093,1634493810,1702259060,544175136,168644681,828330063,541804611,1970365705,154153504,958413577,1701339936,1713400675,1394635375,691087444,1347357197,1230263135,1902446857,842145909,825952521,1414733872,220809512,1599098634,151605827,544567653,151598130,540094779,225989187,1599098634,151605828,544567653,151598642,540160315,225989188,1599098634,151605844,544567653,151599154,540225851,225989204,1599098634,1380402515,1695106885,857765233,990447920,1931490353,1701668709,1914729582,1936287589,225600884,1599098634,1397574985,1902446904,842211445,825952521,1769152565,1696624231,1852142712,543450468,1701670249,1952541028,2036473957,168650100,1230983247,540560717,1970365705,154415904,909196041,1835886880,1634296933,1646290292,543519865,1752461096,1629516389,544434034,544825709,673211746,1870080356,220816498,1599098634,156781901,1970365705,154546976,925973257,2018331936,1347357197,1330139999,156911955,544567653,151599155,540553531,544499059,1734437990,544175136,1635216481,1931506553,544698216,543516788,1702521203,1347357197,151597407,544567653,151597108,540619067,1932009521,1819307369,1931616357,1852404340,1864376935,1713402736,544042866,1701995880,695103264,1347357197,151597919,544567653,151597620,540029499,1326058803,1480875856,1902446857,875831413,842729737,1480859697,1347357197]},{"sector":2,"length":512,"data":[155992927,1970365705,154547232,842152713,223101728,1599098634,151606355,544567653,151599156,540226107,673207379,544239476,1663067759,1869770863,1936942435,1931506287,1801675124,1326058793,1396924240,1902446857,808788085,842729737,1396908084,1347357197,156451935,1970365705,154285344,892484361,223560736,1599098634,151606085,544567653,151598133,540422715,168645445,1180651599,1695091027,891319665,990447926,1176516402,1326058835,1397186384,1902446857,943005813,842729737,1397170232,1347357197,156455775,1970365705,154154528,959593225,223564576,1326058762,1414750032,1695091026,1327527281,154230608,1919510075,572552307,1769108595,539125614,168652911,758843917,1226845485,1920234350,1769235317,544435823,1952540788,1986095136,1851859045,1886218528,1768122732,1886330996,1851880037,1970479204,1667590754,1869881460,1931501856,1701668709,1864397934,1920099702,224748649,757938954,1864900653,1651733621,539785007,1937141613,746008418,1886216992,1999594099,1869357100,794981220,2015374455,695492972,218762542,1718775818,1650553976,543319072,1751463472,1714827308,807414888,745026657,1748328752,1630543916,808216630,745027425,1667313696,1630547048,539781220,1748460592,1599080973,156124492,544567653,539828260,2019979888,224551284,990514442,539831597,1953721929,1952675186,1936617321,1634235424,1633886324,1700929646,1702065440,1769414756,1377855604,1378832453]},{"sector":3,"length":512,"data":[793071685,1313883474,168635973,1701972493,1936288880,1650729076,1664495648,909126760,808216677,745026657,1751212336,1667313708,1379600744,673206341,1112755785,1431248940,742544212,1448037664,539771475,1397707859,1277176898,1112753231,1309281577,1346720351,538985294,544567653,539828260,1819305330,225735529,1679821066,1630543970,808216630,157836641,1379600649,793071685,1313883474,1126703173,1112756301,1129521196,692212545,1598949901,1095779666,1696615500,606106993,1914711328,1768714341,168653939,1762200077,1970037614,1008756068,1969382756,1818391655,1668180270,218762558,1768976138,2019910766,1650551840,1646292069,224752761,1915619594,2020172897,221655328,1768976138,1025538148,168636448,1885696521,544498021,1296913217,168641615,1864394345,2019846512,544500768,224931889,1600745226,1701667182,2019914784,1970365812,1347370016,1414744396,742273119,1768976165,168654948,1702063205,1768884749,1835101791,1702109285,1902474360,1329340533,1397312592,742285140,1768976165,168654948,1768189541,151653734,1864393316,1634623337,168650093,1684631663,540876920,1684631663,539697272,151653681,1835298405,772344333,1768186226,808525944,168626701,1397641027,1852121172,168653668,1415514637,542398533,1835492723,225734245,1935739146,1701672307,980640800,1330792260,168644693,1718159885,1414546976,1381258063,1762200077,1970037614,1008756068,1869901926,779252851,1046703721]},{"sector":4,"length":512,"data":[1852115469,224815460,1762266378,1346314342,218762573,1953392906,1819042147,1869770784,1931505524,1633903732,975203436,1685221239,2000298028,224686703,1594494218,1096040772,1734701856,1953391981,1627982349,1852270956,168637472,1768779876,1920233061,1684283513,990457888,1768779876,1953391904,1881176434,1953393007,1952805408,1701737077,2036473956,1836082208,1869095017,168653939,1768779876,1668571511,1684283496,168636448,1702064996,538970476,807434084,1701067529,1734833506,1931965029,1734701856,1953391981,1413563424,1661603137,1818588019,1679826953,154148983,1650811963,1701275509,544417650,1835492723,544501349,1162104643,1718159885,1129858336,1346982723,1852377613,1668834676,538996841,807434084,1346976521,543582496,1702129257,1818324594,1668834592,1769238629,168652399,1702129257,1935893368,2003050528,990457888,1763726147,1852383334,1852990836,1696623713,1885692792,1852795252,1852115469,224815460,1836082186,1836212073,544043058,807429220,1634876192,1869422711,1931502948,1668573559,1701978216,1831693409,543515759,1881173876,1702129522,1684370531,1685024045,1678380389,1600744816,1915907440,1717837933,991965216,544694642,1701080941,1769435936,543712116,1953460848,1702126437,1869426020,1948280164,1701978223,1831693409,224748655,1836082186,1769168745,538994042,807434084,1769159456,1864394106,1634869350,1869422711,1931502948,543520353,1952543859,1969365093,1919247974]},{"sector":5,"length":512,"data":[1885604365,1918855533,1986098029,543450144,1916477488,1830844257,543515759,1702257011,1635021600,1914725748,762077541,1701080941,1885604365,1885301101,1986098029,543581216,1916477488,1830844257,543515759,1702257011,1635021600,1881171316,1702129522,1684370531,1685024045,1930038629,1952543331,1702062179,2003050604,991965216,1634886515,543712116,1701602675,1919906915,1702065440,1868963940,1635131506,1970235762,1970282611,1936683122,168653669,1768779876,537473587,543319072,809175344,758526269,544500066,1701407843,539784302,1702063205,758264608,544500066,1701407843,168653934,1215254114,845901679,1650729030,990457888,544501353,539772466,826112097,1748449334,1851876128,544501614,1746953570,1701539695,1999118436,2017029737,1936679968,2020565536,1866735660,1970095475,168634687,1095975778,544371828,1650728992,990457888,1920103779,544501349,1701080931,1953784096,1969383794,673211764,1768038468,221129076,1682006538,842232420,1679826976,154148962,1684291899,1936942450,1953784096,1969383794,539911540,824206953,1768431660,1685221239,2019845416,1936269353,1818326560,168649833,1126196841,1212372033,861163081,1862929713,1852400748,540095348,543581216,1695157552,1718183022,1147079181,541152321,1935961701,168626701,757935419,1953392928,541471264,1684955496,225600876,1678380298,1735746149,221922866,1970276618,224815219,1835206922,2019631216,943075628,168650807]},{"sector":6,"length":512,"data":[1768779876,1634953572,979725410,990447881,544499059,726681947,809327921,543582496,1802465128,541471264,1948283753,1700929647,1936286752,1701601889,151653732,1075870314,151653702,1718644592,1778977293,1663070317,1868249715,845767788,168648038,221921344,1633880330,1663069292,1868249715,845767788,168648038,1684955401,746086688,168654945,2054056457,222707744,1869416714,1870078070,1881171058,1663070836,1683700339,1701408112,2037544046,744304683,168651108,1987013897,1919907616,1953505380,1935876210,1885625146,1852139885,729379444,1697406258,151653747,544632685,1865181540,1702061670,2037194868,1768779876,1920233061,151653753,1752397168,225665824,1869613322,1936007280,1077938701,151653690,1952805481,2037189133,1768779876,1920233061,168639097,1987013897,980640544,1836082267,1563571049,225206572,1633880330,1663069292,1683700339,1701408112,2037544046,151653725,1075864426,151653702,1819042147,1936615712,1819042164,1768779876,1077938701,151653690,1718904178,168626701,942812681,218762550,757938954,1818435629,1953391977,1953391904,1684370021,1869770784,1952671092,1830839397,778396783,758843917,1763716397,540700782,728789851,1025531188,1768710944,544501349,1818322290,1685024045,1396908133,168626701,1953721961,1684827233,543780208,1668248176,1879640589,1634235253,1829308941,1646294639,1886596208,1530595593,824930402,1025531190,1952805408,1936615712,1819042164]},{"sector":7,"length":512,"data":[1768779876,1650139180,942746480,1885945181,1650139180,808594288,1935883613,1879640589,543716213,168653668,1987013897,746086944,168653667,1987013897,746086688,1093677104,990447976,544499047,1633951841,1679843700,1919120229,1869901929,1868963954,1162092658,658986306,1702043763,1852140903,151653748,544501353,224932147,1667893514,1952540192,1885629537,1919248749,151653746,544632685,1630303076,151653752,544632685,1936941915,744320101,168653667,1987013897,1935956768,1567384947,225666092,1869416714,2019762294,151597612,1819042107,840983407,1936024608,1885958755,1936879476,2013858317,1629516399,2019634296,1762200077,857764974,168650801,1668180489,222707744,1952540170,1885629537,1919248749,168639090,1987013897,746086688,1717986100,151653736,544501353,224932146,977289226,1829308941,1528854127,1634886515,1936221044,744320101,990476385,543516788,1936877926,1936269428,1702065440,1935745124,1919120160,1751348321,1936024608,1885958755,225603444,1869416714,2019696758,225993004,1870137610,2019762290,225993516,543582474,151653681,544238947,1667329371,1701734760,540224605,1936276233,544497952,1935762796,543236212,942878776,168640310,543320585,168642112,1702063205,1661536781,1528852589,1768779876,744305203,990447920,1629516649,758526240,544500066,1701407843,222262382,2053769482,222707744,1684956426,168650345,1667589129,158884640,1933248777,1629516901]},{"sector":8,"length":512,"data":[1835625504,1864397929,1179000934,1179010630,224937542,977289226,1862863373,2019827826,221326636,1869416714,2019631222,808464428,168650808,1953392905,1748054816,1627982349,1646290020,154676344,1752447753,1702043749,1684959075,1818587936,1869898597,1936269426,1768710944,661941861,1396908147,2013858317,1663070831,2019765368,1950025993,544434536,1768778092,1936269428,1179010592,1986338886,1713401445,857764463,1768041778,168653684,1987013897,746086688,942682160,151653736,544501353,224932147,1869416714,2019827830,1885494060,1563439659,1731922185,1663071333,1852139884,544417652,168645443,1818321673,1702043756,1634562676,158491748,1702050569,1633820788,168650099,1987013897,746086688,168653667,1918987273,746087200,168654945,1919447817,746087200,990447928,1914721091,1767992677,824210286,1768041782,151653748,544632685,808220769,1748578352,1762200077,857764974,168650801,1987013897,1885494048,1563439659,158884396,1702050569,1818435700,1953391977,1126200103,218762579,1818429706,218762596,1869416714,2019696758,1919907628,1953505380,1885020274,1329884745,1563568979,1829308941,1629517423,221391992,1852377354,825434228,151653736,544632685,1148078427,1699967855,1630297452,1762266488,1398087782,1094996805,1829308941,1646294639,1870081144,1881171058,1528853108,1094996848,224211499,1869416714,2019631222,168636972,1953392905,1748054816,1829308941,1528854127,1396786259]},{"sector":9,"length":512,"data":[744320101,168654945,1768189541,151653734,544632685,1865181555,1702061670,1868767348,1702065774,168653671,1987013897,746087200,1397577038,223561541,977289226,1812531725,2004051055,1829308941,1679849071,2019634281,1829308941,1646294639,1683696760,168648041,1987013897,746086688,151653682,544501353,224932147,1667893514,1952540192,1885629537,1919248749,151653746,544632685,1567188059,225993004,1869351178,1075867759,218762562,1769146634,1919968634,151593062,1937076283,1684349032,151653737,1752397168,225010720,1870137610,1885479026,225468972,1835206922,1683693680,862547312,808213810,1778977293,1178607738,1762200077,1646289774,151653744,543387241,168652898,221921344,1869416714,2019631222,808661036,151611445,1952802619,2002874912,1685024045,1634934885,1931502966,1702125940,1684300064,1936942450,168653669,1953392905,1748054816,1829308941,1998616175,543453807,544371824,1836082267,1836212073,729178483,1663851824,151653752,544632685,1685221239,1920233504,1885625120,1918855533,1986098029,744305195,168654946,2053731081,1718775909,990447904,544632685,1919907684,1953505380,1683693682,1600744816,1634954608,1697406326,168651108,1987013897,1919907616,1953505380,1683693682,1600744816,1634954608,1680629110,151653737,544632685,1685221239,1920233504,980640800,728785499,1768779876,1936552031,841709153,1769155677,1829308941,1998616175,543453807,544371824,1836082267]}],[{"sector":1,"length":512,"data":[1769168745,744318330,168654945,1987013897,746086688,909128496,990447976,544499047,762798450,1701080941,1769435936,543712116,1919181921,1702064997,151653747,544501353,224932147,1869416714,1870078070,1881171058,1528853108,1768779876,846033503,808152432,2019765341,1829308941,1998616175,543453807,544371824,1836082267,1836212073,728592434,1647074610,151653752,1702521203,543584880,1832585481,1679849071,1685221239,1920233504,1885625120,1885301101,1836200557,1684352093,151653737,544632685,1685221239,1920233504,1885625120,1885301101,1836200557,1768172637,1829308941,1998616175,543453807,544371824,1530557284,1680568418,1600744816,1915907440,1563569005,225014572,1769146634,1919968634,151593062,1886351419,1768187168,1879640589,1679847535,218762601,757938954,1869094957,1931504495,1919252069,1696623713,1885692792,1852795252,218762611,1869416714,1769152630,1717989164,544499059,1952675941,168649313,2053731081,1718775909,990447904,1752397168,2019845408,1879640589,543716213,168654948,2053731081,1718775909,990447904,544370552,746087525,225993829,1870137610,2019827826,225993772,1869416714,2019827830,1717989164,544499059,811825253,1074400560,168639040,1685023753,168649331,1987013897,745300512,168651873,1987013897,746087200,168653667,1987013897,746086688,858796592,151653736,544501353,224932147,1684080906,2019827812,1668834604,1697460528,808477560,1661536781]},{"sector":2,"length":512,"data":[1931505773,1718561897,1952805734,1684956448,1952675941,168649313,543320585,168641088,1718159885,1413563168,1313425475,221328212,1869416714,1818370166,1748054828,1829308941,1629517423,842017912,224932912,1852377354,825434228,151653736,1702521203,543584880,1832585481,1679849071,1685221239,1920233504,1819237152,1953392996,744304947,225993829,1869416714,1870078070,1881171058,1528853108,1768189039,825455726,2019830877,1829308941,1998616175,543453807,544371824,1530557284,1865117794,1852400748,724644724,1663851826,151653752,1702521203,543584880,2017134857,1696625263,1697413220,168654948,1919907849,746087456,168654948,1987013897,746087456,1936090735,1830843493,1953393017,168636723,1987013897,746087200,168653667,1987013897,745300256,224933168,1852377354,825434228,1695157608,1718183022,168626701,2053731081,1718775909,990447904,544239472,225993829,1869613322,2019827824,168626701,1987013897,745300512,157828658,1701264137,1852383348,1177690228,1701978216,1831693409,543515759,1952671094,168653423,1987013897,746086688,808464944,151653736,544501353,224932147,1835206922,2019762288,1936743212,1734501488,990453853,543451492,1746953591,543911791,1629516905,1629512814,1948280178,1814062440,544502625,1663069801,1852399976,151653695,544894570,846491241,1953459814,1936881007,1829308941,1679849071,1870081144,1881171058,1528853108,1768189039,808150578,151653725]},{"sector":3,"length":512,"data":[544370552,1663858787,151653752,1734894456,746087200,1685221239,1920233504,1819237152,1714579812,157102635,1701344315,1853169774,1802465128,1829308941,1629517423,842017912,224932144,1852377354,825434228,1762266472,1714582638,1869901678,980644469,1879640589,1679847535,151653747,1634758512,1661536781,168649580,1952805385,168626701,1397641027,1702043732,1852140903,218762612,1852793610,1734701942,1634476147,543974754,1685221239,154864141,1864398692,1702061670,1970413684,1935892334,154864141,1864398692,1702061670,1232085108,1397703790,168636971,543582523,1397052245,168640836,2003044667,1717989152,544499059,1094996848,168636971,1684956475,168650345,544695305,1936090735,1629516901,1684300127,221522802,2003044618,1717989152,544499059,1684103012,875262564,1431177741,1195725645,1902452819,606609525,1852793645,1734701942,841951603,168626701,1952675941,1814061665,1818583649,1954112032,151653733,807428708,168650800,543319049,224932144,1650723082,1748185120,1678313997,909123682,151653736,807428708,168650819,543319049,224937008,1650723082,1749364768,1852115469,1668834660,543318388,1700946284,1701716076,168653409,1329793549,542397262,1935961701,168626701,757935419,1635021600,1713400675,1701667186,1346642035,1696614733,1885692792,1852795252,1851877408,1919249508,909189235,758264623,225732962,1158286602,827475544,1953701942,224621938,2003044618,1679833120]},{"sector":4,"length":512,"data":[673214581,168634687,544695305,1969496114,1059594352,151653673,1059092324,1232210445,2003044688,168640288,156451698,1059092324,1181878797,2003044684,168640288,156259186,1059092324,1399982605,2003044691,168640288,1380341829,1696609841,225666158,1158286602,861029976,1953701938,224621938,1684277514,1679833120,673214581,168634687,543450121,1969496114,1059594352,151653673,1059087460,1165101581,1678331977,222240868,1396929034,544695305,151653695,1059092324,1165101581,1678330950,222240868,1397060106,1684277584,168640288,156455794,1059092324,1678313997,222240887,1180189962,540160850,1935961701,168626701,811825253,168639024,1937076233,1935941736,1879640589,543716213,1936090735,1763734629,1831892078,168650611,1886218761,1668834592,225998943,1668834570,221917488,1970276618,1679845491,151653747,1752397168,1717989152,544499059,829714025,224883565,1835665674,2019893360,2021154659,2019887629,976433251,1879640589,543716213,168653668,1937076233,1718558824,1952805734,1953392928,1735617843,1778977293,1696624749,2019517304,1695157624,909140856,151653690,1752397168,225666080,1970276618,1864394867,1702061670,2019893364,1832267875,168650611,1886218761,1668834592,225998943,1668834570,221930288,1970276618,1679845491,151653747,1752397168,1717989152,544499059,811825253,1735617859,1778977293,1696624749,2019517304,1695157624,1680892792,151653690,1752397168,225666080]},{"sector":5,"length":512,"data":[1970276618,1864394867,1702061670,2019893364,1833185379,168650611,1886218761,1668834592,225998943,1668834570,221930800,1970276618,1679845491,151653747,1752397168,1717989152,544499059,811825253,1735617861,2019887629,2021154659,151653690,544632685,1663857508,1683700339,1818588019,151653725,544239472,1853190747,1953392991,151653725,544238947,1836082267,1563571049,168636460,1886351369,225666080,1852442890,2019893370,1597125475,168654968,2019887629,1597387107,221935736,1970276618,224487539,1869416714,1885479030,225473324,1970276618,1679845491,151653747,544632685,1663857508,1683700339,1818588019,151653725,544632685,1529641057,777875554,1380341829,1915631153,168644681,1987013897,746086944,1567646299,1180189998,775303506,223560562,1869416714,2019762294,1885494060,1480928861,909201990,1279685166,1829308941,1679849071,1650142328,1160666480,827475544,1399991862,151653712,544632685,1529637235,777875554,1380341829,1915631153,168645459,1987013897,1885494048,1480928861,909201990,1396929070,225665836,1869416714,1650139254,1160666480,827475544,1399991862,1935944787,1661536781,1528852589,1148078434,744318818,990447920,543451492,543516788,1701017701,1869182064,1668227182,544372067,1769172585,1142973796,1196769861,151653695,1763736170,1650812019,1701275509,221655397,543582474,1128486981,223365459,1869416714,1767579766,2019914862,1567648099,225993004,1869416714]},{"sector":6,"length":512,"data":[1767579766,2019914862,1567843171,225993260,1684956426,168650345,1987013897,1885494048,1480928861,909201990,1346990638,1717989164,544499059,1767859573,225997934,1869416714,2019631222,1869896492,1886609264,151653725,544632685,1567646299,1180189998,775303506,743461746,168654945,1684955401,1954112032,1953505381,1650139250,1160666480,827475544,1181888054,741419852,544501614,1916471601,1952805733,222712864,1869613322,2019631216,1778977293,1763733613,1650812019,1701275509,221655410,1685285130,1735746149,828728679,168639030,1987013897,1885494048,1480928861,909201990,1346990638,1717989164,544499059,1920233065,221408884,1851853066,2036473956,1881171316,1528853108,777875554,1380341829,1915631153,824921158,1953459756,990458656,1702061426,1179197556,1411394336,151653702,544632685,1567646299,1180189998,775303506,743461746,1936090735,1914729573,779315045,223564658,1869416714,1918574710,779315045,1565542770,225993004,1869416714,1918574710,779315045,1565737842,225993260,1869416714,1918574710,779315045,1565279858,225993516,1869416714,1918574710,779315045,1565545330,225993772,1869416714,1918574710,779315045,1565741938,225014572,1879653130,1629515887,990514552,1987013897,1701993248,1915646823,744313668,168654945,1869416763,1935941750,225993004,1869613322,1935941744,1936263693,1969382756,1919248231,221918769,1869613322,168649072,1952805385,218762598,858654986]},{"sector":7,"length":512,"data":[168638008,862156901,2021154610,151653690,1752397168,168649825,1987013897,1885496608,1886610732,1879640589,543716213,168653668,1987013897,745759776,1530557283,1702064996,168648044,1987013897,2019648800,1650809644,1160666480,861029976,1165110834,168644681,1987013897,746086944,1650809632,1160666480,861029976,1131556402,151653715,544632685,746087269,1885496667,1480928861,842224198,1178956334,151653708,544632685,746087525,1885496667,1480928861,842224198,1397060142,151653712,544632685,539781491,1885496667,1480928861,842224198,1397977646,1829308941,1528854127,1567646309,1180189998,775041874,743654258,168653667,1987013897,1650809632,1160666480,861029976,1399991858,1935944787,1661536781,1528852589,1148078434,744318818,990447920,543451492,543516788,1701017701,1869182064,1668227182,544372067,1769172585,1142973796,1196769861,151653695,1763736170,1650812019,1701275509,221393765,543582474,1128486981,223365459,1869416714,1767579766,2019914862,1567648099,225993004,1869416714,1767579766,2019914862,1567843171,225993260,1684956426,168650345,1987013897,1650809632,1160666480,861029976,1165110834,1865175113,1702061670,1702174836,1953392991,151653752,2054582125,1634017400,1952132216,1935634543,168648048,1987013897,1650809632,1160666480,861029976,1165110834,1697402963,168654945,1684955401,1954112032,1953505381,1700470898,777875554,1380341829,1915630131,726419013]},{"sector":8,"length":512,"data":[1869491249,154214516,1936028219,1411413093,151653702,544239472,168654945,1886218761,1685285152,1735746149,863135079,1762266418,1650812019,1701275509,976368485,1829308941,1528854127,1567646309,1180189998,775041874,1346979186,1717989164,544499059,1920233065,221408884,1851853066,2036473956,1881171316,1528853108,1567646309,1180189998,775041874,1279673714,1848389931,857764975,1701985033,544499059,723535433,222712864,1869416714,1700470902,777875554,1380341829,1915630131,743461701,1936090735,1914729573,779315045,223564658,1869416714,2003050614,543453807,544371824,1734701659,1232219763,1697406288,168654945,1987013897,1701993248,1915646823,744313667,168654946,1987013897,1701993248,1915646823,744311878,168654947,1987013897,1870095392,1881171058,1528853108,1936156018,1347645998,1684352093,151653752,544632685,1734701659,1399991923,1932287315,990514537,1886351369,225992992,1829321482,1528854127,1936156018,1396994606,2019634269,154864141,544632685,1630303076,151653752,544239472,168653668,1701081961,1734833506,842232421,151653690,1634758512,151653732,908092004,168650806,1952805385,218762598,1936615690,1819042164,1768779876,1684956448,218762608,543582474,1129595203,1414416712,168636723,1852406125,540095348,1668248176,1661536781,1629515885,842017912,157823792,1702050569,2019893364,1953523043,544108393,1952671094,222261871,2053769482,222707744,1953459722]},{"sector":9,"length":512,"data":[1702129257,1953719666,221930597,1835206922,1935876208,1885625146,842230125,221260893,2053769482,858465312,1678313997,909516898,151587176,1886218811,1870095904,1881171058,1528853108,151653725,544238954,1919907684,1953505380,1935876210,1819237178,1953392996,224211251,977289226,1661536781,1646293101,221326444,2053769482,222707744,1835206922,1818370160,168637228,544893449,168642112,1886216969,745300512,224937008,2053769482,222707744,1835206922,1818370160,1749364780,1778977293,1847622254,1852404847,1701995892,1684370547,1077938701,151653690,544238947,1530557283,1768779876,744305203,151653680,606108266,168637227,543319049,157824566,1765476617,1685349746,1762200077,225731954,1769565450,825455726,1684956448,1695157616,1718183022,168626701,1882403433,168639085,1886216969,980640544,1836082267,1563571049,168636460,544893449,168642112,543319049,224933430,1701972234,874538612,1077938701,151653690,1718904178,168636960,1882468969,168639085,1886216969,980640544,1836082267,1563571049,168636460,544893449,168642112,543319049,224933430,977289226,1762200077,225731954,151653642,942684206,218762550,1684956426,991979113,168643920,540740109,1852383264,842166900,1226845472,840979534,1344806962,1919381362,1948282209,1768780389,1702125934,1852383273,1920099700,544501877,1684955496,779249004,540740109,1750343712,1763734377,1868963955,1162092658,541545794]}]],[[{"sector":1,"length":512,"data":[1702065257,540698220,661940512,543236211,1668571491,1818307944,1868963948,1752440946,1635131493,1970235762,1313415283,858923092,540740109,1851858976,1313415268,875700308,1818321696,1948283756,544498024,544825709,1969447791,1853169778,1684370032,1635017577,544828514,1629516897,1948285294,778399081,540740109,1750540320,1998615649,1868832869,544434464,1952805488,543452773,1646292852,543236197,1835888483,543452769,1702129257,1701998706,544367988,1768453928,1998612579,1918967909,168635493,538976315,1629515369,1852142368,539780467,1953723754,1679843616,1701209705,1953391986,1919906592,1718558836,1836016416,1684955501,2036473897,1952805664,1735289204,1701344288,1347637280,224816928,538983178,1920298784,1918988320,544501349,1635086693,1869881452,1920298784,1853320992,1347637280,544174880,1952540788,1397703712,1701798944,1869488243,1919295604,1864394085,1830842997,1919905125,990514553,1998594080,544105832,1897948535,779381109,1750343712,1717924453,543519343,1953394531,543977330,1935961701,544240928,1701995880,1701345056,1866670190,1869771886,1916939628,543908197,168653423,538976315,1092644449,1953656674,544106784,1919902273,1699884916,796488308,1818845510,544434464,1701602675,1684370531,218762542,1953392906,976368242,1661536781,151610476,1701985033,1635021669,1936288866,1752440936,1936158313,1829308941,1629517423,1935879288,1829308941,1679849071,2019634291]},{"sector":2,"length":512,"data":[1829308941,1931507311,2019634291,168626701,757935419,1818322464,1752440940,1735749490,1869881448,1684890400,1886351212,168626701,757935419,1734689312,1830841961,544106849,1835888483,543452769,1886351212,218762542,1684890378,1886351212,1869770784,151653731,544632685,1529639027,1601204084,542994547,1701985033,1919906931,1953701989,543908705,1768453160,1970086003,1646294131,1768300645,695497586,1829308941,1528854127,1920103013,744322149,1936090735,1663071333,1869374573,168652911,1937076233,1935941736,1879640589,1696624751,1762266483,1380196454,1380275785,544302368,151653680,1819042147,1685285152,1735746149,1818584423,1701077359,151653732,544894570,168642112,1818321673,1919098988,1702125925,1835890020,1935766649,1765476715,1869488230,1935766560,1936269419,1952669984,744846953,1701995296,543519841,1969496161,544828781,224751215,977289226,1852115469,224815460,1869416714,2019827830,1717989164,544499059,1836020336,221344880,543582474,223170623,1633880330,1763732588,225276019,2053769482,222707744,1869416714,2019827830,1717989164,544499059,1836020336,221410416,977289226,1852115469,224815460,1869416714,2019762294,168636716,1818321673,1701257324,1852402804,990447973,1836020336,1684370544,1886284064,168653941,1886216969,745300256,168645187,2054056457,222707744,1869416714,2019827830,1634491180,1835234419,168648036,1667589129,225014560,1835665674,1835212912]},{"sector":3,"length":512,"data":[168636772,221921344,1835206922,1818304624,658188076,1778977293,1835212901,1869573220,990447984,1663067753,1701670255,168653934,1886216969,745300256,220675879,1701447946,1769107488,1701344366,151613548,543582523,1970365810,544502629,544370534,1886152040,1862863373,1818304626,1280267308,1380276047,1929972237,1629512309,1629957228,151653671,544238947,1160539233,1296254030,539828292,220684583,1634339082,1684890400,1920099679,151614063,543582523,544501614,1868785010,2053729895,168649829,2002936585,2013858317,543647843,1630304354,151653752,1819042147,1768649504,1836016496,168649069,1818784521,746086944,151653681,544632685,1529641060,1818520931,729052009,224229474,1869416714,1817911414,1668576097,744318061,1936090735,1679848549,1835235693,1661603172,976315501,1829308941,1679849071,1718561897,1952805734,1852402720,1970233189,151653748,1819042147,225993760,1684890378,980446570,151653690,544238954,1818520931,158363503,1633827593,1948281699,1752440943,1869881445,218762608,1684890378,1886351212,1684956448,218762608,757938954,2037588013,2019652718,1920099616,1746956911,1818521185,221147749,757938954,1852383277,1230184506,1969438253,1852142194,1751326836,1763734113,1768693870,1767859566,218762606,1684890378,1920099679,1881174639,224620402,1869416714,2019762294,225014572,1970473226,2019762274,1717989164,544499059,1701734764,728656223,151653684,543450209]},{"sector":4,"length":512,"data":[1529641059,1836020336,1701606512,168648046,1987013897,745104416,1936090735,1814066277,1600482921,225736047,1661549322,1663070317,842083448,990514487,543255049,1600417123,1869771365,151597426,543582523,1915184503,1701978213,2037148769,1936026912,543450483,168652917,1668180233,158884640,1849362697,1700949365,1718558834,1634759456,544433507,1931505524,225470827,1869416714,1818304630,656418604,1913195021,1931505765,1651732340,1835207181,1919246180,829583218,151653690,544632685,1865181555,1702061670,1919230068,1918985074,168653925,1987013897,745300768,1702521203,1696622191,1633907314,225731954,1701972234,1869422704,224555894,1633880330,1881173100,1819505781,157642345,1919957769,544501353,1769108595,168650606,1886218761,1919245088,1952805490,1661603165,1700750445,1919906418,1684956448,218762608,1769107466,1701344366,221933676,1869416714,1769152630,1717989164,544499059,1886152040,224883565,1818585098,1869573232,221917296,1869416714,2019696758,1634556716,2003792504,1745489245,1819307109,829452143,151653690,544632685,1865181540,1702061670,1768693876,1868522862,168653941,1886152040,1886351212,151653690,1935961964,151653730,544238947,657222753,168634206,543517193,1784966499,168652909,1886216969,745300256,151653689,543518314,168650304,1987013897,746086688,1936090735,1814066277,1600482921,729052527,168638001,1818321673,1635000428,1869897570,1778977293]},{"sector":5,"length":512,"data":[1746956397,1819307109,225472367,977289226,1929972237,1651732340,1661536781,1629515885,1380133996,1778977293,1746953582,1819307109,225472367,1701054730,1768169571,1879640589,543716213,168654946,1818321673,1970282604,1768715124,168650094,1886351369,225993248,1701054730,2019696739,1778977293,1746958958,1819307109,829452143,1635191309,1701540969,168639097,1886216969,1869503264,1953784180,808213881,1765476640,1953702003,544106852,1768300641,222258540,1852442890,1701322874,1869377644,221278319,1702103306,1528853619,1868854387,1566995573,1747990572,1936276233,1685353248,544503151,1701060705,1701013878,151653695,1746958954,1819307109,812674927,1829308941,1679849071,1718561912,1952805734,1701998624,1701540723,151653753,544632685,1932294243,1868921449,1919950950,1802728293,168655205,1818321673,1953701996,1953853284,1829308941,1629517423,808463464,151653736,544501353,224933425,1835665674,1701322864,1869377644,221278319,990514442,539831597,1868767297,1851878765,539828324,2037279092,1936941344,1818389861,221147749,1594494218,1096040772,1734701856,1953391981,168626701,1601008481,1717530221,1936154988,543319049,1715145008,1936154988,1919903264,1701344288,1701735712,1768845165,218762595,1179468042,842220639,1902446880,154214517,758264635,544500066,1868787823,1680827748,543257697,1919250543,224685665,1179468042,1229018975,1902446932,221388917,1179468042,842219871]},{"sector":6,"length":512,"data":[1902446880,154411125,1684300091,1936942450,1701867296,1684955506,544434464,1647129139,168653929,1598442817,541215059,1970365705,990459936,1919248500,544417637,1230184545,1852383298,1701344288,1735549216,1852140917,168653684,1598442817,1195725645,1970365705,1747988768,1718172448,1931501856,1881171813,1768318322,1635197048,1768366195,544105846,1830827106,1869440366,224618862,1179468042,1196639839,1902446931,808591477,1765482600,1397104742,544370464,1998607175,1696625505,1970234222,1919251566,168649829,1296108045,826564422,1695096886,874542449,991979568,1647130161,1864397929,1685021552,1633955685,1864393076,1634887024,168649838,1598442817,1380205633,1970365705,1747990560,1684093728,1936028260,1886330995,1851880037,1936269412,1986619168,168652389,758843917,1629498669,1634951009,1600415094,1717924464,1629517929,1629512814,1702059873,1919967079,1970085989,1646294131,1868767333,1667593070,1986622581,168636005,1935630689,1684371041,1701998687,544762214,807428708,1096235785,1864389705,1163010162,774778448,1701998624,225995110,1600217354,1600611699,157643376,807428708,1702050569,1852140903,1919950964,2020173413,168626701,1835363949,1868983913,544695305,1631258928,1701995620,1629516659,1668248435,1702125929,1769414756,1948280948,1830839656,1869440366,224618862,1868521738,1685021552,2003044709,990457888,1868787823,1763730788,544171630,544370534,1936287860,1918989856]},{"sector":7,"length":512,"data":[1953390953,168626701,1397639489,1931498068,1668641396,1836190221,1919181921,2003044617,990461728,1919181921,544437093,1864394351,1634887024,1730176110,1852405353,1752440935,793911397,2036473933,168650100,757935419,1734701600,544040301,543452769,1650616691,543519865,1953723757,543515168,1936617315,1953850213,224753257,1734701578,158164333,543319049,1832585535,1914725487,1914726245,1881173295,544502369,1763731055,1920234350,1769235317,168652399,1650616691,543519865,543319049,1396377919,1646281289,224752761,1835886858,1919181921,2003044640,990461728,1919181921,544437093,1864394351,1634887024,1730176110,1852405353,1752440935,1835606117,543450477,224818291,1635285002,158491748,544695305,1631258943,1701995620,1864397683,1684086886,1769236836,1818324591,1970565920,168650342,757935419,1936286752,1751343469,1684955424,1718445088,1936154988,1937075488,1700929652,1852793632,1969448307,1702259060,1768163853,1667329395,1678319720,155132002,1887007803,1718558821,1869770784,1936942435,1847620207,1701078373,1678380388,1634494061,153121639,1059086948,1818639113,544434017,544370534,1920235621,1919950945,1936024431,544370547,1952540006,1936028277,168626701,1130319172,542265423,1970365705,990458144,1752457581,1886348064,1701015410,1919906675,1296304653,1481461087,1902446857,154280053,1481461051,1954047264,1769172581,225668719,1862929674,1685021552,1919901541,543319049]},{"sector":8,"length":512,"data":[1698367807,1634890872,1953063456,1852383347,1701344288,1668312864,224748655,1936748298,157645417,543319049,1933248831,543521385,1948280431,544434536,1919250543,1869182049,841490542,544370464,168634676,1718772086,1936154988,543319049,1715145023,1936154988,1919903264,1768453152,1635131507,1851877746,218762612,1380013578,1129270367,1279410507,1902446917,154214517,1918989883,1953390953,544434464,1801678700,1701601889,1096157709,1330470738,156062276,544567653,1765476658,1752440934,660959845,543236211,541347661,541929298,1701995880,1096157709,1230200658,1229414234,1695108694,874542449,1718172425,1931501856,543521385,544432503,1702259047,1443499374,1398755905,1180654153,1145262671,1970365705,990459936,1864394345,544828526,543518319,1702521203,544434464,1836213616,1702130793,1443499364,1398755905,1314871881,155469125,544567653,543698993,543582523,1847616887,543450469,543516788,1702521203,1096157709,826564434,1695096886,840988017,991979568,1864394345,1634887024,1931502702,543521385,1461744489,222581327,1380013578,842220639,1902446880,808722549,1765482600,1886330982,1851880037,1769152612,1763730810,1464082547,222581327,1913261322,1769173349,153118074,1059086948,1769159433,1948280186,544498024,1936287860,1735549216,1869116192,543452277,168650082,1397639489,1696617044,225666158,1628048650,1228999017,1381258062,1044331552,168626701,1413563487,1852121153]},{"sector":9,"length":512,"data":[168653668,1329793549,542397262,1835492723,225734245,1762266378,1330454630,1163085124,1145914196,540740109,1869832815,1702126956,1936615712,1668641396,1852795252,1918967923,1162223717,539773262,1397310534,1176513609,1347700051,1277176909,1094992207,673205324,691419186,1330389036,1279345729,858267724,740898360,1448037664,1734701600,2018661420,1330454572,1381245014,1701981304,1628048743,1935830879,157442420,807434084,811950692,1680878696,1748067682,1650733100,745026661,1748316209,925905196,842083432,824993844,157824562,1935830843,1952803951,1852383333,1970435187,1869182051,1868767342,225666404,1868522506,1635021666,2003044706,1346786080,1431261767,841700176,1394617396,1380405318,1397773647,724841003,1394617393,1380405318,1397773647,724841003,151653684,544695305,1380012115,1113539923,725963585,1394617397,1397899600,1094868805,925582675,1347625004,1163088449,1396785759,875703109,1394617448,1397899600,1094868805,841696595,168650806,1836278383,543712097,543319049,741420081,741485618,741616691,1832585524,1881176161,1768780389,1651078003,1830839660,1768448865,1713399150,1948283503,1629513064,1702260578,1313147405,222710084,1829375242,1836213359,157442420,824205924,741354545,808203057,741683500,875637808,151597100,2019711803,1528835165,744321122,1768184608,1528835165,224225651,1678313738,892412002,741552428,824980529,892415027,741421356,824980529]}],[{"sector":1,"length":512,"data":[1530595633,1680568418,1529634153,1932226658,1529634153,1680570466,1529634153,1932228706,168648041,1633749517,1918984045,1678340967,1629954146,1380133927,168626701,757935419,1970357536,1936028769,1919903264,1918988320,543450483,1969713761,1953391981,1931488371,1701998452,1852383332,1380994848,1714308174,1936154988,168626701,1598509633,1163019588,1902446918,154214517,1852796475,1835886893,1634296933,1830839668,1919905125,1701978233,1701995878,224748398,1196572938,1146047839,1695108434,840988017,1718172425,660961056,1663067510,1970302319,543450484,543516788,541347661,541929298,1702132066,1379994125,1430937415,1163023443,1902446919,154411125,1931501883,544173167,1768383858,1919251571,1379994125,1163353927,1380209225,1695106885,941651313,1718172425,661940512,543236211,1835492723,544501349,1768383858,1919251571,544370464,539775555,778269797,1379994125,1296654151,155469133,544567653,543698993,543582523,1931965545,1937074720,543236212,1651340654,168653413,1598509633,1095909702,156386372,544567653,543698994,543582523,1931965545,543584032,543516788,1836216166,2021160992,2037987960,2038004089,168655225,758843917,1176513837,1696625263,543712097,1919250543,543452769,1701869940,544106784,543516788,1819045734,1852405615,1635000423,744844386,1701344288,1919510048,1646294131,543519865,168653673,757935419,1701344288,1953063456,1629498483,1701585012,544502625]},{"sector":2,"length":512,"data":[543518319,1998612079,1751345512,1937075488,1700929652,1701998624,1953391987,1752440891,1702043749,1684959075,544434464,224749684,757938954,1768038445,1629516660,1864395884,1752637542,543712105,1953723757,543515168,1702060641,221148270,757938954,1752440877,1953046629,544435557,1646292585,1635021929,1970085986,1646294131,1919885413,1701995876,1769152612,1768712557,1948283489,1935745135,1835687789,1629499760,1679844462,1784640361,774991981,168626701,1953786210,1814061665,1818583649,1954112032,151653733,1092641380,1230980946,1145392461,990447881,1230983247,168643917,543319049,1598509633,1163019588,1380002630,1430937415,1163023443,1329269063,1297243984,1678313997,1379999842,1162108743,155600210,1329269001,223174480,1650723082,1196572960,1398098527,1195725396,990447881,1381978191,1146047839,1678313997,1379999842,1162108743,155600210,1329269001,1330470736,223561286,1650723082,1196572960,1398098527,1195725396,990447881,1381978191,1678313997,1379999842,1430937415,1163023443,151587143,1599098683,1145134930,151653700,1092641380,1247758162,1381258069,151603013,1347369737,223887711,151653642,1092641380,1147094866,1178948165,990447881,1327509536,911040336,151653684,1092641380,1147094866,1178948165,990447881,1327509792,1179475792,1413566284,1678313997,1379999842,1162108743,155600210,540739849,1347362866,1329876319,1162625621,1678313997,1379999842,1162108743,155600210]},{"sector":3,"length":512,"data":[540739849,1347362867,808996191,1678313997,1379999842,1162108743,155600210,540739849,1347362868,1482181983,1678313997,1379999842,1162108743,155600210,540739849,1347362869,1380009567,223167821,1650723082,1196572960,1380009567,1380205633,990447881,1327511072,1095130960,1296910674,1678313997,1379999842,1296654151,155469133,540739849,1347362871,1279611487,151653688,1092641380,1230980946,1145392461,990447881,1327511584,1163026256,859189580,151653682,1092641380,1465861970,1146243397,541541714,540739849,1347362873,1212363103,151653707,1092641380,1465861970,1146243397,541541714,825952521,1347362864,1230263135,1678313997,1379999842,1163353927,1380209225,153110341,825309961,1599098656,168645187,543319049,1598509633,1380533591,1195725380,990447904,1327510065,1380212560,1678313997,1379999842,1163353927,1380209225,153110341,858864393,1599098656,168645204,543319049,1598509633,1380533591,1195725380,990447904,1327510577,1163091792,1195725383,1678313997,1379999842,1296654151,155469133,825952521,1347362869,1296910687,168638547,543319049,1598509633,1162693961,151587140,540422459,1230983247,221793613,1650723082,1196572960,1229281119,1163019346,151593031,540487995,1298092111,168646733,543319049,1751541296,151587104,540553531,1398755407,1230196552,218762586,1650723082,1196572960,1296910687,151602245,1347369737,168636767,543319049,1598509633,1162693961,151587140]},{"sector":4,"length":512,"data":[1599098683,151653683,1092641380,1247758162,1381258069,151603013,1347369737,223888479,1650723082,1196572960,1398098527,1195725396,990447881,1130319951,151653708,1092641380,1465861970,1146243397,541541714,1329269001,1414750032,1678313997,1379999842,1163353927,1380209225,153110341,1347369737,223560543,1650723082,1196572960,1229281119,1163019346,151593031,1599098683,168645444,543319049,1598509633,1380533591,1195725380,990447904,1163874383,151653715,1092641380,1465861970,1146243397,541541714,1329269001,1397120848,1678313997,1379999842,1163353927,1380209225,153110341,1347369737,223561567,1650723082,1196572960,1229281119,1163019346,151593031,1599098683,168645459,758843917,1931488557,1768121712,1864395873,1142977392,1126181976,1394617420,1126181972,1142959187,1159736403,1176513619,1193290835,1394617427,990514515,539831597,1920233061,1701978233,1919513969,1763730533,1868636262,1763719220,1702043763,1650532468,224753263,1628048650,1918856563,1970169701,1634476141,543974754,1702132066,1678313997,1163010146,1480875847,1163010092,1279483719,1163010092,1414750023,1163010092,1396924231,1163010092,1396989767,1163010092,1397055303,1163010092,1397120839,1163010092,1397186375,1163010092,1397972807,168626701,757935419,2053731104,1970348133,1718185057,225600873,757938954,154214445,1111316802,541414489,225604720,757938954,154279981,1463635799,541348431,225604720,757938954]},{"sector":5,"length":512,"data":[154345517,1937075829,168649829,757935419,1141453856,1464089943,541348431,225604720,757938954,154476589,1362974545,1146244951,1920233504,758843917,908078381,1028408841,1095715910,1953505364,1378361458,877412677,990514473,539831597,1329858871,1431258173,541412418,544371824,1095062056,220805196,757938954,154673197,1413300820,1163155778,1920233504,1163012128,808537153,990514473,539831597,1213401401,1330139965,168645714,757935419,540029216,1279086412,222776911,757938954,825303085,1027952160,1380009294,1920233504,758843917,824192301,1095114802,1380009533,1920233504,168626701,1599752531,1162760014,1970365705,168636448,1599752531,1163155778,1970365705,168636704,1599752531,1146244951,1970365705,168636960,1599752531,1380931396,1902446916,221519989,1514754826,1331122527,1695106130,891319665,1230178829,1279680346,156516687,544567653,1393167670,1147099721,1279415631,1902446917,221716597,1514754826,1497519199,1695106388,941651313,1230178829,1213423450,156521039,544567653,1393167673,1281317449,155668047,544567653,168636465,1599752531,1380009294,1970365705,221327648,1514754826,1380009567,1902446880,842080373,168626701,1702521203,1634624372,1650723181,1497507616,1462184999,657205071,740773719,660030503,1464936236,1176972327,657205068,740773700,658658343,1213409068,1277635623,657205071,740771150,658589223,168626701,757935419,2053731104,1713402725]},{"sector":6,"length":512,"data":[1327526511,911040336,1327508532,1179475792,1413566284,1347362860,1329876319,1162625621,1347362860,808996191,1347362860,1482181983,1347362860,1380009567,223167821,1628048650,1935633779,1970174569,1650723181,1514754848,1331122527,539771986,1599752531,1095715910,1394617428,1147099721,1279415631,1394617413,1415535177,1163155778,151587341,757097060,1394617393,1180654153,990466625,1025519917,1852796448,218762597,1313817354,1696617555,225666158,990514442,539831597,1953067639,2036473957,1763730804,1279336558,544175136,1529829442,1480875333,1752440876,1763733093,1701995374,1953391981,1564826400,168646724,1920403981,1634038889,1881173363,224620402,1633880330,1998613612,1702127986,225273197,1769146634,1919968634,151607398,1668180283,2019845408,1762200077,1679844206,151653752,225731954,1769109258,1935762804,1852121197,168652900,758843917,1998597421,1702127986,542655264,1702132066,1919295603,1142975855,1230191187,544175136,1530550338,1480875333,168626701,1953067639,1836278117,1919950958,168649583,2019781129,1869488250,1953067639,1074400613,168639040,1685023753,168649331,1818321673,1920409708,1634038889,168652147,1869573129,1111498864,1869482509,1953067639,168639077,1952805385,1920403981,1634038889,544107891,1885630053,168626701,1881170273,224620402,1869416714,1700470902,1701999218,1865178484,1702061670,1633755252,168636720,1886216969,745300256,168645187,543517193]},{"sector":7,"length":512,"data":[825254241,990447904,1696622185,1864393838,1768693862,168650094,1987013897,746086944,1734701659,1131556467,990469459,1634100580,544500853,1835492723,544501349,1965059956,168650099,808477025,168639073,1818321673,1701257324,1684300148,990447986,544499047,1919181921,544437093,1869901417,980967968,1680434472,151653752,1819042147,1802003232,158101349,2019900169,1952671088,1684956448,543584032,1701734764,1919248416,151653733,1702521203,1483108976,1832585481,1528854127,1684103009,808153700,1684352093,151653752,544632685,1633640795,728917092,1680629040,1933248888,543520353,543516788,1919181921,225669989,1869416714,1870078070,1881171058,1528853108,1684103009,875262564,2019699805,168626701,757935419,1734689312,1814064745,544239471,1919252079,1886284064,1814066293,1936027241,218762542,811688202,168639025,1987013897,745567008,1886352475,1567650655,1916471584,1869902693,1948280178,1931502952,1801675124,1752442912,1763734377,1768714349,1847620453,1914839151,690123877,1829308941,1679849071,1718561897,1952805734,1852402720,1970233189,151653748,544632685,1529641057,1684103009,875262564,151653725,1819042147,2019911712,1685221239,1829308941,1629517423,975645804,151653671,1936684147,151653730,544632685,1836278107,1601072479,1734437990,808213875,1829308941,1646294639,1718561904,1952805734,2019911712,1685221239,1718159885,1297104672,1829308941,1646294639,1633365112]},{"sector":8,"length":512,"data":[1684300127,1563700082,1661536781,543976545,1937007975,1952541797,168653428,1987013897,1130519328,1953775955,1630297458,151653740,1075870314,151653702,544632685,1865183330,1702061670,1701322868,1870095480,168649842,1869416763,1633362038,1834970483,1818648430,1567844193,1179468076,842220639,1678313997,909516898,1832585576,1696626287,1529641057,1684103009,224227940,977289226,1852115469,224815460,1869416714,2019631222,1600215852,1919181921,224210987,1633880330,1646292076,151653744,544632685,657222753,168634144,1869902601,168649331,1818321673,1701257324,1852402804,221261925,1835206922,1818304624,223494956,1701447946,1600217376,1953069157,1765476617,1868832870,168650094,1886216969,745300256,220674855,1701447946,811688224,151593009,543582523,1835888483,225734245,1869416714,1870078070,1881171058,1528853108,1935630689,1684371041,1701998687,1568172390,991965228,1634036835,1633755250,1986098015,1885299813,1768318322,1851859064,1633755236,1734701919,1701998687,168626701,757935419,1952794400,1701735712,1768845165,1851859043,1869357156,1763732335,1886724212,218762542,811688202,168639026,1987013897,745104416,1936090735,1814066277,1600482921,158627183,1952805435,544109173,1701995880,1952866592,1277194853,793461583,793789778,541541715,1717924464,168654953,1937076233,1769152616,990447904,1702257011,1936683040,1869182057,1718558830,1701735712,1768845165,1628048739]},{"sector":9,"length":512,"data":[976433249,1661536781,1629515885,1629957228,151653671,1075864170,151587142,543582523,544501614,1702326124,1633886322,1814062451,1702130789,151653746,544238947,657222753,168634234,543255049,168642112,1684955401,745300256,1347768148,156386640,1868774153,1919252078,1869881460,1886418208,1663070821,224752481,977289226,1929972237,1651732340,1812531725,1651729519,1661536781,1629515885,1380133996,1778977293,1178607717,990447881,1696622185,1864393838,1852645478,1852796261,168649577,1886216969,745300256,220674855,1701447946,222707744,1835206922,1818304624,656418604,1778977293,1178607717,1661536781,1629515885,975645804,151653671,1075864938,151653702,544238947,1412197473,168641089,1701734921,811688224,1074400563,168639040,544370441,1702132066,1920233504,1768184608,744304941,157823032,1952805691,1734961184,1953719656,1953063456,543584032,1953718636,1634231072,1718558834,1701735712,1768845165,151653731,1819042147,1768649504,812152688,1933248777,544237931,1847619444,544503909,1818585446,151653732,543384932,168651123,1937076233,1769152616,990447904,1702257011,1936683040,1869182057,1852383342,1886284064,1814066293,224751209,1829321482,1629517423,221260908,1929984778,1651732340,168626701,757935419,2003791392,1634038560,543712114,1835363949,1667853935,544106784,1953720684,168626701,1987013897,745108256,1936090735,1830843493,1936288878,1628048756,976629857]}]],[[{"sector":1,"length":512,"data":[151587081,757939259,1701716013,1830843512,1869440366,224618862,1869416714,2019696758,225014572,1684080906,1769152612,151597612,1768649531,1752440944,1629954149,1635020147,1864378210,1702061670,151653748,544632685,1932294243,1074400617,168639040,1685023753,151609971,1802713865,1948282985,1852121199,1718558820,1920234272,224882281,1851853066,1818304612,225206572,1852442890,1111498867,990447881,1847617129,1696625775,1864393838,1953701990,1735289202,2013858317,543647843,1932294243,151653737,1752397168,225993504,1970473226,2019762274,157905708,1769159433,1864394106,1886330982,1701080931,544106784,1768713837,168653939,1987013897,745104416,1936090735,1814066277,1600482921,225736047,1701972234,1663067504,1651732589,1879640589,1931505775,151653737,1629513066,540291425,1765476617,1868963942,543452789,168653929,1886216969,745108256,1936090735,1696625765,1834968174,1936288878,151653748,1629512554,540422241,1849362697,544503909,1835363949,1667853935,1879640589,1931505775,151587177,1768649531,1869619312,1769236851,1763733103,1852383342,544503152,1701734764,1633749517,979448625,1879640589,1931505775,151587177,1768649531,1869619312,1769236851,1864396399,1852645478,1852796261,168649577,858874209,168639074,1886218761,1684890400,1920099679,151614063,1836016443,1767992432,1628048750,2019909473,221934697,1835665674,1835212912,1869573220,990447984,1701736292,1953068832]},{"sector":2,"length":512,"data":[1752440936,1663071081,1634561391,168649838,758843917,1461726509,1868963941,543452789,543516788,1835363949,1667853935,218762542,828465418,168639028,1987013897,745108256,1936090735,1629516901,1635020147,1731922274,1948284005,1864394088,1702061670,1852383348,1629515636,1635020147,151653730,543450209,1529637235,224229474,990514442,1310728224,1931507567,1869619305,1937010281,544175136,543516788,1953460339,544106784,1953330017,1663066721,1701999215,1852797043,1735289188,544175136,1936287860,1701735712,1768845165,168636003,538976315,543516756,1836216166,1864397921,1752440934,1935745125,1651336563,544367980,1818386804,1936269413,544432416,1819045734,779319151,540740109,1766203424,745829234,1701344288,1763730802,1886330995,1852795252,2037148769,1701736224,543584032,543516788,1819045734,1852405615,2036473959,980641140,154864141,1598903105,537477700,1679826976,1852645474,1852796261,168649577,1396771131,1464098637,538976265,544695328,1835363949,1667853935,154864141,1598903105,537478212,1679826976,1852645476,1852796261,168649577,1396771131,1096245069,538989641,1752440864,1852645477,1852796261,1931502441,1819635560,1953701988,544502369,1752459639,1998610720,225732961,151599882,538976288,1953721961,1952675186,778989417,154864141,1598903105,540160836,538976288,1936287828,544434464,842211425,1953063469,1936615712,1668641396,1852795252,1918989856,1953390953]},{"sector":3,"length":512,"data":[990514478,1297301769,909198431,538976288,1768444960,1936269427,824205600,1768041782,1852383348,1970435187,1869182051,1635131502,1851877746,168636020,1396771131,1094803277,538976344,1884495904,1634296677,1868963948,1094787186,1851859021,1094787172,1852383300,1970435187,1869182051,221934446,151599882,538976288,544503152,543711536,1713401449,1629516399,1717920800,1953264993,1701867296,1684955506,990514478,1297301769,1195725663,538976288,1768444960,1936269427,1931501856,1701668709,1881175150,1768318322,168636024,1396771131,1330405197,1163021123,1750343760,1763734377,543236211,1262702412,544370464,777012562,1881157166,1768318322,168636024,990514491,1411391520,745432424,544106784,1953722221,1935762208,539784037,1936287860,544434464,1819045734,1684371311,544825888,543518319,1830842991,543519343,1948280431,1713399144,1869376623,1735289207,540740109,1702043680,1852142961,745760099,1684957472,1952539497,543649385,1763733089,1920234350,1769235317,1981836911,1634300513,221148270,538983178,1297301792,1129270367,1279410507,1864900677,1869182064,694968686,1684957472,1952539497,1948283749,544498024,1936287860,1936615712,1668641396,1852795252,1851876128,154864141,1868963849,2003790956,1277190432,541803343,1717924464,221149289,538983178,1297301792,1128353119,537491528,1953525544,1634627433,1763715436,1667851374,1936028769,1701344288,1919510048,1830843507,1768448865]},{"sector":4,"length":512,"data":[1864394094,1752637550,543712105,1936287860,154864141,1852383241,1970435187,1869182051,1885413486,1918985584,221144165,538983178,1870093088,157115506,1768444960,1936269427,824205600,1768041782,1852383348,1701274996,1830825074,544502639,1852270963,1667851881,544501345,1702132066,154864141,1768300553,745829234,1986619168,543649385,1296913217,706757711,723542304,539779616,1919248503,543301733,1629516649,990514542,1763707145,2019910766,1953392928,1752440943,1918967909,544825714,1852403823,544761188,1684957480,1952539497,543649385,224749684,151599882,2036689696,1919885356,1887007776,1718558821,1701867296,1684955506,1936288800,539765108,543452769,1936269409,225665312,151599882,1819239968,1937207148,990514490,807405833,892678701,1411391497,673211752,761622127,1702132066,1852383273,1970435187,1869182051,168636014,537463099,758527282,540094773,1701336096,2003790880,941650533,1953063456,1768366195,1948280182,1931502952,1852793701,2036473956,1864394100,990514534,537463049,1948279072,1647144823,543519865,1953721961,1952675186,544108393,1768383842,1852403310,1769414759,807430260,221145190,151599882,842085664,892810541,1765941280,840987508,1931489325,1998616929,1751345512,1869375008,1852404833,1869619303,544501353,1953721961,1952675186,225341289,151599882,1948262409,544434536,673215337,1748526128,1717841965,539765096,543452769,540224821,1702259047]},{"sector":5,"length":512,"data":[1701344288,544354080,1818585446,168636004,537463099,758527797,539897390,761341984,691418933,1763719215,1752440947,1852383333,544761188,1948282473,1629513064,2036429426,1919377696,1936749935,154864141,538970377,1768453928,1730177123,1936029289,1701344288,1634038304,1635131500,543520108,1629513327,1629498409,1948279918,168650088,151587131,1869357088,1919888759,544367972,1768038451,1730179956,1936029289,1701344288,544354080,1818585446,168636004,990514491,1528832032,1702132066,1411385693,544434536,1702259047,1752440947,1702043749,1684959075,1954112032,1718558821,1713398048,1952542572,543649385,1852403568,990514548,1763707145,1920234350,1769235317,1763733103,1680875622,1008756792,543236157,807419196,778593892,221973005,538983178,1819231776,1769434988,1948280686,1702061416,544434464,1092644449,1163873619,1646281806,778400889,221973005,538983178,1668826400,1769238629,980643439,154864141,1598903105,541541715,543452769,1598903105,1262702412,542131538,543519329,1819045734,1684371311,544825888,1953723754,1701736224,1954112032,1948265573,168650088,1919945019,2020173413,1954112032,168636005,1396771131,1111777101,1396777004,1464098637,1851858988,1396777060,1145331533,1852793888,1847620647,543450469,1646292852,1868963941,2003790956,1646290021,990514553,2037276937,1852401780,168636007,1396771341,1313169229,1695096900,807433585,224945766,1297301770,155337823]},{"sector":6,"length":512,"data":[1970365705,1701195808,1091177832,1147096403,1695091031,807433585,224945254,1297301770,155468895,1970365705,1667641376,1091177832,1331645779,153110354,544567653,1751279152,1396771341,1096245069,1695110217,807433585,224944486,1297301770,842220639,1902446880,1714430069,168650809,1598903105,540422468,1970365705,946221088,1091177832,1096764755,153114689,544567653,1748461104,1396771341,1163091789,1695096903,807433585,224933478,1297301770,1129270367,1346720331,1970365705,895889440,1091177832,1281314131,1095451471,155536450,544567653,1748264496,1396771341,1095589709,154552387,544567653,1748198960,1396771341,1095589709,154486851,544567653,1748133424,1396771341,1095589709,154421315,544567653,1748067888,1396771341,1095589709,154355779,544567653,1748002352,1396771341,1095589709,154290243,544567653,1751541040,1396771341,1095589709,154224707,544567653,1751475504,1396771341,1095589709,154159171,544567653,1751409968,168626701,1886216969,1954112032,1953505381,1935351922,1093426537,1281314131,1380664143,990466117,1667590243,1868963947,1852645490,1852796261,1713398633,543646060,1702132066,1778977293,1633755234,153105713,1718172425,1852796448,151653733,1935961964,151587170,1952802619,1701344288,1701998624,225995110,1970473226,1818304610,1297301804,1129270367,1346720331,1868774153,1919252078,1869881460,959262752,1778977293,1633755237,153106481,1718172425,1129270304]},{"sector":7,"length":512,"data":[1919885387,1346720288,221130286,1650657546,151653751,543384932,168654945,544893449,925983073,990447904,1931503209,1701668709,1881175150,1768318322,1093148792,1398754643,220809029,1701054730,2019631203,1778977293,1633755258,153105969,1718172425,1684103456,544370464,544039265,1297301800,1480671583,151653673,543384932,168654945,544893449,892428641,151597407,543582523,1598903105,221655364,1835206922,1818304624,168637228,1700882953,845242656,990447920,1092642409,1331645779,1864386386,1396777074,1145331533,544370464,1598903105,1864390468,1396777074,1111777101,1862863373,1633362034,1834970483,1818648430,1567844193,158097708,1986097979,1296113765,860118854,1919885362,1179468064,1229018975,824713300,544370464,168634674,892428641,151653690,544238954,825254497,1849362697,1881175919,1701015410,1948283763,1629513064,1836410738,1937010277,1633749517,828323121,151653690,1528853103,1601008481,1717530221,1936154988,1296116829,826564422,151653686,543387241,151611763,1802713865,1948282985,1092642152,1147096403,1646277171,224752761,1835665674,1650532464,151597360,2003791419,1869770784,1936942435,1701344288,1735549216,1852140917,168653684,1633749517,221918769,1835665674,1650532464,168636464,758843917,1931488557,1701668709,1881175150,1768318322,218762616,828465418,168639031,1685023753,151609971,1701264137,1919950964,2020173413,1818326560,168650101,1987013897]},{"sector":8,"length":512,"data":[1633770272,1734701919,1701998687,1818307677,1829308941,1663071855,1818307692,1862863373,1633362034,1834970483,1818648430,1567844193,1179468076,1163087199,151653703,544239472,151611763,1701264137,1869619316,1769236851,1763733103,1852383342,544503152,1701734764,1879640589,1629515887,151587192,1768649531,151653744,1935961964,151653730,544238947,657222753,168634170,1701734921,828465440,168649267,1818321673,1802707052,1752658025,224752745,1835206922,1818304624,223494956,1701447946,222707744,1835206922,1818304624,658188076,1778977293,1629513070,1647522145,1077938701,151653690,544632685,1865181540,1702061670,1768693876,1868522862,168653941,1987013897,745300256,168651875,1869902601,168649331,1886218761,845242656,990447927,1801675106,1919903264,1919905056,218762597,757938954,1330389037,1864387395,1163010162,1919950928,2020173413,168626701,942760289,151653690,1935961964,151587170,1952802619,1701998624,544762214,1970037110,151653733,1734894456,745300256,1600217435,1702257011,1919967076,2020173413,151653725,544238947,808217697,1778977293,1629518446,1630744929,1765476617,1752440934,543519333,1701997665,544826465,544432503,1634934881,543450486,1717924464,168654953,1886351369,225014560,1869613322,2019631216,1812531725,1651729519,1661536781,1629515885,1380133996,1778977293,1633755237,157364274,1718172425,1684956448,543584032,1701734764,1661536781,1629515885]},{"sector":9,"length":512,"data":[992423020,151653671,1629513066,1630548577,1765476617,1852121190,1718558820,1852402720,1663574117,1701670255,220820590,1835665674,1633755248,151597616,1667326523,1868963947,1869422706,168650098,757935419,1702055968,544171125,544436335,1735552808,544370464,1680826980,1684287351,168635945,1633749517,221917234,1835206922,1870078064,1881171058,1528853108,1935630689,1684371041,1701998687,1568172390,168636460,2054056457,828465440,151609651,543582523,1919248500,1635197029,543236211,1717924464,1864398953,543236210,1835492723,980708965,1920099616,168653423,1886351369,157905696,1731922185,1881175141,1953067887,544108393,1763733097,1953853550,1852402720,151653733,543323507,858549345,1094387977,540032344,1864394345,539780978,1718165553,744776736,1763717664,2003050598,540221484,1679844969,168636002,2054056457,845242656,151612720,543582523,544501614,222777935,990514442,539831597,1668248144,544437093,541545039,1969582960,1864396644,168636016,1661536781,543976545,1885956979,1953065079,151653733,544238947,1126984801,151653714,1075864938,151587142,543582523,1752461166,224882281,1869416714,2019696758,1600215852,1919181921,157103147,1717920827,1953264993,1734701856,1953391981,1778977293,1629515885,1630548065,1731922185,1869881455,1886352416,1077938701,151653690,544238954,825254241,1731922185,1847620709,544503909,1701734764,168626701,808608097,168639073]}],[{"sector":1,"length":512,"data":[1987013897,745300256,1600217435,1702257011,1919967076,2020173413,1782259805,544502645,1919950945,2020173413,1869488172,1852401780,1818566759,168650099,1987013897,745104416,1936090735,1814066277,1600482921,225736047,1953696010,224555887,1835665674,1633755248,168638258,758843917,1142959405,543257697,1953721961,1952675186,1936617321,1111762976,794248239,774456388,168626701,808608097,168639085,1987013897,745104416,1936090735,1814066277,1600482921,158627183,1953853499,1701344288,1954112032,1746957157,543519333,1852139639,543520544,544499047,1835362420,2013858317,543647843,1647081569,990447992,544632685,1630304354,151653752,543975539,824997986,1829308941,1646294639,1650142320,1633758072,1953718884,1563569519,1701264137,1684086900,1936028260,1718558835,1869902624,1701273970,1970237984,1701734772,1661536781,543976545,1885956979,1953065079,151653733,544238947,1126984801,151653714,1629513066,540488289,1765476617,1852121190,1718558820,1852402720,218762597,845242634,151599665,1010501897,539831597,1886351212,1661536781,1629515885,572992620,151653671,1629513066,540160609,1765476617,1953701990,1735289202,1661536781,1629515885,656551020,151653666,1629513066,540160609,1765476617,1953701990,1735289202,1661536781,543976545,1701273953,151611764,1952802619,1847615776,1919249781,1818321769,1818326560,1763730805,544175214,1647999076,1931488376,543521385,1869901417]},{"sector":2,"length":512,"data":[225207072,1835206922,1818435696,980640556,762339931,990469425,1886220131,543519329,1752459639,2053731104,151653733,1629513578,540291681,1765476617,1986994278,1818653285,168654703,1751349257,2019631207,225993260,1633880330,1646292076,151593072,1869902651,1981834610,1702194273,544106784,1093618753,1480863576,223887674,1835206922,1768169584,1717989164,544499059,1818322290,1684956511,1778977293,1633755233,153105458,1718172425,1953853216,544503152,1701734764,1702260512,1869375090,151653751,1734894456,746086688,168654946,1886218761,845242656,990447926,1701736292,1953068832,1752440936,1864397673,168650094,1633749517,221917746,1869416714,1751195766,225206572,845242634,168639027,1685023753,168649331,1886216969,745300256,168645187,543517193,875716961,990447904,1696622185,1864393838,1768693862,168650094,1886216969,745300256,168650849,543517193,892494177,990447904,1696622185,1864393838,1953701990,1735289202,1929972237,1651732340,1661536781,1679847533,1718561897,1952805734,1634038304,1852137324,151653732,543515242,858939745,1765476617,1970217062,1953853556,1852402720,1869488229,1986994292,1818653285,1852405615,1628048743,976499297,1778977293,1629515885,1647522145,1698367753,1919906418,1633749517,221918514,1869351178,224555876,845242634,168639030,1818321673,1802707052,1868787817,221277549,1835206922,1818304624,223494956,1852442890,1633755237,151597362]},{"sector":3,"length":512,"data":[543582523,544501614,543452773,1814062703,224751209,990514442,539831597,543452741,1814062703,778399337,1866670112,1763735920,1869881460,1650811936,1701275509,544417637,1869440365,168655218,1633749517,221919026,1869416714,1769152630,1717989164,544499059,1701734764,1953853279,1829308941,1646294639,1633365112,1684300127,1563700082,1929972237,1885698665,156788338,1869429513,1684349046,1633365112,1684300127,1563437938,1829308941,1679849071,1633365112,1684300127,1563437938,1829308941,1663071855,1768172664,1929972237,1663066741,1769155704,1661536781,543976545,1953067639,1836278117,151653742,1702521203,1483108976,1832585481,1528854127,1684103009,808153700,1684352093,151653752,544632685,1633640795,728917092,1680629040,151653752,544238954,825254241,168626701,1397641027,1702043732,1852140903,990514548,539831597,1818386804,1868963941,1869750386,1852404853,1869881445,1869902624,1629513074,1836412448,544367970,1684957480,1679849573,741424484,842889060,1029858348,168634675,1650745697,544175219,1931507556,1683976052,1953705060,2003066735,1869902636,224552031,1313817354,1696617555,225666158,990514442,539831597,1953853266,1936027241,544175136,1919906931,543236197,1702132066,1919907631,2003054436,778334831,168626701,543319049,151587124,2053731131,1869881445,1869902624,168650098,1601139827,221930596,1953696010,158823279,1933248777,1701998452,1679843616,1685221239]},{"sector":4,"length":512,"data":[1818326560,168650101,1751349257,2019631207,225993772,1953696010,225932143,1668811018,1629513576,2019830904,1913195021,168653925,543319049,151587122,2053731131,1869881445,1869902624,168650098,1601139827,221935460,1953696010,158823279,1933248777,1701998452,1998610720,543453807,1970037110,151653733,225731954,1650723082,151597344,1769159433,1948280186,1953701999,224752239,1869902602,979526751,1929972237,1651732340,990447881,1919906931,543236197,1702132066,1818326560,168650101,1952805385,168626701,538976315,1701995848,543520544,1668248176,544437093,543516788,541344065,543452769,541933889,1953721961,1952675186,1936617321,1411391534,544826728,543519329,1667592307,225206633,538983178,544106784,1952540788,1701344288,1634541689,1635000441,1629513067,1701736224,1954112045,1918967909,1701672295,539784302,1847620207,543518319,544106792,1667852407,1633886312,168650099,538976315,543516788,1969713761,1953391981,1717920800,1953264993,1869881459,1751199776,1948269856,774467173,168626701,808477281,151653690,544632685,1701735771,1718511981,1932287343,1933248873,543520353,1936287860,1684300064,1936942450,1879640589,1931505775,151653737,1935961964,151653730,544238947,1126984801,151653714,1629513066,1630548066,1765476617,1852121190,1718558820,1852402720,151653733,544238947,657222753,168634171,1701734921,811753760,151609905,543582523,544501614,543452773]},{"sector":5,"length":512,"data":[1814062703,224751209,811753738,221929776,1869416714,1769152630,1717989164,544499059,1601003873,1936159329,1634089737,1629513067,1751199776,1735549216,1852140917,151653748,544238954,825254497,218762593,757938954,1917853741,1936024431,1869488243,1818324338,1936615712,1668641396,1852795252,168636019,540740109,1766203424,544502642,1881171319,1702064737,1667327264,1918967912,1701672295,1763734638,544175214,842080353,1954112045,1633951845,1646289268,1801678700,1347364896,692342354,1953701932,1684370031,540740109,1868767264,1667593070,1986622581,544828517,1814066273,1600482921,745829743,1852402720,1970233189,842083188,1952784428,168636003,538976315,1936287828,544434464,1919906931,1629512805,1868963955,2003790956,168636019,540740109,1683693600,538991977,1816535072,544434017,1196572968,1380271199,539772485,778269797,990514473,1528832032,824928612,1428168797,1702065518,990514532,1528832032,841705828,1394614365,543521385,1969713761,1953391981,1718165548,2037276960,1026631712,1702132066,1026695212,1685221239,1026760748,1970173224,694445427,1026826284,1919907684,168635492,1026885947,1919907697,908078180,1869375037,539784289,1868840247,1701601909,1027088428,1954112116,958409829,1869116221,539784306,1815949361,744975983,1026634016,1918985582,990514476,1026699529,695361894,1702043692,1230184549,2021154650,1851859064,1769152612,1668572538,225272174,538983178]},{"sector":6,"length":512,"data":[1768184608,542978859,2053722912,1718558821,1146047776,1294946848,1936286752,1667329136,1852140901,990514548,1528832032,875260260,1176510557,1953722985,1734701600,1702130537,1864379506,1330454642,793911364,2036473933,539780468,1847620207,1864396149,1684086886,1769236836,1818324591,1954112032,168653669,538976315,728327259,538991925,1868784979,1914725486,1936287589,544367988,1763734127,2019910766,1734701600,1702130537,1919885426,1112101664,1954112032,990514533,1528832032,908814692,1226842205,2019910766,1667327520,225603444,538983178,1768184608,542979883,2053722912,1864397669,1970151526,1919246957,1918967923,1919885413,543450413,1701995880,540740109,1683693600,1563962217,1680351264,1685221239,1970151465,1919246957,168626701,538976315,544370502,1969713761,1953391981,1718558835,1701344288,1919903264,2021138541,2033875064,2038004089,746158457,2021160992,1936269432,1869902624,543450482,1008758377,846034286,168635454,538976315,543452769,2038004089,2038004089,544106784,1836412476,538979902,543516756,1651340654,1864397413,2036473958,544433524,2032168553,2038004089,544831865,1931506537,1701998452,1852383332,540740109,1886330912,1919181921,540155948,1931506537,1701998452,1852383332,1970158624,1684300141,1629498430,1679844462,1936269417,1869902624,543450482,2015391337,1684300152,168636018,1347357197,541347410,1970435187,1711934819,1936154988,543319049,725289279]},{"sector":7,"length":512,"data":[151653680,1059086948,1769146893,1918985594,1650729063,990461728,168636971,1702521203,544434532,1059086948,858471177,1853164045,225341289,1734701578,1650723121,990461728,168637483,1634563438,1678337124,155132002,540289851,1684300072,1869182057,543973742,1702132066,1931488371,1701998452,1952522340,1836412448,1965563954,1869881456,220804128,1684956426,1963593075,1852795246,1953696269,224621938,1734701578,1650723122,990461728,168637739,1701080681,1650723192,990461728,168637995,1935961701,1970145805,1678324333,155132023,221588283,1684956426,1862929779,1852073330,1679846773,155132002,221719355,1836412426,543450121,725289279,1326058808,1145983568,1684956448,218762611,811753738,168639025,1987013897,1852660512,1852403045,744320870,990472563,1702257011,1768453152,1684086899,1936028260,151653747,544239472,151611763,1701264137,1869619316,1769236851,1763733103,1768693870,168650094,825254497,168639073,1685023753,168649331,825254497,168639074,1987013897,745104416,1936090735,1814066277,1600482921,225736047,990514442,539831597,1768383810,1869357166,1864396911,544367990,1919250543,1935961697,218762542,811753738,151599666,1010501897,539831597,1954047342,1701867296,1684955506,1661536781,1629515885,1380133996,1778977293,1650532453,153105200,1718172425,1684956448,543584032,1701734764,1661536781,1629515885,992423020,151653671,543518314,875586145,1765476617]},{"sector":8,"length":512,"data":[1869488230,1852121204,1718558820,1852402720,1628048741,976433250,1778977293,1629515885,154745186,1869888265,2019913248,1752178804,224752481,1628048650,976498786,1879640589,543716213,153119076,1818442505,544366949,544503151,543516788,1920103779,544501349,1314017359,1953701956,1734439535,1918967909,168649061,1987013897,746087200,1702521203,1327523439,1145983568,840970016,2013858317,1629516399,2019634296,1913195021,1931505765,2004053876,1879640589,1679847535,218762601,757938954,1834164269,543976545,1886351212,1702260512,1109532786,541414489,575820880,1684955424,1734701856,1953391981,1701998624,1702390118,168636019,1650526733,221918512,1701054730,1769152611,1829308941,1629517423,1935355000,168648041,1684955401,746086688,1347768148,1599227216,151653719,544238947,1567188059,1380994862,1932411982,1634040425,1395418994,1314871881,222645839,1852442890,1650532453,151598896,543582523,1701997665,544826465,1702257000,1931501856,543521385,1818326385,1701406313,573055090,1163155778,1381257248,774777890,168634670,1937076233,1768169576,1829308941,1679849071,1718561897,1952805734,2053731104,1852011621,168652129,1987013897,746087200,1702521203,1931503215,1952807529,1835101795,840970016,1913195021,1701736549,1633907488,168654707,1886351369,225010720,1852442890,1650532453,151598896,543582523,544501614,1853189990,151653732,1663070831,2019765368,1778977293,1075870318]},{"sector":9,"length":512,"data":[151587142,543582523,544501614,658589223,1829308941,1629517423,1935354988,1563569001,1627982349,1629512814,1330916460,1162891349,151653714,544238947,657222753,168634194,1701734921,811753760,990447929,1847617129,656438383,659702086,1868769312,543452277,1746953570,1684109413,1835623269,220818529,977289226,1929972237,1663066741,1769155692,1718576506,2053731104,1852011621,790654305,168636960,1734700553,158098208,1664813321,1702260335,1948284018,741417071,774778400,842080300,1829308941,1528854127,777873764,1314017359,1769156164,1918985594,1818438759,1661536781,543976545,1885956979,1752198241,990447969,1948282727,1701716079,1948284024,1852140399,1829308941,1629517423,1935354984,168648041,1684955401,746086688,1347768148,1599227216,151653719,544238947,657225825,220680276,1852442890,1650532453,151598384,543582523,544501614,1381257255,151653671,1819042147,1768649504,1886151024,151609704,544171835,1847619444,544503909,1701539700,151653742,544238954,892363361,168626701,925917793,151653690,544238947,1600217435,1600611699,1566929520,168636460,1701734921,811753760,990447929,1998612073,1818304613,1684104562,1634214009,1629513078,1734701856,1953391981,1701998624,225995110,1970276618,1679845491,151653737,544632685,1865181540,1702061670,1702043764,1852273255,168652129,1987013897,746087200,1163091790,1195725383,151653715,1852859762,1668489317,225932129]}]],[[{"sector":1,"length":512,"data":[1869613322,1768169584,1778977293,1629513070,154742882,1718172425,1953459744,1970234912,168649838,1937076233,1769152616,990447904,1702257011,543781664,1663069801,543519585,1919248500,544417637,1663070062,1852796015,1812531725,2004051055,1661536781,543976545,1885956979,1953065079,151653733,544238947,657222753,168634170,1701734921,811753760,990447928,1847617129,1713402991,1869376623,543450487,656439650,168634170,1886351369,158884128,1681590537,1633907561,1931502706,1684371041,225014560,1633880330,1931504748,2003855723,1702127976,1933248777,544237931,168653929,1987013897,746086944,1936090735,1881175141,1768318322,1936288888,539697268,151653685,543323507,1663858786,151653752,544632685,1529637985,157120610,1869363977,1965058927,1752440944,1919950949,2020173413,1954112032,151653733,544632685,1600217435,1600611699,1566929520,158097708,1986097979,1953046629,1635213600,151653753,544238954,892363361,1650526733,221919280,1869613322,1769152624,168626701,757935419,1734689312,1881173609,1769173601,1830840174,544106849,1953653104,543584032,1969713761,1953391981,218762542,757938954,1768300589,544502642,1667590243,1701978219,1953720679,225669733,1628048650,976826466,1879640589,543716213,153119076,1751333641,543908709,544370534,1869377395,1734701600,1702130537,168653682,1987013897,745104416,1936090735,1914729573,1835101799,221655352,1869416714,2019762294]},{"sector":2,"length":512,"data":[1096764972,1163021388,990466887,909193016,1953063469,1734701600,1931488371,1701668709,1914729582,745760613,1701868320,1818323299,1734701600,151653747,1819042147,1734435104,1701999717,151653735,544239472,168651108,543386121,875651681,990447904,1847617129,1629516911,1734701600,1702130537,151653746,1528853103,777873764,1314017359,1818635844,745760609,1196572960,1398098527,1195725396,1829308941,1528854127,777873764,1314017359,1701981764,1647063399,1933248876,543520353,1768383858,1919251571,1836412448,225600866,1835206922,1818370160,154415660,758135561,1025520434,759972128,539772996,1143822401,1159736393,1160599617,168642884,1700882953,155598880,1765476617,1953046630,1847620391,1629516911,1919905312,543973741,1768383858,1919251571,2013858317,543647843,1647081569,990447992,544632685,1647078497,151653740,544632685,858549347,1929972237,1629516392,1818438764,1631258889,540876908,1702521203,807411770,540945696,1702132066,540090412,1998601773,744780399,757084704,2003050558,224686703,1684080906,1818304612,221392172,1684080906,1818304611,151597868,1852793659,1953654134,544175136,840969265,540287020,1936028200,1952671088,1818588777,168634745,1886218761,828530976,1074400563,168639040,1919907849,1768184608,1347366493,776228434,1734437990,1092627571,1247758162,1381258069,723535685,1196572960,1229281119,1163019346,151653703,544632685,1395420257,1465866825]},{"sector":3,"length":512,"data":[541348431,1701985033,1953720679,1931506277,224754281,1835206922,1818370160,1195725356,156521311,875707145,1027158573,1835492723,544501349,1768383858,1919251571,151653747,1629512042,540094818,1765476617,1953046630,1293972263,1126181965,1142959186,1919885394,223499296,1701447946,155598880,1765476617,1953046630,1394635559,151653716,544238947,841772130,151653688,1629512298,540225890,1765476617,1953046630,1629516583,1919905312,543973741,1835492723,544501349,1768383858,1919251571,1396975648,743654700,1126978387,168634707,544370441,1836278107,1601072479,1734437990,1093426547,1180649037,542328659,1634494011,1953046631,1778977293,1629515885,221458786,977289226,1661536781,1646293101,543519865,544371824,1567191899,656942892,1778977293,1629513070,154284386,1718172425,1937074720,1819287668,544106849,168645715,1685023753,168649331,1685023753,168649331,1651864329,745300256,220672039,1835206922,1818304624,168638252,543255049,808542817,990447904,1847617129,807433327,221720110,1869416714,1683693686,1328438633,1145983568,1734701614,1818307634,1634941705,1948280182,1847616872,1700949365,151653746,1935961964,151653730,544238947,657222753,168634153,543517193,842097249,990447904,1847617129,1696625775,1919906418,1650526733,221917233,1835665674,1633755248,157430577,1919236873,225603442,990514442,539831597,1701344367,1701978226,1953720679,544436837,858599731]},{"sector":4,"length":512,"data":[1294475316,1126181965,1142959186,1411394642,168634706,1650526733,221917489,1869351178,224555876,1970473226,1818304610,657467180,1661536781,1629515885,221719660,1634339082,828530976,151593008,543582523,1869771365,151653746,544632685,1567188059,1380994862,1915634766,741500773,990473313,1702257011,1701344288,1836412448,225600866,1869416714,1818304630,1514754860,1331119199,990463058,1768383858,1919251571,2053731104,151653733,544238947,1378643042,1298089797,151653709,543518314,858874465,1765476617,1869488230,1296900212,1734701600,1702130537,151653746,1528853103,777873764,1314017359,1818635844,745760609,1196572960,1398098527,1195725396,1829308941,1629517423,1230187628,1464950618,222581327,1835665674,1650532464,168637233,842097249,151653690,544632685,808217697,1933248777,543521385,544370534,1914721363,225666917,828530954,168639027,1886216969,745300256,1567188059,1380994862,1932411982,1634040425,991979378,1886220131,543519329,1752459639,1635021600,543450484,1702521203,1778977293,1178607717,990447881,1931503209,224750945,1668811018,1629513576,1683696748,1328438633,1145983568,2053731118,1735549285,1661536781,1629515885,221260908,1852442890,1650532453,151597105,543582523,1852797559,1769152615,1730176378,1852143209,1696607520,1919906418,1077938701,151653690,544238954,875848289,1681590537,543518319,1752459639,1768453152,1886330995,1851880037,218762596]},{"sector":5,"length":512,"data":[757938954,1950949421,1847620391,1629516911,1734701600,1702130537,1701978226,1701995878,778396526,1918115872,1868963961,543236210,1651340654,221147749,1628048650,976499042,1812531725,1651729519,1661536781,543976545,1718182241,225277294,1667893514,828530976,151593015,661940539,1869488243,543236212,1651340654,168653413,1818321673,1633755244,1769235815,1731922185,1948284005,1847616872,1700949365,151653746,544632685,1567188059,1380994862,1865303118,1852073330,1663855989,151653740,544632685,1685221239,1920233504,1768184608,1347366493,776228434,728593774,2019699760,1829308941,1998616175,543453807,544371824,1567188059,1380994862,1848525902,841706869,225993772,1633880330,1931504748,2003855723,168636520,1886216969,745300768,151653682,1629513578,540488034,1765476617,1702305894,1851876128,1746957351,543520353,1868767329,544108396,1701995880,1661536781,1629515885,975645804,151653671,543518314,925983329,1765476617,1869488230,2021138548,2033875064,226064761,1633880330,1931504748,2003855723,1702127976,1661536781,543976545,1701273953,168651124,1987013897,746087200,1685221239,1920233504,1768184608,1347366493,776228434,728593774,151653680,544632685,1567188059,1380994862,1848525902,741502325,168654947,1987013897,1919907616,1953505380,1683693682,1328438633,1145983568,1836412462,1647063083,151653752,544632685,1685221239,1920233504,1768184608,1347366493,776228434]},{"sector":6,"length":512,"data":[728593774,2019830834,1862863373,1683693682,1328438633,1145983568,1634493998,539784039,1598509633,1095909702,223495236,1835665674,1650532464,151597876,1852793915,1769414757,1948280948,544434536,1919250543,224685665,990514442,539831597,1667590211,1868963947,777724018,777858606,168626701,892428897,151653690,544238954,808673889,1681590537,1869619311,1882027123,1701015410,1852404595,218762599,828530954,168639030,1818321673,1802707052,1752658025,224752745,828530954,168639031,1886216969,745300256,153574183,1700936457,544106855,1886351212,1702260512,1702043762,1864397684,1566253158,1778977293,1629513070,154480994,1718172425,1953459744,168647456,544370441,1567188059,1380994862,1714308174,1936154988,1379999788,1162108743,541476178,1952805691,1701344288,1634493984,1628048743,976761186,1661536781,543976545,1885956979,1953065079,1628048741,976826722,1661536781,1629515885,1562848364,990447911,1768383842,1869357166,1998614639,1768453225,1566253166,1778977293,1650532453,153105969,1718172425,1852793888,218762597,757938954,1749229613,543908709,544370534,1701978209,1953720679,673215077,1752459639,1528852073,221129053,151653642,543384932,168651123,1937076233,1768169576,1829308941,1679849071,1718561897,1952805734,1852273184,909208929,1829308941,1663071855,1598958712,1397179730,168638001,1818321673,1633755244,1920230759,168650597,1886351369,225010720,1667893514]},{"sector":7,"length":512,"data":[845308192,151593013,543582523,544501614,1701978209,1953720679,168653413,1886216969,745300512,168638001,1700882953,155598880,1765476617,842211430,1953063469,1734701600,1702130537,151653746,543450209,942435426,1631258889,1937074788,774905972,1948268334,775430255,221589806,1835665674,1650532464,168636722,221921344,1835206922,1683693680,1328438633,1145983568,1734701614,807414834,1778977293,1629518446,154219106,1718172425,543520544,1701997665,544826465,1702257000,544104736,1701080681,151653752,1819042147,1768649504,1768454000,168650100,1667589129,225014560,1835206922,1818304624,657073964,1778977293,1629513070,154219106,1718172425,1953459744,1819239968,1702326124,2036473956,657073952,1762200077,1931502446,151653737,544632685,1567188059,1380994862,1915634766,741500773,990473314,1702257011,1684957472,1914730597,1936287589,225600884,1633880330,1931504748,2003855723,1702127976,1661536781,543976545,1701273953,168651124,1818321673,1633755244,1986948963,1701080681,151653752,544238954,942826081,1916471561,2036621669,1919903264,2019913248,1634738292,168653938,1650526733,221917490,1835206922,1683693680,1328438633,1145983568,1734701614,221260849,1852442890,1178607717,990447881,1948280425,1701995880,1629516583,1634038380,1629518180,1734701600,1702130537,151653746,544632685,1567188059,1380994862,1915634766,741435237,168651874,1886218761,845308192,1074400563]},{"sector":8,"length":512,"data":[168639040,1886216969,1768184608,1347366493,776228434,845636978,221257772,1852442890,1650532453,151598130,543582523,544173940,2037277037,1734701600,1702130537,168653682,1987013897,1768184608,1347366493,776228434,845636978,225206828,845308170,168639027,1818321673,1802707052,1752658025,224752745,1835665674,1650532464,151599154,1634038331,1713404260,1847620207,544503909,1953653104,1650526733,221918258,1835665674,1633755248,157430577,1919236873,225603442,990514442,539831597,544830036,544370534,1970151521,1919246957,1769416736,1852401780,693984032,218762542,845308170,168639029,1685023753,168649331,909271649,151653690,1819042147,1734435104,157906021,1701264137,543236212,1651340654,673215077,1713402479,543646060,1696624225,1919906418,151653673,1819042147,1768649504,812152688,1661536781,1629515885,707210348,151653671,1629513066,540488290,1765476617,1953046630,1629516583,1852383342,544761188,1952670054,168653423,544370441,1567188059,1380994862,1865303118,1852073330,1663855989,151653740,543450209,1685221239,1920233504,1768184608,1347366493,776228434,728593774,2019699760,1627982349,1998611300,543453807,544371824,1567188059,1380994862,1848525902,841706869,225993772,1835665674,1650532464,151599154,2019913275,1634738292,773878898,168635950,1650526733,221919026,1633880330,1629514860,1852793697,1684957558,168654949,1818321673,1802707052,1752658025]},{"sector":9,"length":512,"data":[224752745,1701054730,1769152611,1879640589,543716213,168651108,1987013897,745104416,1936090735,1914729573,1835101799,168638001,1919907849,746087200,168654947,1818321673,1633755244,1920230759,168650597,1886351369,225010720,1667893514,845308192,151593012,543582523,1869771365,151653746,544238947,1567188059,1380994862,1915634766,741500773,168636448,1701734921,845308192,990447924,1948280425,1701995880,544434464,1701997665,544826465,1701978209,1953720679,168653413,1987013897,1768184608,1347366493,776228434,845636978,1818370092,1661536781,543976545,1885956979,1953065079,218762597,757938954,1699881005,544826465,544370534,543516788,1954047342,1919251488,1769414765,1852401780,777870112,168626701,942826081,151653690,544238947,657222753,168634157,543517193,909271649,990447904,1629513321,1701718048,1769234791,539583862,1651340654,1763734117,1701716083,168653944,1886216969,745300256,220670759,1852442890,1178607717,990447881,1847617129,1701716079,1948284024,544043621,1701998632,1634563443,695823458,1778977293,1629515885,221786466,977289226,1778977293,1629515885,154743138,1633827593,1713400675,1830842991,224752239,990514442,539831597,1953722192,1869770797,1936942435,543649385,544370534,1886220131,1633905004,543450484,1969713761,1953391981,168636019,1650526733,221917235,1835206922,1870078064,1881171058,1528853108,777873764,1314017359,1701981764]}],[{"sector":1,"length":512,"data":[808202599,1751333664,543908709,1752461154,1734701600,1701980977,168637031,2054056457,862085408,990447922,1914725993,1936287589,1936876916,1919252256,1768366181,544105846,1027416104,1919098942,1702125925,1146047776,1294946848,151653673,544238947,1567188059,1380994862,1865303118,1852073330,808217973,1778977293,1650532474,153104691,1718172425,1953459744,1735289192,1935767328,1986619168,673214053,1044200736,1920099616,220820079,1835206922,1683693680,1328438633,1145983568,1634493998,808219495,1778977293,1629518446,1647326050,1765476617,1953046630,1935767328,1953459744,1835886880,1634296933,168650100,544370441,1567188059,1380994862,1714308174,1936154988,1196572972,1296910687,168641605,808673889,168639073,1886218761,878862624,990447923,1701736292,1953068832,1752440936,1629516649,1836410738,225734245,862085386,221930032,1919879434,1935760160,1852661613,1634494047,744321895,1598442817,1380205633,1829308941,1629517423,154283116,1769159433,1864394106,1752440934,1768169573,1634496627,1701668195,168653934,1936028681,1683693684,1328438633,1145983568,1701998382,1836412516,168637484,544893449,151602752,1718172425,1953459744,758264608,544500066,1886611812,1701011820,1953391981,1762200077,1629512558,151653752,543387241,168654945,544370441,1836278107,1601072479,1734437990,1093426547,1096762957,991965747,1647129139,1629516905,1701995620,1852404595,1074400615,168639040]},{"sector":2,"length":512,"data":[1987013897,1768184608,1347366493,776228434,1702521203,745761124,991980641,1702257011,1936286752,1667329136,1852140901,1769152628,168650106,1886218761,862085408,151609648,1852793915,1769414757,1948280948,544434536,1969713761,1953391981,1650526733,221917491,1835665674,1633755248,157430577,1818639113,1629513569,1919230062,225603442,990514442,1126178848,1952540018,1752440933,1330454629,793911364,2036473933,221144436,538983178,1866868768,1768169586,1865248883,544828526,1914729071,1936287589,745694580,1768453152,1769414771,1646292076,1868832869,1814062446,1919251553,544432416,1684366702,690906213,168626701,842228321,151653690,1528853103,777873764,1314017359,1818635844,745760609,1196572960,1146047839,168643922,1987013897,745300256,1567188059,1380994862,1915634766,221341541,1919879434,745300256,1567188059,1380994862,1915634766,221407077,1702103306,1629516915,909192300,1778977293,1629518446,154415970,1718172425,758264608,544500066,1919181921,1769173861,168650606,1936028681,1683693684,1328438633,1145983568,1701998382,1836412516,168637484,2054056457,862085408,990447924,857761385,1768041778,1684086900,1936028260,1735289203,1862863373,1633362034,1834970483,1818648430,1567844193,1296113708,1145134918,168645188,1987013897,746086688,1685221239,1920233504,1768184608,1347366493,776228434,828859762,1701264160,1701978228,1915433319,221407077,1835206922,1818304624]},{"sector":3,"length":512,"data":[224944428,1634339082,155598880,1832585481,543517537,1701999987,543973664,1629502782,151653736,1734894456,745300256,168650849,221921344,1970276618,1679845491,151653737,544632685,1865181540,1702061670,1869422708,1953329764,168649313,1987013897,746087200,151653688,1852859762,1668489317,225932129,1869613322,1768169584,1778977293,1629513070,154219362,1718172425,1953459744,1869439264,1948280686,1881171304,1769173871,1768712546,1936025972,1829308941,1646294639,808594552,151611446,2019650875,1936286752,540876912,2036473906,997418356,1025521184,673201725,762212206,1936291941,1953391988,1650139177,168648048,1886218761,862085408,990447929,1701736292,1969891360,1629516915,1953853282,218762537,757938954,842211373,1953063469,1684300064,1936942450,224882281,1628048650,976499554,1862863373,1633362034,1834970483,1818648430,1567844193,1179468076,842219871,1092627232,1096762957,223495236,1869416714,1818304630,1768184620,1347366493,776228434,828859762,1862863373,1818304626,1768184620,1347366493,776228434,1701080681,151653752,544894570,151602752,1718172425,543520544,661545315,1886330996,1768778100,1528849786,710432837,1948278065,1163599983,224221272,1869416714,2019631222,1919907628,1953505380,1683693682,1328438633,1145983568,1734701614,1731928113,1914729573,724658021,845636978,2013858317,543647843,1630301281,151653736,544632685,1685221239,1920233504,1768184608]},{"sector":4,"length":512,"data":[1347366493,776228434,828859762,225993004,977289226,1829308941,1646294639,808725624,151611445,2019650875,1936286752,540876912,2036473908,997418356,1025520928,673201725,762212206,1936291941,1953391988,1650139177,168648048,1886216969,1768184608,1347366493,776228434,845636978,168636460,1701734921,155598880,1765476617,1752440934,660959845,543236211,222447955,1869416714,1818435702,1768184620,1347366493,776228434,828859762,1661536781,1663070317,909192300,1778977293,1650532460,153104691,1718172425,1869772576,1914726254,1936287589,544367988,1701869940,1627982349,1663067246,221719660,1835206922,1818435696,151598124,1701339963,1713400675,1159754351,168644691,1701734921,862085408,990447929,1847617129,539784303,1852139636,660961056,1679844722,543518319,1752461096,1769435749,1679844723,1230184559,168634690,221921344,1919879434,1935760160,1852661613,1634494047,744321895,1598442817,541215059,1919903291,1230184557,151653698,544632685,1529636963,777873764,1314017359,1852386884,544761188,1952802619,542331680,1937008994,1829308941,1663071855,221457516,1752369418,1751326828,158098220,1752382217,544499305,1835362420,1818322976,2036430694,1953392928,1819287663,224748385,1869416714,1818304630,1768184620,1347366493,776228434,845636978,1852390153,544761188,1768383858,1919251571,1661536781,1629515885,808594540,1778977293,1650532453,153104691,1718172425,1347634464]},{"sector":5,"length":512,"data":[1025517600,1696611901,1919906418,151653673,544238947,808217697,1778977293,1075864942,151587142,543582523,544501614,1869768058,1829308941,1629517423,808594540,1933248777,1763734629,1868963956,1852383346,544761188,1702132066,168637472,221921344,1835206922,1818304624,221655340,1818888458,862085408,151593009,543582523,1852797559,1701978215,1953720679,1948283493,224751737,1851853066,1818304612,168638252,544370441,1630300259,990447980,544503152,1763734633,544175214,543516788,222447955,1752369418,1751326828,158098220,1752382217,544499305,1763734633,544175214,1667329136,151653733,543387241,151615587,793918217,1868963917,1230184562,540876866,151653684,544632685,1529637985,777873764,1314017359,1701981764,990458215,544698222,544499047,543516788,544698220,1768038451,168653684,1886216969,745300256,151653680,543518314,151602752,1718172425,1701344288,1998611826,1629516641,1919510048,1914729587,1936287589,225600884,1919879434,745038624,151653685,544238954,842293857,1295714569,1025524815,539766816,1886611812,544434464,2036473908,225666420,977289226,1661536781,1629515885,909192300,1778977293,1650532460,153105716,1718172425,1869772576,1914726254,1936287589,544367988,1701869940,1627982349,1629512814,154610796,1768307465,544502642,1768383858,1919251571,1862863373,1751326834,158097708,1970289417,1953046644,1953392928,1752440943,1230184549,151653698]},{"sector":6,"length":512,"data":[544238947,892103777,1778977293,1650532453,153104436,1718172425,661940512,1111826547,1948265552,544105832,1679844727,1948741231,1667592736,1768843119,1679844730,1030779753,151653680,990447881,1701344367,1936291698,1818370149,1818851104,1700929644,1952805664,544175136,218762544,757938954,1766203437,1948279918,1931502952,543521385,1948280431,1679844712,1819308905,1835361121,779382373,168626701,959668833,151653690,544238947,1647078499,151653740,1629513066,540030050,1765476617,1953046630,1528853287,1110000936,539778384,1852139636,1936286752,540032368,1931506537,1819044212,1646276896,224752761,1869416714,1818370166,151597100,1819042107,807434095,1954112045,1768169573,168652915,1650526733,221917236,1970276618,1663068275,151653752,544632685,1647078497,543519865,544371824,1567188059,1380994862,1848525902,808152437,1829308941,1663071855,221719660,1634928906,1818304626,225207084,1869613322,2019762288,1829308941,1629517423,2036477032,1881171316,1528853108,777873764,1314017359,1970155076,221326189,1835206922,1818304624,224944428,1852442890,1178607717,990447881,1763731049,544417652,1734830434,1948283493,544104808,2036473905,168650100,1886216969,746086688,1685221239,1920233504,1768184608,1347366493,776228434,728593774,151653682,543518314,151602752,1768176393,225408116,1869416714,1751261302,151597100,544173627,1886611812,1701011820,1953391981,1862863373]},{"sector":7,"length":512,"data":[1818370162,1954112044,1953505381,1683693682,1328438633,1145983568,1836412462,168636459,544893449,842293857,990447904,1679844969,544240489,540024893,543452769,1931965545,1953459744,692398112,168644674,1668180233,157835808,1681590537,544240489,540090429,1702132066,1862863373,1818435698,1747989548,1933248777,1293972581,1025524815,168636704,1886218761,878862624,990447922,1701736292,1077938701,151653690,1663070831,808987756,990447976,544499059,541347661,221388861,878862602,168639026,1987013897,1768184608,1347366493,776228434,1702521203,745761124,991979618,1919906931,1768169573,1634496627,1701668195,1931506798,224754281,1869416714,1870078070,1881171058,1528853108,777873764,1314017359,1701981764,539767143,991983715,1919906931,1330454629,793911364,1851859021,1634541668,543515257,222447955,990514442,539831597,1768843590,1965058163,1769414768,1948280948,1864394088,1634887024,221144174,1628048650,976434274,1678313997,1931502437,1628048745,976499810,1661536781,543976545,1885956979,1953065079,151653733,543450209,1932290404,1868921449,1347362918,222580306,1835206922,1818304624,223494956,1701447946,962748704,151593017,543582523,543452773,1814062703,224751209,1835206922,1818304624,658188076,1778977293,1650532453,153106745,1718172425,1836016416,1953391981,1768171552,695170164,1661536781,1629515885,740764780,151653671,543518314,892625505,1765476617]},{"sector":8,"length":512,"data":[1869488230,1868767348,543255917,1027416104,1919230014,695365490,1661536781,1679847533,1718561897,1952805734,1852402720,1970233189,857746292,1931487776,1868921449,1347362918,222580306,1634339082,1650532453,151598388,543582523,544173940,2037277037,1701867296,1684955506,151653747,1819042147,1768649504,1768454000,168650100,1886218761,811753760,218762546,878862602,168639029,1886218761,828465440,151609907,1920099643,1780511343,225471861,1628048650,976828770,1829308941,1528854127,777873764,1314017359,1818635844,745760609,991965485,543452773,1881171567,1769173601,1881171822,1702060392,1879640589,543716213,153119091,1634941705,1948280182,1814062440,1952539503,544108393,1948280431,1696621928,1864393838,1752440934,1953701989,1735289202,168626701,538976315,544370502,543516788,1954047342,1634234400,539780467,1830839671,1751348321,1701344288,1918988320,543450483,1969713761,1953391981,1769414771,1948280948,1931502952,1864397925,990514534,1881153568,1768780389,1651078003,1629513068,1836410738,544501349,1953720684,1868963955,1752440946,1886330981,1701080931,1750337838,1768300645,544502642,1668571501,1769414760,221148014,538983178,1701336096,1868981618,1948280178,1629513064,1836410738,544501349,1953720684,1752375411,1684829551,543515168,1701081711,543450482,1751348595,1634235424,1752440948,990514533,1663049760,1885431144,1864397413,544433518,1701670755,1919510048]},{"sector":9,"length":512,"data":[221148275,990514442,1411391520,1701995880,544434464,1920213089,2037080937,1936943392,1914725749,1918986085,1735289188,2053731104,1864397669,1701650534,2037542765,1717924384,1852142181,779314531,540740109,1699225632,1629513074,1948280178,1914725736,1936026741,990514490,538976288,774971424,1226842144,543236198,1869440365,1914730866,1919247973,1701015141,544434464,1702259047,1769414766,1629513844,2053731104,1948265573,544105832,1931965545,776687392,540740109,538976288,539898400,1716068384,1830838560,1919905125,1701978233,1701995878,543515502,1730179945,1852143209,1953068832,1953853288,1931501856,744847977,1953849888,1836020512,990514533,1752461065,1629516389,1836410738,544501349,1629516649,1734701600,1702130537,1999118450,1751345512,1886218528,1936025964,1931501856,694516329,990514476,1701344265,1752440942,1701650533,2037542765,1717924384,1852142181,1763730787,1919248494,544437353,1952540788,2053731104,168636005,538970427,2017796128,1953523043,1936617321,1347362874,541868895,1936027492,1953459744,1886218528,1629518188,2053731104,990514533,538970377,1347362848,1330139999,224020819,538983178,538976288,538979891,543574304,1851858993,540156004,1847619428,1629516911,2037149808,1969365036,1752440948,1763734377,1752440947,1634476133,1881175155,1769173871,543517794,1969713761,1953391981,154864141,1953720684,1851858988,1718165604,1701344288,1735549216,1852140917]}]],[[{"sector":1,"length":512,"data":[1768693876,1914729587,1769304421,544433522,1634738273,1667855474,1918987381,2053731104,1948265573,225338728,1946761994,544498024,1702521203,544434464,1684370293,990514478,538976288,775168032,1226842144,1818304622,1953439852,544367976,1702060387,1713384563,543646060,1696624225,1919906418,218762542,811819274,151599665,1010501897,539831597,1954047342,1936683040,1818388851,1918967909,1701672295,1814066286,225735529,1870137610,2019631218,225993004,1869416714,1768169590,1717989164,544499059,168651105,1987013897,746087200,1702521203,1629513327,221392745,1701972234,1953702000,225932143,1869416714,1769152630,1852660524,1852403045,157118310,1684300091,1936942450,543584032,543516788,1969713761,1953391981,1918989856,1953390953,168626701,757935419,1919898400,1970217076,1852383348,1634301033,2036473964,779314548,1950425120,1768453152,1869619315,980708969,758843917,1931488557,540876905,1919181921,544437093,1629513327,1836410738,544501349,1769103734,225734241,1628048650,976367715,151587081,757939259,1701716013,1646294136,543519865,1629513327,1836410738,544501349,1769103734,225734241,1869351178,224555876,1970473226,1818304610,1297301804,1128353119,168636488,543320585,892363617,990447904,1847617129,1869422703,1931502962,1768121712,1646292065,1936028793,1661536781,1629515885,1396780140,1330405197,1111575363,757089612,1297301792,1128353119,168636488,543517193]},{"sector":2,"length":512,"data":[151602752,1718172425,1297301792,1129270367,1279410507,151653701,1629512042,540291171,1765476617,1396777062,1313169229,539500612,540949821,1869771365,168634738,1987013897,1767988000,1936286766,1751343469,1818307677,1634941705,1830839670,1768448865,1948280174,224751737,1835665674,1667309680,151597616,1667326523,1868963947,1701716082,1646294136,224752761,977289226,1862863373,1633362034,1635135081,1634494066,744321895,1599226198,1262702412,1162625601,1778977293,1629515885,154284131,1633827593,1713400675,1847620207,544503909,1702132066,168626701,875586401,151653690,544238954,858874209,990447969,1869771365,218762610,757938954,1699160109,1851859060,1853169764,1801675120,1701344288,1919907616,168636004,1667303949,221918512,1701054730,1769152611,1812531725,2004051055,2013858317,543647843,1630301281,990447976,544503152,1869901417,1953066016,761621620,1768189541,1864396385,1919247474,2013858317,1679848047,2019830904,1829308941,1646294639,1396780152,1146047821,1678313997,1646294633,151587192,544760123,1600200765,1868787823,540763492,1025538148,1684957472,1763735653,544175214,1852403823,225994084,1869416714,1633362038,1668312927,1566925935,158884140,1986097979,2019631205,1661536781,1629515885,1680878712,168650854,543255049,151602752,1718172425,1953459744,1886348064,1701015410,1919906675,1936615712,1668641396,1852795252,1661536781,1629515885,1680878700,168650808]},{"sector":3,"length":512,"data":[543320585,151602752,1768176393,225408116,1919879434,1767988000,1718445102,1936154988,1296313437,1347371871,1715150930,543646060,1629516905,1851859059,926447648,1936615712,1668641396,1852795252,1829308941,1629517423,1818307688,1812531725,1651729519,990447881,544499047,1920235621,2036473953,168650100,1987013897,1767988000,1734701614,1567450477,158097708,1986097979,1953046629,544106784,1835492722,168652133,544370441,778658139,1718772086,1936154988,1096166493,1330470738,541938244,1634494011,1953046631,1919950963,1852142437,168650083,221921344,1869416714,1834688630,1768777070,1567581806,157905708,1986097979,1769152613,1667326496,1734418539,225339745,1869416714,1769152630,225993772,1869416714,1818370166,1886346028,1701080681,1769155448,151653725,543253868,1529637235,1768714351,728986739,157120610,543781691,1752440893,1684086885,1936028260,1718558835,1920298784,1701867296,1684955506,1936288800,151653748,544632685,1865181540,1702061670,1768693876,1868522862,990475381,1025534308,1920098592,1864399201,1347362918,1933856338,1718159885,1146047776,1413829445,222580035,1869416714,1767579766,1852405860,1630297459,990453880,1702257011,1768453152,1868963955,1651449970,1701605235,1763730804,1920234350,1769235317,1679847023,1667593317,1852795252,1852115469,224815460,990514442,539831597,1768383810,1869357166,1864396911,544367990,1919250543,1935961697,218762542,811819274]},{"sector":4,"length":512,"data":[151599670,1010501897,539831597,1954047342,1701867296,1684955506,1812531725,1651729519,990447881,544499047,1954047342,1701867296,1684955506,1954112032,151653733,544238947,808217697,1778977293,1667309669,153104433,1718172425,1684956448,543584032,1953720684,1661536781,1528852589,777873764,1314017359,1818635844,745760609,168636717,543517193,825254753,990447904,1948280425,1713401711,1864398693,1634887024,544433262,1701995895,1986619168,168652389,1886216969,745300256,1398755407,222648905,1651116298,155598880,1765476617,1869488230,2053731104,1701716069,1684366437,154864141,544632685,808216673,154864141,544632685,875326563,154864141,543975539,1663858785,990447980,1702260589,1953063456,758390899,1932009527,694516329,544175136,673212513,828330063,1026700086,1347365941,909981791,1599098668,926758449,774778412,990514473,1919447817,745300256,151612515,1987013947,1768038501,807433076,1646277421,225141601,1650723082,878981152,808529000,990447976,1835098429,1747988768,1480665120,1479553085,1043144793,1029194016,1496340528,151653673,544632685,778658139,1936811378,1566931561,157835564,1986097979,1769152613,1629513082,226058615,1835665674,1667309680,168638512,154812480,990447881,1025526849,1599098656,540292685,774774829,151653678,543450209,1093430369,1331645779,1179012944,1327508768,911040336,1631264820,1937074788,1868963956,1752440946,1953701989]},{"sector":5,"length":512,"data":[544502369,1920233061,544433513,1629515113,1784638835,221343853,811819274,168639032,2002936585,2013858317,543647843,1647081569,990447992,544698222,1663072354,1635020399,544435817,543516788,1936090735,168653925,1987013897,746087200,1836278107,1886218847,2019699505,1933248861,1869767285,1852404853,1684086885,1936028260,151653747,544368755,824997986,1829308941,1629517423,1650142316,1635021929,2019699554,151653725,1953719668,745300256,1567188059,1380994862,1714308174,1936154988,1778977293,1667309690,153106736,1718172425,544173600,1970365810,1684370025,1953063456,1918967923,1919950949,1852142437,151653748,1819042147,544760608,1664813321,543976545,544437353,1667592307,1667851881,1970237984,1701734772,1661536781,1998614637,543453807,544371824,761885531,673996081,828330063,724710198,1381978191,892480041,1328032566,909205328,1328230963,1599233872,692342605,1778977293,1667309669,153105968,1747467017,694903649,1919903264,1431128352,1852383308,1970435187,1869182051,151653742,543450209,1932290404,1868921449,1347362918,155471442,2019913275,1886330996,1851880037,151653732,544238954,909140833,1648036105,543908705,544370534,1701998445,168626701,959472481,151653690,544238954,825254753,1648036105,543908705,1847619444,544503909,1936945008,1818845801,226063465,990514442,539831597,543452741,1864394351,1634887024,1814062190,779383657,168626701,808543073]},{"sector":6,"length":512,"data":[151653690,544238947,1567188059,1380994862,1714308174,1936154988,221326636,1852442890,1667309669,151599408,543582523,544173940,2037277037,1701867296,1684955506,1702305907,1730176370,1852143209,168626701,757935419,1852392992,1663069281,1801676136,544108320,1702521203,218762611,1869416714,1818304630,1767988012,1918989870,1734437990,168648051,1936028681,1818304628,1380013612,1514754911,1162169951,151653700,1629518442,540160355,1765476617,1869488230,2053731104,1701716069,1684366437,1946749453,544502629,1445751905,1398755905,1197431369,223237705,1852442890,1667309690,151597617,543582523,1769152609,1998611834,1730179937,1852143209,1946749453,544502629,1445751905,1398755905,1180654153,1145262671,1778977293,1667309690,153106736,1718172425,1701344288,2053731104,1635197029,1869488243,1868963956,1684366194,1025517600,1914715709,1667590757,168634740,1987013897,745108256,1701735771,1718511981,168648047,1886216969,1954112032,1953505381,1935351922,1093426537,1163873619,168641614,543517193,842097505,990447904,1948280425,544434536,1948283753,1814062440,544502625,224751215,828596490,168639025,1886218761,828465440,151609651,544500027,544432503,544501614,540949821,1869771365,1848123506,1629516911,1952805408,220821874,990514442,539831597,1667590211,1953439851,544367976,1717924464,1936029801,218762542,828596490,168639026,1987013897,745300256,1600217435,1702257011]},{"sector":7,"length":512,"data":[1919967076,2020173413,151653725,544238947,808217697,1778977293,1667309690,153105457,1718172425,544173600,1702257011,1919950948,2020173413,1948283749,1751326831,225141605,1835206922,1818304624,812003372,151653736,543518314,151602752,1718172425,661940512,543236211,544236914,1717924464,168654953,1936028681,1633362036,1635135081,1634494066,744321895,1599226198,1262702412,1162625601,1778977293,1667309690,153104689,1718172425,1768453152,1635131507,1851877746,1936269428,1953459744,1668246560,1818386795,539828325,1869771365,151653746,544238954,875651937,1681590537,224751215,977289226,1829308941,1629517423,1633365112,1668312927,1566925935,1751333641,543908709,1864394345,1685021552,1936269413,541806368,544370534,2070963570,1848408620,168656250,1684955401,745300256,544501614,990447921,1634036835,1869357170,1919885431,544367972,544500066,1448037672,757094227,1330454590,692212566,1661536781,1629515885,1714433144,168650854,543255049,825320289,990447904,1763731049,544417652,544501614,540090465,1702132066,1936615712,1668641396,1852795252,1696607520,1919906418,1829308941,1679849071,1718561897,1952805734,1885696544,1953720684,1768700681,1864397939,1852383334,1970435187,1869182051,1948283758,544498024,1998614375,543716457,225469810,1869416714,2019762294,1381977644,1279348805,990453836,1851876211,1819042080,1163012128,539697232,2018526546,168634744,1885696521]},{"sector":8,"length":512,"data":[1931502958,1651728739,1778977293,1629518446,154218851,1718172425,661940512,1869488243,1835081844,543649391,1835362420,1696607520,1919906418,168626701,875651937,151653690,1953719668,1935760160,1852661613,1634494047,744321895,1598442817,1195725645,1778977293,1178607738,990447881,1847617129,1702043759,1852140903,1919950964,2020173413,1717920288,543519343,1835363949,1667853935,1829308941,1629517423,1633365112,1668312927,1566925935,1751333641,543908709,1864394345,1685021552,1818304613,1937207148,1768453152,151653747,544238947,808220769,224945766,1634339082,828596512,151593009,543582523,1931965545,1953459744,824205600,1954112032,1852383333,1970435187,1869182051,539828334,1869771365,151653746,544632685,1865181540,1702061670,1919950964,1635022950,151653730,544632685,1345091683,1313164383,1913195021,1701736549,1633907488,168649331,2054056457,828596512,990447921,1763731049,544417652,544501614,1948282473,1814062440,544502633,1919229997,225603442,977289226,1829308941,1646294639,1633365112,1835609705,1684300141,168648050,544370441,1647081570,151653752,1629518442,540422499,1765476617,1869488230,1835886880,1634296933,1679844724,224490593,1869416714,1818304630,1767988012,1936748334,1566931561,1846086157,1629513573,151653740,543975539,824994913,1946749453,544502629,1529637985,925595746,151653725,544894570,825320289,1765476617,1752440934,1835606117,1768187245]},{"sector":9,"length":512,"data":[543519841,1635017060,1935767328,1869575200,1734959648,1696607520,1919906418,168626701,538976315,544503120,543516788,1953721961,1952675186,544108393,1701277556,1919248500,168626701,538976315,1936877894,1948265588,1881171304,1768318322,544433528,1668180264,1768191340,1881171822,1701012850,1735289188,1229018912,1852383316,1970435187,1869182051,168634734,1667303949,221918769,1769146634,1919968634,151607398,1987013947,2019845408,1600215852,1919181921,151653725,544632685,1529641060,1684103009,808153700,151653725,544632685,1529641058,1684103009,875262564,151653725,1953719668,1935760160,1852661613,1634494047,744321895,1598442817,1414086999,1778977293,1178607738,990447881,1847617129,1635197039,1763734633,1920234350,1769235317,1646292591,1919903333,1851877477,151653732,544632685,959212641,168650850,1818321673,1920409708,1634038889,168652147,221921344,1869416714,1818304630,1633770284,1986098015,1885299813,1768318322,168648056,1886216969,745300256,151653680,1075870314,151587142,543582523,1277194094,541803343,1377858159,1881165893,1768318322,151653752,1819042147,1769109280,1935762804,1074400621,168639040,758843917,1629498669,1748448800,1684300064,1936942450,2053731104,1919950949,2020173413,544434464,1684366702,168649829,757935419,539898144,544370534,842224451,1718165562,1179468064,1145323871,540097874,543452769,1598442817,1026700097,990514481,539831597]}],[{"sector":1,"length":512,"data":[1713385010,1126199919,976630099,543582496,1598442817,1380205633,1629499709,1092641902,1096762957,809316915,168626701,1987013897,745300256,1836278107,1601072479,1734437990,168648051,1936028681,1818304628,1179468076,1145323871,151653714,1075870314,151653702,543452769,1093430369,1096762957,168636979,1059087977,168643920,1987013897,745038112,1396925019,1920234561,151653725,543452769,875325537,168650800,544370441,1630301281,1695157608,1718183022,1627982349,1629512814,1296116844,859922246,539697202,224931892,2053769482,222707744,1835206922,1818304624,1179468076,842219871,874523424,168650800,544893449,168642112,1987013897,745300256,224933686,1633880330,1998613612,1702127986,225276769,977289226,168626701,757935419,908091680,1679845430,543257697,1702521203,1701998624,544762214,1847620457,1701078373,990514532,539831597,544370534,909202243,1718165562,1380013600,842220639,540884256,1919885361,1179468064,842220639,540884256,990514481,539831597,544370534,842224451,1718165562,1380013600,909198431,540884256,1919885361,1179468064,909198431,540884256,218762545,1869416714,1751195766,1935760172,1852661613,1634494047,224228199,1869416714,1818304630,1767988012,1918989870,1734437990,168648051,1059087977,168643920,1936028681,1650139252,1950438211,744321652,224931892,2053769482,222707744,1702103306,1629516915,1444949100,1147097665,168638001,2054056457]},{"sector":2,"length":512,"data":[845373728,221339440,1702103306,1629516915,1092627560,1147094605,168638001,2054056457,845373728,221339440,1835665674,1667309680,168636722,221921344,1684956426,168650345,1936028681,1818304628,1380013612,842220639,1778977293,1629518446,1596994147,151653681,1953719668,745038112,1598442817,221393732,2053769482,845373728,1628048689,1596994147,168639025,1987013897,745300256,224933430,1633880330,1998613612,1702127986,158167905,1953708809,543519343,1919250543,761556577,1702521203,1701998624,225995110,845373706,168639025,1987013897,745300256,1600217435,1600611699,1566929520,1661536781,1629515885,221260908,2053769482,155598880,1765476617,1869488230,1734701856,1953391981,1701998624,225995110,1633880330,1998613612,1702127986,225276769,1835206922,1818304624,1748252204,1778977293,1178607714,990447881,1847617129,908096623,1919885364,540358176,542328360,1193308783,168634707,544370441,1836278107,1601072479,1734437990,1093426547,1180649037,542328659,1634494011,1953046631,1077938701,218762554,757938954,1867391021,1835343991,1948284009,1763730792,1920234350,1769235317,1763733103,1818588020,168636006,1829308941,1629517423,1633365112,1668312927,1566925935,1829308941,1679849071,2019634281,1929972237,1679843957,875703401,168650800,1700882953,155598880,1765476617,926228582,774778166,151653678,544238947,841775201,224931888,1651116298,845373728,151593012,543582523]},{"sector":3,"length":512,"data":[1969710450,544366956,1953721961,1952675186,225341289,1919879434,1767988000,1718445102,1936154988,1296313437,1347371871,1715150930,543646060,1629516905,1851859059,926447648,1936615712,1668641396,1852795252,1627982349,1629512814,858795116,151611448,1952802619,1734701600,1702130537,1634738290,168653938,544370441,778658139,1835492722,744320357,168651873,1751349257,2019631207,157901868,1869429513,2019631222,543777836,1701344296,2003790880,1953063456,1718558835,543777824,543519329,1685024615,151653673,543452769,925658209,1862863373,1818304626,946090028,151653736,544238954,892494689,1866139913,1869881454,1667589152,1852400751,1752440935,1852383333,1970435187,1869182051,1074400622,168639040,1987013897,745300768,990447923,543518319,1953721961,1952675186,544108393,1629513327,1869768480,168652917,1919447817,745104416,168651875,1684955401,745300256,151653687,543975539,1663855713,151653740,1528853103,1915644257,1701668709,1630297453,151653740,543975539,824994148,1829308941,1629517423,1633365112,1970238055,1680569200,990469481,544499047,1970561889,1864395873,1685021552,218762597,845373706,168639028,1936028681,1751195764,224944428,2053769482,845373728,151593013,543582523,807432046,1713399910,1953722985,1879640589,543716213,153122913,1953708809,543519343,1714430049,151653736,544632685,808217697,168650854,1818321673,1920409708,1634038889,168652147]},{"sector":4,"length":512,"data":[1886351369,225992992,1628048650,976564835,1862863373,1818304626,1767988012,1668312878,1600480367,157119087,1953853499,1684300064,1869182057,543973742,1937008994,1953392928,1752440943,1886330981,1701080931,1661536781,543976545,1953067639,1836278117,1933248777,1701998452,1701344288,1668312864,543515759,1702065257,168650348,758843917,1310731565,1931507567,1701998452,1701344288,1954047264,1931501938,1717990772,1634235424,1868767348,544433517,1752459639,1701344288,1936615712,1668641396,1852795252,218762542,1869416714,2019631222,1919907628,1953505380,1633362034,1701981801,1835363687,151653725,1953719668,1767988000,1918989870,1734437990,1445748083,1298092609,1297237071,1778977293,1178607738,990447881,1847617129,1869422703,1701978212,1701654375,151653741,1752397168,225992992,1633880330,1998613612,1702127986,225276769,1869613322,2019631216,1946749453,544502629,1836278107,1601072479,1734437990,1093426547,1398752845,168641097,544893449,151602752,1718172425,544173600,222447955,1869416714,1818304630,224944428,1633880330,1998613612,1702127986,158167905,1953708809,543519343,543516788,541347661,541929298,543452769,742541651,1869575200,1077938701,218762554,1869416714,1768169590,1767988012,1634562606,1567777892,1862863373,1768169586,225010732,2053769482,155598880,1765476617,1869488230,1717989152,544499059,1869837153,1952541027,1998611557,543716457,543516788,223162194]},{"sector":5,"length":512,"data":[1869416714,1818435702,1768184620,1347366493,776228434,1702521203,225667428,1869416714,1751326838,168636460,1634036745,745108256,1567188059,1380994862,1848525902,990473589,1919906931,1752440933,793911397,1718558797,1952805734,1919887392,1835363616,544830063,1936090735,220820581,1633880330,1998613612,1702127986,1852666721,1077938701,218762554,757938954,1867391021,1953702007,543519343,1701670249,1952541028,1633951845,168649076,1829308941,1679849071,1633365097,1835609705,1684300141,168648050,544370441,1680632164,151653737,1075870314,151587142,543582523,1763733358,1684368749,1702125929,1952539680,151653729,544632685,1529637985,1865312609,2053731184,168648037,2002936585,2013858317,543647843,1663858785,990447992,544632685,1630304355,151653752,543253868,1529637235,777873764,1314017359,1970155076,151653741,1819042147,1769109280,1935762804,168652397,221921344,990514442,539831597,544698190,1919906931,1684086885,1769236836,1818324591,1954112032,673215333,1684366702,1713398885,539783791,778514021,1852121132,544367988,1953721961,1952675186,695103337,758843917,1629498669,544174956,544370534,542261574,1869440365,1629518194,1701995620,168653683,1829308941,1679849071,1633365097,2021142121,1919181921,151653725,1679848047,1768172649,1778977293,1178607738,990447881,1847617129,1684086895,1769236836,1818324591,1952539680,151653729,543253868,1529637235,777873764]},{"sector":6,"length":512,"data":[1314017359,1970155076,1684300141,1970158368,1919246957,543584032,1702132066,841490547,1919903264,1380009504,1769152556,1864394106,1702043750,1852140903,168634740,1685023753,168649331,2002936585,2013858317,543647843,1663858785,990447992,544632685,1630304355,151653752,1819042147,1769109280,1935762804,168652397,221921344,990514442,539831597,1701736260,1768776992,1852404852,1428172391,1952539760,1935745125,1684086893,1936028260,1718558835,1952805734,218762542,1769146634,1919968634,151607398,1987013947,1600215840,1919181921,1684352093,151653752,544632685,1633640795,1567777892,225993772,990514442,539831597,1886220099,543519861,1751343469,543518313,1701869940,218762542,1835206922,1633362032,1768173161,1667329395,858545512,1778977293,1629513057,154219363,1718172425,543520544,1701997665,544826465,2003791467,857760032,1763718712,1701716083,1684366437,1946749453,544502629,1836278107,1601072479,1734437990,539778419,1598442817,540160836,1092645487,1096762957,1864380979,1296113778,1397120838,168645447,2054056457,862150944,990447920,857761385,168638008,1936028681,1633362036,1635135081,1634494066,744321895,1599226198,221393732,2053769482,862150944,151593009,543582523,544501614,221657139,862150922,168639024,1987013897,1767988000,1936286766,1751343469,221457501,862150922,168639025,1718159885,1146047776,1413829445,222580035,1869416714,1885479030,1717989164]},{"sector":7,"length":512,"data":[544499059,1651466081,1650553971,1651456777,1701605235,1763730804,1920234350,1769235317,1948282479,1701601889,1661536781,543976545,2003789939,1751343469,1731922185,1830843493,1768448865,1830839662,1634956133,1763730791,544175214,539781491,1735288172,1763731572,544175214,168654947,2019781129,1667309690,151597875,543582523,1830842222,1634956133,168650087,1667303949,221917747,1869416714,1768169590,1717989164,544499059,1701734764,1953853279,1913195021,1830842469,1651734127,1664813321,544829551,543516788,1701734764,544175136,1701734764,1953853279,1661536781,543976545,1937012080,1701734764,1852115469,224815460,1628048650,976434019,1778977293,1629515885,154218593,1633827593,1713400675,1948283503,1847616872,544503909,1970302569,1768693876,168650094,1329793549,542397262,1835492723,225734245,151653642,1734962273,221388910,990514442,539831597,1886221642,1650553888,1713399148,1864397423,1634887024,1948279918,1936027769,990514478,539831597,1701081711,1718558834,1953391904,1936025970,544106784,1601008481,829451626,1937075488,1634541684,224945012,757938954,1752440877,1852776549,1852383333,1936286752,1886218847,539959345,1601399140,1635020911,168636002,1935739405,1835687789,1814049136,1818583649,1919907616,151653732,1629517668,1767862383,1630301549,1918857327,1868639341,745365360,1601204065,1869438834,1329269092,1296654160,1327508557,1297243984,1347362860,539774303]},{"sector":8,"length":512,"data":[1381978191,1146047839,1678313997,1868636279,1869438832,745760358,1601204065,1868639346,1601331056,744776801,1601204065,990476385,1298092111,1397114447,1347362860,539775583,1381978191,1145323871,1347362860,223887711,1297301770,1330663263,1696613958,606106993,1629498656,1784638835,221343853,757938954,1919885357,544367972,1953723757,1952541984,1948280931,1864394088,1763730798,1768169582,1886347123,224551284,2003044618,829382944,1868639287,1630287665,154612079,1329269001,911040336,1327508532,1179475792,1413566284,1347362860,1329876319,1162625621,1678313997,1868636279,1630287665,741814639,925986657,990447881,1298092111,539766840,1298092111,539777112,1180651599,1162695233,151653709,1629517668,1717530735,1835627105,1868639341,1701994352,1630287980,1918857327,909208677,990458419,1180651599,1296650817,1327508557,1163026256,539768908,1381978191,909200453,168636979,544695305,959606625,1886347564,1769239391,1886347564,158491487,1329269001,1127309136,539773768,1398755407,539773268,1130319951,151653714,1629517668,741618543,892563297,862937388,151587129,1599098683,539775556,1415532623,1327508562,1163091792,1195725383,1678313997,1868636279,1630286132,741487727,1601204065,158887277,1329269001,1296654160,741888845,1599098656,944590153,1347362860,1481461087,1678313997,1868636279,1630286900,741749871,926183265,990447881,1398755407,1230196552,1327508570,741433168]},{"sector":9,"length":512,"data":[1599098656,151653683,1629517668,741880943,942960481,879714604,151587128,1599098683,539777092,1130319951,1327508556,1414750032,1678313997,1868636279,1630287924,741880943,942960481,990447881,1130319951,1327508563,1396989776,1347362860,223561055,2003044618,879714592,1868639288,1630287924,154678383,1329269001,1397120848,1347362860,743655263,1599098656,168645459,1329793549,542397262,1935961701,168626701,538976315,1953853266,1936027241,544175136,1667590243,1868963947,1886593138,1718182757,1864393577,1634887024,1948279918,1936027769,990514478,1428168736,544108400,1667462515,745763685,1701344288,1970237984,1701734772,1952805408,1936618101,990514478,1428168736,544108400,1818845542,744845941,544500000,1936748400,1701344288,1952805408,544109173,1919181921,544437093,543452769,1886221674,1869881459,811819296,168635953,538976315,543516756,1953853298,1936027241,1937075488,1919950964,1919251301,1931502966,1851859049,1768169572,218762542,757938954,1347362861,743264863,1599098656,1327508557,1599233872,977555277,1868963872,1293970802,1377846351,1646284079,778400889,168626701,1601204065,221932914,1886347530,221932895,1886347530,1834971743,221930607,1633880330,1629514860,154155375,1868970761,1914727794,1831823205,1646292325,224752761,1835665674,1868636272,151598896,544171835,1948282740,1931502952,543521385,1667590243,218762603,757938954,1347362861,540693087]}]],[[{"sector":1,"length":512,"data":[1734701600,1702130537,168636018,1868630541,980574064,1829308941,1629517423,1683696748,1328438633,1145983568,1734701614,1916471601,1936287589,544367988,1651340654,168653413,1684955401,745300256,151653687,544632685,858549347,1929972237,1629514856,1818438764,1933248777,1952868712,544500000,1869901417,1634496544,168650083,544370441,778658139,1835492722,744320357,990473313,544503152,1763734633,544175214,543516788,795305330,544040301,1702132066,1778977293,1629515885,154611823,1869036297,544175136,543516788,1702521203,1701339936,168651619,758843917,1327508781,1599233872,977552449,1734701577,1702130537,1629498482,1684366436,544175136,543516788,1953721961,1952675186,778989417,168626701,1601204065,1684103026,168639076,1987013897,745300256,1567188059,1380994862,1915634766,221341541,1851853066,1818304612,168638252,1987013897,1767988000,1668312878,1600480367,744321647,990473313,544503152,1948284009,1701995880,1778977293,1629515885,154611823,1869036297,544175136,543516788,1702521203,1701339936,168651619,758843917,1327508781,1296654160,538982989,1701670249,1952541028,1633951845,221143412,1628048650,1767862383,221932909,1869416714,1633362038,1835609705,1684300141,1680629106,1933248873,543520353,543516788,1633906540,1852795252,543584032,1936287860,1778977293,1629515885,154611823,1869036297,544175136,543516788,1702521203,1701339936,168651619,758843917]},{"sector":2,"length":512,"data":[1327508781,1330470736,978536006,1937074697,1752440948,1701650533,2037542765,1717989152,225731955,1628048650,1834971247,1936090735,151653690,1953719668,1768184608,1347366493,776228434,1734437990,1380002931,1330470727,223171140,1852442890,1868636282,151597361,543582523,541347661,541929298,1702132066,1025517600,1914715709,1667590757,168634740,1987013897,1767988000,1634562606,1567777892,157901868,1986097979,1752440933,1886330981,1851880037,1869619300,1702129257,151653746,544238954,925921121,1731922185,1869881455,1701344288,2053731104,1751326821,225141605,990514442,539831597,1096765519,538983000,1667590243,1868963947,1279336562,794313007,223887685,1628048650,1633644655,168639096,1936028681,1683693684,1328438633,1145983568,1734701614,221719601,1852442890,1868636282,151597361,543582523,1852797559,1701978215,1953720679,168653413,1835678473,1868636272,151598896,544171835,1948282740,1931502952,543521385,1667590243,218762603,757938954,1767055405,1663067514,1801676136,168626701,925921121,151587130,758921993,1696607533,2037544046,1919903264,1599098656,539774290,1298092111,1347362860,1298092639,539771983,1381978191,1347362860,1096766047,774784068,151653678,1528853103,1982753121,1818653281,1567844193,1380013612,1514754911,1162169951,151653700,544632685,1529637985,1915644257,1769173349,224224634,1970473226,1818304610,151598380,1599098683,842217009,540950048]},{"sector":3,"length":512,"data":[151653684,1629514858,540160367,1765476617,1347362918,1280065887,1778977293,1868636282,153105201,1718172425,1599098656,842217009,758843917,1327508781,1027104592,1327508529,909205328,539767357,861884495,741555506,1599098656,876426294,1627982349,1629512804,858598508,1627982349,1629512548,154348652,1868774153,1919252078,540221556,540945709,1851858996,540287076,540945709,1628048693,976760943,151587081,757939259,1852121133,544830068,544370534,1298092111,773862454,1327509038,1095130960,1296387410,1862863373,1633362034,1635135081,1634494066,744321895,1599226198,1599752531,1129467718,539697220,1599226198,1599752531,1145390414,1868630541,828323888,151653690,544632685,1529637986,777873764,1314017359,1769156164,1918985594,151653735,1646293615,1818373228,1778977293,1178607738,990447881,1847617129,1769152623,1730176378,1852143209,1862863373,1633362034,1635135081,1634494066,744321895,1599226198,1599752531,1314277703,1661536781,1629515885,1818373228,1778977293,1629513070,154218863,1718172425,2053731104,1663071077,1818652271,225731433,977289226,1661536781,1629515885,1633365100,1886334569,1702521203,151653725,1075864938,151587142,543582523,1702521203,1734418547,224748914,1668811018,1629513576,1633365100,1886334569,1702521203,151653725,544238947,808217697,1778977293,1629518446,154218863,1718172425,2053731104,1679848293,1734439785,224748914,1919879434,1767988000]},{"sector":4,"length":512,"data":[1918989870,1734437990,1445748083,1398755905,1197431369,156128841,774993467,1629501489,1684366436,1077938701,151653690,225731954,1628048650,976302447,1778977293,1629515885,154154351,1701985033,1952671082,168626701,757935419,1599098656,541871169,1816207405,544698220,543976545,1702521203,168636019,1868630541,221917745,1869416714,1818304630,1768184620,1347366493,776228434,1702521203,224883297,1835206922,1818304624,1514754860,1415135839,151653701,1629513066,540356975,1765476617,2036473958,168650100,543320585,875655009,990447904,1965057641,1869507438,168652407,544370441,778658139,1868787823,1868522852,824991090,1702050569,1768038516,1852383348,1936615712,1668641396,1852795252,1778977293,1629515885,154415471,1718172425,2053731104,1936269413,540422432,857764463,218762546,757938954,1347362861,859189599,539828274,1685221239,544370464,1919907684,168636004,1868630541,221918001,1869416714,1818304630,1768184620,1347366493,776228434,1702521203,224883297,829382922,168639028,1886216969,745300256,1599752531,1162760014,1778977293,1868636261,153105969,1718172425,1769239328,1965059180,1869507438,168652407,1886216969,745300256,1599752531,1146244951,1778977293,1075864942,151587142,543582523,1685221239,1862863373,1633362034,1635135081,1634494066,744321895,1599226198,221655364,1835665674,1868636272,168637745,221921344,1835206922,1818304624,1514754860,1331119199]},{"sector":5,"length":512,"data":[168641618,1701734921,829382944,990447921,1847617129,1679848559,1685221239,1862863373,1633362034,1635135081,1634494066,744321895,1599226198,221393732,829382922,168639029,1987013897,745300512,778658139,1769173103,224224634,1702103306,1646294131,1818373228,1778977293,1178607738,990447881,1931503209,543521385,1852534389,225343343,1835206922,1818304624,225206828,1852442890,1868636261,151597361,543582523,1702521203,1768169587,1919377779,168650085,221921344,1869416714,1633362038,1886334569,1702521203,1818307677,1862863373,1633362034,1635135081,1634494066,744321895,1599226198,1599752531,1314277703,1868630541,221918769,1701972234,218762612,538983178,1599098656,540292685,875962413,1953063469,1835363616,544830063,1701209458,1668179314,168636005,538976315,1298092111,1095715910,539828308,1735289203,1882023276,1768121714,1852795251,1869375008,1852404833,1869619303,544501353,1869440365,1914730866,1919247973,1701015141,990514478,1327505440,1145921360,1279415631,539828293,1651863396,1882023276,1768121714,1852795251,1869375008,1852404833,1869619303,544501353,1869440365,1914730866,1919247973,1701015141,990514478,1327505440,944594768,539828272,1647128632,1830843497,1919905125,1701978233,1701995878,778396526,540740109,1347362848,1482181983,1830825248,1919905125,1701978233,1701995878,744842094,2053731104,1853169765,2003791467,168636014,538976315,1180651599,1162695233]},{"sector":6,"length":512,"data":[539828301,544366950,1869440365,1881176434,1953393007,168653413,758843917,1646275885,1868767352,1767994478,1646293870,543519865,1701080681,1868963960,1768038514,1650553972,1868630541,221919025,1633880330,1629514860,154155375,1868970761,1914727794,1831823205,1646292325,224752761,1869416714,1818304630,1935760172,1769168749,1836412538,762864171,1598903105,1179603023,1563569990,1778977293,1629515885,154677359,1751333641,543908709,1702521203,168626701,757935419,1599098656,1230127430,757091661,1918985760,1684300064,1936942450,1852793632,1852399988,1763730533,1852383342,1970435187,1869182051,218762606,1886347530,1918985823,980249961,1829308941,1629517423,221391980,543582474,223170623,1702103306,1528853619,1095975778,1567782004,1747989548,1778977293,1629518446,221327983,1684956426,168650345,1886216969,1919907616,1953505380,1683693682,1328438633,1145983568,1836412462,808202795,1778977293,1868636282,153104946,1718172425,758526240,544500066,1919181921,225669989,846160138,168639025,544370441,778658139,1718772086,1936154988,1096166493,860118866,151653682,544632685,875326561,1868630541,221917746,1869416714,1683693686,1328438633,1145983568,1836412462,744776801,842735666,1684300064,1869182057,543973742,1702132066,1932009587,1701668709,1881175150,695497313,1829308941,1528854127,1764649313,1684106605,744321636,168651108,1987013897,1767988000,1936748334,1566931561]},{"sector":7,"length":512,"data":[158097708,875508283,1769152556,1864394106,1718558822,1952805734,1868630541,828322354,151653690,544632685,778658139,1684109432,744321636,168651108,1952805385,168626701,757935419,1599098656,944522578,1914711328,1952541797,543520361,1919181921,225669989,757938954,1665802285,1277176931,2018529103,2018123820,224024643,1628048650,1918857327,976776293,1829308941,1629517423,1230187628,1213423450,223629903,1633880330,1629514860,2053731169,158034019,1751333641,543908709,543516788,1702521203,1829308941,1663071855,154283128,1769159433,1864394106,1852383334,1970435187,1869182051,151653742,544632685,1529637985,1601008481,1717530221,1936154988,218762589,1702103306,1629516915,1296116844,860118854,1919885362,1179468064,909198431,1778977293,1868636282,828322610,1765476617,1869488230,2018123892,744118339,1330596896,168654928,1936028681,1818304628,1179468076,842220639,1778977293,1178607738,1862863373,1818304626,1179468076,842219871,1245382921,1515733880,1684955424,1330596896,1847621712,543450469,926294113,1847602280,1629516911,1748383264,1701998624,225995110,977289226,1627982349,1629512814,1869491308,1093148788,1147094605,1864380979,1296113778,826564422,168634678,544370441,539782241,1598442817,1380205633,1829308941,1528854127,1601008481,1717530221,1936154988,1818307677,1718159885,1297104672,1829308941,1629517423,1650142312,1950438211,224227956,1851853066,1751195748]},{"sector":8,"length":512,"data":[1747989548,1818561037,168650099,1987013897,745038112,1695157552,1718183022,1627982349,1629512814,1296116844,859922246,151653682,1629516399,1751198828,1778977293,1868636282,828322610,1661536781,1629515885,1296116844,859922246,808725298,151653736,1629518442,1597190767,151653681,543387241,151615587,1852390153,1970435187,1869182051,1769152622,1025533306,168637216,858943329,221917535,1869416714,2019696758,1600215852,1919181921,224210987,1684080906,2019696740,225993516,1869416714,2019762294,1600215852,1919181921,157102635,774993467,540684850,1684955496,1210082668,1919899497,1229269092,1881155920,1701867378,226061426,1684080906,2019762275,168636460,1987013897,746086688,1685221239,1920233504,1768184608,1347366493,776228434,728593774,151653680,544632685,1999403108,543453807,544371824,1567188059,1380994862,1848525902,841706869,758843917,1126182189,1480735320,1819240480,1159754596,542132527,1920154920,539765091,1094342724,1869095000,544433260,225735524,1970473226,2019631202,225993260,1651706122,2019827810,225993516,1869416714,2036473974,1881171316,1528853108,777873764,1314017359,1970155076,1630286445,151653740,544632685,925658211,1916471561,1701277281,1937075488,1700929652,1717986848,946234982,1027350576,1008760864,808460349,808464432,168650295,1918989065,745300256,151612515,2021142843,2021161080,757097080,1179000894,2016419884,2021161080,543324280]},{"sector":9,"length":512,"data":[807419437,151653680,544238947,1630301281,151653736,543518314,1700753249,154235506,1718172425,1869575200,1734959648,1661536781,1629515885,2019830904,1778977293,1629513070,1919246191,151597426,543582523,544173940,224880994,1869416714,1683693686,1328438633,1145983568,1836412462,744776801,1933254705,543520353,543516788,1735288172,168650868,1886218761,846160160,154230578,1634941705,1763730806,2002854004,168655201,758843917,1327508781,1163026256,859189580,538982962,1634493810,1702259060,1836411424,1633890160,1948281964,543236207,1735290732,1629516389,1701995620,221148019,757938954,1769152557,1864394106,1852383334,1970435187,1869182051,1936269422,758843917,1629498669,1396908073,758526240,980707682,758843917,538979629,2015895603,2021138552,539785336,795897194,1819042147,1919885353,758843917,538979629,807936052,2021138502,2021160992,168634744,757935419,540418080,540423720,2015393912,2021161080,695761016,758843917,538979629,908599351,1177559094,544765984,2021161080,2021161080,990514473,221064493,757938954,694296621,542327584,1647129139,221934697,757938954,891297837,2021140512,2021160992,2021161080,1780493432,1664053357,694971489,225603360,757938954,908075053,1177561120,544765984,2021161080,2021161080,218762537,1886347530,1818587743,842217009,151653690,544632685,1529641058,1684103009,808153700,151653725,544632685,858552419,1829308941]}],[{"sector":1,"length":512,"data":[1679849071,1870081144,1881171058,1528853108,777873764,1314017359,1970155076,221391725,1869416714,1818304630,1768184620,1347366493,776228434,1702521203,224883297,1835206922,1633362032,1668312927,1566925935,808464684,1765476712,543236211,2015381040,1886331000,1701080931,151653695,1075864170,151653702,543387241,168654947,221921344,1835206922,1818304624,1514754860,1313820255,151653701,1075864938,151587142,543582523,1931505518,543521385,1702259047,151653742,544238947,1395420257,1147099721,1146244951,1778977293,1868636261,153106226,1718172425,2053731104,1679958117,1685221239,151653666,544238947,1395420257,1281317449,222776911,1852442890,1868636261,1920099679,990447921,1847617129,1931506799,543521385,1852795938,168632935,221921344,543582474,223170623,1702103306,1528853619,1095975778,1567782004,1747989548,1778977293,1629518446,221721199,1684956426,168650345,544370441,1680636004,151653752,544894570,1700753249,154235506,1718172425,1701867296,1684955506,544434464,544173940,224880994,1869416714,1818304630,151597612,1936286779,1667329136,1852140901,1769152628,840983930,1778977293,1629515885,221786735,846160138,168639031,1987013897,745300256,990447924,1886611812,1701011820,1953391981,2053731104,221519973,1919879434,1767988000,1918989870,1734437990,1445748083,1147097665,168636979,1684300041,746087200,990447923,543450209,1869881395,1936615712,1931506292]},{"sector":2,"length":512,"data":[543521385,540158760,544370534,1886611812,723528812,1868963889,909516914,168634728,1059087977,168643920,1936028681,1650139252,1950438211,744321652,224931892,2053769482,222707744,1701054730,2019762275,990447881,908095342,1881172022,1768318322,2036473976,1763730804,842211438,1953063469,1685021472,1074400613,168639040,1768189541,1628048742,976761455,1627982349,1646290020,2019765368,1829308941,1663071855,1633365112,1684300127,1563569010,1627982349,1663066980,221260920,1869416714,1683693686,1328438633,1145983568,1836412462,744776801,991980641,1919906931,1769152613,1864394106,1768169574,1634496627,1701668195,673215598,1919885362,220804128,1869416714,2019631222,1919907628,1953505380,1683693682,1328438633,1145983568,1836412462,168636459,1651864329,746086688,151615586,1836016443,1702131056,978863136,757094465,978862880,168646722,1650619145,746087456,168654947,1987013897,1768184608,1347366493,776228434,846034286,225993004,1869416714,1683693686,1328438633,1145983568,1836412462,741485362,168654948,1987013897,1767988000,1635285038,1567777892,225010732,1701972234,1628048756,1919246191,221917554,1835665674,1868636272,151597109,1785033275,225731429,990514442,539831597,828330063,541804611,1750343725,1935745125,1651336563,544367980,544104803,1869506409,1948280178,544434536,778399343,168626701,959606625,151653690,544239472,151615585,1768176393,1918985075]},{"sector":3,"length":512,"data":[1701978212,1852994932,1684300064,1936942450,1778977293,1629515885,154546275,1701722889,1864397944,1634887024,168649838,758843917,1327508781,1414750032,539828297,1227379795,168635945,1868630541,1953718128,168639081,1987013897,745300256,1598506322,151606355,1685021499,1868963941,1414733938,1829308941,1646294639,1683696748,1328438633,1145983568,1734701614,151653682,544238954,942894945,1950025993,1868767343,1852796269,1685021472,218762597,757938954,1347362861,1481461087,168626701,1601204065,980970861,1829308941,1629517423,1163013228,1296916295,1778977293,1629515885,154612591,1869888265,1836016416,544108397,1701080931,168626701,757935419,1599098656,168645187,1868630541,1919115120,151653690,544632685,1529637985,777873764,1314017359,1701981764,990458471,544499047,543516788,1701080681,151653752,544238947,875326561,1778977293,1868636257,1920099679,990447921,1948280425,1646292847,168650601,1701734921,155598880,1765476617,1869488230,1380130932,151653684,544632685,778658139,1836280164,1567122273,990459180,540299843,1847620457,1948284773,1752440943,943005797,1074400566,168639040,1886216969,745300256,151653681,1629513066,1919246191,151597426,543582523,221336131,151653642,544632685,1378643041,1130317637,990447954,1701080931,1919903264,223494944,1835665674,1868636272,151598899,544175163,1835888483,1663069807,224748655,990514442,539831597,1147097167]},{"sector":4,"length":512,"data":[218762578,862937354,168639028,1987013897,745300256,1598506322,151605828,1685021499,1868963941,1380196466,1778977293,1629515885,154612591,1869888265,1836016416,544108397,1701080931,168626701,757935419,1599098656,168645204,1868630541,221918515,1869416714,1818304630,1768184620,1347366493,776228434,845636978,1701264137,1752440948,1852383333,225994084,1835206922,1818304624,168637228,543320585,1700753249,154235506,1718172425,1869575200,1634562848,168651884,1886216969,745300256,151653686,543514986,168642112,1987013897,1767988000,1936286766,1751343469,154414173,861033531,1629500717,1847616882,1948284773,1752440943,942940261,1074400566,168639040,1987013897,745300256,1598506322,151605844,1685021499,1868963941,1381245042,168626701,757935419,1836008224,544108397,1701080931,1919903264,1701344288,1998611827,1685219685,1734701600,1702130537,221148018,1628048650,976696175,1829308941,1646294639,1683696748,1328438633,1145983568,1734701614,151653682,544632685,858549347,1929972237,1646292072,1818438764,1868630541,221919283,1919879434,1767988000,1734701614,1567450477,225206828,1919879434,1767988000,1918989870,1734437990,1445748083,1298092609,1297237071,1661536781,1629515885,1683696748,1328438633,1145983568,1734701614,1664813361,1801676136,1919903264,1701344288,1734963744,1847620712,1700949365,543450482,1768383858,1919251571,1778977293,1868636261,153104436,1718172425]},{"sector":5,"length":512,"data":[1936029984,1752440876,1914728037,1920300133,1628048750,1631073135,151653690,544238954,808808289,1916471561,1667590757,218762612,757938954,1347362861,1195725663,222774610,1628048650,976827247,1829308941,1629517423,1683696748,1328438633,1145983568,1734701614,151653681,543323507,841772129,151653684,544238947,908880993,1778977293,1629513057,1631073135,1765476617,1869488230,543236212,1835492723,544501349,1768383858,1919251571,1829308941,1663071855,221457516,1752369418,1818304620,225207084,1919879434,1767988000,1734701614,1567450477,225206572,1919879434,1767988000,1918989870,1734437990,1445748083,1398755905,1197431369,156128841,1684300091,1713398885,1981837935,909258289,1868630541,221917236,1701972234,218762612,757938954,1347362861,1296910687,757086291,1734955808,2019896686,1684956532,1763730533,1684368749,1702125929,1954112032,1344807013,541610837,220821624,1628048650,976303215,1627982349,1528849518,1982753121,1818653281,1567844193,1953459756,1380013600,1514754911,1162169951,1631258948,1684366436,1919903264,774993440,539900208,222260047,1869416714,2019631222,1919907628,1953505380,1683693682,1328438633,1145983568,1836412462,168636459,1987013897,745300768,151653687,544366963,1663855713,151653740,544238954,859074401,1664813321,1869442415,1868767342,168650084,758843917,1327508781,1296654160,757086285,1835878688,1634296933,1646290292,224752761,1628048650]},{"sector":6,"length":512,"data":[976368751,1829308941,1629517423,1870081144,1881171058,1528853108,777873764,1314017359,1970155076,221260653,1869416714,1818304630,168636460,859074401,151653690,544238947,1630301281,151653736,543518314,808808289,1765476617,1869881446,1768038511,151653735,544238947,1999403105,543453807,544371824,1567188059,1380994862,1848525902,841706869,1778977293,1629513070,154154351,1718172425,1869575200,1734959648,1829308941,1629517423,1230187628,1497522010,168641876,1818321673,1633755244,1668966771,151612264,1701339963,1948281699,544498024,1702521203,540884256,1919885360,168636704,1987013897,745038112,1702132066,1920233504,1768184608,1347366493,776228434,728593774,151653680,544632685,1685221239,1920233504,1768184608,1347366493,776228434,1634563438,1630299236,1933248888,1701998452,1852140576,543716455,825176104,539697193,543516788,1702132066,1829308941,1528854127,2016307553,1684300152,1680629106,1628048745,1701994351,168639092,1952805385,168626701,757935419,1599098656,1397704787,757094985,1919903264,1948280163,1965057384,544367987,1679847284,1634493285,1948280178,1931502952,543521385,1948280431,1847616872,544503909,1919250543,224685665,1628048650,976499823,1946749453,544502629,778658139,1718772086,1936154988,1096166493,1230200658,1162764122,168641605,544893449,892628833,990447904,1847617129,1702109295,1852404851,1701716071,544433253,1646292852,1868832869]},{"sector":7,"length":512,"data":[168650094,1936028681,1633362036,1635135081,1634494066,744321895,1599226198,1599752531,1314277703,1778977293,1868636282,153104437,1718172425,2053731104,1635197029,1768366195,544105846,1027416104,1701978174,1952671082,1628048681,976565359,1627982349,1528849518,1982753121,1818653281,1567844193,1953459756,1380013600,1514754911,1447642975,1664813390,1918985580,1701344288,1634493984,151653735,544238947,1702132066,1920233504,1769167648,1347365981,1296910687,151653688,1629513066,1630876783,1765476617,1347362918,1296910687,1936269368,2019913248,1948265588,544105832,661548900,1702043764,1096163444,1230200658,1162764122,168641605,544370441,778658139,1718772086,1936154988,1096166493,1230200658,1162764122,168641605,892628833,168639073,1987013897,1954112032,1953505381,1633362034,1886334569,1702521203,221260893,1869613322,2019631216,990447881,1668508004,543453793,1970562418,1629515378,1701995620,168653683,1886218761,811819296,990447926,1954047342,1701867296,1684955506,168626701,757935419,1599098656,218762545,879714570,168639030,1886216969,1919907616,1953505380,1683693682,1563896681,825241900,1664819304,1801676136,1953456672,1769152616,1629513082,1981834350,1702194273,1778977293,1629515885,154743919,1702116105,1763734643,1634476148,225600884,990514442,539831597,861884495,168626701,926183265,151653690,544238947,1685221239,1920233504,1768184608,744306475,1748054067]},{"sector":8,"length":512,"data":[1751333664,543908709,1752461154,2053731104,1851859045,1635131492,224753004,1835665674,1868636272,151599412,1936028731,1953046644,1952541728,168653413,758843917,1327508781,1480875856,1347362860,743195487,1599098656,539776083,1163874383,773860435,539766318,1197428815,990514515,539831597,1663072354,1635020399,544435817,1701080681,1868963960,1768038514,1650553972,168626701,942960481,151653690,544632685,1529637985,1601008481,1852269938,1647013237,1093152120,1331645779,1179012944,1327508256,1480875856,1327508768,911040336,841951540,151653725,225927779,1835206922,2019631216,1919907628,1953505380,1683693682,1328438633,1145983568,1734701614,218762545,879714570,168639033,543517193,1918857057,168653925,758843917,1377840429,1667590757,1752440948,1864397673,1634887024,1814062190,779383657,168626701,808808289,151653690,544239472,151615585,1768176393,1918985075,1701978212,1852994932,1684300064,1936942450,1778977293,1629515885,154218595,1869036297,1667326496,1869881451,2037543968,1701344288,2019913248,1818304628,1852990836,1986622561,218762597,757938954,1094787117,1129990483,757091144,1701331744,1948281699,544498024,543516788,1702521203,1986619168,1763733093,540024947,1092645487,168635980,1633749517,1668966771,221932392,1835206922,1683693680,1328438633,1145983568,2053731118,1735549285,1514754860,1313820255,151653701,1629513066,1701994351,151653748,544238947]},{"sector":9,"length":512,"data":[1567188059,1380994862,1932411982,1634040425,1630300018,151653740,1629513066,1701994351,151653748,544239472,151615585,1768176393,1918985075,1701978212,1852994932,1684300064,1936942450,1778977293,1629515885,221263215,1628048650,1852121185,168652900,758843917,1142959405,1701978223,1701654375,1919950957,1936024431,1735289203,990514478,539831597,540700265,1043155268,1314017359,990514500,539831597,1936028501,223887648,1628048650,540031343,1668248176,1946749453,544502629,1567188059,1380994862,1714308174,1936154988,1379999788,1430937415,1163023443,151653703,544894570,842624865,1765476617,1969889382,1914729587,1936287589,225600884,1702103306,1528853619,777873764,1314017359,1818635844,745760609,1196572960,1146047839,168643922,544893449,151602752,1718172425,544173600,1667592816,1970302319,543450484,541347661,541929298,1702132066,1829308941,1629517423,1870081144,1881171058,1528853108,777873764,1314017359,1701981764,991965543,544499047,543516788,1667592816,1970302319,543450484,1702132066,151653747,544238954,859402081,1681590537,224751215,977289226,1829308941,1629517423,154545260,1868774153,1919252078,1819287668,544106849,1886611812,1701011820,1953391981,544175136,541347661,223162194,1702103306,1528853619,1601008481,1717530221,1936154988,1296116829,859922246,151653682,1629518442,540227951,1765476617,909189222,1953063469,1684300064,1936942450,224882281]}]],[[{"sector":1,"length":512,"data":[1701054730,2019631203,1778977293,1629515885,154351983,1868839689,168650094,1868630541,221917753,1869416714,1818304630,1768184620,1347366493,776228434,828859762,1868774153,1919252078,1701978228,1953720679,1948283493,1330454639,793911364,1762266445,221323366,1835206922,1818304624,1195725356,223169887,1852442890,1178607738,1829308941,1629517423,1683696748,1328438633,1145983568,1734701614,1074400562,168639040,1768189541,151653734,543452769,925658209,1731922185,1814066277,857765743,1953063456,151653747,1629516399,1664101484,168650800,1868630541,221918009,1919879434,1919907616,1953505380,1633362034,1701981801,1835363687,2019634269,1953708809,543519343,543516788,541347661,541929298,543452769,222447955,1919879434,1767988000,1918989870,1734437990,1445748083,1298092609,1297237071,1818639113,1763731297,1881174900,1702061426,224748398,1869416714,1633362038,1836199529,1919181921,1768172637,1933248777,543520353,1869619297,1702129257,151653746,158623090,990447881,1701736292,1868630541,1696608313,225469550,990514442,1092624416,1313229121,757091669,1952793632,1768780389,1763730798,1752440934,660959845,543236211,1651340654,1847620197,779384933,540740109,1850023968,544830068,1279336480,1919501856,1663071347,1634885992,1919251555,543584032,1651340654,168653413,538970427,1230184480,1684291872,1936942450,543584032,1954047342,1634231072,1952670066,1864397413,1970151526]},{"sector":2,"length":512,"data":[1919246957,540740109,2017796128,538997865,1497571360,1701593888,1763734113,1752440934,660959845,543236211,1651340654,539783781,544499059,1701344367,1936291698,168636005,538976315,1936028501,538976288,1701736270,218762542,1767989514,1836412518,1869770784,151653731,544238947,657222753,168634157,543517193,845767009,990447904,1830839913,1937075817,1734964000,1663574126,2037543521,544434464,1634036835,168634738,1937076233,2019631208,1929972237,1629512309,807873644,151653671,544238947,824994913,151653680,544239472,168654945,543320585,828989793,990447904,1629513321,1734960160,168653929,1937076233,2019631208,1627982349,1629512814,1330916460,1162891349,151653714,543323507,657222753,168634177,1886216969,745300256,151653686,544239472,168654945,828989793,151653690,157511011,1664813321,2037543521,1701602080,1008759393,540949821,1931965545,1847615776,1700949365,1628048754,976382305,1913195021,168653925,1718182241,544044398,1885630053,168626701,538976315,1162297665,757090644,1952794400,1847615776,1700949365,1919295602,1948282223,1763730792,1953853550,1852402720,168636005,538976315,1920233029,538976377,1176521793,1953722985,1634231072,1952670066,1864397413,1970151526,1919246957,154864141,538976288,1092634963,1701995620,1864397683,1701716070,1663071352,1634885992,1919251555,543584032,1651340654,168653413,538976315,1953069125,538976288,1111119940]},{"sector":3,"length":512,"data":[1699881048,1953265011,543649385,1651340654,168653413,538970427,1279467552,1763717408,1953046630,1629516583,1954112032,1953505381,840969330,543582496,1870078049,539780210,1718165556,1679843616,1685221239,154864141,538976288,1310739521,544503909,1918986339,1702126433,1869488242,1852383348,1836412448,225600866,537475850,1394614304,1681989705,1936028260,1718558835,2019913248,1751326836,1667330657,544367988,1702127201,1752440946,168653921,538976315,1936028501,538976288,539772993,168642627,1633749517,1769235815,1869770784,151653731,544238947,657222753,168634157,543517193,828858721,990447904,1847617129,1952540517,224753257,1633880330,1629514860,154429281,1701264137,1752440948,1633820773,1847616882,1700949365,151653746,544632685,824997987,1933248777,1965061221,2019762288,1862863373,2019827826,225993772,1852442890,1633755258,151597671,543582523,1919907684,151653732,1646293615,1751264360,1778977293,1629518446,154363745,1718172425,1919907616,151653732,158623090,1765476617,544417652,2036473953,168650100,1633749517,221917543,1869351178,224555876,1633880330,1629514860,154429281,1701264137,1752440948,1633820773,1847616882,1700949365,151653746,544632685,1647081571,151653752,1663070831,2019830904,1829308941,1663071855,221326456,2053769482,1734435104,151609649,543582523,168636461,1953459721,158884896,1849362697,1952540517,1752440933,1851859045,1919252339]},{"sector":4,"length":512,"data":[1846086157,1646290789,151653752,224619875,1684080906,2019827811,168636460,1936028681,1751392372,1747990572,1778977293,1633755258,1700755043,151614066,543582523,1869771365,151653746,544238947,757889124,151653681,543518314,845635937,1765476617,2003050598,224686703,1702103306,1646294131,808987752,151653736,1629518442,540174177,1765476617,2003050598,224686703,1835206922,1751261296,221326636,1852442890,1633755237,151597927,543582523,1685221239,1946749453,544502629,942435426,168650800,544893449,862413153,990447904,1998612073,224686703,1734435082,221929777,1701972234,151587188,661940539,543236211,1702132066,168626701,845635937,151653690,543387241,151615587,1701985033,1852994932,1763713082,544417652,2003050593,224686703,1852377354,2019762275,1633749517,221918055,1852377354,2019762275,990447881,1970562418,540700274,661940512,543236211,1685221239,1913195021,168653925,1633749517,221918311,1870137610,2019696754,158884396,1701264137,1752440948,1633820773,543385971,1702129257,225600871,1870137610,2019827826,225993772,1633880330,1730178156,2037281893,151653730,1629512554,1601594209,158495333,1718172425,1953459744,1746952480,1679849573,1953064809,1633749517,221918567,1919879434,745300512,151612513,1684300091,544500000,1948282740,1847616872,1700949365,151653746,1935961964,151653730,1819042147,1952802592,224557422,1667893514,1734435104,151609649]},{"sector":5,"length":512,"data":[543582523,1701736292,1946749453,544502629,808216676,224931942,1852442890,1633755258,1700755043,151614066,543582523,1919252079,2003790950,1829308941,1663071855,221523064,1734435082,168639030,1818784521,746086944,990447921,1718184051,1953046644,544825888,151653684,543974258,824997988,1812531725,544239471,912744801,1778977293,1629515885,221603681,1628048650,1952802657,1852121193,168652900,540740109,1094787104,1447972675,1162104393,539828312,1986948931,544502373,1970496882,544437356,1836020326,1195458848,541676613,543452769,1919906931,1852383333,544761188,1970037110,990514533,1159733280,2037544046,1142956064,1480735320,541868844,1763734337,2019893358,1713402985,544042866,1162297665,168642900,538970427,1229201440,1768902688,544437358,1763733364,1919903342,1769234797,1914728047,1919902565,1868963940,1752440946,1629516649,168650610,538976315,1953069125,538976288,1646285651,544437353,1919906931,1763730533,1683693678,1328438633,1145983568,1684957486,168654949,538976315,1936028501,538976288,168643652,1633749517,1986948963,1701080681,1919950968,168649583,1886216969,745300768,151653681,543518314,1986224481,1920099679,1765476617,1752440934,1970151525,1919246957,544434464,544173940,1735549292,151653733,544238947,824994914,1778977293,1633755237,154302051,1718172425,168636704,1668180233,225993760,1835206922,1818370160,168636972,543517193,1986224481]},{"sector":6,"length":512,"data":[990447922,840984169,1762200077,1679844206,151653752,544238947,875326562,1778977293,1633755237,154302051,1718172425,168637472,1668180233,225993760,1835206922,1818370160,168638508,543517193,1986224481,990447922,941647465,1633749517,1700755043,976908914,1778977293,1663070317,1700750445,1919906418,1698367753,1919906418,168626701,1986224481,168639026,1987013897,1768184608,1347366493,776228434,1701080681,1818504312,1634941728,1948280182,1981834600,1702194273,1913195021,168653925,1868783969,1852405358,544761188,1885630053,168626701,538976315,1162297665,1195725396,1193291040,1914729573,1936287589,544367988,544370534,543516788,1702064993,1701601901,168636018,538976315,1920233029,538976377,1394624836,1953653108,543584032,1768383858,1919251571,1650553888,168650092,538970427,1480794144,1852132384,543716455,1914725999,1936287589,544367988,1818386804,539500645,807432815,168634656,538970427,1230184480,1684291872,1936942450,543584032,1936877926,1751326836,1667330657,544367988,1914728041,1936287589,544367988,1701667182,540740109,2017796128,538997865,1129193504,543582496,1701978209,1953720679,1998615141,1713402721,1684960623,154864141,538976288,1428179283,1952539760,1763730533,543236198,1768383858,1919251571,1935767328,1970234912,168649838,538970427,1480728608,1734693408,1702130537,1970151538,1919246957,1701060652,1701734758,1935745124,544106784,543516788]},{"sector":7,"length":512,"data":[1818386804,1700929637,779579244,540740109,1934958624,538997605,1480663072,1480794156,1229201452,168626701,538976315,1953069125,1818326560,1864394101,1480728678,990514490,541672457,1735532605,946692462,539768369,1025529923,154612256,1025526084,1852273184,909208929,1480794156,941636896,154864141,757935405,757935405,757935405,757935405,757935405,755576109,757935405,757935405,757935405,757935405,221064493,805911306,774774816,976691232,1279336480,539897376,805914690,774774816,976691232,1480663072,539897376,168642884,540543291,539897376,540685617,542654752,1142959662,909183305,539897376,540685106,1480672544,1145384494,990514505,540422409,840969774,538982963,777535813,1229210926,154864141,773862450,959586350,1159733306,774774867,223561504,856242954,774774832,976499488,1414733856,539897376,168645204,1633749517,1920230759,1881171813,224620402,1869416714,2019631222,1769167660,151653725,543452769,1412200545,1347441999,1465864773,1868774153,1919252078,1869881460,1886418208,1663070821,224752481,1835206922,1818304624,658843436,1664813321,1801676136,1919903264,1480672544,1952784428,168636003,1701734921,1734435104,151597426,543582523,225734510,1970276618,1629513843,151653752,544632685,1630301281,151653736,544632685,1529636961,841705843,151653725,543452769,1412196449,1347441999,168645189,1937076233,1768169576,1829308941,1679849071]},{"sector":8,"length":512,"data":[1718561897,1952805734,1852273184,909208929,1879640589,543716213,168654947,1987013897,746087200,1163026254,909202247,1913195021,1701736549,1633907488,168654707,1987013897,746086944,168654947,1886351369,225993504,1869613322,1768169584,1879640589,1629515887,151653752,543518314,1919377761,990447921,1847617129,1634541679,224945012,1852377354,1769152611,1846086157,1646294127,151653752,543450209,942435426,154546475,1684093705,1953723754,223887904,1835665674,1633755248,154301031,1768307465,1752394094,225473824,1628048650,829581153,151653690,544632685,1663858786,990447992,543582504,1025538147,539766816,1936287860,544434464,1635216481,1914729337,1751343461,1998611557,224949353,1701972234,543518320,1935762291,990447991,541481504,1634036835,168634738,1701734921,1734435104,151597938,543582523,1830842222,1751348321,1929972237,1646289525,2019765368,1678313997,1646289765,151653752,544238947,824994914,151653686,1629512298,846358369,1765476617,1279336550,539897376,1864386626,1480663154,539897376,168642884,1684300041,745300512,1628048696,846358369,151653690,543387241,151611763,1802713865,1948282985,1914725736,1936287589,544367988,1701667182,1762200077,1931502446,151653737,224619619,1701972234,1628048756,863135585,151653690,157512819,1849362697,1713402991,1684960623,1913195021,168653925,1701273953,1734701684,1684956448,218762608,757938954,541270061]},{"sector":9,"length":512,"data":[1835888483,543452769,1868767277,1918988397,2036473957,779314548,168626701,1881170787,224620402,1633880330,1881173100,1702064737,151612771,1918988347,1629513075,1836410738,1937010277,1702045728,1142977396,795163219,539781491,1698321221,745104431,1664050464,168634744,1059087977,168643920,1886216969,980640544,1682006619,842232420,221260893,2053769482,858465312,1678313997,909516898,1765476712,1696621422,168654947,1768189541,151653734,543387241,168654947,976315235,151587081,757939259,1868767277,1852404846,1663067509,1634757999,168650098,1937076233,1935941736,1879640589,543716213,168653669,1937076233,1936924776,990447904,1144877924,1431261767,151653712,544239472,168653668,1818321673,1868832876,1801675112,1933248777,1679848549,1735746149,660956519,1852383347,858923124,221524527,1869613322,1936007280,1879640589,1679847535,218762611,543582474,223170623,1835206922,1935876208,1096964922,863134820,808213810,1778977293,723787898,151653683,908092004,151611447,1701985033,1663067504,1651732589,980640800,1769170267,1936010333,1684364090,168648041,1768189541,151653734,1701864818,1886216992,168649331,1751215113,1762266470,1346314342,151653709,544238947,1530557283,1684291938,1563571058,168636460,544893449,221457188,1650723082,1748448800,1869429513,1818501238,1936022316,1563503977,1852115469,224815460,1869416714,1818501238,1769167660,157102381,1634941705]}],[{"sector":1,"length":512,"data":[1948280182,1881171304,1769173871,544828514,1634890341,1663071342,1634885992,1919251555,1762266483,1346314342,151653709,606108266,168637227,543319049,157824822,1987013947,745038880,1530557285,761881701,168647985,1768189541,151653734,544632685,1697409124,1683700339,1563503977,1879640589,543716213,168653668,1937076233,1936007272,1879640589,543716213,168653683,1886351369,225666080,1633880330,1965059180,1667328110,990447979,544499059,1969382756,1919248231,1763734311,840987758,875704115,1879640589,1696624751,151653747,544239472,168653668,1751216905,151653734,1663067498,151597667,1718172425,660961056,1679844722,224751215,1970276618,1663068275,151653752,1752397168,225666336,1970276618,1931503731,151653747,544239472,168653669,2053731081,1718775909,990447960,544632685,746087013,225010789,1869416714,2019696758,157901868,1634941705,1528849782,1229217093,1829308941,1679849071,1718561897,1952805734,1852402720,1970233189,151653748,544632685,1680636001,151653747,1819042147,2019911712,1685221239,1829308941,1629517423,975645804,151653671,1936684147,1762266466,1346314342,151653709,544632685,1865183330,1702061670,1701322868,1919907704,151653732,1702521203,543584880,1681590537,1696621413,168651123,1667589129,225014560,1769146634,1919968634,151593062,1987013947,2019648800,1769170220,1829308941,1629517423,1769155704,1929972237,1885698665,153118322,1852390153]},{"sector":2,"length":512,"data":[1936007267,151653737,543387241,168651123,1886216969,980640544,1682006619,842232420,221260893,2053769482,222707744,1869416714,1885479030,1717989164,544499059,1685611880,1685221239,1077938701,151653690,1819042147,225468960,1936483594,151653733,543253868,1529641057,825059699,151653725,1819042147,2019911712,1685221239,1852115469,224815460,1869416714,2019631222,538978092,151653671,1936684147,151653751,544632685,1680632929,151653740,1819042147,2019911712,1702132066,1829308941,1629517423,539438200,168634144,1869902601,168654707,1987013897,745300256,168650852,1818321673,1701322860,1954112120,151653733,544632685,657225825,220667936,1953696010,225932143,1869613322,2019631216,1879640589,543716213,168654945,1818321673,1701322860,1919907704,151653732,544632685,657222753,168634170,1869902601,168649331,1059087977,168643920,2053731081,1718775909,990447904,543384932,225993317,1701054730,2019696739,1929972237,1885698665,153118322,1869429513,1634017398,1650797688,151653752,544632685,1647081569,151653752,1702521203,543584880,1765476617,1696621422,168654946,1668180233,225993248,1633880330,1646292076,1695157616,224752492,1701579018,2019631201,2019711788,224211245,1633880330,1746955372,1870100581,168649842,1768189541,151653734,1752397168,225666080,1970276618,1931503731,151653747,544239472,168653668,1937076233,2019696744,1661536781,543976545,1937012080]},{"sector":3,"length":512,"data":[1701734764,1879640589,1679847535,151653737,544239472,168653668,1886351369,225666336,1869613322,2019762288,1718159885,1297104672,1661536781,1663070317,1650145907,1919181889,744305203,151653680,606108266,168637227,543319049,157824822,1667590715,1663072888,168637027,1768189541,151653734,2054710122,845374240,1778977293,1663070317,153104739,1718172425,1953459744,1852793888,1702436965,1661603188,221917795,1970276618,1931503731,151593075,1936028219,1701998452,1734701856,1953391981,1734701600,1702130537,168653682,1886351369,225666080,1970276618,1931503731,151653747,544239472,168653669,1952805385,1667435021,1684956448,218762608,543582474,223170623,1124732170,1414745679,1734701856,1953391981,1701054989,1633837939,1679844723,539435106,1702060386,1061109565,1061109567,1768693823,1031039341,1061109567,1061109567,1953784096,1061109106,740769599,1124732208,1414745679,1684956448,218762611,757938954,1279533101,1836016416,1684955501,168626701,1668506980,544503151,1668248176,772344333,221657138,1633880330,1931504748,2003855723,1702127976,1661536781,543976545,2004116839,157577839,1701264137,1870078068,1763730546,544175214,168646724,1987013897,746086944,168654948,1818321673,1802707052,1868787817,221277549,1869416714,2019827830,168636716,1886216969,745300256,168645187,544893449,168642112,1818321673,1701257324,1919907700,151653732,1819042147,1802003232,225210213]},{"sector":4,"length":512,"data":[1851853066,2019827812,225993772,1852442890,1178607738,1762200077,1679844206,1074400632,168639040,1987013897,745108256,151615588,1986097979,1868767333,225734261,1633880330,1763732588,225276019,1852442890,1701716090,1701082232,168649587,1987013897,745108256,1936090735,1847620709,1970500719,168652912,1987013897,746087200,1702521203,1847617135,1970500719,168652912,1885696521,1987013920,168649331,1987013897,745108256,1936090735,1914729573,1735617901,1661536781,543976545,2037411683,1769108595,168650606,1886218761,1953853472,1852402803,1678380389,1600353125,1701736292,151653690,225731954,2019913226,1936024692,168639075,1667589129,225014560,1936328970,1936024608,1868848995,168650094,1987013897,745104416,1936090735,1814066277,1600482921,225736047,1869416714,2019631222,225993260,1633880330,1746955372,1870100581,168649842,1937076233,1769152616,1879640589,543716213,168651108,1987013897,745108256,1936090735,1679848549,1650684773,224752481,1633880330,1663069292,1937338479,1852404340,151653735,544239472,168651108,1886351369,225014560,1869416714,2019631222,168637996,1953392905,1748054816,1778977293,1178607715,1627982349,1679844452,221654121,1869416714,2019631222,225993516,1633880330,1746955372,1870100581,168649842,1987013897,746086688,168654948,1818321673,1701322860,1919907704,1074400612,168639040,2053731081,1718775909,990447904,543978348,746086757,225993317]},{"sector":5,"length":512,"data":[1936460042,2019631212,225993260,1852442890,1701060730,1868522355,168653941,2053731081,1718775909,990447904,544366956,746087525,225993317,1634470154,2019827826,225993260,1769146634,1919968634,151593062,1919447867,2019845408,168638508,1919447817,746087456,151653688,544632685,1865181540,1702061670,1768693876,1868522862,841708661,151653685,544238947,1667329371,1701734760,221457501,1651116298,222707744,1633880330,1746955372,2003073125,224686703,1835665674,1701060720,1868522355,1074400562,168639040,1818321673,1701322860,1919907704,151653732,544632685,657225825,220667936,1953696010,225932143,1953696010,225932143,1936024586,846159715,151653690,544632685,1865181540,1702061670,1768693876,1868522862,841708661,875637557,1829308941,1629517423,2019830904,1661536781,543976545,2004378984,224686703,1936024586,1970233187,168639092,1987013897,745104416,1936090735,1814066277,1600482921,729052527,824915250,221522740,1970276618,1646291059,151653752,1819042147,1953853472,1852402803,151653733,544239472,168654946,1684300041,746086944,151653688,544238954,1954047342,1668506980,1701054989,1970234227,1852121204,168652900,758843917,1142959405,1868767305,1851878765,218762596,1952540426,1953853285,1869770784,151653731,1819042147,1768649504,1768454000,168650100,1818321673,1701257324,1954112116,990447973,544499047,1702132066,1953392928,1279533167,1829308941,1646294639]},{"sector":6,"length":512,"data":[2019830904,1661536781,543976545,1885956979,1835888483,151653680,544632685,824997988,1661536781,1629515885,1380133996,1778977293,1178607738,1661536781,543976545,1651795303,157643897,1701264137,2036473972,1763730804,544175214,168643652,1818321673,1751326828,1819239787,1627982349,1679844462,2019830904,1778977293,1075870318,151653702,543387241,151615588,1852128009,1701999987,1634235424,1868767348,544501365,1042314089,168636448,221921344,1633880330,1881173100,1752196466,225141601,1869416714,1769152630,158884908,1634941705,1663067510,1953396079,1634142733,1970234740,808476532,151587130,757939259,1701716013,1763734648,1697608814,168649592,1818321673,1868832876,1801675112,1933248777,1679848549,1735746149,660956519,1852383347,858923124,221524527,1869416714,1768169590,1717989164,544499059,1701734764,1953853279,1829308941,1629517423,1818373228,1661536781,543976545,1652057448,224752761,1869416714,1818304630,656418604,1929972237,1651732340,1661536781,543976545,1836086121,1778977293,1634148474,1836213620,772344333,221657138,1869416714,2019631222,808595500,168650804,1886216969,745300512,224931890,1684080906,1751261283,168636716,1702125927,1601467759,221917488,1852377354,825434228,151653736,1730175850,1717924961,1701603681,151653732,544632685,1663858785,151653752,1819042147,2019911712,1685221239,1829308941,1629517423,975645804,151653671,1936684147,151653730]},{"sector":7,"length":512,"data":[544238947,1836082267,1563571049,168636460,544893449,1702125927,168638001,942878217,151653686,1684826227,2019648800,2019845420,221655340,1633880330,1746955372,1870100581,168649842,808988169,168638008,1702125927,221918769,1869416714,2019631222,225993772,1633880330,1746955372,1870100581,168649842,1987013897,745300256,220667943,1953696010,224555887,1869416714,2019631222,808595500,168650802,1667589129,224944672,1852442890,1634148474,1970234740,825253748,1634142733,1700750708,980707704,1661536781,543976545,1634233973,151612259,1952805691,1650811936,1701275509,544417650,544501353,841954098,151653684,1752397168,225993248,1633880330,1881173100,1819505781,224751209,1869613322,2019696752,1762200077,1646289774,151653752,543384932,168651123,2054056457,1952540448,1953853285,221261919,1701972234,1728712052,1919251553,168639085,1987013897,745300768,151653682,1752397168,225993248,1752369418,2019696748,225207084,1970276618,1679845491,151653747,544370552,1630304353,151653752,544632685,1630303076,151653752,544632685,1529641057,841709666,151653725,544632685,1529641060,808155234,151653725,544239472,168653668,1886351369,225993248,1633880330,1746955372,1870100581,168649842,1987013897,745300256,220674599,1953696010,224555887,1869416714,1751261302,168636716,1886218761,1952540448,221655397,1952540426,1767990885,979658092,1829308941,1679849071,1718561897]},{"sector":8,"length":512,"data":[1952805734,1852402720,1970233189,151653748,544632685,1865181555,1702061670,1634148468,1920427380,224882287,1633880330,1663069292,1937338479,1852404340,151653735,544632685,824994163,1778977293,1730179181,1600484449,1953069157,1634142733,1970234740,1852121204,168652900,1768189541,218762598,942541066,221657136,1829375242,1970233955,1919950964,168649583,1685023753,168649331,1818321673,1751326828,1819239787,154864141,544632685,1865181540,1702061670,1768693876,1868522862,168653941,1987013897,746086688,659575591,1929972237,2004053876,1829308941,1629517423,975645800,151653671,1936684147,151653751,544632685,1529641057,1685091184,224224610,1633880330,1746955372,1870100581,168649842,1818321673,1970282604,1768715124,168650094,1829308941,1931507311,2002463849,1564623693,1701710349,1668117624,168639074,1987013897,745104416,1936090735,1814066277,1600482921,225736047,1970276618,1679845491,151653747,1819042147,1952805664,1932686180,151653737,544632685,1932294241,151653737,1819042147,2019911712,1685221239,1933248777,1701668709,1629516910,1701995620,1864397683,1129128038,151653698,544632685,657222753,168634144,1869902601,168649331,1987013897,745300256,1530557284,168647984,1937076233,2019631208,990447904,1702257011,224684320,1633880330,1746955372,2036496485,151610740,659367739,544370464,220682791,1869416714,1818304630,656418604,1929972237,1651732340,1829308941]},{"sector":9,"length":512,"data":[1629517423,1935944824,1563515706,1866139913,1919250039,1886613536,1829308941,1646294639,2019634296,1661536781,543976545,2004378984,157577839,1129134857,2003771458,225600878,1869416714,1818304630,656418604,1929972237,1651732340,1829308941,1629517423,1935944824,1563646778,1648036105,1801678700,2053731104,151653733,544632685,1630304356,151653752,1819042147,2019911712,1685221239,1295714569,1931493955,543521385,1881173609,1734439521,1752195442,151653747,544632685,657222753,168634144,1869902601,168649331,1684955401,746086944,168654946,1668571504,1835687784,1634476144,543974754,1702132066,1882917129,1751348321,1953068832,1111826536,1932009576,1953656680,1836411424,1763715440,1329864806,540155987,857764463,1778977293,1668096122,1718839650,224748914,1970276618,1679845491,151653752,1752397168,225014560,1869416714,1769152630,168638508,1987013897,746087200,151653682,544238947,1932294242,990447977,1763734377,543236212,1953724787,1293970789,1059078723,1778977293,1701716090,1668117624,1634231138,151653746,543384932,168654946,1818321673,1702043756,846423156,151615586,1936024635,2037346932,2019762291,1684955424,544760864,1763731049,1836064878,1829308941,1663071855,221785208,2019913226,1650683252,1918986339,151587130,1886348091,1634607225,1864394093,2003771494,544367982,222446413,1869351178,224555876,1953696010,224555887,1851853066,1818304612,225206572,1869351178]}]],[[{"sector":1,"length":512,"data":[2054058095,2019913248,1650683252,1918986339,1879640589,1931505775,151653737,544239472,168654948,1768055661,1701996147,168639077,1886351369,225992992,1869613322,1935941744,1627982349,1931502692,2019830889,1778977293,1668096099,1953853282,1852793951,151653733,543387241,168651123,1886216969,745300256,220679463,2053769482,222707744,1835206922,1818304624,660219692,1778977293,1830845038,1970233955,1868849012,168650094,154812480,1819042147,1953853472,1852402803,151653733,544238954,1954047342,224551789,1930038538,1935963237,979989298,1829308941,1646294639,1769155704,1702038029,846423156,221935714,543582474,223170623,1633880330,1763732588,225276019,2053769482,845443872,2019909491,1829308941,1679849071,2019699832,1661536781,543976545,1920230771,1734701933,1930038637,1601385060,221935717,1684956426,168650345,1987013897,745759776,168654946,1868718957,1683977333,979725935,1913195021,168653925,1868718957,1696625781,225469550,990514442,539831597,1663064132,1634561391,539911278,1886611780,544825708,1702131813,1684366446,1835363616,544830063,842020904,690697784,168626701,1142974057,1347769176,151653712,909652526,2019887629,1835363700,1869770784,151653731,1819042147,1768649504,1768454000,168650100,1886216969,745300256,168645187,544893449,168642112,1818321673,1701257324,1870095476,151610482,1952802619,1852402720,544366949,1919181921,544437093,1869901417]},{"sector":2,"length":512,"data":[980967968,168654948,1818321673,1751326828,1819239787,1698367753,1667592312,1852121204,1718558820,1852402720,1701322853,168650098,1987013897,1919907616,1953505380,2019238002,1684300127,1563437938,225993772,1869416714,1870078070,1881171058,1528853108,1684103032,841708132,2019699805,1077938701,151653690,544632685,1935764571,1684890484,1718561885,1952805734,1954047264,225273197,1869416714,1768169590,1717989164,544499059,1701734764,1953853279,1919105801,1702125925,1193304352,1713394756,1226863215,824210542,539781173,943548513,168650807,1919907849,746086688,168654945,1987013897,746087200,151598130,1768843579,540418164,1668506980,1953524082,225669743,1701972234,1953702000,225932143,1970473226,1768169570,942289964,1829308941,1629517423,1178020972,151653736,1936684147,151587191,1734701883,1953391981,1835625504,168653929,1987013897,746086688,1685221239,1920233504,1601723168,1919181921,224210987,1953696010,158823279,1648036105,543519585,1919181921,544437093,168652652,1987013897,745300256,1702132066,1920233504,1601723168,1919181921,224211499,1953696010,157447023,1648036105,543519585,1919181921,544437093,224684397,1869416714,2019631222,1748187436,1929972237,2004053876,990447881,1668506980,1953524082,1713402479,1936154988,1829308941,1629517423,2036477036,1881171316,1528853108,1684103032,858485348,151653725,1936684147,151587170,1935761979,1684086885,1936028260]},{"sector":3,"length":512,"data":[1768431731,1829308941,1629517423,1178020972,151653736,1936684147,151587191,1734701883,1953391981,1835625504,168653929,1987013897,746086688,1886613595,1567056484,1829308941,1663071855,909192300,1829308941,1663069301,151653752,543450209,1865185377,1702061670,1768693876,1868522862,824931445,168638514,1667522825,746087456,151653680,1936684147,151587191,1935761979,1684086885,1936028260,1869357171,1829308941,1629517423,1818504300,1829308941,1629517423,859384936,151653736,1936684147,151587191,1935761979,1684086885,1936028260,1768759411,1851859044,1701060708,1769104243,1919906928,1634493984,168653671,1987013897,745108256,1936090735,1814066277,1600482921,225736047,1869416714,1818435702,221525548,1869416714,1751195766,1748449324,1718159885,1297104672,1661536781,543976545,1836086121,1778977293,1178607738,1762200077,1802466926,1852383333,1818321780,824192108,539781173,1530557283,1685091184,224225122,1835665674,828973168,225144629,977289226,1852115469,224815460,1852377354,892412020,1762266472,1802450225,151653690,1696621418,1701672056,2019909485,168653929,1987013897,745108256,1936090735,1814066277,1600482921,729052527,221786673,2019913226,1852402804,168639077,1987013897,745104416,1936090735,1814066277,1600482921,225736047,1869416714,2019631222,1919907628,1953505380,2019238002,1684300127,1563569010,1661536781,543976545,2004378984,224686703,1869416714,2019631222]},{"sector":4,"length":512,"data":[1919907628,1953505380,2019238002,1684300127,1563437938,1661536781,543976545,2004378984,224686703,1869416714,2019631222,538978092,151653671,1936684147,151653751,543253868,1529641058,858483044,1563832618,1829308941,1663071855,909192312,1701710349,2036495480,221930868,1869351178,224555876,1869416714,1751195766,657336108,1661536781,1629515885,539438188,151653671,1075864170,151587174,543582523,1953394531,543977330,1918986339,1702126433,151653746,544238947,657222753,168634238,543255049,168642112,1987013897,745038112,168651873,221921344,1869416714,1650139254,1630297464,151653736,543387241,168654946,1818321673,1701322860,1954112120,151653733,544632685,657222753,168634144,1869902601,168649331,1869573129,1701716080,2036495480,168650100,1987013897,1954112032,1953505381,1683693682,942157161,824914730,657218857,990455597,1886611812,544825708,757538913,1717641255,544367988,2036473912,225666420,1869416714,1768169590,225993260,1633880330,1881173100,1819505781,224751209,1684080906,1870078052,1881171058,1528853108,1684103032,808153700,909192285,1627982349,1998611300,543453807,544371824,1633646683,728917092,808213810,1661536781,1931505773,1718561897,1952805734,1852402720,1970233189,892480372,151653686,1847616106,1819572325,224751209,1954047242,1601004909,1953069157,151653690,225731954,1954047242,544040301,1885630053,772344333,909652024,1852115469]},{"sector":5,"length":512,"data":[224815460,990514442,539831597,1868767300,1851878765,539828324,796419432,1768125281,1969496169,221147245,1678380298,1881171044,224620402,1835206922,1818304624,223494956,1852442890,1684283493,151593009,543582523,1629515361,1836410738,544501349,544432503,1702259047,1812598126,1685353313,221930596,1869416714,2019762294,1751529260,1634470413,1684305011,976314212,1829308941,1646294639,1683696760,1684300127,1563700082,1929972237,1885698665,156788338,1869429513,1684349046,1683696760,1684300127,168648050,1987013897,746087456,1633641563,1567777892,1664813344,1970302319,1914725748,1701277281,543584032,543699000,1965060719,1818850414,1684956448,543584032,1835492723,225734245,1769146634,1919968634,151607398,1987013947,1769170208,2019845420,1829308941,1931507311,2019830889,1627982349,1679844452,2019765368,1778977293,1679844206,153104996,1718172425,544173600,1919252079,2003790950,1829308941,1679849071,1714433144,1751541350,1778977293,1679847533,168637028,1684277773,168639025,1987013897,745038112,761885531,151608626,1936028731,1868963956,758259826,1953785196,1663070821,544433261,742999080,743195680,743261216,693650464,1627982349,1629512814,1330916456,1162891349,151653714,544238947,657221729,168634180,2054056457,828662816,168636767,544370441,1412197473,1464814671,168645189,1059087977,168643920,1886216969,745300256,220687399,1852442890,1178607738,1778977293]},{"sector":6,"length":512,"data":[1679847533,1868788581,168653941,221921344,1835206922,1818304624,661202732,1778977293,1075870318,151653702,544238954,1702125927,225736047,977289226,1852115469,224815460,543582474,1431525444,168644688,1886216969,745300256,220690471,1852442890,1178607738,1661536781,1528852589,1751343469,1566928489,168636972,543320585,168642112,1886218761,1954047264,225273197,977289226,1852115469,224815460,1835206922,1818304624,661464876,1778977293,1075870318,151653702,544238954,1868718957,168653941,221921344,1835206922,1818304624,660743980,1778977293,1178607738,1661536781,1629515885,1999055980,151653671,1075870314,151653702,544238947,657222753,168634212,2054056457,828662816,168636767,221921344,1869416714,1683693686,1567911270,225206572,1633880330,1931504748,2003855723,1702127976,1661536781,1629515885,1380133996,1778977293,1634476133,1684305011,990447972,1847617129,1918967919,1701672295,1998615662,1730179937,1852143209,168626701,1597072484,168639025,544370441,1412197473,1464814671,168645189,1886216969,745300256,220687399,1852442890,1178607717,1661536781,543976545,1885956979,1953065079,151653733,1819042147,1952802592,1685221239,1829308941,1663071855,2019830904,1778977293,544897123,1869771365,221342322,1633880330,1663069292,1868917608,990447980,1701869669,1696625763,1864393838,1768693862,1746953582,224752229,1701054730,2019762275,1778977293,1814065261,1685353313]},{"sector":7,"length":512,"data":[828335204,1919224333,1785884530,168639025,1886218761,1684890400,1920099679,168653423,1077938701,151653690,544632685,942438499,151611440,1717920827,1953264993,1852140576,224949351,1869416714,2019696758,1701993260,1915646823,224219972,1633880330,1730178156,1634890853,1483040622,1731922185,1629516901,1701995620,1914729331,1701277281,1953392928,2019696751,694495290,168654948,1818321673,1751326828,1819239787,1698367753,1667592312,1852121204,1718558820,1852402720,1701322853,168650098,1829308941,1528854127,1684103012,875262564,2019699805,1634941705,1931502966,1701668709,673215598,1936090735,1763734629,1634934899,543450486,1702125932,168634738,2053731081,1718775909,990447960,544632685,745108325,225993829,1869416714,1769152630,225993772,1869416714,2019827830,158884652,2019834633,1696611616,1629512814,1701995620,168653683,1778977293,1679847533,828322404,168626701,757935419,1918980128,1735289203,544434464,1701736292,1344282670,1953393010,1919510048,1814066291,778399337,168626701,976381028,1718159885,1346056224,151653709,1819042147,1886611744,151653741,1679850090,828322404,772344333,221657138,1702234378,1646293618,151653752,1679850090,828322404,1829308941,1646294639,1918577784,779315045,1565738098,1829308941,1528854127,1684103012,875262564,2019699805,772344333,909652024,1852115469,224815460,845440010,221917535,1869416714,1817911414,1668576097,744318061]},{"sector":8,"length":512,"data":[1936090735,1814066277,1685353313,168649828,1987013897,746086688,1633641563,728917092,168647988,1818321673,1701322860,1919907704,151653732,544632685,657222753,168634170,1869902601,168649331,1987013897,746086688,168651123,1059087977,168643920,1919907849,745562656,168652898,1937076233,2019631208,1661536781,543976545,1937007975,1952541797,153121396,1952805691,542777459,1734437990,1879640589,1629515887,151653752,1075870314,151653702,543387241,168652898,942878217,151653686,1684826227,2019648800,1769170220,540422444,1480669961,1466517565,677671535,694776677,772344333,909652024,1661536781,543976545,2004378984,224686703,1869416714,2019631222,225014572,977289226,1852115469,224815460,990514442,1684955401,745300256,1748002352,1879640589,543716213,168654945,1818321673,1701322860,1919907704,151653732,544632685,657225825,220667936,1953696010,225932143,1869613322,2019631216,1812531725,1646289253,1683696760,707996521,224212529,1829321482,1646294639,543519865,544371824,762864219,657218865,168634144,1818321673,1919950956,1634234469,151612259,1952805691,544240928,544370534,1768644966,1763731310,1981838446,1869898597,840987506,1851858995,875700324,168626701,757935419,1634492960,1948281710,1931502952,1953653108,543584032,543516788,1701734764,543582496,1936090735,1763734629,1948741235,1918988320,1818304609,1701734249,218762596,862217226,990514490]},{"sector":9,"length":512,"data":[1886216969,746086688,151611763,1768649531,1869881456,1936683040,1869182057,1852383342,1852402720,990514533,543517193,154428516,1765476617,1702305894,543519271,1919248500,1702436965,990514548,1937076233,2019631208,154864141,544632685,657225825,220667936,1929984778,2004053876,154864141,1936684147,990514530,1987013897,980641056,1568170587,225206572,1762212618,1646289774,990514552,1886351369,225992992,1762212618,1629512558,990514552,1886218761,862217248,168626701,757935419,1734689312,1830841961,544106849,1886351212,1702260512,1768693874,544433518,1864394351,1970304117,168636020,1684277773,168639028,1987013897,746087200,168651123,1684300041,746087200,224945712,1667893514,222707744,1835206922,2019762288,158884908,1868774153,1918988397,1769414757,1696622708,1629512814,1701995620,168653683,543320585,154494052,1765476617,1702305894,1769109280,1948280180,1752440943,1852121189,1718558820,1701344288,1852402720,1074400613,1829321280,1663071855,2019830904,1684277773,168639029,1651864329,746087200,168651123,1668180233,158884640,1664813321,540876920,1651340654,1864397413,2036473958,544433524,1881173876,1953393010,1768453152,1768693875,168650094,1818321673,1868832876,1801675112,1933248777,1679848549,1735746149,660956519,1852383347,858923124,221524527,151653642,544632685,1529637985,1953326692,151653725,544632685,1529639780,1684103012,875262564,151653725]}],[{"sector":1,"length":512,"data":[544238947,657222753,168634231,543517193,1683973220,168636791,1886216969,745300256,220685351,1701447946,1600414752,221340772,1970276618,1663068275,1678380408,221918820,543582474,223170623,1851853066,1885479012,225468972,2053769482,858465312,1678313997,926294114,151587176,1685023803,1700470899,224225651,1684956426,168650345,1685023753,168649331,1937076233,2019631208,1661536781,543976545,1652057448,224752761,1869416714,1818304630,656418604,1929972237,1651732340,1879640589,1629515887,151653752,544238947,657222753,168634144,543320585,154625124,1765476617,1868767334,1869771886,1751326828,1667330657,225600884,1835206922,1818304624,662578988,1778977293,1679844706,153106532,1718172425,1769107488,1650553966,168650092,976708708,1829308941,1629517423,774319212,1678380327,221919332,1869416714,1936007286,2019711802,1818307677,1762200077,1646289774,151653752,1886351212,912548896,168626701,1886351369,225992992,1869416714,2019762294,221655340,1970473226,2019762274,158884140,2019769097,1847606560,1700949365,1718558834,1954112032,1948283749,1802707055,168652905,544893449,808543332,1684277773,168639033,1987013897,746086688,656416807,1929972237,2004053876,1929972237,1651732340,1812531725,544239471,221865060,1678380298,976236900,1879640589,543716213,153121651,1701985033,1919906931,1935941733,1879640589,1679847535,151653747,1702521203,1483108976,1832585481]},{"sector":2,"length":512,"data":[1528854127,1684103012,744321636,225014629,1869416714,1683693686,1684300127,1932287346,151653737,1819042147,1752069408,158032737,1702050569,1701060724,1734833506,1931965029,1953392928,791884320,168637490,1886216969,1717852960,744322157,220684839,1852442890,1178607717,1829308941,1646294639,543519865,544371824,761881691,744305970,220671271,1869416714,1768169590,225993260,977289226,1937076233,2019827816,1661536781,543976545,1937012080,1701734764,1879640589,1679847535,151653752,543384932,168651123,1886216969,745108256,168654948,1700882953,828662816,990447921,1998612073,1701980005,1852793888,151653733,543387241,168651123,1987013897,745104416,1936090735,1814066277,1600482921,225736047,1869416714,2019696758,1600412460,1919181921,224212011,1835665674,1684283504,1678380338,976302436,1762200077,1679844206,151587192,1952805691,544240928,543516788,1919181921,544437093,544370534,543516788,1954047342,658777888,1836016416,1684955501,151653678,544632685,1633641563,1567777892,225993772,1701972234,218762612,757938954,1464082477,1836016416,1684955501,1746939168,1998616677,543453807,1886221668,168626701,1683973220,221917559,1852377354,2019762275,990447881,543450209,1868963889,1870078066,1629512818,1852270956,1953391981,1929972237,1663070824,154217592,2019769097,1847606560,1700949365,1718558834,1919907616,1948283748,1919950959,544501353,1936287860,1852402720]},{"sector":3,"length":512,"data":[1678380389,2003066724,168639026,1886216969,745108256,1717986864,168650853,543255049,1683978084,1920425828,168652897,1059087977,168643920,1684955401,745562656,168652898,544893449,221457188,1650723082,1748448800,990447881,1935961964,1936022304,168648041,1768189541,151653734,1935961964,151653751,1819042147,2019911712,1685221239,1829308941,1629517423,539438188,151653671,1936684147,151653730,1886351212,1600414752,221411172,1835665674,1684283504,168636465,758843917,1142959405,1868767300,1851878765,539828324,544761192,1919907684,1969496164,168652909,1684277773,828662879,151653690,543450209,858552419,1631258889,857760868,1919903264,1870095392,1629512818,1852270956,1953391981,1929972237,1663070824,221326456,1752369418,2019762290,151597356,544760635,1970151485,1919246957,543584032,1685221239,1869881459,1769107488,1948284014,544434536,1701734764,1684277773,845440095,151653690,544238947,808216947,1667655270,151653736,1679843690,1684299639,1634891615,1762266480,1346314342,151653709,543452769,1647079522,151653744,606108266,168637227,543319049,157824822,1815808265,544433263,1769170267,1695157597,1718183022,1812531725,2004051055,990447881,544499047,544698220,1685221239,1879640589,543716213,153122913,1634941705,1814062454,1998616431,224686703,543582474,223170623,1851853066,1885479012,225468972,2053769482,858465312,1678313997,926294114,151587176]},{"sector":4,"length":512,"data":[1685023803,1700470899,224225651,1684956426,168650345,1685023753,151615347,1701264137,1768431732,1998612583,224686703,1633880330,1746955372,1870100581,168649842,1886351369,158884128,1916471561,1869902693,1814062450,1998616431,224686703,1633880330,1746955372,1870100581,168649842,1987013897,745300256,220667943,1953696010,224555887,1869351178,1679847535,1684299620,151653682,544238954,808543332,168626701,1683978084,1920425828,221933665,1870137610,1769152626,225014572,1835665674,1684283504,168636465,543450212,1885630053,168626701,1869771365,976382578,1778977293,1663070317,1700750445,1919906418,168626701,757935419,1663059232,1634561391,757097582,1768187168,1701650548,2037542765,218762542,543515914,1668248176,1661536781,543976545,1885696624,1801675112,1829308941,1646294639,1918577784,779315045,1565738098,1661536781,543976545,1635018087,158491748,1701264137,1684086900,1936028260,1852383347,1646292852,1697135224,225993769,1633880330,1931504748,1668311403,812477807,1661536781,1629515885,1380133996,1778977293,1701126245,151587121,543582523,1836020336,1830843504,224748655,1970276618,1679845491,151593080,1986097979,1701060709,1852404851,1869182049,1718558830,1952805734,1661536781,543976545,1937007975,151614068,1952802619,1952539680,2036473953,225666420,1869416714,2019762294,225010732,1869416714,2019827830,1717989164,544499059,1701734764,1953853279,1929972237]},{"sector":5,"length":512,"data":[1663066741,2019830904,1815808265,1952935525,1718558824,1954112032,1953701989,1735289202,1879640589,1679847535,151653737,544632685,1663858785,151653752,543384932,168654945,1684300041,746086688,168651108,543386121,1869771365,154298994,1718172425,544500000,1885434487,1918967923,1684960623,1661536781,543976545,1634234212,151612259,1952805691,1650811936,1701275509,544417637,544501353,841954098,151653684,544632685,1680632179,151653752,544632685,1647080293,1762266488,1346314342,151653709,544238947,1682006619,842232420,221260893,2053769482,222707744,858654986,168638008,1987013897,746087456,151611748,544760891,544432503,1953719652,1702457202,151653732,544632685,745104485,225993829,1869416714,544766582,745108325,168651123,1987013897,1696626810,1663858787,151653752,908092004,151611447,1701985033,1869422704,543322998,1768187227,1528835165,1567191909,772344333,909652024,1077938701,1695157562,1718183022,1913195021,1830842469,1651734127,168626701,757935419,1936020000,1701998452,544433184,1936007211,1684955424,1684960544,1752440943,1852383333,1920099700,544501877,1952671094,1746956911,778789729,758843917,1411394861,544434536,1701080931,544434464,1869835361,1702065440,2036473956,1701344288,661464864,1836016416,1684955501,218762542,811951370,221919841,1970276618,1931503731,151593075,1936028219,1701998452,225666080,1869613322,1935941744,1879640589]},{"sector":6,"length":512,"data":[543716213,153121651,1701985033,1919906931,1936007269,1879640589,1696624751,151653747,544632685,1865181540,1702061670,1970413684,842216046,1681590580,1735746149,660956519,1852383347,858923124,221524527,1633880330,1881173100,1634231666,151597419,1886348091,1752440953,1936158313,1667326496,151653739,1819042147,1752069408,158032737,1702050569,1701060724,1734833506,1931965029,1953392928,791884320,168637490,1952805385,168626701,757935419,1869762592,544501869,1701080941,218762542,828728586,218762554,757938954,1698832429,544106855,1886351212,1702260512,1768693874,779314542,168626701,976381285,151587081,757939259,1701716013,1814066296,224751209,1869416714,2019631222,158884396,1919957769,544501353,544503151,1835492723,544501349,543452769,1936090735,168653925,1818321673,1701322860,1919907704,151653732,544632685,657222753,168634170,1869902601,168649331,1987013897,745562656,1936090735,1746957413,1870100581,168649842,1059087977,168643920,1886216969,1096964896,863134820,808213810,1778977293,1178607738,1829308941,1646294639,1718561904,1952805734,2019911712,1919907684,151653732,908092004,990472246,544632685,746086757,225993829,977289226,1852115469,224815460,1869416714,2019631222,225993772,1633880330,1646292076,218762608,757938954,1698832429,544106855,1886351212,1702260512,2036473970,779314548,168626701,976446821,151587081,757939259,1701716013]},{"sector":7,"length":512,"data":[1646294136,224752761,1869416714,2019631222,538978092,990447911,1852404336,1819222132,1635131492,543520108,1646290543,224752761,1953696010,225932143,1633880330,1679846508,1667328111,990447979,544499059,1969382756,1701144423,1763734311,840987758,875704115,1879640589,543716213,168654946,1818321673,1701978220,1701667937,990447981,1684104562,1835363616,544497952,674912322,1480862021,1879640589,1646293103,151653752,1819042147,1752069408,158032737,1702050569,1701060724,1734833506,1931965029,1953392928,791884320,168637490,1818321673,1701322860,1954112120,151653733,544632685,657222753,168634158,1869902601,168649331,1937076233,2019696744,1879640589,543716213,168654948,1818321673,1970282604,168653684,1886351369,225993760,1869613322,2019696752,1829308941,1931507311,1718561897,1952805734,1852402720,1970233189,909192052,1684093705,1936028260,1718558835,1718968864,544367974,544370534,1918986339,1702126433,168653682,1919907849,746087200,151615587,1836412475,544367970,1663067759,1634885992,1919251555,1869815923,1918985760,168626701,976512357,1661536781,1528852589,1635020654,1568240756,168636460,544893449,154756453,1765476617,1953046630,1629516583,2037675040,1879640589,543716213,168651123,1987013897,745104416,1936090735,1814066277,1600482921,841707113,1829308941,1931507311,1650142313,1701734005,224228472,895837450,151653690,544238947,1529637235,1701213538]},{"sector":8,"length":512,"data":[224224366,1651116298,912614688,990447881,1948280425,1701995880,1629516583,1634231072,1952670066,1629516389,1634038380,168655204,1818321673,1768300652,1969384556,151653734,544632685,1126984801,151653714,1696621418,151599205,1718172425,1718576416,1701120525,168639030,1886216969,1869503264,1953784180,1126980985,151653714,543518314,540501349,1765476617,1869488230,1701146144,1869881444,1836016416,1936028272,1380130931,222710831,1835206922,2036473968,1881171316,1528853108,744319347,168642124,1701734921,929391904,990447904,1847617129,1629516911,1852402720,1701191781,168649829,1668180233,157905696,1933248777,544237931,168653929,1668180233,1869503264,1953784180,151608697,1870029115,1914725481,1634037861,1735289204,1768453152,151653747,544238954,540370277,1849362697,544503909,1918986339,1702126433,218762610,929391882,151653690,1935961964,151587170,1952802619,1701344288,1634231072,1952670066,168653413,1987013897,1869503264,1953784180,1630297465,1695157612,221919333,1869416714,1650139254,1701734005,744322168,168651123,1886351369,225014560,1835665674,1701126256,168636465,1701120525,168639033,1818321673,1850286188,225668932,1852442890,1701126266,168649017,1987013897,745038112,990447928,1936617315,543517807,1970302569,1769414772,1970235508,1667571828,168652648,1953392905,1748054560,1778977293,1696624749,221262181,962946314,168639073,1987013897,745038112]},{"sector":9,"length":512,"data":[224931888,1852377354,909189236,218762600,828728586,168639024,1886216969,745300256,220667943,1701447946,828728608,151593011,543582523,1701736292,1953068832,1752440936,1646293865,224752761,1835206922,1818304624,223494956,1701447946,828728608,151593011,1953063995,168652660,1886216969,745300256,168645442,543517193,825320805,990447904,1646290537,1936417633,1701011824,1661536781,1629515885,757541996,151653671,1696621930,842084709,1765476617,757538918,151653671,544238947,841775203,1866139913,1919248500,1702062455,1953046572,1869116192,543452277,1629513058,2019911712,1634231072,1952670066,168653413,1700882953,879060256,990447904,1998612073,1634213989,1629513078,1819633184,2036473964,1629513076,1634038380,168655204,1987013897,1769167648,1818307677,1661536781,543976545,1853121895,168649337,543386121,154428773,1765476617,1953046630,1847620391,1629516911,2019911712,1634231072,1952670066,168653413,1668180233,225993504,1869351178,157447012,1731922185,1948284005,1663067496,1634885992,1919251555,1667326496,151653739,544238954,842098021,1701120525,976367921,1661536781,543976545,1868854387,1818326133,1678313997,1679844197,151587192,1667589179,1701668210,1864397934,1702061670,1634738292,168653938,1987013897,745104416,1936090735,1814066277,1600482921,225736047,1835665674,1701126256,168637745,825320805,151653690,2054710122,879060256,1765476617,1869488230]}]],[[{"sector":1,"length":512,"data":[1852401780,1869881447,1667326496,1634759531,1864394083,225600886,1701054730,2019762275,1678313997,1931502437,151653737,1819042147,1819633184,1869832812,168653941,1886218761,879060256,1701120525,221917745,1633880330,1931504748,1970234484,225206644,1835665674,1701126256,151593012,1667326523,1868963947,1869422706,168650098,758843917,1461726509,1634213989,1629513078,1954112032,1764237413,1480794214,540877088,221129008,1695157514,976433509,1778977293,544897123,875652453,1765476617,1869488230,1634231072,543516526,544370534,1936287860,1954112032,151653733,544632685,1567191899,158097708,1702116105,1852403058,543519841,543516788,1769108595,168650606,1651864329,745108256,151615587,1768910907,1948284014,1700929647,1852729703,224882281,1970276618,1663068275,151653752,1752397168,225993760,1869351178,224555876,1633880330,1730178156,2036495461,151610740,1852793659,1953654134,1954112032,1869881445,1852400160,544830049,692864040,1829308941,1629517423,1818504300,1879640589,1679847535,151653752,544239472,168654947,1818321673,1868832876,1801675112,1933248777,1679848549,1735746149,660956519,1852383347,858923124,221524527,1633880330,1998613612,1702127986,158164333,1920416521,543519849,1629506625,1480728692,692398138,168646724,1987013897,745104416,1936090735,1914729573,858943093,990458930,1969382756,1701144423,1763734311,840987758,875704115,1661536781,543976545]},{"sector":2,"length":512,"data":[1751478896,154233697,1868774153,1948285296,1735289192,1633820787,168651619,1818321673,1853169772,1801675112,1933248777,1679848549,1735746149,661808487,1852383347,858923124,221524527,990514442,539831597,543452741,543516788,1886351212,1702260512,2036473970,779314548,168626701,875652453,151653690,543387241,151615588,1852390153,1835364963,544501349,1936090735,168653925,1987013897,745104416,1936090735,1814066277,1600482921,225736047,1835206922,1818304624,223494956,1701447946,828728608,151593014,543582523,1701736292,1946749453,544502629,925658212,1778977293,1701126266,153105713,1718172425,2003136032,1852402720,151653733,544501614,168654947,1684300041,746087200,990447924,1886220131,543519861,539828275,168654947,1987013897,745300256,220667943,1701972234,1953702000,157447023,1953708809,543519343,1952540788,1851878688,1886593145,1936024417,1778977293,1696624749,153105253,1633827593,1713400675,1830842991,224752239,1695157514,976564581,1829308941,1629517423,1179397240,840968736,723531317,156386080,1919251515,1634625901,1948280180,544434536,1701734764,1929972237,2004053876,1778977293,1696624749,153104997,1633827593,1713400675,1629516399,2003136032,1852402720,218762597,828728586,168639030,1886218761,1953853472,1852402803,990447973,1819042147,1953853472,1852402803,1851859045,1701978212,1852994932,1701120525,1684956448,218762608,757938954,541466669]},{"sector":3,"length":512,"data":[1835888483,543452769,1768300589,1830841452,1919905125,218762617,543581706,1668248176,2013858317,1663070831,2019765368,1731922185,1629516901,1701995620,1914729331,1701277281,1869490208,1717920800,1953264993,1852140576,694711399,1829308941,1646294639,1918577784,779315045,1565738098,1661536781,543976545,1920230759,1701277281,1731922185,1629516901,1701995620,1914729331,1701277281,1953392928,2019696751,694495290,674199652,2019764581,1718159885,1297104672,1661536781,1528852589,1684291938,1563571058,168636460,544893449,168642112,942878217,151653686,543323507,746087269,225993829,1852377354,1667571811,151653752,1752397168,2019779872,1879640589,543716213,225993829,942541066,221657136,1835665674,1717969008,221327455,977289226,1852115469,224815460,1970473226,2019762274,225993772,1852377354,2019762275,990447881,1025538147,1836412448,544367970,1646290543,1936028793,1879640589,543716213,153122915,1634941705,1763730806,151653748,1752397168,544760864,1933248777,543520353,1918989427,1684086900,1936028260,1711934835,825253734,151653690,1819042147,1768649504,1836016496,168636525,1818321673,1701257324,1920234356,1731922185,1931506789,1852404340,1718558823,1954112032,168653669,1987013897,746087200,168651108,1651864329,746087200,1936090735,1814066277,1600482921,225736047,543582474,223170623,1835206922,1650139248,1919181889,744305203,151653680,1713404522,221339494]},{"sector":4,"length":512,"data":[858654986,168638008,1886351369,1768187168,1829308941,1696626287,2019699827,1661536781,1696624749,824997987,1778977293,1717968997,842227507,1879640589,1696624751,168654945,1902404361,1678313997,1696626281,168654947,544370441,746086757,225993061,2053769482,845571616,221393759,828794378,976368479,1829308941,1696626287,1865181555,1702061670,1768693876,1868522862,168653941,1937076233,1667571816,151653752,544236914,1937141613,1936007266,1684364090,539778409,1530557284,1567191909,1879640589,1696624751,168654947,1667589129,2019648800,1778977293,1713404526,861876582,1711934770,861876838,168639026,1987013897,2019779872,2019845420,1778977293,2054710117,1600546336,1953069157,1765476617,1869488230,1918988320,1818323316,1886348064,225666409,1869416714,1769152630,1717989164,544499059,1701734764,1953853279,1913195021,1830842469,1651734127,980641056,1768187227,1679830109,1700477555,224225651,1835665674,1717969008,1769497951,990447988,1701736292,1818306592,1953722221,1711934761,861877094,168639026,1886351369,2019779872,1829308941,1629517423,2036477036,1881171316,1528853108,1701734764,1953853279,151653725,544236914,1936684147,1936007266,1684364090,168648041,1886218761,1600546336,1953069157,772344333,909652024,1717963277,221917535,1684956426,168650345,1886351369,225010720,1869416714,1936007286,225993260,1835206922,2019762288,168636716,543517193,154363494,1631258889]},{"sector":5,"length":512,"data":[1836016416,544108397,1769238639,1635412333,1852795252,1879640589,1629515887,151587192,1952802619,2053731104,151653733,544370552,1680636004,990447992,544698222,1702521203,544106784,1094342724,151653720,544238947,824997985,1627982349,1679844196,154152056,1868774153,1919252078,808460404,809119792,540028976,807432052,976302128,808464432,1678313997,1663071849,151587192,1836016443,1702131056,1836412448,544367970,1998612079,1701605224,1885696544,1953068133,1936617321,1862863373,2019631218,225993004,2053769482,845571616,990447881,1814062697,544437093,1851877492,1701736224,1869117216,1914725740,168652901,976316006,1829308941,1931507311,1718561897,1952805734,1852402720,1970233189,151653748,1752397168,225993504,1701972234,1869422704,224555894,1869613322,2019762288,1678313997,1629512549,151653752,544894570,540108390,1765476617,1869422694,1948280178,1869029487,1717963277,168639026,1987013897,746087200,168654948,2019781129,1717969018,1769497951,990447988,1847617129,1634738287,1634301042,1868767340,1936025968,1829308941,1931507311,1718561897,1952805734,1852402720,1970233189,151653748,544236914,1937141613,151653730,544238954,1700750950,158624120,1868839689,673211758,1869442145,220820595,862348810,151653690,544239472,168654947,1987013897,745300256,1702132066,1920233504,1768708896,1868522862,224228469,1953696010,157447023,1664813321,540032376,908082733]},{"sector":6,"length":512,"data":[1114316852,1678313997,1663066981,151653752,544236914,1936684147,1711934818,2019909478,221934697,1970276618,1931503731,151593075,1936028219,1701998452,225666336,1869613322,1936007280,1913195021,168653925,1696622182,225469550,990514442,539831597,1634038370,1768910955,544437358,543519329,1919906931,1763730533,1768693870,1868522862,539784309,1752459639,1768453152,1868963955,1952542066,758843917,1461726509,541348431,225734243,757938954,1918967853,981033330,758843917,1142959405,1146244951,1380931375,1718558788,1952805734,543584032,168652898,757935419,1380931360,1702043716,1852140903,1718558836,225468960,757938954,1497505837,1864385876,1981834348,1702194273,168626701,1702061426,1936745076,151653690,544632685,1865181540,1702061670,1701978228,1651795315,168636784,1651795315,1881174896,224620402,1869416714,1769152630,1717989164,544499059,1701734764,1953853279,1812531725,2004051055,2013858317,543647843,539785315,151615585,1987013947,746087200,168654945,221921344,1667893514,1075870328,151653702,1702521203,1483108976,1815808265,1685283951,1812531725,2004051055,1929972237,1885698665,156788338,1668823817,1696622440,1697413220,168654945,1751349257,2019827815,158884140,1869429513,2019827830,225993004,1869351178,225932132,1668811018,1646290792,2019634296,1832585481,1646294639,2019634296,1661536781,543976545,153119076,1633893129,1931504748,1885500517,1701982001]},{"sector":7,"length":512,"data":[1651795315,168636784,1668180233,225014560,1869351178,1075867759,151593026,2019913275,1885479028,1077938701,151653690,225731954,1952805642,976318562,151653690,544632685,808217697,224936771,1633880330,1998613612,1702127986,225273197,1869416714,1935351926,1630297449,990447976,1702257011,1701344288,1920295712,1953391986,1852793632,1953391988,151653747,1853121906,1701972493,1651795315,976892272,1829308941,1629517423,1935354988,168648041,1886216969,745300256,1749238576,1778977293,1178607738,1661536781,543976545,1953067639,1835363685,1077938701,151653690,1853121906,168626701,1651795315,1696625520,225469550,1762266378,1346314342,218762573,757938954,1769414701,1142974580,1196769861,1998600792,544105832,1869422689,1931502948,1668573559,1768169576,1668227172,544372067,1948282473,1679844712,1735746149,744842599,758843917,1948265773,1931502952,1701668709,1881175150,1937011297,543584032,543516788,1634038370,1768910955,1629516910,1701995620,1936028531,1701994784,225406496,757938954,1869357101,1919248238,1818326560,1763730537,1752440942,1701716069,1869422711,539911524,1696624468,1818386798,1752440933,1701060709,1734833506,1948283493,1701978223,544499059,224749684,757938954,1919033389,1886085477,1953393007,1763716211,1634214004,1869881459,1769435936,543712116,1886217588,1918988911,544828521,1948282740,1881171304,1769366898,544437615,1701080941,990514478,539831597]},{"sector":8,"length":512,"data":[540700265,1866291268,1981834348,1702194273,543584032,1936156018,2004053294,168626701,1702061426,1936745076,1881176133,224620402,151653642,544238947,1529641060,1936156018,2004053294,151653725,1914731114,1952805733,158560354,1832585481,543515759,1852074340,1663071271,1735287144,1965042789,1847616883,1634562671,1701978220,544499059,1953853298,224751209,1835206922,1918574704,1767861877,744322158,1936090735,1881175141,1952935794,990473586,1885956979,1936028192,1852404837,1885479015,1718165619,1650811936,1701275509,1702109285,1852403058,1684370529,1778977293,1178607738,1661536781,1646293101,543519865,544371824,1852402779,1970233189,808213876,1851865865,1919033465,1886085477,1953393007,1701060723,1701734758,168640356,544893449,168642112,1987013897,746087200,1836082267,1769168745,157115770,1852793915,1663071271,543976545,1702257011,1635021600,1763730804,1969365094,1919247974,2053731104,1936269413,1919253024,168636015,2019781129,1868832890,1769435999,157836148,1752447753,1629516649,1684631414,543236211,1146312515,541674832,224884066,1970473226,1886593122,2019762220,1829308941,1629517423,154152044,1818311433,1763717181,1634934899,1931502966,1702125940,1661536781,543976545,1935635059,1702125940,1661536781,543976545,1935634276,1668573559,151653736,544632685,824994913,1631258889,540097900,1914729321,1869902693,1931502962,1702125940,1661536781,543976545,1935635059]},{"sector":9,"length":512,"data":[1702125940,1627982349,1931502692,1683696752,1600744816,1702521203,1074400605,168639040,1952805385,1868827149,1769435999,979919732,1661536781,543976545,1953068915,1869441123,153118052,1769435963,543712116,1864396660,1830839404,224748655,1633880330,1914727532,1952805733,225669218,1835665674,1931485296,1668573559,1685024104,990453861,1953068915,1646291043,543908705,1847619444,1830844261,224748655,1930038538,1668573559,1685024104,221919845,757938954,1634869293,2004033655,1751348329,990514490,539831597,1698326899,979985455,2003136032,980640544,1885941605,758843917,1679830317,795163256,540702818,544695662,1698329459,225473327,757938954,2019631149,538976314,1847599136,1679849317,990514547,539831597,540702819,538976288,2003136032,225666336,1769146634,1919968634,151593062,1919907899,2019714336,2019714348,2013858317,1646293615,2019699832,1664813321,1918985580,1768431731,1685221239,1480738080,543582496,542462019,857750846,168638008,1987013897,746086944,168652915,2053731081,1718775909,990447904,544370552,745104485,225010789,1870137610,1768169586,157901868,1818442505,1936875877,2003396640,543453807,541672517,1126196841,1042306384,942874685,151653686,544632685,1647077732,1600873313,1702127201,2004049778,1751348329,1661536781,543976545,1836086121,1778977293,1763736174,1836081011,1829308941,1629517423,1683696760,1818588019,990447965,1953068915,1914726499]}],[{"sector":1,"length":512,"data":[1043144813,225275936,1869416714,1769152630,1935891244,1567384947,1829308941,1679849071,2019634296,1829308941,1663071855,2019634296,1778977293,1528852589,1768779876,846033503,224226672,1601399050,221932912,1869416714,2019631222,1936743212,1734501488,990453853,1953068915,1881172067,1043144813,225276448,1869416714,1769152630,225993004,1869416714,2019827830,225993004,1869416714,2019762294,225993004,1835206922,1683693680,862547312,808213810,1778977293,1178607738,1678313997,909516898,151587176,1886218811,1870095904,1881171058,1528853108,1768779876,846032991,224226674,977289226,1778977293,1679847533,1685221239,1920233504,1885625120,1885301101,1836200557,1644825949,1600873313,1702127201,2004049778,1751348329,151653690,544370552,1734701659,1936535155,757882231,151653681,1853121906,168626701,1935635059,1702125940,168639034,2053731081,1718775909,990447904,544370552,745104485,225010789,1870137610,1768169586,157901868,1818442505,1936875877,2003396640,543453807,541672517,1126196841,1042306384,942874685,151653686,544632685,1932290404,151653744,543450209,841771364,1950025993,1931502952,543520353,1667330163,1953701989,1937011297,544497952,728789851,168647986,1818321673,1936269420,168652144,2054056457,1601399072,221408624,1633880330,1528851564,1768779876,1936552543,224228961,1701972234,168652404,1885303657,221917805,1835206922,1683693680,862547312,808213810]},{"sector":2,"length":512,"data":[1778977293,1178607738,1678313997,909516898,151587176,1818321723,2003181676,543453807,544371824,1836082267,1836081001,1568039283,1077938701,151653690,1819042147,1870095392,1881171058,1528853108,1768779876,1936552031,224228961,1701972234,168652404,1701972493,1651795315,2017817456,1684956448,218762608,1684956426,168650345,758843917,1193291053,1836016416,1684955501,1730161952,168636015,1734806029,1869770784,151653731,1734894456,746086688,151615586,1987013947,746086944,168654945,1987013897,746086688,1734701659,1131556467,990469459,1702257011,1769107232,1634625895,1396908140,154864141,544632685,1853190747,1567843167,225993004,1869416714,1700470902,1684106353,875262564,2019634269,2013858317,543647843,1647081569,990447992,544632685,1647081569,151653752,1819042147,1918988320,1819370867,1731922185,1864397925,1869182064,543973742,1684094268,540963428,1969713761,1953391981,168626701,757935419,1918980128,1948280179,1914725736,544502629,1948280431,1814062440,543518313,544370534,1634038370,1768910955,225670254,151653642,544632685,1865181540,1702061670,1768693876,1868522862,168653941,1919907849,746086688,168654945,1869902601,168654707,221921344,1701054730,1769152611,1661536781,543976545,1885956979,1835888483,151653729,544238947,1126984801,990447954,543452773,1814062703,1063612009,1778977293,1178607717,1829308941,1646294639,1700473976,1684106353,875262564]},{"sector":3,"length":512,"data":[1681590621,1969317477,1931506796,1701668709,168653934,1818321673,1701257324,1684300148,990447986,544499047,1919181921,544437093,1869901417,980967968,1680434472,151653752,1702521203,1483108976,2017134857,543647843,746086757,225993829,1668811018,1629513576,2019830904,1832585481,1629517423,2019830904,1929972237,1885698665,156788338,1953708809,224686959,1953696010,225932143,1668811018,1629513576,2019699832,1832585481,1629517423,2019699832,1929972237,2004053876,1762200077,1679844206,151653737,543387241,1702132066,1920233504,1852402720,1970233189,1966803316,1528849779,1701734764,1953853279,542978091,1663070068,1953396079,1936744992,1778977293,1075867757,151587138,2019913275,1885479028,1077938701,218762554,757938954,1951604781,543519343,1634038370,1768910955,1646294126,1936028793,544106784,543516788,1702259047,1869357166,1769234787,779316847,168626701,1987013897,745104416,1936090735,1931506789,1885500517,151653681,1819042147,1952805664,225669218,543582474,223170623,1970276618,1528850547,1936156018,2004053294,990453853,1702257011,1684827936,1465077024,1852115469,224815460,1633880330,1914727532,151613045,1853190715,1701344288,1869770784,1835102823,1718159885,1297104672,1661536781,543976545,1668572519,1953784179,151653746,544632685,1396925019,1920234561,1818307677,1852115469,224815460,1869416714,2019762294,221326636,1633880330,1730178156,1935897701,1651534181]},{"sector":4,"length":512,"data":[157643897,1952802619,1954112032,1952522341,1935891232,1885955386,744304941,1952805664,1110394144,1869881432,1227834656,221326672,543582474,223170623,1869613322,2019827824,990447881,544499047,543452271,223826765,1684956426,168650345,758843917,1377840429,1869902693,1646290290,1801545074,1852403568,2036473972,779314548,168626701,757935419,661940512,1970348147,1769239397,1650552431,1763730796,1752440934,1931506537,1819635560,1700929636,1852793888,1752637541,168652389,757935419,1701344288,1650811936,1701275509,1634213989,1702109299,1852403058,1684370529,1970428704,1852399470,1025531252,1919950909,1920231279,168636013,757935419,1919903264,1869770784,1952671092,1831691365,744842351,543582496,543516788,1229803588,1936680992,1634214004,1700929651,1948282469,1768780389,1702125934,1935745124,1818588960,990514540,539831597,1998615657,543976553,1953722221,1802071072,544828517,1935766115,1752637544,1629515365,2002874912,1685024045,2004033637,1751348329,544434464,1646292852,1868832869,221144430,151653642,1752397168,225992992,543582474,223170623,1633880330,1914727532,1952805733,1165193314,990453880,1702061426,1346510964,1931488371,1668573559,1836327016,1948266096,1919950959,1869182565,1830843253,224748655,1936483594,151653733,1819042147,1936028192,1885500517,1695157619,1718183022,1879640589,1629515887,218762616,757938954,1766203437,1752394094,779121952,1749229600]},{"sector":5,"length":512,"data":[543908709,1763731049,1635197044,1852776563,1718558821,1970233120,1646288754,1801545074,1852403568,221148020,151653642,544238947,808217697,224936771,1852442890,1734811770,1769497951,151653748,544238947,1853190747,1953392991,1718561885,1952805734,1953392928,1735617843,1778977293,1730176366,2019909479,151614569,543582523,544501614,1763722051,1919251566,1953527154,1829308941,1663071855,825044088,1661536781,543976545,1668572519,1885955443,1702132066,1769421577,1931504748,1159754853,542655023,1159753588,760236335,151653681,544238947,808217697,224936771,2053769482,1600612128,1953069157,168626701,757935419,544500000,542327127,543518319,1864394351,1109422709,539063120,1919116612,1852140901,793059444,220287049,151653642,1702521203,1483108976,1832585481,1528854127,1936156018,1346990638,1650797661,151653752,544632685,1734701659,1232219763,1647074640,151653752,544238954,1886221668,1936156018,1734806029,1769497951,168639092,1835665723,1702174832,1953392991,1882917129,1953393010,1936026912,1701273971,1851859059,1970348132,221148265,543647498,1885630053,168626701,757935419,1769099296,1830843502,1634956133,1629513063,1953853282,1701737760,1667592312,543450484,1702129257,1886745202,1679830132,544238965,1768383858,1919251571,1629498483,1696621678,168649838,757935419,1836016416,1684955501,1411391534,544434536,1701080931,544434464,1869835361,1702065440,2036473956]},{"sector":6,"length":512,"data":[1701344288,539772704,1851859024,542384228,1835888483,1935961697,218762542,1600484618,980708969,1829308941,1679849071,1918577784,1767861877,224228462,1633880330,1763732588,825390190,154757217,1919957769,544501353,1769108595,168650606,1886216969,746087456,1936090735,1881175141,1952935794,168652146,543517193,151602752,1718172425,544500000,1836213620,1952542313,539780197,1885956979,1701344288,1734701600,1702130537,168653682,1818321673,1969496172,1701998701,168653671,221921344,1835665674,1835212912,1869573220,990447984,1801675106,544175136,543516788,1918989427,218762612,543582474,223170623,990514442,539831597,2019913333,1952671088,1696621669,1885692792,1852795252,1667460896,1684370037,1936615712,543515753,1969382756,1919248231,168626701,1767859573,544765038,1668248176,1661536781,168649836,1937076233,1936924776,1879640589,1679847535,151653747,1819042147,1752069408,158032737,1702050569,1701060724,1734833506,1931965029,1953392928,791884320,168637490,1987013897,746087456,1853190747,1953392991,151653725,1819042147,1953392928,1751200050,990447929,1852404336,1953702004,1735289202,1718159885,1129858336,1346982723,1829308941,1679849071,1718561897,1952805734,1852402720,1970233189,151653748,544632685,1865181555,1702061670,2019893364,1668246627,1661536781,543976545,2037411683,1769108595,168650606,1987013897,746086688,1953392987,1667463269,168648051,1818321673]},{"sector":7,"length":512,"data":[1701322860,1919907704,151653732,544632685,657222753,168634170,1869902601,168649331,1987013897,746086688,1953392987,1768126565,168648048,1818321673,1701322860,1919907704,151653732,1819042147,1953853472,1852402803,1695157605,1718183022,1778977293,1663070317,1869374573,168652911,1767859573,544765038,1885630053,168626701,1768189541,218762598,757938954,541597741,1835888483,543452769,1701322797,1684086904,1769236836,1629515375,1931502702,1920230005,1769235297,221146735,1745489162,1919950952,168649583,1818321673,1701257324,1870095476,151610482,1952802619,1870095392,1763730546,1480728686,223888442,1970276618,1646291059,151653752,1752397168,225993760,1633880330,1931504748,1668311403,812477807,1661536781,543976545,1685349735,1685221239,1661536781,543976545,1701537891,151612527,1886938427,544498533,543452773,1814062703,543518313,1701995880,1879640589,1663070319,151653752,544239472,151615585,1768307465,544502642,1970037110,1852383333,978862368,539777091,1868785011,1763730542,1480728686,223888442,862480394,168639026,1987013897,745108256,168654945,1987013897,745562656,151615587,1919510075,1981838451,1702194273,544106784,1111116115,1869488208,151653751,544632685,1663858785,151653752,543450209,1680636001,151653752,1752397168,225992992,1869416714,2019631222,225014572,1684080906,2019631203,225993260,2053769482,222707744,1633880330,1746955372,1870100581]},{"sector":8,"length":512,"data":[168649842,221921344,1869613322,2019631216,1661536781,543976545,2004378984,224686703,1869416714,2019631222,538978092,151653671,1936684147,151653751,544632685,1647081569,151653744,543323507,1680636001,151653752,1752397168,225992992,1869416714,2019631222,225014572,1651706122,2019631202,225993260,2053769482,222707744,1919879434,745108256,168654946,544893449,168642112,1818321673,1701322860,1919907704,1074400612,168639040,1886351369,225992992,1633880330,1746955372,1870100581,168649842,1886218761,1953853472,1852402803,990447973,1819042147,1953853472,1852402803,1851859045,1701978212,1852994932,1751648781,1684956448,218762608,757938954,541663277,1835888483,543452769,1852383277,544503152,1836020326,1328498976,1919905824,168636020,1768491533,1869770784,151653731,544632685,808217698,1829308941,1629517423,1935354984,1563569513,1681590537,1769239401,1936291175,1764171880,1629497188,656434286,660873321,1627982349,1629512814,1330916456,1162891349,151653714,544238947,657221729,168634185,2054056457,1600743712,151653682,544632685,1630300257,151653740,543452769,1412196449,1347441999,168645189,1886216969,745038112,220682023,1701447946,1600743712,151653681,544238947,1667329371,1701734760,221457501,1651116298,1600743712,151653682,544238947,657221729,168634180,1701734921,1600743712,151653682,543387241,168654946,828336489,151653690,543387241,168654946]},{"sector":9,"length":512,"data":[1818321673,1802707052,1752658025,224752745,1600743690,168639026,1818321673,1701257324,1919907700,990447972,544499047,1685221239,1953392928,1480859759,1661536781,543976545,1701537891,151612527,1886938427,544498533,543452773,1814062703,543518313,1701995880,1661536781,1646293101,221326444,2053769482,1600743712,151653683,1763729770,221536105,1852377354,745300256,168654948,1818321673,1701322860,1954112120,151653733,544238954,895445353,1768491533,221918047,1852377354,746086688,168654948,1818321673,1701322860,1919907704,151653732,544238954,895445353,1768491533,221918303,858654986,168638008,544106761,746086757,168654948,808988169,168638008,1818321673,1701322860,1870095480,168649842,895445353,151653690,544238954,1937012080,1701734764,1664813321,543976545,1937012080,1701734764,1684955424,1952805408,225342069,543779082,1885630053,168626701,1059087977,168643920,1684107084,977355859,1661536781,543976545,1836086121,1829308941,1931507311,1870081129,1881171058,1528853108,1094996848,224210987,1869416714,1935941750,1146313516,1818579777,151653725,544894570,168642112,1987013897,745759776,1685221239,1920233504,980640544,1146318939,1563568961,1077938701,151653690,225731954,1762266378,544043123,1668248176,1661536781,1663070317,1918581363,779315045,1568109421,990457900,1970562418,980643442,1916623392,762077541,1701080941,1515069484,1869770813,1869426036]}]],[[{"sector":1,"length":512,"data":[168650084,1952805385,1936263693,1696623984,225469550,1684956426,168650345,1702038029,1886613620,979853924,990447881,757935420,1952669984,1952544361,1701060709,1734833506,1931965029,1347637280,1718159885,1230128160,223495510,1701972234,1695157620,224752492,1869416714,2019696758,158556972,1718172425,1919903264,544498029,1663071081,1735287144,1948279909,1515004015,1752440876,1830843241,544502645,1663067490,1735287144,1629512805,1702305907,220294252,1684956426,168650345,1886676339,1881174131,224620402,1869416714,1751195766,1747989804,1718159885,1297104672,1661536781,543976545,1836086121,1778977293,1702043770,1886613620,225276511,543582474,1480937294,1145980244,168645189,942812681,151653686,1752397168,225993504,1970276618,1679845491,151653752,1752397168,225993248,1970276618,1629513843,151653752,544632685,908884065,1762200077,857764974,168650801,1886351369,225992992,1752369418,2019762284,221393196,1752369418,2019827826,168637484,544370441,1663858788,151653752,544632685,1680636002,151653752,1819042147,1936679968,1819042147,151653752,544239472,168654946,1886351369,225993760,1869613322,2019762288,1913195021,168653925,808988169,168638008,1702063205,1778977293,1679847533,1633907567,1918856300,1695157613,1718183022,1702038029,1886613620,980251231,1852115469,224815460,1762266378,1398087782,1094996805,1661536781,1998614637,543453807,544371824,1146318939]},{"sector":2,"length":512,"data":[1563568961,168636460,544893449,1668509540,1600941153,168652146,1879640589,543716213,168653668,1937076233,1769152616,1718159885,1297104672,1661536781,543976545,1684107084,222381139,1936483594,151653733,544433260,1529637235,1094996848,1695157597,1718183022,1829308941,1528854127,824928627,744319024,168654946,1886351369,225014560,1869613322,1935941744,1913195021,168653925,1702063205,1778977293,1679847533,1633907567,1918856300,1695157613,1718183022,1702038029,1886613620,1684956448,218762608,1952802570,544240496,1668248176,1829308941,1629517423,825568360,1762266472,1346314342,151653709,1819042147,1886611744,151653741,1730181738,1936749669,1836212080,1718159885,1162825248,1313166424,223495492,1633880330,1679846508,1633907567,225995884,1869416714,2019631222,168636972,1953392905,1748054816,1829308941,1646294639,2019634296,1913195021,168653925,1702063205,1778977293,1679847533,1633907567,1918856300,1695157613,1718183022,1701251597,1886613620,980251231,1852115469,224815460,1762266378,1398087782,1094996805,1661536781,1998614637,543453807,544371824,1146318939,1563568961,168636460,544893449,1668509540,1600941153,168652146,1879640589,543716213,168653668,1937076233,1769152616,1718159885,1297104672,1661536781,543976545,1684107084,222381139,1936483594,151653733,544433260,1529637235,1094996848,1695157597,1718183022,1829308941,1646294639,1935355000,808528745,168648040]},{"sector":3,"length":512,"data":[1886351369,225014560,1869613322,1935941744,1913195021,168653925,1702063205,1778977293,1679847533,1633907567,1918856300,1695157613,1718183022,1701251597,1886613620,1684956448,218762608,1936679946,1819042147,1762266426,1346314342,1762266445,1330520166,1163155525,1380271182,1661536781,543976545,1836086121,1778977293,1868832890,1818321779,1836212076,772344333,221657138,1936679946,1819042147,168639096,1986947337,543517551,1668574825,745303137,1748054560,1935876140,1936743226,1734501488,151653725,225731954,942541066,221657136,1684956426,168650345,1768189541,1678380390,1633907567,1918856300,168639085,1953392905,1748054560,1913195021,168653925,1718159885,1297104672,168626701,1396919634,1920234272,990471029,543516788,1229803588,1634038304,1869426028,1663067492,543976545,1970435187,1920300131,1913261413,1678330180,742334583,725289279,1913261360,1678330195,742334583,725289279,1913261364,1678331970,742334583,725289279,151653688,1059092324,990461740,221393195,1480749578,544695305,155135039,909191995,1148324365,2003044696,1059864352,841693961,1913261360,1678334019,742334583,725289279,168637490,156778866,1059092324,990461740,221786667,1816556042,158558049,1059092324,858471177,1913261362,1678332741,155132023,875768635,1148324365,2003044691,990461728,221655851,1397125642,544695305,725289279,168638515,156452722,1059092324,875248393,1913261360,1678331977]},{"sector":4,"length":512,"data":[155132023,842279739,1131547149,2003044691,990461728,221525035,1347645962,544695305,725289279,168638004,156455794,1059092324,875248393,1376390456,542327629,1935961701,168626701,942812681,218762550,1953392906,1819042147,1869770784,1953701987,1818321764,1937055852,1696625509,1852383347,980381300,1685221239,1633951788,1702060404,1870084711,168649842,1869351437,543973731,1935895922,1129140794,218762579,1970276618,1931503731,151653747,544239472,168653669,1987013897,1668117024,1148333683,1768172617,1829308941,1914730095,779314029,743002994,168651123,1987013897,1668117024,1114779251,2019699800,1829308941,1914730095,779314029,743982194,168654948,1987013897,1668117024,1131556467,2019765336,1829308941,1914730095,779314029,743981426,168654945,1987013897,746086688,728785499,168647984,1987013897,1668117024,1114779251,2019634256,2013858317,1663070831,2019765368,1829308941,1914730095,779314029,1634485874,1663857511,151653752,544632685,1935895922,1347645998,225993516,1869416714,1836195958,1915646819,1663849299,151653752,544632685,1680636001,1935766625,168650597,1987013897,1668117024,1165110899,2019634259,1829308941,1914730095,779314029,743654514,168654945,2053731081,1718775909,990447904,543253868,745104485,1935895922,1812531725,1679843685,1836199017,168653667,1987013897,746086944,1853124201,151653743,544632685,808220769,1747988531,1762200077,857764974]},{"sector":5,"length":512,"data":[168650801,1987013897,745038112,1702132066,1920233504,1668117024,1181888115,1936154988,1812531725,224815201,1869416714,1768169590,1668117036,1148333683,151653705,544632685,1915513203,779314029,222909298,1869416714,2019696758,1668117036,1114779251,151653720,544632685,1915517028,779314029,223888498,1869416714,2019762294,1668117036,1131556467,151653720,544632685,1915517025,779314029,223887730,1701972234,1762266484,1633907822,1696623724,225469550,942541066,221657136,1762266378,1330520166,1163155525,1380271182,758843917,1948265773,544434536,1668248176,544434464,1819042147,1763730533,1836064878,543515759,2037149295,758843917,1142959405,1936269395,1802401056,1853321070,218762529,1702062346,1852142712,1634887012,1818845558,1701601889,1869770784,151653731,909652526,1879640589,543716213,168653668,1937076233,1936007272,1879640589,1634235253,1879640589,543716213,168653683,1886351369,225666080,1769146634,1919968634,990453862,543253868,745108325,1299870496,1397703763,1812531725,1931501925,2054368361,1329877837,1832585555,544502645,1277191522,539771205,661548900,1751326836,1701277281,544175136,1987013922,745108256,1936090735,1931506789,1146310010,555897679,1829308941,1629517423,909192312,224944440,1852377354,1177690228,151653736,544238947,824994913,1661536781,168649581,1886351369,151653729,544239472,168653669,1886351369,225666080,1701972234,151653748]},{"sector":6,"length":512,"data":[942684206,218762550,1313817354,1931498579,1701668709,168653934,1397586547,542330692,572547684,1143821133,740447055,1124732208,1414745679,1684956448,218762611,1702062346,1852142712,1634887012,1818845558,1701601889,1684956448,218762608,1685024266,2019914607,1936615796,168639092,1937076233,1936924776,1879640589,1679847535,151653747,544632685,1865181555,1702061670,1869488244,1886745460,168637040,1987013897,1954112032,1953505381,1935351922,657218921,168634148,1987013897,746087456,1936090735,1847620709,1970500719,168652912,1818321673,1852383340,1630614132,168638824,1987013897,1954112032,1953505381,1935351922,1126980969,151653714,544632685,1865185380,1702061670,1869488244,1702063972,168653944,1886218761,1953392928,1751200050,1695157561,1718183022,1852115469,224815460,1762266378,1650812019,1701275509,1634692197,979658084,1829308941,1629517423,1885023352,1650749555,168648037,1886216969,746086688,1886613595,1567056484,1913195021,168653925,758843917,1696607533,1920299886,543236197,1969382756,1701144423,544434464,1684107116,168649829,757935419,1952805664,977883936,1948272964,1396908143,743459130,1701998624,1987208563,1480663141,1480728620,1480859692,168626701,1970499173,1701078386,1734833506,1869374821,1684366433,1869770784,1762266467,1380196454,1380275785,544302368,151653680,1752397168,225992992,1633880330,1763732588,1650812019,1701275509,1634692197,224683364]},{"sector":7,"length":512,"data":[1852442890,1178607738,1879640589,543716213,168654946,1937076233,2019827816,1661536781,543976545,1634038371,1969513844,1954114925,225145697,1869416714,1769152630,1701993260,1915646823,224219971,1869416714,1768169590,1701993260,1915646823,224219209,1869613322,2019827824,1879640589,1646293103,1074400632,168639040,1886351369,225992992,1684956426,168650345,1952805385,1852115469,1701999987,1969382756,1701144423,1684107116,1696621669,225469550,990514442,539831597,1868767308,1851878765,539828324,1684104562,1881170208,1919381362,539782497,1679848047,543912809,1952671091,745763439,1869768224,1768169581,221145971,1812598026,1919950956,168649583,1818321673,1634738284,1818588018,990447991,1936875888,1953046629,1684086828,1763734116,2019696750,694495290,168654948,544893449,154233964,1765476617,1701978214,1936029041,1869881460,1634692128,1768300644,168650092,1059087977,168643920,1310746217,1415071055,1162104389,151653714,1819042147,1886611744,151653741,1075870314,151653702,1819042147,1702062368,1852142712,1634887012,1818845558,1701601889,1778977293,1869488227,1702063972,1852404856,168653939,221921344,1684956426,168650345,1768189541,151653734,544238947,1530557283,1885696885,1701536609,841768308,1778977293,1819025506,221339440,1869416714,1818501238,158097708,1027685129,1027746864,1027812401,774777906,151653678,544370552,1932290419,990447977,1684104562,1769104416]},{"sector":8,"length":512,"data":[168650102,1668180233,158098464,1094387977,1110192445,1126969917,774648637,168635950,1987013897,746086688,892351287,990447976,674911044,1480730949,540945696,1801675120,168653925,1668576009,1762200077,840987758,153118769,1937062665,1852383333,825368692,1701322856,539780466,544501614,1668509540,225209441,1835665674,1819025520,221404976,812411914,221917535,1852377354,892477556,1812598120,845099116,151653690,544632685,1865185380,1702061670,1701978228,1852400737,151653735,544238954,221345655,990514442,539831597,544370502,1836016430,544370464,1702389038,1818846752,539784037,1663067511,1864396385,544828526,1684107116,544497952,825914211,539897904,1701331744,1948281699,544498024,1936877926,168636020,1819019789,168639025,1142974057,1163282770,1902452818,168636448,1987013897,745300256,1818846811,1954047333,1731922269,1713402981,1936154988,543584032,1701603686,1954047264,1769172581,168652399,1886216969,745300256,151653680,544894570,151602752,1718172425,1954047264,1769172581,1696624239,1953720696,151653747,544632685,1865185380,1702061670,1869488244,1835101798,151653733,544238954,846491241,963141937,1077938701,151653690,1953719668,745300256,1599363141,541937475,1159754351,1163875416,168641880,544893449,1684107116,1701603686,1765476617,1869488230,1663967348,1864396143,1697521778,1713399160,224750697,1835206922,2019696752,1701993260,1915646823]},{"sector":9,"length":512,"data":[224219971,1852442890,1819025509,151593010,543582523,1835492723,544501349,1998615401,1735290738,1661536781,1679847533,808529016,168650800,543517193,1684107116,1701603686,1765476617,1684086886,1936028260,1936269427,541806368,544370472,544501614,1702259047,168634734,976383084,1852115469,224815460,1835665674,1835212912,1919246180,158494578,1633893129,1852776558,1814067564,543449455,1836016430,544370464,1702389038,544497952,825914211,168636464,1819019789,1684956448,218762608,543582474,1447645764,1696617029,221257841,990514442,539831597,1684107116,1851861024,1713383801,543517801,543582504,544501614,1163412782,544370464,1297040174,1869357100,1629512801,1480728692,693650490,758843917,1864379693,544105840,1701603686,1684955424,1952802592,1852140576,224949351,1812598026,1717854575,543517801,1668248176,1829308941,1931507311,2019699817,1933248777,543520353,1953719652,1952542313,544108393,1919181921,745763685,1734701856,1953391981,1829308941,1679849071,2019830889,1631258889,1864393838,1702061670,151653748,544632685,858552417,1747988580,1866139913,544105840,1701603686,1919903264,1634038304,1735289188,1829308941,1679849071,1413753976,151653697,1819042147,1936679968,1819042147,1778977293,1075864430,151587142,543582523,1696624494,1919906418,1778977293,1763733613,1919246191,158494578,1919957769,544501353,1869771365,1701650546,1734439795,1074400613,168639040]}],[{"sector":1,"length":512,"data":[1751349257,2019631207,158884396,1869429513,2019696758,225993004,1869416714,2019631222,808596524,151611442,1702063163,1159752549,168642127,1919907849,746087200,168654947,1919907849,746087456,168654948,1953392905,1748054560,168626701,538976315,1768714323,1718558836,1768300646,1948280172,1936027769,540740109,1950425120,1768453152,1869619315,980708969,154864141,1711896674,543517801,1684955496,168650092,2019821883,158884154,1701603686,1852140576,224949351,1929984778,1768176233,1634692105,1684086884,1936028260,1126703219,808532563,1713399856,773878383,541415493,773878383,692932419,168626701,1936028681,1717248116,1701145705,744322168,1599363141,541937475,1159754351,1163875416,168641880,2054056457,1634692128,1835495524,1765476617,1663967334,1864396143,1697521778,1713399160,224750697,1762266378,1346314342,990514509,539831597,1953394532,1634692128,543236196,1701603686,544106784,1953460848,1702126437,1869422692,221013348,757938954,1752440877,1701978213,1814062177,544239471,1701536109,1869815923,1931502957,1701668709,1914729582,1936287589,544367988,1953067617,1952804200,168649577,1818321673,1936269420,168652144,544893449,168642112,1987013897,746087456,1936090735,1847620709,1970500719,168652912,1818321673,1852383340,1630614132,168638824,1886218761,829189152,1074400562,168639040,1768189541,218762598,757938954,1867259949,1763730529,1970217076,1818588018]},{"sector":2,"length":512,"data":[779314550,758843917,1176513837,1847620207,774729327,795701091,1702389038,1818846752,539784037,1780508023,544502645,1629515620,1634038304,1629498468,1931502702,1109423205,1480800856,544175136,224749684,757938954,1970151469,1919246957,543584032,1702132066,1701978227,221144161,151653642,1819042147,1936614688,1684370037,1735746149,1818584423,1701077359,1832585572,543517537,1701999987,1679843616,1735746149,543516007,1814066025,1701077359,151653732,544632685,1529639781,1685091184,224224610,990514442,539831597,1667590211,1752440939,1769152613,1629513082,1852399975,1629516915,1818845558,1701601889,1634759456,221144419,151653642,1752397168,225014560,1970276618,1646291059,218762616,1835206922,1769152624,980641068,1095516507,1565540691,1879640589,1718121333,1846086157,1931503461,151653737,1718644592,1778977293,1814062433,153106028,1718172425,1634692128,1735289188,1935765536,1852121204,1718558820,1835363616,1818304556,544698220,1869768820,543713141,1717986918,1627982349,1931502692,1936010345,1279351610,1346458433,1933248861,540876905,1651340654,1864397413,1634738278,1919377778,1936224353,1635148064,1650551913,168650092,976645228,1829308941,1663071855,221523064,1870137610,2019696754,225993260,929852426,151653690,543975539,824994163,1913195021,1646292067,221326456,1869351178,1814065263,168638316,1651864329,745108256,168651108,1650619145,746086944,151615587]},{"sector":3,"length":512,"data":[980967995,1025534323,1836412448,544367970,1998612079,1935962735,1717922848,151653748,1814061674,151599468,1718172425,1919705376,2036621669,660961056,1864394098,1864397941,1886593126,224748385,1835206922,2019696752,225993772,1852442890,1178607717,1661536781,1931505773,2019634281,1077938701,151653690,543514986,808545388,1765476617,1869488230,1970217076,1718558836,1634759456,168650083,976841836,1879640589,1646293103,151587192,1953853243,543584032,1667330163,151653733,544239472,168651123,1987013897,746087456,1936090735,1679848549,1919251311,990460018,544501614,1970237029,1830840423,1919905125,151653753,1819042147,1953392928,1751200050,990447929,1852404336,1953702004,1735289202,1778977293,1814065261,221393260,1812598026,976236908,1879640589,1646293103,151653752,544239472,168651123,758843917,1394617645,1701998452,1852140576,543716455,1914728041,1936287589,1936876916,168626701,757935419,1701147424,1629516653,1953063456,2003727648,543519593,1830842228,1718183023,1701978233,1953720679,544436837,1629513321,1650811936,1701275509,1936269413,1853190688,1735289198,758843917,1646275885,1293972597,1162092627,541545794,1936027492,544500000,1998615393,225209445,543582474,151653680,544632685,1529641059,1936156018,1396929070,151653725,544238947,1529641059,1685091184,224224610,1852442890,1869488250,1835492722,1718183023,151653753,544238947,1734701659,1232219763]},{"sector":4,"length":512,"data":[824991056,224931888,1852442890,1869488250,1835492722,1718183023,1695157625,1718183022,1829308941,1528854127,1936156018,1480749614,2019830877,1829308941,1528854127,1936156018,1480815150,2019634269,1869482509,1835492722,1718183023,168639097,758843917,1377840429,1852405605,1752440932,1768300645,168650092,1829308941,1629517423,842280056,157823024,1936472841,225142117,1870137610,2019762290,225993516,1870137610,2019827826,225993772,1852377354,825368692,218762600,1869416714,2019827830,1751527468,1627982349,1679844462,1768172664,1829308941,1663071855,221523052,1752369418,1768169586,225207084,1684080906,1769152612,157901868,1769159433,544760890,1948283753,1629513064,1701995620,1948283763,1701978223,1948279905,218762607,757938954,1698832429,544106855,1886351212,1702260512,1751326834,1936420469,544175136,1684104562,168626701,825322604,151653690,544632685,858548321,151611494,1634038331,1919295588,1713401199,543517801,1869901417,978535456,1143555368,151653720,544632685,808220771,808478054,990447976,1684104562,544240928,1948282740,544434536,2037277037,1954112032,168653669,1987013897,745759776,168651123,1953392905,1748054560,168626701,1684300041,745108256,811951664,990447976,1953394551,1919907616,1852383339,1869770784,1952671092,1831691365,560292975,1661536781,1629515885,2019765368,1778977293,1819025509,153104689,1718172425,1684956448,543584032,1701603686]},{"sector":5,"length":512,"data":[1634038304,1684367459,168626701,757935419,1869366048,1948280179,1713399144,543517801,543452769,1768843622,1965058163,168636016,1819019789,221917745,1869416714,1751195766,1751462700,1664813321,1702063980,1818846752,151653733,544501353,224932146,1970276618,1931503731,151593075,1936028219,1701998452,225666080,1869613322,1935941744,1913195021,151614565,1868839689,168650094,1869351437,1768318049,1696621932,225469550,1812598026,1885626735,1881173351,224620402,990514442,539831597,1701603686,544434464,1163412782,544370464,1297040174,758843917,1126182189,1702063980,1701344288,1818846752,218762597,1970276618,1629513843,151653752,544632685,858548321,151611493,1869374267,1713399155,224750697,1852377354,825368692,151653736,544239472,151615586,2019834633,544760378,1948283753,1713399144,543517801,1735288172,168650868,758843917,1629498669,1937074788,1480925300,1769152581,1646290298,808591481,1814063152,543517545,1143821133,1345278799,1329864771,1162092627,541545794,1936027492,990514478,539831597,1936287860,544434464,1701736292,1667588640,1702065505,1701344288,1887007776,1818321769,1163412768,1634035744,544367972,1702521203,544434464,1747988530,990514478,539831597,1931506793,1819635560,1701257316,1752440948,1701322853,1919247457,2053731104,1919295589,1948282223,1159751016,1746945368,1701077349,1752440946,1751610735,758843917,1696607533,544105846,1952540788]},{"sector":6,"length":512,"data":[1970239264,661546092,1667309684,1853189987,1868963956,1634738290,1684368227,544370464,1886220131,1936942450,1159750757,1713390936,1936026729,168626701,1936028681,1717248116,1701145705,744322168,1599363141,222648389,2053769482,155598880,1765476617,1869488230,1697521780,168650104,1651864329,746086944,1747988530,1929972237,1679843938,221260920,977289226,168626701,1937076233,2019696744,1879640589,543716213,168654948,758843917,1663053101,1701015137,1969430636,1852142194,1919950964,1936024431,1965564019,1936026734,1752440947,543519333,1847620457,694513263,758843917,1948265773,544434536,1819044215,1936482592,1970282607,1885544564,1633820789,1763732323,1701978222,1831693409,224748655,151653642,1819042147,1685285152,1735746149,1818584423,1701077359,151653732,1075870314,151653702,1819042147,1701996064,1835363685,1077938701,218762554,757938954,1816338477,544366949,1768383858,1919251571,218762611,1869416714,1768169590,1717989164,544499059,1936156018,1829308941,1663071855,1769155704,1718576506,1734701600,539959411,151653682,544370552,1630304353,151653752,544236914,1936684147,218762615,1869613322,1870078064,1881171058,1528853108,1936156018,1480749614,151653725,544239472,1685221239,1920233504,1701993248,1915646823,224221251,990514442,539831597,544762182,1763733621,1919251566,1953527154,1667593760,1936879476,544106784,223368016,151653642,544632685,1126984051]},{"sector":7,"length":512,"data":[156649795,1684093705,1936028260,1718558835,1769107232,1634625895,1313415276,858923092,1684955424,540291616,544106792,693130064,1829308941,1679849071,1718561897,1952805734,1853190688,875705138,1829308941,2004055663,1829308941,2004055663,1829308941,2004055663,1829308941,2004055663,168626701,757935419,1952661792,543973749,1735357040,544039282,1684107116,778530409,1934958624,1752440933,1329864805,1852383315,1920099700,779382901,168626701,1987013897,746086688,825254452,990447976,1684107116,1869770784,1835102823,1829308941,1679849071,1413753976,990447937,1936090735,1864397925,1768300646,1948280172,1869357167,168649825,1987013897,746086944,1936090735,1696625765,1650681208,990473068,1634886000,1702126957,1818370162,225141615,1852377354,825368692,151593064,1634692155,1953046628,1778977293,1075864430,151653702,544238954,1700753257,1919906418,1765476617,1919230054,225603442,977289226,1661536781,543976545,1702126963,1717923955,218762604,1869416714,2019631222,225473324,1970473226,2019631202,980640812,1397773147,224220737,1835206922,2019631216,1747990572,1778977293,1178607714,990447881,1763731049,1634869358,224749422,1869416714,2019631222,1747990572,1077938701,151653690,544632685,1634759515,1937074788,1630297460,151653752,544433516,1680632179,1685221239,1920233504,2019908384,1818387301,1936928363,224227443,1869351178,544699236,1530557285,157116787,1701985033]},{"sector":8,"length":512,"data":[1702260579,2019631218,1829308941,1528854127,1936156018,1480684078,2019634269,1829308941,1528854127,1936156018,1347645998,1769155677,1829308941,1528854127,1936156018,1397977646,1936010333,1812531725,1931506533,2003053673,543453807,544371824,1702389083,1802265187,1769169710,168648048,1987013897,1701993248,1915646823,744312905,168651123,1987013897,1701993248,1915646823,744313667,168653669,1987013897,1231182624,1567910254,168636460,1937076233,1936924776,1879640589,1696624751,151653747,224619619,151653642,1819042147,1952802592,225473392,1668811018,1629513576,2019699832,1832585481,1629517423,2019699832,1829308941,1528854127,1685091184,744318306,168654945,1987013897,745104416,1936090735,1914729573,779315045,223560818,1953696010,225932143,1953696010,158823279,1916471561,779315045,223561074,1633880330,1931504748,1936749669,1734501488,168626701,757935419,1852392992,543716201,539914357,1952797472,1919251488,1634625901,1852795252,1684300064,1936942450,218762542,1869416714,2019631222,842347052,151611442,1952805691,1953392928,1970434661,1981838448,1869898597,842145906,1829308941,1679849071,1718561912,1952805734,1953392928,168636978,1953392905,1748054560,1829308941,1679849071,1885023347,1650749555,168648037,1869416763,1870078070,1881171058,1679848052,1415264883,727075152,1865178416,1702061670,1852383348,221393524,1869416714,1870078070,1881171058,1679848052,1415264883]},{"sector":9,"length":512,"data":[727075152,1680629040,151653752,544632685,1685221239,1920233504,980640800,1230001243,1563568982,225665836,1970276618,1931503731,151653747,544239472,168653668,758843917,1394617645,1965061221,1852383344,1634301033,1684086892,1936028260,544433523,544370534,740778279,660875040,1851858988,1965498468,1868767271,1851878765,221148004,1930038538,1886745701,1969512799,168639034,1987013897,745104416,1936090735,1629516901,1684300127,151653746,544632685,1865181555,1702061670,1701978228,1915646823,168644681,1937076233,1768169576,1829308941,2004055663,1829308941,2004055663,1829308941,1629517423,1918577784,779315045,1565737842,1929972237,2004053876,1879640589,1931505775,151653737,544632685,858552419,168636970,1885696521,1987013920,168654707,1952805385,168626701,1684107116,544040816,1885630053,168626701,1702126963,1717923955,1919950956,168649583,2053731081,1718775909,990447904,1752397168,168649830,1937076233,168650344,2053731081,1718775909,990447904,544239472,1919907684,1953505380,1918574706,779315045,1565279858,1879640589,1528852591,1936156018,1279685166,151653725,1702521203,543584880,1832585481,1679849071,1685221239,1920233504,1701993248,1915646823,744312915,225473381,1869416714,1918574710,779315045,1565545330,158364460,2003790907,758526240,544500066,1159751279,1998606419,543976553,1864394082,2003985782,1953786226,168652389,1952805385,1702038029,1886610804]}]],[[{"sector":1,"length":512,"data":[543975013,1885630053,168626701,1768189541,218762598,757938954,541925421,1835888483,543452769,1869422637,1664050550,544829551,1869440365,221149554,990514442,539831597,1936877926,1751326836,543908709,1948280425,1701995880,544434464,1701998445,1634235424,540090478,1969713761,1953391981,758843917,807415085,544370464,1918967857,1701672295,544437358,543519329,1684955496,543450476,1948285282,656434536,1666916429,660436336,1685021472,218762597,1835887882,1869770784,1762266467,1330454630,1163085124,1145914196,1661536781,1629515885,1380133996,1778977293,1634541690,1970366563,226062949,1869416714,1751195766,225206572,1919879434,745038112,1330401108,223495511,1835206922,1751195760,661530412,1778977293,1075864942,151653734,1935961964,151653730,1819042147,1802003232,225210213,1869416714,1751195766,154217772,1818442505,544366949,1919971171,1936024431,544370547,1734437990,1778977293,1931505773,1834972261,168649584,221921344,1835206922,1751195760,661923628,1778977293,1830839662,151587121,1701339963,1763732323,1852776550,824211820,1735549216,1852140917,151653748,1935961964,151653730,1819042147,1802003232,225210213,1869416714,1751195766,1634556716,1852401763,1869438821,224224612,1851853066,1751195748,1701195820,151653736,544238947,841771105,1778977293,1702043749,1886216052,990447971,840984169,1864382008,942874738,1695157558,1919906418,221918058,1835665674]},{"sector":2,"length":512,"data":[1835212912,1919246180,225603442,1829375242,1902666593,2037540213,151653690,544632685,1865181555,1702061670,1936531572,942684263,151653688,544632685,1529637985,1751343469,1600482921,1701080941,151653725,544238947,808217697,1778977293,1178607717,990447881,941647465,221788208,1869416714,1769152630,1717989164,544499059,2020045677,168638008,1684300041,745300256,220672039,1869416714,1935351926,1630297449,1074400620,168639040,1818321673,1868767340,1953724784,1735289202,1933248800,1681796457,151653737,544632685,1865181555,1702061670,1869488244,1970300511,1829308941,1629517423,1834691692,1600676705,1834956600,1566925935,1661536781,1629515885,825044076,1778977293,1178607717,990447881,1847617129,1868767343,1668248176,1869837157,151653746,544632685,1865181555,1702061670,1634214004,1885757299,151653749,544238947,1529637985,1751343469,1600482921,1701080941,151653725,1075864938,151587142,543582523,544432488,1919971171,1936024431,544370547,1701667187,544432416,1668248176,1869837157,151653746,544632685,1865181555,1702061670,1634214004,942825331,1074400567,168639040,1818321673,1868767340,1953724784,1735289202,1933248800,1681796457,151653737,544238954,1937012080,1701734764,1664813321,543976545,1937012080,1684955424,1769304352,218762612,1667329290,168639080,1818321673,1701257324,1954112116,151653733,1819042147,1802003232,225210213,1869416714,1818304630,225207340]},{"sector":3,"length":512,"data":[1835206922,1818304624,1634556716,1852401763,168648037,543255049,1869771365,154364530,1818508041,1937075488,1700929652,908931104,1829308941,1528854127,1751343469,1600482921,1701080941,1818307677,1702050569,1634541684,1852401763,2037653605,168650096,1987013897,745038112,151612513,1952805691,1886348064,1701015410,1919906675,1887007776,1930038629,1834972261,221930352,1835206922,1751195760,1634556716,945776739,168647991,543648265,168642112,1987013897,1634556704,945776739,1869438775,744318308,168650849,221921344,1701972234,218762612,976317706,1879640589,543716213,168654945,1937076233,1769152616,1661536781,543976545,1685349735,1685221239,1661536781,543976545,1885956979,221276279,1835206922,1818304624,223494956,1869613322,1769152624,1879640589,1629515887,151653752,1830839658,543712097,1782253833,544238965,824206953,1735549216,1852140917,1695157620,1718183022,168626701,221917805,1633880330,1881173100,1702064737,151612771,1918988347,1629513075,1836410738,1937010277,1396975648,692398138,539773267,674911045,1229203781,1160257580,693650217,1879640589,543716213,168654947,1059087977,168643920,1818321673,1936269420,168652144,544893449,168642112,757935419,1146049568,1679833679,1986994287,1634497125,1852403824,1751326823,543908709,1881173609,1702129522,1684370531,1685024045,151653733,224619619,1835665674,862789744,1077938701,1695157562,1718183022,1829308941]},{"sector":4,"length":512,"data":[1663071855,221523052,1752369418,2019827826,225207084,1684080906,2019827812,158884396,1886731017,544367984,1646278193,544437353,1679844975,1769239397,1769234798,168652399,1987013897,746086688,168651123,1919447817,746086688,168651875,1987013897,746086944,168653668,1684300041,746086688,168654946,1886216969,746086688,168654948,1701734921,154365216,1765476617,1702305894,1869507360,1752637559,543712105,1814066025,1701278305,151653746,544632685,1932294241,151653737,543452769,808217697,168650854,1987013897,746086944,168651108,1684955401,745300512,224945712,1835206922,1818304624,225206828,976448778,1879640589,1663070319,151653752,1718116716,1879640589,543716213,168653668,1937076233,1936007272,1879640589,543716213,153121651,1935948553,540883488,168653667,1886351369,225666080,1633880330,1679846508,1667328111,990447979,544499059,1969382756,1701144423,1763734311,840987758,875704115,1879640589,1696624751,151653747,544239472,168653668,1059087977,168643920,1886216969,980640544,1682006619,842232420,221260893,2053769482,1597205792,151653681,909652782,1929972237,224815201,1634339082,1178607717,1627982349,1696621668,1697409395,168654947,1684300041,1768187168,2019779884,1929972237,168649844,221921344,1701972234,1869422704,543322998,1530557285,1567188069,1935941676,1936022330,168648041,1987013897,1696621171,1700477555,744319332,980640800,1769170267]},{"sector":5,"length":512,"data":[151653725,224685155,1835665674,1701126256,168649008,808988169,168638008,828322669,1695157562,1718183022,1929972237,224815201,1634339082,1178607717,990447881,1713399401,1635218031,1663067250,544829551,1327526761,151653707,543450209,1663854963,151653752,543450209,1663854948,151653752,224687219,977289226,1913195021,1830842469,1651734127,1681590537,1752440943,1869422693,168650102,1987013897,151609971,1852783369,1869422693,1646290290,224752761,1818429706,151587172,1936028219,1701998452,1634493984,151653735,544238954,1630561637,1916471561,1869902693,1679844722,1851859059,1936007268,1684955424,1684960544,1752440943,1852383333,1869619316,1702129257,1634214002,168651619,544042349,1885630053,168626701,757935419,1663061536,1634561391,757097582,1634231072,543516526,543516788,1701667182,543584032,543516788,1735357040,544039282,1852400994,1701060711,1734833506,221144165,1124732170,1414745679,1734701856,1953391981,2019887629,1814066036,1818583649,1954112032,151653733,656433764,1163412782,1480928295,1480941396,151653701,656433764,1297040174,1480928295,1329815380,1124732237,1414745679,1684956448,218762611,543582474,1447645764,1696617029,221257841,1846152458,1919950958,168649583,1987013897,745104416,155276356,1701067529,1852404851,1869182049,1684086894,1936028260,218762611,757938954,1866670125,1629518192,1663067246,1852796513,1818321769,543521385,1701603686]},{"sector":6,"length":512,"data":[1701667182,218762542,829320714,151653690,544238947,1126984801,151653714,1847616874,151597934,1718172425,1684956448,543584032,1701734764,1661536781,543976545,1702061673,990447984,1667590243,1868963947,1702043762,1634886000,1936879476,1634759456,539780451,742539604,1836016416,539779437,1025518651,1778977293,1852711013,151587123,543582523,543452773,1713399407,1852140649,224750945,1835206922,1818304624,657401644,1778977293,1852711013,151587123,543582523,220671783,1835206922,1818304624,660678444,1778977293,1178607714,990447881,1847617129,1814066287,1919252335,1935762208,151653733,544238947,657222753,168634234,543255049,151602752,1768176393,225408116,1851853066,1818304612,1431262252,1380274256,1664813321,1702260335,1948284018,1886724207,544367984,1702060387,1077938701,151653690,1936684147,151653730,1935961964,151653730,544238954,540110446,1648036105,543908705,544370534,1701998445,168626701,976449134,1829308941,1629517423,154152044,1970158345,1948281964,1768780389,1702125934,1701344288,1818846752,1835101797,1953701989,1735289202,1929972237,1651732340,1829308941,1998616175,543453807,544371824,1702389083,1802265187,1684890414,1818845556,1768172637,1634941705,1931502966,1953653108,543584032,1835888483,543452769,1818845556,168626701,757935419,1952793632,1768780389,1713399150,543517801,1702131813,1869181806,218762606,1970276618,1679845491,151653737]},{"sector":7,"length":512,"data":[1752397168,225014560,1835206922,1768169584,1096041516,168636715,543517193,1681092206,990447904,1847617129,1768300655,1634624876,1629513069,1818304628,151653740,544238947,1143761252,892027220,1778977293,1852711010,153117491,1718172425,544173600,1702131813,1869181806,1848123502,543518049,544173940,1919903859,168634740,1634036745,746087456,761881691,168647989,1987013897,746086944,1936090735,1696625765,158561400,1701339963,1713400675,773878383,541415493,543452769,1297040174,1829308941,1663071855,221391992,977289226,1879640589,543716213,168654947,1987013897,745108256,168654946,1987013897,745104416,168654948,1684300041,746086944,151653685,544632685,875326563,1913195021,544895077,1936747875,151653730,544632685,1529637985,224225651,1869613322,2019762288,1778977293,1852711034,168649779,1869573129,1111498864,1852705293,221930291,1869416714,1818304630,1415071020,1213484895,168645189,1681092206,151653690,544632685,1818846811,1954047333,1818307677,1879640589,1931505775,218762601,757938954,1766203437,1752394094,1701344288,1663061536,1634561391,168649838,1829308941,1679849071,1718561897,1952805734,1852402720,1970233189,151653748,1752397168,225010720,1701054730,1769152611,1077938701,151653690,1935961964,151587170,1886348091,1752440953,1701978213,1852399981,544367972,1814065012,1600482921,225736047,1953696010,224555887,1835206922,1818304624,223494956]},{"sector":8,"length":512,"data":[1852442890,1111498853,1879640589,1931505775,218762601,757938954,1699946541,1886724212,1111705120,168636019,1829308941,1679849071,1664429161,151653736,1819042147,1181697056,151601731,544171067,1936877926,1128669300,151653698,544632685,1702132066,1920233504,1701993248,1915646823,808147009,1818307677,1829308941,1679849071,1664494697,151653736,1819042147,1181697056,151601731,1667593019,543452783,222446406,1869416714,2036473974,1881171316,1528853108,1936156018,1480684078,744304939,168651873,758843917,1126182189,544829551,1835888483,543452769,1818845556,218762542,1869416714,1769152630,1717989164,544499059,1701734764,1953853279,1879640589,1679847535,151653737,1752397168,225010720,1852377354,1768169571,1077938701,151653690,1935961964,151653730,1936684147,151653730,544238947,1126984801,151653714,543518314,151601728,1718172425,1953459744,1684956448,543584032,1769108595,168650606,1886351369,158884128,1916471561,1987011429,1864397413,1142973548,151653705,1734894456,746086688,168651108,1651864329,746086688,151611748,1836016443,1702131056,1852140576,543716455,1948280431,225208673,1701054730,2019631203,1678313997,1629512549,151653752,1936684147,151653730,225731954,544108042,1885630053,168626701,757935419,1651856160,1953853298,543518313,1881173876,1701015410,1629516659,1128669294,168635970,757935419,761881632,1111705150,168626701,1128689476,1919950914]},{"sector":9,"length":512,"data":[168649583,221921344,1869351178,224555876,1835206922,1818304624,223494956,1701447946,929984032,990447881,1696622185,168649838,1818321673,1718165612,225469811,1701447946,155336736,1765476617,1702043750,1634886000,225603444,1835206922,1818304624,657401644,1778977293,1852711013,153104433,1718172425,1769435936,543712116,1918986339,1702126433,1846152562,221919086,1701054730,1769152611,1829308941,1629517423,959589496,157823280,1634745097,543519602,1701603686,1701667182,1661536781,543976545,1668509540,225209441,1970276618,1629513843,151593080,1986097979,1279336549,1077938701,151653690,1935961964,151587170,1768649531,1769218160,1931504748,1918988389,1919906913,1661536781,1629515885,1380133996,1778977293,1178607717,990447881,1696622185,168649838,1818321673,1718165612,225469811,1701447946,155598880,1765476617,1702043750,1634886000,544370548,1918986339,1702126433,151653746,544238947,657222753,168634159,1701734921,155336736,1765476617,1869488230,2004033652,1751348329,168653409,221921344,1701054730,1769152611,1879640589,1629515887,151587192,1667592763,1919252079,223101216,1835206922,1818304624,168636716,1701734921,155598880,1765476617,1869488230,221323380,1701054730,2019631203,1077938701,151653690,225731954,990514442,539831597,1684955464,1629513068,1769435936,543712116,1718182952,1701995878,2037150830,168635945,1852705293,221917233,1869351178,224555876]}],[{"sector":1,"length":512,"data":[1835206922,1818304624,223494956,1701447946,929984032,990447881,1696622185,1864393838,1953701990,1735289202,1661536781,543976545,1702061673,151653744,1847616874,540029294,1765476617,1851859046,1701344367,1702043762,1634886000,225603444,1869416714,1818304630,168636460,1869902601,168649331,1667589129,225014560,1869351178,224555876,1835206922,1818304624,660678444,1778977293,1178607714,990447881,1847617129,1629516911,2003790880,1663070821,543519585,1953785196,168653413,1886216969,745300256,220690983,1634339082,222707744,1851853066,1818304612,1431262252,1380274256,1664813321,1702260335,1948284018,1886724207,544367984,1702060387,1077938701,151653690,1936684147,151653730,544632685,657225825,220667936,1953696010,225932143,1953696010,225932143,1953696010,225932143,1953696010,225932143,1953696010,225932143,1870137610,2019631218,225993004,1953696010,225932143,1953696010,225932143,1953696010,225932143,1953696010,225932143,1701972234,151587188,1952805435,544109173,1752459639,1028407584,1141509424,1111705199,1684956448,218762608,1684956426,168650345,758843917,1327508781,1836016416,1684955501,1864379680,1970304117,1869881460,1328498976,1919905824,168636020,1869548045,1869770784,151653731,544632685,808217698,1829308941,1629517423,1935354984,1563569513,1681590537,1769239401,1936291175,1864835176,1629497188,656434286,660873327,1627982349,1629512814,1330916456]},{"sector":2,"length":512,"data":[1162891349,151653714,544238947,657221729,168634191,2054056457,1601138464,151653682,544632685,1630300257,151653740,543452769,1412196449,1347441999,168645189,1886216969,745038112,220682023,1701447946,1601138464,151653681,544238947,1667329371,1701734760,221457501,1651116298,1601138464,151653682,544238947,657221729,168634180,1701734921,1601138464,151653682,543387241,168654946,828338031,151653690,543387241,168654946,1818321673,1802707052,1752658025,224752745,1601138442,168639026,1818321673,1701257324,1919907700,151653732,1752397168,225993760,1633880330,1931504748,1668311403,812477807,1661536781,1646293101,221326444,2053769482,1601138464,151653683,1864393066,221536111,1633880330,1730178156,2036495461,151610740,1030513723,1702132066,1661536781,543976545,1701537891,151612527,1886938427,544498533,543452773,1814062703,543518313,1701995880,2013858317,543647843,1680636001,990447992,1025535073,1954112032,151653733,544239472,151615588,1701985033,1702260579,1869619314,1847620722,1700949365,151653746,544503151,1630304356,151653740,225731954,1601138442,168639027,1818321673,1701257324,1919907700,990447972,2000517220,224686703,1633880330,1663069292,1868917608,990447980,1701869669,1696625763,1864393838,1768693862,1746953582,224752229,1668811018,1629513576,2019830904,1631258889,540876920,1685221239,1879640589,1679847535,151653752,544503151,1630304356]},{"sector":3,"length":512,"data":[151653752,225731954,1601138442,168639028,942878217,151653686,1819042147,1952802592,1919907684,990447972,1681553506,2003058040,224686703,1633880330,1663069292,1868917608,990447980,1701869669,1696625763,1864393838,1768693862,1746953582,224752229,1970276618,1646291059,151653752,1752397168,225993760,1869613322,1634017392,151653752,544239472,168654948,1953853193,746087456,225993061,1701972234,151653748,942684206,1862929718,1852121199,168652900,758843917,1696607533,1920299886,1702043749,1852140903,1852383348,542655008,1998615401,1702127986,1701601889,758843917,1864379693,540701813,1920098627,540097913,1931503209,1701668709,1847620718,1998615663,1702127986,1701601889,758843917,1830825261,1952999273,1701602080,1210085985,1919899497,1145383012,168634697,1718159885,1297104672,168626701,1769104758,1702066534,1881173351,224620402,1633880330,1763732588,225276019,2053769482,1601399072,168652146,942812681,151653686,1752397168,225992992,1970276618,1679845491,151653737,1752397168,225468960,1869416714,1885479030,225473324,1970473226,1886593122,168638508,1987013897,745104416,168652915,2053731081,1718775909,990447904,543253868,745104485,1567188059,2037590048,2037280622,1868963949,1869422706,544766582,745104485,220817764,1701579018,1768169569,1768184620,151653725,544632685,808220769,1749168176,1731922185,1679848549,1919120229,1869901929,151653746,544501353]},{"sector":4,"length":512,"data":[224932147,1667893514,222707744,1702103306,1646294131,543519865,544371824,728327259,942431541,1868774153,1931502948,1701668709,222262382,2053769482,222707744,1851853066,2036473956,1881171316,1528853108,892037476,1177562205,1916495923,1952805733,1146045216,1868770117,1919903342,1735289197,1953784096,151653746,1646293615,543519865,544371824,728327259,841768245,1702050569,1920409716,1650553961,168650092,1987013897,746086944,1919120219,1751348321,1567384947,1829308941,1629517423,808463480,224936752,1852377354,825434228,1074400616,168639040,1634036745,168650102,1886351369,225010720,1869613322,2019631216,1936263693,980251231,1913195021,168653925,808988169,168638008,1769104758,1702066534,1696623975,225469550,1930038538,1836217445,1835492723,151653690,909652526,1829308941,1646294639,1935879288,1668504378,1668571506,1818588008,1930038621,1836217445,1919181921,151587130,757939259,1702043693,1702043764,1952671084,1763734127,1480728686,544175136,1835492723,544501349,1919181921,544437093,1142976105,151653720,544632685,1680636003,151653752,543975539,875329636,1929972237,1663070824,842083448,1829308941,1629517423,221719672,1852377354,825434228,151653736,225731954,942541066,221657136,990514442,539831597,980710767,1028407584,1114196000,543519865,1629513327,1769108596,1702131042,1718558835,1920295712,1953391986,223560480,757938954,1970217005,1512061556]},{"sector":5,"length":512,"data":[540097862,1679844969,1919120229,1869901929,1936269426,758526240,225732962,757938954,1633886253,1684368492,544825888,1411394640,223682604,757938954,1869422637,1768319332,1159754597,539777089,168646722,1701251597,1634952052,544371828,1668248176,1829308941,1646294639,1918577784,779315045,1565737842,1701251597,1818588020,1920234593,151599674,758921993,1629498669,1931508078,1667591269,544370548,1109421673,151653720,544632685,808217697,151653680,544238947,1667329371,1701734760,221457501,1651116298,222707744,1633880330,1763732588,225276019,2053769482,222707744,858654986,168638008,1918987273,2019648800,2019714348,1929972237,1696625256,824997985,151653686,942684206,1074400566,168639040,1936028681,1818304628,1747989548,1913195021,168653925,1668572519,1953784179,1852121202,168652900,1852115469,543582564,223170619,990514442,539831597,1684104562,1229282080,1568156496,1818326560,168650101,757935419,980314400,1029194528,990514552,539831597,1734701659,1131556467,1128095059,990514515,539831597,1734701659,1697144680,1567648041,1346979133,758843917,1864379693,540701813,1530743873,674911043,1346971973,990514525,539831597,1113408859,1163607384,726681949,990514552,539831597,1819042147,1646290021,542384249,543452769,218762567,1952802570,1768256355,1954112112,1919950949,168649583,1937076233,1936007272,1829308941,1696626287,1918577779,779315045,1565737842]},{"sector":6,"length":512,"data":[1929972237,1885698665,156788338,1869429513,1650794614,1918577784,779315045,1565542770,1829308941,1646294639,1918577784,779315045,1565542770,1718159885,1297104672,1946749453,544502629,1396925019,1920234561,808725597,151653736,1075870314,151653702,909652782,1829308941,2020832879,2019779872,225993516,1684080906,1650794596,1667574904,151653752,544632685,1697410145,1700477555,224229474,1869613322,1936007280,1913195021,168653925,808988169,168638008,221921344,1684956426,168650345,1684300041,746086944,168654947,1987013897,745300256,1530557285,224229474,1869613322,1936007280,1913195021,168653925,1668572519,1885955443,1702132066,1684956448,218762608,757938954,1702043693,1163599988,2016104521,1635131485,224753004,757938954,1852383277,1480794170,168654909,757935419,1028407584,1702132066,544175136,1953067639,990514533,539831597,1734701659,1131556467,1128095059,990514515,539831597,1734701659,1232219763,1161649488,168644681,757935419,1685024032,1701406313,1163599987,223887965,1930038538,1935897701,1651534181,543519865,1668248176,1879640589,543716213,168653669,1987013897,746086944,1734701659,1131556467,168648019,1059087977,168643920,1818321673,1702240364,2036754802,1835492723,1778977293,1668489315,828334697,1852115469,224815460,1869416714,1936007286,225993260,1769146634,1919968634,151607398,1987013947,2019714336,1701993260,1915646823,224219209,1869416714]},{"sector":7,"length":512,"data":[2019696758,1701993260,1915646823,224219209,543582474,223170623,1702103306,1528853619,1095975778,1567782004,1747989548,1778977293,1936269434,829450591,151653686,909652782,1829308941,2020832879,2019779872,225993516,1869416714,1936007286,1650809658,1667574648,1630297464,1930038636,1600285027,168639025,1886351369,225666336,1701972234,151653748,942684206,1762266422,1885953907,221918769,1684956426,168650345,1684300041,746086944,168654947,1987013897,980641056,1568170587,225206572,1869613322,1936007280,1913195021,168653925,1668572531,1885955443,1702132066,1684956448,218762608,757938954,1920409645,543519849,2036473953,673211764,539577409,1109423201,793066072,168646724,757935419,1414876960,1212227642,1684827965,1818326560,1629513077,1752440948,1814066273,1952539503,225341289,757938954,541270061,1646290537,543519865,1819635555,1948741220,543515168,1953067639,225338740,1997147402,1702127986,544040301,1668248176,1879640589,543716213,168653668,1059087977,168643920,1818321673,1936269420,168652144,544893449,1885955447,168638001,1818321673,1702240364,2036754802,1835492723,1832585504,543517537,1629517922,1769109280,1650550132,1931502956,1701668709,168653934,543386121,1701736292,1879640589,543716213,168654945,1818321673,1701257324,1818588020,1920234593,1879640589,1629515887,151653752,1998617194,829450597,151653686,909652782,1829308941,1679849071,2019699827]},{"sector":8,"length":512,"data":[1829308941,1629517423,1700473960,224229476,1869416714,1700470902,744323172,168651873,1886216969,745300256,2019845467,151653725,544238954,1701736292,772344333,909652024,1702300173,909209705,1695157562,1718183022,1829308941,1679849071,2019699827,1879640589,543716213,168654946,1987013897,746086944,168654948,1987013897,745038112,1568170587,1829308941,1528854127,744323170,168651873,1886216969,745300256,1568170587,1879640589,1646293103,1678380408,979725935,1879640589,1679847535,151653747,544894570,168642112,1952805385,1077938701,151653690,224621683,1701972234,1997147508,1702127986,544040301,1885630053,168626701,757935419,1634038304,2036473956,1629513076,1480728692,1480869178,1953392928,1279336559,168626701,1684104562,544040301,1668248176,1718159885,1297104672,1661536781,543976545,1937007975,1952541797,168653428,1768189541,151653734,1752397168,225666080,1869416714,1935941750,225993260,1769146634,1919968634,151607398,1987013947,2019714336,2019845420,1829308941,1646294639,2019830904,1718159885,1297104672,1778977293,723787898,151653683,908092004,151611447,1869429513,1818304630,1650809644,168648056,1768189541,151653734,544632685,1529637985,224229474,1869613322,1935941744,1913195021,168653925,1684104562,544040301,1885630053,168626701,757935419,1701339936,1763732323,1851859046,1701737760,1667592312,543450484,544501353,1634213939,1668227187,1701999971]},{"sector":9,"length":512,"data":[990514532,539831597,674911043,1346971973,544106784,1936156018,1396929070,1734701626,1232219763,990514512,539831597,540700265,809326660,1970217004,1142962804,1936538968,990514535,539831597,1819042147,1646290021,743448697,168645664,1934166541,2019913301,1953384816,1919950899,168649583,1987013897,746087200,168636717,1818321673,1701257324,1702060916,2036494441,168650100,1886216969,745300256,1749238576,1778977293,1936269434,2019913333,2019909488,168653929,1987013897,746087456,1936090735,1763734629,1832088686,168650611,1059087977,168643920,1936028681,1650139252,1950438211,744321652,224931892,2053769482,858465312,1678313997,909516898,151587176,1987013947,1701993248,1915646823,744312905,225993317,1684956426,168650345,1987013897,1701993248,1915646823,744312905,168654946,1853191017,1601206373,1953069157,151653690,225731954,1433618698,1886938478,863268425,1684956448,218762608,757938954,542122029,1835888483,543452769,1919950893,1701143407,1764237412,741238062,1768649504,1986994288,1663070821,795634785,796159593,1886351212,1920234287,543649385,1953721961,1952675186,695103337,218762542,544239626,1668248176,1829308941,1629517423,1818307688,1627982349,1629512814,1330916456,1162891349,151653714,544238947,657221729,168634194,2054056457,812675104,990447904,1886221674,543582496,544501614,1663062608,1634561391,168649838,1818321673,1802707052,1868787817]}]],[[{"sector":1,"length":512,"data":[224488813,1633880330,1663069292,1868917608,990447980,1701869669,1696625763,1864393838,1768693862,1746953582,224752229,1870137610,2019762290,158884652,1868774153,544501365,1852383280,1633904996,544433524,1663062608,1634561391,168649838,1886218761,829452320,168626701,976253040,1829308941,1528854127,1953718636,1566862691,1717989164,544499059,221278320,1633880330,1881173100,1702064737,158625887,1919957769,1936024431,1918967923,1701672295,225670254,990514442,539831597,1763733316,1128013940,1868774744,1047817845,1835627552,539915109,1919501856,1663071347,1801676136,1701344288,1887007776,1718558821,1936615712,1668641396,1852795252,218762542,829452298,151653690,1752397168,544760608,1933248777,543520353,168654947,1987013897,746087456,151598385,541869115,1970151485,1919246957,543584032,1702132066,1869881459,997156640,541606944,1919950909,2020173413,1634493984,221148007,543582474,223170623,1633880330,1730178156,1935897701,1920234593,1829308941,1528854127,1095975778,1567782004,225206572,2053769482,222707744,1869416714,1751392374,1599098924,1397900353,723540553,1599098912,1230196815,151653722,908092004,151611446,1869429513,1936007286,1918577769,779315045,1565542770,1077938701,1695157562,1718183022,1829308941,1931507311,1918577769,779315045,1565542770,1946749453,544502629,1663858787,151653752,544894570,540176496,1765476617,1869488230,1380982900,1836016416]},{"sector":2,"length":512,"data":[1684955501,1661536781,543976545,1853121895,1651800165,1829308941,1679849071,1718561897,1952805734,1919971360,168653925,1987013897,746087200,1163022416,1313164372,1913195021,1701736549,1633907488,168649331,1701734921,846229536,990447969,1847617129,1914729583,1915712613,795243621,1952805481,1879640589,1663070319,151653752,543387241,151615587,1702050569,1868767348,544501365,1869881393,1769497888,1869357172,1629515887,1919251558,1952805408,1952805423,1919496038,168653925,1937076233,2019762280,1778977293,1881174125,221393264,846229514,151653690,1819042147,1952802592,1954047342,990447970,1530743873,674919267,1885940069,1696607325,724267113,1886390797,221929778,1869416714,1768169590,1717989164,544499059,2036494448,225666420,1869416714,2019762294,1280331820,168644165,1885696521,1931502958,1651728739,1778977293,1881171310,153105776,1718172425,1953459744,1701736224,543584032,1936025716,151653733,544632685,1529637985,1345022308,1313164368,157102381,1952802619,1919902496,1886610802,1768189551,1646290798,543519865,1881173609,1718511984,151653743,1953719668,745300256,1348423760,1229342034,151653720,1075870314,151587142,543582523,544501614,1919950945,2020173413,2013858317,1679848047,1818307688,1966803209,1952539760,1752440933,1818632293,225666913,1701054730,1818501219,1778977293,1881176686,153105008,1718172425,1953459744,1953853216,543584032,1702132066,151653747]},{"sector":3,"length":512,"data":[544238954,842100848,1832585481,543519343,1851877492,540356896,1717924464,1936029801,1818851104,1633886316,543519605,1346838625,1074400582,168639040,1936028681,1818304628,1747989548,1778977293,1178607738,990447881,1847617129,1769152623,1679844730,1852141669,1668179300,151653753,543452769,858549345,168650854,1684955401,745038880,1331646544,1514754896,1715144992,1126199919,743197761,1701867296,1684955506,2053731104,758259813,539767870,910044468,1627982349,1629512804,1751395436,1077938701,151653690,225927779,1633880330,1629514860,1768252516,990447984,543450209,1948285025,1852383343,1970435187,1869182051,1869619310,1702129257,1852383346,692398112,168642899,1886218761,829452320,990447921,1746953591,543520353,1802707041,1634758761,543517794,1953721961,1952675186,544108393,1701995880,168626701,976580720,1661536781,1629515885,1714433132,151611494,1684957499,1667592809,1633886324,222260332,2053769482,222707744,1835665674,1886396528,151597617,1937074747,1851859060,1685221152,1918987881,1852383353,1970435187,1869182051,1074400622,168639040,1818321673,1701257324,2019913332,151609972,1952802619,1146047776,1195725344,1294946848,1954112032,151653733,543452769,1848405089,941651055,1664813321,1918985580,2003790880,544502629,544500066,1377855087,1713391429,1684825449,858728480,1043148064,691154720,2013858317,1629516399,808529004,990447976,757084719,790642221]},{"sector":4,"length":512,"data":[151653680,1953719668,745300256,224933939,2053769482,222707744,1835665674,1886396528,151597617,543582523,544501614,841967206,544370464,858744422,1077938701,151653690,544238947,808217697,224931939,1634339082,1886396517,151597361,543582523,1953723754,1914724640,1936287589,225600884,1702103306,1679848563,1347431528,1380204895,224020819,1852442890,1886396538,151593014,543582523,1647129139,1629516905,1701995620,1852404595,151653735,544238947,908880993,1778977293,1886396517,151587129,543582523,1953723754,1634496544,1679847017,829453161,151653686,544238947,875326561,168650800,543320585,825323632,990447904,1763731049,1919509614,544498533,1768383858,1919251571,1661536781,1629515885,808987756,151653736,1881170538,540029296,1765476617,1768169574,1530425459,677864818,224209267,1835665674,1886396528,151593017,661940539,1768169587,909209715,1734701659,1562997544,168626701,976646256,1661536781,1629515885,221588588,1701447946,946892832,990447881,1780508265,544502645,1767992432,1768169582,842231923,2013858317,1629516399,221523052,1702103306,1629516915,221719660,1852442890,1178607738,990447881,1847617129,1230184559,2036473922,168650100,1818321673,1852383340,1885955427,1077938701,151653690,544238947,875326561,168650800,543320585,825323632,990447904,1763731049,1919509614,544498533,1768383858,1919251571,1661536781,1629515885,808987756,151653736]},{"sector":5,"length":512,"data":[1881170538,540029296,1765476617,1768169574,1530425459,677864818,224209267,151587082,1953446665,2003985768,744846185,661940512,1768169587,842231923,1734701659,1562997544,1886390797,168639032,1818321673,1852383340,1885955427,1661536781,543976545,1701015145,168652905,976842864,1661536781,543976545,1701015145,168652905,808546416,151653690,1819042147,1668180256,225470821,1879706890,976302448,1829308941,1646294639,1918577784,779315045,1565737842,1778977293,1881174125,2016489840,168636767,758843917,1394617645,1768121712,1763732577,1920234350,1769235317,539913839,1952797472,1646289184,1801545074,1852403568,1851859060,1970413668,1853169774,543975796,1746953591,1763734633,168636020,757935419,978862624,1395213608,1027416137,1684300064,1936942450,1701345056,1629513074,1701995040,1869638497,544501353,1948283753,1700929647,1952805664,218762542,1869770762,1936942435,154810929,1010501897,539831597,1684370293,544825888,1718165588,544104736,542395977,1948283753,1700929647,1869770784,1936942435,168649829,1987013897,746087200,151653681,1752397168,225993504,829452298,828340273,151587130,1029194299,168645443,1987013897,745104416,1936090735,1814066277,1600482921,158627183,1702065467,1701344288,1835103008,1919033445,1886085477,1953393007,1920234272,1970561909,1629513074,1852383347,168642336,2053731081,1718775909,990447960,544632685,746087525,225014629,1869416714]},{"sector":6,"length":512,"data":[2019827830,225014572,1869416714,1818304630,1667444780,151653736,1819042147,1769109280,1701668212,151653741,544632685,1630301281,151653736,543387242,168642112,1987013897,745108256,1936090735,1663071333,2004119137,1702127986,168652898,1818321673,1868767340,1953724784,1735289202,1661536781,543976545,1937012080,1701734764,1778977293,1663070317,1869374573,168652911,221921344,1970276618,1629513843,151653752,544632685,824997985,1648036105,1851990128,151653748,1936684147,151653751,1702521203,1483108976,2017134857,543647843,746086757,225014629,1668811018,1629513576,1769155704,1929972237,1885698665,156788338,1953708809,224686959,1953696010,225932143,1869416714,2019631222,225993260,1953696010,225932143,1869613322,2019631216,1929972237,1651732340,1718159885,1297104672,1879640589,543716213,1734701659,1936535155,168648055,1768189541,151653734,1819042147,1853190688,1950025993,544434536,1751607661,1751326836,1701277281,1685024032,1851859045,1919889252,1919251488,1634625901,1948280180,1679844712,1735746149,560293223,1718159885,1297104672,1661536781,543976545,1668572519,1953784179,990447986,544499059,1769103734,1701601889,1396924960,1920234561,1829308941,1528854127,1095975778,1567782004,225206572,1869613322,2019827824,1661536781,543976545,1702061426,1936745076,168654917,1702063205,1661536781,543976545,1702061426,1936745076,1852115469,224815460,151653642,544370552]},{"sector":7,"length":512,"data":[1680636004,990447992,544499059,1734437990,1661536781,1528852589,1601074546,1567911529,1717989164,544499059,863268457,224883565,1852442890,1886396517,151597873,543582523,544501614,1763722051,1919251566,1953527154,1661536781,543976545,1851093833,1232107621,154367086,1936028731,2036473972,1629513076,1701978228,1915646823,1916425027,779315045,760236402,1718165553,1749238560,1778977293,1881174125,221458800,990514442,539831597,1768190543,2037539182,1936615712,1668641396,1852795252,1243619374,544502645,1629515620,1634890784,221144419,1879706890,976367984,1862863373,2036473970,1881171316,1528853108,1936156018,1279685166,744304939,1933248817,1931506789,1818717801,1953705317,1830842469,224748655,1633880330,1914727532,168652405,1987013897,746087456,1936090735,1763734629,1831957614,168650611,758843917,1126182189,1869442415,1634738286,1948284018,1768300655,1752394094,779121952,168626701,858878064,151653690,544238947,1853190747,1953392991,2019830877,1778977293,1881171310,154481008,1718172425,1836020512,1953439845,544367976,1702129257,1886745202,151653748,544239472,168654947,2019781129,1886396538,151598129,1768649531,1701978224,1953720679,1679848037,544238965,1344300649,1868767314,1851878765,151653732,1752397168,225993504,1633880330,1679846508,1919970677,225666917,1869613322,2019762288,1812531725,544239471,875655280,1648036105,543908705,544370534,1701998445]},{"sector":8,"length":512,"data":[1913195021,168653925,1886390797,221918257,1835665674,1886396528,151593009,1667326523,1868963947,1869422706,168650098,1886390797,221918513,1835665674,1702174832,1953392991,1882917129,1953393010,1936026912,1701273971,1868718368,1965061237,1886938478,1702126437,1852383332,1920099700,544501877,543452769,1953068401,168626701,1701015145,221933673,543582474,223170623,1702103306,1528853619,1095975778,1567782004,1747989548,1778977293,723787898,151653683,908092004,151611446,1852390153,1936007267,1695157609,1718183022,1762200077,1931502446,151653737,225731954,1628048650,1768252516,168639088,1059087977,168643920,1936028681,1650139252,1950438211,744321652,224931892,2053769482,222707744,858654986,168638008,1987013897,1696626810,1630304353,151653752,942684206,151653686,908092004,151611446,1684093705,1936007268,1634020457,1074400632,168639040,1768189541,151653734,543450209,1630300531,151653752,225731954,990514442,539831597,1853121895,1651800165,1193291040,1847620709,544503909,1702132066,544106784,1953721961,1952675186,544108393,1701999731,221146465,757938954,1700470829,543781725,1768235069,218762608,1952802570,1954047342,168639074,1937076233,1935941736,1829308941,1679849071,1918577779,779315045,1565737842,1718159885,1297104672,1946749453,544502629,1530557283,1095975778,1567782004,1747989548,1778977293,723787898,151653683,908092004,151611447,1869363977]},{"sector":9,"length":512,"data":[543322980,1769170267,1695157597,1718183022,1812531725,1651729519,1879640589,1679847535,151653747,225731954,544239626,1885630053,168626701,1142974057,1163282770,1902452818,168636448,758843917,1361063213,1836016416,1684955501,1897934112,779381109,168626701,1881174385,224620402,1762266378,1346314342,151653709,544632685,1702132066,1920233504,1885625120,1768188269,1818386803,1563503461,990457900,1651730788,1142973804,541674832,1802465128,1762200077,1528849262,1215254114,845901679,153115974,1870029115,1629512809,2003136032,1869572128,1752637547,543517801,1836213620,1952542313,224882281,1684956426,168650345,758843917,1663053101,1701015137,1751326828,660892777,1919950963,1936024431,1718165619,2037276960,758843917,1948265773,544434536,1819044215,1869767712,1869881456,1634038304,1869426028,1763730788,1701060710,1734833506,1763730789,1852383347,1869443104,168650084,1661536781,543976545,1701147238,225273197,990514442,539831597,1953719634,543519343,1702129257,1886745202,1702240372,1919906915,168636019,1829308941,1679849071,1718561897,1952805734,1953392928,1702257011,1829308941,1931507311,1718561897,1952805734,1953392928,224551284,1869416714,2019762294,1297436204,1398033993,1846152536,1769240677,221934702,1869351178,224555876,1869416714,1818370166,225206572,1684080906,1769152612,151597612,1768649531,1701978224,1864397939,1313415270,1163151700,151653709,1734894456]}],[{"sector":1,"length":512,"data":[745108256,168651108,1685023753,168654707,1987013897,746087456,168654945,1685023753,168654707,1751349257,1769152615,225010732,1835206922,1818370160,1748120108,1778977293,1869488250,1953719666,224752239,1851853066,2019631204,225993004,2053769482,1919905312,1869902693,168650098,1937076233,1935941736,1829308941,1679849071,2019634291,1829308941,1629517423,1818373228,1829308941,1629517423,892480616,151653736,544501353,224932146,1869613322,1935941744,1869482509,1953719666,979726959,1812531725,544239471,1954047342,225734249,990514442,539831597,1953719634,543519343,1836213620,1952542313,544108393,1919181921,779318117,168626701,1987013897,745108256,1936090735,1881175141,842166387,1701985033,1919906931,1702109285,1852403058,1869182049,1684086894,1936028260,151653747,544632685,1412196708,223758672,1869416714,225932150,1869416714,225932150,1869416714,1768169590,1380012076,156520005,1701985033,1919906931,1397760101,1718558800,1918988320,225734245,1869416714,225932150,151653642,544238947,1768711771,808213872,1778977293,1715478629,1829308941,1629517423,892349560,224931888,1852377354,808525940,1074400616,168639040,758843917,1377840429,1819042149,1868832889,539911534,1819042118,1919448096,1751610735,544175136,1953069157,218762542,544305418,1885630053,1852115469,224815460,1695157514,980707704,151653690,544632685,875329633,1747988579,1899694345,225732981]},{"sector":2,"length":512,"data":[1852377354,825368692,218762600,757938954,1481777197,1836016416,1684955501,1869881402,1701603175,1685024032,1718558821,1663062560,1634561391,673211502,1864382001,842211442,1953063456,1734701600,1702130537,220820338,1913261322,1919950968,168649583,1685023753,168649331,1818321673,1751326828,1819239787,1661536781,1528852589,1751343469,1566928489,168637228,543320585,1700755570,225732984,1829321482,1679849071,1718561897,1952805734,1852402720,1970233189,151653748,544632685,1865181555,1702061670,1701978228,942895975,151653686,1819042147,1886348064,1920234361,543649385,1769159433,1768177197,2013858317,1528853103,1685024114,1378639205,942890829,1195725366,151653715,544632685,657225825,153579040,1864514313,168632942,2054056457,222707744,1869416714,2019631222,1717970732,990447911,1717989154,1074400546,168639040,1869902601,168654707,1987013897,745300256,151653680,1936684147,151653730,1819042147,1953853472,1852402803,1913261413,2019909496,976909417,1913195021,168653925,1696626802,225469550,990514442,539831597,1663061586,1634561391,540697710,1886611812,544825708,542462022,1768383858,1919251571,1851859059,1953701988,1937077345,168626701,1881173618,224620402,543582474,1330925638,223499347,1869416714,1818304630,1769167660,151653725,543452769,1412197473,1347441999,168645189,1886216969,745300256,220680743,1852442890,1178607717,1762200077,1931502446,1074400617]},{"sector":3,"length":512,"data":[1829321280,1528854127,1952411250,1566929017,225206572,1684956426,168650345,1685023753,168649331,1818321673,1751326828,1819239787,1661536781,1528852589,1751343469,1563899999,221326636,1701447946,1601729056,1953069157,1778977293,1679847533,1919970677,1181968229,168645968,1696624242,225469550,990514442,539831597,1868767314,1851878765,539828324,1886611812,544825708,1830842991,1718183023,1701978233,1953720679,779317861,168626701,1881174642,224620402,1835206922,1818304624,223494956,1852442890,1178607717,990447881,1948280425,1701995880,1629516583,1918967918,1701672295,168653934,1886218761,1836409888,1734701680,1074400627,168639040,1684955401,745300256,1347768148,223495504,1835206922,1818304624,660088620,1778977293,2020745317,1661536781,1629515885,1311190124,151653671,1914725738,1762266478,1296900198,1347769176,151653712,544238947,657222753,168634189,1701734921,222707744,1869351178,224555876,1633880330,1663069292,1868917608,151653740,544238947,1935763547,2020437343,221326429,1852442890,2020745338,1769497951,151653748,544238954,1886221668,1936156018,223890765,977289226,1852115469,224815460,990514442,539831597,1629515361,1953064036,1634627433,1701978220,1953720679,1881174629,1835102817,1919251557,1935767328,1986619168,168652389,1678313997,1931502437,151653737,1935961964,151653751,543452769,1412200545,1347441999,1465864773,1829308941,1679849071,1718561897]},{"sector":4,"length":512,"data":[1952805734,1734701600,1701667182,151653747,544632685,1311537251,1163021653,1296125511,168645445,1885696521,1931502958,2004050275,1829308941,1646294639,1768172664,1829308941,1679849071,1718561897,1952805734,1852402720,1970233189,151653748,543518314,540177010,1765476617,1869488230,1868963956,543452789,1931505257,1684955508,543453793,1768383858,1919251571,1835101728,168653669,1886216969,745300256,153568551,1986083593,543451503,575882530,544175136,1713399138,1684960623,1919903264,1397039648,1864376905,1159864434,220352595,1852442890,1178607717,1829308941,1663071855,1935354988,168648041,1684955401,745300768,1347768148,223495504,1835206922,1818435696,659105580,1631258889,1684631414,1397039648,1869881378,543515168,1853189990,1868963940,1159864434,220350803,1701447946,846361120,1661536781,1663070317,1344744556,990447911,1768912481,1159864420,1948262995,1700929647,1970234912,1713398894,572551791,575689541,1778977293,1920082021,1074400562,1929984576,2004053876,990447881,1852404336,1701978228,1953720679,1847620197,224750945,1869416714,1818304630,656418604,1929972237,1651732340,1829308941,1646294639,1650142328,1431186296,1195725389,1162690894,758262355,168647986,1818321673,1802707052,1868787817,157379949,1802713865,1998614633,1702127976,1634759456,225666403,1835206922,1818304624,223494956,1852442890,1920082021,151609649,543582523,544501614,543452773,1814062703]},{"sector":5,"length":512,"data":[224751209,1970276618,1646291059,151593080,1986097979,2019696741,1919903264,1952541728,168653413,1987013897,746086688,1568170587,1661536781,543976545,2004378984,224686703,1633880330,1730178156,1768715365,154166638,1919957769,1953525103,1919903264,2003136032,1818326560,168650101,1886351369,225993248,1835206922,1818304624,223494956,1701447946,829583904,151593058,543582523,1663070062,1735287144,1701978213,1919513969,168649829,1630630514,151653690,1819042147,1952802592,1685221239,1661536781,543976545,1701537891,151612527,1886938427,544498533,543452773,1814062703,543518313,1701995880,1829308941,1528854127,744323170,151615588,1986097979,1701716069,1635131511,224753004,829583882,168639074,1952805385,168626701,757935419,544434464,1948284009,1176528232,1734437928,1914710387,1936287589,1064461684,168626701,976384626,1661536781,1629515885,1176972396,151653671,543518314,540439154,1765476617,1869488230,1713840244,151653671,543384932,168651123,1685023753,168649331,1818321673,1802707052,1868787817,221277549,1835206922,1818304624,223494956,1852442890,1920082021,151593011,543582523,544501614,543452773,1814062703,224751209,1633880330,1679846508,1818652781,225666913,1633880330,1730178156,1768715365,154166638,1701264137,1852383348,544503152,1701734764,1937057824,543649385,1701734764,1953853279,544432416,1836020336,220820592,863138314,151653690,544238947]},{"sector":6,"length":512,"data":[1126984801,151653714,1914725738,543306098,1916471561,1920300133,1718165614,1852793888,151653733,543384932,168651123,1685023753,168654707,1684955401,746086688,1347768148,1599227216,151653719,544632685,1865181540,1702061670,1818632308,1835101799,151653747,544632685,824997987,151653686,1852859762,1668489317,225932129,1852442890,1920082021,1920099679,1765476617,1869488230,1952541984,168650851,1886216969,745104416,1936090735,1713402981,1869506412,168653678,543255049,154432114,1765476617,1702305894,543519271,1634036835,1735289202,1829308941,1629517423,1683696760,909192553,224211501,1869482250,2019631220,1627982349,1528849518,1936156018,1279685166,2019634269,1778977293,1914728557,168637810,1920076301,168639028,1987013897,746086688,761881691,841822771,151653725,1528853103,1936156018,1279685166,2019634269,168626701,976581234,1661536781,543976545,1885956979,1835888483,151653729,544238954,540242546,1664813321,1801676136,543582496,1701998445,168626701,757935419,544500000,1847620457,1752459621,824210021,1768041782,1701978228,1953720679,1847620197,1948283503,1176528232,1734437928,1914710387,1936287589,779249012,758843917,1663053101,1801676136,1919903264,1818326560,857760873,1768041778,1701978228,1953720679,1847620197,224750945,1913261322,221918834,1835206922,1834688624,1768448865,744318318,151653683,1914724970,1919246194,151653746,544238947,657222753]},{"sector":7,"length":512,"data":[168634181,2054056457,1601335840,225604197,1869351178,224555876,1851853066,1818304612,1431262252,1380274256,2013858317,543647843,1630301281,151653736,544632685,1865181540,1702061670,1701978228,1835101799,168653669,1987013897,746087200,1380799822,1095649093,760431949,151653686,1852859762,1668489317,225932129,1852442890,1920082021,1920099679,168626701,757935419,544500000,1629516649,1818326560,857760873,1768041778,1701978228,1953720679,1847620197,224750945,151653642,544632685,1680636002,151653737,544632685,1865181540,1702061670,1768693876,1868522862,168653941,1987013897,1954112032,1953505381,1683693682,657218921,168634181,1668180233,225010720,1953696010,225932143,1869416714,1818304630,656418604,1929972237,1651732340,1829308941,1646294639,1650142328,1431186296,1195725389,1162690894,758262355,168647986,1818321673,1802707052,1868787817,157379949,1802713865,1998614633,1702127976,1634759456,225666403,1835206922,1818304624,223494956,1852442890,1920082021,156786993,1718172425,1953459744,1684956448,543584032,1701734764,1879640589,543716213,168654946,942878217,151653686,544632685,746086757,729309787,168647984,808988169,168638008,1818321673,1701322860,1870095480,168649842,1818321673,1701257324,1852402804,151597157,1869770811,544501869,544370534,544695662,1970037110,151653733,544239472,168654946,1886216969,745300256,168645187,543517193,1647407730]},{"sector":8,"length":512,"data":[990447960,1847617129,1751326831,1701277281,1902473760,1701996917,1913261412,1482764658,151653690,1752397168,225993248,1633880330,1730178156,2003072101,224686703,1869416714,2019762294,225993260,1869613322,2019696752,1661536781,543976545,1701537891,151612527,1886938427,544498533,543452773,1814062703,543518313,1701995880,1829308941,1528854127,808155234,2019830877,1933248777,543520353,544695662,1970037110,151653733,544632685,729309787,1663851826,990447992,1702257011,2003136032,1818326560,168650101,1647407730,168639064,1952805385,1920076301,1684956448,218762608,1601335818,980578917,1678313997,1931502437,151587177,1667326523,1886724203,1701736224,1717920288,543519343,1734437990,1735289191,544104736,1869771365,1695157618,1919906418,221918314,1835665674,1835212912,1919246180,225603442,990514442,539831597,1868767315,1851878765,539828324,1918985587,1713399907,1629516399,1920234272,543649385,1646290543,1936028793,218762542,1936945930,1869770784,151653731,544632685,1529641058,1936156018,1396994606,1731922269,1931506789,1668440421,1634869352,224749422,1870137610,2019762290,225993516,1633880330,1730178156,1634890853,1483040622,1731922185,1629516901,1701995620,1914729331,1701277281,1953392928,1480728687,692398138,774789188,674912322,1480796485,1661536781,543976545,1885956979,1835888483,151653680,1752397168,225993504,1970276618,1679845491,151653752,1819042147]},{"sector":9,"length":512,"data":[1952802592,158495859,1701264137,1953702004,1735289202,543584032,1702132066,151653747,544239472,168654948,1886351369,225993504,1970473226,2019762274,158884908,2019769097,1847606560,1700949365,1718558834,1954112032,1763734373,1702043758,1751347809,1851879968,1830839655,1937075817,1701736224,1929972237,1679843957,1718561897,1952805734,1852402720,1970233189,1681590644,540876905,1651340654,1864397413,2036473958,544433524,1814065012,543911791,225603430,1701054730,1768169571,990447881,538976288,1852402976,1864397685,168650094,1651864329,746087200,151611748,1836412475,544367970,1881171567,1769173871,543517794,1769172848,1852795252,1718558835,1920234272,543649385,1970170221,221323379,1651116298,1920099616,879391343,1765476617,1869488230,168650094,1818321673,1919950956,1634234469,151612259,1952805691,544240928,544370534,543516788,1702129257,1886745202,1702240372,1919906915,1667328032,990514539,1668180233,158884640,1664813321,540876920,1651340654,1864397413,1869619302,1651078003,1881171308,1953067887,1936617321,543584032,1769108595,168650606,1751349257,2019827815,157901868,1702050569,1229201524,544175136,1936090735,168653925,1818321673,1868832876,1801675112,1933248777,1679848549,1735746149,660956519,1852383347,858923124,221524527,1936945930,151599665,1010501897,539831597,1918985587,1847617635,544503909,1969447791,1668179314,151653733,544632685,1647080293]}]],[[{"sector":1,"length":512,"data":[990447992,544499059,543516788,1835492723,225734245,1869416714,1769152630,1717989164,544499059,1701734764,1953853279,1769159433,1629502752,1701995620,1864397683,1702043750,1751347809,1920234272,224882281,1869351178,157447012,1715144969,1953722985,1634231072,1952670066,1763734117,1818304622,1913195021,1701736549,1633907488,151609971,1869573179,1868963947,1768300658,544502642,1702132066,1778977293,1936924773,828322163,1929972237,1651728739,990447881,1853189987,1852383348,542655264,544432503,762605155,151653681,543518314,863204211,1765476617,1702305894,543519271,1701736292,1936919053,828322163,151653690,1752397168,225993504,1970276618,1679845491,151653737,544632685,1680636003,151653752,1701864818,1886216992,168649331,1886351369,225010720,1852442890,1936924773,151597683,543582523,544501614,1635086693,151653740,1819042147,1752069408,158032737,1702050569,1701060724,1734833506,1931965029,1953392928,791884320,168637490,1937076233,2019827816,2013858317,543647843,1680632179,990447977,1953067639,1684086885,1936028260,1769087091,544499815,1702127201,1702043762,1751347809,1920234272,224882281,1869416714,2019631222,225993260,1633880330,1746955372,1870100581,151610482,673199163,1835492723,695496293,1829308941,1629517423,975645804,151653671,1936684147,151587170,1026632507,151653685,543253868,1529641057,825059699,151653725,1819042147,2019911712,1685221239]},{"sector":2,"length":512,"data":[725289225,540622132,1717989160,695494003,1829308941,1629517423,1179397240,840968736,723531317,223494944,1953696010,158823279,725289225,825310514,1829308941,1663071855,825306232,1812531725,1679843685,1683696760,825306473,151653725,1752397168,225993248,1633880330,1931504748,1970234484,990447988,1953067639,1869881445,1685353248,225736047,1869613322,2019696752,1879640589,1679847535,151653752,544632685,1932290404,151653737,1819042147,1752130592,158032737,1702050569,1701060724,1734833506,1931961701,1953392928,791884320,168637490,846426995,151653690,544239472,168654947,1668180233,225993504,1869351178,1931505775,154235763,1869036297,1667326496,1868963947,1869422706,168650098,863204211,151653690,544238954,1634233973,151612259,1952805691,1650811936,1701275509,544417650,544501353,841954098,1930038580,1696625523,225469550,1946815754,1685024116,1919950949,168649583,1818321673,1802707052,1868787817,224488813,1835206922,1818304624,223494956,2053769482,1836280096,1734698095,168653925,1818321673,1701257324,1919907700,151653732,544238947,824997988,1778977293,1919230049,1785884530,151653684,1819042147,1802003232,158101349,2019900169,1952671088,1684956448,543584032,1701734764,1919248416,151653733,544632685,1869444187,744318308,168651876,1936263693,1701080941,980706663,154864141,544632685,1865181540,1702061670,1768693876,1868522862,990475381,1763723588]},{"sector":3,"length":512,"data":[1852383347,1634301033,1702521196,1769414756,1948280948,544434536,1970037110,151653733,544632685,1865181555,1702061670,1836327028,1936024687,1829308941,1629517423,1952132204,1701080941,151653725,1953719668,745300256,151653681,1752397168,151653734,543450209,657222753,168634160,1987013897,1769167648,2053731115,543584101,1685024116,744321893,168651873,1818321673,1868767340,1953724784,1735289202,1933248800,1681796457,151653737,544632685,1865181555,1702061670,1836327028,811951215,1879640589,224817263,2053769482,222707744,1869416714,1769152630,1717989164,544499059,1685024116,168636773,221921344,1633880330,1663069292,1937338479,1852404340,990453863,1043163507,168651108,1886218761,1953853472,1852402803,1946815845,1685024116,1852121189,168652900,758843917,1411394861,1836016416,1684955501,1411394848,1701011826,218762542,544502794,1668248176,1829308941,1629517423,1818307688,1627982349,1629512814,1330916456,1162891349,151653714,544238947,657221729,168634189,544893449,1869444212,151610724,1836411451,1718165616,661940512,1752440947,1297358949,1836016416,1684955501,1953761805,168639024,1987013897,1634491168,1835234419,1865178468,1702061670,1953767540,151653680,1819042147,1918988320,1885300083,990447988,1668248176,544437093,1969713761,1953391981,1946815859,221917556,1970276618,1663068275,151653752,1819042147,1634890784,221341027,1869613322,2019762288,1812531725]},{"sector":4,"length":512,"data":[544239471,221344884,1701972234,1946815860,1852121204,168652900,758843917,1948265773,1701011826,1701736224,1936615712,1668641396,1852795252,168626701,1667330676,1881157989,224620402,543582474,223170623,1633880330,1730178156,1935897701,1920234593,1829308941,1528854127,1095975778,1567782004,225206572,1869416714,2019696758,1701993260,1915646823,224219209,1869416714,2019631222,1701993260,1915646823,224219971,1835206922,2019696752,1919907628,1953505380,1683693682,2003398000,1751348321,157102123,1952539451,1948280931,1763730792,1769236846,1931504737,1668573559,1869881448,1869770784,1952671092,1830839397,224748655,1852442890,1920213114,828728161,168636767,1886216969,746086688,1685221239,1920233504,1885625120,1635215725,728261492,168647986,2054056457,1634890784,1597072739,151653681,544238947,1867407963,1802465096,744310322,1664813360,1701999221,1126200430,1346976339,544434464,1768779876,1953391904,168655218,544893449,168642112,1987013897,1701993248,1915646823,744312905,1936090735,1830843493,1836082297,1953391977,990476658,1763731049,840987758,1763731558,1848254579,539653231,1802465128,168649829,1987013897,1701993248,1915646823,744313667,168653667,221921344,1970276618,1931503731,151653747,544239472,151614309,1970420489,1868767342,1965057380,1818850414,1413829152,151653702,1752397168,225666080,1869416714,2019696758,1701993260,1915646823,224219219,1869416714]},{"sector":5,"length":512,"data":[1935941750,1701993260,1915646823,224219987,1869416714,1769152630,2019711788,224210987,1869416714,2019696758,2019711788,224211499,1869613322,1935941744,1661536781,543976545,1668248176,829649765,1913195021,168653925,1667330676,828322149,1695157562,1718183022,2013858317,1663070831,2019765368,1661536781,543976545,1668572519,1885955443,1702132066,1661536781,1629515885,1127230572,168650820,2054056457,1936943392,1920230516,224748385,1852377354,2019762275,1661536781,543976545,1668572519,1885955443,1702132066,1661536781,1629515885,221457516,2053769482,1936943392,1920230516,224748385,1702103306,1646294131,543519865,544371824,1869444187,744318308,990453809,826101076,151653695,1948285546,1701011826,1953392991,1661536781,1629515885,221326444,1852442890,1953702010,1767862373,168653934,1953723241,1634890852,221930851,1919879434,1954112032,1953505381,1918574706,779315045,726419058,824991025,1702050569,1769152628,1701603182,1702130477,1869422704,168650084,1919907849,746087200,168654947,1818321673,1701257324,1702060916,2036494441,168650100,1937076233,2019631208,1661536781,543976545,225342834,1869613322,2019631216,1661536781,1629515885,1127820396,990447976,544432503,1868787823,1344300388,1179145045,168640288,2054056457,222707744,1633880330,1663069292,1918985580,1600549983,1953721967,225141601,977289226,1661536781,1528852589,1601074546,1567911529,1717989164,544499059]},{"sector":6,"length":512,"data":[829714025,224883565,1701447946,829715488,168636767,1886218761,1600484640,158625385,1718172425,1836020512,1953439845,544367976,1702129257,1886745202,1946815860,828322164,151653690,544238954,1886221668,1936156018,168626701,1851859003,1414416672,544434464,1646292852,1919950949,1936024431,543450483,541938728,807433065,990514473,544175136,1768912481,1752440932,1634607205,544830579,540424312,543651170,1667852407,1634541672,544433515,1413829193,540740109,1937072483,543236197,1969382756,2019893351,1953523043,544108393,1852383281,1970435187,1869182051,1869881454,1634476143,168650100,543236155,1634038370,1768910955,1763734638,1702043763,1700929652,1684957544,1701344288,1414416672,168626701,1718165563,1701344288,1953392928,1818851104,1702109292,1852403058,543519841,543516788,1969382756,1701144423,1852385312,825368692,1629498472,1127497064,168634728,1953046587,544434464,1869639017,1851880562,1752440948,1948284001,1646290280,1801545074,1852403568,1870078068,544483182,1914725730,1869902693,560227698,168626701,1667330676,1852399461,168639092,1987013897,746087200,151653682,1819042147,2004052256,1702127986,1701601889,1768256355,1765476720,1969430643,1852142194,1396908148,542132538,1377857129,222252367,1667893514,1936943392,1920230516,157639521,1752447753,1679847013,1953701999,1633971809,1948279922,1701011826,1829308941,1646294639,1918577784,779315045,1565737842]},{"sector":7,"length":512,"data":[1718159885,1297104672,1946749453,544502629,1396925019,1920234561,808725597,151653736,606108266,168637227,543319049,157824566,1987013947,1769170208,1870095404,1881171058,1528853108,1936156018,1346990638,1695157597,1718183022,1829308941,1931507311,1918577769,779315045,1565542770,1718159885,1297104672,1778977293,723787898,151653683,908092004,990472246,543450209,745108325,1695157554,1718183022,1627982349,1931502692,221391977,1633880330,1881173100,1701015410,154235763,1702050569,1346510964,544497952,674912322,1230186821,1684955424,1853190688,1650811936,1701275509,151653733,225731954,990514442,539831597,1920103779,544501349,1953721961,1952675186,544108393,1226863465,539776078,1763724628,741417075,1852404512,761621607,1885697139,1953392928,1752440943,1852383333,1920099700,745828469,1028407584,594833001,168626701,1885697139,1953392991,151653690,544632685,1630301282,1762266476,1346314342,151653709,1819042147,1886611744,151653741,544894570,1885697139,1953392991,225275999,1684956426,168650345,1987013897,745038368,151653680,1752397168,225666080,1870137610,2019631218,225993004,1869416714,1935941750,225993004,1752369418,2019696748,151597356,1635021627,808984697,1663055416,1634757999,1818388852,1852383333,1634038304,1869426028,220292452,1752369418,2019696748,168636716,1768710921,1812531725,1931506532,1650142313,1563437944,1829308941,1629517423,1935354988]},{"sector":8,"length":512,"data":[168648041,1919907849,1954112032,1953505381,1935351922,808213865,224937542,1835206922,1818304624,1769167660,151653725,544632685,1567191899,225206572,1953696010,151653737,1763736170,1836020339,1829308941,1646294639,1935944824,1879640589,1679847535,151653747,1819042147,1869770784,1936942435,151653681,225731954,1920166154,221932911,1869416714,1629495414,1935944824,1879640589,538996847,168653668,1751349257,1769152615,1701993260,1915646823,224219209,1668811018,1629513576,1918577784,779315045,1565737842,1829308941,538998383,1529641059,1936156018,1279685166,151653725,1752397168,225666080,1869416714,1646272630,1918577784,779315045,1565545330,1829308941,538998383,1529639780,1936156018,1397977646,1698367837,1634497901,1629513076,1313415278,151653716,543323507,746086944,151653686,543387241,543781664,1933248777,544237931,542395977,168654968,1668180233,1769152544,1829308941,538998383,729309787,1932287280,151653737,544632685,2019711776,744305195,168654945,1987013897,1650139168,1563700088,225993516,1869613322,1679827056,151653747,544632685,1701993248,1915646823,744312915,168654946,1684955401,2036473888,1881171316,1528853108,1936156018,1279685166,744304939,1749239344,1818442528,544366949,723535433,222712864,1835665674,1948262512,828322164,1718159885,1297104672,1953696269,1767862373,1885303918,168639085,1987013897,2019631136,875573804,151653736,544501353]},{"sector":9,"length":512,"data":[1748054816,1731922185,1981838437,1869898597,1852383346,978862880,1143555368,151653720,544632685,746086944,168654947,1936028681,1818370164,151598124,544434491,1629516905,1413762080,1818587936,1869898597,168640370,2054056457,1178607648,1778977293,538996845,1953723241,1634890852,168650083,221921344,1769146634,1919968634,151593062,1987013947,1769170208,2019845420,1829308941,538998383,1680632179,151653752,1819042147,1869770784,1936942435,151653681,225731954,1684956426,168650345,1920207373,828728161,1684956448,218762608,757938954,1702109229,1763734643,1701650534,2037542765,544497952,1161450307,542132527,544104803,1998611810,1953786226,1948282469,990514543,539831597,1970562418,1126198898,543582496,225734510,757938954,1313415213,1480794170,1717989181,544499059,544370534,1227441448,218762576,2004052234,1702127986,1701601889,1768256355,1919950960,168649583,1818321673,1701257324,1702060916,2036494441,990471540,544499047,1702132066,1920233504,544497952,1161450307,1126912073,151653720,544632685,1630300257,151653740,544370552,808217697,224937542,1633880330,1931504748,1935897701,1651534181,224752761,1667893514,1953459744,1953067639,1818386789,151653733,1819042147,1952802592,1768256355,1954112112,151653733,544238947,1630300257,990447980,1763734377,1330782324,168640333,544893449,2004119406,1702127986,1701601889,1829308941,1629517423,1751198828,1661536781]}],[{"sector":1,"length":512,"data":[543976545,1668572531,1885955443,1702132066,1661536781,168649580,1952805385,1869482509,1769109364,1650550132,221930860,1953696010,151653731,225731954,2004052234,1702127986,1701601889,1768256355,1852121200,168652900,758843917,1663053101,1918985580,541479968,1948282473,1663067496,544829551,1713399407,1936154988,1734701600,1702130537,1852776562,1948282740,1931502952,1801675124,168626701,1634036835,1718902642,1936617311,1801675124,1869770784,151653731,1752397168,225666336,1869416714,1936007286,1701993260,1915646823,224219987,543582474,223170623,1869416714,2019696758,225666348,1633880330,1730178156,1702065253,1953784172,151653746,1075870314,151653702,909652782,1829308941,1696626287,1680636002,1685221239,1920233504,1701993248,1915646823,224219219,1851853066,2036473956,1881171316,1696625268,1700477555,824932450,1869491293,221323380,1835665674,1952653424,828339055,772344333,909652024,1077938701,1695157562,1718183022,1829308941,1646294639,1918577784,779315045,1565545330,1627982349,1646290030,543519865,544371824,1530557285,824932450,1869491293,221323380,1869898506,976314227,1879640589,1696624751,151653747,225731954,1701602058,1952412257,1852792678,1667331187,1852121195,168652900,758843917,1428172077,1836016416,1684955501,1679830304,1935766377,1651336563,221144428,1963592970,1919950965,168649583,1987013897,1634491168,1835234419,1865178468,1702061670,1634476148]},{"sector":2,"length":512,"data":[1970631795,1661536781,1629515885,1380133996,1778977293,1965057390,153104757,1718172425,544104736,1919181921,544437093,544432503,1702259047,1812598126,1970565985,168639093,1059087977,168643920,1818321673,1701257324,1634952052,225604724,1869416714,1650139254,1950438211,744321652,168651873,544893449,811562357,772344333,221657139,1869416714,1684349046,2003053688,543453807,544371824,1633645915,1567777892,1829308941,1696626287,1697413219,168654948,1684300041,2019779872,1749430572,1778977293,1075864430,151653702,544632685,746087269,168636717,221921344,1852377354,1667571811,1963593080,861877109,168639026,1937076233,1667571816,151653752,1752397168,2019845408,1661536781,543976545,1634953572,221343091,1869613322,1650794608,151653752,544239472,225993573,1869416714,1634017398,2003053688,543453807,544371824,1633645915,1567777892,1829308941,1696626287,1697413220,168654945,1651864329,2019648800,2019779884,1664813321,1701999221,1881175150,1953067887,544108393,1852121133,151653732,543323507,746087013,158884709,1919957769,1869182565,1881174901,1953067887,544108393,1852121133,151653732,544238947,746086757,225993317,1852442890,1970610274,842227507,1765476617,1702305894,1986095136,1948741221,1634038304,1684367459,1701344288,1634690848,151653740,225731954,942541066,221657136,1601533194,168639024,1768189541,151653734,544632685,1999403108,543453807,544371824]},{"sector":3,"length":512,"data":[1633645915,1567777892,1829308941,1663071855,2019830904,1627982349,1663067236,1714498680,151653736,543387242,540177781,1765476617,1869488230,1702260512,1869375090,151653751,544632685,757889123,151653681,544238954,221410677,1963592970,221917557,1869416714,2019762294,1747989036,1681590537,1969317477,1814066284,1952935525,151653736,544632685,1529641058,1936156018,1396929070,151653725,1819042147,1952802592,1735287154,151607397,1952802619,1684300064,1936942450,1851879968,1763730791,544175214,674920546,2019830117,1661536781,543976545,1701537891,151612527,1886938427,544498533,543452773,1814062703,543518313,1701995880,1929972237,1885698665,156788338,1869429513,1968906358,1684300127,1563437938,2019845420,1829308941,1528854127,1684103029,808153700,2019830877,1829308941,1528854127,1684103029,875262564,2019699805,168626701,757935419,544489760,1936287860,1768910880,539784302,1746958435,1935961199,1701344288,1935764512,1684086900,1936028260,1629498483,1679844462,1752440952,1684086885,1936028260,168636019,1970604557,168639026,1668180233,225993504,863335690,151653690,1752397168,225993504,1970276618,1679845491,151653752,1819042147,1936286752,829256545,1681590537,1953046639,1879640589,1646293103,151653752,544239472,168654947,1987013897,746086688,1633645915,1567777892,1829308941,1679849071,2019634296,1929972237,1629512309,2019765368,1664813321,1701999221,1881175150]},{"sector":4,"length":512,"data":[1953067887,544108393,1852121133,151653732,543323507,1663858786,990447992,1986359920,1937076073,1936683040,1869182057,539828334,224685669,1835206922,2019631216,225993260,1852442890,1970610274,151593011,543582523,1746953591,1852143201,1914729511,1751343461,1948279909,1730176360,225206639,1701972234,1963593076,1852121205,168652900,1869351437,1919183715,979727977,1879640589,543716213,168654945,1937076233,2019696744,1879640589,543716213,168654947,1937076233,2019827816,1829308941,1663071855,942681208,224936244,1668246538,1853185899,1801678700,151653690,544632685,1630301282,151653740,543387241,168654946,1987013897,745038368,151653680,544632685,808220772,1748054064,1829308941,1629517423,875834488,224937008,1852377354,825368692,151653736,544239472,168654948,1886351369,225993504,1869613322,2019696752,1879640589,1629515887,151653752,225731954,1819178250,1684759407,1702259058,151653690,1752397168,225992992,1970276618,1646291059,151653752,1752397168,225993504,1970276618,1679845491,151653752,544632685,808220771,1749104184,1778977293,1814065261,1600873327,1869377141,168651619,758843917,1444949293,1836016416,1684955501,1981820192,544695657,1885957222,168626701,1881175670,224620402,1835206922,1717248112,1567648108,168636460,543517193,168650304,1987013897,746086688,808465712,151653736,544501353,224931889,1869416714,1751195766,1747988524,1762200077]},{"sector":5,"length":512,"data":[824210542,168650806,1987013897,746086688,825242928,151653736,544501353,224931889,977289226,1913195021,168653925,1696626294,225469550,990514442,539831597,1868767319,1851878765,539828324,1953067639,543236197,1735357040,745365874,544370464,1802725732,1667592992,1936879476,1869881388,1936286752,168636011,2004290061,1869770784,151653731,1819042147,1918988320,2003592563,1882917129,1702064737,1629506592,1461740654,1735549216,1852140917,1868963956,1952542066,1970219040,1646279284,1697135224,1031300137,1919181921,695432037,1778977293,1920409722,1600484457,1701603686,1765476617,1701978214,1936029041,1869881460,1769109280,1713399156,224750697,543582474,223170623,543582474,1480937294,1145980244,168645189,1818321673,1936269420,168652144,544893449,168642112,1818321673,1936269420,1702131813,1919247470,1767994977,1818386796,1765476709,1919950958,1667593327,761554292,1701080941,1329864748,1920213075,1819504225,1869182049,1701716078,1684366437,1778977293,1075864430,151653702,544238954,1868853102,1954047347,1953721961,1077938701,1695157562,1718183022,1852115469,224815460,1835206922,1935876208,1937070906,1667330149,1567909227,168636972,543320585,1597011831,151653681,544632685,1630301284,990447980,741358913,741424450,741489987,221130286,1869416714,1769152630,808465964,151611441,1769109307,539780468,1970500449,1713399149,543517801,1635017060,1762200077,1679844206]},{"sector":6,"length":512,"data":[151587180,826097979,842875436,859652908,774778412,1661536781,543976545,1801678700,1986622052,151653733,544632685,925661281,1748316211,1144719625,1160264275,542655017,1881161261,1701536609,151653748,224621683,1852377354,825368692,151593064,1702065467,1953392928,1748054560,1919248416,1847602277,1679848559,1633907567,168651884,1937076233,168650344,1818321673,1853169772,1801678700,1986622052,151653733,1718644592,1778977293,1998614637,845099127,2004290061,976314160,1762200077,840987758,168650806,1597011831,168639026,1987013897,746087456,1936090735,1998615653,1769236850,168650606,976320375,151587130,758921993,1696607533,2037544046,1869768224,1819025517,1829308941,1646294639,1936927864,1916471561,1869902693,1931502962,1701668709,1914729582,1936287589,1936876916,1829308941,1679849071,2019699827,1829308941,1931507311,1952132208,1935634543,168648048,1987013897,745760032,168654946,1668180489,863467296,990447904,1847617129,1919230063,225603442,1835206922,1818304624,1751330860,1778977293,1075864930,151587142,543582523,1914728041,1701277281,1829308941,1629517423,1664101484,1074400616,168639040,2002936585,1829308941,1931507311,2019634281,1829308941,1629517423,1935354988,1935944553,1920099691,168648051,1987013897,745108256,1936090735,1679848549,1919249267,168636530,1684300041,745108256,168654945,1987013897,745104416,1936090735,1814066277,1600482921,225736047]},{"sector":7,"length":512,"data":[1633880330,1663069292,1937338479,1852404340,990453863,1043163507,168651108,1987013897,745108256,168654948,1818321673,1868767340,1953724784,1735289202,1933248800,1681796457,151653737,544632685,1865181555,1702061670,1919164532,224753257,1633880330,1663069292,1937338479,1852404340,990453863,1043163507,168651108,1818321673,1970282604,1768715124,168650094,976451447,1778977293,1663070317,1869374573,151613551,1851876155,1914729511,1646294117,1969316709,1931502963,1801675124,544434464,1852797559,1997147495,1852121207,168652900,758843917,1461726509,1702127986,544175136,1701603686,1176510510,1953722985,1701339936,1948281699,1713399144,543517801,1702131813,1869181806,168636014,757935419,2053731104,1718558821,1818846752,1936269413,544106784,1701407843,1931965550,978862624,221009987,757938954,1701060653,1819631974,1953702004,544502369,1919181921,544437093,1142977385,808532563,168650800,1920403981,1600484457,1701603686,1869770784,1762266467,1380196454,1380275785,1778977293,1663070317,1700750445,1919906418,1818561037,168650099,1987013897,745300256,1818846811,1954047333,1731922269,1713402981,1936154988,543584032,1701603686,1954047264,1769172581,168652399,1936028681,1818304628,1415071020,1163412831,1778977293,1178607738,990447881,1847617129,1159754863,168641880,1987013897,746087456,1936090735,1847620709,2019915631,151653733,544238954,221673335,977289226,1661536781]},{"sector":8,"length":512,"data":[1629515885,221260908,1852442890,2004295802,151593015,543582523,1702131813,1869181806,2019893358,1937011561,1829308941,1679849071,1718561912,1952805734,1718578720,1701667182,2004290061,168639030,1886218761,1953392928,1751200050,218762553,757938954,1766203437,1696621932,1852142712,1852795251,544434464,540756815,1953067639,1953046629,1176510510,1953722985,1919098924,1702125925,1701344288,1818846752,168636005,2004290061,168639031,1059087977,168643920,1818321673,1936269420,168652144,544893449,168642112,1987013897,746087456,1936090735,1847620709,1970500719,990474352,1953390947,1769109280,1763730804,1852383348,1869770784,1952671092,1831691365,224748655,1835665674,1852383344,1630614132,168638824,221921344,1684956426,168650345,1987013897,745562656,1936090735,1814066277,1600482921,225736047,1835206922,1751392368,1701195820,151653736,1075864170,151587142,543582523,1008760932,811951648,168650800,1651864329,745038880,1751475760,1681590537,1026367608,1719152672,221261925,1684080906,2019696740,1701195820,168650800,221921344,1869416714,1650139254,808528752,2019830877,1933248777,543520353,1702326124,1634738290,1864397938,1684086886,1936028260,1852383347,1852402720,1970233189,808528756,1829308941,1931507311,2019699817,1966803209,1919250544,1918988320,1869029492,1763734373,544175214,168651123,1987013897,745038112,157836083,1919105801,1702125925,1818846752,151653733]},{"sector":9,"length":512,"data":[544370552,1663858787,990447992,1629515630,1769108596,1702131042,151653747,544632685,1143765092,168640852,1818321673,1868832876,1818321779,151653740,1763730282,1919246191,158494578,1718172425,1920099616,168653423,1937076233,2019631208,990447904,1702257011,1818846752,1634213989,1701602414,168626701,757935419,1769099296,1830843502,1634956133,1629513063,1953853282,1769109280,1735289204,218762542,1869416714,2019827830,1717989164,544499059,1936553847,168636775,1818321673,1852383340,1630614132,151599464,1769107515,1931506798,1852404340,151653735,544632685,1529641057,1936156018,1480749614,151653725,544238947,824997985,168650800,543320585,151602752,1718172425,1953459744,1869575200,1918987296,168650087,1919907849,746086688,151615585,1869575227,1918987296,540697959,1919253024,1953046639,1953853216,1077938701,151653690,544632685,728785499,1630297400,151653752,1629516399,2019634296,1778977293,1178607738,1661536781,543976545,1853384040,151609977,1852793659,1953654134,544175136,544761192,543452769,1852404336,1074400628,168639040,1987013897,746086688,1734701659,1131556467,168648024,1987013897,1885494048,744306219,168654945,1818321673,1701322860,1919907704,151653732,1819042147,1953853472,990447987,1852404336,1769152628,168650106,1987013897,746087456,1936090735,1998615653,1735617911,151653682,1819042147,1953392928,1751200050,990447929,1852404336,1953702004]}]],[[{"sector":1,"length":512,"data":[1735289202,168626701,757935419,2003783200,1769109280,1948280180,1713399144,778398825,1767055392,1914725754,1767992677,1735289198,544434464,1814064745,1600482921,729052527,168635958,1879640589,1646293103,151587192,1667592763,1919252079,1818846752,1634213989,1701602414,1829308941,1679849071,1650142328,808528752,990447965,1919181921,544437093,1998614388,1702127986,1869768224,1936269421,979989280,168654948,825325431,151653690,544632685,808220769,808478054,151653736,543323507,1680636001,151653752,544238947,1702132066,1920233504,1885494048,744306731,151653680,544894570,151602752,1718172425,1919905056,1752440933,807431777,808478054,2036473960,544433524,1634559346,1852403305,151653735,544238947,1529641057,908816482,151653725,1075864170,151587142,1953063995,168652660,1987013897,746086688,728785499,168647990,221921344,1668811018,1629513576,2019765368,1832585481,1663071855,2019634296,1829308941,1679849071,1769155699,1829308941,1629517423,808725608,990447976,1953067639,1869881445,1818846752,151653733,544501353,543699250,1966803209,1226859891,539776078,544501614,1668509540,225209441,1970276618,1931503731,151593075,1936028219,1701998452,223560736,1869613322,1935941744,1661536781,1629515885,2019765368,1778977293,1998611822,154349943,1718172425,1936286752,1969627243,168651884,1919907849,746087456,151615588,2019913275,1769218164,1998611821,1702127986]},{"sector":2,"length":512,"data":[1869768224,2021138541,809138296,1627982349,1931502692,1714433129,157823077,1886731017,1702125924,1734701856,1953391981,1768910880,1919251566,1929972237,1528849013,908816482,2019765341,1812531725,224815201,1651706122,2036473954,1881171316,1528853108,942370914,221260893,1852442890,2004295802,151597361,543582523,1701998445,544175136,168652647,1751216905,151653734,544894570,825325431,1681590537,1869902953,1778977293,1998614637,154415479,1868839689,168650094,2004290061,221918001,1869416714,2019827830,1717989164,544499059,1802725732,225211750,1633880330,1763732588,825390190,154757217,1919957769,544501353,1769108595,168650606,1987013897,745038112,157823284,1853176585,1802398060,1818846752,151653733,544632685,1143765092,168640852,1818321673,1868832876,1818321779,218762604,757938954,1816338477,543519599,543516788,1701603686,218762542,829912842,168639028,1987013897,745038112,157836595,1818442505,543519599,1701603686,1762200077,840987758,168650801,1952805385,1852115469,224815460,1769109258,1717527924,543517801,1885630053,168626701,757935419,1920091424,1864397423,1768842608,1713399662,778398825,1750343712,1763734377,1818304627,1663070067,1701604449,2036473956,1701344288,1634692128,1868767332,1851878765,168636004,1869154829,1920099679,221934191,1835206922,2019631216,168636972,1987013897,746087456,1936090735,1679848549,1919251311,990458482,1701603654]},{"sector":3,"length":512,"data":[1953459744,1970234912,168649838,543517193,168642112,1886216969,746086688,151653683,544632685,1865185380,1702061670,1868832884,1920099699,1346046259,543716449,544501614,1853189990,151653732,1075864938,151653702,544238947,892106849,1829308941,1679849071,1718561912,1952805734,1936679968,896692837,1665219337,1936942435,1852138528,224683369,1701447946,222707744,1835206922,2019631216,168638508,1987013897,746087456,1936090735,1679848549,1919251311,990460018,1970499145,1667851878,1953391977,1835363616,226062959,1701447946,222707744,1869416714,1768169590,1717989164,544499059,1852141679,829583973,1661536781,543976545,2004378984,224686703,1869416714,2019827830,1717989164,544499059,1852141679,158495333,1920091451,1595961967,543121247,1852141679,543649385,1701603686,1077938701,1762266426,825390190,976840801,1829308941,1629517423,221850728,1835665674,1868832880,1818321779,218762604,543582474,1129532741,168641613,758843917,1478503725,1836016416,1684955501,539828339,1768841581,1634497904,1159751028,1830835021,1919905125,168636025,758843917,1478503725,539828289,1869376577,1702125923,1397572896,218762542,543258634,1668248176,1661536781,543976545,1668509029,168651624,1818321673,1802707052,1868787817,224488813,1633880330,1730178156,1870099557,151610482,1952802619,1735549216,1852140917,1852383348,1142976372,151653720,1819042147,1802003232,158101349,2019900169]},{"sector":4,"length":512,"data":[1952671088,1684956448,543584032,1701734764,1919248416,151653733,544632685,1680636002,151653752,544632685,875325537,151611443,1819042107,1952539503,1634213989,1701602414,1627982349,1646290030,2019699832,1778977293,1075870318,151653702,544632685,892106849,1747988577,1966803209,1159751027,874533709,1981820974,1769173605,1948282479,1818304623,1633906540,807429492,1734438944,168653669,221921344,1633880330,1696623724,1633907565,168651884,1937076233,2019827816,1829308941,1931507311,1718561897,1952805734,1633777696,168653678,1818321673,1868767340,1953724784,1735289202,1879640589,1629515887,151653752,1819042147,2019911712,1685221239,1778977293,1881174125,1819505781,157642345,1919957769,544501353,1769108595,1629513582,1914725486,1920300133,2013924718,1852121185,168652900,758843917,1478503725,539828292,1818322244,1633906540,1159751028,1746948941,1818521185,168636005,1685588493,1869770784,151653731,1819042147,1936549152,225142883,1633880330,1931504748,1668311403,1634561391,1661536781,543976545,2004116839,157577839,1701264137,1918967924,1701672295,1763734638,544175214,168646724,1818321673,1751326828,1819239787,1698367753,1667592312,1852121204,1718558820,1852402720,1701322853,168650098,1987013897,745038112,157824308,1701067529,1869376609,1702125923,1851877408,224750692,1633880330,1696623724,1633907565,168651884,1987013897,745108256,1936090735,2015392869,1936613732]},{"sector":5,"length":512,"data":[1661536781,543976545,2037411683,1769108595,168650606,1886218761,1953853472,1852402803,990447973,1852404336,1953702004,1735289202,1684955424,1952805408,225342069,543455242,1885630053,168626701,757935419,1830836256,544106849,1886611812,1751348321,168653413,2021132813,1869770784,151653731,1629516399,1330916460,1163349836,151653714,544238947,657222753,168634209,543517193,151609720,1718172425,541153312,1835888483,224685665,1835206922,1818304624,660875052,1778977293,1685594213,990447881,1478518377,1868767300,1851878765,151653732,544238947,657222753,168634226,543517193,151614072,1718172425,542267424,1835888483,224685665,1835206922,1818304624,661464876,1778977293,1836589157,990447881,1478518377,1868767309,1851878765,151653732,544238947,657222753,168634227,543517193,151614328,1718172425,542332960,1835888483,224685665,1835665674,1835212912,1919246180,225603442,544765962,1885630053,168626701,757935419,542267424,1699881005,1869376609,1702125923,1397572896,1851877408,778398820,168626701,1881174648,224620402,1633880330,1696623724,1751348077,151653739,1819042147,1768649504,1836016496,168649069,1818321673,1701257324,1919907700,990447972,544499047,1684955496,1629513068,1836410738,544501349,1869901417,223888416,1869416714,2019696758,225993772,1633880330,1931504748,1668311403,1634561391,1661536781,543976545,2004116839,157577839,1701264137,1868767348]},{"sector":6,"length":512,"data":[544501365,1969713761,1953391981,1953392928,1480859759,1661536781,543976545,1701537891,151612527,1886938427,544498533,543452773,1814062703,543518313,1701995880,2013858317,543647843,1680636002,151653752,544632685,892102753,151611441,1634038331,1668246636,543519841,1684955496,168650092,1818321673,1835343980,1818321779,151653740,544632685,1865181555,1702061670,1685594228,225668705,1633880330,1663069292,1937338479,1852404340,151653735,544632685,1702132066,1920233504,1768184608,1563504941,661792556,1778977293,1881174125,1819505781,157642345,1919957769,544501353,1769108595,1629513582,1914725486,1920300133,2013924718,1852121202,168652900,758843917,1478503725,539828301,544235853,542330181,1869440365,1948285298,1752178799,1667855225,1881173089,778397537,168626701,1881173368,224620402,1633880330,1696623724,1751348077,151653739,1819042147,1768649504,1836016496,168649069,1818321673,1701257324,1919907700,990447972,544499047,1768386412,543973731,1701273968,1829308941,1646294639,2019830904,1933248777,543520353,1763734633,1480728686,1661536781,543976545,1885956979,1835888483,151653680,1819042147,1952802592,1702132066,1731922185,1881175141,1769175400,543973731,1701273968,1279535136,151653673,1752397168,225993760,1633880330,1931504748,1668311403,812477807,1661536781,543976545,2004116839,157577839,1701264137,1634214004,1701602414,1953392928,1480859759,1661536781]},{"sector":7,"length":512,"data":[543976545,1701537891,151612527,1886938427,544498533,543452773,1814062703,224751209,1869613322,2019631216,990447881,1868785010,544367990,1937336432,1818321769,1734438944,1852383333,1092644724,151653708,1752397168,225992992,1869416714,1751195766,1748251692,1832585481,1830842465,1919905125,151653753,1819042147,1936549152,1819042147,1829308941,1931507311,1718561897,1952805734,1634564128,168653678,1818321673,1868767340,1953724784,1735289202,1829308941,1646294639,1768172656,1829308941,1679849071,1718561897,1952805734,1852402720,1970233189,539697268,1851878776,1869635443,168636787,1751349257,2019631207,158884396,1869429513,1818304630,225206828,1633880330,1746955372,2036496485,168650100,1987013897,745104416,1936090735,1814066277,1600482921,544503151,1836589099,1601400417,846425968,1879640589,1629515887,151653752,1819042147,2019911712,1702132066,1829308941,1679849071,1885482089,1778977293,1881174125,1819505781,157642345,1919957769,544501353,1769108595,1629513582,1914725486,1920300133,2013924718,1852121197,168652900,758843917,1478503725,539828307,1852404304,1296375924,1953701971,1937077345,218762542,544438282,1668248176,1661536781,543976545,1668509029,168651624,1685023753,168649331,1818321673,1751326828,1819239787,1849362697,1918967919,1701672295,544437358,1869376609,224683383,990514442,1344282656,1953393010,1953853216,1701344288,1734438944,1919295589,543518049]},{"sector":8,"length":512,"data":[1919181921,779318117,168626701,1987013897,745038112,157823284,1701264137,1634738292,1713399143,1701667186,1684300064,1936942450,1661536781,543976545,1668509029,225209441,1869416714,1769152630,1717989164,544499059,1953723256,168636530,1818321673,1868767340,1953724784,1735289202,2013858317,543647843,1647081569,990447992,544632685,1647081569,151653752,1819042147,2019911712,1685221239,1661536781,543976545,1937012080,1701734764,168626701,538976315,1852404304,1970217076,1752440948,1634213989,1701602414,1851859059,1634213988,1701602414,2053731104,539915109,1768444960,1633886323,1700929646,1852793888,1768235109,1919248500,540740109,2036473888,2037543968,543649385,543976545,1936945008,1701601897,1851877408,1936026724,544370464,1953785191,543649385,1634213985,1701602414,1650553888,221144428,538983178,1701336096,1952541728,544367988,1881174889,1701209458,1818386802,1763716197,1953046630,1953064480,1852383347,1835363616,779711087,168626701,1987013897,745038112,157835828,1701264137,1634214004,1701602414,1970234144,168653934,1818321673,1835343980,1818321779,151653740,544238947,674003042,1634038304,1852137324,539828324,1701734764,1953853279,790636832,168637472,1700948489,863205408,990447904,1998612073,1633886309,1868832878,544500000,1730181474,1769239653,1948280686,1948280168,1701601889,168626701,1919907849,746087456,151615588,1635021627,1746957426,1818521185]},{"sector":9,"length":512,"data":[1846152549,1752463461,221932644,1869416714,1751195766,1751331884,1731922185,1746957413,1818521185,1634738277,225666407,1852377354,926294132,151593064,1852793915,1965061159,1696621939,1633907565,539782252,1936287860,1853187616,1869182051,1634541678,1634082937,220294249,1835206922,1751195760,1748187180,1778977293,1937252453,151587122,543582523,1931505518,543712117,1684955496,168650092,544370441,1630300257,151653736,1075870314,151653702,544238954,1601400165,158495333,1718172425,1752461088,1696625253,1919906418,1077938701,151653690,1734894456,746086688,151615586,1987013947,746086688,168654946,1818321673,1852317804,1752394852,168654703,976384888,1762200077,1679844206,151587180,1684956475,543584032,1886351212,1778977293,1847622254,1752463461,151612516,543582523,1701998445,544175136,1679844706,224751215,151653642,544238954,540373880,1681590537,543518319,1752459639,1768453152,1634738291,168653938,758843917,1193291053,1948284005,1763730792,1919903342,1769234797,1763733103,1635000430,1634497890,1868963954,221146482,2013924618,221918067,1869416714,1751195766,1751397420,1731922185,1629516901,1746955372,1818521185,1634738277,225666407,1869416714,1768169590,1717989164,544499059,1701734764,1953853279,1661536781,543976545,1668509029,225209441,1851853066,2019696740,225993260,2053769482,896759840,1829308941,1931507311,1768172649,1077938701,151653690,1935961964]}],[{"sector":1,"length":512,"data":[151653751,1734894456,746086688,168654948,1685023753,168654707,1818321673,1852317804,1752394852,168654703,1667589129,225993248,1852442890,1111498874,990447881,1830839913,543519343,1730178932,218762607,896759818,151653690,544632685,1865181540,1702061670,1768693876,1868522862,990475381,1851878498,1768693867,168650094,1818321673,1970282604,1768715124,151610734,1769107515,1931506798,1852404340,218762599,538983178,2019905056,1919950964,544501353,543516788,1886413165,1701601889,2036887584,1633905011,1684086892,1936028260,1918967923,779706738,540740109,1750343712,1769152613,1864394106,1752440934,1918967909,544825714,1970235507,661546092,1700929652,1881170208,1818390386,221146469,151653642,544370552,1663858787,990447992,1869768058,544760608,1663069801,543519585,1159751279,857756493,168636974,1987013897,746086688,808466485,990447976,544499047,1886413165,1701601889,2036887584,1633905011,1684086892,1936028260,1918967923,226058610,1869416714,1768169590,1717989164,544499059,1701734764,1953853279,1684093705,1936028260,1869881459,1953853472,1920098592,168655201,1953392905,1748448800,990447904,661548900,1937055860,1835343973,1818321779,1948265580,544434536,1668183398,1852795252,2036428064,1767990816,168632684,1987013897,745108256,1936090735,2015392869,1886350963,168653671,2019781129,1937252474,990447927,1830833998,1634758753,543517794,1701273968,218762611]},{"sector":2,"length":512,"data":[1870137610,2019696754,225993260,1869416714,1769152630,225010732,913537034,151653690,1752397168,225993248,1970276618,1663068275,151653752,1935961964,151653751,544632685,1865181540,1702061670,1937252468,846361715,151653730,1819042147,2019911712,1685221239,1812531725,2004051055,1829308941,1679849071,1718561897,1952805734,1936947232,1630696052,1661536781,543976545,1652057448,224752761,1869416714,2019827830,1717989164,544499059,1953723256,168637042,1987013897,746087200,1702521203,1936947295,221409908,1684080906,2019762276,225993260,1633880330,1931504748,1970234484,990447988,1852404336,1953702004,1735289202,1879640589,1663070319,151587192,1684956475,543584032,1886351212,1879640589,1646293103,151653752,544370552,841775202,1631258889,1126196324,541477970,1919252069,1953439865,544367976,1701734764,1812531725,544239471,221672312,1869416714,1769152630,1717989164,544499059,1919120248,990471788,1851878498,1768693867,168650094,1651864329,745108256,151615586,1954047291,1126195570,541477970,1864394345,1663067236,1953396079,1937246733,168639031,1987013897,745104416,1936090735,1814066277,1600482921,225736047,1633880330,1663069292,1937338479,1852404340,151653735,1819042147,1953853472,990447987,1852404336,1953702004,1735289202,168626701,757935419,1852392992,2037148769,1919950892,544501353,543516788,1970107747,1769234796,1948280182,1818326127,168636019,1829308941]},{"sector":3,"length":512,"data":[1629517423,842280040,990447976,544499047,1818324597,1633906540,543450484,1701273968,1970234144,168653934,1818321673,1835343980,1818321779,151653740,544632685,1680636001,990447992,1635020660,1634738284,544433511,1767994977,1818386796,151653733,543323507,1647081569,990447992,1651340654,1864397413,1634738278,544433511,1869376609,1702125923,151653732,544632685,1865185378,1702061670,1937252468,1886549107,151653735,1819042147,1836413728,2003789939,1882917129,1953393010,1701344288,1852402720,151653733,544632685,875325537,151611490,1952802619,1851877408,543517796,1853189987,151653748,1819042147,1936549152,1819042147,1879640589,543716213,168654946,758843917,1948265773,1159756146,874533709,1713385518,1952673397,544108393,842019893,1869881448,1952802592,1953461280,1847618657,1700949365,1718558834,1851877408,1936026724,168626701,1987013897,746086688,842019893,151653736,544501353,543700790,1681590537,1948741231,1702065440,1936549152,1819042147,1752440876,1713402729,1952673397,544108393,544825709,1818845542,151653665,544632685,1647081572,151653752,1629516399,1751198824,1778977293,1178607738,1829308941,1679849071,1714433144,151611494,1953461307,1847618657,1700949365,1718558834,1851877408,1936026724,1077938701,151653690,544239472,168654945,1987013897,746086944,1936090735,2015392869,1920234355,168649832,1886218761,1836413728,2003789939,1882917129,1953393010]},{"sector":4,"length":512,"data":[1701344288,1852402720,1851859045,1701978212,1852994932,1937246733,1684956448,218762608,757938954,1631789101,1159752812,168645453,1835338253,1818321779,1919950956,168649583,1059087977,168643920,1818321673,1936269420,168652144,544893449,1601400165,168652146,942812681,151653686,1870032489,1763730795,1633907822,539782252,745027382,980640544,1886613595,1567056484,1778977293,1696624749,1667199853,1600941153,1701736292,772344333,909652024,1835338253,1836212083,1695157562,1718183022,1762200077,908096622,168650807,1601400165,1819042147,1852793951,168639077,544370441,1630300257,990447976,1869771365,168640370,2054056457,1936549152,1920099679,1913195021,151614565,1701985033,1852994932,543582496,168643407,1668509029,543976545,1885630053,168626701,757935419,1397572896,1920099616,1763734127,1212227694,168626701,1601400165,544371301,1668248176,1829308941,1629517423,1751198828,1661536781,1629515885,1647848556,151653736,1075865450,151587142,543582523,544503151,1914725999,1701277281,1661536781,168654690,1987013897,746086944,168654945,1818784521,746086944,151653681,544632685,1529637235,1702063461,728986226,1747988529,1568170539,1862863373,1769152626,225014572,1852442890,1835343994,1919246195,151597426,543582523,1919248500,544417637,1870078049,1948279922,1701995880,1077938701,151653690,544632685,1865181540,1702061670,1835343988,1920099699,168649080,1818321673]},{"sector":5,"length":512,"data":[1701322860,1954112120,151653733,544632685,1865181555,1702061670,1835343988,1920099699,1695157624,1700754285,976319090,151653690,544632685,1865181540,1702061670,1768693876,1868522862,168653941,1818321673,1868767340,1953724784,1735289202,1933248800,1681796457,151653737,1819042147,1953853472,1852402803,151653733,544238954,1818520931,225472367,1936549130,1920099679,1684956448,218762608,757938954,1749229613,543908709,544370534,223563077,1695157514,1751348077,1919950955,168649583,1059087977,168643920,1818321673,1936269420,168652144,544893449,1668509029,221342568,1869416714,1818370166,1748448812,1829308941,1629517423,842017912,224931888,1852377354,825434228,151653736,544632685,1663858785,151653752,1629516399,2019830904,1778977293,1667571834,221408104,1835665674,1835343984,1802003315,1695157554,1751348077,221917547,1684956426,168650345,1937076233,1936007272,1829308941,1629517423,892546168,157824822,1701264137,1852383348,1920099700,544501877,1952671094,908096111,168650807,1953392905,1748054560,1829308941,1629517423,1936010360,1879640589,1696624751,151653747,1629516399,2019699832,1778977293,1667571834,221408104,1936549130,845899875,151653690,544632685,875325537,151611446,1952802619,1919252000,1852795251,1762200077,908096622,153118775,1868839689,544483182,543519605,1668509029,745303137,1768453152,1969627251,1769235310,1830841967,1713404257,560752993]},{"sector":6,"length":512,"data":[1862863373,1751195762,224944428,1852442890,1667571834,221408104,1701972234,1695157620,845899875,151653690,544632685,1865181555,1702061670,1835343988,1953459827,1778977293,1696624749,1700754285,221344370,1936549130,543909987,1885630053,168626701,538976315,1279544904,1464813651,1344285984,1953393010,542332960,1701734764,1986619168,543649385,543516788,1684955496,1629513068,1881171054,1936025441,1819042080,1952539503,221144165,168639242,538976315,1920233029,538976377,1210079300,1818521185,990514533,538976265,542654752,1651340622,1864397413,1634738278,225666407,538983178,1769489696,538976372,1852394528,1919950949,1702129257,990514532,1428168736,544433523,1092624416,1126181976,1142959192,218762569,1684957194,1869116268,1919950967,168649583,1987013897,745104416,1936090735,2015392869,1920234355,168649265,1818321673,1701322860,1919907704,151653732,544632685,1680636001,151653752,544632685,1865181540,1702061670,1937252468,829584499,151653729,1819042147,2019911712,1685221239,1879640589,543716213,168654948,1987013897,746087456,1936090735,2015392869,1920234355,151653681,544632685,1932294243,1600485993,1953723256,168636786,1937076233,2019696744,1661536781,543976545,1868854387,168653941,1886351369,225993248,1869613322,2019827824,1913195021,168653925,1818521192,2003789939,1684956448,218762608,538983178,1297437472,1464813651,1344285984,1953393010,1836413728]},{"sector":7,"length":512,"data":[2037539181,1852402720,1868963941,1398284402,1836016416,1684955501,990514478,540740109,1850023968,544830068,1480663072,1836404256,544367970,2015389295,662206584,1752440947,1746957409,543520353,1852138850,1702065440,990514532,538976265,542655520,1635020628,1970151532,1919246957,543584032,2021161080,168653607,538970427,1480728608,1835093536,1718558821,2021160992,990514552,1159733280,544500088,1394614304,1852404340,1919950951,1702129257,990514532,1428168736,544433523,1092624416,1126181976,1142959192,1142959192,218762569,1836413706,2003789939,1869770784,151653731,544632685,1865181540,1702061670,1768693876,1868522862,168653941,1818321673,1701322860,1919907704,151653732,544632685,1865181555,1702061670,1937252468,863138931,1661536781,543976545,2037411683,1769108595,168650606,1751349257,2019631207,158884908,1869429513,2019631222,225993772,1633880330,1746955372,1870100581,168649842,1987013897,745108256,168654946,1818321673,1868767340,1953724784,1735289202,1829308941,1931507311,1718561897,1952805734,1936947232,1630761588,1661536781,543976545,2037411683,1769108595,168650606,1886218761,1953853472,1852402803,1930038629,1752395125,1696626543,225469550,1695157514,1718183022,1296382752,1145914195,168626701,757935419,1163019808,1296387397,1663053088,1701015137,1751326828,543452265,1668248176,225669989,1711934730,1835361650,1881173349,224620402,1869416714,1918574710]},{"sector":8,"length":512,"data":[779315045,1565737842,225665836,1869416714,1918574710,779315045,1565542770,1717989164,544499059,1953069157,1718159885,1297104672,2013858317,1629516399,2019634296,1829308941,1528854127,1936156018,1346990638,744305195,168654945,1987013897,1701993248,1915646823,841699411,2019634269,1852115469,224815460,1869416714,1918574710,779315045,1565741938,225669932,1970276618,1629513843,151653752,544632685,1734701659,1399991923,1932287312,1933248880,543520353,841838707,1879640589,1629515887,151653752,1819042147,1853190688,1913195021,168653925,1701147238,544040301,1885630053,168626701,757935419,1768453152,1936269427,1818321696,543450476,572553570,577664370,758843917,1679830317,1948741231,1702065440,1414416672,1852383347,1701079411,758843917,1931488557,1679848549,1735746149,660956519,1313415283,858923092,221524527,1930038538,1852404837,842216052,1919950900,168649583,1987013897,745108256,1936090735,1914729573,858943093,168637490,1059087977,168643920,1818321673,1936269420,168652144,2054056457,845771552,1882468915,1695157613,1718183022,1879640589,543716213,168653669,2013858317,1679848047,1768172649,1829308941,1696626287,1768172659,1829308941,1679849071,858926185,221522536,1869416714,225932150,1869416714,225932150,1869416714,225932150,1869416714,225932150,1762266378,1346314342,151653709,1819042147,1869572128,224801387,1684956426,168650345,1879640589,1696624751]},{"sector":9,"length":512,"data":[151653747,225731954,543582474,223170623,845771530,1882468915,168639085,1987013897,746086944,858927664,1074400616,168639040,2053731081,1718775909,990447904,544632685,746087525,728331099,168647984,1987013897,746087456,728331099,168647984,1987013897,746087200,728331099,168647988,1987013897,746086688,892351024,151653736,544501353,224932147,1684080906,1769152612,168637996,1668180233,225206816,1701054730,1751261283,1778977293,1075870318,151653698,225731954,1684956426,168650345,1769235827,858944622,1696609330,225469550,990514442,539831597,1936287828,544434464,543516788,1953853298,543518313,1952540788,1635021600,544437362,1948282997,1914725736,1768844917,1881171822,1919381362,221146465,1913261322,1881173621,224620402,1633880330,1931504748,1902474341,1933248777,1126200421,793066067,1948274761,1025974383,1684086823,1936028260,151653747,544632685,1529641058,1685091184,224224610,1633880330,1931504748,1936749669,990447984,544499059,1969382756,1701144423,1344303911,168644691,1818321673,1702043756,1953393012,875705138,1933248800,1679848549,1735746149,660956519,1852383347,858923124,221524527,1835206922,1717248112,1567648108,168636460,543517193,168650304,1987013897,746086688,808465712,151653736,544501353,224931889,977289226,168626701,1987013897,1970428704,1886609262,1886596189,1933248800,543520353,1667331187,1869619307,1769236851,168652399]}]],[[{"sector":1,"length":512,"data":[1651864329,745567008,1634759515,1937074788,168648052,1142974057,1163282770,1902452818,168636448,1987013897,980640800,1397773147,744314433,168652915,1768189541,151653734,225012835,1869416714,1886593142,1717989164,544499059,1936156018,1661536781,1528852589,1751343469,1566928489,168637228,543320585,942894958,151653686,909652782,1879640589,1684107375,1829308941,1713403503,1918577779,779315045,1565738610,1829308941,1730180719,1918577779,779315045,1565738866,1778977293,1814065261,1935958383,225666917,942541066,221657136,862940682,221918776,1869613322,1768169584,1879640589,1931505775,151587177,1768649531,1768431728,1768187168,1879640589,1931505775,151653737,544239472,151613538,1802713865,1746956393,1936007273,151653737,544239472,168652898,1684300041,745567008,990447926,1885956979,543778848,728785509,1702061426,1684371058,1879640589,1646293103,151653752,544239472,151615588,1802713865,1746956393,1650794601,151653752,544239472,168654948,1886351369,158884640,1933248777,544237931,1696622952,168654948,1886351369,225993504,1869613322,2019631216,990447881,1885956979,543778848,225993573,1869613322,2019631216,1627982349,1931502692,154283120,1802713865,1746956393,1634017385,1812598136,1935958383,980641637,1879640589,1696624751,151587187,1835365435,1634889584,1814067570,543449455,1981829956,1702194273,1953392928,1397039215,1869883424,1801547040,1970479205]},{"sector":2,"length":512,"data":[1763730802,1936269428,1818326560,220816489,1869613322,1936007280,990447881,544698222,1684107116,1701344288,1970435104,1635131493,543520108,544370534,168645445,1886351369,225669920,1952542730,1834969187,1886615151,1650551840,1646292069,157643897,1634745097,543712116,1752459639,1749365536,1144858656,539572819,1126196841,1008751952,909652768,1678313997,909516898,151587176,1987013947,1886610720,1701993260,1915646823,224219219,1869416714,1886593142,1701993260,1915646823,157110355,1936028219,1701998452,1869770784,1835102823,1635021600,168651619,1987013897,1231182624,1734493294,221260893,1769146634,1919968634,151593062,1937076283,2003050600,543453807,544371824,1734701659,1181888115,168648012,1937076233,1918574696,779315045,1565279858,1929972237,1885698665,153118322,1970289417,1679845491,1685221239,1920233504,1701993248,1915646823,224219971,1970276618,1528850547,1936156018,1396929070,151653725,1702521203,543584880,1882917129,543716213,1919907684,1953505380,1918574706,779315045,1565542770,1879640589,543716213,1734701659,1232219763,168648016,1936028681,2036473972,1881171316,1528853108,1936156018,1279685166,744304939,1228605746,1702043718,168640372,1987013897,745759776,1734701659,1148333683,168648019,544893449,168642112,1769239305,990447881,1970365810,1684370025,1919903264,1852404256,1881158503,1702129522,1684370531,1685024032,1718165605,1347373344,809319756]},{"sector":3,"length":512,"data":[1077938701,1879706938,1751348321,1701996895,1634476148,543974754,1702132066,1678313997,909516898,151587176,1952542779,1998612579,543716457,543704643,1380531496,539579461,1126196841,1008751952,909652768,1762200077,158623090,1782253833,544238965,1881173876,1919381362,168652129,544109938,1885630053,168626701,757935419,1650811936,1701275509,544417650,544501353,543699506,1869770792,1835102823,1919251488,1634625901,1852795252,1634213929,1701602414,168636018,757935419,1701344288,1931961714,544173600,1684366702,544175136,1936028272,1702261349,1734701600,1702130537,221148018,1762266378,842167406,151653690,225012835,1869416714,1935876214,1970428730,1852399470,1865178484,1702061670,1919950964,1920231279,1916477549,1835363685,544367970,1702129257,1886745202,2037653620,168650096,1987013897,980640544,1935764571,1684890484,1718561885,1952805734,2037212192,224685411,1869416714,2019631222,225665836,1869416714,1936924790,225993004,1869416714,1935941750,225993004,1835665674,1852383344,1853125236,990447921,1886221674,544175136,1768383858,1919251571,1986097952,543649385,1953853298,543518313,1919906600,1718558836,218762537,757938954,1850286125,1920099700,544501877,1680351280,1684633193,1919230053,695365490,1851877408,1919249508,218762542,1953392906,976236658,1829308941,1663071855,1918581363,1767861877,744322158,1936090735,1763734629,1831892078,991979379,1701668210]},{"sector":4,"length":512,"data":[1919246957,1953392928,1970434661,1948284016,224751737,1835665674,1852383344,1853125236,1782253833,544238965,1914728308,1936287589,544367988,1769365875,1914726254,1769239919,168650094,758843917,1226845485,1919251566,1953527154,673198368,1735289203,1932354924,544236916,1702129257,1886745202,1746938228,1818521185,221147749,1762266378,812807278,168639025,1987013897,980640544,1853190747,1953392991,1718561885,1952805734,1953392928,1735617841,1701985056,1651336557,1763734117,1919251566,1953527154,1887007776,151653733,544238954,1920233065,151613044,1836411451,1869881456,1734701600,1702130537,1634934898,1735289206,1970237984,1701734772,168626701,1126196841,1212372033,810831433,1762266422,812807278,168639030,1987013897,980640544,1853190747,1953392991,1718561885,1952805734,1668834592,1936537136,151653735,544238954,1920233065,168652404,1768189541,218762598,543582474,1129595203,1414416712,168641328,1333030734,1850307189,977481844,1778977293,1663070317,1868249715,812213356,168648003,1920233065,221922096,1970276618,1629513843,151653752,544632685,539782241,157827632,1701264137,1397301364,1634541650,1713400691,544042866,222513488,1970211082,808591476,1629498472,151653740,1629515369,840969324,168650800,1936028681,1818304628,808525868,990447976,877744713,1852385312,1127227508,1864378728,1920295779,222258277,1869613322,2019631216,1778977293,1310751342,1968141423]},{"sector":5,"length":512,"data":[1953384818,168641328,1987013897,980640544,1853190747,1953392991,1718561885,1952805734,1668834592,1936540464,151653735,544238954,1920233065,168652404,1768189541,218762598,543582474,1129595203,1414416712,168641584,1333030734,1850307189,977547380,1778977293,1663070317,1868249715,812213356,168648004,1920233065,221922352,1970276618,1629513843,151653752,544632685,539782241,157827632,1701264137,1397301364,1634541650,1713400691,544042866,222513488,1970211082,808591476,1629498472,151653740,1629515369,840969324,168650800,1936028681,1818304628,808591404,990447976,894521929,1852385312,1144004724,1864378728,1920295779,222258277,1869613322,2019631216,1778977293,1310751342,1968141423,1953384818,168641584,1059087977,168643920,1886216969,980640544,1850303067,1567056452,168636460,544893449,168642112,1937076233,1935876200,1879640589,1931505775,151653747,544632685,1663856755,1952135795,1935634543,168648048,1886218761,1600484640,2020896361,1077938701,1695157562,1718183022,1829308941,1663071855,1918581363,1767861877,744322158,1936090735,1696625765,1144021880,224883565,1835665674,1852383344,1853125236,1852115469,224815460,990514442,539831597,1702129225,1886745202,540221556,1701995048,1869638497,544501353,1702129257,1886745202,1746938228,1818521185,221147749,1762266378,812807278,168639027,1987013897,980640544,1853190747,1953392991,1718561885,1952805734,1953392928]},{"sector":6,"length":512,"data":[1735617843,1701985056,1651336557,1763734117,1919251566,1953527154,1887007776,218762597,757938954,1866670125,1852796269,1953392928,1970434661,1914729584,1769239919,221144430,990514442,539831597,1937076040,1701145445,1735289200,218762542,1953392906,544109682,1668248176,1661536781,151611756,1969896201,1763734643,1633886318,168650099,1886351369,980640544,1734701659,1232219763,990469456,1868785010,544367990,1852401780,1713402727,544042866,1667331187,151653739,544239472,1530557283,1936156018,1396929070,151653725,544239472,1530557283,1936156018,1279685166,151653725,544632685,1530557283,1936156018,1397977646,1936927837,1634941705,1931502966,1801675124,1936683040,1869182057,151653742,1702521203,543584880,1832585481,1663071855,1918581363,779315045,1565545330,1886610732,1829308941,1663071855,1918581363,779315045,1565545330,225473324,1869416714,1886593142,158556972,1869429513,1936924790,225665836,1869416714,1936924790,225473324,1869416714,1886593142,1717989164,544499059,1936156018,1397977646,1852377613,1853125236,154810930,1010501897,539831597,1920233061,1919950969,1667593327,761554292,1701080941,1879640589,543716213,168653669,1937076233,1935941736,1879640589,543716213,168653683,1886351369,225666080,1835206922,1834688624,1768448865,744318318,151653683,1075864170,151653702,909652782,1829308941,1528854127,1936156018,1397125678,1936075869,1829308941,1528854127]},{"sector":7,"length":512,"data":[1936156018,1397191214,1936141405,168626701,757935419,1734701600,1148333683,540289865,1679848297,1685221239,1768710432,1684368999,1869815852,1331119136,1881162834,1936225141,1701994784,1717662496,1701322853,168650098,1879640589,1718121333,151653732,1718644592,990447881,1885956979,1466911776,677671535,692864581,1879640589,1998614639,543453807,544371824,1734701659,1181888115,1563568972,168626701,1937076233,221257832,1970276618,224815219,1869613322,157574768,1664813321,1918985580,1466517536,677671535,692864581,1936615712,543515753,1969382756,1919248231,1701980192,1937007987,541278496,1734437990,218762537,1970276618,1684105331,1778977293,1763733613,1953657966,168636782,808988169,168638008,221921344,1970276618,1629513843,151653752,1752397168,225992992,1970276618,1663068275,151653752,1752397168,225993504,1970276618,1679845491,151653752,1752397168,225993760,1970276618,1646291059,151653752,1752397168,225993248,1970473226,1886593122,168637996,1937076233,1885479016,1879640589,543716213,168651123,1937076233,1769152616,1879640589,543716213,168651108,1937076233,1768169576,1852377613,1853125236,154810929,1010501897,539831597,1920233061,1868963961,1852383346,842145908,168626701,1987013897,745567008,1853190747,1567650655,1916471584,1869902693,1914725746,1768844917,1931503470,1801675124,1661536781,151610476,1818442505,544366949,1701996900,1869182051,1818632302]},{"sector":8,"length":512,"data":[168650593,1769239305,990447881,1702129257,1886745202,1646293876,543908705,168652399,1718159885,1297104672,1829308941,1629517423,909192312,224933432,1952542730,1683974243,1600744816,543568489,1700946284,1870078060,990471282,1668571504,1769414760,1310746740,544428111,1008756329,1397703712,168637216,1953392905,1749430816,1661536781,1629515885,221326456,1651706122,2019631202,225993004,1869416714,1918574710,779315045,1568109421,158884140,808464443,1701985584,1831693409,744842351,1179010592,1919958342,1667593327,761554292,1701080941,1852115469,224815460,151653642,1819042147,1952802592,225473392,1869416714,1885020278,1650749555,1647074661,151653752,1819042147,1952802592,846491241,540291635,1634941705,1679844726,1735746149,660956519,1852383347,858923124,741618223,1952805664,1650811936,1701275509,544417650,544501353,841954098,218762548,1970276618,1679845491,151653747,544239472,168653669,1818321673,1702043756,1886613620,157770340,1702050569,1701060724,1734833506,1931965029,1347637280,1627982349,1646290030,543519865,544371824,1734701659,1181888115,1563503436,1953459756,991965472,1634036835,1769152626,1701603182,1702130477,1852383344,1920099700,225734773,151653642,544632685,1850303067,1567056452,168636716,1886216969,1818647328,744321129,151653680,1075864938,151653734,544632685,808220769,1748054069,1762200077,824210542,168650800,221921344,1835206922]},{"sector":9,"length":512,"data":[1918574704,1767861877,744322158,1936090735,1881175141,1952935794,168652146,2054056457,222707744,1869416714,1751195766,1751397420,1762200077,840987758,168650801,1987013897,745104416,1936090735,1881175141,1701277554,225732984,1633880330,1746955372,1870100581,168649842,221921344,1701972234,218762612,1953392906,544109682,1885630053,168626701,757935419,1768453152,1936269427,2003790880,1986358317,539782245,1819042147,1864393829,1852121198,544830068,1869901417,1701344288,1650811936,1701275509,168636018,757935419,1701344288,1650811936,1701275509,544417637,1768383858,1919251571,1634214003,1629513078,1634038380,1646295396,544105829,1702257011,1701322852,221144434,757938954,774971437,1952802592,1650811936,1701275509,544417637,1702129257,1886745202,1702240372,1919906915,858923123,221524527,757938954,775036973,1952805664,1650811936,1701275509,544417650,1702129257,1886745202,1702240372,1919906915,858923123,221524527,757938954,1396973613,1650811965,1701275509,544417650,1835492723,225734245,757938954,1397039149,1684960573,1852401253,539780197,1819044215,543515168,1768189805,1684367718,758843917,1226845485,840987758,1931503665,1819635560,1869488228,1700929652,1702065440,1701322852,220292466,1728711946,1852404837,842216052,1919950900,168649583,1987013897,745104416,1936090735,1914729573,858943093,168637490,1059087977,168643920,1818321673,1936269420,168652144]}],[{"sector":1,"length":512,"data":[2054056457,1952802592,846491241,1882468915,1695157613,1718183022,168626701,1937076233,1935941736,1879640589,1696624751,151653747,544370552,1932290419,151653737,544632685,1932292964,151653737,544632685,841771379,875194419,1879640589,543716213,168651123,1987013897,151615347,1634941705,1763730806,1919251566,1953527154,1667593760,544370548,224932658,1869416714,225932150,1869416714,158823286,1933248777,543520353,1702129257,1886745202,1702240372,1919906915,1748251168,1829308941,2004055663,1879640589,1679847535,151653737,1752397168,225666336,1869613322,1935941744,1718159885,1230128160,542262614,807432549,990447881,543516788,1986622052,1981837925,1769173605,1746955887,1847620449,1397760111,1952522320,825045024,224931888,1870137610,1769152626,225014572,1869416714,1936007286,225014572,1869416714,1769152630,1229144876,990447958,1702260589,1869768224,1701060717,1734833506,1931965029,1347637280,544175136,223630921,1869416714,225932150,1869416714,225932150,1869416714,225932150,1869416714,225932150,1684956426,168650345,1952805385,1718159885,1297104672,1701251597,1953393012,875705138,221932912,151653642,909652526,1829308941,1646294639,842017912,224932658,977289226,1829308941,1629517423,842017912,224932912,1852377354,825434228,151653736,1702521203,543584880,1832585481,1528854127,808151396,1684352093,151653752,544632685,728327259,1680629040,151653752]},{"sector":2,"length":512,"data":[544632685,728327259,1663851828,151653752,543450209,908880228,1762200077,1646289774,151653740,543384932,168650850,2054056457,222445600,1930038538,1650750565,858933607,976892978,990447881,757935420,1953391904,168655218,2053731081,1718775909,990447904,1752397168,168649825,1937076233,168649064,2053731081,1718775909,990447904,544370552,746087525,225993829,1870137610,2019827826,225993772,1869416714,1769152630,1717989164,544499059,845636196,221524531,1869416714,2019696758,842149932,168650803,221921344,1869351178,225932132,1869416714,2019827830,225993004,1869416714,2019762294,225665836,1869416714,2019631222,808595500,168650805,1953392905,1748054816,1762200077,1646289774,151653740,543384932,168650850,2054056457,222445600,1769146634,1919968634,151593062,1886351419,168649825,1886351369,151653729,225731954,942541066,221657136,1695157514,1718183022,168626701,1769235815,858944622,1696609330,225469550,990514442,1411391520,1847616872,544503909,1701996660,1970479205,1970238050,1701734772,1868767347,1919247214,1752440942,1634213989,1768711278,1864394606,1313415270,858923092,1684955424,775172640,540740109,1750343712,543519589,1702129257,1886745202,1702240372,1919906915,1918967923,1634934885,543450486,543452769,1953719666,1684370031,1701345056,1970413678,1852403310,1752440935,990514533,1663049760,1684826472,1869770784,1936942435,1969365036,1918967924]},{"sector":3,"length":512,"data":[1869488229,1667309684,1702259060,1701345056,1162092654,541545794,1702065257,1763731052,1970413683,1852403310,168636007,538976315,1763734601,1953702003,543976553,1717924725,1713400949,1948283503,1881171304,1919381362,1701670241,1869881458,543515168,1701601889,544175136,1667590243,1752637547,543519333,542395977,168637234,538976315,543452769,1881158706,1953393007,1869815852,1701344288,1981834611,1702194273,1918967923,1868767333,1684367728,1953392928,1752440943,1852383333,1920099700,544501877,1818386804,990514533,1679826976,1852404341,1634738279,544437362,1948280431,1663067496,744759340,539780384,1629498477,1931502702,1836016416,1684955501,1931488371,1752440943,1948284001,544826728,1701867617,168653409,538976315,1646292852,1852383333,1717986592,779379557,1750343712,543498341,1835888483,543452769,1869835361,1886348064,544433513,1936025716,1635131493,1936029036,1667326496,168636011,538976315,2004116802,544105829,1819042147,1869881459,1752130592,543908705,543452769,1634233973,539781987,1919248500,1752375397,1684829551,543515168,1663070062,1936485473,544175136,743657284,540740109,1869815840,1634235424,1752440948,543519333,1847620457,1869619311,1651078003,1953066089,1718558841,1701344288,1981834611,1869898597,1646293874,1735289189,1702065440,1752637540,168652389,538976315,543516788,1818847331,1919950948,1936024431,1936269427,1953459744,1853190688,1735289198]},{"sector":4,"length":512,"data":[218762542,538983178,1163022368,1128351824,539828299,544499027,1713401973,1763734127,1919251566,1953527154,1667593760,544370548,1935832435,1970563444,1852795252,990514478,1931485216,543520353,1920103779,544501349,1970037110,1718558821,1953384736,791884320,673199154,1969382756,1919248231,539587367,1931505524,845510241,221524531,538983178,1953383712,538999154,542328096,1396908093,168626701,1885696624,1801675112,1869770784,151653731,544238947,1801545819,1952543859,221260893,1852442890,1178607738,990447881,1746953833,543908705,1952543859,1696625525,1919906418,1879640589,543716213,168651108,1987013897,745104416,1936090735,1931506789,858945121,990458930,1969382756,1919248231,1226863399,858944622,168637490,1818321673,1919950956,1801545829,151653681,544239472,168651108,1952805385,1077938701,151653690,1752397168,225992992,1970276618,1679845491,151653752,544632685,1865185380,1702061670,1752178804,1735617887,1697069833,1919906418,544106784,1970365811,1701015141,543584032,1819042147,1869881459,1667328032,168634219,1818321673,1852383340,1630614132,151599464,1769107515,1931506798,1852404340,151653735,544239472,168654948,1886351369,225992992,1701972234,1879706996,1752196466,543908705,1885630053,168626701,757935419,1952802592,1920295712,1953391986,1953392928,791884320,539767858,1919906931,1752440933,1629515109,1397039220,222905402,757938954,1229201453]},{"sector":5,"length":512,"data":[544434464,1752459621,1931506277,858945121,673199154,1969382756,1919248231,539587367,1914729071,858943093,673199154,1969382756,1701144423,220820263,1879706890,1634231666,221917547,543582474,223170623,1633880330,1763732588,225276019,1852442890,1919950970,1801545829,158167135,1869495049,1852401780,1869881447,225403936,1684956426,168650345,1937076233,1935941736,1879640589,543716213,168651123,1919907849,745108256,168651123,1987013897,745759776,168651123,1987013897,745108256,858925620,151653736,1937141613,151653751,1937141613,151653751,1937141613,151653751,1937141613,151653751,544239472,168651123,1886351369,225666080,1701998602,1600872808,221932912,1701972234,218762612,1313817354,1931498579,1701668709,168653934,1834969200,1678337907,1227300962,1919251566,543973742,1869771365,1126967154,1179397202,656680748,1329793549,542397262,1935961701,168626701,538976315,1095257924,757091139,1952805664,1650811936,1701275509,544417637,544501353,841954098,990514484,1428168736,1128351822,539828299,544499059,1969382756,1919248231,1763734311,840987758,875704115,154864141,1931965513,541806368,1679847284,1768235119,1919248500,543584032,1936025716,2004099173,543515497,1629515369,2003792416,990514478,544098569,1953653104,1819632489,539783777,543516788,539456295,1835888483,543452769,544825709,1965059940,1667328110,2004099179,543515497,1629515369,2003792416]},{"sector":6,"length":512,"data":[990514478,1159733280,2037544046,1142956064,540876883,1969382756,1919248231,1931506471,1701668709,168653934,538976315,1953069125,538976288,1025528645,1650811936,1701275509,544417650,1835492723,225734245,1678380298,1667328111,1919950955,168649583,1937076233,1769152616,1829308941,1528854127,1936417128,1567908212,168636716,1987013897,745108256,1936090735,1914729573,858943093,990458930,1969382756,1701144423,1763734311,1919251566,1953527154,1667593760,1936879476,1718159885,1297104672,1661536781,543976545,1836086121,1778977293,1679850094,1667328111,1836081003,1852115469,224815460,1835665674,1634214000,168636779,1718159885,1297104672,1701972493,1650750579,858941799,154809394,1933248777,1679848549,1735746149,661808487,1852383347,858923124,540291631,1344302697,151653709,1819042147,1952805664,1231512164,875705138,1879640589,543716213,168653683,1886351369,225666336,1701972234,1695157620,1718183022,168626701,1634233973,976907107,990447881,544499059,1969382756,1919248231,1763734311,840987758,875704115,1702043692,1397039220,544175136,1969382756,1919248231,1734701856,1953391981,1829308941,1528854127,1936417128,1567908212,168636460,1059087977,168643920,1818321673,1936269420,168652144,2054056457,1936028192,1734501492,842216041,1695157556,1718183022,1879640589,543716213,168651123,1987013897,745108256,1936090735,1931506789,858945121,990458930,1969382756,1919248231]},{"sector":7,"length":512,"data":[1763734311,1919251566,1953527154,1667593760,1936879476,1634208269,221917547,1970276618,1679845491,151653737,544370552,1680632164,151653737,544632685,1680634725,151653737,544632685,875325796,1748185642,1829308941,2004055663,1829308941,2004055663,1829308941,2004055663,1829308941,2004055663,1879640589,1679847535,151653737,544239472,168651123,1937076233,1935876200,1879640589,1696624751,151653747,225731954,543582474,223170623,990514442,539831597,544499059,1969382756,1701144423,1763734311,840987758,875704115,1869443104,168650084,1868827149,1801675112,980250719,772344333,221657138,1970276618,1931503731,151653747,544239472,168653669,2053731081,1718775909,990447904,1752397168,168649825,1937076233,168649064,1987013897,746086944,858927664,1074400616,168639040,2053731081,1718775909,990447904,544632685,746087525,728331099,1563437872,1829308941,1679849071,1935355000,724577129,168647984,1987013897,746087200,728331099,1563700016,1829308941,1629517423,842017912,224933168,1852377354,825434228,151653736,543450209,908880243,1762200077,1646289774,151653740,543384932,168650850,2054056457,222445600,1769146634,1919968634,151593062,1886351419,168649825,1886351369,151653729,544239472,168651123,1952805385,772344333,909652024,1852115469,224815460,1752130570,543908705,1885630053,168626701,1866755657,168639091,1937076233,1935941736,1879640589,543716213]},{"sector":8,"length":512,"data":[168651123,1059087977,168643920,1818321673,1936269420,168652144,1987013897,745108256,1685221239,1920233504,1232100128,1397703790,224210987,1869416714,1935941750,1850301228,1400074052,224226405,1852442890,1178607738,1829308941,1679849071,1870081139,1881171058,1663070836,1885026931,1329884745,1563568979,1077938701,1695157562,224752492,1684801802,1769152627,1232100140,1397703790,1695157597,1718183022,1661536781,1646293101,543519865,544371824,1567191899,168636460,1886351369,225014560,1869613322,1935941744,1835272717,1684890489,151653690,225731954,1711934730,1651272821,1953853299,151653690,544632685,942435425,1661536781,543976545,1868854387,1818326133,1829308941,1629517423,808594540,151653736,1819042147,1685353248,1635022191,151653740,544632685,942435425,168626701,1868854387,1818326133,151653690,1752397168,225993248,1970276618,1663068275,151653752,1752397168,225993760,1970276618,1629513843,151653752,544632685,824997987,1829308941,1679849071,1886596216,1661536781,543976545,1868854387,168653941,1886351369,225992992,1869613322,2019827824,1879640589,1663070319,151653752,544239472,168654946,1952805385,168626701,538976315,1280591175,541412937,1917853741,544501353,1919950945,1953525103,1684088864,1936028260,1852383347,743982112,1852140576,543716455,1126198889,1629497688,1914725486,543449445,1768693857,168650094,538976315,1763731055,1953853550,990514478]},{"sector":9,"length":512,"data":[1193287712,1229739077,540034382,1632837677,1629513069,1650532467,744846959,1953849888,1702065440,1701344288,1953853216,544503152,1701734764,1869817888,1918985760,1881156649,544437612,225408884,538983178,1634759456,544433507,543452769,1868767329,745434988,544432416,1919950945,1953525103,990514478,1193287712,1229739077,808469838,1394617632,543518049,1629516641,1702260578,1969365036,1937055860,1752440933,1970217061,1953853556,1852402720,1932009573,1634082927,1629497714,543236211,1836020336,221148272,538983178,1953383712,538999154,156779296,1735288140,1864394868,1919950950,1953525103,1701259296,1852402804,1852776549,220821868,537475850,1142956064,1681983832,1936028260,1718558835,1869770784,544501869,1769108595,673212270,1819567463,543518313,2037149295,990514473,538976265,155796512,1919181889,544437093,540090411,1814062703,544502625,1918986339,1702126433,1852383346,1869770784,544501869,1952802600,1701734764,1851858992,990514532,1701251337,1852402804,540029029,2037149295,990514473,1159733280,544500088,1092624416,1766197580,544502642,2003726190,1702127976,1634231072,1952670066,1763734117,1852383342,544503152,1701734764,154864141,538976288,1091127635,1701995620,1864397683,1752440934,1701716069,1663071352,1634885992,1919251555,1952866592,1948283493,225730920,538983178,1702057248,538976371,742932768,1126979650,1480862808,222905388,1728711946,1768715365]}]],[[{"sector":1,"length":512,"data":[976250222,1829308941,1629517423,539438200,151594784,1684300091,1870099488,1634759456,544433507,543452769,1868767329,225341292,1953696010,225932143,1869416714,1818304630,658122540,1929972237,1651732340,1701251597,1852402804,976236645,1829308941,1679849071,1718561912,1952805734,1852402720,1970233189,151653748,544632685,1680636003,151653737,543323507,1680636003,218762616,1952802570,1701734764,1869770784,151653731,544632685,1869770843,1819570285,744320613,990476387,1702257011,1852140576,543716455,1881171567,1886220146,1762266484,1380196454,1380275785,544302368,151653680,1819042147,1718968864,1970562419,151653744,1752397168,1695157606,1718183022,1661536781,543976545,1868854387,168653941,1142974057,1163282770,1902452818,168636448,1886351369,151653734,1730175850,151598444,1718172425,2037675040,1886284064,168653941,1987013897,1634491168,1835234419,1865178468,1702061670,1835278452,1684890489,168626701,538976315,1936287828,1918988320,1701978228,544433249,543516788,1970302569,1768693876,1713399150,544042866,1768300641,673211756,1948282473,1663067496,543519585,168650351,538976315,1650811943,1008756597,1818846752,774448997,1950949408,544434464,1701012846,1918989171,1869881465,544171040,1936287860,544825888,1684955496,1667588640,1702065505,1397703712,540740109,1969627168,1769235310,807431791,1679845473,544433519,544501614,1684955496,1159751020,1663059535]},{"sector":2,"length":512,"data":[1701999215,2037150819,1752461088,1769435749,539911539,1768444960,1936269427,540740109,1936007200,1768121712,2037148769,1886218528,1635021423,1713402990,1679848047,1735746149,1667588640,1702065505,544500000,1885434484,1866670195,1869771886,776154476,168626701,976317543,1829308941,1663071855,1650142328,1852139125,168648036,1651864329,746087200,151611763,544760635,1970151485,1919246957,543584032,1768710518,1751326820,1667330657,1936876916,1778977293,1818697850,151587123,543582523,1701736302,1077938701,151653690,1935961964,151653730,544238947,1126984801,151653714,1730176362,151598188,1718172425,1684956448,543584032,1701734764,1661536781,1629515885,1179397228,1778977293,1818697829,151587124,543582523,225210213,1953696010,224555887,1869351178,1075867759,151593026,543582523,1919248500,1918967909,1869422693,1981834610,1684630625,1634231072,1952670066,225669733,862742282,151653690,1819042147,1818846752,1718968940,1778977293,1730175854,153104748,1718172425,543520544,1702257000,1919905056,1751326821,1667330657,1936876916,1829308941,1629517423,1179397228,1661536781,1679847533,1718561897,1952805734,1852402720,1852399461,1313426475,1313431365,1313164383,1778977293,1818697826,151653684,543384932,168651123,1667589129,225010720,879519498,151653690,544632685,1718968923,1954047342,1769155677,1829308941,1528854127,1635020654,1568240756,225206572,1869416714,1818304630]},{"sector":3,"length":512,"data":[223494956,1953696010,224555887,1869416714,2019762294,225010732,1869416714,2019827830,1717989164,544499059,1701734764,544106847,221388843,1970473226,2019762274,225993772,1633880330,1931504748,1970234484,990447988,1852404336,1970217076,1752440948,1701978213,1986618723,1814062181,224751209,1835665674,1818697840,151593014,1852793915,1728712037,221918572,1684956426,168650345,1987013897,746087456,1936090735,1814066277,1600482921,168652393,1818321673,1850286188,225668932,1852442890,1634869370,1886284151,168653941,1428186729,1329874259,1497713491,1718159885,1297104672,1661536781,543976545,1836086121,1778977293,1730181742,224474476,1684956426,168650345,1987013897,746086688,808532020,990447976,1802727268,168655205,1668571504,1868849000,2036689779,1714579807,1650551840,1998613605,157577839,1952542779,1998612579,543716457,1934643022,543582496,1329864764,221585491,1852377354,1177690228,151653736,1953719668,746086688,151615585,1936679995,544826731,1970562418,1684369010,1886284064,1059091573,1778977293,1818697850,151587126,1936030011,1818692109,221929781,1684956426,168650345,1987013897,745038112,157835568,1969371913,1919247974,1797284965,1868724581,543453793,1970302569,151653748,1819042147,1936679968,1819042147,1818692109,168639030,1987013897,745300256,168636465,1818321673,1953701996,1953853284,168651873,1987013897,745108256,1936090735,1814066277,1600482921]},{"sector":4,"length":512,"data":[723545705,168636960,1818321673,1802707052,1752658025,224752745,1701972234,218762612,2002874890,1970302569,168639092,1937076233,1768169576,1879640589,543716213,168653668,1886351369,225666336,1852377354,2019827811,1762200077,1679844206,151653752,544632685,1680632164,1913261432,1701738337,221934712,1869416714,1751195766,1747988524,1762200077,824210542,168650806,1886216969,745300256,151653680,1914731114,1701738337,168653944,1886216969,745300256,1747993904,1778977293,1634869370,2019913335,151653748,544238947,808217697,168650808,544893449,1600939364,226059627,1835206922,1818304624,1749432108,1778977293,1701060730,1701535596,151653753,1936684147,151653730,1819042147,1685353248,1635022191,151653740,544238947,808217697,168650820,2054056457,2002874912,1954047342,1678313997,1679844197,151653737,543323507,1680632164,151653752,544632685,1680636001,151653737,544632685,1680632164,151653752,544632685,1702132066,1920233504,1768184608,744304941,168651873,1667589129,225993760,1701054730,2019827811,1879640589,1679847535,151653737,544238954,221670503,1818584074,2036689759,151653690,544238947,1680632164,151653752,1914731114,1701738337,168653944,1667589129,225010720,1633880330,1713400940,1651272821,1953853299,1778977293,1914728557,1701738337,168653944,1819567463,543518313,1885630053,168626701,538976315,1397118274,1347769413,1394617632,1965061221,1969365104]},{"sector":5,"length":512,"data":[1919247974,1634038304,1735289188,1411391534,544434536,1953723754,1634037024,1679848302,1633907561,1629512818,1179394158,540740109,1718165536,1701344288,1935764512,1751326836,1667330657,544367988,1684104562,1935747104,1869902624,543450482,656436841,1635020654,662271092,1936269353,777143072,540740109,1850023968,544830068,1229201440,1919501833,1629516915,1818845558,1701601889,1954112032,1852383333,1886284064,1646294133,1701209717,990514546,1159733280,544500088,1394614304,1681983817,1936028260,1718558835,2019913248,1751326836,1667330657,779249012,540740109,1716068384,1701344288,1886284064,1763734645,1919295603,1629515119,2037675040,1752440876,1646292581,1702061685,544241012,1970562418,544435826,1752459639,1918984992,1931508082,221148261,1762266378,1380196454,1380275785,544302368,218762544,1718968842,1970562419,1919950960,168649583,1886216969,1869503264,1953784180,808213881,1778977293,1646295662,153104755,1718172425,1953459744,1948279072,168655220,1668576009,1913195021,168653925,1935804941,168639025,1987013897,745104416,1936090735,1814066277,1600482921,841707113,1829308941,1931507311,1650142313,1701734005,224228472,1835206922,1769152624,1969380140,1684956518,151653725,1646289514,151597683,1718172425,1701344288,1931961714,1663066400,1634885992,1919251555,1919705376,2036621669,1661536781,543976545,1819044198,224818530,1667893514,879976992,990447881,1696622185]},{"sector":6,"length":512,"data":[168650351,976384866,1661536781,1528852589,1635020654,1568240756,223494956,1852442890,1935810661,151593011,543582523,1752461166,543649385,1701998445,544175136,168652644,1886216969,1954112032,1953505381,1935351922,1277975913,151653702,543518314,540242786,1765476617,1869488230,543236212,1701734764,1701144096,151653732,543387241,151611763,1802713865,1763733609,1644825972,221918067,1818429706,151653731,225731954,1644825866,221918323,1835665674,1903239280,990447881,1953068401,1702299962,543520295,544500072,1696624225,168650351,1936094562,1886745701,1684956448,218762608,1684956426,168650345,540740109,1229332512,1430408268,539828294,1819044166,1886284064,1646294133,1701209717,538979954,1953722189,1948285292,544434536,1629516649,1852383342,1852990836,1914727521,1769239919,168650094,538976315,544370534,1819567463,778399337,540740109,1850023968,544830068,1229201440,1919501833,1629516915,1818845558,1701601889,1954112032,1852383333,1886284064,1646294133,1701209717,990514546,1159733280,544500088,1394614304,1699613001,1914729592,1633968485,543517794,1702132066,778643488,539766373,1635086693,1869881452,692667424,154864141,538976288,1920098627,1818632313,1763731297,1702043763,1718165620,1684955424,1819176736,1718165625,1701344288,1763730802,1851859059,1920099616,673215087,778514021,1868898348,168634726,538976315,1936028501,538976288,1701736270,218762542]},{"sector":7,"length":512,"data":[1818846730,1718968940,1869770784,151653731,1752397168,225992992,1970276618,1646291059,151653752,1752397168,225993504,1970276618,1679845491,151653752,544632685,1680632179,990447977,1797285239,544698222,1936287860,1919705376,2036621669,1829308941,1629517423,1714629736,990447976,1684104562,1869768224,1768300653,168650092,1919907849,746086944,168654946,1987013897,746087200,1936090735,1814066277,1600482921,1277914729,1598377545,1281314377,168644165,1987013897,746087456,168651108,1651864329,746087200,168654948,544893449,154231398,1765476617,1869488230,1919905056,1869750373,168652143,1818321673,1868832876,1818321779,151653740,1713398634,151597410,1718172425,1920099616,168653423,544370441,1630304353,151653752,1713404522,151597410,1718172425,1718576416,1627982349,1629512804,2019830904,1661536781,168649580,1886218761,845309472,168626701,976314982,2013858317,543647843,1680636001,990447992,1025538145,1935764512,1635131508,543451500,1702132066,1684300064,1936942450,824191776,1929972237,168649588,1650854413,168639026,1987013897,1969380128,1684956518,2019634269,1879640589,1679847535,151653752,544239472,168654947,1886351369,225993248,1869613322,2019631216,1913195021,168653925,1819044198,543585634,1885630053,168626701,538976315,1397899600,541872453,1632641069,543519602,539442471,1919250543,543452769,544370534,740779815,661661472,1684955424,661923616]},{"sector":8,"length":512,"data":[1836016416,1684955501,168636019,538976315,1920233029,538976377,1175014465,1953722985,1634231072,1952670066,1864397413,1868767334,1851878765,990514532,538976265,155800352,1919181889,544437093,1847617135,544503909,1918986339,1702126433,990514546,1159733280,544500088,1092624416,1766197580,544502642,1918986339,1702126433,1700929650,1684959097,1851879968,168650087,538970427,1230184480,1684291849,1936942450,543584032,543516788,1918986339,1702126433,1717641330,544367988,1952540788,154864141,538976288,1818653029,538994529,2054057806,544174693,1629513321,1025974382,1886330919,1851880037,1635197028,1919950963,1852142437,990514548,538976265,1819370784,1919181921,1684291872,1936942450,1718165548,1701736224,1935767328,1986619168,168652389,538976315,1936028501,742932768,1126979650,1160260696,777536553,168626701,1936875888,543977829,1668248176,1829308941,1528854127,1818653029,744318817,990447920,1802658157,658319136,544432416,1702060641,168653934,1886216969,745300256,220675367,1852442890,1701847141,151597425,543582523,656437102,1864378173,1634887024,168649838,1818321673,1802707052,1752658025,224752745,1869416714,2019696758,1701993260,1915646823,157111107,1717920827,1953264993,1734701856,1953391981,1718159885,1297104672,1929972237,1885698665,153118322,1870150409,1684349042,1684352120,151653752,544370552,1680636004,1695157624,1718183022,1661536781,543976545]},{"sector":9,"length":512,"data":[1635018087,1483891812,1731922185,1948284005,1629513064,1701995620,1763734387,544175214,674920546,2019830117,1929972237,1885698665,156788338,1869429513,1700470902,1684106353,808153700,1684352093,151653752,544632685,1819370843,1919181921,744304683,168654948,1987013897,1902467872,1684300140,1563700082,225993260,1852377354,1700470883,1634494065,168648039,829515120,151653690,225731954,1918988298,1819370867,1684956448,218762608,538983178,1413829408,757092677,1886339872,1752440953,540876901,1969713761,1953391981,1869881459,1701344288,1881174633,1701011820,1718165548,1886413088,1919971186,1702125929,673194030,1936287828,225667360,538983178,1953459744,1852793888,1835606117,1768187245,1818588257,1646275705,1969316709,1948280179,656434536,1663051623,1634561391,1830839406,1746958689,543520353,2037588065,2019652718,1920099616,690909807,540740109,1934958624,1092645733,218762584,1952805642,1881174373,224620402,1835206922,1700470896,1634494065,808213863,658180361,1629497149,1836410738,544501349,1702259047,168640366,544893449,168642112,2053731081,1718775909,990447960,544632685,746086757,1819370843,1919181921,224210987,1869416714,2019631222,1902467884,1684300140,1563437938,1929972237,1885698665,156788338,1869429513,1918574710,779315045,726681970,1697406256,168654945,1987013897,1701993248,1915646823,808144969,2019634269,1829308941,1629517423,1700473976,1684106353]}],[{"sector":1,"length":512,"data":[875262564,151653725,544632685,1734701659,1131556467,1630297427,151653752,544632685,1718707547,1567056236,151597100,1701602107,1948283489,1713399144,224878956,977289226,1913195021,168653925,1702126963,1852121201,168652900,540740109,1095770144,1128616786,539828301,1936875856,1868767333,1851878765,1768693860,1713399150,1126199919,1684955424,1663061280,1634561391,779314286,540740109,1850023968,544830068,1279336480,1766197513,544502642,2003726190,1702127976,1634231072,1952670066,1864397413,1634738278,1701667186,1936876916,154864141,538976288,151603539,1919181889,544437093,1948280431,1663067496,1634885992,1919251555,1952866592,1948283493,225730920,538983178,1769489696,538976372,978535456,1395213608,1681983817,1936028260,1919295603,1713401199,1953722985,1918988320,1952804193,168653413,538970427,1397039136,692398138,1091127620,1701995620,1713402739,544042866,1868785011,1881171054,1835102817,1919251557,154864141,538976288,1126778152,1699481944,1752459118,543584032,1919181921,544437093,1735287154,1768759397,544437614,224751215,1879706890,1702064737,1881173347,224620402,1633880330,1881173100,1752196466,225141601,1869416714,2019696758,1701993260,1915646823,157111108,1952802619,1970238240,543515506,1735287154,151653733,544370552,1663858787,151653752,1819042147,1952802592,1735287154,990447973,544499047,1919181921,544437093,1735287154,1852383333,1646292852]},{"sector":2,"length":512,"data":[1697135224,544760873,674920546,2019764581,1879640589,543716213,153122914,1634941705,1931502966,1701668709,1713402990,1953722985,1684300064,1936942450,1718159885,1297104672,1661536781,1528852589,1684291938,1563571058,168636460,544893449,168642112,942878217,151653686,543323507,746087269,225993829,1970276618,1696622707,151615588,1986097979,1718558821,1952805734,1919510048,1629516915,1701995620,168653683,1937076233,1667571816,151653752,544238954,811557744,151653681,942684206,1074400566,168639040,1768189541,151653734,543323507,1680636003,990447992,1651340654,1864397413,2036473958,544433524,1970170221,1852776563,151653733,1752397168,225993760,1970276618,1663068275,1879707000,825253731,151653690,1819042147,1768649504,1836016496,168636525,1987013897,746086944,1734701659,1148333683,168648019,1059087977,168643920,1886216969,1096964896,863134820,808213810,1778977293,1668292730,168636767,942878217,151653686,1819042147,1952802592,1919181921,1731922185,1629516901,1701995620,1763734387,544175214,674920546,2019830117,1829308941,1528854127,1684291938,1563571058,153104684,1936028219,1701998452,1682006560,842232420,1879640589,1696624751,168654947,1987013897,1768187168,2019779884,1627982349,1696621668,1697409380,168654948,543386121,1869771365,221604466,1633880330,1663069292,1868917608,151653740,544632685,745104485,225993829,1869416714,1936007286,225993260]},{"sector":3,"length":512,"data":[1869613322,1936007280,151653737,544239472,168653668,1952805385,772344333,909652024,1668286989,221917535,1684956426,168650345,1818321673,1701257324,1684300148,990447986,544499047,1953719652,1952542313,544108393,1919181921,544437093,1869901417,980967968,1680434472,151653752,544239472,168654947,1987013897,745104416,168654947,1684300041,745104416,168654948,543386121,1869771365,154495602,1718172425,544500000,1885434487,543450480,1970238049,168649838,1818321673,1751326828,1819239787,1698367753,1667592312,1852121204,1718558820,1852402720,151653733,544632685,1680632164,151653752,544632685,1647080293,151653752,544239472,168651123,1886351369,225666080,1701972234,1879706996,1702064737,1696623971,225469550,1695157514,1919906418,221918570,1835665674,1835212912,1919246180,225603442,990514442,1344282656,1163088449,757094220,1918980128,1663067507,1634561391,1814062190,543518313,544370534,1851859020,542580836,1835888483,1935961697,990514478,540740109,1850023968,544830068,1279336480,1919501833,1847620723,1752657519,543519849,1918986339,1702126433,1718558834,1918988320,1952804193,225669733,537475850,1394614304,1681983817,1936028260,1718558835,1701344288,1634231072,1952670066,1629516389,1919251558,1634235424,990514548,1159733280,544500088,1226842144,1752440934,543519333,1629516649,1869422708,1864397939,1629513070,1836410738,544501349,1869770792,1835102823]},{"sector":4,"length":512,"data":[1634692128,1920413540,694514793,1752440876,1948282469,168650088,538970427,1702502432,1713401714,543646060,1931506537,539784293,543452769,1768383858,1919251571,1918967923,1702043749,1935745140,1819239968,1937207148,990514490,538976265,978862624,1143555368,1918110040,1718840929,1629516389,1701995620,168653683,990514491,543574281,1919248500,1918967909,1869422693,1629513074,1836410738,1937010277,1650534432,1970040691,1679844724,543912809,1684104562,1769109295,740910452,1701344288,1752440942,990514533,1919253001,1818632303,1763731297,1818435699,745693541,1684955424,1734701600,1702130537,1629516658,1931502962,1629516901,1868963955,2003790956,168639091,990514491,1397703689,1919252000,1852795251,1919950963,544370537,857763700,976302894,154864141,538987585,1986622020,1970151525,1919246957,154864141,538990659,1651340622,1864397413,1702043750,1919906915,1869881459,1634038304,990514532,542655497,1734689312,1768844905,1814062958,1667852143,1931504737,1869898597,1970151538,1919246957,154864141,1111118660,1411391576,1936613746,544367974,1919181921,225669989,168639242,1632373051,544367988,542330692,1936876918,1936617321,990514490,541868297,1769096224,1847616886,1700949365,990514546,542655241,1179004960,224937542,1141455626,1480735315,1716461600,1952805734,543584032,1801675120,168653925,1634732557,1818588018,1919950967,168649583,1987013897,746086944,1734701659]},{"sector":5,"length":512,"data":[1131556467,990469459,1634100580,544500853,1835492723,225734245,1869416714,2019827830,808464684,990447976,1634100580,544500853,1936090735,168653925,1886216969,745300256,168645187,543517193,846687344,990447904,1847617129,1918967919,1701672295,225670254,1633880330,1730178156,1684108389,151614052,1952802619,1718968864,544367974,1919181921,544437093,1869901417,980967968,1680434472,151653752,1819042147,1768649504,1836016496,168636525,1886216969,745300256,168645187,543517193,846687344,990447904,1864394345,544828526,543518319,1969713761,1953391981,1879640589,543716213,153122914,1634941705,1931502966,1701668709,168653934,1937076233,2019827816,990447904,1702257011,1717989152,225731955,1869416714,2019696758,1747990572,1832585481,1847621729,1700949365,1718558834,1667592992,1936879476,544175136,1684104562,1846086157,1679845221,151653752,1881176682,540112748,1765476617,1684086886,1936028260,1936269427,1919253024,151653743,544632685,959212643,1929972237,1679848040,1818438776,1832585481,1847621729,1700949365,1718558834,1667592992,1936879476,1768453920,1663068259,1646292577,1701978213,168649825,1987013897,745104416,168654948,829910128,151653690,1819042147,1952802592,1702132066,1731922185,1679848549,1702259058,1836412448,544367970,692864040,1661536781,543976545,1885956979,1835888483,151653680,1752397168,225993760,1684080906,1818501220,658581292,1829308941]},{"sector":6,"length":512,"data":[1646294639,1718561912,1952805734,1769104416,1701602678,151653748,544632685,1568170587,225207340,1633880330,1730178156,2003072101,157577839,1701264137,1701978228,1769234796,1931502966,1869898597,1970151538,1919246957,1661536781,543976545,1885956979,1835888483,151653680,1752397168,544760352,1933248777,543520353,1952671091,1847620207,1700949365,1768431730,168650855,1937076233,2019827816,990447904,1702257011,1667592992,544370548,1651340654,1814065765,168654703,1937076233,1769152616,990447904,1663069801,543519585,1713399159,543452777,1696624225,1919906418,1661536781,543976545,2004116839,157577839,1701264137,1702043764,1919906915,1970234144,168653934,1667589129,225993760,1835206922,2019827824,225010732,1634339082,1919230053,1785884530,990447925,1948280425,1830842223,544829025,1952671091,225669743,1852377354,2019827811,1829308941,1663071855,2019830904,1661536781,543976545,1701537891,151612527,1886938427,544498533,543452773,1814062703,224751209,1835206922,1968906352,1634755955,1952803683,221260893,1852442890,1819287674,151597943,543582523,762799470,1819898995,1634738277,1952803683,1818321696,543450476,225603430,1869613322,1769152624,990447881,1663069801,543519585,1696622191,1919906418,1879640589,1679847535,151587192,1952802619,1466911776,543453807,1918989427,1735289204,1735355424,1818321769,1667592992,544370548,1651340654,168653413,1886351369,158884384]},{"sector":7,"length":512,"data":[1731922185,1210086501,1919899497,151653732,1646293615,2019699832,1782253833,544502645,909189217,1953063469,1667592992,544370548,1651340654,1881174629,1769173871,224750690,1852442890,1919230074,1785884530,990447925,1948280425,1646292847,168650601,1886351369,158884128,1681590537,1702259058,1836412448,225600866,1869613322,2019696752,990447881,1851880052,1919247987,1718968864,544367974,225666671,1869613322,1935941744,990447881,1851880052,1919247987,1718968864,544367974,224879987,1919879434,746087200,151615587,1952805691,1852796448,1869768058,1634493984,1879706983,976385900,1913195021,168653925,758843917,1847602477,1931507557,1701607796,1667330080,745825643,1937070880,1667330149,1567909227,540877088,218762544,2003595274,168639027,1886351369,158884384,1681590537,1633907561,1931502706,151653737,544632685,1865185378,1702061670,1634738292,1952803683,1879640589,1998614639,543453807,544371824,1568170587,1128353838,777274699,1852007795,221260655,1869613322,1870078064,1881171058,1528853108,777877602,1262698832,1932416069,1869505381,168636971,1987013897,2019711776,1095773789,1413827395,1836412462,1935893875,225993516,1869613322,2019631216,990447881,1986622052,1970151525,1919246957,1879640589,1998614639,543453807,544371824,1568170587,1128353838,777274699,1869902692,168653670,1886351369,225993760,1870137610,2019762290,225993516,543582474,223170623,1633880330]},{"sector":8,"length":512,"data":[1763732588,225276019,2053769482,222707744,1835206922,1683693680,862547312,808213810,1778977293,1178607738,772344333,221657139,1869416714,1650139254,1345215864,1162560321,775041876,1937011556,1680631653,151653752,2054582125,1650794616,2019699832,1929972237,1696625256,824997988,990447926,544499047,1867999560,1864918130,1702061670,168634740,1886216969,1096964896,863134820,824991026,1778977293,1178607738,2013858317,1679848047,2019830904,772344333,909652024,1077938701,1695157562,1718183022,1829308941,1528854127,777877602,1262698832,1680757829,1702065267,2019830887,1095777033,1413827395,1953719342,543647091,1210085999,1919899497,1095772260,1413827395,1680749107,1718580339,168634739,1667589129,158884640,1933248777,1847620709,1702522479,1713401714,543646060,543452769,1701536109,544760608,825040957,1913195021,168653925,1936875888,544697445,1885630053,168626701,538976315,1397899600,1414553413,1344285984,1702064737,661661472,544370464,539456551,1835888483,778333793,540740109,1850023968,544830068,1279336480,1919501833,1663071347,1634885992,1919251555,543584032,1835888483,224685665,537475850,1394614304,1681983817,1936028260,1718558835,2019913248,1751326836,1667330657,225600884,538983178,1769489696,538976372,156779296,1651340622,1864397413,1769218150,544433517,1914728308,1634037861,990514548,1428168736,544433523,1092624416,1480731720,743981868,221141060]},{"sector":9,"length":512,"data":[1879706890,1702064737,544501855,1668248176,1661536781,543976545,1936875888,158101861,1701264137,1886330996,1852795252,1008757857,1684300093,1629503090,1836410738,225734245,1633880330,1931504748,1668311403,812477807,1933248777,544237931,544829025,1953065079,1886593125,224748385,1869416714,2019762294,151597356,1717920827,1953264993,1970234144,168653934,1886216969,745300256,168645187,543517193,151602752,1718172425,544173600,1853189987,1768366196,225338742,1633880330,1730178156,1870099557,168649842,1818321673,1751326828,1819239787,1698367753,1667592312,1852121204,1718558820,1852402720,1701322853,168650098,1987013897,746087200,168654948,2019781129,1919230074,1785884530,990447926,1953723757,543515168,1814066273,1953718629,168636704,221921344,1661549322,543976545,1702126963,990447985,1701536109,1701344288,1864383776,1634887024,1948279918,543517537,1701209701,168653923,1952805385,1634732557,1600484210,1696625776,225469550,990514442,1193287712,1095914565,541411150,1699160109,1684086900,1936028260,1634869363,543516526,1836020326,1886284064,1814066293,778399337,540740109,1629495328,1851879968,1663067495,1769172591,544437363,1696622191,1701344361,1953702002,544502369,543452769,543452773,1919181921,225669989,538983178,1919885344,1931501856,1953653108,1684300064,1936942450,543236140,539446311,543452769,1701584993,1752459118,990514478,1159733280,2037544046]}]],[[{"sector":1,"length":512,"data":[1092624416,1766197580,544502642,1918986339,1702126433,1718558834,1851879968,168650087,538970427,1230184480,1684291849,1936942450,543584032,1954047342,1634231072,1952670066,168653413,538970427,1480728608,1717912585,1953264993,1734701856,1953391981,544175136,224752501,537475850,1126178848,1698957656,1819631974,1701585012,1752459118,544175136,543519605,544370472,1718165552,1953459744,1819042080,1684371311,990514473,1159733280,544500088,1092624416,1766197580,544502642,1918986339,1702126433,1700929650,1684959097,1851879968,168650087,538970427,1230184480,1684291849,1936942450,543584032,543516788,1918986339,1702126433,1717641330,544367988,1952540788,154864141,538976288,674912322,1480862021,1919501833,1629516915,1701995620,1763734387,1634869358,224749422,537475850,1109401632,1160264280,156779305,1953718604,1684300064,1936942450,544106784,1735287154,990514533,1428168736,544433523,1092624416,218762568,1952802570,1735287154,221927525,1970276618,1663068275,151653752,1819042147,1952802592,1919181921,151653720,544238954,1920230759,1701277281,168636767,1701251597,1851880052,1881171303,224620402,1970276618,1663068275,151593080,1986097979,1752440933,1701060709,1819631974,1701585012,1752459118,1661536781,543976545,1635018087,158491748,1701264137,1684086900,1936028260,1852383347,1646292852,1697135224,544760873,1952805672,1096949875,863134820,168634674,1920230759]},{"sector":2,"length":512,"data":[1701277281,976892255,990447881,757935420,1953391904,1730181490,1634890853,1483040622,1879640589,543716213,168651123,1818321673,1802707052,1868787817,221277549,1835206922,1818304624,656418604,1778977293,1919361121,151653682,544239472,151611763,1701985033,1919906931,1769152613,1684955424,225993504,1869613322,2019762288,1778977293,544897123,1869771365,154561138,1718172425,1914724640,1701277281,544434464,1684955501,1919906913,1762266489,1346314342,151653709,544238947,1682006619,842232420,540027997,1633893129,1700929646,1864380704,544828526,1629515375,858798112,220935736,2053769482,222707744,858654986,168638008,1667589129,2019779872,1627982349,1696621668,1697413219,168654948,1668180489,829581088,990447904,1847617129,1920409711,1918988385,1684960623,1862863373,1667571826,825044088,1731922185,1869881455,1684956448,543584032,1835492723,225734245,1835665674,1919361136,1074400561,168639040,1768189541,151653734,543384932,168654947,1684300041,746087200,168654948,1668180489,829581088,990447904,1847617129,1920409711,1918988385,1684960623,1829308941,1663071855,1714433144,1751541350,1731922185,1869881455,1684956448,543584032,1835492723,225734245,829581066,151653690,543384932,151611763,1701985033,1919906931,1818304613,1812531725,1651729519,1913195021,168653925,1919355405,168639026,544370441,1412197473,1464814671,168645189,1886216969,745300256,220687399]},{"sector":3,"length":512,"data":[1701447946,863135520,990447881,1629513321,1851879968,1763730791,1768366195,225338742,1661549322,543976545,1885956979,154167415,1701264137,1701716084,1847620728,1818390127,225144417,543582474,223170623,1835206922,1834688624,1768448865,744318318,151653683,1730175594,828322418,772344333,221657139,1970276618,1696622707,168654948,1818321673,1701257324,1936093044,1651666790,151653752,544632685,746087269,225993829,1869613322,1684349040,151653752,544238947,746087525,225993573,1634339082,1920099616,912945775,1778977293,1730179181,168637554,808988169,168638008,1597141607,168639025,1768189541,151653734,1752397168,225993760,1633880330,1730178156,1870099557,168649842,1987013897,746087200,168654948,1886351369,225993760,1835206922,2019827824,225993516,1634339082,1920099616,912945775,1765476617,1835343974,544830576,1735287154,151653733,544238954,221540967,1728711946,221918066,1633880330,1931504748,1668311403,1634561391,1681590537,1633907561,1948279922,656434536,168634220,1818321673,1701257324,1852140660,1651666790,151653752,1696621418,1919906418,168638058,976515687,1627982349,1931502692,154414192,1768176393,1918985075,1634934884,543450486,539785315,168651123,1952805385,1701251597,1851880052,1696621927,225469550,1695157514,1919906418,221918826,1835665674,1835212912,1919246180,225603442,990514442,1193287712,1414747205,539828306,544499015,1769108595]},{"sector":4,"length":512,"data":[1864394606,2036473958,779314548,1968185376,1752440948,1851859045,1919252339,544106784,1701734764,1953853279,990514478,1159733280,2037544046,1092624416,1768300620,544502642,1918986339,1702126433,990514546,538976265,541676320,1919181921,544437093,1847617135,544503909,1918986339,1702126433,990514546,1159733280,544500088,1528832032,1701734764,1953853279,1768300637,544502642,1702132066,543584032,1769108595,168650606,538970427,1229201440,1684300064,1936942450,543584032,1953718636,1646276907,543519865,1931503215,1852404340,990514535,1428168736,544433523,1092624416,1279470680,743195692,168642899,1701251597,1920234356,1869770784,151653731,544632685,1865181540,1702061670,1768693876,1868522862,168653941,1886216969,745300256,168645187,543517193,1869771365,154561138,1702312713,1852793888,1629516839,2003790956,1886217504,1646295412,543519865,1769108595,225666926,829646602,151653690,544238947,573336673,168632871,543517193,154301287,1765476617,1953701990,1735289202,1661536781,1629515885,572992620,151653671,1730176362,151597683,1768176393,225408116,1633880330,1730178156,2036495461,151610740,1954112059,1852383333,223101984,1869416714,1683693686,1680629097,990447980,1919906931,1752440933,2036473957,168650100,1668180233,225010720,1835665674,1936138352,218762550,846423818,151653690,544632685,1630300257,990447980,1702257011,1869967648,1663067508,1634885992]},{"sector":5,"length":512,"data":[1919251555,1936132621,168639027,1685023753,168649331,1886216969,745300256,168650849,543517193,154497895,1765476617,1869619302,1651078003,1696621932,1864393838,1953701990,1735289202,1661536781,1629515885,1380133996,1778977293,1919230053,1785884530,990447926,1696622185,1864393838,1768693862,168650094,976515943,1929972237,1651732340,990447881,1702257011,1634231072,1952670066,1629516389,1663067246,1769238127,224753006,1835665674,1936138352,218762547,896755466,151653690,1935961964,151653730,544238947,1630301281,151653736,1730176362,151598195,1718172425,1970234400,1684368482,1869967648,1663067508,1634885992,1919251555,1936132621,168639030,1818321673,1802707052,1868787817,154168685,1869036297,1667326496,1868963947,1869422706,168650098,1886216969,745300256,168645187,1701734921,829646624,990447904,1847617129,1679848559,543518319,225731961,1701972234,1728712052,1953723493,1852121202,168652900,540740109,1162289184,1145323860,539828306,544499015,1919181921,544437093,1836020326,1886284064,1814066293,778399337,540740109,1850023968,544830068,1279336480,1919501833,1663071347,1634885992,1919251555,543584032,1919181921,225669989,537475850,1394614304,1681983817,1936028260,1718558835,2019913248,1751326836,1667330657,225600884,537475850,1109401632,1698957656,1819631974,1702043764,1852140903,1869881460,1702065440,540740109,2017796128,538997865,1279336480,1919501833]},{"sector":6,"length":512,"data":[1663071347,1634885992,1919251555,2036687392,543452783,1919181921,225669989,537475850,1394614304,1681983817,1936028260,1718558835,1701344288,1634231072,1952670066,1629516389,1919251558,1634235424,990514548,538976265,978862624,1143555368,1681983832,1936028260,1868963955,224685685,538983178,1702057248,538976371,742932768,168646723,758843917,1696607533,2037544046,1952802592,1919181921,1768169560,1919247974,1919295603,1730178415,1684108389,1763734116,1752440942,1109423201,1936269400,544483182,1701077357,758843917,1998597421,1702127986,1701601889,544106784,1685024112,218762597,1952802570,1919181921,1869770784,1762266467,1346314342,151653709,544632685,1865185380,1702061670,1702240372,2036754802,1835492723,1634548489,1109419371,543236184,1953067639,1818386789,1702043749,1852140903,151653748,1752397168,225993760,1684956426,168650345,1635018087,1483891812,168639034,1059087977,168643920,1987013897,1096964896,863134820,808213810,1661536781,1646293101,543519865,544371824,761885531,657218865,991962916,1701978209,1831693409,543515759,1835492723,1064595045,1778977293,1730181742,828322145,1812531725,1651729519,1661536781,543976545,1836086121,1778977293,1634148474,221339441,1633880330,1730178156,1870099557,168649842,1987013897,746086944,168654948,1937076233,2019631208,1829308941,1629517423,221391992,1852377354,825434228,151653736,1696621418,1919906418,168638058]},{"sector":7,"length":512,"data":[1987013897,746086944,168654945,1987013897,746087456,168654945,1886351369,225992992,1835665674,1634148464,221404977,1684956426,168650345,1597071719,168639025,1818321673,1701257324,1936093044,1651666790,1728712056,845099361,151653690,1752397168,225014560,1633880330,1931504748,2003855723,168636520,1886216969,745300256,220674599,1701447946,845244192,990447881,1948280425,544434536,1629516649,1734701856,1953391981,1936024608,1885958755,225603444,1869613322,1769152624,1678313997,1931502437,151653737,1935961964,151653730,225731954,1728711946,221917793,1869613322,2019631216,990447881,1869768820,2002854007,1931508065,1684371041,225014560,1869416714,2019696758,158884908,1869429513,1702043766,1852140903,1852383348,1109421940,1728712024,221918049,1633880330,1931504748,2003855723,1702127976,1933248777,544237931,1847619444,544503909,1685221239,154864141,1819042147,1952802592,1718838895,2019717743,1634089737,1948281964,1970238056,168650855,1701972283,1728712052,1684108389,1696625252,225469550,990514442,539831597,544499047,1635131489,543451500,1936090735,1713402981,1931506287,1701668709,1763734638,1480728686,168626701,1869899111,1868985190,544760434,1668248176,1718159885,1297104672,1879640589,543716213,153122913,1701722889,1684366437,151653695,1819042147,1952802592,1634493811,225604724,1869613322,2019631216,1778977293,1869029498,1601725030,151653682,909652782]},{"sector":8,"length":512,"data":[1829308941,1528854127,1684291938,1563571058,168636716,1937076233,2019696744,1661536781,543976545,1685349735,1685221239,1879640589,543716213,168654946,1937076233,2019827816,1879640589,1696624751,168654948,1886351369,225993248,1701972234,151653748,942684206,1728711990,2019714671,221917791,1684956426,168650345,1818321673,1701257324,1919907700,151653732,225731954,1952802570,1718838895,2019717743,1684956448,218762608,757938954,543236141,1735287154,1936269413,1953391904,1684370021,1953068832,1752440936,793518181,1952935525,1918967912,1701672295,168653934,757935419,1952802592,1981833504,1684630625,1852140576,543716455,544370534,1835492723,544501349,1109421673,990514520,539831597,540032332,1851876717,875962483,541223712,544497960,1935762796,1852383348,758526240,544500066,1701080941,218762537,1952802570,1718510956,2019717743,1869770784,1762266467,1346314342,151653709,1819042147,1886611744,151653741,1730181738,2019714668,168636767,1886216969,1634556704,1852401763,858545509,1778977293,1818697826,1601725030,151653681,909652782,1879640589,543716213,225993573,1634470154,1667571826,1650797688,151653752,1953719668,2019779872,808465452,1747988528,1936276233,1734701856,1953391981,758264608,1064593762,1879640589,1696624751,168654947,544893449,1650879591,221339512,1970276618,1679845491,151653752,1752397168,225993248,1633880330,1730178156,2003072101,224686703]},{"sector":9,"length":512,"data":[1970276618,1646291059,151653752,1752397168,225993760,1869613322,1667571824,151653752,544239472,168654946,1886351369,225993760,1953696010,151653731,2019779946,1818697850,1601725030,151653682,543384932,225993573,1684080906,1667571812,1696607352,168654948,1952805385,772344333,909652024,1818692109,1601725030,168639025,1768189541,151653734,1752397168,225993760,1633880330,1730178156,1870099557,168649842,1987013897,746087200,168654948,1886351369,225993760,1929984778,168649588,1667893563,1730181752,2019714668,151597663,1830826043,1936613733,1798583840,1678313997,1663066981,151653752,543450209,1680636003,990447992,1718165571,544500000,1885434487,1918967923,1684960623,1818692109,1601725030,168639026,1952805385,1701251597,1852140660,1651666790,1852121208,168652900,758843917,1763716397,1092631150,1768308044,544502642,1918986339,758843917,537472301,1043155283,1868785011,1663067246,225599848,757938954,1970217005,1981823604,1702194273,544106784,1144674370,218762584,1936943370,1868721529,1919950956,168649583,1937076233,2019631208,1879640589,543716213,168651108,1937076233,2019762280,1829308941,1679849071,1718561897,1952805734,1734701600,1701667182,151653747,544632685,1311537251,1163021653,1296125511,168645445,1987013897,745038112,1567191899,1731922185,1931506789,1852793701,1751326820,1864397409,1634607206,168650093,1684955401,746086688,1347768148,1599227216]}],[{"sector":1,"length":512,"data":[151653719,544238947,1702132066,1920233504,1769167648,744304939,220676391,1852442890,1634541667,1852138105,1935766639,1868721529,151653740,1852859762,1668489338,225932129,1852442890,1869488250,2037604724,1819239021,2013858317,1646293615,2019699832,1829308941,1679849071,1683696745,1431186281,1195725389,1162690894,758262355,168647986,1937007975,1869376889,168639095,1987013897,746087456,1567188059,1762200077,1931502446,151587177,1768649531,1986994288,1931506277,1852793701,1751326820,168653409,1668047625,1879640589,1663070319,151653752,544239472,168651108,1886351369,225992992,1701972234,1829375348,1700952417,1635020654,1651341683,221932655,1835206922,1834688624,1768448865,744318318,151653683,1847616106,1935766639,1868721529,151653740,544238947,657222753,151594821,909652795,1635021600,1918985326,1701978212,1953720679,1847620197,1936026977,1635021600,1998615666,543716457,151653701,544894570,1635020654,1651341683,168651887,1987013897,745300256,728331099,168647985,1751349257,1818304615,224944428,1851853066,2019631204,1431262252,1380274256,168646495,1987013897,746087200,990447929,1851876211,1919903264,1701344288,1931491360,1684955508,543453793,1768383858,1919251571,1835101728,1629516645,1226859630,1852776528,168655212,1885696521,1931508334,2004050275,1778977293,1847622254,1935766639,1868721529,151653740,544632685,1529637220,1311467876,1163021653,1296125511]},{"sector":2,"length":512,"data":[841634629,224211501,1869416714,2019696758,1768184620,157102635,1701264137,1766334580,1685221207,543584032,1380931396,1701978180,1953720679,168653413,1668180233,225014560,1835665674,1701257328,1836675956,225931116,1953459722,1836675937,980184930,1879640589,1663070319,151653752,544239472,168651108,1886351369,225992992,1953696010,151653731,225731954,1936943370,1868721529,1852121196,168652900,540740109,1162289184,1331119188,757089362,1952794400,1701324832,1679829368,1685221239,1869768224,1852383341,544503152,1701734764,990514478,1159733280,2037544046,1092624416,1768294732,544502642,1918986339,1702126433,990514546,538976265,155800352,1919181921,544437093,1847617135,544503909,1918986339,1702126433,990514546,1159733280,544500088,1109401632,1480866392,1679826976,1685221239,154864141,538976288,1711885377,1953722985,1634231072,1952670066,1847620197,1763734639,1752440942,1870078053,168649842,538970427,1230184480,1684300041,1936942450,543584032,543516788,1954047342,1634231072,1952670066,1629516389,1919251558,1634235424,990514548,1428168736,544433523,1092624416,1279470664,168626701,1685349735,1685221239,151653690,1819042147,1936943392,1868721529,151653740,1075864426,151653702,1935961964,1728712034,221917284,1701972234,1074400628,168639040,1818321673,1701257324,1652125300,1778977293,1919230051,1785884530,990447928,1696622185,1919906418,1661536781,168654690]},{"sector":3,"length":512,"data":[1751349257,2019631207,225993772,1870137610,2019696754,158884396,1818442505,544366949,1751607656,1685221152,1998615141,224686703,828663562,151653690,1935961964,151653730,1819042147,1952802592,224557422,1667893514,811886368,1946749453,544502629,808216674,224931942,1852442890,1919230074,1785884530,990447928,1948280425,1646292847,168650601,1987013897,746087200,1728711988,221917796,1752369418,2019827820,151597356,1970234427,543517794,1718184051,1701585012,168653926,1818456585,746086944,151653681,1886351212,845440800,1862863373,1818501234,225206572,1835665674,1684480112,218762545,538983178,1413826336,1146244951,1193291040,673215589,695756136,1919907616,1919295588,1763732847,1953853550,1852402720,168636005,538976315,1920233029,538976377,1711885377,1953722985,1634231072,1952670066,168653413,538970427,1230184480,1684300041,1936942450,543584032,1954047342,1634231072,1952670066,168653413,538976315,1953069125,538976288,1997101124,224686703,537475850,1092624416,1768294732,544502642,1918986339,1702126433,1869488242,1852383348,1701344288,1919907616,990514532,538976265,155800352,1919181921,544437093,1948280431,1847616872,544503909,1918986339,1702126433,1717641330,544367988,1952540788,540740109,1934958624,538997605,1212227616,223101740,1728711946,1870099557,221930610,1970276618,1646291059,151653752,1819042147,1952802592,1919907684,151653732,543452769]},{"sector":4,"length":512,"data":[1647081570,990447992,1870096744,1663067250,1918985580,151653695,544239472,168654946,2054056457,1920099616,946500207,1765476617,1919230054,225603442,1701972234,218762612,538983178,1413826336,1163155778,1193291040,673215589,695756136,1954112032,1919295589,1763732847,1953853550,1852402720,1852383333,1142976372,168635980,538976315,1920233029,538976377,1711885377,1953722985,1634231072,1952670066,168653413,538970427,1230184480,1684300041,1936942450,543584032,1954047342,1634231072,1952670066,168653413,538976315,1953069125,538976288,1644776516,224752761,537475850,1092624416,1768294732,544502642,1918986339,1702126433,1869488242,1852383348,1701344288,1919907616,990514532,538976265,155800352,1919181921,544437093,1948280431,1847616872,544503909,1918986339,1702126433,1717641330,544367988,1952540788,540740109,1934958624,538997605,1212227616,223101740,1728711946,2036495461,221930868,1633880330,1730178156,1870099557,168649842,1684955401,745038880,168650852,2054056457,1920099616,946500207,1765476617,1919230054,225603442,1701972234,218762612,757938954,1162289197,1113149012,1126182176,1702260335,1948284018,1746953576,1663072357,1634885992,1919251555,544106784,1763724353,544175214,2037260385,1701601890,990514478,539831597,1970562386,1663069810,2037543521,1952805664,544106784,1702060387,543584032,1869771365,168636018,1701251597,1652125300,151653690,1752397168]},{"sector":5,"length":512,"data":[225992992,1970473226,1818304610,657467180,1661536781,1629515885,221850732,1651116298,1852252261,151593009,543582523,1836216174,1679846497,1953064809,1879640589,1629515887,151653752,1752397168,225992992,1919879434,745300256,1330401108,223495511,1970473226,1818304610,660678444,1661536781,1629515885,1713843308,1629957415,151653671,1730175338,151597678,1718172425,1953459744,1714250016,544370464,222702913,1684080906,1818304612,221262124,829318922,151653690,543450209,841773171,1849362697,1634562671,1701978220,1852994932,1768302624,544502642,544239472,543452271,220813377,1818429706,151653731,225731954,846096138,151653690,544239472,151615585,1919236873,544370546,1970562418,168652402,1668576009,1913195021,168653925,758843917,1126182189,1329941320,539828300,1667590211,1868963947,1852121202,1718558820,1852402720,168636005,1751321101,1819239787,151653690,1819042147,1768649504,812152688,1661536781,1629515885,1380133996,1778977293,1668489317,151587122,1952805435,544109173,1713399401,1684960623,168626701,1869771365,976775794,1778977293,1663070317,1700750445,1919906418,168626701,538976315,1346980691,1296912195,539828289,1885956947,1768453920,1931502964,1701011824,1752440876,1629515365,1886330990,1852795252,1663069281,1634561391,1851858988,1869422692,1998611826,1702127976,1634759456,221144419,538983178,1229673248,1297040208,757084237,1835094816,1935745125]},{"sector":6,"length":512,"data":[1868718368,539780470,544503138,1629513079,1634038380,1746958692,543520353,543516788,1918986339,1702126433,1852383346,776749344,168626701,1885956979,1835888483,168639073,1685023753,168649331,1885956979,1835888483,168639024,1818321673,1802707052,1752658025,151653680,544238947,657222753,168634156,1701734921,845378336,990447904,1847617129,1868767343,224488813,1970276618,1931503731,151653737,1819042147,1768649504,1768454000,168650100,1886216969,745300256,168645187,1701734921,828601120,990447904,1847617129,1696625775,1864393838,1768693862,168650094,1886351369,225014560,1869416714,1818304630,657205036,1913195021,168653925,976315251,1627982349,1931502692,154283120,1869626121,1769152624,1953392928,1869488239,1919248503,1930038629,221917795,1701972234,218762612,757938954,1263738925,1279348809,541149264,1800609837,1629515881,1634234476,1769235810,1751326819,1667330657,745694580,1684955424,1701344288,1752637550,543519849,1667330163,168636005,1802701325,1818325097,979462256,1812531725,1651729519,1627982349,1629512814,1330916460,1162891349,151653714,543323507,657222753,168634177,1886216969,745300256,757553703,220676391,1651116298,1802707045,1818325097,224487536,1701054730,1769152611,154864141,544238954,1885956979,1953065079,990447973,1852793640,1819243124,1818322464,1948283756,1970238056,220817511,990514442,539831597,1346980691,1414088791,539828293]},{"sector":7,"length":512,"data":[1885956947,1634759456,544433507,543452769,1935827316,990514478,539831597,1346980691,540035159,1632837677,1629513069,1650532467,744846959,1953849888,543520544,1701997665,544826465,1702257000,1701344288,1634231072,1952670066,1763734117,1279336558,218762542,1768649482,1768454000,221930868,1869351178,224555876,1768649482,812152688,151653690,544238947,657222753,168634144,543517193,1885956979,1953065079,151653733,544238947,1412197473,168641089,543517193,1885956979,1953065079,151653733,225731954,990514442,539831597,1163085385,1866670160,1918988397,1279336549,1953068832,1702043752,1634886000,1936879476,656418592,1546068012,539764596,740764711,658188064,1025974316,168635943,1718159885,980444531,1661536781,1629515885,539438188,151653671,1075864938,151653702,544238947,1412197473,168641089,543517193,168642112,1886216969,745300256,220671015,1701447946,222707744,1835206922,1818304624,658188076,1778977293,1178607717,1661536781,1629515885,1025977452,1074400551,168639040,1952805385,168626701,538976315,1701995848,544434464,543516788,1918989427,1718558836,1701344288,1936286752,1702064993,2037146221,1918988320,1718558836,1701344288,1869770784,1835102823,218762542,1094999818,1931493716,1701668709,168653934,1768163853,158228339,807434084,1849362697,1700949365,1718558834,1954112032,1763734373,1852383342,1970435187,1869182051,1869815918,1918985760,1678313997]},{"sector":8,"length":512,"data":[154148983,1970092809,1713402995,1869376623,1768169591,544104307,1818851112,1818304620,1937334647,1835364896,544106849,168634672,757935419,1701998624,1734437990,1851859059,1919950948,1702065509,1970085988,1646294131,1868767333,1667593070,1986622581,1879706981,1818649970,544434017,807428708,1715144969,1936154988,1919903264,1701998624,1702390118,1868963955,543452789,1713401715,168653409,1969582704,543450483,807428708,1715144969,1936154988,1919903264,1701998624,1702390118,1937055859,1931502693,1634082927,218762610,1163022346,155665747,544567653,990447921,1835492723,544501349,1717924464,168654953,1380274768,1695109189,840988017,1916471561,1881174117,1768318322,225666424,1163022346,1515210066,1970365728,151598112,741566011,1953459744,221406752,1163022346,1262702412,1970365728,151599136,1668246587,1919950955,2020173413,1380977165,1144140613,1970365705,1747988768,1715144992,543646060,544370534,1647129139,1679848553,224490593,1163022346,155267635,544567653,543698994,1818639113,1713399649,857764463,1768041778,1684086900,1936028260,1735289203,1380977165,1229018949,1902452820,808722549,990453864,1717924464,1998616681,544500065,1953459752,1634038304,544828524,1919950945,2020173413,1191841065,1163023439,1696615751,941651313,153118768,1952805691,543582496,1746953591,543520353,543516788,795305330,544040301,1953653104,168626701,1953721961,1678341490,154148962]},{"sector":9,"length":512,"data":[1752447753,1634541669,1763733097,1920234350,1769235317,1646292591,224752761,1936552458,157645417,807428708,1010501897,1919885360,1864380448,809377906,1634037024,1830843246,1914725487,1763732783,540549235,824210031,1919885366,221393696,1734701834,158625389,807428708,1933248777,1701668709,1679848558,1919251557,1701734765,2036473956,1701998624,544762214,544370472,1701344367,1936291698,168634725,1769497705,1678340974,154148983,1852390153,544761188,1948280431,1763730792,1920234350,1769235317,673214063,1903390325,2053465461,220816485,1684300042,1678340722,154148983,1684093705,1936028260,1852383347,1685024032,1831825952,1954112032,824713317,1768041782,1852776564,220821868,1986097930,846230373,544695328,990447920,1702257011,1701344288,1635021600,1881172835,1953393007,1746956901,543519333,1702065448,1852383332,1936286752,695038817,168626701,1718839652,1936154988,543319072,990447920,1734437990,1868963955,1752440946,1768169573,1936941427,1818389861,168653413,758843917,1696607533,1952544113,1713402725,1679848047,1818653545,980641633,168626701,1599293764,1163026246,1695110224,824210801,1701985033,1952540016,1952866592,1881174629,1931505775,1696607347,221143924,1397310474,1398752863,156716872,544567653,1933248818,544698216,1869440365,1663072626,1702129263,225670254,1397310474,1398753631,156716872,544567653,1950026036,1701995880,1701994784,1835363616,544830063]}]],[[{"sector":1,"length":512,"data":[1953394531,1937010277,544175136,2003789939,1229195789,1598644051,1398099541,1695106117,941651313,1764244233,1919251566,694968686,1769107488,572552302,1853171744,1684370293,168632873,1599293764,1213423433,1230198607,1902446938,808525941,674963560,1702129257,1818324594,1818304553,1937334647,1869116192,1752440951,1886330981,1851880037,1769152612,168650106,1599293764,1313562441,1230198607,1902446938,808591477,674963560,1702129257,1818324594,1702305833,1869507360,1752440951,1886330981,1851880037,1769152612,1864394106,1852383334,779252851,168626701,1718839652,1936154988,1650729010,151597088,1869504827,1919248500,1886348064,1718558841,1397310496,1264535903,1398230862,168647241,1769146893,1869374842,2003050595,151597088,1684300091,1936942450,543584032,1702521203,1919907616,1763734372,1970217070,1953853556,1852402720,218762597,1094999818,1696612692,225666158,1124732170,1414745679,1734701856,1953391981,168626701,757935419,1650545696,1713399148,824210031,1768041782,1869422708,796008548,1684086893,1936028260,1735289203,941629486,1109409056,874523736,1109409056,840969296,1394621728,824192073,1142963488,168635977,1836190221,157442420,941646436,539767339,741419832,841692192,724836396,840969265,741417004,539767840,218762552,1717912586,542265415,1919115629,1701978223,1953720679,1163004429,1915117383,1936287589,1696605812,673215857,539828260,1634625394,909195373]},{"sector":2,"length":512,"data":[221392681,1650723082,1915101728,1936287589,220341876,1852115210,168652132,1163004429,1330536263,1380992863,1970365705,154415648,758526267,1629500210,1914725746,1936287589,1936876916,1480672544,1229210925,168626701,1399219524,1634541650,544174691,1768383858,168653939,1598506322,1734701606,645165929,1970365728,1195725344,1599032927,542265415,606609451,1931488544,1735550821,695034222,168636975,543319049,1701979682,1953720679,168632870,1684956425,218762605,538983178,1650545696,544433516,1914725999,1936287589,544367988,1701667182,168636019,538976315,1634625394,909195373,1852273199,909208929,1734701871,1634625394,1970085997,1646294131,1868767333,1667593070,1986622581,168636005,1735526925,946692462,1814050353,1818583649,1954112032,151653733,1197892932,1092637264,151653708,1197892932,1126191696,151653708,1197892932,1142968912,151653708,1197892932,1109414480,151653708,1197892932,1092637264,151653704,1197892932,1126191696,151653704,1197892932,1142968912,151653704,1197892932,1109414480,1913261384,1835101799,1814050353,1818583649,1954112032,151653733,1197892932,1092637264,151653720,1197892932,1126191696,151653720,1197892932,1142968912,151653720,1197892932,1109414480,151653720,1197892932,1394627152,151653712,1197892932,1109414480,151653712,1197892932,1394627152,151653705,1197892932,1142968912,1309281609,1195725407,540422483,544567653,539238440,1735532589]},{"sector":3,"length":512,"data":[829251950,539566134,221388847,1734701834,1634625394,1634476141,543974754,1702132066,1141443085,1381197413,223560992,1698957578,542266214,168645443,1717912585,1394627155,151653715,1399219524,1396973650,1141443085,1381197413,223561248,1698957578,542266214,168645447,1163091790,1195725383,1902452819,539500661,539828260,1919378803,1835101799,790636832,168636960,1717912585,1394627155,151653716,1399219524,1296900178,1141443085,1381197413,223494944,1698957578,542266214,168645188,1717912585,1411404371,1309281618,1280065887,1397179730,1970365728,606087200,1914711328,1835101799,540422456,539959337,218762546,1734701834,1684105074,1678340708,1701978231,1915646823,1915507525,779315045,743654258,1936156018,1397977646,1734701612,1148333683,1701981267,1915646823,1915507526,779315045,223561586,990514442,539831597,1818386772,1713402725,1746956911,1818521185,543649385,1847617135,1684368737,1701998624,1702390118,168636019,1919945229,2020173413,1953720684,543319049,745027122,745039154,745027123,745039155,745026614,157824310,1734701883,1953391981,1701998624,1702390118,1764237427,1919885422,695362916,151587341,958423652,808216674,745025638,1748133424,862335020,990447976,1414086999,1129270316,1163013195,742739536,1162888530,1598949901,1178948176,1696618569,606106993,1881156896,1768318322,1936288888,1879706996,1768318322,1701735800,2003044717,1598967072,1414086999]},{"sector":4,"length":512,"data":[1598967084,1262702412,1598967084,1313883474,1313680453,1346720351,218762565,1818298634,544106345,218762546,538983178,1836403232,1635000432,543517794,544370534,1230983247,539774285,1381978191,1327508557,743268176,1599098656,1330470738,1327508548,1330470736,743654982,1599098656,1327508562,1599233872,742671425,540740109,1851858976,1347362916,777535839,540740109,1699946528,1919885413,1936876900,543584032,1601008481,829451626,1684955424,1953063456,778199412,168626701,1601399140,829451626,1650551840,1998613605,224686703,2003044618,1886348320,1835886943,1868832812,1836212080,1868832812,745365360,1886348320,1834971743,168649839,544695305,1601204068,1717989229,1679830131,1918857327,1868832812,1601331056,744776801,1886348320,225993055,990514442,1780490272,544238965,1818386804,1868963941,1768169586,1634496627,1735289209,1701867296,1684955506,990514547,1394614304,1864394085,1919247474,1718558835,1836278048,1886218847,1851858993,1768038500,1650553972,218762542,1936286730,1953525599,1814061665,1818583649,1919907616,151653732,1679849316,1834971247,539767862,1886348320,1818651999,745824623,1886348320,1868852575,1701601909,1868832812,946691952,809175344,858795312,1678313997,1868832887,2020433776,538979448,1601204068,1836212582,539782501,1601204068,1769103718,539782509,1886348320,1818587743,809175352,925904180,1678313997,1868832887,1701994352,859189612,1679830066]},{"sector":5,"length":512,"data":[959737967,1679821100,1935634543,539781492,538976288,1601204068,990474851,825047088,151653681,1679849316,1683976303,538979442,1886348320,745698399,1868832777,1702059888,1734701671,1679826988,1767862383,947088749,842087200,221589805,2003044618,1886348320,1835886943,1679830072,1834971247,153909357,1886348320,1869116255,159017331,909196041,221786413,757938954,1953701933,1735289202,1702127904,1327526765,540106576,1327509038,1397972816,1678313997,824647778,154151975,221851963,1650723082,657663776,990457900,168636466,543319049,660096039,842729760,151653681,656433764,539446339,842152713,1678313997,1395073122,153102164,221459003,1650723082,1396909856,1143417895,657205075,740774725,659768871,1397172012,1395076135,990455635,841823282,218762553,757938954,1967792173,1948282989,1701601889,1919903264,1663066400,1635021413,1881173609,1701011820,990514478,539831597,543516788,1702521203,543584032,1936287860,1650553888,1830839660,1751348321,1327526757,1348031568,1113543493,222647105,1678380298,1784640361,540176493,1700946284,1870078060,168649842,544695305,1651730788,990471265,1701604457,543973735,1953721961,1952675186,225341289,2003044618,1600218144,1651472244,157643897,1870099515,1954112032,1852383333,1970435187,1869182051,807936110,2021138502,151653673,1679849316,1852399457,1886545779,1852390153,1970435187,1869182051,1919361134,225473903,2003044618]},{"sector":6,"length":512,"data":[1600218144,1769304166,990475118,1919971171,1936024431,544370547,1953721961,1952675186,225341289,2003044618,1600218144,1735749734,990474354,1919971171,1936024431,544370547,1953721961,1952675186,544108393,1970238055,151653744,1679849316,1852399457,1718775923,1852390153,1970435187,1869182051,1919950958,2020173413,1852385312,1685417059,543649385,795358774,694695734,1347357197,1162893652,1094868819,1696613715,606106993,1679830304,1784640361,221409389,1124732170,1414745679,1684956448,218762611,1936286730,829256545,151587130,757939259,1953701933,1633971809,1696621682,2037544046,1829308941,1528854127,1718839652,1936154988,221260893,1678380298,1935766377,153107053,1010501897,539831597,1920233061,1769414777,1679845492,1818653545,544434017,225731955,1869416714,1935351926,1936029281,744305264,168652915,1919907849,746086688,168654945,1987013897,1768184608,1567514483,225993004,1869416714,1870078070,1881171058,1528853108,1717924464,1936154988,2019634269,1818442505,544366949,1717924464,1936154988,1684955424,1701998624,1684370293,1718159885,1297104672,1829308941,1646294639,1968909432,1684300127,1563700082,1661536781,543976545,1937007975,1952541797,168653428,1987013897,1130519328,1953775955,1630297458,151653740,1075870314,151653702,1528853103,1717924464,1936154988,1344285789,842220882,1919885380,1163022368,222376499,1862875914,1885020274,1937073522,744318053,1163022368]},{"sector":7,"length":512,"data":[541340211,1344303727,842220882,1074400577,168639040,1768189541,151653734,544632685,1734701915,1567911533,151597868,1852390153,1634301033,544828524,543519605,1931498308,1701668709,168653934,1987013897,1836210976,1702521203,808987741,990447976,661548900,1768169588,1634496627,1851859065,1701650553,2037542765,1829308941,1998616175,543453807,544371824,778658139,1836280164,1567122273,990457900,1931505518,1768121712,1830841441,1768448865,1847616878,1701078373,1931488356,1634082927,151653746,1819042147,1936286752,1651795303,543519865,1731922185,1629516901,1954112032,1718558821,1701344288,1936615712,1668641396,1852795252,1661536781,1629515885,1647914092,151587176,1767995195,1852383348,1970435187,1869182051,1831346286,544502645,1948280162,1713399144,1953722985,1701998624,695757158,1778977293,1679844718,153104993,1765476617,1869488230,218762612,538983178,1701336096,1767995168,1852383348,1970435187,1869182051,1936269422,1952669984,1819042165,543236217,1634755955,1702125938,1936615712,1668641396,1852795252,544432416,544366950,168653665,538976315,543516788,540424312,1663071081,1701015151,1684369010,1969365036,1702305908,1701999648,1763734625,1935745140,1881170208,1768318322,1769152632,543515502,1919248500,1918967909,990514533,1931485216,543518063,1835363949,1667853935,1752440947,1763734625,1919902574,1634889584,1763730804,538979956,544503106,1746957417,1948283745]},{"sector":8,"length":512,"data":[1700929647,1701999648,1684370529,1701868320,1818323299,168655212,538976315,1668180339,1870209125,1633886325,544483182,539783012,778514021,1702043692,1935876199,1767995168,774774900,1969365038,1970086004,1679848563,1635197039,1931506793,1663068005,774774899,990514478,1763713056,1702130542,539911265,660952864,1663069292,1751348321,544500000,1702125932,1718165618,1701344288,1767995168,1852383348,1970435187,1869182051,1936269422,1953459744,1768908576,1948280686,990514543,1646272544,1634738277,1864397938,543236198,1918986355,1830839397,1869440366,778266990,168626701,544370441,1701998683,1734437990,1345084787,1096238418,168645705,540740109,1716068384,660961056,1713399158,1684960623,1881170208,1768318322,1998597240,1701978213,1852994932,1919248416,1868963941,1752440946,1667309669,1818326388,1936615712,1668641396,1852795252,540740109,1864900640,1851859058,1701344367,1919950962,2020173413,168635945,1633946125,168639025,1818321673,1768169580,1952802675,1702132066,1633946125,168639026,1987013897,1852398368,1970435187,1818307677,1933248800,543520353,2036430689,1701344288,1936615712,1668641396,1852795252,1829308941,1629517423,221260904,990514442,539831597,544698190,1746953591,543520353,543516788,1970365811,1701015141,1836412448,544367970,1948280431,1763730792,1920234350,1769235317,1763733103,1480663150,1867254062,1763732335,1886724212,218762542,862020618,151653690]},{"sector":9,"length":512,"data":[544632685,1630304354,151653752,544632685,2019846491,1567845993,544760108,1986097979,1752440933,1868767333,1701998701,1684370291,1684957472,168654949,1886216969,746086688,1380012115,1113539923,222647105,1651116298,155598880,1765476617,1953046630,1847620391,1713402991,544042866,543516788,1702195571,1684372069,1918988320,1718558836,1701344288,1650553888,168650092,1987013897,745300512,2054255451,727867764,1395488866,1397899600,1094868805,224216403,1869416714,1751261302,168636460,1684300041,746086944,1380012115,1113539923,155538241,544760379,1868767293,1701998701,1684370291,1684957472,168654949,221921344,1869416714,1818501238,1886346028,1701869940,2019699571,1681590621,540876920,1868787823,1948280164,224751737,1869416714,1751392374,168636460,1818784521,746086944,151653681,544632685,1529641058,1852403823,1647013734,990469496,1025538146,1752461088,1763734117,544171630,1701735720,1768845165,1718165603,1948279072,543520114,1953721961,1952675186,695103337,1829308941,1931507311,2019830889,1829308941,1629517423,2019699832,1829308941,1663071855,842083436,1929972237,1629516392,1818438776,1661536781,1629515885,1633365100,1768173161,1667329395,168648040,543320585,151602752,1718172425,1746952480,1701341033,1634541682,1852401763,1936269413,1919705376,2036621669,1902473760,1701996917,151653732,544632685,778658139,1836280164,1567122273,158097708,1952805691,1667329312]}],[{"sector":1,"length":512,"data":[1701734760,1887007776,1074400613,168639040,1684955401,745038368,157836848,1631402761,1646290030,1714433144,543712870,1701978157,1702260589,1701344288,1667329312,1701734760,1701406240,168649836,1886216969,745301024,1498697807,1599292752,1163084098,1778977293,1679844705,154349921,1718172425,1768453152,1936269427,544104736,1970561889,1763732577,1920234350,1769235317,168652399,1818321673,1683693676,1784640361,724725869,157116787,1752461115,1769435749,539780467,1830842212,543519343,1667592307,1667851881,1869770784,1936942435,224882281,1835665674,1633951856,151593011,1667326523,1868963947,1869422706,168650098,758843917,1411394861,1647144823,543519865,1953721961,1952675186,544108393,2015381040,1763719800,2019910766,809840928,1178874413,218762542,1600218122,1651472244,979727481,1661536781,543976545,1735616868,2036495461,168650100,1987013897,1852398368,1970435187,1818307677,1829308941,1629517423,221260904,1684080906,2019631204,1095783212,1598378834,1163084098,1913195021,168653925,758843917,1226845485,1920234350,1769235317,1730178671,1886744434,990514478,539831597,1663064130,1635020399,544435817,1936615714,1668641396,1852795252,1935761952,540680805,1747988529,825303084,539781168,221130286,1678380298,1852399457,1886545779,151653690,1819042147,1952802592,1835492722,1918856549,1701264137,1752440948,1768759397,1701602404,1646277408,544437353,1948280431,1377854824]},{"sector":2,"length":512,"data":[1646284079,224752761,1650657546,151653751,543450209,1647081569,990447992,1936090735,168653925,1952805385,168626701,757935419,1886339872,1701015410,1919906675,1936615712,1668641396,1852795252,990514478,539831597,1663064130,1635020399,544435817,1936615714,1668641396,1852795252,1935761952,540680805,1748513841,892411948,539781176,221130286,1678380298,1885757281,1936615797,151653690,1528853103,1718839652,1936154988,1229204573,1598644051,1464813651,224020819,1919879434,1767988000,1718445102,1936154988,1296313437,1347371871,151653714,1819042147,1952802592,1835492722,168652133,1886216969,745300256,1748001584,1778977293,1633951842,1936615775,158364263,1634876169,543516526,1647128624,1763731558,1634934899,1629513069,1851859059,1936615712,1668641396,1852795252,1869768480,168652917,1987013897,745300768,151653683,544368755,1663855713,990447980,1177366595,757932102,942743614,222703917,1970473226,1818304610,1748513068,151599149,758657339,757089841,807419437,1177562424,1661536781,168654690,1684300041,746086688,151615586,1717989179,225731955,1701972234,218762612,757938954,1866670125,1668248176,1869837157,1852383346,1970435187,1869182051,1919361134,779122031,758843917,1109404973,1868767320,1767994478,572552046,1953721961,1952675186,544108393,1702060386,824195618,745027651,809775392,824192104,224933956,1678380298,1885757281,1886545781,151653690,544632685]},{"sector":3,"length":512,"data":[1529637985,1915644257,1701668709,168648045,1684955401,745300256,151653687,225927779,1684080906,2019631204,225993260,1701972234,218762612,757938954,1850286125,1970435187,1869182051,1919950958,2020173413,1092624430,1752440948,1881174889,1953393007,1818370092,1881160992,1768318322,1768038520,540767092,1025534050,1734701856,1953391981,168626701,1767858532,1919972206,168639078,824206953,1829308941,1629517423,1818373228,1627982349,1646290030,1869491308,1344807028,842220882,1919885380,1163022368,692138547,1752447753,543519589,1734437990,1918967923,1331175525,560227666,1852115469,224815460,1702103306,1646294131,1885023340,1818649970,1567844193,1778977293,1679850094,154284385,1718172425,1701344288,1629513074,1679844722,1768714357,1702125923,151653747,1528853103,1717924464,1936154988,1818373213,1718159885,168636704,1987013897,745300512,168651873,1684955401,745300256,860181072,1864385586,1380982898,1093808965,2013858317,1528853103,1717924464,1936154988,1818307677,1852115469,224815460,1702103306,1646294131,1380985964,1195725637,1778977293,1178607738,990447881,1847617129,1629516911,1734701856,1953391981,1829308941,1528854127,1835492723,744322158,153118818,1986097979,1752440933,1702043749,1852140903,1074400628,168639040,1886351369,158884128,1681590537,1633907561,1914725490,1920300133,1684086894,1936028260,151653747,544238954,221340004,1678380298,976367969,1778977293]},{"sector":4,"length":512,"data":[1679847533,1633842025,990447972,1679844727,1948741231,1819042080,1679849327,1768714357,1702125923,1701998624,1702390118,218762611,538983178,776687392,1699225632,1998611826,1869029477,1411391534,544434536,1629516649,1667309678,1818326388,1936615712,1668641396,1852795252,990514478,1109401632,1718566232,1952805734,543584032,1835363949,1667853935,544106784,1768713837,168653939,538976315,1866287443,1702061670,1718558836,1701867296,1684955506,1936288800,1852383348,1819307808,1937011561,540740109,1766203424,544502642,1852404336,1752440948,1886330981,1701735712,1768845165,168636003,1633946125,221918001,1835206922,1767579760,1852405860,908877171,990472289,1752397168,1835886880,1059076211,1778977293,1075864942,151587142,225406523,1633880330,1679846508,1751348073,1681011563,1631258889,1919906658,1886330978,1851880037,1769155940,1881171322,1768318322,1074400632,168639040,1937076233,1769152616,1812531725,1931501925,1834691689,1936288878,2019699572,1866139997,1702061670,1718558836,1701735712,1768845165,151653731,544238947,1865181555,1702061670,1852645492,1953720684,1598967083,1096241986,151653712,543518314,151602752,1718172425,1953459744,1465074208,168644673,1818321673,1768169580,1802003315,224670259,2053769482,828466208,151593010,543582523,1864396654,1634887024,1932354670,543521385,1717924464,168654953,221921344,1633880330,1931504748,1870098280,990447984,1852404336]},{"sector":5,"length":512,"data":[1970217076,1752440948,1886330981,1701080931,1952524320,1852402720,1970233189,942812020,151653673,544632685,2053731163,1668246629,540027997,1818442505,544366949,544503151,1936287860,1634493984,151653735,544239472,151611763,1701985033,1702260579,1768693874,1864397939,1886330982,1851880037,168653668,1684300041,745108256,1936090735,1864397925,1936288880,757101428,1414549280,1397051481,1396785759,151653701,544238947,1702132066,1920233504,1769167648,221260893,1701447946,845243424,151593009,543582523,1915184503,1868832869,168650094,540740109,1867259936,1864396911,544367990,1919250543,1935961697,1931485230,1043144809,1701867296,1684955506,1887007776,168636005,538976315,1953656646,1952542325,544828517,543516788,1919250543,1935961697,1886413088,544366949,1948282473,1763730792,1920234350,1769235317,1763733103,1752440942,1634934885,168650093,538976315,1701081711,1935745138,1701344288,1885413497,1918985584,544106784,543516788,1634953572,1835365235,544828514,1886680431,221148277,1678380298,976499041,1829308941,1528854127,1718839652,1936154988,808213810,1818442505,544366949,544503151,1702521203,1818587693,1684370529,1634493984,168653671,1685023753,151609971,1701264137,1752440948,1886330981,1851880037,2037653604,168650096,1886216969,745300256,1398755407,222648905,1651116298,828466208,151593016,543582523,1931965545,1953459744,2053731104,1701060709,1684956528]},{"sector":6,"length":512,"data":[225734245,1869416714,1683693686,1818653545,846423905,1229204573,1598644051,1464815179,156911955,1684957499,1952539497,1635131493,1650551154,1931502956,224754281,1835206922,1818304624,1599098668,151653688,543514986,909205860,1765476617,1752440934,1769152613,1763730810,1768300659,543450488,824981544,842214454,691287596,1661536781,1629515885,1347365996,859189599,151653682,543514986,892428644,1765476617,1870078054,1864393842,2003050610,224686703,1869416714,1751195766,221326636,1702103306,1528853619,1953721961,744322418,151653681,1679850090,540488033,1765476617,2036473958,168650100,892428644,151653690,1528853103,1969582704,1566860659,1163022380,155464243,1918987579,1752440939,1713402729,543646060,1965060961,224683379,1869416714,1751195766,1919965996,1634494053,224228199,1851853066,1751195748,1163022380,155464243,1752447753,1998615401,543976553,824206690,1713399856,1679848047,1685221239,808460332,1868963944,1870078066,168649842,1886218761,828466208,990447927,1701736292,168626701,909205860,151653690,544632685,1630300257,990447980,945770575,1347362860,741749087,1599098656,1864380979,1347362930,540292703,543520552,2003791467,1768453920,220817507,1851853066,1751195748,812003372,990447976,1936287860,1852793632,1953654134,1751195763,544175136,1713385532,1646293615,744846457,540032288,544370534,1685221239,151653676,543323507,1328310369,909205328]},{"sector":7,"length":512,"data":[1631258889,1042310254,1868963888,2003050610,543453807,1954112040,809909605,1919907628,741358948,1919907684,808533348,1870098732,842884210,168634672,758843917,1310731565,1998616431,1852514405,1948284783,1931502952,543521385,544106792,539584609,1851880034,1864394851,1948280422,1868832879,1701344288,1701867296,1684955506,1937008928,778464357,168626701,925983076,151653690,544632685,1630301282,151653740,543452769,808220770,151611493,1696610363,1769108590,673215333,743263561,743264800,539774240,1330470738,1293954116,1179012959,1377840211,1599217708,742671425,693649696,1661536781,543976545,1936286811,1886218847,2019699505,1882917213,1953393010,1953853216,1701344288,1701867296,1684955506,1778977293,1679847533,154153569,1868839689,1998611822,543716457,1919250543,224685665,990514442,539831597,1702521171,1936942444,1701867296,1684955506,168636019,1633946125,221919281,1650657546,151653751,1734894456,746086688,168654946,1886216969,745300512,1398755407,168645204,543320585,151602752,1718172425,661940512,1869488243,543236212,1769108595,168650606,1987013897,746086688,1936286811,1953525599,1647010401,1563569528,1929972237,2004053876,1946749453,544502629,1630300257,151653736,544894570,808608100,1765476617,1953046630,1948283687,1663070071,1634885992,1919251555,151653747,543384932,168651108,1886218761,845243424,990447920,1701736292,1953068832,1886330984]},{"sector":8,"length":512,"data":[1851880037,1074400612,168639040,1818321673,1683693676,1868526441,1650553968,762864171,990469426,1701344367,1936291698,1679830117,1869815919,1752458605,543649385,1702063205,168626701,757935419,1701867296,1684955506,1852793888,1663052901,1801676136,543582496,1919248500,544417637,1953459809,544367976,224751215,1678380298,976237153,1661536781,1646293101,543519865,544371824,1567191899,168636460,544893449,825385316,990447904,1998612073,1701980005,1852793888,151653733,544632685,657222753,168634156,1869902601,168649331,1886218761,828466208,990447924,1953459809,544367976,1919250543,224685665,990514442,539831597,543976545,1919250543,1935961697,1852793888,168636005,757935419,2003791392,1701339936,1629514595,1814062190,544239471,544370534,1937075829,1881171045,1768318322,980641144,758843917,1327508781,1514754896,908599365,740911158,1145323808,1514754898,908599365,740911159,1229018912,1931488340,1701668709,539784302,1531987282,1515937102,1277176925,223036239,1678380298,976302689,1829308941,1629517423,1885023340,1937073522,224224357,1869482250,1818304628,1627982349,1629512814,1885023340,1818649970,1567844193,1778977293,1075870318,151587142,543582523,1701670771,1634493984,1914729319,1767992677,1853169774,1684370293,1778977293,1679847533,154677857,1718172425,1819042080,1634493984,1998615399,543519333,1684370293,1077938701,151653690,544632685,1311537251]},{"sector":9,"length":512,"data":[1096046431,151653698,544632685,1865185378,1702061670,1953964148,221340257,1869416714,2019827830,1311388204,1096046431,221392194,1869416714,1751195766,1163022380,1414086999,1946749453,544502629,1630301281,151653736,544894570,151602752,1718172425,1701344288,1931961714,1461739808,542394689,1717924464,1746958441,1768386145,168650606,1829308941,1663071855,1598958712,1111577676,151653711,544632685,1865185378,1702061670,1953243252,829383265,1829308941,1679849071,707931256,1414291278,760169025,151653682,544632685,1345087585,842220882,151653700,1953719668,745300256,168650849,2054056457,155598880,1765476617,1953046630,1847620391,1629516911,1748383264,1701998624,544762214,1952540788,1746957095,1768386145,168650606,1829308941,1663071855,1598958712,1111577676,151653697,544632685,1865185378,1702061670,1953243252,828465761,1829308941,1679849071,707931256,1414291278,759251521,151653682,544632685,1345087585,842220882,151653697,1953719668,745300256,168650849,544893449,875716964,990447904,1763731049,544417652,544501614,926294113,1919950952,2020173413,1634235424,544417652,1735287144,224882281,977289226,1862863373,1885020274,1937073522,744318053,153118817,1918987579,1752440939,1881174889,1768318322,1935745144,1702065440,151653732,1752397168,225010720,1869416714,1768169590,225993260,1869416714,1818370166,224944428,1869416714,2019631222,1684626220,1936615800]}]],[[{"sector":1,"length":512,"data":[151653725,1852859762,1668489317,225932129,1852442890,1633951845,828322610,1765476617,1869488230,1868963956,543452789,1948282473,1814062440,225735529,1684080906,1768169572,158884908,1701985033,1667329136,1752440933,1852645477,1852796261,1998611305,543716457,543516788,1647129139,1847620713,224750945,1869416714,1769152630,1768184620,151653725,543450209,1865181555,1702061670,1852645492,1953720684,1661536781,543976545,2003789939,151613551,1886348091,1886331001,1701735712,1768845165,1678380387,1597190753,168639024,1886351369,225010720,1835665674,1633951856,168636722,858939748,221917535,543582474,223170623,1702103306,1646294131,1380985964,1093808965,544370464,860181072,990463026,1629516649,792081952,1881159478,1768318322,1853169784,1684955496,1063544172,1778977293,1768169594,1684103795,151653682,1953719668,1130519328,1953775955,875322738,990472240,1647129139,1663071337,543515759,1835492723,1064595045,1778977293,1679850094,1597190753,990447920,1852139636,1852270880,543519343,1936681076,168636005,1768189541,1678380390,1633842025,221917796,1835665674,1768169584,1684103795,168626701,875716964,151653690,1953719668,745300256,1397051984,168642373,544893449,892494180,990447904,1847617129,1646294127,1969316709,1864394099,543236198,1835492723,544501349,1717924464,168654953,1987013897,746086688,2019846491,1567845993,1946749453,544502629,1630300257,151653736]},{"sector":2,"length":512,"data":[544894570,1651730788,154297441,1718172425,1684957472,1042315365,909455904,1879640589,543716213,168651108,1987013897,746087200,1162633040,151653710,544632685,1865181540,1702061670,1919950964,1635022950,151653730,1852859762,1668489317,224555873,1869613322,1768169584,1778977293,1679844718,1633842025,151597668,543582523,1931965545,1953459744,544108320,543516788,1953720684,1829308941,1663071855,221457528,1633880330,1830841452,1868920431,225600886,1970276618,1679845491,151653737,544632685,1865181540,1702061670,1768693876,1868522862,1294693493,1330464078,1397116750,1661536781,543976545,2003789939,157771123,1752382217,1931507567,1701668709,1914729582,1936287589,225600884,1869613322,1768169584,1862863373,1885020274,1937073522,744318053,1397051984,990463813,1802658157,544500000,1965060961,224683379,1835665674,1633951856,168636722,1633946125,221918514,1702103306,1629516915,1380985964,1346720325,1778977293,1633951866,153105970,1718172425,1953459744,1377853728,1881165893,1768318322,151653752,543452769,1345088609,1163019602,1380985680,1346720325,151653722,1528853103,1969582704,1566860659,225206572,1869416714,2019631222,1684626220,1936615800,151653725,1953719668,745038112,168650849,2054056457,1936286752,845439330,1765476617,1869488230,1852383348,1701344288,1919510048,840987763,1646278197,1936028793,1627982349,1629512814,1869491308,154214516,1818442505,544366949]},{"sector":3,"length":512,"data":[812935522,1330456608,542593878,1293958701,1112757839,151653673,1752397168,225010720,1869416714,1768169590,1717989164,544499059,1819305330,225735529,1869416714,2019762294,1381977644,1129205829,1933248777,544104803,1936681076,1868963941,1163010162,1768300624,225735538,1701972234,543518320,1935762291,151653730,544632685,1865181555,1702061670,1852645492,1953720684,1598967083,223364434,1701447946,845243424,151593015,543582523,543518319,1948280431,1377854824,1763725381,1920234350,1769235317,225668719,1869416714,1818435702,1381977644,1279348805,539828300,1163026254,222514768,1701972234,543518320,1935762291,151653730,543518314,1651730788,154297441,1718172425,1953459744,1701736224,543584032,543516788,1162888530,1346720303,1763722574,1920234350,1769235317,225668719,1869416714,1769152630,1717989164,544499059,1768713837,1294693491,1163026254,168641872,1936028681,1885020276,1937073522,744318053,1380274768,224022597,1852442890,1633951866,151598898,543582523,1162888530,1829308941,1931507311,1718561897,1952805734,1819176224,729052009,1381977677,1162760261,1778977293,1679847533,154612321,1953053449,1377858343,1162760261,168626701,909271396,151653690,1953719668,745300256,1279611472,223036239,2053769482,1936286752,845439330,1765476617,1869488230,543236212,1801678700,1701998624,746088806,1953064224,225600872,1970276618,1679845491,151653737,544632685,1529641057]},{"sector":4,"length":512,"data":[1769497705,224228206,1869416714,1768169590,1717989164,544499059,1801678700,224551284,1869416714,2019762294,1281314348,223036239,1701972234,543518320,1935762291,151653751,543518314,1651730788,154297441,1718172425,1953459744,544106784,543516788,1919971425,1684371055,1936288800,151653748,1953719668,1919965984,1702065509,1345084772,1163085138,151653703,1679850090,1633842025,151597668,543582523,1869440365,1998616946,1847620449,1629516911,1936024419,224683379,1869416714,1769152630,1717989164,544499059,1768713837,1294693491,1330405198,168643395,544370441,1701998683,1684370293,1380985949,1129270341,218762571,757938954,1817387053,1763733609,1851859054,1701344367,1852645490,1852796261,540697449,793789778,1162888530,1346720303,1278166350,776684367,758843917,1394617645,540876873,1936090735,1864397925,1852645478,1852796261,539779945,1952540791,1869116192,543452277,168650082,757935419,541672480,1864397673,1752440942,1953701989,778789729,168626701,926048612,151653690,544239472,168651108,1987013897,746087200,151653688,1752397168,225014560,1633880330,1830841452,1868920431,225600886,1869613322,1769152624,1879640589,543716213,168651108,1818321673,1752375404,1886353263,1879640589,1679847535,151653737,544238954,825385316,168626701,757935419,1852785696,1769414757,1763731572,1920234350,1769235317,539913839,1634878752,1948280179,1931502952,543521385,1768189545]},{"sector":5,"length":512,"data":[1869898083,1763716210,1885413478,1886351984,1952541042,168636005,1633946125,221919282,1869416714,2019762294,1769167660,1869374842,168648035,2019781129,1633951866,157431858,1718172425,1701344288,1998611826,1847620449,1769152623,1730176378,1852143209,1829308941,1629517423,1683696748,1818653545,1567844193,1946749453,544502629,1143762017,1230984009,1330139999,1514754903,1778977293,1679850094,1647850081,1765476617,1702305894,1701146144,1869881444,1869116192,1752440951,1769152613,168650106,1936028681,1818304628,1397310508,1264535903,1398230862,168647241,544893449,942825828,990447970,1948280425,1931502952,543521385,1847620457,1797289071,1853321070,1919705376,2036621669,2013858317,543647843,1680636003,151653737,544632685,1680632179,990447977,1702257011,1684827936,225010720,1869416714,1818304630,656418604,1077938701,151653690,1935762291,151587170,1768649531,1769152624,1847616890,224750945,1852442890,1111498853,990447881,1847617129,1679848559,543518319,225731961,151587082,1411922697,1629513064,1702260578,544434464,543516788,1701667187,544432416,1852859762,1668489317,744649569,1953849888,151587341,1748699401,1847620449,1717903471,1952671078,544108320,690911331,1627982349,1679844452,154414185,1802713865,656437353,542266448,151653671,1734894456,745108256,168651108,1651864329,746087200,168651123,1885696521,1987013920,151609971,1987013947,1752440933,1768693861]},{"sector":6,"length":512,"data":[168650094,758843917,1310731565,1998616431,1701980005,1634038304,544828524,1701736292,1344282670,1953393010,1953853216,1701344288,1954112032,1864397669,1752440942,1701584997,221148262,1678380298,1647850081,151653690,1752397168,543777824,1882917129,1953393010,1635021600,1864397938,1768169574,1936941427,1818389861,1768693881,168650094,1987013897,745104416,1936090735,1814066277,1600482921,225736047,1869416714,2019631222,1601526572,1919181921,157103147,1769107515,1629516910,1701995620,168653683,1818321673,1701322860,1919907704,151653732,544632685,657222753,168634170,1869902601,168649331,2053731081,1718775909,990447960,544632685,746086757,1633645915,728917092,168647984,1987013897,746086688,1633645915,728917092,168647984,1059087977,168643920,1987013897,745108256,2004378984,224686703,1702103306,1528853619,1095975778,1567782004,1747989548,1778977293,1178607738,1829308941,1931507311,1701325929,1870095480,168649842,221921344,1633880330,1931504748,1695157609,224752492,1633880330,1746955372,1870100581,168649842,1768189541,151653734,544632685,657222753,168634144,1869902601,168649331,1987013897,746086944,1936286811,224226911,977289226,1829308941,1931507311,1718561897,1952805734,1852402720,1970233189,1313680244,1313819973,542328399,221323309,1970473226,1769152610,225010732,1752369418,1769152626,168636716,1886216969,746086944,168651123,1701603849,845243424]},{"sector":7,"length":512,"data":[990447929,1763731049,544417652,1752375393,544502383,1953721961,1952675186,544108393,1667852407,1768300648,1763734388,1852776558,1768693861,168650094,1651864329,746086944,168651123,1937076233,2019696744,1829308941,1646294639,1769155704,1879640589,543716213,168651108,1818321673,1768169580,1869116275,1954112119,168653669,1818321673,1970282604,1768715124,168650094,1886351369,225993504,1869613322,2019696752,1829308941,1679849071,1718561897,1952805734,1852402720,1970233189,151653748,543323507,1680636003,151653737,544632685,657222753,168634144,1885696521,1869902624,168649331,1886218761,222445600,845243402,168639033,1818321673,1768169580,1869116275,1954112119,168653669,808673636,151653690,544632685,657222753,151594784,1684107323,544175136,1868787823,168650084,1987013897,746087200,1936090735,1814066277,1600482921,729052527,1296387661,1179602511,151653715,543323507,1680636003,151653737,1075864426,151653702,544236914,1936684147,1074400610,168639040,1886351369,225010720,1702103306,1528853619,1718839652,1936154988,1142959197,1230984009,1431197023,222578003,2053769482,862020640,151593010,543582523,1679844727,1948741231,1769107488,656438382,1853171744,1684370293,168634153,1987013897,745108256,1936090735,1965061221,1702065518,151653732,544238947,1702132066,1920233504,1768184608,744304941,220667943,1852442890,1633951845,151597363,543582523,1919248500]},{"sector":8,"length":512,"data":[544417637,1701997665,544826465,1886593121,543515489,1701995880,1762200077,1931502446,1678380393,976302945,1661536781,543976545,2037411683,1769108595,153118574,761885499,225010750,862020618,168639026,1293969001,1397048399,1296258117,218762564,757938954,1917853741,544501353,1868983913,1852776494,1852402976,1818324329,1869770784,1936942435,1847620207,1701078373,168636004,1829308941,1646294639,1718561904,1952805734,1868522528,1635021666,1866140002,1819243362,543519845,1953721961,1952675186,544108393,1818386804,151653733,1819042147,1869116192,1667329399,990447976,2003789939,1701344288,1667329312,1701734760,1887007776,1763716197,1701716070,1684366437,1778977293,544897123,842228068,990447974,1847617129,1701650543,1734439795,218762597,757938954,1917853741,544501353,1701650529,1734439795,1852776549,1701344288,1918985760,1734963744,221148264,151653642,544632685,1865185377,1702061670,1768693876,1868522862,925594741,151653689,543323507,1663858785,151653752,1752397168,225993504,1633880330,1948281964,1952408161,990447983,543318388,544503151,1948282740,1814062440,1952539503,225341289,1869613322,2019762288,1913195021,1830842469,1651734127,1664813321,544829551,543516788,1769108595,168650606,1886218761,862020640,151616050,1852793915,1695157605,1718183022,168626701,757935419,1836401696,1701978224,1701995878,1684366190,1835363616,544830063,1633906540,1852795252]},{"sector":9,"length":512,"data":[218762542,862020618,221931058,1869416714,1818304630,1768184620,1634494067,224228199,1870137610,1818304626,1397310508,1398752863,542592840,1229201451,1598644051,1464813651,1946749453,544502629,1143762017,1180652361,1330139999,539697239,1599293764,1213423433,168646479,2054056457,862020640,151616050,543582523,1919248500,1936269413,544173600,1869440365,1814067570,1952539503,544108393,1931505524,225931112,1835206922,1767579760,1852405860,942431603,168650852,543517193,842228068,990447994,1814062697,168649061,1987013897,746086688,1936090735,1814066277,1600482921,729052527,825047351,151653680,544238947,1702132066,1920233504,1768708896,1868522862,1294693493,1330464078,1397116750,1277635677,151653671,543518314,168642112,1886216969,1919907616,1953505380,1817911410,1600482921,729052527,1313680178,1313819973,1565738575,1394616108,151653671,543518314,151602752,1718172425,1953459744,1935961120,1936026668,1936092204,1936157740,1936944172,1929972237,1629512309,221523064,977289226,1886216969,1836210976,1702521203,221260893,1818888458,862020640,151611442,543582523,1702132066,1778977293,1633951866,157758003,1718172425,1919907616,151653732,543323507,875329633,1633946125,979841587,1678313997,1629512549,151653752,543384932,168654945,842228068,168639080,1987013897,745562656,151615585,1986097979,1970217061,1953853556,1768910880,1919251566,1661536781,543976545]}],[{"sector":1,"length":512,"data":[1600282996,168652660,1818321673,1752375404,1702066031,990447975,2003789939,1734701856,1953391981,1734701600,1702130537,151653746,544632685,1529641057,1919181921,168648050,1987013897,746087456,151615585,1986097979,1718558821,1952805734,1661536781,543976545,2004378984,157577839,1752382217,1864398703,1702061670,151653748,544632685,657222753,168634173,1869902601,168649331,1987013897,745300256,1734701915,1567911533,1933248800,1701668709,1847620718,1700949365,151653746,225927779,1752369418,2019631212,168636716,1751349257,2019631207,158884396,1869429513,2019696758,225993004,1869416714,2019696758,1702058796,1634169447,728917092,157120610,1952802619,1684300064,1936942450,543584032,1970037110,151653733,1752397168,225666080,1869416714,1935941750,2019711788,151653725,544632685,1680636002,990447992,1684107116,1717989152,225731955,1835206922,1885479024,1717989164,544499059,1701734764,1953853279,758724395,168636465,543517193,842228068,990447979,1646290537,224752761,1835206922,1885479024,1717989164,544499059,1701734764,1953853279,758724395,168638001,543255049,842228068,990447978,1998612073,224686703,1701447946,862020640,151611698,543582523,1919907684,151653732,544632685,1529637985,875264098,990447965,1768912481,1830953060,1629517423,760949880,220355889,1869416714,1751195766,2019711788,224212267,1633880330,1746955372,1870100581,168649842,842228068]},{"sector":2,"length":512,"data":[168639081,1987013897,745300256,729309787,151608626,1870029115,572548201,544632685,1529641057,576532781,1829308941,1629517423,1650142312,1563634552,1661536781,543976545,2004378984,224686703,862020618,221932082,1869416714,1818304630,2019711788,157102123,1986083593,543451503,1987013922,746086688,1563503963,151653666,544632685,1529636961,824932450,151653725,1819042147,2019911712,1685221239,1778977293,1679847533,2033333089,1681590537,224751215,862020618,221932338,1869416714,1818304630,2019711788,224210987,1633880330,1746955372,2036496485,151610740,1936286779,2036427888,1954112032,1678380389,2033333089,151653690,544239472,168653668,842228068,168639098,1818321673,1920213100,1970302313,151614324,1852793915,1769414757,1864394868,1634887024,1814062190,225735529,1869416714,1818304630,1768184620,1634494067,224228199,1702103306,1629516915,1229204588,1598447443,1414546770,1778977293,1633951866,153105459,1718172425,660961056,1847616882,1629516911,2003790956,1948279909,1701978223,1952540016,1920298784,1986815347,168653669,1936028681,1818304628,1397310508,1432308063,1163089230,151653700,544894570,859005284,1765476617,1702305894,1769107488,1684370542,673195808,1937075829,657024101,1829308941,1629517423,1767582840,1852405860,168648051,1886216969,746086688,224933681,1701447946,862020640,151593011,543582523,1998615657,656438113,544239472,220689267,1835206922]},{"sector":3,"length":512,"data":[2019631216,1751463980,1778977293,1633951845,153105203,1718172425,544500000,544432503,1987013927,745763616,220671277,1835206922,2019631216,1650864172,151653736,543518314,875782500,1765476617,1953046630,1935767328,1953459744,1953703712,168634217,859005284,151653690,544238954,1634953572,221343091,862020618,168639028,1952805385,168626701,757935419,1919240224,1918967909,1752440933,1869750373,1852404853,1713402725,1881174639,1953393010,543649385,544503151,543516788,1919250543,1935961697,1701344288,1818588013,779314550,168626701,757935419,1146047776,1294946848,1347364896,692933215,168626701,1601204068,221932914,1633880330,1730178156,1701999717,1835363687,1661536781,1629515885,1664101484,168650800,543320585,812674916,151653685,544238954,863006564,990447923,1881171561,543519349,1768383858,1919251571,1717924384,1852142181,168650083,812674916,151599669,1010501897,539831597,1684370293,544825888,1298092111,1347362860,875973983,1347362860,808996191,1661536781,543976545,2003789939,1702521203,1882917129,1953393010,1953853216,2053731104,1852383333,222839072,1886348298,154809904,990447881,757935420,1702065440,2036473956,1599098656,1179012941,1327508563,1481465680,1327508568,1179475792,1413566284,1347362860,1329876319,1162625621,1862863373,1885020274,1937073522,744318053,1397051984,990463813,1684366702,1696621669,544105846,1948280425,1701995880,1847620391]},{"sector":4,"length":512,"data":[1702043759,1852140903,1986994292,1769108069,168650084,151587081,1667588667,1702065505,1851877408,1852402788,1718558823,1129270304,1919950923,2020173413,1818587680,544433513,1763733103,151653748,1953719668,1919965984,1634494053,744321895,1397051984,168642373,544893449,151602752,1718172425,544173600,1835492723,544501349,1919252079,1701079410,1661536781,543976545,2003789939,157771123,1919957769,544501353,1835492723,544501349,1701667182,1077938701,151653690,544632685,1529637985,1915644257,1701668709,168648045,1684955401,745300256,1748460336,1862863373,1885020274,1937073522,744318053,860181072,168640818,1936028681,1885020276,1818649970,1567844193,1163022380,222376499,2053769482,222707744,1835665674,1868832880,154677616,1718172425,758264608,544500066,1919181921,1769173861,168650606,221921344,1919879434,1768184608,1634494067,744321895,1397310496,1398753631,156716872,660961083,1768693860,1948280171,1752375407,1948284783,544434536,1919181921,225669989,1869416714,1870078070,1881171058,1528853108,1919181921,808213874,2050689289,544174693,544503151,543516788,1919181921,544437093,1953066601,1819042153,151653753,544238947,908880993,2013858317,543647843,1647081569,990447992,544632685,1630304354,151653752,544632685,657222753,168634203,1869902601,168649331,543517193,829452132,990447926,1528850025,2021161080,151653725,543452769,925661282,1829308941]},{"sector":5,"length":512,"data":[1646294639,1918577772,1650553965,1568170539,1946749453,544502629,942435426,1778977293,1679850094,959475823,1765476617,1480728678,1946749453,544502629,875326562,1778977293,1868832890,154218864,1718172425,1953459744,223363616,1869416714,2019631222,1112549164,151653671,544632685,1529641059,1936156018,1346531886,151653725,1953719668,1919965984,1634494053,744321895,1397051984,168642373,2054056457,1886348320,151597105,543582523,1835492723,544501349,1919252079,1701079410,1678313997,1528849253,1835492723,157119598,1701067529,1819631974,1936269428,2003791392,223564576,1835665674,1868832880,221262192,1678380298,959475823,151653690,544632685,657225825,153567832,1480735497,1829308941,1663071855,1918577784,779315045,1566065266,168626701,829452132,168639024,1987013897,1684101920,1567781476,158884652,1919957769,544501353,1864397929,539784309,778269797,1929972237,2004053876,1946749453,544502629,841772130,168636715,544893449,829452132,990447923,1679844969,224751215,1869416714,1818304630,657139500,1929972237,1651732340,1868827149,976302448,1829308941,1629517423,1227304056,151594835,1061770043,1829308941,1663071855,1918577784,779315045,1565086578,1946749453,544502629,824994914,1778977293,1178607738,990447881,1394632297,151653705,544632685,657222753,151594820,222905403,1869416714,2019762294,1701993260,1915646823,224217412,977289226,1627982349,1528849508]},{"sector":6,"length":512,"data":[1919181921,1663851890,990447992,1852404336,1953046644,1953853216,1952784428,168636003,1869902601,168654707,829452132,168639027,1936028681,2036473972,1881171316,1528853108,1915644257,1701668709,808213869,224931939,2053769482,1886348320,151598897,543582523,1679847278,1819308905,1835361121,225734245,1702103306,1646294131,543519865,544371824,778658139,1835492722,744320357,224931896,1852442890,1868832890,154481008,1718172425,1919907616,1768169572,1634496627,1701668195,168653934,1818321673,1768169580,1952802675,1702132066,1661536781,168654690,1684300041,1684101920,1567781476,225993004,1835206922,1818304624,168636460,1987013897,745038112,220670759,1735002378,1178607717,990447881,1042310761,221257789,1869416714,1751195766,657270572,1846086157,1629513573,1074400620,168639040,1987013897,1768184608,1751198813,1762200077,1679844206,151653737,1819042147,2019911712,1702132066,1882917129,1953393010,1701344288,1954112032,1768169573,1634496627,1701668195,168653934,1886218761,1886348320,151598897,1852793915,218762597,1886348298,221918513,1869416714,1818304630,657139500,1929972237,1651732340,1868827149,976630128,1661536781,543976545,1735616868,1870099557,168649842,1684300041,1684101920,1567781476,225993004,1633880330,1746955372,1870100581,151610482,1769107515,1998615662,543453807,1886611812,1701011820,1953391981,168626701,829452132,168639031,1987013897,745300256]},{"sector":7,"length":512,"data":[220683559,1953696010,224555887,1701972234,218762612,757938954,842211373,1953063469,1146047776,1195725344,1294946848,1684300064,1936942450,778530409,168626701,829452132,168639032,1886216969,745300256,151653685,543518314,151602752,1718172425,1953459744,1937074720,543236212,1886611812,1629499955,1701995620,168653683,1987013897,745300256,220683047,1953696010,224555887,1633880330,1679846508,863007593,990447922,1886611812,544825708,1647129139,1864397929,1702061670,151653748,544238954,846229348,218762551,977289226,1879640589,543716213,168654945,1684955401,745300256,151653687,544238947,875326561,1778977293,1075864942,151587142,543582523,1394634606,168641097,1818321673,1768169580,1952802675,1702132066,1731922208,1629516901,1931502702,543520353,168653929,1987013897,1767988000,1651077934,1702132066,1818307677,1077938701,151653690,544239472,168654945,1936028681,1818304628,1747990572,1778977293,1679850094,842166383,1765476617,1768169574,842231923,1946749453,544502629,875326561,168650800,544893449,846229348,990447923,1847617129,1768169583,221802611,1633880330,1679846508,1701278569,1954112116,151653733,544238947,808217697,1778977293,1075864935,151587142,543582523,807419198,1846086157,1629513573,151653740,544632685,1702132066,1920233504,1768184608,757541981,151653671,543387241,168651108,221921344,1633880330,1746955372,2036496485,168650100]},{"sector":8,"length":512,"data":[1886218761,1886348320,151597874,1852793915,218762597,1886348298,221917746,1633880330,1679846508,863007593,990447922,1852404336,1768169588,842231923,168626701,846229348,168639027,1987013897,745300256,778658139,1835492722,224226661,1851853066,1818304612,168638252,1886216969,745300256,151653684,543518314,846229348,990447928,1847617129,1230184559,151653698,544632685,1529637985,1932421473,2036490857,224224628,543582474,151587121,1969371913,2020173415,1634541626,656434539,1663051637,1701999215,2037150819,1851877408,543517796,1347634523,1163603037,2016104531,151653725,544238947,841772129,168650804,2054056457,222707744,1869416714,1818304630,168637484,1886218761,1886348320,168638514,221921344,1684956426,168650345,1684955401,745300256,151653687,544238947,892103777,1778977293,1075864942,151587142,543582523,544501614,1346520411,151653725,1953719668,1954112032,1953505381,1633362034,1701981801,1835363687,1664101469,168650800,2054056457,155598880,1765476617,1330454630,1025581124,168636448,1818321673,1768169580,842231923,1933248777,544698216,1647129139,1679848553,1819308905,1835361121,544501349,1953721961,543449445,1528850031,1565540933,1778977293,1679847533,892498031,168626701,221921344,1869416714,1870078070,1881171058,1528853108,744319332,660292903,1762200077,1679844206,151653737,543387241,168651108,1818321673,1752375404,1702000495,154546535]},{"sector":9,"length":512,"data":[1752382217,824211311,1768041782,1701978228,1953720679,1847620197,543518049,1836412456,544367970,1092644457,168634700,1987013897,745300256,220683559,1953696010,224555887,1678380298,892498031,151653690,544632685,1529637985,1932421473,2036490857,224224628,1752369418,1818304626,168636716,1919447817,745300256,151653681,544368755,824994913,1627982349,1629512814,221719660,1835206922,1818304624,168637484,543517193,1651730788,154231905,1718172425,1819044128,1818322789,1829308941,1998616175,543453807,544371824,1567188059,1531258668,151653671,543387241,168651108,1668180233,225010720,1633880330,1931504748,1920429928,909207397,1829308941,1629517423,1633365096,1769156201,1954112098,168648037,1936028681,1751195764,811806764,151653736,1679850090,926052463,1765476617,1397956710,807419168,1829308941,1629517423,707210348,151653671,1936684147,151653730,544632685,657222753,168634162,1936028681,1751195764,1747990572,1778977293,1178607738,990447881,706766441,151653682,544632685,657222753,168634164,1936028681,1751195764,1747989548,1778977293,1178607738,990447881,706766441,151653684,544632685,657222753,168634168,221921344,1953696010,224555887,1886348298,221919026,1869416714,1818304630,660416300,1929972237,1651732340,1913195021,168653925,758843917,857746733,1768041778,1684086900,1936028260,1735289203,1953068832,1953853288,1112101664,168626701,846229348]}]],[[{"sector":1,"length":512,"data":[168639032,1987013897,1919907616,1953505380,1683693682,657218921,220683077,1852377354,1768169571,1762200077,1679844206,151653737,1819042147,1869116192,1734701687,168638001,1987013897,745300256,220683559,1953696010,224555887,1701972234,218762612,757938954,1699553325,2037542765,1819176749,1701978233,1701995878,543515502,1599098664,168634701,1868827149,980246384,1661536781,543976545,1920230759,1701668709,151653741,544238947,808217697,224931939,1634339082,1768169573,1684103795,990447921,1763731049,544417652,1701978209,1953720679,1914729061,1919247973,1701015141,1778977293,1679847533,892366959,168626701,1651730788,976315489,1778977293,1679847533,1633842025,990447972,1936287860,544434464,544501614,1886418291,1684370287,544175136,1886413160,168652389,758843917,1377840429,1936287589,544367988,1701209458,1668179314,1919295589,1293970799,1377846351,1881165103,544502369,1599098664,1330470738,168634692,1868827149,1601331056,979660653,1661536781,543976545,1920230759,1701668709,1762266477,221257830,1679833866,1918857327,1685024095,544434464,2037149295,1702065440,1868963940,1330454642,1380130902,1380200312,1381248888,1752637560,543712105,1869506409,544433522,543453037,1937008994,1661536781,1629515885,1664101484,168650800,543320585,1651730788,154231905,1718172425,661940512,543236211,1869440365,1914730866,1919247973,1701015141,1852115469,224815460,1835665674]},{"sector":2,"length":512,"data":[1868832880,221459312,990514442,539831597,1869440333,1864399218,1702061670,1701978228,1701995878,543515502,1599098664,1179012941,168634707,1868827149,1869438832,980641382,1661536781,543976545,2003789939,1702521203,1882917129,1953393010,1701344288,2053731104,1851859045,1634934884,1981834614,1869181537,1948283765,1735289192,151653747,544632685,892103777,1946749453,544502629,1701998683,1734437990,1345084787,842220882,151653697,544894570,151602752,1718172425,758264608,544500066,1919181921,1769173861,168650606,1668180233,225992992,977289226,1829308941,1528854127,1915644257,1701668709,1630297453,151653740,544238954,812674916,990447926,661548900,1752375412,1931507567,224754281,990514442,539831597,1701999952,1734701600,1702130537,1701978226,1701995878,543515502,1599098664,168634706,1868827149,980574064,1661536781,543976545,1920230759,1701668709,225599341,1678380298,859009135,151587130,758921993,1965042989,543450483,1327528290,1297243984,1347362860,1298092639,1629504591,1327522926,1599233872,222577729,1851853066,1818304612,151598892,1953391931,1881176434,1953393007,1919903264,1734701600,1919295603,1293970799,1377846351,539774255,543452769,1701344367,168653682,1987013897,745300768,1936286811,1734437990,224211571,1919879434,1768184608,1634494067,744321895,990473315,1763731049,1635197044,1635131507,1650551154,1931502956,543521385,1919250543,744779361]},{"sector":3,"length":512,"data":[1701344288,2053731104,151653733,990447881,1970235507,1847616620,1646294895,1634541669,1684368242,544432416,2003791467,168636014,1886216969,745038112,151653680,1679846506,892563567,1765476617,2036473958,1914725748,1936287589,225600884,2053769482,1886348320,151598131,543582523,1685221239,1734701600,1702130537,151653746,544238947,841771105,151611440,1870098747,1914725490,1936287589,544367988,2020437288,168640297,544893449,1601204068,829975917,1829308941,1646294639,543519865,544371824,1567188059,658843436,1762200077,1679844206,1678380393,875786351,151653690,543450209,942435425,1868827149,976565104,1661536781,168654690,1818784521,746086688,151653681,1734894456,746086688,151615586,1987013947,746086944,168654945,1987013897,746086688,1685221239,1920233504,1735547680,946692462,1646999089,990469496,544499047,543516788,1768383858,1919251571,1835101728,151653733,1936684147,151653751,225731954,990514442,539831597,2003789907,2018331936,1734701600,1347364896,1481461087,218762537,1886348298,2020437343,151653690,1819042147,1952802592,1835492722,1918856549,1868827149,1835884400,221917560,1869416714,2019696758,1296901932,151653671,544238954,896560996,218762549,757938954,1699881005,1953720679,1847620197,1700949365,1835343986,1684301154,1763730533,1752440942,1852383333,1970435187,1869182051,1328029806,1599233872,692339777,168626701,1601204068,1684103026]},{"sector":4,"length":512,"data":[168639076,1987013897,745300256,1936615771,1567978100,1778977293,1679847533,859009135,168626701,757935419,541868320,1092645487,1919885400,1480672544,1347364896,693649759,168626701,1601204068,221935713,1869416714,1818304630,168636460,1886218761,1886348320,168637235,758843917,1361063213,1146244951,1835363616,1347364896,875973983,168635945,757935419,1768453152,1886330995,1851880037,2037653604,1763730800,1937055859,1646290021,168639097,757935419,1663052576,1668837485,1647863656,758843917,723529005,1818846752,1713384548,1886679913,168626701,1601204068,976500333,154864141,544632685,657225825,151594833,1769107515,656438382,723527505,1380931367,168634180,1987013897,745038112,157823026,1769159433,1361077626,1146244951,1778977293,1679847533,808743023,168626701,757935419,1330398752,673207361,1095062077,539571276,544040301,1599098664,1330398797,774460481,168626701,1601204068,1869375085,221934689,1869416714,2019631222,1179395884,151653671,1936684147,151653751,544632685,657222753,168634191,1869902601,168649331,1987013897,746086688,658592807,1778977293,1679847533,942895215,218762595,757938954,1329864749,1162625621,1379739680,944521541,1701650473,1328029805,1145921360,1279415631,221129029,1678380298,1834971247,1651863396,221930860,1869416714,2019631222,1146038060,151653671,1936684147,151653751,544632685,657225825,220681538,1953696010,225932143]},{"sector":5,"length":512,"data":[1869416714,2019631222,1279600428,1678380327,942895215,168639075,1869902601,168654707,1818321673,1752375404,1953527663,151653746,544238954,879783780,168649010,758843917,1411394861,1163155778,1379739680,827081029,1830824240,673213797,1298092111,774451256,168626701,1601204068,976238701,1829308941,1629517423,1714433144,1747988582,659826475,1919957769,544501353,539456551,1646731307,660960377,1929972237,1651732340,1868827149,976237680,1661536781,543976545,1920230759,1701668709,151653741,544238947,808217697,224931939,1634339082,1768169573,1684103795,990447925,1763731049,544417652,1701978209,1953720679,1914729061,1919247973,1701015141,1627982349,1528849518,1718839652,1936154988,1869491293,1229201524,1598447443,1464813651,1868839689,544483182,2003789939,1768453152,151653747,544238954,812674916,218762549,757938954,1634082861,1701650546,2037542765,1347364896,1380009567,692929869,990514478,539831597,1936287860,544434464,1752459621,1629516389,1380009504,673199665,1380931396,1864378692,1095114866,540160850,1331119656,539575378,1852403568,225600884,1678380298,1717530735,1701671521,168639085,1818321673,1768169580,1802003315,224670259,543582474,151653680,1075870314,151587142,543582523,544501614,1919907684,1634082916,151653746,1819042147,1869116192,1685546103,1929972237,1679843957,154414185,1919236873,543519585,1381257250,168632864,221921344,1684956426]},{"sector":6,"length":512,"data":[168650345,1987013897,746086688,658915623,1933248777,1701998452,1095115296,220340306,1953696010,225932143,1869416714,2019631222,1377838892,151653671,1936684147,151653751,544632685,1936552539,1566931561,543711532,1634548489,1931502955,543521385,1919907684,1868963940,1701650546,2037542765,1717924384,1852142181,1679844707,1819308905,168655201,1886218761,1886348320,224473652,990514442,539831597,544040301,1599098664,693655629,218762542,1886348298,2021158239,151653690,543452769,1936286811,1734437990,1848401267,1142977647,1180652361,1330139999,1681590615,1948741231,1869116192,1752440951,168653673,879783780,221929778,1633880330,1730178156,1701999717,1835363687,1661536781,1629515885,1664101484,168650800,1700882953,1936286752,895770978,1765476617,1953046630,1629516583,1734701600,1702130537,1701978226,1701995878,224748398,1835665674,1868832880,154546288,1868839689,544483182,2003789939,2053731104,218762597,1936286730,895770978,151653690,544238954,1651730788,168649825,758843917,1713384749,1763734113,1684368749,1702125929,1347364896,1380009567,692931913,1766137902,1919248500,1380009504,1864382001,1095114866,221393746,1678380298,1717530735,1835627105,168639085,1818321673,1768169580,1952802675,1685221239,1879640589,543716213,168654945,1818321673,1768169580,1802003315,224670259,2053769482,155598880,1765476617,1869488230,842211444,1953063469,1684300064,1936942450]},{"sector":7,"length":512,"data":[1661536781,543976545,1735616868,1870099557,168649842,1937076233,2019631208,1077938701,151653690,1819042147,1936286752,2004116839,224686703,1633880330,1746955372,1870100581,168649842,1987013897,745300256,220674599,1953696010,224555887,1633880330,1679846508,1751348073,1681011563,1778977293,1178607738,990447881,1847617129,857764975,1768041778,1684086900,1936028260,151653747,544239472,168654945,1818321673,1701322860,1919907704,1074400612,168639040,1886351369,225992992,1835665674,1701322864,1919907704,990447972,1819042147,2019911712,1685221239,1684955424,1952805408,225342069,990514442,539831597,1768041784,1701978228,1769234796,1780508022,544238965,1599098664,944522578,218762537,1886348298,1818587743,168639032,1818321673,1768169580,1952802675,1702132066,1661536781,168654690,1886218761,1886348320,168638516,758843917,824192301,842215222,1953063469,1818587680,1986622561,1969889381,673214573,1381978191,909200453,220803635,1678380298,1918857327,909208677,221917747,1633880330,1679846508,1701278569,1919907700,151653732,1819042147,1936286752,862677091,168649778,544893449,879783780,990447928,1847617129,857764975,1768041778,1718558836,1952805734,1879640589,543716213,168654945,1059087977,168643920,1936028681,1650139252,1950438211,744321652,157823028,1919903291,758264608,544500066,1701080931,1734701856,1953391981,151653747,544894570,879783780,154230583]},{"sector":8,"length":512,"data":[1869495049,1701146144,1869881444,1936286752,2036427888,1464082976,541348431,1695157538,1718183022,1661536781,543976545,2003789939,224687972,1970473226,1768169570,151598124,1634886971,572548467,542266448,1678380322,926183535,221917535,1869613322,2019827824,1661536781,543976545,1735616868,1870099557,168649842,1987013897,746086944,1633645915,728917092,168647984,1684300041,746086944,1936286811,224226911,1684080906,2019827812,225993260,1684080906,2019631203,1601526572,1919181921,224211499,1633880330,1746955372,1870100581,168649842,1751349257,2019631207,225993772,1835665674,1701322864,1919907704,990447972,1819042147,2019911712,1685221239,1684955424,1952805408,225342069,1678380298,942960751,1762266426,1346314342,151653709,1953719668,1130519328,1953775955,875322738,168650800,2054056457,222707744,1684956426,168650345,1684300041,746086688,1633645915,1567777892,1627982349,1629512804,1683696760,1851749225,151653725,544238954,2004378984,157577839,1633893129,1746955372,1870100581,1629512818,1914725486,1920300133,1762266478,1346314342,1074400589,168639040,942878217,151653686,1701082979,990447881,1987013949,1696626803,1630304353,151653752,543450209,746086757,1919907684,1953505380,1968906354,1684300127,168648050,1684300041,2019648800,1870095404,1881171058,1528853108,1601399140,168648046,1886218761,2019911712,1919907684,151653732,942684206,1695157558,1718183022]},{"sector":9,"length":512,"data":[168626701,757935419,1701331744,1713400675,1394635375,691087444,1347364896,1212363103,221129035,1678380298,959737967,151653690,544239472,151615585,1768176393,1918985075,1701978212,1852994932,1684300064,1936942450,1829308941,1629517423,1633365100,1701981801,1835363687,151653725,543452769,925658209,1661536781,1629515885,221326444,1701447946,1886348320,151597109,543582523,1931965545,676614944,168634673,1886218761,828466208,990447924,1953459809,544367976,1919250543,543452769,1953849896,544173600,1835888483,168634721,1868827149,976237936,1778977293,1679847533,154219105,1852128009,1718558820,1936288800,218762612,757938954,1414733869,539576616,1599098664,692671571,218762542,1886348298,1769239391,151653690,544632685,1529637985,1915644257,1701668709,168648045,1684955401,745300256,151653687,1734894456,746086688,151615586,1987013947,746086944,168654945,1987013897,746086688,659772455,1929972237,2004053876,990447881,1919906931,1414733925,694968872,1829308941,1629517423,673655916,151653671,1936684147,151653730,544632685,657225825,220672041,1919879434,745300256,168651874,1869902601,168654707,1952805385,168626701,757935419,2018657056,1347364896,693257055,218762542,1886348298,980575071,1661536781,543976545,1920230759,1701668709,225599341,1869416714,2019696758,1129457452,151653671,544238947,875326561,1778977293,1768169569,1684103795,990447924]}],[{"sector":1,"length":512,"data":[1948280425,1814065007,1701278305,1778977293,1075864942,151653702,544632685,778658139,1836280164,1567122273,990459180,540299843,1847620457,1948284773,1752440943,943005797,1074400566,168639040,1886216969,745300256,151653681,543518314,896560996,990447925,1847617129,1126200431,168636754,1768163853,1684103795,168639028,1886218761,1936286752,157573474,1633893129,544483182,1701012321,1126200179,168636754,758843917,1142959405,673216594,1147097167,221129042,1678380298,1683976303,168639090,1818321673,1701257324,1734701684,1601004909,151653746,544632685,657225826,220677202,1835665674,1868832880,221590896,990514442,539831597,544756308,1599098664,774459988,168626701,1601204068,221934196,1633880330,1730178156,1701999717,1835363687,168653407,1886216969,745300256,151653683,1679843946,1633842025,151598180,543582523,544173940,1818324339,151653740,544238947,908880993,1778977293,1075864929,151587142,543582523,758534740,151653687,544632685,778658139,1836280164,1567122273,990458924,758338132,1918967861,1701716069,1869881463,1701344288,909653024,1077938701,151653690,544632685,657225826,220681298,1678380298,892694639,151653690,1734894456,746086688,168654946,1869902601,151615347,1953708809,543519343,168646744,1751349257,2019631207,225993260,1919879434,745300256,220672039,1953696010,224555887,1701972234,218762612,757938954,1699946541,1852140903]},{"sector":2,"length":512,"data":[1701978228,1953720679,673215077,1398755407,1163020101,221129031,1678380298,1935634543,1701996389,168639079,1818321673,1701257324,1734701684,1601004909,151653746,544238947,908880993,1778977293,1679844705,1633842025,990447972,1847617129,1629516911,1734701856,1953391981,1734701600,1702130537,151653746,544238947,841772129,1778977293,1178607717,990447881,1394632297,151653715,543452769,1936286811,1734437990,1848401267,1142977647,1180652361,1346720351,1664813396,1918985580,1634493984,1679833703,1948741231,1885696544,225730917,977289226,1661536781,1629515885,221523052,1651116298,155598880,1765476617,1869488230,1397104756,544370464,168645447,1987013897,1767988000,1936286766,1751343469,154348637,1869490235,2003136032,909653024,909653549,1936615712,1668641396,1852795252,1852383347,1986817910,1702043749,1701978215,220820327,977289226,1627982349,1629512804,909192300,1862863373,1683693682,1818653545,1567844193,1397310508,1264535903,1398230862,990468681,1701078113,1868963940,829825138,221655598,1835665674,1868832880,154481520,1869036297,1769107488,1763734638,1970217076,218762612,757938954,1767055405,1697476199,1852142712,543450468,1701670249,1952541028,2036473957,673211764,1230983247,944983373,572534313,1752397168,578320416,168626701,1601204068,1936551273,168639032,1818321673,1768169580,1952802675,1702132066,1661536781,1629515885,221260908,1668811018,1629513576]},{"sector":3,"length":512,"data":[2019699832,1832585481,1646294639,1818307692,1829308941,1629517423,723987564,151653671,543516522,151602752,1718172425,540884512,151653680,543647086,168651874,1987013897,745300256,220671271,977289226,1929972237,1651732340,2013858317,543647843,1647081569,990447992,544632685,1647078497,151653740,544238954,896560996,151609657,1818321723,1701322860,1954112120,1851859045,1701978212,1852994932,168626701,757935419,1835878688,1634296933,1679844724,543257697,1599098664,692931913,168626701,1601204068,980249961,1661536781,1629515885,221260904,1818888458,1886348320,1835886943,990447928,1780508265,544502645,2036473953,168650100,1937076233,168650344,1936028681,1683693684,1818653545,1567844193,1397310508,1398753631,1398230856,168647241,544893449,151602752,1718172425,543520544,661548900,1701716084,1948279909,1752375407,1948284783,1931502952,224754281,1633880330,1931504748,1937207144,157645417,1919957769,544501353,1702521203,544106784,168642625,1651864329,745104416,990447924,1935766117,1344413797,572543572,1077938701,151653690,1819042147,1936286752,2004116839,224686703,1869613322,168650352,544893449,151602752,1718172425,1937074720,543236212,1685221239,1879640589,543716213,168654945,1818321673,1768169580,1952802675,1685221239,1882917152,1953393010,1701344288,1734961184,1919885416,544367972,1685221239,1661536781,543976545,2004378984,224686703,1869613322]},{"sector":4,"length":512,"data":[2019631216,1077938701,151653690,544238954,2004378984,157577839,1633893129,1746955372,1870100581,1629512818,1914725486,1920300133,218762606,757938954,1833508909,1768187245,543519841,1702132066,1347364896,1296910687,221129016,1678380298,1767862383,976776557,1661536781,543976545,1735616868,2036495461,153118068,1769107515,1763734638,1684368749,1702125929,1954112032,1678380389,959803503,168639073,1886218761,2019911712,1702132066,1664813321,543976545,1652057448,543519865,543452769,1970562418,168652402,758843917,1394617645,1713402981,543646060,1629515636,2036430700,1752375411,1931507567,543521385,1599098664,1397704787,774462025,168626701,1601204068,1936681075,221936233,1919879434,1768184608,1634494067,744321895,1599293764,1213423433,1230198607,1678380378,808874095,168639073,1886351369,158884128,1681590537,1633907561,1914725490,1920300133,1684086894,1936028260,151653747,544238954,875651428,1849362697,779384933,168635950,1768163853,1684103795,151653690,544632685,1529639027,1702257011,1563586675,1869626121,1969889392,1864395630,1931503206,1801675124,1829308941,1629517423,1718561912,1952805734,828466208,151653683,1752397168,225992992,1869416714,1683693686,1851749225,221260893,1869416714,1870078070,1881171058,1528853108,1717924464,1936154988,154152029,1701602107,1881174625,1818649970,544434017,543452769,1969582704,224683379,1869416714,1918574710,2053731181]},{"sector":5,"length":512,"data":[942431589,151611440,1852793915,1679848487,1819308905,1629518177,1830844782,1919905125,151653753,544632685,1685221239,1920233504,1767988000,1936286766,1751343469,154152029,1919903291,544499047,1970233953,1752440948,1634541669,1852401763,2037653605,168650096,1684955401,1768184608,1634494067,744321895,544501614,1599293764,1213423433,990467919,543452769,1734437990,151653747,1819042147,1936286752,1651795303,224752761,1869416714,1768169590,1717989164,544499059,1717924464,1768716393,168653939,1987013897,746087200,1380998990,1481197125,1913195021,1701736549,1633907488,168649331,543517193,151602752,1718172425,661940512,543236211,1701667182,1919950948,2020173413,1678313997,1528849253,1601399140,168648046,1987013897,746086944,1147096653,990447938,1936090735,1864397925,1143414886,1830823746,1869440366,224618862,1869416714,1769152630,1280331564,1599361865,1328231986,1348031568,1113543493,155538241,1768453179,1634934899,1327526777,1296654160,168638541,1952805385,1077938701,151653690,1528853103,1718839652,1936154988,1229204573,1598644051,1398099541,990463045,1852404336,1886593140,1634296677,1818632300,168650593,1987013897,746086944,1380998990,1481197125,168636717,1651864329,746086944,168654947,1818784521,746086944,151653681,544238947,908884066,168636970,543320585,151602752,1718172425,1734701856,1953391981,1701998624,225995110,1869416714,2019696758,1919965996]},{"sector":6,"length":512,"data":[2020173413,1835363949,762864171,1563568694,1829308941,1931507311,1347365993,1162893652,1094868819,990463315,1864396654,1634887024,168649838,1952805385,1077938701,151653690,544632685,1865181540,1702061670,1768693876,1868522862,1294693493,1330464078,1397116750,1661536781,543976545,2003789939,828859763,1882917129,1953393010,1734701856,1953391981,1835101728,151653733,544632685,657225825,220667936,1953696010,224555887,1953696010,225932143,1953696010,225932143,1869613322,2019631216,990447881,1668508004,543453793,1970562418,1629515378,1701995620,168653683,1886218761,845243424,218762545,538983178,1413826336,1296516434,1381977413,1193291040,1948284005,1914725736,1881171813,544502369,1948280431,1914725736,1831823205,1881173349,544502369,1948280431,1763730792,1920234350,1769235317,168652399,538976315,1936028501,538976288,168643651,1701251597,1734701684,1601004909,168639090,1818321673,1701257324,1734701684,225273197,1869416714,1818435702,168637228,1919447817,745300256,168651875,1684955401,745300256,151653687,225731954,990514442,539831597,1381254471,1162692421,539828301,544499015,543516788,795305330,544040301,1953653104,543584032,543516788,1953721961,1952675186,225341289,1728711946,1701999717,1835363687,151653690,1953719668,1919965984,1702065509,1194089828,1163023439,168643911,2054056457,155598880,1765476617,1702305894,1986095136,1953046629,1919705376]},{"sector":7,"length":512,"data":[2036621669,1862863373,1885020274,1937073522,744318053,1381257031,223168325,1633880330,1679846508,1701278569,1954112116,990453861,544499047,543516788,1702132066,1829308941,1528854127,1915644257,1701668709,1630297453,1933248876,543520353,1629516905,226058615,977289226,1829308941,1629517423,1633365100,1701981801,1835363687,151653725,225731954,990514442,1394614304,1398230856,757090117,1869108000,1752440951,1702043749,1852140903,1701060724,1769104243,1919906928,544106784,1296516435,168645710,538976315,1920233029,538976377,1460226372,1701995880,544175136,544503152,168653929,538976315,1953069125,538976288,1426671940,1952539760,168649829,538976315,1936028501,538976288,539777089,168646722,1752369677,1702066031,168639079,1987013897,745300256,1734701915,1567911533,1933248800,1701668709,1847620718,1700949365,151653746,225927779,1752369418,2019631212,168636716,1751349257,2019631207,158884396,1869429513,2019696758,225993004,1869116170,1734701943,168639025,1987013897,746086688,1685221239,1920233504,1702058784,1852273255,1647013217,991976824,544499047,1768383858,1919251571,1835101728,151653733,1936684147,151653751,544632685,657222753,168634170,1869902601,168649331,1952805385,168626701,538976315,1347635524,757084723,1769099296,857764974,1768041778,1768169588,1634496627,1701668195,1713402990,1629516399,1701995620,1852404595,1869422695,779314532,540740109]},{"sector":8,"length":512,"data":[1850023968,544830068,1867391008,168650094,538976315,1953069125,538976288,1701736270,540740109,1934958624,538997605,1480663072,168626701,1886611812,221917747,1633880330,1679846508,1701278569,1919907700,151653732,1752397168,225992992,1633880330,1679846508,1701278569,1919907700,151653732,1819042147,2019911712,1685221239,1879640589,1629515887,151653752,1819042147,2019911712,1685221239,1913195021,168653925,540740109,1213407264,1163024207,540422471,1750278189,824211311,1768041782,1701978228,1953720679,1847620197,778399073,540740109,1850023968,544830068,1279336480,1734701577,1702130537,1970151538,1919246957,758130720,168634679,538976315,1953069125,538976288,1701736270,540740109,1934958624,538997605,1480663072,168626701,2003789939,828859762,168639030,2002936585,1929972237,1629514856,221326456,1668811018,1629513576,2019699832,1879640589,543716213,168654945,1987013897,746086688,1685221239,1920233504,1735547680,829251950,2019699510,151653725,1936684147,151653751,544239472,168654945,1751349257,2019631207,225993260,1701972234,218762612,757938954,1229201453,1263027027,541340211,1749229613,543908709,544370534,1647129139,1864397929,1634887024,1931502702,543521385,1717924464,673216617,694695478,218762542,1936286730,862677091,221930546,1919879434,1919965984,1702065509,1345084772,842220882,151653700,1953719668,1919965984,1634494053,744321895,860181072]},{"sector":9,"length":512,"data":[168641586,1952805385,168626701,538976315,1464813651,538988623,2003789907,1701344288,1668312864,224748655,538983178,1953383712,538999154,155800352,1819047246,1919251501,1634625901,543450484,1769108595,1663068014,1635020399,1852403305,1752440935,1886330981,1701735712,1768845165,990514531,1159733280,544500088,1142956064,1681983817,1936028260,1718558835,2019913248,1986076788,1634494817,543517794,1702132066,544106784,1886680431,1814066293,224751209,537475850,673194016,1864383806,1702061670,1768693876,1868522862,723547253,540160800,543520100,1881173876,1768186977,220817262,538983178,1702057248,538976371,223101216,1930038538,1870098280,1919950960,168649583,1987013897,745104416,1936090735,1814066277,1600482921,729052527,1296387661,1179602511,1074400595,168639040,1685023753,168649331,1987013897,745038112,168651873,1684955401,745300256,224937527,1953696010,224555887,1851853066,1751195748,224944428,1852442890,1111498867,1829308941,1629517423,539438188,1074400551,168639040,1869902601,168649331,1886216969,745104416,1936090735,1814066277,1600482921,729052527,1296387661,1179602511,221784915,1651116298,222445600,1701972234,1930038644,1870098280,1852121200,168652900,540740109,1213407264,1230198607,757089626,1769099296,1629516910,1936024608,1885958755,1852795252,543584032,543516788,1702521203,540740109,1850023968,544830068,1212227616,1747988745,1331119165]}]],[[{"sector":1,"length":512,"data":[539771986,1030238256,1146244951,809902124,1497513320,539772244,1030238258,1380931409,990514500,1428168736,544433523,1092624416,218762584,538983178,1330139936,1381257303,1344285984,1953393010,1344283168,220353108,538983178,1702057248,538976371,223887648,990514442,1394614304,1146572616,757089367,1769099296,572552302,1380931396,1414537284,168632914,538976315,1936028501,538976288,168646721,1752369677,1769174895,1881171322,224620402,1869416714,1918574710,2053731181,1630297445,990453864,1702257011,1831825952,2053731104,151653733,544632685,2053731163,1668246629,1768172637,1634941705,1998611830,1701995880,660961056,1881171314,1769239669,1948280686,225667432,1869416714,1818304630,659629868,1661536781,1629515885,808594536,151653736,1931508330,1903652712,168649847,1886216969,745038112,151653680,1931503466,1685548904,151610487,543582523,1919907684,151653732,1931502954,2004316008,990447972,1998612073,224686703,1869416714,2019631222,1113138988,151653671,1936684147,151653751,544632685,657225825,220681285,1835665674,1936924784,168637306,2003789939,979662692,151587130,757939259,151653677,544632685,657222753,168634180,2003789939,979662705,1929972237,1651732340,1752369677,1685550959,151653690,544632685,657225825,220682063,1953696010,225932143,1869416714,2019631222,1380198188,1930038567,976452211,1929972237,2004053876,1752369677,1953527663,154810994]},{"sector":2,"length":512,"data":[1010501897,221064493,1869416714,2019631222,542123820,151653671,1936684147,151653751,544632685,657225825,220681298,1953696010,225932143,1869416714,1818304630,656418604,1929972237,1651732340,1913195021,168653925,2003789939,1702521203,1684956448,218762608,538983178,1397310496,1112819015,541414489,1699160109,2036473972,1713399156,1679848047,1935766377,1651336563,779249004,540740109,1850023968,544830068,1867391008,168650094,538976315,1953069125,538976288,1309232193,544503909,1702132066,544106784,1953721961,1952675186,544108393,1701999731,168652129,538976315,1936028501,538976288,1701736270,168626701,1735616868,2036495461,1881171316,224620402,1970276618,1679845491,1762266483,1346314342,151653709,1953719668,1130519328,1953775955,875322738,168650800,2054056457,222707744,1684956426,168650345,1937076233,1769152616,1829308941,1931507311,1968909417,1684300127,168648050,1987013897,745759776,1633645915,728917092,168647988,1684300041,745108256,1530557283,1601399140,990469486,1701080681,1869881464,1701344288,1734963744,1646294120,224752761,1869351178,157447012,1731922185,1948284005,1646290280,224752761,1869613322,1769152624,1879640589,1679847535,151653747,543387241,1936286811,157118047,1852390153,1633904996,1948280180,544498024,1982293367,1869029477,1852142708,1768453152,2036473971,168650100,1952805385,1718159885,1297104672,772344333,221657139,977289226]},{"sector":3,"length":512,"data":[1879640589,543716213,225014629,1684801802,1936007283,2003184745,543453807,544371824,1633645915,1567777892,1627982349,1696621668,1680632179,1685221239,1920233504,980640544,1936286811,157118047,1684957499,1948285029,1752440943,1769087077,544499815,1702132066,1812531725,1651729519,1936022304,168648041,1886351369,1769170208,1879640589,1679847535,151653747,543387241,1936286811,224226911,1701972234,151653748,942684206,1695157558,1718183022,1768163853,1952802675,1702132066,1684956448,218762608,538983178,1397310496,1465140551,541348431,1699160109,1870078068,1713398898,1679848047,1935766377,1651336563,779249004,540740109,1850023968,544830068,1867391008,168650094,538976315,1953069125,538976288,1309235265,544503909,1685221239,540740109,1934958624,538997605,1867391008,168650094,1768163853,1952802675,1685221239,1869770784,151653731,1752397168,225666080,543582474,223170623,1702103306,1528853619,1095975778,1567782004,1747989548,1778977293,1075870318,1695157574,1718183022,1879640589,543716213,153119091,1634941705,1931502966,151653737,544632685,1529637235,1684103029,224227940,1869416714,1935941750,1601526572,1919181921,224212011,1684080906,1769152612,980640556,1936286811,157118047,1684957499,1948285029,1752440943,1769087077,544499815,1702132066,1812531725,2004051055,1879640589,1931505775,151587177,1936028219,1701998452,1768453152,225666926,1869613322,1935941744]},{"sector":4,"length":512,"data":[1627982349,1528849508,1601399140,841768302,1913195021,168653925,1059087977,168643920,942878217,1074400566,168639040,1937076233,1936007272,151653737,544433260,745108325,1919907686,1953505380,1968906354,1684300127,168648050,1684300041,1769170208,1870095404,1881171058,1663070836,1683700339,1851749225,1765476701,2019910766,544175136,543516788,1751607666,2036473972,168650100,1685023753,1528854387,1567191909,1879640589,1696624751,168651123,1886351369,225666080,1684080906,1683693668,1851749225,221391965,1701972234,151653748,942684206,1695157558,1718183022,1768163853,1952802675,1685221239,1684956448,218762608,538983178,1397310496,1464813651,1163155778,539828307,2003789907,1954112032,1713402725,1948283503,1679844712,1935766377,1651336563,779249004,540740109,1850023968,544830068,1480728608,1836404233,544367970,1646290543,1936028793,1970087968,1646294131,540942437,168634672,538976315,1953069125,538976288,1684103029,1965060708,1952539760,168649829,538976315,1936028501,538976288,539777090,168642899,1768163853,1869116275,1954112119,1881174885,224620402,543582474,223170623,1702103306,1528853619,1095975778,1567782004,1747989548,1778977293,1679850094,1651733353,168636767,1768189541,151653734,544632685,1529637235,1684103029,224227940,1869416714,1935941750,1601526572,1919181921,224212011,977289226,1812531725,1651729519,1661536781,543976545,1652057448,224752761]},{"sector":5,"length":512,"data":[1701054730,2019696739,1778977293,1075870318,151653698,1752397168,225669920,1869613322,1935941744,1829308941,1528854127,1684103029,744321636,168651123,1952805385,1718159885,1297104672,772344333,221657139,1936286730,828334707,151653690,544433260,745108325,1919907686,1953505380,1968906354,1684300127,168648050,221921344,1869351178,543322980,1769170267,151653725,1819042147,2019911712,1702132066,1678313997,1646289765,151653752,544894570,168641088,1937076233,1936924776,1879640589,1679847535,151653747,544632685,1919907684,1953505380,1968906354,1684300127,1697406322,168651123,1952805385,772344333,909652024,1852115469,224815460,1936286730,2003789939,1702132066,1852121203,168652900,540740109,1330454560,1448035670,757092933,1987005728,1752440933,1768693861,1948280174,1752440943,1769087077,544499815,1768169517,1936941427,1818389861,1931506277,1969644149,1769235310,221146735,538983178,1953383712,538999154,155796512,1953718604,1684300064,1936942450,824191776,543584032,1701734764,544174880,225599846,538983178,1769489696,538976372,156779296,1651340622,1864397413,2036473958,544433524,1830842228,224753263,537475850,1142956064,1884621129,1702125924,990514532,1428168736,544433523,1394614304,218762569,1987013898,1702260581,1919950962,168649583,1886216969,1769167648,1869374842,808213859,1778977293,1178607717,990447881,1931503209,1818589801,1847616367,1931506799]},{"sector":6,"length":512,"data":[1684371041,1627982349,1528849508,1702521203,1566797676,225993516,977289226,1829308941,1931507311,1768172649,1627982349,1679844452,2019765353,1829308941,1663071855,1768172664,1929972237,1663066741,1718561912,1952805734,1852402720,1970233189,1313680244,1313819973,223561295,1970276618,1679845491,151653737,224687219,1701054730,1769152611,1678313997,1679844197,151653737,544236914,1937141613,151653730,544239472,168651108,1684824841,1913195021,168653925,1702260589,1919252079,1684956448,218762608,543582474,1162104653,1129596243,168641613,538976315,1464813651,1212367181,1377840416,1920300133,1953701998,1735289202,990514547,538976265,1851466272,1935959397,909664032,1864376925,1528963186,1684366702,945758323,539122999,572551791,1701146203,1176531812,576542032,544370464,1651464994,1701605235,576546164,540740109,1850023968,544830068,1346510880,1768910880,1919251566,544175136,1818386804,1718558821,1935830816,1952803951,1852383333,1970435187,1869182051,168653678,538976315,1953069125,538976288,1092634963,1701995620,1864397683,1953701990,1735289202,154864141,538976288,1277188163,1952935525,1718558824,1920234272,744975977,544370464,1718165552,1953459744,1701146144,224683364,538983178,1702057248,538976371,223101216,1930038538,1836543848,543712097,1668248176,1829308941,1931507311,1718561897,1952805734,1701146144,1936552804,1664813415,1768189537,1702125924,1936026912]},{"sector":7,"length":512,"data":[1701273971,1829308941,1663071855,1769155704,1718576506,1701146144,1936552804,1815808359,1952935525,1718558824,1701344288,1936026912,1701273971,1946749453,544502629,778658139,1818652004,1567844193,1598899244,1380994883,1778977293,1936269434,1970299743,1765476617,1869488230,543236212,1919971171,1936024431,544370547,1953721961,1952675186,225341289,1869416714,2036473974,1881171316,1528853108,959146355,925314141,1664819239,1735287144,1701650533,1734439795,1702109285,673215608,926447655,168634663,1987013897,745300256,1667329371,926441320,1685024095,168648037,1886216969,745300256,168636717,2054056457,846033696,990447904,1763731049,1634214004,543236211,1919971171,1936024431,225603443,1869416714,1818304630,1634556716,1852401763,1869438821,224224612,1835206922,1818304624,1767988012,1936286766,1751343469,151653725,1931502186,151597933,1718172425,543520544,1886611812,544825708,543516788,1936942445,224749409,1869416714,1769152630,1717989164,544499059,1684366702,1970300531,1919957769,544501353,1936287860,1936026912,1701273971,1936615712,1684104564,154864141,544632685,1932294243,1868921449,1701716070,1718838373,168654192,1952805385,1936263693,1970299743,151653690,544632685,1702132066,1920233504,1769167648,744306987,539440679,1936028219,1830843493,1634956133,1948280167,544503909,947398440,220800822,1869416714,1818304630,1634556716,1852401763,1869438821,224224612]},{"sector":8,"length":512,"data":[846033674,151653690,544238947,1529637985,1680763233,1634562921,224225379,1634339082,1836261477,151593012,543582523,1830842222,1634956133,673211751,1713401715,220820065,862810890,151653690,544632685,1529637985,1680763233,1634562921,224225379,1684080906,1818304612,657467180,1829308941,1528854127,925591923,1818307677,1913195021,168653925,976514419,1879640589,543716213,168651108,1937076233,2019631208,1829308941,1679849071,1885482089,1829308941,1629517423,1767582840,1852405860,168648051,1987013897,746087200,151653687,1852859762,1668489317,225932129,1869613322,2019631216,1778977293,1931502958,168637805,1987013897,745104416,1936090735,1864397925,1634562914,723544163,168637984,1651864329,745104416,168654947,1919907849,746087200,151615587,1701602107,1126199905,538983000,1830842222,1634956133,168650087,1886216969,745300256,1567188059,1778977293,1931502956,168637805,1987013897,745108256,1936090735,1864397925,1819243362,224752741,1869416714,1818435702,2053731116,543584101,1869832815,1702126956,1836255757,168639029,1886351369,225010720,1701972234,1930038644,1836543848,543712097,1885630053,1852115469,224815460,990514442,539831597,1347245380,1397179730,1142959392,544238965,1768383858,1919251571,168636019,757935419,758526240,980707682,1931491360,1914725492,745760613,743198240,1768649504,741482608,1931490336,1914726245,745760613,743459104,1634493984]},{"sector":9,"length":512,"data":[168653671,757935419,758264608,980707682,1931490848,1914725492,745760613,743198240,1931489824,1914725492,728983397,1177243721,1713384524,1936154988,1280188460,540418092,543647091,1936156018,168626701,1886221668,1936156018,1869770784,151653731,544632685,1865181555,1702061670,1701978228,1835101799,168653669,1987013897,745104416,1936090735,1814066277,1600482921,225736047,1869416714,2019762294,151599148,1769107515,1629516910,941649004,1685353248,1734701600,824713331,1768041782,168634740,1936028681,1918574708,1701080941,1297230941,909652831,1397179730,1778977293,1178607738,1829308941,1663071855,154545260,1869757193,1713401199,908096111,1685353248,1734701600,858267763,1768041778,1864378740,226061422,977289226,1661536781,543976545,1919970660,990447921,1852404336,1768300660,544502642,225931122,1633880330,1948281964,1886218610,225670261,1869416714,1768169590,1717989164,544499059,1701734764,1953853279,1946749453,544502629,1869443675,744318308,861883730,1163015736,168645447,2054056457,222707744,1970276618,1931503731,151653737,543450209,841771379,151597610,1768649531,1226973296,573252176,220351558,1869416714,1818435702,151598124,1769107515,874542190,1734701856,1953391981,1734701600,151653747,1819042147,1886217248,225915250,1869613322,1769152624,1762200077,1663066990,151587192,1031299899,151653681,1819042147,1886217248,151597426,1769107515,673215598]}],[{"sector":1,"length":512,"data":[1346971973,1661536781,543976545,1718644068,1936154988,1882917129,1953393010,1634493984,1763734375,808984686,1830827576,224748655,1835665674,1869488240,1597388851,168636723,221921344,1869416714,1818435702,151598124,1769107515,1914729582,544502629,857761391,1768041778,1953702004,1701978212,723546983,1346979104,1159736096,168643654,1818321673,1835278444,1680962160,1879640589,543716213,168651123,1818321673,1835278444,1634494064,151614311,1769107515,1713402990,1936154988,544106784,540424243,1701080941,1661536781,543976545,1835627124,1937012080,1879640589,1931505775,151653737,544632685,1865181540,1702061670,1768693876,1868522862,168653941,1987013897,745300768,990447926,1852404336,1935941748,1936007212,1936924716,1935876140,1936072748,1936138284,1661536781,543976545,1919970660,168654641,942894958,825450294,151653690,1819042147,1769108512,1953853549,218762611,757938954,1768169517,1634496627,540090489,1634953572,1835365235,1684368482,1852402720,1952522341,978535200,1230849371,218762576,1869416714,1769152630,1717989164,544499059,1936156018,1346990638,1829308941,1679849071,1718561897,1952805734,1633645856,225600612,1869416714,225932150,1869416714,225932150,1869416714,2019631222,1701993260,1915646823,224219971,1953696010,225932143,1869416714,1683693686,1818653545,1567844193,1397310508,1381975647,542396485,1142977135,1180652361,1330139999,151653719,1819042147]},{"sector":2,"length":512,"data":[1936286752,225276769,990514442,539831597,539456039,1702061426,1679848308,1969317477,1931506796,1769239653,1713399662,656437871,1948264309,1396908143,1564826426,168644681,1929972237,1885698665,153118322,1869429513,1634017398,1918577784,779315045,1565542770,1829308941,1629517423,1918577784,779315045,1565542770,1929972237,1885698665,153118322,1869429513,1968906358,1684300127,1697406322,168654945,1987013897,1601526560,1919181921,2019634269,1913195021,168653925,1886221668,1936156018,1684956448,218762608,757938954,1967530029,1769235310,1948282479,1919950959,544501353,1953265005,1701605481,1380931360,1464086340,541348431,1768383858,1919251571,1953391904,1936025970,990514478,539831597,1043155283,1768383858,1919251571,1835101728,673215333,2036473906,695428468,758843917,1126182189,1868774744,225734261,1678380298,829583469,151653690,1953719668,1836210976,1566925935,1598902828,1379285043,223561541,1852442890,1835278458,1680962160,168626701,757935419,1853179424,1869182051,1869881454,1769107488,1830843502,1769237621,543517808,1146244951,1734701600,1702130537,1852121202,1701409396,168636019,757935419,759780128,1734701630,1702130537,1634607218,544433517,1646277160,1936028793,990514473,539831597,1664964675,1953396079,168626701,1919970660,221935409,1869416714,225932150,1869416714,1818304630,658319148,1929972237,1651732340,1829308941,1646294639,1935355000,1431186281]},{"sector":3,"length":512,"data":[1195725389,1162690894,758262355,168647986,1987013897,746086688,1568170587,1661536781,543976545,2004378984,224686703,1869416714,1818304630,656418604,1929972237,1651732340,1812531725,544239471,1919970660,168654641,1952805385,168626701,757935419,1853179424,1869182051,1869881454,1769107488,1830843502,1769237621,543517808,1380931396,1701978180,1953720679,1696625253,1769108590,221148005,757938954,1230184493,1701985837,1953720679,1847620197,1936026977,540157984,1702132066,168634739,757935419,1029194528,1853189987,218762612,1886217226,979644786,1829308941,1629517423,1160195180,151653671,1936684147,151653730,1937141613,151653751,544632685,657222753,168634173,1869902601,168649331,1987013897,746086944,728331099,1380799822,1095649093,710100301,1563569458,772344333,221657139,1869416714,1634017398,1650142328,168648056,808988169,168638008,1818321673,1701322860,1870095480,168649842,1987013897,745300256,220667943,1953696010,224555887,1869351178,1679847535,829583469,151653732,225731954,1124732170,1414745679,1734701856,1953391981,1919289869,1634625381,544433517,1700946284,2036473964,168650100,543319049,660030247,1395073068,539764567,660034599,1678313997,1227300962,740769104,1346643744,168634173,1886209380,1678342516,1697063010,2037674093,1678380327,156131662,656433764,659448142,1329793549,542397262,1935961701,168626701,757935419,1836409888,1734701680]},{"sector":4,"length":512,"data":[1431324275,1142959392,544238965,1634692166,1735289204,1768902688,1377858670,1936287589,1936876916,758843917,1830825261,1718183023,544433513,539773267,539773252,1096631643,1109404760,1126181976,1528835160,1480875333,168626701,1886221668,1936156018,542462022,1668248176,154864141,544632685,1865181540,1702061670,1768693876,1868522862,168653941,1987013897,745108256,1936090735,1713402981,1852269938,1936026977,1829308941,1646294639,1718561912,1952805734,1852402720,1852399461,840968992,1929972237,1885698665,168650354,1936614921,543520353,1568170587,168626701,757935419,1936286752,2036427888,743916320,542593824,543452769,168646484,1829308941,1663071855,221457528,2019913226,1919968884,151653690,1937141613,151653751,544632685,657222753,168634173,1869902601,168649331,1751349257,1769152615,225993260,1769146634,1919968634,151593062,1685023803,168649843,1685023753,168654707,1751349257,1769152615,225993260,1970276618,1629513843,151653752,1819042147,2019911712,1685221239,1829308941,1629517423,539438188,151653671,1936684147,151653730,1886351212,2019913248,1919968884,168626701,757935419,1936286752,2036427888,542132512,543452769,168644676,1829308941,1663071855,154283116,1751333641,544434464,1818304560,1684104562,1846152569,1718909029,168639088,1937076233,2019762280,1829308941,2004055663,1829308941,1651734127,2013858317,543647843,1647077747,151653752,1702521203]},{"sector":5,"length":512,"data":[543584880,1815808265,1685283951,1812531725,2004051055,1929972237,1885698665,153118322,1869429513,1684349046,1634020472,151653752,544632685,1630304356,151653752,1702521203,543584880,1815808265,1685283951,1812531725,2004051055,2013858317,543647843,1647077747,1762266488,1346314342,151653709,1819042147,1886611744,151653741,1075870314,151653702,1819042147,2019911712,1685221239,1829308941,1629517423,975645804,151653671,1936684147,151653730,544238954,1836085350,1077938701,1695157562,1718183022,1829308941,1663071855,842083436,1929972237,1885698665,153118322,1752382217,1634017394,1818438776,1929972237,1629516392,1818438776,1661536781,1528852589,1751343469,1566928489,168637228,543320585,168642112,1818321673,1701322860,1919907704,151653732,544238954,1836085350,1077938701,151653690,1819042147,2019911712,224557422,1886414346,168639085,2053731081,1718775909,990447960,544632685,746086757,225993829,1869416714,2019631222,225993772,543582474,223170623,1633880330,1763732588,225276019,2053769482,222707744,1835206922,1834688624,1768448865,744318318,151653683,1075864170,151653702,1819042147,2019911712,1919907684,151653732,544238954,1836085350,168636979,221921344,1684956426,168650345,1818321673,1701322860,1919907704,1711934820,862810224,168639026,1987013897,745300256,220667943,1953696010,224555887,1869613322,2019762288,1812531725,544239471,1954047342,168652902]},{"sector":6,"length":512,"data":[2013858317,543647843,1647077747,151653752,1819042147,1769108512,1953853549,218762611,757938954,1768169517,1634496627,1414733945,539828272,221729875,151653642,544239472,151613538,1701264137,1465131124,1879640589,1629515887,151587192,1952802619,223826720,1869613322,2019827824,990447881,544499047,673208131,544501614,1684370293,218762537,1869416714,1818435702,221262124,1752369418,2019631218,158098220,1869429513,1330913398,1869881424,1953063456,758194291,151653683,543452769,808217697,825241648,1647325489,1829308941,1663071855,1818307692,1913195021,1646293615,1818438768,168626701,1987013897,746087200,657472807,1701710349,1953723512,151593018,758921993,1847602477,544503909,1634692198,1869881460,1936286752,2036427888,1829308941,1679849071,1718561897,1952805734,1852402720,1970233189,151653748,1752397168,225993504,1869416714,2019631222,1398023980,151653671,1936684147,151653751,544632685,1663858785,151653752,1936684147,151653751,1752397168,225010720,1702103306,1629516915,221326444,1869416714,2019631222,538978092,151653671,544632685,841775203,151653681,544236914,1936684147,151653730,1075870314,151653702,544632685,808220769,1749299265,1077938701,151653690,1936684147,151653751,544239472,168651108,1829308941,1629517423,1885482104,1913195021,1646293615,154217584,1701985033,1852399981,942684192,1868767286,1952542829,1701601897,1919248416,168632677]},{"sector":7,"length":512,"data":[1919906313,745562656,151653681,543452769,858549345,809175305,1635138864,744778092,2050830640,745501285,1312633392,808210017,1833254195,226063472,2053769482,1987275040,1684630625,1879640589,543716213,168651123,1987013897,745108256,1936090735,1679848549,1953525061,151653753,544632685,1932291171,1868921449,1164189798,2037674093,1661536781,1629515885,221391980,1634339082,222707744,1869416714,1769152630,1717989164,544499059,1314999908,1829308941,1663071855,1769155692,1718576506,1632527392,151653710,1075870314,151653702,544632685,657222753,168634160,1869902601,168649331,1987013897,745300768,1074400560,168639040,1885696521,1987013920,168649331,1886351369,225014560,1835665674,1701978224,1953853287,1701736292,1936263693,1768710518,168639076,1176528489,1397707856,168645204,1886216969,1852988192,1887007839,657218917,168634194,543517193,1886221668,1936156018,1599426630,225994088,1852377354,1701539702,1869366816,1867805793,745698387,745108256,225010720,1835665674,1701978224,1953853287,1701736292,1852115469,224815460,1836409866,1734701680,1431324275,2019911775,151653690,544632685,1529641057,942369139,151653725,1819042147,2019911712,1685221239,1829308941,1629517423,774319212,151653671,1936684147,151653730,544632685,908884066,1077938701,1869416762,2019631222,1769167660,1568170539,1661536781,543976545,2004378984,224686703,1970473226,2019696738,168636972]},{"sector":8,"length":512,"data":[1701276169,222445600,1734701578,1685353839,979725935,1829308941,1679849071,1718561897,1952805734,1852402720,1970233189,926034804,1661536781,543976545,1937012080,1879640589,1663070319,151653752,543450209,824994163,990447920,1702521203,1411409519,1163155778,1762200077,1663066990,151653752,544238947,657222755,168634168,2054056457,2019913248,225735540,841877770,151598648,1986083593,543451503,1414086999,1701998624,225995110,1769146634,1919968634,151653734,1953722982,1528853103,1701734764,544106847,1563566123,772344333,909652024,1913195021,168653925,1886221668,1936156018,542462022,1885630053,168626701,757935419,1347240992,1195461702,539828307,1886221636,1634493984,1864397671,1970304117,168636020,1835272717,1634494064,1881174887,224620402,1869416714,1769152630,1717989164,544499059,1650945126,225670249,1869416714,2019762294,151599148,1852140603,1869116519,1818632294,1953063527,1846152563,1718909029,979853676,1812531725,2004051055,1946749453,544502629,1529641057,1936156018,1279685166,151653725,544632685,1529641057,824928627,1563569462,1778977293,1178607738,990447881,1847617129,1629516911,1919251315,224683380,1869416714,2019631222,1769167660,758264619,168647986,221921344,1953696010,225932143,1869416714,1818304630,656418604,1929972237,1651732340,1812531725,544239471,1954047342,1734437990,1913195021,168653925,1718644068,1936154988,1684956448,218762608]},{"sector":9,"length":512,"data":[543582474,1398295885,223367253,858654986,168638008,1886221668,1936156018,542657869,1668248176,1711868429,1986098030,1528849509,1701734764,544106847,1563566123,1829308941,1931507311,1718561897,1952805734,1852402720,1852399461,924855072,723530794,168636960,1987013897,746087200,657472807,154864141,544632685,1865181540,1702061670,1768693876,1868522862,168653941,1954047342,1835365481,151653690,544632685,657225825,220679501,1953696010,225932143,1869416714,2019631222,225993516,1953696010,225932143,1869416714,1634017398,1935355000,1563700073,1661536781,543976545,1685611880,1685221239,1829308941,1696626287,1529641057,224225651,1633880330,1746955372,2003073125,224686703,1869416714,2019631222,538978092,151653671,1936684147,151653751,543450209,824994163,151653680,1953719668,745300768,151653681,1075870314,151653702,1752397168,225993504,1633880330,1881173100,1819505781,224751209,1869613322,2019762288,1829308941,1679849071,1718561897,1952805734,1852402720,1970233189,1074400628,168639040,1668180233,225993504,1835206922,1818435696,657991468,1778977293,1847622254,1769240677,225273204,1818626314,1986946404,1817911396,1600482921,723545705,224211488,1701972234,1678380404,1919970677,1299408741,1696618573,225469550,942541066,221657136,1684956426,168650345,758843917,1663053101,1937338479,1852404340,539828327,2037411683,1852796448,1886217517,1847622004,762080373]}]],[[{"sector":1,"length":512,"data":[1836213620,1952542313,1931502693,1852404340,168636007,757935419,759780128,1920234302,224882281,757938954,1229201453,1969372717,1919247974,168626701,2037411683,1769108595,1881171822,224620402,1869351178,224555876,977289226,1929972237,1651732340,1812531725,1651729519,1661536781,1629515885,221260908,1852442890,1111498853,1913195021,168653925,2037411683,1769108595,1696622446,225469550,990514442,1210064928,1464096837,541348431,1917853741,544501353,544761192,1685221239,1852385312,1480672544,539828265,1634036835,1210086258,1919899497,1095051364,221129048,538983178,1480935456,1146244951,1344285984,1953393010,2019911712,1919907616,1764237412,1480663150,168635945,538976315,1113081160,541414489,1917853741,544501353,544761192,1702132066,1852385312,692863264,990514478,1210064928,1498306629,539828290,1852404304,1701322868,1768169592,779381095,540740109,1934958624,538997605,1279336480,1229201452,168626701,1685611880,1685221239,151653690,1752397168,225992992,858654986,168638008,1919447817,2019648800,221655340,942541066,221657136,1633880330,1746955372,1870100581,168649842,1886351369,225992992,1745489162,1870100581,221930610,1970276618,1629513843,151653752,544632685,1630301281,151653736,1819042147,2019911712,1702132066,1879640589,1629515887,218762616,2019911690,1702132066,151653690,1752397168,225992992,1970276618,1663068275,151653752,544632685,875326563]},{"sector":2,"length":512,"data":[1929972237,1629516392,1818438764,1661536781,543976545,1853384040,168649337,1886351369,225993504,1869613322,2019631216,168626701,1853384040,221930105,1851853066,1818304612,1751527468,1627982349,1629512804,809053292,990447976,1936025716,1868963941,1763734133,1920234350,1769235317,544435823,1851877475,1948280167,1935745135,543779171,225994088,1633945866,151653729,543384673,875326561,168650800,1633772553,1929972237,1651732340,1913195021,168653925,540740109,1096032288,1330929474,1394617632,1701011824,1818846752,1853169772,543975796,1667327346,1735289192,1701344288,1819239200,544107893,1768189545,1702125923,2036473956,777535776,540740109,1344806944,1953393010,1847615776,1814067045,543518313,1847617129,1936024421,2037539187,168634670,1634994701,1869897570,1869770784,151653731,1752397168,225992992,1970473226,2019631202,225010732,1634339082,155598880,1765476617,1752440934,660959845,1869750387,1864396143,1752440942,1814066025,224751209,1633880330,1948281964,1886218610,225670261,1869416714,1768169590,1717989164,544499059,1701734764,1953853279,1077938701,151653690,544239472,168654947,1651864329,746087200,168651108,1987013897,745300256,220667943,1701972234,1953702000,157447023,1886599945,543515489,1819044198,544175136,543516788,1751607666,1852121204,151653732,225731954,1650553866,544175199,1885630053,168626701,538976315,1296650836,1398035792,1411394848]},{"sector":3,"length":512,"data":[544041330,1701017701,1646293875,1802396012,1919295603,1931505007,1852404340,1851859047,1919950948,544501353,1953068840,1380130920,692472879,990514478,1344282656,1280529493,541412937,1681989677,1380130916,541477935,1931505524,1852404340,1851859047,1919950948,544501353,221148265,538983178,1414877216,539828307,1852404304,1953702004,1735289202,1919448096,1751610735,776553504,168626701,1835627124,1937012080,151653690,543384932,168651108,1886216969,1954112032,1953505381,1683693682,657218921,168634144,543517193,1835627124,1937012080,1762200077,1679844206,218762601,1953853450,1852402803,168639077,1987013897,746086688,706758220,909455904,1126181664,151653714,1936684147,218762615,1953853450,168639091,1987013897,746087200,168651108,1987013897,746087456,1936090735,1814066277,1600482921,225736047,1970473226,2019762274,225993772,1930038538,1970234484,1919950964,151610223,1920416521,543519849,1144673092,1931488344,543521385,1948276803,1414733935,1414876996,691087392,1661536781,543976545,1866755657,151653747,544894570,168642112,1987013897,746086944,990447921,1851880563,1685217636,1953853216,225736048,1869416714,1751195766,1747989548,2000357641,1702127986,544175136,1701603686,1661536781,543976545,1668509540,225209441,1701972234,1074400628,151599680,1966803209,1109419379,542330697,544370534,1886680431,168653941,2019781129,1869488250,1886680431,168653941]},{"sector":4,"length":512,"data":[1937076233,1769152616,1829308941,1931507311,2019830889,1077938701,151653690,1935961964,151653730,544632685,925661282,1829308941,1629517423,1160785000,151653736,544501353,224931889,1869351178,1075867759,151653698,544239472,168651123,1970237294,1953853556,151653690,225731954,1685353226,544503151,1885630053,168626701,1142974057,1163282770,1902452818,168636448,1634038371,1969513844,1954114925,543912801,1668248176,168626701,1987013897,745104416,1936090735,1914729573,225666917,1869416714,2019762294,2053731116,543584101,1936156018,840970016,2013858317,1629516399,2019634296,1913195021,1931505765,2004053876,168626701,1987013897,745038112,157825076,1701264137,1634476148,1936025458,1919295604,1646290277,1801678700,1829308941,1646294639,825044088,1762200077,840987758,168650801,1886216969,746086944,157823281,1970092809,1646294131,1952522341,1634036768,824210547,543698993,1702132066,168632691,543386121,1683977315,224751215,1869416714,1751195766,1748513836,1631258889,1668246636,543519841,168653929,1953392905,1748054560,1778977293,1952653411,1852793951,990447973,1970235507,661546092,1634214004,1852141680,168626701,1668180233,1954112032,1953505381,1918574706,779315045,726681970,990469425,826101833,224931888,151653642,1819042147,1952805664,1701868389,168651878,1879640589,543716213,168654946,1987013897,745104416,1936090735,1914729573,779315045,156451954]},{"sector":5,"length":512,"data":[1768843579,1701978228,1915646823,1915507524,779315045,743654770,1936156018,1397977646,1734701612,1131556467,151653715,1936684147,151653751,1936684147,151653751,1936684147,151653751,1936684147,151653751,1819042147,1952805664,1633644661,168654180,1987013897,746086944,1734701659,1131556467,990469459,1681553506,540876920,1919248503,1869881445,1634692128,1919950948,1634887535,151653741,544632685,1647080293,151653752,544239472,151615585,1701264137,1769152628,1864394106,1701650534,2037542765,1869373984,168651619,1987013897,746087456,168654945,1684300041,746087456,168654946,1987013897,980641056,1095516507,1565540691,225993772,1835206922,2019631216,808464684,168650800,1700948489,155598880,1765476617,1701650534,2037542765,1717922848,1027350644,1261712928,2013858317,1629516399,2019634296,1631258889,540876920,808464433,1932009576,543518049,1852401780,1629498471,1919251558,1768452896,1852404838,168634727,221921344,1869416714,1818435702,168637484,1818784521,746086688,168651875,1667589129,225992992,1701054730,2019631203,1829308941,1528854127,1936156018,1347645998,2019634269,2013858317,543647843,1680636001,990447977,1681552229,540876905,1818847331,1953701988,543908705,1852403568,225600884,1870137610,2019631218,225993004,1953696010,158823279,1882917129,543716213,1852776496,1768710944,661941861,1953702003,225141601,990514442,539831597,1634038339,1629513076]},{"sector":6,"length":512,"data":[1347637280,168626701,1987013897,745038112,157824309,1919105801,1702125925,1768448800,1344300140,168644691,1987013897,746087456,168653669,1987013897,745108256,1530557285,1396788289,224219201,1663056650,2037543521,1634493984,1818435687,1701994853,2036473956,1868718368,2015389046,1629516399,2019634296,154864141,157510755,2000357641,1936421487,1869766944,543452789,841962319,1735746080,1762200077,840987758,168650801,1987013897,1919907616,1953505380,1936007282,1347705658,808146505,1718561885,1952805734,1953392928,168636978,1987013897,980641056,1230001243,1563568982,225665836,1835206922,1650139248,1953066569,221260893,1852442890,1178607738,1762200077,1528849262,1768835426,168648052,1987013897,1954112032,1953505381,1936007282,808540986,744319024,1748190000,1819294473,543515489,1868787823,1713399140,656437871,659834194,544497952,1228559171,1074400592,168639040,1987013897,1936743200,1700947056,1936010333,1829308941,1629517423,1936010360,1678313997,1629512549,151653752,544632685,1630303077,151653752,543387241,168654945,1987013897,980641056,808464475,1630297393,151653752,544632685,1702132066,1920233504,980641056,808464475,808213816,1879640589,543716213,153121636,1701985033,1919906931,1397039205,1879640589,1696624751,151653747,1819042147,1952805664,1685091184,151611234,1952805691,1650811936,1701275509,544417650,223368016,1601463050,1701736292,151653690]},{"sector":7,"length":512,"data":[225731954,1661603082,1952540018,1836409957,1635023213,1696623475,225469550,1684956426,168650345,1718159885,1297104672,168626701,757935419,1869572128,1852383339,1177690228,1718165608,1142972704,541674832,1953722216,544434464,1853189990,990514532,539831597,544370534,963537239,1851859064,1866735716,1970095475,1936680992,990514548,539831597,544501353,745031218,1031299360,926430769,1936269416,1953459744,1869572128,744777067,2003789856,1919252069,758843917,1646275885,1969316709,1763730803,1868832884,661549925,1870078068,539913074,1969382724,1852401511,990514535,539831597,1881173609,1702129522,1684370531,1685024045,1953701989,543976553,544825709,1802661751,1969365036,990514548,539831597,543516788,1953066601,762077545,1953068915,1948280931,1297096815,1937075488,1700929652,1852404512,761621607,1885697139,224683376,757938954,1869422637,1768319332,1092645733,1109404760,1126181976,1142959192,1142959192,218762569,1869572106,543568491,1668248176,1661536781,1998614637,543453807,544371824,1684827995,728117865,808213810,1778977293,1746958958,845901679,221405030,1869416714,2019631222,943075628,151611447,1346648841,1746946381,544502639,1953721961,1701604449,168640356,1953392905,1749430816,1627982349,1629512814,2019634296,1778977293,1746958958,845901679,221405030,1869416714,1870078070,1881171058,1528853108,1768779876,1920233061,1563437945,157901868,1970435131]},{"sector":8,"length":512,"data":[1869095013,1142977651,541674832,1920233061,151653753,544632685,1685221239,1920233504,1885625120,1852139885,729379444,1697406258,151653747,544632685,1685221239,1920233504,1885625120,1635215725,728261492,1680629040,151653737,544632685,1685221239,1920233504,1885625120,1635215725,728261492,1697406258,151653747,544238947,1867407963,1802465096,744310322,990447920,544104803,544501353,543704626,1746953570,1701539695,168640356,2054056457,1869572128,1600533099,151653682,544632685,1685221239,1920233504,1885625120,1635215725,728261492,1865178416,1702061670,2037194868,1768779876,1920233061,151653753,544632685,1685221239,1920233504,1885625120,1635215725,728261492,1663851826,151653747,544632685,858552417,1749430837,1762200077,840987758,168650801,1987013897,1919907616,1953505380,1868243058,845767788,1563437926,225993260,1869416714,1870078070,1881171058,1528853108,1768189039,841705010,1936010333,1829308941,1679849071,1718561912,1952805734,1650811936,1177708405,1829308941,1629517423,892480632,224937522,1852377354,825368692,1762266472,1229201510,1330139219,168643407,1987013897,746087456,1936090735,1679848549,1751739760,225144687,1869416714,2019762294,2053731116,1885626213,1869113709,168651631,1818321673,1953701996,1953853284,1852115469,224815460,1869572106,1600533099,168639026,1952805385,1869089293,1714580335,1684956448,218762608,1684956426,168650345,1415514637]},{"sector":9,"length":512,"data":[542398533,1935961701,168626701,1413563487,1702043713,1852140903,218762612,757938954,793321517,1969365071,1919247974,538979955,1684948264,543584032,1836213616,1852141153,544828532,1769170290,1953391972,1918988320,220802676,1812598026,1600482921,153120361,824205924,808204338,156386092,1701591817,1752459118,824196384,168636467,1701734764,1953853279,1970365705,1852402720,1852399461,1313426475,1313431365,1313164383,1701972493,1700752481,1695114350,1814066545,1600482921,729052527,221656370,1594494218,1096040772,1684956448,218762611,1414094602,542398533,1835492723,225734245,1762266378,1380196454,1380275785,544302368,218762544,1768843530,1852793716,168639092,1987013897,745567008,168654945,1987013897,745038112,224944436,1852377354,825368692,151593064,1701996091,1701978213,1864397939,1329864806,1701650515,2037542765,1661536781,1528852589,1701603686,1567914085,168636460,544893449,168642112,1818321673,1869357164,1768318049,168650092,221921344,1835665674,1835212912,1869573220,1695157616,1718183022,168626701,757935419,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,758843917,1142959405,1735746149,1768843552,1818323316,1952545385,544108393,1701080931,990514478,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,757935405,221064493,1762266378,1380196454,1380275785,544302368]}],[{"sector":1,"length":512,"data":[1762266416,828863341,543319049,1313292868,742739265,1702240295,1869181810,774971502,660681267,743588652,1126975052,1179397202,1678313997,1111760994,1296125511,539438149,1564880731,1683708704,1702259058,1885035834,1567126625,1701603686,1701667182,1918982944,1936288871,660430196,743588652,1126975052,1179397202,1678313997,539435106,541470496,538976288,1696604192,1818386798,1634738277,1713399143,1886415212,661089897,743588652,168642124,543319049,1713381415,1852140649,543518049,1818846752,1869881445,1650811936,1864394613,2019893362,1852403041,1126967141,1179397202,1678313997,539435106,1735549216,1953720684,1881153568,1835102817,1919251557,1768366195,544105846,1881173876,1919381362,740781409,1277973059,1380133958,222710828,1650723082,1866868512,543236210,1953720684,543584032,1969382756,1852401511,1868767335,1851878765,539784036,544109938,151653671,1142973028,1095649090,657212749,1684955424,1887007776,541007973,1948284001,1881171304,1886220146,740765300,1277973059,606547014,218762535,1936550154,1678324327,1227300962,1818326638,1931502697,1668573559,539828328,1762266407,845640557,1650723169,662185760,743588652,657213004,168634148,1768189541,1762266470,1346314342,1762266445,1329864806,1431127379,1147406861,1833268079,1952531573,1650729061,842015264,792015407,220345145,1684956426,168650345,1768189541,1678380390,1702261615,1650723186,168636448,1718159885]},{"sector":2,"length":512,"data":[1230128160,223495510,1762266378,1601464686,544302450,1970435187,151653731,1601267058,544367720,168640060,1953066613,1650723187,990461728,540225835,1651340654,1864397413,1970479206,1919905904,543450484,1953066613,1695157619,1684104302,1679848036,155132004,875637563,1684956448,1684300064,1936942450,543584032,1769170290,1953391972,1918988320,1661603188,1768711277,1679844718,155132004,942746427,1684300064,1936942450,543584032,1835888483,543452769,1701734764,1852377613,1918858345,1696624997,225666158,1930038538,1952543348,1601791845,1953066601,151653690,544632685,1685221239,1920233504,980640544,1902473819,1953719669,1920233567,744304683,168654946,1987013897,1919907616,1953505380,1935876210,1701993274,1936029041,1953521524,1563569010,225666348,1701972234,168650356,1919158797,1919252073,1953391967,221935986,1970276618,1646291059,151653752,1752397168,225993504,1970276618,1679845491,151653752,1752397168,225014560,1970276618,1679845491,151653737,1752397168,225468960,1970276618,1679845491,151653747,1752397168,225666336,1970276618,1663068275,151653747,544239472,168653668,1818321673,1852383340,1868788841,168650084,1987013897,1951619872,1567908210,1717989164,544499059,1634890867,2036819316,1829308941,1528854127,1920233033,1718561885,1952805734,1953392928,1970434661,168653936,1987013897,746087456,1936090735,1679848549,1767863922,1635021678,1684368492,1829308941]},{"sector":3,"length":512,"data":[1629517423,221850728,1852377354,825368692,151653736,543323507,841775202,1829308941,1528854127,744323170,1936090735,1965061221,1852399461,151653748,544632685,1853190747,1567650655,225993260,1684801802,1768169587,1701993260,1936029041,1953521524,990469490,1684107116,1684300064,1936942450,543584032,1970365810,544502629,1684104552,168653413,1987013897,1768184608,1701981789,1684561777,1953705586,1937077345,808529964,168650800,1987013897,1919907616,1953505380,1683693682,1764646249,1601464686,779183474,1633971813,728917092,2019699760,1718172448,544760352,807419197,1919164460,1919252073,1852798752,1646294055,1852383333,1818326131,224683372,1869416714,1870078070,1881171058,1528853108,777873764,1953066601,1902473823,1684956462,1919181921,1663840811,1933254771,1696625765,1629512814,1701995620,168653683,1886351369,225666336,1869613322,1935941744,1879640589,1646293103,151653744,544239472,168651108,1886351369,225014560,1869613322,2019827824,1879640589,1663070319,151653752,544239472,168654946,1952805385,1678380390,1767863922,1635021678,1684368492,151653690,1142973028,1095649090,657212749,1986356256,543515497,1986622052,1763734117,1635021678,1684368492,1380133927,742804524,220668967,1684956426,168650345,1852377613,1868788841,1881171300,224620402,1818429706,1762266468,1380196454,1380275785,1829308941,1629517423,825568360,151653736,544501353,224932146,1869416714]},{"sector":4,"length":512,"data":[2019631222,225993260,1936483594,151653733,544632685,1663858785,1695157619,1718183022,1829308941,1998616175,543453807,544371824,1702389083,1802265187,1684890414,1818845556,744305195,168654945,1987013897,1919907616,1953505380,1700470898,1650681208,1714318188,724656739,1630297394,151653752,544632685,1685221239,1920233504,2019908384,1818387301,1667640939,841691746,2019634269,1829308941,1528854127,1685091184,744318818,168654945,758843917,1126182189,1801676136,1397703712,1919252000,1852795251,168626701,1987013897,746086688,808464435,990447976,1667590243,1329864811,1702240339,1869181810,151653742,544501353,224932146,543582474,1447645764,1696617029,221257841,1835206922,1818304624,168636972,1700882953,224804896,1701972234,1074400628,168639040,1768189541,151653734,544632685,1936680027,1567778166,225206572,543582474,223170623,1835206922,1818304624,168637228,1700882953,222707744,1869416714,1885020278,1751348321,1836082271,845766505,959208806,1747990832,1869495072,1414416672,1749430816,543582496,1329864764,221454419,1869416714,2036473974,1881171316,1528853108,1802465128,744318514,1748190000,1077938701,1695157562,1718183022,1661536781,1629515885,221523052,1634339082,1178607717,1829308941,1528854127,1668571504,1835687784,808213872,157827653,544173627,541213517,1701667182,1718165619,1142963232,874533711,1077938701,1762266426,1398087782,1397703749,223954251]},{"sector":5,"length":512,"data":[1634339082,1178607648,1829308941,1528854127,1668571504,1868849000,2036689779,1714579807,809053277,543699001,544173627,1263750980,1763727685,540811366,542330692,1074400565,168639040,1768189541,151653734,1734894456,745300256,168650849,1886216969,746086688,1751527731,1778977293,1178607714,990447881,1981834857,1769173605,1008758383,858665760,1948265521,544105832,661548900,1937055860,1701716069,1313415287,892477524,909258600,1701650536,1685022836,1762200077,1528849262,1885696885,1701536609,168648052,1886216969,746086688,1093678896,151653736,1075864170,151653702,543387241,1702065499,1801675120,542995557,1852128009,1701601889,1413563936,1629499955,1936024419,1701650547,1685022836,1919903264,1462717472,1077938701,218762554,757938954,1749229613,543908709,544370534,1936617315,543517807,1970302569,1937121396,1852383278,544503152,1836020326,1713398048,543517801,1864397423,1919248500,1986356256,778396521,168626701,1987013897,746086688,808465460,990447976,1413697353,1701257292,1852383348,168652646,1919907849,746086944,168654946,1953392905,1748054560,1778977293,1178607715,990447881,1847617129,1679848559,1667855973,151653733,543452769,942435428,151611441,1701339963,1763732323,1868767334,1819243374,1701060709,1701013878,1661536781,1679847533,825764972,151653736,543518314,151602752,1718172425,1953459744,1701344288,1852793632,1701605235,1886284064,168653941]},{"sector":6,"length":512,"data":[1987013897,1869503264,1953784180,808213881,1765476640,1767841908,1629511539,2037675040,1077938701,151653690,544632685,875329633,1747988532,1228605705,1280590671,1952802592,1718511904,151653743,544632685,824997986,1762200077,840987758,168650801,543386121,1953066601,151653681,544632685,1685353307,1718908271,1818504285,168626701,538976315,1702129225,808984684,1126184504,1663063376,1801676136,990514478,1109401632,544437353,825045553,1718558773,1701344288,1095517728,1914721095,1936287589,544367988,543519329,1635216481,1931506553,1864397925,1752440942,808984677,1881159224,1701015410,1919906675,218762542,1768843530,221917556,1970276618,1931503731,151653744,544239472,168654945,1886216969,746086688,168652915,544893449,1953066601,218762546,1869416714,2019762294,842084396,168650801,1818784521,745038624,168651875,544893449,151610944,1718172425,942684192,151653686,543387241,1667329371,1701734760,1074400605,1778989632,1763733613,863267182,1765476617,808984678,221657137,990514442,1226842144,1818588270,909652512,1431323424,1701339936,221145955,538983178,1953055264,842080371,540356909,1948280431,1713399144,1936154988,1734701600,1702130537,1918967922,1818304613,1937334647,1701602080,1864397409,1752440942,990514533,1226842144,1818588270,909652512,1869770784,1936942435,1763734127,1701978222,1630366817,1701995620,1830843251,778396783,168626701,1953066601]},{"sector":7,"length":512,"data":[168639026,942812681,218762550,1869416714,1834688630,1768448865,744318318,151653682,1752397168,845557792,157823536,1920219913,1869881465,1952805664,1634493984,1768038503,824210292,892415282,1879640589,157708399,1916471561,1634496613,1663067491,1701999221,1713402990,1936154988,1818326560,168650101,1937076233,151610984,1701264137,1701716084,1818632311,225666913,1869613322,2019631216,990447881,1919906931,1701716069,1818632311,544434017,1092644457,151653720,1953719668,745038112,1748002352,1765476617,1768038502,824210292,892415282,1701602080,539783777,542462019,808984637,221657138,2053769482,1768843552,151597940,543582523,942813240,218762550,538983178,1953384736,857762917,1126184504,1663063376,1801676136,990514478,1411391520,1092642152,1768038467,1646275700,589329513,539768881,1629516649,2003136032,1953063456,1953392928,1969516402,543450467,1948282473,1159751016,1195461702,990514515,1914708000,1936287589,544367988,1948282479,1226859880,1818588270,540424244,1126193220,1948276048,1701257327,1634887022,1629513076,1852270956,1953391981,1969317408,779318380,540740109,1750343712,1646293865,1663071337,1869508193,1700929652,1952805664,544108320,543516788,1702129225,909652844,1431323424,218762542,538983178,544491808,1847620457,1931507567,543516257,1965059956,857761139,1768041778,1886330996,1701080931,1701867311,1684955506,168636019,772344333,221657139]},{"sector":8,"length":512,"data":[151653642,543387241,1667329371,1701734760,151653725,544632685,1932294242,990447984,1702257011,1920295712,1953391986,1635021600,1881172835,1953393007,1948283493,1818304623,225339241,1851853066,1886593124,1953459756,151597856,1768710459,1931505255,1801675124,544175136,1768912481,1128341604,1969317408,168653932,1937076233,157574760,1882917129,543716213,1734963823,1818324585,1279673632,223561537,1869613322,1634017392,151593080,1952802619,1769107232,1634625895,1178935404,1397178700,1829308941,1696626287,1697413219,151615585,1986097979,1919885413,1852401513,1159752801,1195461702,1852383315,223888160,1870137610,1634017394,808725624,1747988528,1715144969,544237932,1380931624,1128341545,1953063456,544106784,1095517765,168645447,1937076233,1634017384,990447992,544503152,544695662,1095517765,1981829959,1702194273,544108320,1667331187,151653739,1718644592,151587172,1885696571,1701011820,1279673632,542328641,1970037110,151653733,1752397168,151610470,1701264137,1701716084,1178935415,1397178700,1879640589,1696624751,153122913,1953708809,543519343,544695662,1095517765,1981829959,1702194273,544106784,223887685,1970276618,1696622707,168654947,1886351369,151610470,1701985033,1919906931,1128341605,1953063456,544106784,1095517765,1713394503,1953722985,1829308941,1931507311,2019699824,1916471561,1869902693,1864394098,1768384882,543973742,1667331187,1869619307,1702129257]},{"sector":9,"length":512,"data":[151653746,544238947,746086757,225993573,1701447946,1768843552,151597940,543582523,942878776,218762550,538983178,1953384736,942959717,1480859702,1431323424,1850286124,879519092,1394620216,1145970776,1629498448,1226859630,1818588270,540424244,1126193235,1663063376,1801676136,990514478,1126178848,1801676136,543649385,544370534,1818845793,544830569,1931505524,1664054373,1918985580,541346080,1734437990,1768040480,825368692,1852383273,1279673632,223561537,538983178,1768453920,1763731555,1667851374,1936028769,1701344288,1701998624,1668179315,1718558821,1881170208,1701015410,1919906675,1953068832,1752440936,1650532453,1953066089,990514553,1948262432,1937055855,1752440933,1346576485,541346133,1953721961,1952675186,778989417,168626701,1668180233,1634556704,1852401763,151608677,661940539,543236211,221657140,1869416714,1634017398,1667574904,990447992,544499047,1734963823,1818324585,1279673632,223561537,1870137610,1634017394,808594552,808464432,990453864,1885957222,1331177504,1226844498,1768038468,1852383348,1279673632,223561537,1970276618,1696622707,151615585,1986097979,1701716069,1178935415,1397178700,1818326560,1864394101,1953701998,225141601,1869613322,157574768,1916471561,1634496613,1663067491,1701999221,1159754862,1195461702,1635131475,224753004,1970276618,1684433011,990447881,544499047,544695662,1095517765,168645447,1886351369,2019648800,990447904]}]],[[{"sector":1,"length":512,"data":[1919906931,1701716069,1178935415,1397178700,544106784,223887685,1970276618,1696622707,168654947,1886351369,151610470,1701985033,1919906931,1145643109,1953063456,544106784,1095517765,1713394503,1953722985,1661536781,1696624749,1697413217,151615587,1701339963,1763732323,1953046630,1663071015,1735287144,168649829,543517193,1953066601,990447923,941647465,909653040,1633888288,544483182,1734831988,1226859884,1768038468,168634740,758843917,1159736621,1969448312,1126196596,1145656656,1936615712,1668641396,1852795252,218762542,892209418,168638008,2013858317,1696625263,1697413217,151615585,1952805691,544240928,1970302569,1868963956,1346576498,541346133,1953721961,1952675186,225341289,1885538570,224684405,1835206922,1634017392,221326456,1818888458,1768843552,151597940,543582523,1936269361,1953459744,1981833504,1684630625,1886284064,1981838453,1702194273,1919903264,1431323424,168641609,1919907849,2019648800,2019648812,1866139913,1919248500,1702062455,1970413612,1346576494,541346133,1752459639,2019648800,824196384,1762200077,1629512558,151653752,1769304163,1762266468,1296900198,1347769176,151653712,1696625762,841775204,151653683,1668572531,1634229024,1835884403,168648056,1768189541,151653734,544632685,1630301281,151653736,543452769,808217697,151611494,1953063483,758653043,1629499697,1948280178,1830839656,1818584175,1836412448,225600866,1835206922,1818304624]},{"sector":2,"length":512,"data":[168637996,1700948489,155598880,1765476617,1027350630,168637984,1987013897,745300256,990447926,1042310761,539768352,544499059,1948284009,221651055,977289226,1829308941,1528854127,1751343469,1566928489,158097708,1986097979,1953046629,168626701,808988169,168638008,540740109,1699618848,1679848568,1919251557,1701734765,1701344288,1887007776,1718558821,1431324192,544106784,2037588065,1835365491,1684955424,1952805664,1701344288,1667329312,926441320,540740109,1635131424,1650551154,1998611820,543716457,543516788,1919971425,1769107567,543519841,1970037110,538979941,543976513,1768383858,1919251571,1918967923,1937055845,1646290021,990514553,1948262432,544434536,1701080931,1869488187,1629513070,1881171314,1702061426,1684371058,218762542,538983178,1886339872,1701015410,1919906675,1701339936,221145955,538983178,1701336096,1735156000,1953067631,1763732840,1869881459,1952801824,1768780389,1998611822,1752458600,1948283493,1713399144,1952542572,761753193,1852403568,990514548,1931485216,1970561396,1851859059,1868767332,1869771886,1870078060,544433266,544104803,1998611810,1953786226,1948282469,538979951,1847617097,539784303,168652654,538976315,1919971171,1936024431,544370547,1936291941,539915124,543574304,543516788,1952543859,1629516661,1663067246,1920233071,1998613615,1935962735,1851876128,224748064,538983178,1769109280,1852142708,745501728,1701344288,1919902496]},{"sector":3,"length":512,"data":[1952671090,1886348064,1701015410,1919906675,544434464,1852139636,1952801824,1768780389,224683374,538983178,1885692960,1768189541,1864394606,1752440942,1919950949,1936024431,544370547,539903049,1701336096,1953384736,942894181,1346576438,1633886293,990514542,1998594080,543912559,1752459639,1953064224,544367976,1226862177,1818588270,926429728,1346653728,544370464,1226862177,1818588270,540489779,777012302,540740109,1750343712,1852383333,1768843622,1864399220,1752440934,1868767333,1668248176,1869837157,1970086002,1646294131,1751326821,1701536613,990514532,1948262432,1701060719,1836213620,543518313,543516788,1920102243,544498533,1919971171,1936024431,544370547,221135945,1762266378,863267182,151653690,544632685,1529637985,1751343469,1566928489,1829308941,1528854127,1751343469,1563899999,158097708,544825915,1634100580,745827445,1952805664,1667329312,926441320,544175136,1751343469,224751209,1835206922,1818304624,151598380,1344299323,1769238117,1864396149,1650532466,543520367,1635216481,1998615417,543976553,1702257000,1176527136,168645968,1700882953,1768843552,168637812,1711868429,1768843630,151587188,1936028219,1176532069,1953701968,1937077345,1919907616,151653732,544632685,892106849,1751201121,1765476617,544500078,1752459639,1852796448,1919253037,1635131503,224753004,1970276618,1629513843,151653752,544632685,1932292194,151653744,1953721958,1528854387]},{"sector":4,"length":512,"data":[157118562,1634941705,1176528246,1953701968,1937077345,1919907616,151653732,544239472,151615585,1751333641,543908709,1931497542,1970561396,1870078067,168649842,1886216969,745300256,151653680,543518314,151602752,1718172425,544173600,542462022,1936028272,225734245,151653642,1752397168,225992992,1852180746,2003006579,1885494048,990447965,1702257011,542131744,1953394531,543977330,1685221239,1879640589,1629515887,151587192,1701339963,1176529763,1868767312,1869771886,1870078060,168649842,1684955401,746086688,1714630705,990447976,543516019,1931503209,1667591269,543450484,1953653104,1869357171,1327524719,151653707,544238947,858552417,168650854,543517193,1953066601,1074400564,168639040,1987013897,1634556704,945776739,757882167,1849362737,1346773103,1919950933,1852142437,151653748,544238954,1953066601,1762266421,880044398,218762554,757938954,1716068397,660961056,1965057394,1735289203,857760032,539768376,1667590243,1868963947,942809202,1937121335,942874670,2036473911,1701339936,1852402531,1752637543,1701344357,990514546,539831597,1718511915,1953066601,540876921,1718511917,1953066601,168636025,772344333,154548274,1916471561,1987013989,1464213605,1934903617,1717920288,543519343,1763725382,1920234350,1769235317,225668719,151653642,544238947,1667329371,1701734760,221457501,1852442890,1852383333,154498153,1718172425,1953459744,857760032,168638008]},{"sector":5,"length":512,"data":[1684825609,151587121,1937075515,1937055860,1701060709,1819631974,1868767348,1869771886,1919295596,1176530287,1229867342,151653716,2053401702,990447881,1836216166,1718511904,1953066601,151653753,1986618470,1414733936,740897064,151606355,790638907,1025519648,1718511904,1953066601,151653753,543452262,151606355,1868970761,1847618930,1952540517,543520361,1768320617,2037672302,1711868429,225667171,1667631370,1886416239,990447881,543516019,1948280425,544826728,543519329,543516788,1701667187,1684955424,1835364896,543520367,1835362420,1879640589,543716213,168654945,1936614921,544699252,1567646299,1815808265,543911791,1931506785,1970561396,1919295603,1176530287,1347243843,151653712,544239472,168654945,1751216905,151653734,544894570,1953066601,990447925,1948280425,544826728,543519329,1717987684,1852142181,1948265588,544105832,1931965545,857760032,168638264,1667589129,1634556704,945776739,151608631,1752461115,1769435749,539780467,1931965545,840982816,168638264,1953066601,168639029,772344333,909652024,168626701,1293969001,1397048399,1296258117,151653700,544632685,1529637985,1751343469,1566928489,1829308941,1528854127,1751343469,1600482921,1701080941,1818307677,1829308941,1629517423,1834691692,1600676705,224212792,1869416714,1834688630,1600676705,1834956600,1566925935,225206572,1684956426,168650345,758843917,1914711341,1987013989,1769152613,1629513082]},{"sector":6,"length":512,"data":[1629512814,544367716,1717924464,1936029801,543582496,542462019,1008759657,858798112,168638008,1661536781,1528852589,1751343469,1566928489,168637228,1651403273,1886350880,1751348321,1829308941,1931507311,1718561897,1952805734,1952542752,1936025699,1829308941,1663071855,1851993208,1952542836,168650851,221921344,1869351178,225932132,1668811018,1629513576,2019699832,1829308941,1646294639,543519865,544371824,1568170587,1747990828,1812531725,544239471,168641088,1987013897,1634753312,1600676724,1937141613,858545520,990472261,544499059,1852732706,1936024421,2037539187,1396973602,1734701856,1953391981,1701998624,225995110,1869416714,1885020278,1751348321,1701996895,808213876,157828675,1685021499,1868963941,1380524146,168645701,1829308941,1679849071,1718561897,1952805734,1734701600,1701667182,1431186291,1195725389,1162690894,758262355,151653684,544632685,1685221239,1920233504,1768184608,744304683,656416807,1701985033,1702260589,542328352,543452769,1629508423,1635131507,543451500,1852269938,1936026977,1829308941,1998616175,543453807,544371824,728327259,657218866,220667936,1886350858,1751348321,218762554,543582474,1447645764,1696617029,221257841,1869416714,1769152630,1096041516,168636715,1869310051,221934704,1869351178,224555876,1835206922,1818304624,656418604,1778977293,1751326821,1953525611,1661536781,1629515885,1096035436,151653698,1663067498,1886350184]},{"sector":7,"length":512,"data":[218762612,757938954,1917853741,1936024431,2004033651,1751348329,168653669,1661536781,1629515885,791096428,151653671,543518314,1953066601,990447926,1847617129,1931506799,1668573559,151653736,1935961964,151653730,544238947,657222753,168634175,543517193,1953066601,1886152040,1765476617,1060053094,1627982349,1629512814,1330916460,1162891349,151653714,544238947,657222753,168634182,1701734921,1684103712,225734767,1869416714,1751195766,1751527468,1731922185,1830843493,224748655,1852377354,808525940,151653736,544238947,858549345,1664813321,1919904879,2019914784,1869422708,1059087716,1778977293,1751326817,1953525611,1849362697,151653743,544632685,1768711771,824991088,1778977293,1663070317,1886350184,218762612,1684103690,980709487,1829308941,1528854127,1735617897,744317234,168651873,1987013897,746087456,1936090735,1763734629,845640557,1852390153,1768710518,2004033636,1751348329,1936026912,1701273971,1829308941,1629517423,959458408,990447976,1852404336,1953702004,1735289202,1762200077,840987758,168650801,1987013897,746086688,825254708,990447976,1953068401,1684955424,1952805408,544109173,1869771365,1953702002,1937077345,1762200077,840987758,168650801,758843917,1344285997,1953393010,1746952480,544238693,1936942445,224749409,1762266378,1752459630,980446309,1829308941,1679849071,1718561912,1952805734,1936550176,990458215,1835888483,761556577,1701734764]},{"sector":8,"length":512,"data":[1818585120,1701650544,1734439795,151653733,544632685,808216673,151611449,1769107515,1931506798,1852404340,151653735,544501353,224932146,1869416714,2019631222,811807788,151611440,1769304379,151653748,544501353,224932146,990514442,539831597,1684366662,1701344288,1835364896,1768843617,1663068014,1634561391,1814062190,543518313,1948282740,656434536,1663051630,1634561391,221144174,1762266378,913598830,151653690,543384932,168651123,1685023753,168649331,1818321673,1852711020,990447904,1668248176,544437093,543516788,1953719666,543584032,543516788,1701734764,1852115469,224815460,990514442,539831597,544499027,1763733621,1919251566,1953527154,1667593760,1936879476,218762542,1869416714,2019762294,1297436204,1398033993,1829308941,1931507311,1718561897,1952805734,1953392928,224551284,1869416714,1768169590,1717989164,544499059,1937010281,224753249,977289226,1812531725,1651729519,1829308941,1629517423,892546152,151653736,544501353,224932146,1869416714,1683693686,1563437929,225993260,1869416714,1683693686,1563569001,225666348,1684080906,1768169572,168637484,1751349257,2019631207,158884908,1634941705,1763730806,589329518,544106784,168651876,1685023753,151615347,1701264137,1684086900,1936028260,151653747,1734894456,746086688,151615588,1936028219,1701998452,1953392928,1763713824,1818304622,1702043692,1852383348,1718558836,1952805734,544106784,168654948]},{"sector":9,"length":512,"data":[1987013897,745038112,157824306,1702050569,1852383348,1920099700,544501877,1952671094,168653423,1953392905,1748054560,1812531725,544239471,168641088,1829308941,1629517423,842345576,990447976,544499047,1987279219,225669729,1852377354,825368692,151653736,544632685,1697413217,1650145907,1563569528,1953708809,544502369,1293969007,225657411,1702103306,1629516915,2019634296,1832585481,1769237621,1802723700,543649385,1143821133,874533711,168640288,2054056457,155598880,1849362697,151653743,544632685,1952542811,1784637539,744321133,1749173552,1829308941,1528854127,1885696885,1701536609,808213876,1829308941,1629517423,1935879288,1678313997,1629512549,1074400632,1829321280,1528854127,1111706999,2019634269,168626701,1987013897,745038112,224932915,1852377354,825368692,151653736,544632685,1685221239,1920233504,1232100128,1397703790,744304683,168654946,1987013897,1919907616,1953505380,1885020274,1329884745,1563568979,225666348,990514442,539831597,544499047,1919181921,544437093,1142974063,1931498319,1886413175,1701601889,1413563424,1918967873,168649061,757935419,544175136,1965057378,543450483,1730178932,1932489829,1344304229,1629507667,1948279918,544437608,1768912481,1329864804,1633886291,225668204,757938954,1769414701,1847618668,1998615663,543912559,544370534,542330692,221454396,1762266378,1398087782,1094996805,1879640589,543716213,168653668,1987013897]}],[{"sector":1,"length":512,"data":[746086688,909141045,151653736,224621683,1852377354,825368692,151653736,544632685,1529641059,824928627,224225328,1869416714,2019827830,225666092,1869613322,1935941744,1778977293,1178607715,1829308941,1629517423,825568360,151653736,544501353,224932146,1835206922,2019696752,225993516,1852442890,1178607717,1829308941,1998616175,543453807,544371824,1146318939,1563437889,225014572,1869416714,1870078070,1881171058,1528853108,1094996848,744305195,168654948,221921344,1684956426,168650345,1718159885,1297104672,758843917,1461726509,1868852841,958428023,1851859064,1866735716,1970095475,1701994784,1869439264,1948280686,1702063976,1936680992,1998615412,1751345512,1851877408,543517796,1701670771,758843917,1444949293,1226847800,544437358,1702129257,1818324594,1998616940,1869116521,1713402997,1953722985,1818321696,1735289196,1701344288,1953392928,1970434661,1663071344,1852399976,990514478,539831597,1936287828,1969316640,544433523,1769103734,544437615,1953656691,1718558835,1869771808,1701601909,1851859059,1852383332,1886220131,1651078241,1953066089,779314537,168626701,1461741161,1480150601,1347442003,1661536781,1528852589,1987276644,744321637,151653683,1075864170,151653702,544632685,824997985,1747988534,1916471561,1768844917,1763731310,543236206,963537271,1868832888,1868701811,168640376,1953392905,1749430816,1627982349,1629512814,1818307692,1778977293,1847622254]},{"sector":2,"length":512,"data":[1751528047,225144687,977289226,1852115469,224815460,543582474,1163087684,168645965,1987013897,746086688,808470064,168650800,1987013897,745760032,168654945,1987013897,745104416,1179010608,168650805,1987013897,745108256,1936090735,1679848549,1165193028,1631876461,168650100,1987013897,746087200,151653684,1701864818,1886216992,151615347,1853190715,1735289198,544106784,1165193028,222262637,2053769482,846163488,1869572198,1695157611,1718183022,1778977293,1679847533,1751739760,1668576111,1801676136,168649829,1714581358,1802465128,151653690,543387241,1867407963,1802465096,224216626,1836082186,1936681065,1701340020,1684368227,1762266426,1229201510,1330139219,168643407,1937076233,1935941736,1879640589,1696624751,151653747,544632685,1865181540,1702061670,1885610100,1869113709,221342575,1869416714,2019631222,225665836,1633880330,1746955372,1870100581,168649842,1668180233,225010720,1869416714,2019631222,1717989164,544499059,1885632877,1852139885,226062964,1633880330,1746955372,1870100581,168649842,1768189541,1695157606,1718183022,168626701,757935419,1952802592,2019650848,2003792416,1836412192,544367970,544370534,1886152040,2019914784,1634738292,1852404597,990514535,539831597,790652521,1635196998,1886593139,1718182757,744777065,1768711712,1869881456,1734438944,540090469,543452769,1634036835,1752440946,1668489317,1852138866,168626701,1919907849,746086688]},{"sector":3,"length":512,"data":[168654945,1987013897,745760032,168654945,544370441,1697410145,878393971,1567110200,1731922208,1830843493,1914730593,1847621487,1700949365,151653746,544894570,168642112,1987013897,745300256,151598130,1936941371,543518069,673199154,541148237,1126199919,220807495,977289226,1987013897,1634556704,2003792504,2019634269,1661536781,1528852589,1885957222,221260893,1701447946,224804896,1869416714,1751392374,158097708,1869363977,1142973537,1769414728,1814063220,544502625,225931122,1869416714,1818501238,980641068,1630811227,990469480,1684107116,541869088,1752459639,1819239200,1936616821,1678313997,1679844197,151653740,544632685,808220769,1748054069,1933248777,1679848549,1819308905,1881176417,224749409,1852377354,808525940,151653736,544370552,1663858787,990447992,544698226,1663052848,1836412015,221257838,1869416714,1751261302,151597100,1734438971,221257829,1869416714,1751195766,1748512812,1916471561,543449445,1920234593,544497952,1936880995,168653423,1953392905,1747988768,1829308941,1646294639,1751198824,1631258889,225604724,1869416714,2019631222,808857644,151611440,1701602107,1998615137,1868852841,151653751,544501353,224931889,1870137610,2019827826,158884908,1869757193,741351543,1819239200,544107893,151653680,544632685,824993890,1882917129,543516513,151653681,544632685,808216673,151611442,1952805691,1920295712,544370547,1769172848,1852795252]},{"sector":4,"length":512,"data":[1762200077,824210542,168650800,221921344,1970276618,1679845491,151653747,544239472,168653669,1718159885,1230128160,542262614,807432549,168626701,757935419,1986089760,1851859045,1869422692,2036754788,1919251488,1634625901,1852795252,1684300064,1936942450,1684955424,1701344288,1918988320,544501349,542135120,1818585446,168636004,1829308941,1931507311,1347693673,168646217,1987013897,745104416,1936090735,1881175141,842166387,1829308941,2004055663,1829308941,2004055663,1829308941,1998616175,543453807,544371824,761885531,1865178420,1702061670,1852383348,842166900,1829308941,1528854127,841836915,1935879261,168626701,1987013897,745108256,1163018576,168645710,1987013897,168654707,1987013897,1769167648,744305197,168653667,1987013897,1936743200,1700947056,1935879261,1765476640,1667851374,543519841,1919248500,1936269413,544173600,1969382756,1701144423,1634692128,543450468,225731961,1684956426,168650345,1987013897,745104416,1936090735,1914729573,858943093,990458930,1969382756,1701144423,1763734311,840987758,875704115,1661536781,543976545,1751478896,154233697,1852390153,1981838441,1702194273,218762611,757938954,1752375341,1802398066,1111835680,1629505365,1931502702,1763734629,1931506548,1801675124,168626701,1987013897,746086688,1936090735,1914729573,1600938341,543452773,1414733867,1397441345,723540553,221589792,1851853066,1818304612,1953459756,154480928]},{"sector":5,"length":512,"pattern":0,"data":[1701722889,1953702007,543908705,1852403568,225600884,1869416714,2019696758,225993004,1701054730,2019631203,1678313997,1629512549,151653752,544632685,1886352475,1567650655,544760108,1634941705,1847616886,1394636645,1768759376,544437614,544175988,1919903272,1701344288,1919907616,1702305892,543976487,1752397168,1762266409,1380196454,1380275785,1913195021,168653925,1702063205,1762200077,1629512558,151653752,543387241,168654945,1987013897,745300768,151653684,544368755,1663858786,151653740,544238954,1953066601,1953394531,1852115469,224815460,1768843530,1685021556,1852121189,168652900,1230965261,1415071060,1684956448,218762611,1145659146,541152321,1835492723,225734245,1953391370,1668571504,540876904,757081128,1952542752,1936025699,539959337,1594494258,1413563465,1852121153,168653668,1695091213,1931502702,1953653108,2573]},{"sector":6,"length":512,"data":[-61954583,-661731188,646697102,113724808,17452426,652740382,-402426608,-407230136,112939,1008438248,-1962445555,1313725462,993796587,1060951156,537673844,373055788,-1818748809,-786519576,-90731549,-603535574,-1088649651,-755020038,-829706005,1316809089,1304169987,1095695039,-1426906960,-1322358850,-391843065,654256326,-390181494,-568423637,1325055821,1952332972,1963539663,1326102536,-349663256,222079727,1397746293,1529388520,-2132904629,5093950,116839285,1954565563,779008716,-402651207,11806861,-1108666675,1108528360,-1408834621,-486541848,113755130,32132490,309595452,1312693899,-400735768,378084868,512314818,646663622,-88126072,1304863054,-1339551768,113683002,-1124053424,-1029625338,-1328152755,-1628919264,1947024410,1950039134,1359398869,-1090518962,1012289274,1007055457,604141434,1017948895,1007711245,1007449147,1007186976,1006924858,-2132773623,-394199219,1447960013,-1959680066,46564318,581750411,-2013562432,-836021810,-212927809,242507430,993853057,1583276402,-369169431,-2067857768,-2143878330,393409852,1962224812,1950914631,393496605,1007383624,139490051,-380743674,243269874,1178619472,-385816087,-1565785901,-930460078,1313869440,-1403494896,-1200276932,1008557032,1006924813,-1079151301,-1047900422,8972714,1359382188,1962949710,-1403494758,611585340,544488252,-2080424727,5132606,744392053,-400919293,222043428,512427892,-471249466,-17896962,-1085386336]},{"sector":7,"length":512,"data":[-341160198,1325055819,-1948003949,-398111825,222043392,574372468,658250100,1290278260,1312435720,-1826717697,-8268289,360140794,-1978209389,222080224,-1002828940,-2119562636,1984953087,-14358032,480635052,-965407428,-1957758274,-1957837282,-1957838314,-389141553,378142307,-2115416638,-1834285826,46371499,-1442724949,1396083139,1017929294,1006924813,-1106545349,99304702,1314076297,-88101794,1947024462,1966816260,49473795,440663,-1410088909,76238431,-2132811995,1962934909,801068851,833861,1969205234,1976109863,38046217,1379720996,-377469067,-1998981620,870842957,623151644,1346232287,-389647020,-1041556442,1314012800,1462138112,-1186602049,-1343094778,1444574559,471263405,276118076,470739032,726010555,-1576564007,-1779741102,-1010870434,1816901,1594350824,226520946,73238532,1931017088,61969163,-33232686,1256915732,-1341377152,519798786,208938615,1914502016,1343127609,854270030,1965571200,749513771,1996962864,88442888,1948859564,-32970469,1009790124,-1997113593,78644549,1965030272,67993609,48956848,1161429168,-2046331902,3932741,-521545867,-957830143,-399085050,1300760279,140347655,-401975927,-109044879,1008893698,-400657094,-1125639324,139299590,-1996141175,1435043933,537755658,-385766935,1239941285,1968913435,17662198,1008418792,1324315741,1171504983,-402650951,1918830357,284917827,-1015020173,-2145522936,1962935677,454748183,1965702222,1569211919]},{"sector":8,"length":512,"data":[453961733,-402233624,1374357194,294272,1569195381,-2146833660,1962935677,90015752,-350556184,-45815496,104982700,1008395496,134968362,1560348493,173347080,-1813504021,449767430,-742434994,-389467323,1918830249,92111060,-1999735552,-1243085475,1949121562,1965767880,-9901821,-2080413463,1962935421,125665325,-2145094656,108331069,-384823936,243269866,-1333768624,122025474,1074230276,1343127616,1166541902,-370873597,226557134,71666178,-1476049654,-165317360,1963198277,1343127583,1166770254,2009348612,1472497154,-1186664769,-1343094776,-1143966369,1793786374,1313869440,71666308,1963345162,71666440,1166656646,67484420,359808,1300893813,284786692,-511662724,83460103,243285109,-1979167152,61933165,1166730706,1947483141,1962949770,1007988738,612400144,-756545017,1166688741,1962949636,97353733,272382187,119822716,87877642,-885389708,11731572,138775121,-120453199,157649497,326485050,1963607355,167819022,175376477,-914307074,-2147226816,2106097865,72190211,430106702,1007470467,1008169997,1007907899,-2129890004,1934565119,428533766,-369293591,96926686,-1070377217,-1186048065,-1410138105,1314076299,1928146092,1946631189,-1576241401,-253014433,1315114624,-370545919,-1387332687,-768359290,-150975301,1314235379,1996545853,1926773780,1611563024,-527826610,1314497196,1315114624,1396082946,-1963816114,-1924881764,-1087324233,1017925370,-2144046080,-1770717379,141705276]},{"sector":9,"length":512,"data":[646451412,48975460,-1818751484,1163169675,-2020938799,92554496,-771813772,1459584129,-2083556262,-890565433,-2130745367,-126484675,-1471257696,-1475054576,-1475316476,-1947634680,-2142350538,57999164,-1594154775,3952209,-264494732,116787573,1946242659,-1592464405,-31175083,1996554045,817414111,-234879047,-153782866,273567750,1436619380,16727374,-1346386313,637232,-1133138190,1314594443,208984843,-162635104,-2065641256,-1468725433,1304565387,1304829579,1313867510,-1341819902,-99817317,1011765664,-402426880,1352727042,1954588750,604251151,1007252548,-1341819836,-101914521,1313875594,-1471257696,-167414464,91488708,-672635216,1314038009,208928828,1023004136,-2147126684,542003214,-1957800543,1089438200,1024946946,611451392,1314918016,137896961,-1756473082,-670300380,61939179,119861203,101245138,-405713319,831227275,125101188,-401625008,173603206,-397516538,1503787390,1661400654,292815438,-110041008,1342633560,91490382,1676199050,1463716857,1962871630,55413259,1972175029,-111810552,1314602635,192216843,-1739693408,141921681,-1946598680,189685054,-1928760065,-1733557131,-114169711,1304565385,1314864768,-166497533,625889286,116787061,1950371427,1594279429,904463182,40429817,1166684395,-1324932092,148951555,-347186938,71666209,1638008612,-1994921138,-347186370,33945105,1049184117,116084311,117720566,243284853,-1609544093,86789732,1081356924,51707140,1315114624]}]],[[{"sector":1,"length":512,"data":[39684632,158653194,1315114624,1975728644,1644575252,-2045938610,1011769862,-2147060480,72246030,31910339,1006781834,1914991617,1628340234,65732942,1006781834,1009284096,-2146994942,542008078,71043563,243324789,-1975497117,-2075237858,973370587,-1564052029,243289698,-1023127965,-1979599384,-347783289,-2096975733,1946159741,1661894663,78659662,33834438,1314602633,-1991351646,-1018274498,2112358832,178433,-1471262560,-1474661311,201487361,213787652,1313907328,69468340,91538442,24396860,-1038185663,-1948712115,-2092055538,1166737617,173378312,-786709717,-1325054584,989385223,995915204,-967281214,-352254907,-1038185562,244045,-1979034229,1048642117,16797269,1010893170,1007186944,1007449092,187725066,-1339263534,-1341461758,1661894660,-1048362930,-1948712189,-2092055538,1166541009,138775300,-786709717,-1996143223,1049167701,-373076387,-380108588,514915508,-351969910,-350244809,88443436,-411630532,113640821,1006980703,-1327729663,-1340675296,-1978471647,54265157,104648050,113640819,-1341895073,90016290,-472775759,1314463240,1315114624,71645698,-2115430028,71666176,104601644,61994099,101245138,243289689,-1023127965,1315120768,138775535,-120453199,1166738923,973123592,995325380,1316293189,1307050416,140872192,-1996208759,-1018274498,1315112694,-167283696,72246022,645935220,-2131014045,91497020,1315114624,1644611088,-380108722,2105670652,-352255737,125665551]},{"sector":2,"length":512,"data":[149619457,1158252426,71646104,-380059276,2105604992,-1217134590,1946305848,-286566222,1963197942,33945110,1166738804,-1340413180,1342633478,292815950,-1978733752,524026949,1166672757,201794565,1493567936,1661894734,1049166414,1019432535,1343321133,171716652,1342730840,1093459748,-178780612,1949121731,4188175,184549817,171210194,-1020103169,3139756,-905196661,1946157497,-137169119,-763103781,-2134444544,-92055948,-166693377,192184519,1979711360,-2134641144,1103299444,868434241,-388877349,879891473,-391325686,-361622519,1978713846,309543,-757996591,-387187998,1963063680,33259543,-2143152780,259261179,83591234,-2143155852,57936123,-1997182999,-1950153131,-539024124,578110780,-1966831024,-461372828,-742434849,146362693,-1951403520,1482643929,-146405259,415465683,-645197333,259370994,-2142512853,57807099,1174979456,-104597434,296937667,369499713,269674527,-1494016249,-11236705,-9074138,521537054,118491880,1249156639,118883921,-88088693,-388461490,984620444,-12284502,-1206021144,-1968496608,496101570,-1423957832,-1998010742,539015197,-397387605,984620408,-12087894,505245672,-397205738,526327198,48453895,521574379,-1396504810,-1206700056,-1263840432,-1868453062,491448397,-1961001496,-1085429194,-400666886,-963968933,-1340262424,10529312,887640064,-1440698339,-1962933855,488827096,-1582686032,-796196861,-1340270616,-618419680,1448221556,-1191180098,-566558718]},{"sector":3,"length":512,"data":[-397736076,146341921,581610496,1593499840,52385882,1175614194,74730812,158685756,-350414360,-1898017890,222086107,2142836341,-870413568,-938046643,66227021,-1168149551,1525415935,-2130811766,-58662940,203388228,1970093088,-11278077,141845052,74741564,175465532,-397548638,222040744,537706612,326462524,-401433624,-896855489,1709704931,-1377089262,-1175202839,512426112,451431992,307423249,1305222793,-779357557,113705195,221138396,-397554527,984620124,1355189162,-1206103064,1487609888,-399483507,-829747603,1913635203,1925856004,734694146,-2048376370,1306763278,1305222798,1584691004,1836344380,-397366191,548412455,540825770,2117862514,783286902,1124567078,-1185355806,-936706032,548931444,-492131552,-1994451207,-397555658,1048579663,1969376739,-414857722,1392216877,1511791080,1945254734,-88127989,-870413490,-9770675,-938047166,-784219315,-16874519,-391305097,548412352,-336403798,63013820,-372119087,2013068931,-1387221743,1478207464,-1340365848,-320689632,-164388885,-370566165,230156530,1312300683,-401562136,222040435,-397268364,-812969880,726596282,-1047830582,1925645128,230615257,-1014041973,521577715,-1799420138,228517965,-1022511384,1441317771,-1438994405,-1960180035,-1193934910,-391438304,-397210220,-396687908,1088949655,-1439780837,1810387539,-1101309413,-919384310,1304051328,1446212608,-1957791041,994950710,1917698102,244770823,393350576,1304051328,-2146667251]},{"sector":4,"length":512,"data":[125110844,-1173946810,-1394545843,-1991394654,1582153270,1659375595,-1274645235,-350106360,-855591932,1948269590,1947024435,1946696751,1949121565,49906448,76063347,1913687272,-341032549,223078418,1325055818,-1931262229,854085193,-393876723,-2132079303,76029411,1381101867,274458796,1499120266,-401807384,-1799420643,214886477,1108141800,1011808959,-166169587,208930754,-1048325641,-215961596,-14161494,-1425404488,-369159703,-919397730,1312300683,722406120,1381056970,-401587480,-812970180,1325066625,-2084336033,611582457,-2083376296,-763166216,200406784,-1106611008,-212775174,1967675812,-473265162,1325055503,149660915,1325047897,-1426896470,-1077737706,-88207349,-476992178,-1382896375,1188560787,-1329334814,76015820,-1966922616,1959541764,75229187,1050776515,1306043214,227928211,860814015,-397497408,222040006,512430708,-337097256,-1817472498,117327787,-420786438,-401603649,-2014773332,-18166,1342447336,1493146856,427150396,1306148481,292892592,-385876039,-868482041,512296820,15289928,-636056808,170584141,803207809,-253230220,-259593961,1393494760,258336850,-401669400,1482231636,-376704885,-1039941237,331778896,-402426685,-396879520,548936028,-980702432,-1957641685,1958943686,1962085127,424077315,423815256,-1290177047,-26965504,-2132810624,460671484,-461315958,1476165855,1048579444,1912819125,1157398538,1128465781,-401660952,-236450105,33259534,209127540,420341996]},{"sector":5,"length":512,"data":[-387118101,99293440,-253170330,422373656,1354025868,1303527043,505508864,-1338587818,274499917,-1262280866,-1304525999,208928845,918902302,1552633264,-1021354480,-1581047347,104549776,1354976658,1979708648,-397257969,915085588,1049316926,1532644936,-1125596328,773747724,1306869376,-1978764798,-17419312,1929754818,-350106119,-1171927806,350826290,1306697736,108331068,-382723142,111675668,507187060,108351038,16841345,-1175911564,-1946973201,1023457530,-402620230,57933710,-1828141335,859964088,-841862199,-502860255,1903494733,-1895857944,1447923718,909846099,-140771326,91463134,37094182,309504,-422454477,-85797935,-652478677,-633665422,-264568203,1583024755,-399468102,787155108,378101339,816008744,1107343438,-768358093,263856589,-1311300864,66048772,-1187007241,-561054208,-964615731,-1053093920,1052045172,521544141,1052004547,-161799731,72212998,-343865484,-628948480,-397257984,57999089,-1089973016,481906200,-205507840,671518635,805736270,966222,-1521642305,-1197103707,-2135274751,1308670720,57876941,-402130199,-997523345,3016235,1912635453,8435715,-1001550173,642649654,1312072621,1313093257,1312556684,1309816516,1313355401,1312687756,1306592966,-133753344,-1812042520,-1085435741,-1414836680,-1191294488,1220158754,-1910387429,-1991405538,-1946154474,369101838,1304608543,1464748222,1050781093,-1184978098,-1510801402,1721525955,1313605263,1143376230,-303512754]},{"sector":6,"length":512,"data":[78729482,-754717997,-388774261,-1023157364,192266811,254068363,-478093429,1505966607,369499807,154069023,1939742471,66126597,-1527513607,1709833380,8437755,393481532,1946999272,1949252626,1918974990,2004499462,-1428216830,-1327109204,1049209344,1448562178,8519553,-8313740,477233285,-1141156467,45696416,-208973568,-1014760821,-217796347,1493469862,-303954828,-492699216,-88121779,-1404151986,1963801770,1556045562,2156544,-1085393758,401080428,1312137728,1599011518,-1431550121,-92992196,-953444520,-1012250552,1947024556,206891017,792524404,-1202839948,1743268097,1017925885,-402033651,74714174,-227201220,20731982,-1018691211,1947024556,204007645,11597428,1017925290,1007055457,604141434,548973279,-1414812896,-1070355541,-1414812757,-1979665469,-461308316,1341948127,-527819915,-2132810624,225728508,1303723648,-2146799101,91571452,-706198717,192538635,195946578,1946286976,-401311988,-1779954827,-296054261,190965955,-1844737048,-389812390,-2115499217,1716671243,-278504872,109971139,512446014,-654094776,117934630,512427715,-1014084034,1313349259,-2010719997,516097799,-1957438578,-2010674470,1527200263,-1023314657,-1910586375,-1965388837,-1178394873,-1125580801,1959542015,800111111,1313349257,-2132768061,-58662940,-401967790,434637606,-339135733,-603535607,-401288883,-1169094215,915079183,-914010552,-152562827,736280320,-234879559,1493792174,-1075228351,14936064,-1188322113]},{"sector":7,"length":512,"data":[-1359871969,1166680437,1954588702,-17812983,-370772534,1084752034,1059325812,33744512,-1209493306,1011673856,-385649409,-1360527222,888611840,1949870096,1014885122,-164334656,242549190,628360764,661798972,544374844,87825387,70521204,58001320,1006664680,1007710784,-402034048,1843921008,7006208,-1962907672,-347193826,112900,1325055825,-860825973,-1962997528,-1106480188,1692938183,346613780,1357607913,-1426062920,-1014256746,-391489365,1189610794,-2116930566,-1337075138,-401574609,200015605,1313672832,84994049,959420602,1968036374,149117198,312600657,-1023286695,-369163287,-1018758505,516157443,1312693902,-389865556,-255916867,724090445,-1409284935,-964437878,-1376286974,-2018652021,586907895,-1071444364,-1910633868,-1262253352,522308901,-1530995230,704333,381658533,1048618240,1946176996,83933189,12062925,-1407070900,-2146848792,55424318,1253972594,330426415,1303852672,544126977,1723335541,11578214,333768874,-1981240125,-1237417975,-193659059,1007854569,-385649395,-551284221,-1082894276,-512471492,-551178930,724877279,-234876743,-1075868753,947212026,259343676,-511701878,1241088223,-109041036,-1423608752,-1951784784,1206394463,1963801609,126571278,-401386520,1012598254,-402099187,635963643,-1021867767,1064650300,619228238,1963801609,319285254,1007013352,1323856909,-539023955,-1188330305,-1343094768,-8295051,192359316,-135379573,1275470288,-1962415282,101310021]},{"sector":8,"length":512,"data":[-337097140,-2133791992,55424318,1161578866,615269749,-1077639457,179907380,1974465024,-1075868874,96882426,-1330952379,1602988576,146597918,259329340,126576211,-401424664,1012598114,1393521677,-1962391832,-1779934261,-1994946296,1321402959,-1947598871,860764190,122153161,1359514344,126019666,-903128742,1325068161,1926179663,78637279,-706160761,-1094480380,-223588614,-1375505234,1464940149,-1493972341,-399936161,-2024667961,-389837833,984617572,-12284502,-1206756376,-1179973107,1435303947,-1897376779,-1957012718,76998910,-1109245607,-402351383,222038054,-387444876,33194759,233341559,-1206482936,794148429,-1471301472,805608449,-401914744,1975390727,57974063,-399544642,1072239099,-2132768238,-58662940,-943688627,122543110,109307928,321617,-1007033767,1357433139,1976384764,1223180563,1946369276,-1207503349,678691149,997523772,1313672832,-389467391,-397345745,1012400782,-402426468,1048641685,798510554,485032820,270133752,-402652487,-730726299,1312693899,1313355403,-402471293,-1966867189,503363544,-661733325,-472783919,-1976056326,-13336572,76022842,-1945668357,-387440677,-661863428,1211533087,1040615246,1276021582,512433742,512642628,-343716292,-1991883258,38242615,520376201,1313087113,1313678976,-393024516,-527762521,-1326907596,-401706245,-533005413,-997587084,-117726488,113506755,1312556686,1313087115,23560230,-943519746,-112337914,1963801624,-837383408,-2083878067]},{"sector":9,"length":512,"data":[443752385,-335544391,2144533,1312693899,-402286360,378078928,512314830,1363234258,118220882,-828286629,735087437,1004088257,-1007914045,1381061456,-1979168071,12010456,-1207959110,567100429,1482381658,1364414659,141211986,1048634859,1946176996,83933198,11800781,28841677,-1022309115,1946463976,1048587865,1912753637,-1093629417,-1023516671,-1191202328,-839290107,-1058497503,48995839,951723725,-1898738641,-2010739749,1942195789,1980513318,-1743998974,-2071269237,1975398181,-1074789586,1021857530,-386757872,1052643383,271706159,-384797208,-492771520,1946462285,805157381,3934187,465176181,12773680,-2142307651,124976894,-2113999232,-1995448125,-208991658,-919389004,-402620230,2037577534,808434256,-1593795608,-125612504,855798288,138840512,57982987,-1592787480,1183403568,266528774,-1173349912,1978150968,1451973376,-33507318,2122367531,141885448,1913013819,105286403,-1260482927,371313984,1975597855,-2116930795,688906438,-2137061810,1962936414,-847929648,1102712555,3598384,-2135277132,-154605568,567099060,49841091,1949329338,66618145,1949333690,100172569,1949338042,150504209,1949342138,810794761,-1173395480,162803789,-1929996823,-951173618,776882182,1008110614,646533198,-396865980,-1094516718,856051092,-1077440769,-1515913076,-1022909019,-1962736920,-397570018,-488049096,-465665793,91488333,-855310152,-1943631600,-1910101171,774277453,415037952,-1254195122,208798541]}],[{"sector":1,"length":512,"data":[646865254,781078080,317410882,1566465631,113541981,1499093595,-2091362215,117899972,646669847,113659460,1711295929,1313617663,1043791718,922707534,116805192,-1912451507,1951283230,-815334655,113716986,803163610,-603535570,-1944287667,-1898934584,779021272,1306134215,283848585,-637090002,-349202355,113716743,800083418,110046970,-1892790712,776879622,1313605263,1008110638,-1993447858,-1941027802,-1126920500,503729724,1048583958,1912819125,1076268056,1110346830,-1650694578,1313736335,1721499754,-346003811,1364217872,1397903953,116163411,1465275989,-1943631017,-386139059,512357713,786976144,-402186752,645985582,-956412339,21870854,1306803840,-1207602176,281871617,1306148481,175452127,567102900,-399510081,-1077735940,119426452,-561056205,1442876606,-1515870811,857671263,-1094283530,-1515913202,-2134661723,5092414,-1084814987,233328028,1354981120,1168816722,1526620136,1444856664,-561056205,-1526690626,1587914149,-967392481,21869574,-347237186,-1274624503,-1101660083,861359516,-1077440769,-1515913076,1583326629,516097806,-1405696682,3965005,-1329389730,518152,48767152,1393078272,-1185918383,-729087999,1477290216,-1017423526,-1423957832,-1163248976,-812953862,243911211,-1528279620,-1964467200,1064475917,1306265287,243997830,-836022848,1017908340,1008104461,-1441631222,-1377241886,-1327009024,-83918582,1308783182,-1103722161,1304076877,-1951789648,1316666063,1256770091,-1172903155]},{"sector":2,"length":512,"data":[1994935928,-1206225409,801982480,91537541,669518516,-401952524,2059337593,49473614,119429059,-91536830,382533812,-126615492,-193667012,460589116,393510716,-11278166,-462090948,-1946539185,-1996846137,1246428997,1002629983,1339127034,-335598360,-1170308917,41222221,2059387897,-1103721650,-1070187699,-402296243,259129364,1304051328,-2147060467,24447548,-373032890,1397815389,-141864367,-617398348,-1957758279,1959406551,-207820786,-1073018510,-1039989388,-1845302280,1304470521,1482381658,-536426813,1027342413,1374164597,1042189058,22603854,1305745033,1306009225,1306527486,-532774717,292814925,-1555180383,-660517304,1312727885,1306527430,988332800,941526014,-389467314,726859959,-397323574,512426479,401100344,-108308223,175307267,-1962814488,1589874426,1038730015,1042189283,16824910,1383337276,-402590232,222036419,1381189748,-150961989,-1324976934,-1947544823,25159930,1375841000,-1153318272,394800968,-402571544,1381171611,22931542,1943485258,-896843079,-2147385368,5104958,1516113269,1977289563,526080165,1539557643,-1890720069,38244103,1476677513,1510360975,1468647731,-389854968,1491664671,112897,175377724,-402581784,-896859840,1371750883,-352292376,1810387204,954750464,1998601217,-480682481,-905754326,-4652173,-1012117761,1815879692,-397275788,-896859933,2010200922,-402068722,1424490766,-2096860672,-373095228,-88087956,1947024462,1948728566,1948400652,12838920]},{"sector":3,"length":512,"data":[-347662968,-1394570733,125092922,-613151428,-1393235030,-126565318,1006687976,-1009355507,1442845416,1006693608,1577350202,1489218638,-571942261,8513536,2095600323,1523223296,-1010171063,-1085188272,280570676,623151616,2088820703,292765953,813019122,2106317619,1175816990,1482643960,-1254195005,477233997,410338620,-2046737270,-539023932,-234878535,-1962314321,1569398397,-706001406,-111648935,-5183293,-1012137358,1912615144,865245264,652782811,-152014336,1098248391,-788527943,-489434654,-338687238,-722971672,1541088255,-389862539,-165478413,1354965877,154939436,1347947638,1630281740,125240636,-998045180,1489238018,719897593,1947024384,-513087206,2091180,259337276,1501270,74779964,-1020481442,-1023228797,752821420,1981365313,1017925367,1023112224,-1007193079,242491452,175376700,108276796,41171772,-960283332,5141510,1316103817,1705230387,1315545934,1315768006,1812383235,113737806,20063,1007139816,-2146929253,1078880526,-1576554520,11816555,1856231563,31472974,-1618343310,12009602,31507329,993826698,-472842058,1033805707,-1014238581,-388821839,1314850362,1604453234,266829902,1930230400,1687486308,-389944506,1805780840,83932238,-389873184,60294840,243319747,-2146414988,21913614,1007071720,-1310166336,753455619,-1023174640,1314496707,60294948,-1014316093,-2066750592,1968072990,1763575833,618170958,1762013232,29619790,1049101428,-380088723,82444126]},{"sector":4,"length":512,"data":[1849590534,58026574,1443277800,833075085,837025409,-1645738635,-387746810,113706659,20086,-1278836386,3964976,113664628,-1409266059,930234428,1316292294,1935686688,1934638107,-151014391,21916422,243275380,-1978642838,-2142344922,149623012,-461315958,1894547696,-477898614,412614414,-1743262906,687571091,-2020930446,-2069150170,1325888996,-1744894741,1015039526,-1341819904,-1628722644,-162633056,1762009808,-385649330,163119331,1136311040,-1275064134,1975813184,1358110,-1169957189,280231974,259376260,-1157626183,179979310,-2078231552,136410308,1464756774,-594871413,-229740895,51279279,-2127197190,-399398970,-346094117,85584295,695468456,-2075234655,1475507684,-1090516551,-1359859537,-1176079009,1256718339,381638406,91940943,1779335263,2011758926,1946331391,134620210,-1588696570,-461091218,-31146123,817413975,-234879559,959889070,45168244,-1451905294,-164021314,72247814,1203644021,-1474172103,1469477896,-1085378911,783893574,1974465024,1778841224,-2123103922,-2143823170,139356686,571743,98297942,1156077406,266952453,1980664831,-1608654002,279465588,547886709,-813231500,548468619,-2080541266,-142146361,-1527525845,1325055831,-397552991,984614744,1305387434,-1341698072,512469536,364793445,-772330673,2128493550,1407068953,-396894581,1743258987,-1084532473,-819245318,-1426906960,1491655915,-1189040123,-819245290,-1426914702,1946613343,225708110,-2144370754,1965096829]},{"sector":5,"length":512,"data":[-253213183,1316265990,111674932,1048673909,9260654,1069053556,373194831,192236623,1326988929,58007635,-2147161981,5139518,57935740,1208281219,-387413176,1239942884,1316004100,-1108815733,-1438797818,-1739690592,-1953242927,507902367,-628416626,1329593729,-41868172,343363385,1200228724,90671620,-1979280408,1737097799,109766659,1737099146,109242369,126485995,520520424,-1610176792,27807348,145234292,1856049781,402162510,-1908602252,1023767552,57999611,-1006862103,1006879208,-385649984,468189594,1779335172,116785486,1946242665,62842883,609114528,1779335367,116793422,1948274281,10283267,1316228736,1879492356,1006633038,1538298630,-2089061206,-1618343965,-1007270469,-166103800,678692035,-1957674312,-162652146,21915910,251530613,132861549,-1957150024,-1991366642,-1420922866,1946403830,-1439977446,-1958128712,-162653170,108265923,244008112,234966552,-156545424,-1068607226,116797044,1971342937,62580762,1879441816,-1275052978,-1274774229,-1999047123,-1528281307,-1341265147,-1259820501,1879441667,93251662,-1012245072,158663996,-391488592,-1830223084,119820288,108332092,-1576829976,-1470607782,-1474923136,-401247168,3933036,-654965123,1194132934,-351969560,48687107,609114528,1963211783,1314562146,74785852,1475019952,87820068,116788341,1975537241,46327813,96931051,1195853147,-1341995288,1520478813,-790048690,619237608,1946434567,1527105345,-397981883,646578859]},{"sector":6,"length":512,"data":[-990491046,-1340836672,850438698,1954596086,-164319223,41173188,-1331021648,-943478179,1195727621,42068039,-1012245072,1006781928,-385649728,-857080188,37283841,-1746397461,-167399422,542009606,-1572863627,1827229273,35055870,243926820,235425397,-58700172,1947040768,553418761,96867188,134498117,-1813982824,1170442123,-303512661,1296939777,-1610542103,-856994197,-924122960,569057460,-1421064520,-1196798032,199971905,-1420868424,-1421716040,-1421521736,-352167960,-11225047,29419690,678674492,1316234880,-33887747,-1207831576,-1196736186,-2002050990,-347182042,1948680197,-1679229618,1941978113,-35788541,-402578711,-397409729,74711500,1342322408,-402509080,984613904,29026474,-396884876,-380107772,99091456,686528514,-402516248,544473508,31451216,1510272899,-1962801432,55430686,55469342,-804908077,64415821,64154002,1305347587,1315243523,1476642793,609114528,1946237959,-85792509,-1594146327,119819865,1414772883,-1440173909,170471608,-389829693,1136328964,1996766290,-972720885,89022214,510984508,-402617623,1153106156,-401347758,54264036,104656498,113640819,-1157345697,-1416408492,-1439691629,13297859,1634928188,91488828,1316234880,1912880382,1594279429,268698446,1316228736,-21960416,1006717928,732992256,-604633987,-1817563728,-58710037,-1675658240,1316226806,-402230256,-276627210,20834308,1342731421,-402573592,-380108012,367526672,51505409,1316228736]},{"sector":7,"length":512,"data":[703158288,1915128826,553760846,1694943056,-956301234,5138694,1812383232,113737806,20063,1316234880,14870779,-1186593345,-1359871990,251595636,-1262793115,7454209,1947107523,163252302,-774296832,217809891,-1618278286,213796355,381666048,3270735,-1440735048,-380064853,132708902,-771510016,-1022941976,1315571446,-2146732672,-2142344690,-1577022488,1503678041,1839252302,-523134898,-477656173,984656709,-1998011478,-2065149952,40036352,39774296,-523134781,-2020913005,1487619539,243319699,-166703510,273574150,1326890947,618695340,-467490177,548468345,520061354,-1007062449,1315710600,1316372105,-58699344,-2146274272,192872700,1119358068,1421388633,-1341461691,1471720004,1387834191,548973380,1421388624,548449106,1444856746,1305360011,1305616014,1698038574,526298190,1315243775,-1957290301,-1907503562,776851998,1315255811,-2095096147,38692102,-835286077,-769749427,-991384499,-109753599,914956054,-2084352562,5142078,234947700,-141865354,-812910333,1326901633,1330576727,-60840717,724876995,-1186006337,116785160,1946242487,-402214654,-1394081707,1325055745,1303840502,1444115713,-1325087101,4646916,988299614,20441088,78714347,1442859496,-402576152,-1084358269,112283386,-402642968,1220411767,1305395022,1050781093,113683278,-402436492,-1587087518,-1553576376,-154972722,21870342,-1331359115,1552656957,-402158818,548405528,-1007689046,-1515567696,-1951777360,-1956241828]},{"sector":8,"length":512,"data":[16377863,-492166992,1891550187,1316666182,-1187521178,-1331363837,-209212867,-209212058,14870608,-492166992,1359131117,-209214299,-1956205210,-2018679088,1712108019,1048635603,1912819125,12511237,-873987093,-389903616,548405428,-740140630,-655821945,1515740416,-388822351,-930476508,817483219,1325055805,1414772817,-1413379157,-1207850921,364453920,1957360384,168671235,-980721749,-841888303,460587812,1182580310,37488049,-2118251401,1946399046,-1439649787,-1527578447,-1961432226,1374160964,-1439780864,-1962932549,4646912,2097343363,1326825462,1493202408,1091225219,1966668160,652043928,-1094496646,146353012,109423872,1149980236,-1962707954,-1330962876,-303912416,-1398100797,-92995524,-1050259261,31985896,-1974446080,125124,-1320071080,-387395068,1482227714,-1878782172,658510887,726713258,-402229305,-88145909,-819242674,-1426906960,1031819203,1207596064,-1425404488,-88420469,-389403826,158724657,-1275067973,-420943808,1443816387,-1146293621,246677511,-152956723,415220574,1882446,-1410088909,-4503372,-2094936577,2104627707,567101620,117340018,1760054857,952062952,-1414812850,-397809493,1312693899,-1957117042,651363280,136841,1980760125,-1312804094,1222693636,1313121096,-1413467241,-1030990412,37128998,639749376,657095,-1943659704,-2147480562,5103934,117312117,-970568223,-1023344634,1301284492,-1907834740,-1557774144,-970588159,2054,401082142,30327782,205062490]},{"sector":9,"length":512,"data":[242289962,269815710,281481348,22675802,318640478,336925497,367465661,391845479,418322429,426514774,18571008,1896029032,16982555,1480742977,1480874051,1346523219,1229211987,1279676489,1397052228,1396921171,1397183302,1311264308,1311526448,1310740036,1310215708,1313623624,1312443960,1312706108,1312968256,67110912,8389120,1048640,65540,1347769934,1280330052,1095653966,1129205584,1313101391,1196312901,1128354394,1497580880,774268774,1701068342,-1381174286,-1515934806,-1347508314,1869507948,-505360948,-2103777054,-2139062143,-2139062144,128,0,0,0,16843009,-1010678718,768592842,1702064993,1701601901,1528840457,1919181921,1567847269,1836016397,1701994864,1914716937,1701277281,1684300064,1936942450,1836409869,1531185520,2086108226,1528847684,1735287154,1678597477,544238965,541213517,1767991395,1296304494,1953391885,1158247013,1684300064,1936942450,1768708896,224228467,1819044198,1914717705,1701277281,1936288800,1869024628,1528841993,1684300093,1936942450,1650139229,1801545074,1852403568,224228212,544761192,795108449,157447539,1635131464,828732780,1818326560,221406581,1970302569,1531513204,1564769367,1919905824,1869352308,1713398881,157641833,1633361996,1701995620,224228211,1684107116,1667592992,1936879476,1629506569,1701995620,1679848307,1702259058,1667592992,544370548,1853189987,1869417844,1292461430,1851879968,1629513063]}]],[[{"sector":1,"length":512,"data":[1701995620,1846375283,157642081,1532698702,1986622052,1532836453,1752457584,1818846813,1835101797,1633362021,1768712050,1566405747,1953853197,158627184,2086099791,1881169220,544502383,1970037110,1919946085,1701143407,542116196,1684094299,1936028260,1528847731,1853189987,1879924084,1701015410,1914725477,1920300133,1380977006,1769304333,223414644,1768383858,1919251571,1528844809,1768383858,1919251571,1635146528,1566930284,1346768221,1701978197,1953720679,1376350821,1869876558,1701603175,909652768,1734701600,1481771379,1634038541,157836146,1634869331,543516526,1953720684,1634890765,1409901923,1631410976,1701995620,542995315,1970234203,224228462,1667330676,1869422693,1409901924,811278413,224211324,1935765109,1651336563,1426679148,1634884384,1566926702,1701410317,1818632311,1443459177,1769109261,1713399156,157641833,1633362007,1701995620,224228211,1953067639,1702043749,1919906915,542574963,1919181921,544437093,1986622052,1702043749,1919906915,1970234144,1577940078,1920091424,1834709615,1566929519,1769101069,1881171316,1702129522,1696625763,1919906418,1802392832,1853321070,1768846624,1917059188,543520361,544501614,1684104562,1851064441,2003791467,1868767342,1851878765,1631846500,1696620916,1919906418,1701139200,1919230059,7499634,1852534357,544110447,1768187245,2037653601,1392534896,1869898597,1869488242,1868963956,6581877,1852534357,544110447,1869771365,1918304370]},{"sector":2,"length":512,"data":[543519849,1819631974,1699872884,1713398881,1953264993,1852131072,1818325605,1767990816,1701999980,554958848,1283146033,-1988400553,1914740885,6578533,1769109280,1852375156,1919164519,543520361,942866527,1701978166,1864397671,1634890752,1830839651,543515759,539828272,1934904905,1701994784,1920204832,1684366177,1869770752,1936942435,536896613,1970173224,694445427,1986610176,543515753,1869771365,604638578,1735289171,1932354924,544236916,1702129257,1886745202,604638580,1634038338,1768910955,1763734638,1919251566,1953527154,1126435341,1869508193,1920409716,543519849,1634038370,1768910955,218133614,1869762570,1835102823,1919251488,1634625901,543450484,1600085800,168634719,1163412772,1818846752,1663071077,1869508193,1700929652,1769109280,1852142708,1310984717,1768300655,1634624876,1730176365,1852143209,1461979661,1769236850,606103406,1954112032,168653669,1936278564,1969627243,168651884,1920091428,1595961967,543121247,1852141679,543649385,1701603686,1176766989,543517801,544501614,1853189990,604638564,1752457552,1953459744,1970234912,168649838,1667449124,544437093,1768842596,168649829,1936607524,1768318581,1852139875,1701650548,2037542765,1847855629,-1499093905,-676483929,-1432064404,11445932,1107312718,542244928,4866560,1912619594,1415184506,5396992,1515323532,2249216,917522,131084,6029378,67117680,805307904,806748182,806753280,1946190848]},{"sector":3,"length":512,"data":[369100800,1446912,8257546,2118234,2120278,5263962,5266006,1308631630,2752556,1048610,7471186,503324242,1213071442,5130240,1543528556,643432528,643432546,1310851186,5123072,5242964,675414048,3031552,1879056962,1375756800,1375740506,1577070170,1583087708,838874624,872430592,973092864,1607168,-2046786024,-2045116390,1869312,-2097117668,-1174372352,-956236031,-167707135,65792,-1895774719,-771698688,49152,-1052688128,1094778883,1090521028,773441,248725825,-1018937088,1145110556,1090529988,3720270,-867151295,1329725500,1086606933,-967622144,1396834372,1107314898,-801024173,-733872051,1413611604,1107320259,6738516,1876120642,1279345408,1124104396,7984962,-985376957,1279459453,1124106435,8635468,-2033628093,1414284032,1124109011,9290573,1448037699,1124110785,1096175437,1124111813,-1034530995,1296236697,-985508273,1296236701,-1581033905,1330463488,10863958,1448037699,1124116935,1196838733,1124117957,-866758835,1296236721,-984852913,1296236725,-1051830705,1296236729,1095652943,1124122053,1314279245,1124123074,1314279245,12961090,1448037699,13222734,1448037699,13485390,1448037699,13748046,1448037699,-708491442,1330463488,-640922026,1330463488,-984854954,1296236765,-816949681,1296236769,-800172465,1296236773,-749840817,1296236777,-632400305,1296236781,-238070193,1330463488,16109654,1448037699,16368976,1448037699]},{"sector":4,"length":512,"data":[16633680,1448037699,1124139475,-631877811,1296236805,1124143312,-1034727347,1296236819,349655888,1347240705,18400339,1481657667,499599427,1347240705,1195918168,18989624,1230327875,1124148676,19317847,718357571,-1052687359,1094975789,1140928723,1140928962,1140929220,20497221,1003899204,1020740609,1414415617,21025349,1297625670,1174488241,1221804609,1145128449,1174492100,-800832447,1111884122,22922316,1414742598,1174495440,1691568195,1279477249,23451717,1279479366,23713861,1330463558,24035926,1330463558,1942307414,1296254465,2026198607,1296254465,-1035053489,1128661373,1314279245,25347394,1330463558,-2017112490,1296254465,-716286385,1128661388,-715763891,1128661393,27053391,1297040198,1174513097,1229803331,1174515408,-800239805,1128661433,-800043697,1128661437,29545295,1128612934,-959425453,1229211137,29870419,1229213254,30132563,-699841466,1145438678,-573548983,1229211137,32035414,1447642182,32493650,-917617338,1313210864,-188133819,1380337153,33080645,1163019846,33345605,1145129286,1174536644,-850443447,1229324806,-800239805,1229324811,282478916,1145652738,366106185,1279870466,1174543556,-866824887,1229324833,1414742862,1174545872,-733393335,1313210918,-733393335,1229324842,36688979,1414744390,1174550224,-1034595511,1229324859,-767404717,1279656512,1174555332,1320240204,1145849346,1389638220,1145849346,1455764044,1145849346,39504208,1279544390]},{"sector":5,"length":512,"data":[39760455,1279544390,40022606,-633058234,1279656550,1775715140,1145849346,1825984069,1145849346,-682209723,1279656557,1447970116,1174565316,2093765965,1431127554,42192972,-800108986,1346765447,-834579391,1346765451,-1882372782,1380992514,-1800319675,1414546946,43568705,1145983558,-1663807927,1397900802,-1613607084,1397900802,-682471596,1380319904,1380930643,1174578372,-984202925,1313211045,-984202925,1397097128,-683321791,1397097129,-1002088895,1397097133,-984858301,1397097137,-850373563,1397097142,45862473,1313428294,-1059893437,1364411906,46453842,-858500282,1414743554,1174591184,-683453357,1313211095,-683453357,1397097178,-699513516,1313211099,1313166419,1174593238,1313166419,48224086,1163154246,-473672114,1414743554,48551763,1414745670,49010515,-1034595514,1397097206,-36683179,1431520770,50909762,1112888134,51368018,-732736442,1430651667,483217219,1129661955,633949519,1129661955,-800502449,1430651694,-800239805,1430651703,1347243843,1174617296,-733396649,1480983359,54775105,-935110586,1480983370,1128354388,1174621908,-667792295,1497760594,1347957324,1208178353,56218700,-699841463,1296630620,57592917,57921097,2042842697,1397639427,1224965570,2128040782,1397639427,1224967108,59298894,-1319874999,1313407884,59756372,-1000976823,1313407891,-951038890,1380516759,60347461,1413829193,1241750724,1241752257,61392193,61784650,-1262140854,-1161606653,1480804867]},{"sector":6,"length":512,"data":[1241758682,-631749819,-985005121,-951450683,1196032971,1241764293,1241765836,64865612,-473870774,1095649795,1241770437,66044494,-985510326,1313473525,1241775043,67224910,130502218,1196313092,1241779653,68406350,-984854966,1313473561,1241784271,69587022,735268426,-632403452,-817232847,-800455625,1347028029,1241793477,71946064,72340298,72735306,1624264010,1212238852,1275356102,73912897,1792230476,-750433276,1179386989,1275359699,74830663,2043892556,-1052423164,1162609788,-2134550975,1145523204,1275364564,-1999354807,1145850884,1275366612,-1864936627,1095715844,-867417788,1330381972,76991299,1396985676,1275369922,-682408881,1330381978,-1631300796,1330596868,1275371984,-682602673,1330381986,-1497083825,1330596868,78234960,1347374924,78305093,1347374924,78562373,1347374924,1275376090,1515212623,1275376343,1515212623,1275377348,1313886031,1275378117,1313886031,79353669,1347374924,-1094433458,1330596868,-1042657712,1330596868,-681947568,1330382018,1515081807,1275381444,80399443,-825076660,-699446012,1330447603,-155036842,1448037636,83351379,1398165325,1292172228,-665627057,1330447618,165173846,-866824955,1162741004,1308954823,85184591,399789902,634539781,-950907131,1431242022,1325738964,-1034726315,1431242031,819417940,1414876933,87409747,1188056912,1347375109,1342523329,-1002352561,1330644300,88983120,1179668304,1342525892,1791513429,1398099973,90947912]},{"sector":7,"length":512,"data":[1213420880,91276353,1213420880,1342534086,1179145045,1376089540,92130371,-2049817774,1296323077,92918355,1297106002,1376095683,-1017949116,1163003281,1376097232,-1782230971,1346720261,1376098266,-984723387,1163003289,-1680191920,-733654523,1163003296,94488148,1179927890,1376102340,95407183,-1210953902,-850177531,1095959995,96388680,-959692461,1279349509,1392888259,97636929,-540917165,1094931205,98746963,1396786003,1392894935,-1001176765,1163068903,99336532,1096041811,1392897989,-205368251,1413829381,100123970,-1017887405,1163068923,100648276,-950778541,1163068931,130369364,1413829382,1392905164,-984853435,1163068943,331435604,1413829382,398803278,1413829382,102482510,1314145619,102745410,1314145619,1392911299,-984722363,1163068967,734482004,1413829382,801457998,1413829382,104057934,1314145619,104318284,1314145619,1392917455,-800172987,1163068991,1137921620,1413829382,105372238,-816560813,1163069003,105893972,1347700051,1392923589,-816819131,1163069015,106681172,-632011437,1196623455,107205700,1808549971,1279808262,1392931524,108712520,-1001240493,1230177921,109433924,-733721517,1297286793,109958995,-1866247085,-1001106682,1414727315,1392940745,-1034727596,1414727321,-1697164465,1330926342,111068243,-1563274157,-1034595578,1498613424,1414415699,112513605,1163090259,-1194047144,1397052422,1443283412,-976072123,1380275718,1460062679,-858502847,1229084422,-792439218]},{"sector":8,"length":512,"data":[1297241862,114610771,-1002159784,1129842393,115656520,-733918120,1280837351,-356363199,-766552058,-750450952,-750582022,-749533444,-750516482,-750385408,-750319870,421074454,-1162212083,421074454,45878541,421074454,-1094841075,421074454,-1061155571,421074454,201985293,421074454,201985293,421074454,201985293,421074454,201985293,926365495,926365495,926365495,926365495,926365495,926365495,926365495,926365495,471796748,168430090,1503486363,202116108,1936946035,1936946035,1936946035,1936946035,67372036,421074454,421074454,75243385,-1263225844,-1263225676,204409868,202116108,-2105376897,202116108,202116365,202116108,-2054847099,-2054847099,-2004318072,-2004318072,212337668,67378975,212339769,202142063,67372036,202142065,101058054,101058054,1936946035,-1819055767,1932471597,-1768526740,168430602,67374092,202116108,67374092,269488144,269488144,320017171,320017171,-1616928865,-1616928865,-1566399838,-1566399838,-1515870811,-1515870811,892669968,892679477,829764917,7680373,2004318071,30583,1431655765,1433862263,1010580540,1010580540,1381122112,1077952576,1010565180,1280658517,1342722640,134744072,1246382666,1246382666,1077952576,2048,1246363722,1308642816,1077952576,5394952,1044266558,1044266558,1381122883,1128481603,1044250686,1280639061,1347441232,21074,1280068684,1280068684,139609670,1179010630,1280049228,860762958,1347441232]},{"sector":9,"length":512,"data":[5394952,202116108,789516,202116108,202116108,202116108,202116108,570688512,202116130,-859436020,-707604535,202116108,572656652,572662306,572662306,572662306,757932578,757935405,757935405,757935405,-1431687891,-1431655766,-1431655766,-1431655766,-1027429718,-1330895092,655148228,371372204,522657558,76516127,-1960697305,68556431,623191333,623191333,707409205,-1724700118,202116112,202116108,202116108,1791756,1769499,1769499,122421275,118097709,118097674,118097674,122423050,1442272,1441814,1441814,122421270,132450093,132450277,132450277,122423269,2098989,2097184,2097184,65568,153223594,153225506,153225506,16845090,158990767,158992762,158992762,33622394,23789570,23789931,23789931,50397547,83689489,83690749,83690749,83690749,29099261,29098428,29098428,29098428,122421692,122423116,122423116,122423116,120391500,120391469,120391469,120391469,391251757,271259442,872488997,806368513,390869024,390862067,352457971,387454216,96671519,88671663,98108740,88933822,97846592,97191353,91227600,91489643,16778599,16777472,154796296,157747514,114166119,114165454,114165454,114165254,117441272,157747559,157747559,157747559,6031719,5636512,123799884,131008319,114165218,114165454,114493134,24119002,154796407,151521594,104401167,132777536,114165745]}],[{"sector":1,"length":512,"data":[114165454,114165454,114165454,114165454,114165454,114165454,114165454,18876110,128844064,99747758,50333165,298451712,129177099,85198771,85918996,17827123,18350352,786712,131727367,21498227,23593304,25690488,27787672,112329144,106169984,83428694,118686969,5637907,98371037,83428829,118686969,526099,144665,82313222,19398780,6750504,7407865,7080195,48236798,1769776,1443594,2099173,158992674,1769835,1443594,2099173,158992674,130023787,124782533,147916661,131401948,130025440,124782533,147916661,131401948,398460896,393222085,416356213,399841500,154802144,117770554,116786939,29426931,83690733,5636540,98369622,122422749,686620672,639510813,692070089,10566,684392448,638724327,687023640,639893504,31343915,38994828,74515048,43320446,31326882,38994828,74515048,43320446,53674658,69533696,57803818,71762795,53675063,50857161,51381290,30409160,46989784,47448824,52691675,48431915,1645019882,1645568542,25163,792,49414144,51838976,797,819,1646658602,1647272505,52453954,1650025626,31326208,38994828,74515048,43320446,31326882,38994828,75367016,44172401,53674645,69533696,63308842,65470464,46007401,69534921,882050090,13483,46989312,47448824,52691675,48431915,31720170]},{"sector":2,"length":512,"data":[40371090,75825960,44631159,49414811,51838976,32178973,32572146,46465821,69862601,53478442,1650484386,54001664,54919998,55903054,56951645,30474240,62260440,80675743,41759662,61276927,69076191,62731285,873399295,12919,20971832,650388968,544613930,1160066602,919488850,919484110,919484110,1499084494,1467635592,1764190081,1631545649,1620074783,1633968264,1620533559,1633509505,1632461103,1622958421,1623417012,901996717,893990319,903427396,894252478,903165248,902510009,896546256,896808299,950351207,940325001,952449029,940718238,952055807,951138455,942815416,943208491,927741989,1368995629,953561155,927742166,1472870189,954282065,888355041,1099252101,810300929,905721335,921646831,809960168,808923186,921188072,1231112545,1077674736,1077690428,1077690428,1077690428,83705916,809697724,810299473,1368272967,114165549,33031065,76349912,884147395,42795703,51315205,40838151,33629289,83887107,151521030,0,0,0,0,0,185204736,920844,15,0,286261248,353637138,0,0,387317760,454695192,522067228,589439264,9508,0,0,0,0,0,0,0,0,0,0,0,656801792,724183336,791555372,858927408,926299444,993671480,1061043516,1128415552]},{"sector":3,"length":512,"data":[1195787588,1263159624,1296826368,1364217678,1414746624,1482118741,23129,1583176795,1650548831,0,1701077760,1768449894,27498,0,0,0,0,0,0,0,0,0,0,0,1835794432,0,0,1869479936,1912631664,0,7536640,0,7602176,0,7667712,0,2004221952,2037907456,2046820352,0,2088435712,8355453,-2147483648,0,8454144,0,52559872,52429601,27132707,22937951,27198256,42336766,50856625,70255584,73532479,9962594,10027175,27001180,22938014,13566061,10813613,6357103,6291613,13303964,11469002,6357163,27591038,64422787,72942583,87622926,115410503,121112358,123275077,129566568,133695417,14878998,14745826,14680289,89915616,108070491,111216264,17434299,1048834,17301521,256,17563649,2097412,43712545,43188975,42664686,42992365,48300689,48234801,19595568,17367338,524545,17498121,1573123,17629209,2621701,44040233,8782497,17694855,3145990,16777265,218760964,420877072,589372955,724117285,875704365,1077819959,1229341762,1431391563,1667259737,1802069861,1987276909,-2088797063,-1886549369,-1718185071,-1532977508,-1330730072,-1195985742,-1010778694,772550,983053,219086862,185535758,224463630]},{"sector":4,"length":512,"data":[67175696,67372033,16843009,270532865,134744080,268961800,285149200,134480912,134744072,17434632,404429086,1109007644,1464817497,1364673615,1145849431,1396855887,1313819720,88163909,-16251130,1879271948,226051,146082003,146081973,146409689,149162185,157813096,157813096,157813096,160434545,171575781,172558910,174262879,178522765,172296882,183896784,184814333,184814340,184814340,184814340,184814340,1163412782,1329802756,1850278477,1852990836,1696623713,1919906418,170134029,33883657,1091044353,1145848652,1095516748,1145586504,1095254600,1146635096,1398293080,1397768784,1162429513,1397965651,1179862099,1397966675,1129139540,1414677586,1045314130,944651342,1112424526,908994126,-1687854018,1291055856,-1610206455,496647,598746834,624502060,626074942,629679491,630203788,632104348,633349585,637937123,641672716,644032079,646129275,650127005,628762358,3221244,1480851507,1414745155,1396986691,1397117765,1397969735,547563269,548806831,551166161,1465079619,1346983764,1028670525,1953525093,1314999929,-134261744,-134258113,318707263,-1410007116,-185530981,83163821,-10680892,17017844,1655567409,262388,-1393229923,-189724109,167023278,-14873980,-9822737,-14737938,-2587664,-14383888,1770516985,1853681919,-282384,-1903955724,-541986572,-2114915073,-1309608914,-252379245,-252391810,1157580721,-1277119764,-3855086,539884024]},{"sector":5,"length":512,"data":[-6272513,1258278986,1307574072,-1136066616,476181503,-329255937,-1604324353,-798952449,-1604324353,945878015,2086925311,-463277057,-1738345473,811856895,-798952449,-1604324353,-329255937,476181503,-329255937,-2074020865,811856895,-1738345473,-463277057,2086925311,1415574527,1281553407,-1268648961,-2074020865,140506111,6484991,6484991,1281553407,1751249919,945878015,286764543,276213713,-12775004,-117487567,-7065095,1149301236,-608898305,410841855,771356927,-1811153044,-782849,1897266430,-12797964,-33613637,-9290770,-1020864,-2003904,1150882712,1103115584,1107279974,-398343937,-1364983871,-9524993,-2069440,-503037446,-851381249,1089732544,-201338675,-3617472,-1072086541,423752703,1106509776,-201340903,-2614975,-657637133,-1630298881,-801357820,-3071936,-266321421,-251379213,1346565119,876803056,866123761,1010853024,-652197672,-639090177,1816195327,1816199167,1106968566,-1493180156,1082435411,1715597365,-12451848,-102219272,-1447843585,-130727708,-1022399,1106313025,-83889688,-2096063,-4147391,-4174014,-510021480,-1636786689,-794820703,-1493237343,-14571280,-2119544663,-1694721793,-16538067,1100746907,-143900417,71432959,-1130496029,-1593840226,-1437753060,815988675,-1526767197,-4086384,-1868996712,-2025791836,1816199104,1816199144,1816199145,1816199146,1816199147,1816199148,1816199149,1168441326,-1465857,-375260680,-1686922497,-936034140,-3643839]},{"sector":6,"length":512,"data":[1103691585,1090505192,1090506860,1090515820,-251660180,-693184,-889792,-234432,-117499485,-15096839,-2512902,-643302920,-43237121,71430143,1089535972,-251658644,-299968,-365504,1352540061,-3098815,-1331658849,-1220436311,-1443168296,-1493500155,-101122135,-83908186,-531479825,-1577110102,1086628499,1715593269,-12451864,-370654744,-1510759425,-399163356,-2070975,1105264449,1090511336,-251665300,-253708223,-1991615,-400539149,-385596941,1346565119,876803048,1106313193,1106307256,-251663972,-1460160,1090454574,1090512236,1816184968,1816199113,1816199156,1816199153,1883832313,-10175489,2146487482,-484446468,-287039506,535711007,-750518450,335492166,-256445423,270593791,-285607681,1023368224,-16630347,-7583760,-234936259,-234921906,-117452355,-9159175,1961917219,1260584736,-1019152,1928396577,790888356,-2853904,1928396577,-101122140,587172675,1014231191,-254073345,637501558,-394923965,-252238593,637508725,880210063,-265346049,570414195,-1535971073,-263511297,603975794,544534651,-263511297,587198578,-2005667613,-259054081,620704886,-1669992201,-264034817,637528181,-2139688741,-256695809,620714098,1349906603,-267180801,587184244,-2005667613,-261676545,620694642,74838111,-262200065,620692597,1349906603,-255384577,587164788,1014231191,1173046783,-1283935432,-8043094,-268487633,989831244,926613379,2005004543,-1014894337,-545197825,-1889793]},{"sector":7,"length":512,"data":[-5489682,-11158289,-6177553,-4079889,-7225873,-8630801,271839477,872020223,1061420892,1140455679,-213713089,1123678463,-213712909,1123678463,-1488781325,1123678463,-1488781401,1123678463,1290796967,-1074790420,-1406140659,1680360752,-1171653336,1848922922,1656803126,-255437328,1458593622,-1386811372,-252029200,822055767,-101122128,-251659216,-2064607100,-2098135067,-2055016392,-8340737,-13321484,-184565718,-184555335,-1862053973,-189878796,-50174974,2051341311,-285222074,-117463008,-199168263,452248319,41355569,-266991788,2129662076,-101122191,-3400466,-1674642952,-1261365249,-1373639152,68493294,164234857,-267910613,2129708155,-101122267,-8381202,1345255928,-923810305,-1312100784,-935606529,-37032292,-665128193,610006015,-1940196609,-168561153,-168561165,972223986,-2999836,1144846840,-973131204,-289880233,-973137462,-301676381,-218143286,788494462,-2017001496,-873535288,-2009071799,-915683329,768405196,-408161025,-1359720184,604501062,872398087,-101122136,-251661261,-251719815,-251666569,-251686025,-251673736,-251686025,-251712648,-251695237,-251668614,-251688070,-251714693,-251673736,-251686025,-251666569,-251719815,-251666569,-251693192,-251714693,-251688070,-251668614,-251695237,-251705481,-251707526,-251680903,-251693192,-251659402,-251661447,-251661447,-251707526,-251700359,-268489864,-956318277,-286734201,-251704885,2112941180,-741933255,-873581367,2146500501]},{"sector":8,"length":512,"data":[-1719668660,163377151,700379135,-105058305,-1291777,1258232907,2016608132,855243007,-1091567676,-1393229963,-200209025,200597166,-8581916,-9413645,-4432909,1119478065,891761703,1505751039,-1514147841,-16503041,-5484815,-12559630,75887092,721300223,-869796609,-3332108,1073730623,-1393229868,-193916981,250882735,-2290108,787883766,1056323318,1710646518,0,4194304,0,0,0,0,0,0,0,0,0,0,655616,1316618240,20090,0,0,0,0,0,0,7302,1644167168,0,0,0,0,0,0,0,0,6029312,7077888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,852096,1253367947,1048584653,1946176994,-1021974525,1152547817,1196769861,1919252000,1852795251,858665248,168649010,1162086925,541545794,1564880731,1683708704,1702259058,1885035834,1567126625,1701603686,1701667182,1918982944,1936288871,224222580,537529610,541470496,538976288,1696604192,1818386798,1634738277,1713399143,1886415212,224882281,1713381386,1852140649]},{"sector":9,"length":512,"data":[543518049,1818846752,1869881445,1650811936,1864394613,2019893362,1852403041,537529701,1735549216,1953720684,1881153568,1835102817,1919251557,1768366195,544105846,1881173876,1919381362,168652129,1866861069,543236210,1953720684,543584032,1969382756,1852401511,1868767335,1851878765,539784036,544109938,1430406468,1851859015,2037653604,1059087728,544497952,543516788,1836020336,221148272,1850287114,1768710518,2004033636,1751348329,2015374624,2361869,-1547137796,144920068,1309451086,-1202875741,567095296,24314428,1336386243,91423804,217319110,-955877397,-1877145082,1036289680,225575711,1306855166,1913063997,-452526588,1140897869,567139123,-494924430,-2114289535,113640821,-1207939654,29049856,1914817792,-1156151292,995644493,-1190300476,-439221983,117310580,1978355125,1303709382,-234723326,-161964899,1702162628,1303709438,-461120373,1721526012,-930388392,13670,1348861956,-1670996634,1365661798,-477389466,1958820710,-1257832900,-1047828915,13670,1348861984,-1670996634,1365661798,996580710,1713272001,-1576026061,33063782,862327676,-1576058688,254067850,41289276,-1247672656,1303748685,1011725986,-616336635,1515895011,-571700400,1012400254,1343059200,1476427481,-2096087259,125059064,1303774918,-2145391617,55424318,-388425611,-102830375,-522600231,-581903906,-1638399874,251528309,1048595894,1929596341,1378926115,-1392504647,-1878538605,113703394,-969008351,-820296186]}]],[[{"sector":1,"length":512,"pattern":0,"data":[-953462593,-954195963,538968645,-1409252930,-76275652,-143390404,896872252,1950301356,1021256740,-1274055354,1007734031,-958367997,21881862,-1549608469,1335016015,567085492,-850656840,1318042145,567085492,-850657096,-391360991,79282659,724090368,-1404178241,567096756,1166810505,80184066,-1265455726,-501101275,-850217750,1200301601,1975551486,-200882675,113699596,-1946137115,-1432139576,-852183987,-1407284959,-1375302579,112729677,567146845,-1945088885,275914714,567103924,141941051,1303393929,1303516809,-1064386509,-2079978970,-1342016252,1306436376,1306803840,-1977256960,378152688,-889322422,-855309896,-1211550960,-855067648,-1191409136,281871872,28824115,281871028,180225822,1302642432,1153934757,-1946090500,381615692,1284285696,-1878094594,1301593933,-1194710040,-266055159,1212733579,1078823075,-754667200,-62068245,317919985,455807736,456465200,684858253,688924886,691022108,691349810,701835579]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"data":[1634233925,1684366190,1111835680,1713391445,1344303727,1329864771,1851859027,1397563492,1397703725,168626701,543516756,1634233957,1684366190,1111835680,1881163605,1919381362,745762145,1111835680,1629505365,1142973550,1196769861,1918967896,1868767333,1952542829,1701601897,1953068832,1752440936,1141509477,1196769861,1769239840,2037672300,1768453920,1998612579,1763734369,1970037614,543450468,1752459639,1702257952,1981839730,1769173605,1864396399,1129324646,1397703712,1684955424,760433952,777211716,168626701,1430406468,1970479175,1919905904,1629516660,1226861676,1818588270,909670432,1936615712,1668641396,1852795252,1886724211,544175136,543516788,1953391952,544044393,544174672,691425320,1852377613,1685417059,543649385,543516788,1634692198,1735289204,1768910880,1763734638,1920234350,1769235317,544435823,543452769,1868852853,1701672291,1684370542,1936615712,1668641396,1852795252,1930038643,543712117,1394635617,541281345,543452769,1145130828,776752193,1111835680,542656341,1886418291,1937011311,1684300064,1869182057,543973742,1952540006,1936028277,1684955424,1936482592,1930038639,1869639797,544437362,543516788,1969382756,1852401511,1718558823,1297105952,1818435657,1953391977,1869770784,1835102823,168636019,1162086925,541545794,1835888483,543452769,1701734764,757926413,757935405,757935405,757935405,757935405,1162086925,541545794,1564880731,1683708704,1702259058]},{"sector":4,"length":512,"data":[1885035834,1567126625,1701603686,1701667182,1918982944,1936288871,224222580,537529610,541470496,538976288,1696604192,1818386798,1634738277,1713399143,1886415212,224882281,1713381386,1852140649,543518049,1818846752,1869881445,1650811936,1864394613,2019893362,1852403041,537529701,1735549216,1953720684,1881153568,1835102817,1919251557,1768366195,544105846,1881173876,1919381362,168652129,1866861069,543236210,1953720684,543584032,1969382756,1852401511,1868767335,1851878765,539784036,544109938,1430406468,1851859015,2037653604,1059087728,544497952,543516788,1836020336,221148272,1141509386,1196769861,1836016416,1684955501,755633523,757935405,757935405,757935405,1141509421,1196769861,1667592736,1768843119,544433530,2037149295,2019911712,1836412448,1936876898,1769416736,1970235508,543236212,1767993972,1735289196,575152672,168635945,1162086925,541545794,1852399981,1852399988,543236211,544499059,1981834863,1634300513,1936026722,1634235424,1953046644,1702065440,1869881459,1869902624,1629513074,1918989344,225731943,1869770762,1835102823,1126200103,1914721616,1936287589,1936876916,1162092590,541545794,1953066601,1768710505,544433530,1936025716,1635131493,1650551154,544433516,1751343461,1835627552,1762266469,1936269428,1635021600,1684370546,1750343726,1635131493,1650551154,544433516,544370534,543516788,539777089,539777092,539775042,539773267,543452769,1914718532]},{"sector":5,"length":512,"data":[1936287589,1936876916,1918962189,1702043749,1869881460,539897888,1629513289,1918989344,544499047,1735357040,544039282,1864397423,1919248500,1818846752,1936269413,1634692128,744777060,1701344288,1635125773,1650551154,544433516,544370534,543516788,1629509698,1126196334,1701978200,1953720679,544436837,543519329,544499059,1948282740,1931502952,543521385,1948280431,168650088,1735357040,544039282,1713402479,778398825,1752452896,1769435749,539780467,543516788,1769103734,1701601889,1868963955,1752440946,1480728677,1684955424,542655264,1768383858,1919251571,1628048755,1931502962,1948284005,774905967,543574304,1635000417,1952802674,1869770784,1835102823,544434464,1684107116,539780197,543516788,1769103734,1701601889,1868963955,1752440946,1930038629,1701668709,539784302,539775049,543452769,1914720339,1936287589,1936876916,1701994784,1952805664,544175136,1970037110,1629516645,1869770864,1634300528,1713399156,1948283503,168650088,1684107116,1881171045,1919381362,539913569,1701344335,1936291698,1948265573,1981834600,1634300513,1936026722,1919903264,1701344288,1734701856,1953391981,1734701600,1702130537,168653682,543519329,544499059,1948282740,1931502952,1701668709,1629516910,1701995620,1864397683,1752440934,1918967909,1864393061,1701650534,2037542765,1634235424,1162092660,541545794,1936028533,1869875725,1869902624,1948280178,1864394088,1970304117,1919295604,1948282223]},{"sector":6,"length":512,"data":[1092642152,1835365235,543517794,1835888483,744779361,1701344288,1918989856,1818386793,1868963941,1346969714,1936263693,1952805664,544175136,1747988529,1851858988,1752440932,1635131493,1650551154,1713399148,1394635375,1936269392,1952805664,544175136,1162233414,168636008,1866861069,808984690,540424243,543452769,1702125932,1919950962,1936024431,1936879475,1752440876,1768431717,1998612583,1935962735,543584032,543516788,1647129139,1914729577,1936287589,1936876916,1918962189,1852383333,1634301033,1702521196,1869881444,1919253024,1852776559,1869770784,1835102823,1635021600,221148274,1309281546,543519855,1952540788,2037276960,1111835680,1663059797,1634561391,1948279918,544498024,1701012321,544437360,1346576481,1701978197,1953720679,1629516389,543236211,1634886000,1702126957,1762266482,1667309683,1818326388,1965062508,1735289203,1701736224,543584032,1936025716,1635131493,1650551154,779314540,1919895072,1701344288,1835364896,1684957537,1864397413,1752440934,168653673,1952671091,745434985,1819042080,1734701600,1702130537,1634607218,544433517,1701209458,1869881458,1701344288,1936941344,1634296687,543450484,1769103734,1701601889,218762542,1919895050,1701344288,1836016416,1684955501,1752440947,1629516897,1885692771,543236212,1735287154,1634738277,1701667186,745694580,1701344288,1918988320,1952804193,1663070821,1646292577,1963593061,543450483,1931505524,1768121712,1629518182]},{"sector":7,"length":512,"data":[1635021600,1852404850,1684086887,1936028260,1864379507,543236210,1918989427,1735289204,1684955424,1684956448,543649385,1919181921,745763685,1919879693,1931501856,1953653108,543649385,1919181921,544437093,543452769,1701584993,1752459118,1867784238,1718182944,1701995878,1634301038,1629513076,1852140576,224949351,1918988298,1952804193,1713402469,544042866,1696624225,1852400750,1684086887,1936028260,1948265587,1814062440,1952935525,1634738280,1701667186,544367988,1953723757,224748064,1701998602,1701078371,1769414756,1629513844,1277304942,1411395106,1931502952,1953653108,543649385,1919181921,544437093,1634886000,1702126957,1633886322,1852383342,1685417059,224469093,1734701834,1953391981,1734701600,1702130537,1919885426,1931501856,1701668709,1629516910,1701995620,1663071091,1953721967,745827937,1885696800,1952543329,1713398885,544042866,224749684,1717989130,544499059,1919181921,544437093,1752459639,1663066400,1852796015,1867718702,1696621933,1886216568,544433516,1852404597,1752440935,1967399013,1663070317,1634561391,221930606,755633418,221257796,541338890,809128771,1143802381,808470048,1179007536,168638022,807420973,168642080,1142965293,808532563,808525872,755633458,1397956676,540029498,221519948,1409944842,1142973800,544238965,1835888483,543452769,1869835361,1886745376,1953656688,543236211,1735288172,1881172084,1835102817,1919251557,1953068832,1953853288]},{"sector":8,"length":512,"data":[544104736,1919181921,225669989,544175114,1886221668,1701344288,1701868320,1768319331,1814062181,1952935525,1953701992,1769239137,1713399662,544042866,543516788,1953718636,1936286752,2036427888,1629512805,1701995620,168653683,1667852407,1936269416,1702065440,543978854,544370534,1886611812,1769562476,1629513582,2036429426,168636019,1162086925,1481069890,1684960544,1953722981,1935961697,1768453152,1684086899,1769236836,1818324591,1853453088,980967796,168626701,606094371,808464454,1179010618,218762550,1752637450,543712105,1819043188,1162092659,1481069890,1634235424,809902196,1931489328,1819635560,1700929636,1953392928,1919971941,1684370533,544432416,1702043745,1852140903,168635508,1953459744,544432416,1702043745,1952671084,1998615151,544105832,1969382756,1701144423,544434464,1881173609,1702129522,1684370531,1685024045,168636005,1716062733,1701344288,1650811936,1701275509,1936269413,544106784,1953460848,1702126437,1869426020,1629513060,1948279918,1931502952,1701668709,1881175150,544502369,1948280431,1931502952,1953653108,224882281,1684300042,1936942450,544434464,842211425,1953063469,1818587936,1869898597,1948265586,1864394088,1702061670,1634738292,544437362,1948280431,1931502952,1953653108,543649385,543452769,1768189541,168650606,1919181921,544437093,1935745069,1818588960,1935745132,1701344288,1852140576,543716455,1633886253,1700929646,758264608,779381090]},{"sector":9,"length":512,"data":[1635271968,1701605485,168639091,1143802381,978535456,808464689,824193072,1179004977,755633478,1396908100,808465466,540028976,808591436,221261872,755633418,168635693,222366221,1936933130,1701601901,1936615712,1668641396,1852795252,218762611,1853444874,980967796,1528840480,1919181921,1567847269,168626701,543516756,1702064961,1701601901,1836016416,1684955501,692135968,544434464,1684370293,544175136,1702129253,1935745138,1651336563,1830844780,778396783,544098592,1702064993,2037146221,1869416973,539780452,1430406468,1919950919,1953525103,1868963955,1634017394,1629513827,1835365235,544828514,1735287148,1701273973,1635021600,1701668212,1629516910,1663067246,1702260335,225670258,1701344266,1635021600,1701668212,1763734638,544175214,1751343469,543518313,1701080931,1634235424,1936269428,1701344288,1953701998,1684370031,544106784,1869440365,539916658,224749652,1953525514,1634627433,1953701996,544502369,1919181921,544437093,1667592307,1701406313,1752440947,1684086885,1936028260,1952522355,1768453920,1948280931,1935745135,1651336563,1948280172,168650088,1936877926,1852383348,1970435187,1869182051,1411395182,1679844712,1969317477,1931506796,1953653108,1684300064,1936942450,544434464,825905987,778580016,1646280992,1802396012,1852402720,1695157605,1919251566,1629512805,1752440948,1919950949,1953525103,1969316640,544433523,1430406468,1869881415,1769497888,1935745140]}],[{"sector":1,"length":512,"data":[1651336563,1830844780,778396783,168626701,221064493,1124732170,1866664461,1918988397,1633951845,168649076,2035485197,2019652718,541270074,1735287154,1684086885,1936028260,218762611,1701336074,1836008224,1701994864,1836016416,1684955501,692267040,1836016416,1701994864,2004099187,1701650543,2037542765,1734701600,1936617321,1816207406,1768169580,1919247974,1701015141,1769414771,1646292076,1812598117,1702130537,1646275684,543716463,1919181921,1702064997,1918967923,1768169573,1634496627,744777081,1953068832,1752440936,544368997,1886610802,1769235301,1679844726,543257697,1702132066,168636019,2017790477,1819307361,168639077,1127025165,808529952,543957040,842014770,168636464,875770417,808529978,1159733296,908075065,824188981,976499506,808464944,842074637,809120819,540094513,540094496,540160032,858927392,842021428,168636720,757926413,218762541,168641546,1886221636,1835363616,226062959,1393167626,1635020409,1142962808,1634884384,1566926702,538970637,538976288,1111760928,1634884384,1566926702,538970637,538976288,1464082464,1634884384,1566926702,538970637,538976288,1145315360,1634884384,1566926702,168626701,543516756,1886221636,1836016416,1684955501,692332576,1752637484,1965059685,543450483,1752459639,544503151,1634738273,1701667186,745694580,1969316640,544433523,1430406468,1946815815,1768169583,1634496627,1752440953,1868767333,1852142702,1864397684]},{"sector":2,"length":512,"data":[1752440934,842080357,2036477240,1646290292,1801678700,543584032,1869440365,1931508082,1953653108,543649385,168653921,1228559171,1718165584,1948279072,1701278305,1919950964,1634887535,1936269421,1634692128,744777060,544370464,1918989427,1735289204,544497952,825905987,543698992,1847617129,1946815855,1701278305,1919950964,1634887535,1936269421,1634692128,778331492,1701336096,1953525536,1634627433,1634869356,543516526,1634886000,1702126957,1633886322,1700929646,1702065440,1946815844,1886593135,1718182757,543236217,1918989427,1735289204,1684300064,1936942450,1919885356,1931501856,1953653108,543649385,543452769,1768189541,1629513582,1701995620,221016947,1931501834,1953653108,543649385,1919181921,544437093,543452769,1701584993,1752459118,1919885356,1937074720,543236212,1735288172,539912308,1935832403,1702195557,1142977646,225471861,1836016394,1684955501,1769414771,1970235508,543236212,1634886000,1702126957,1633886322,543519605,1430406468,1869881415,1936286752,2036427888,1701344288,1852793632,1953391988,1718558835,1752435213,842080357,2036477240,1646290292,1801678700,543584032,1869440365,1713404274,1869376623,1735289207,1701344288,1869373984,1679846243,1819308905,1684371809,544825888,224749684,1701998602,1970235766,1967399027,1663070317,1634561391,539911278,543516756,539771460,1629509444,1142973550,1635131460,1851877746,1679848308,1819308905,1830844769,1919905125]},{"sector":3,"length":512,"data":[1852383353,2036468237,539780468,1685221239,544370464,1651863396,1870095724,1713398898,1634562671,1701978228,1667592307,1702259060,539916652,1935832403,1702195557,1142977646,1836016416,1684955501,1997147507,543976553,543519605,543516788,1986359920,1937076073,1931508076,1768121712,1684367718,1919903264,544498029,1752459639,1701344288,1717920800,1953264993,1768251936,1646290798,224752761,1919903242,779379053,1701990432,1852404595,1313153127,542262612,1702127201,543236210,1886221636,1836016416,1684955501,1818851104,1969299564,1701998452,1952540016,1684955424,1969621517,1769235310,1629515375,1718165619,1869504800,1919248500,1836401696,1868767344,1851878765,1635197028,1852121203,1701995892,1769414756,1970235508,543236212,1735287154,168636005,757926413,218762541,222905354,1836401674,1850286192,1920099700,1937010805,1162094624,1481069890,1819176736,168634745,2035485197,2019652718,1229201466,1667593760,544370548,1970234203,224228462,1409944842,1142973800,544238965,1702129225,1886745202,1143480436,1663052105,1634561391,1679844462,1819308905,544438625,1702129257,1886745202,1702240372,1919906915,1852383347,1701972493,1982819425,1831679544,543515759,543452769,1229803588,1953392928,1970434661,1981838448,1869898597,1763734386,1919950958,1667593327,761554292,1701080941,218762542,1635271946,1701605485,168639091,1766066701,1634496627,1852383353,1920099700,544501877,1763717168]},{"sector":4,"length":512,"data":[1701978222,1831693409,979723375,168626701,541672493,805965104,842014768,809121862,221791795,1141509386,1819308905,1763735905,1919251566,1953527154,1684955424,1668834592,1769238629,1981836911,1869898597,807433074,1110453560,544106784,1647129139,1881175145,1702129522,1684370531,1685024045,168639077,1143147021,540549193,805965108,808460344,809121603,808464432,540553796,927150128,808464442,842150192,805965112,808460345,809121603,808464432,541340228,927150128,808464442,842150192,805965124,808460353,809121603,808464432,540160836,927150128,808464442,858927408,805965106,808460354,809121603,808464432,540488516,927150128,808464442,858927408,218762551,757935370,168626701,168643652,1886221636,1413762080,1936024608,1885958755,1936879476,1162094624,1481069890,1819176736,168634745,2035485197,2019652718,1279533114,1818587936,1869898597,1666916466,1953396079,218762589,1701336074,1836401696,1145839728,1701060692,1769104243,1919906928,1279535136,1868767273,1851878765,1768169572,1634496627,1142977401,541674832,542393420,1668506980,1953524082,779317871,168626701,1835104325,979725424,168626701,543974435,840971320,808454669,1646277688,1030058849,825307184,808466480,1835625504,809333865,808464432,541471793,1920234593,1177563197,805965106,541276208,1702060386,825241661,808464433,1768693808,1031039341,808464432,1179006768,1953784096,808467826]},{"sector":5,"length":512,"data":[168637254,1279527437,1851876128,1936482592,1700929647,1702065440,1869881444,1936286752,2036427888,1835625504,1629516905,1629512814,1769108596,1702131042,1718558835,1869116448,1193305459,168645700,1668506980,1953524082,544436847,1667852407,1918967912,1667309669,1936942435,1701601897,544825888,543516788,1701407843,539915374,1835104325,979725424,168626701,543974435,857749553,808454669,1646278705,1030058849,1061109567,1061109567,1835625504,1178432617,1179010630,541476422,1920234593,1179009853,805965122,540029488,1702060386,1061109565,1061109567,1768693823,1031039341,1179010630,1179010630,1953784096,1178811762,168637254,942813232,1935761952,1061109093,1061109567,1814052671,1953066345,1061109565,1061109567,1952522303,1060991604,222248767,755633418,168635693,1296304653,1967393293,1293971565,1919905125,1866670201,1869771886,1816273004,543908719,1111706920,1751326761,225339745,1393167626,1635020409,1142962808,218762573,1701336074,1836401696,1129128048,673215298,539577668,1886611812,1937334636,1701344288,1920295712,1953391986,1397703712,1347637280,1684955424,1701344288,1397703712,1835355424,226062959,1852785418,1819243124,1869365792,673213283,692208461,1634231072,221146729,1158286602,1886216568,221930860,755633418,168652132,978342736,875902768,842009101,874529585,842014788,807417650,540618800,1430406468,805965127,540422706,807420980,540488242,842151216]},{"sector":6,"length":512,"data":[1111835680,168642389,959723312,541340704,875902768,808464416,1329864761,1179535699,805965135,540226871,807420213,540292407,1128347705,1397703712,1330007625,168626701,543516756,1936877926,1635131508,543520108,1948283753,1931502952,1701668709,1629516910,1701995620,1864397683,1752440934,1129128037,1713384514,1869376623,543450487,874543458,1919885380,742470944,1752435213,2003771493,544367982,543452769,1702521203,543584032,543516788,541213517,543452769,1634625894,544828524,543516788,2036477240,1847616884,543518049,1948280431,1864394088,1919250039,1091177774,2003771502,544367982,807429743,540028976,1851876717,1752440947,1948284001,544434536,541213517,1668506980,1700948338,543236211,1701147238,1835363616,544830063,1668246626,168636011,1864396353,1919250039,543584032,942682160,1634037024,1948283758,544498024,1936287860,1111706912,1936024608,1651077731,1629516645,1937339168,544040308,1869440365,1646295410,1801678700,218762542,757935370,168626701,168646724,1886221636,1954047264,1701080677,1701650532,2037542765,1162094624,1481069890,1819176736,168634745,2035485197,2019652718,1480859706,1684101920,1936028260,168648051,1750338061,1967399013,1696624749,1852142680,543450468,1869440365,1663072626,1634561391,673211502,539580484,1869376609,1948283767,1679844712,1819308905,1864399201,1752440934,1969627237,1914727532,1701277281,1718553101,1835363616,779711087]},{"sector":7,"length":512,"data":[544491808,1936028533,1953384736,1970434661,824210544,539781173,943540289,1713399863,1696625263,1852142712,543450468,1869440365,1629518194,1936024419,168636019,1931506761,1819635560,1700929636,1953459744,1948279909,745824616,1701345056,1970413678,1852403310,1853169767,544367972,2017796193,1684955504,1293968485,1919905125,1632444537,1701273966,1160257650,740904269,1850280461,1920099700,544501877,745026865,1028145440,543700792,1634231650,544433526,1734962291,2037150824,1668180256,1769172591,1852142707,1629502068,1701995620,1936028531,1818583584,824211311,808464433,168650800,543519329,1634166130,1684366450,544432416,1701734764,539783777,1818847351,1684086885,1936028260,544433523,824196414,808464433,1629513776,1914725746,1918986085,543450468,1881174881,1769175400,778854755,1917848077,1769173861,1159751534,1380275278,1952866592,1629516389,1836401696,1483022448,1684956532,1830839397,1919905125,1868767353,1851878765,1769414756,1629514860,1919906933,1634037861,1851859060,1711934820,1952673397,544108393,1763734369,1851859046,1701344367,1967399026,1696624749,1852142680,543450468,1869440365,1663072626,1634561391,1998611566,1696625505,1919251566,221144165,755633418,168635693,222628365,1953383690,1679848037,543257697,1869901417,1835363616,226062959,1393167626,1635020409,1159740024,1684300064,1936942450,1768708896,224228467,1409944842,1159751016,1919251566,1836016416]},{"sector":8,"length":512,"data":[1684955501,692398112,544434464,1684370293,544175136,1702129253,1633951858,1763729780,544175214,1869440365,539916658,543516756,1970365810,1684370025,1684081165,1936028260,1634738291,1701667186,544367988,1667592307,1701406313,1752440947,1953701989,1769239137,1814062958,1952539503,544108393,1998615649,1751345512,544175136,1702129253,1946815858,1679844712,778138721,543574304,543516788,1919181921,544437093,1634886000,1702126957,1868832882,1847620453,1931506799,1768121712,1629518182,1734701856,1953391981,1162092588,222778690,1702065418,1396973683,1716068398,1701344288,1953525536,1634627433,1768693868,1881175155,1835102817,1919251557,544434464,544501614,1818455657,1684366453,1162092588,222778690,1936286730,2036427888,1752440947,2036473957,1981834612,1702194273,544497952,543516788,1667592307,1701406313,1684086884,1936028260,1851859059,1919950948,1953525103,1868963955,224469106,2003136010,1818326560,539911541,543516756,1667330163,1918984805,544370464,1970170221,1701519475,1633886329,1700929646,1702065440,1869881444,1987013920,1869881445,1701344288,2019913248,1862929780,1919950962,1869182565,1646293877,778400889,1701990432,1852404595,1752440935,1850024037,544367988,544826731,1752459639,544503151,1702129253,1735289202,1981833504,1702194273,1702103565,1852403058,1936028769,1701344288,1836016416,1684955501,1716068398,1701344288,1936288800,1634738292,1701667186,544367988]},{"sector":9,"length":512,"data":[1763734377,1970037614,744777060,544500000,225337699,1852793610,1852399988,544240928,941649780,1954112032,1635131493,1936029036,1885696800,1952543329,1646290021,1886593145,1936024417,1868767276,1935764845,1919885356,1650553888,168635507,795111009,1629516399,1935762208,1769152613,1718185575,1851876201,1953702004,1735289202,1668179232,1702063980,1852383332,1852404512,543517799,1679848047,1818391919,1970348133,1936028783,218762542,1635271946,1701605485,168639091,1160579597,808464672,540094496,807416368,755633459,808525893,1093083184,220676930,541404426,540028977,1128415527,221257767,755633418,168635693,222693901,1818838538,1701650540,2037542765,168626701,1953397075,540702817,1634869318,543516526,1953720684,168626701,543516756,1819044166,1836016416,1684955501,692463648,1818846752,1629516652,1835363616,544830063,1768383858,544435823,1752459639,1646289184,543519865,1953784176,778990181,168626701,1835104325,979725424,1867778573,1818846752,1752440940,1768300645,544502642,808464440,2036473960,544433524,1663067759,1701999221,1679848558,543257697,1835492723,544501349,1752459639,1952542752,1852990836,540357920,221921601,755633418,540024902,808984652,891301936,1094787125,168626701,221064493,1191841034,1866926605,168626701,1953397075,540702817,1029382215,1919181921,1567847269,1919048480,812343653,1701995040,774990689,224210478,1409944842,1193305448]}]],[[{"sector":1,"length":512,"data":[1868767343,1851878765,1193812068,1998597161,544105832,1684370293,1953068832,1953853288,1881170208,1835102817,1919251557,1633886252,1936028533,1111835680,1948272469,1661603183,544829551,543516788,1953394531,1937010277,543584032,543516788,1768383858,1919251571,1918989856,1818386793,1948283749,1752440943,1667309669,1818326388,1431323424,1701972493,1953720679,544436837,543452769,1701209701,1986622563,544828517,1886221674,544175136,543516788,1953721961,1952675186,544108393,1126200417,1346976339,1768366124,1735289206,1969621517,1663069292,1920233071,1948281967,1752440943,1919950949,1634887535,1700929645,543649385,1969382756,1684367207,1162092590,541545794,1819044215,1734701600,225339745,1852793610,1819243124,1701345056,1752440942,1919950949,1634887535,1702109293,1852403058,1936028769,1750343726,1886330981,1852795252,1629514849,1701995620,1881174899,1835102817,1919251557,1633880589,1700929646,1702065440,1869881444,1701868320,2036754787,1701344288,1635021600,1852404850,1684086887,1936028260,1411395187,1864394088,1869182064,543973742,1634038370,1768910955,168653934,1953720684,1851876128,543515168,1684370293,544175136,1667592307,544826985,1948282997,808525935,1835365408,1634889584,1646295410,1801545074,1852403568,1684086900,1936028260,779314547,1867778573,1718182944,1701995878,1634301038,1948280180,1629513064,1701995620,1881174899,1835102817,1919251557,1869768224,1752440941]},{"sector":2,"length":512,"data":[1919033445,1886085477,1953393007,1936288800,168635508,543516788,1919181921,544437093,1634886000,1702126957,1970086002,1646294131,1919950949,1684366181,1998611557,543716457,572550753,539894333,1702129486,1634235424,1752440948,1644825957,1801545074,1852403568,1684086900,1936028260,544433523,1953723757,1768907552,1684628334,1769414757,1948280948,1931502952,1953653108,543584032,1635131489,224684396,1936615690,1668641396,1852795252,1867784238,1936028192,543518069,1667594341,1869182069,1717641326,544367988,1919033441,1886085477,1953393007,1937055788,1752440933,1866932325,1868761613,1851878765,1769414756,1970235508,543236212,1634886000,1702126957,168636018,757926413,218762541,168642570,544761160,543450209,543452769,1952609651,1952670066,168626701,543516756,544761160,1835888483,543452769,539576360,1886220131,1936028789,1701344288,1836413728,1684955424,1718182944,1701995878,543515502,1948280431,1746956151,1847621733,1700949365,221148018,1393167626,1635020409,1210071672,1818326560,540108149,1970037110,168637029,2017790477,1819307361,221934437,1208618250,1179005216,221262112,808595466,825237574,168642117,541592077,808464434,808722480,168636464,842018864,808464436,808464416,808469297,218762544,757935370,168626701,1225395529,1953853550,1869768224,793321581,1869619279,168653938,2035485197,2019652718,541663290,1953656688,538970637,538976288,1464410144]},{"sector":3,"length":512,"data":[1919905824,537529716,538976288,1226842144,1869619268,168653938,1750338061,1850286181,544503152,1835888483,543452769,539576616,1937072483,1142977381,1196769861,544175136,1684104562,1684955424,1936286752,2036427888,1701344288,1818326560,168650101,1836020326,1701344288,1701868320,1768319331,1226859621,1881165615,779383407,1701336096,542591264,543452769,1981826121,1634300513,544437358,1684104562,1998610720,543453807,168653423,1651863396,1870095724,1981834354,1702194273,1869768224,1752440941,1886593125,1718182757,543450473,542060361,1953656688,1867391022,1948280180,1226859880,1868767300,1851878765,1661603172,1864396385,544828526,1965057378,543450483,941649519,909652784,544370464,1702125932,1919950962,1936024431,1936879475,218762542,757935370,168626701,1275727180,543449455,1701603686,544370464,1802725732,1667592992,1936879476,168626701,1953397075,540702817,1633361996,1701995620,224228211,538976266,538976288,1629506592,1701995620,1679848307,1702259058,1635021600,1702065266,1919906915,1836412448,1869768034,1667593062,1936879476,168626701,543516756,1684107084,1836016416,1684955501,692856864,544434464,1684370293,544175136,1684107116,1713398048,543517801,1869901417,1835363616,779711087,1701336096,1818846752,1869881445,1869351437,1763730529,1886593139,1718182757,543450473,1752459639,1701344288,1835093536,1868767333,1851878765,1311252580,1411395113,1864394088]},{"sector":4,"length":512,"data":[1869182064,543973742,1919181921,225669989,1918988298,1952804193,1931506277,1768121712,1936025958,1701344288,1634692128,1684086884,1936028260,1411395187,1679844712,1969317477,1814066284,543449455,1919181921,544437093,168653673,825905987,1713385520,1629516399,1713400940,1936026729,1752461088,1948283493,544104808,541415493,1701603686,1713384563,1998615151,1751345512,1718511904,1634562671,1852795252,225339680,1701344266,1818846752,1701322853,1919247457,1952801824,1768780389,544433518,543516788,1684107116,1684300064,1936942450,1715544110,544367988,1430406468,1869357127,544433249,224749684,1818846730,1953046629,1952805664,1480728691,542655290,1948282740,1713399144,543517801,1702521203,544106784,1702132066,168636019,1750338061,1867260005,1663067233,1634561391,1663067246,1629515361,544174956,1965057378,543450483,1814065012,543449455,543518319,1830842991,543519343,1768386412,543973731,1952671091,225669743,1869768202,543236205,1802725732,1769104416,1763730806,544175214,1430406468,544417607,1869440365,539916658,543516756,1986622052,1752375397,1684829551,543515168,1667592307,1701406313,1628048740,1026564211,824192065,539771453,541277490,778269797,168626701,221064493,1292504330,1867319821,1679844726,224490593,1409944842,1293968744,543520367,1835888483,543452769,539577640,1768976227,1629516645,1835363616,544830063,1768383858,1948282479,1851859055,1701344367]},{"sector":5,"length":512,"data":[1869357170,1769234787,539913839,168650313,1920298867,1629513059,1679844462,1769239397,1769234798,1864396399,1819436406,539783265,1953653104,1718558835,1701344288,1970238240,543515506,1819044215,543515168,1919252079,1953067639,778986868,168626701,1953397075,540702817,1634869325,543516526,1919181921,225669989,755633418,168635693,223152653,1952797450,1431323424,1431324207,1685024032,1143480421,1196769861,1852776536,220821868,1393167626,1635020409,1293957752,1869437728,1316775268,224220284,1409944842,1293968744,1836016416,1684955501,692922400,1952805664,1752440947,1969430629,1852142194,1346576500,1851859029,1346773092,1869422677,1713399140,1948283503,1092642152,1835365235,543517794,224685665,1634620682,1835365235,543517794,1835888483,1935961697,1750343726,1869422693,1981834596,1702194273,544434464,1868963888,543236210,909652024,942684207,773860408,891301422,1919903264,1344299296,1769238117,221015413,1713387018,1629516399,1852133408,1836411252,1869762592,544370464,1702125932,1394617970,1768121712,1852406118,541991015,1768189545,1702125923,1869488243,1431324192,1684955424,1701868320,2036754787,543649385,1762266452,1667851374,1936028769,941646112,909652784,1953068832,543236200,942813240,168635959,1867778573,1936286752,2036427888,1701344288,1920295712,1953391986,1431323424,1684955424,1431324192,1685024032,1937055845,1752440933,541925477,1835888483,543452769]},{"sector":6,"length":512,"data":[1752459639,544503151,1634738273,1701667186,779249012,168626701,221064493,1309281546,1699940877,1919950964,1634887535,1634607213,1629513069,1629512814,1836410738,1937010277,168626701,1953397075,540702817,1768300622,1886610796,1528849253,1969713761,1953391981,168648051,1750338061,1632510053,1663067501,1634561391,673211502,1763715406,1937055859,1948279909,1852383343,544503152,1768300641,1634624876,673211757,1970561889,2037148769,543236140,1701603686,1886587405,1718182757,1952539497,544108393,1952540788,1851876128,1668180256,1701082476,1679843616,1702259058,1684955424,1881170208,694711393,1919903264,1931501856,1702060661,1852142961,1275727220,543449455,1461744239,1702127986,1836016416,1684955501,1698832430,1937072483,1752440933,1632510053,1663067501,1634561391,1965057134,544433523,543516788,1970104691,1702125932,1342836068,1629507667,543236211,1717990754,539783781,1663071337,1629515361,544174956,1965057378,543450483,1696624500,1919251566,1836016416,1684955501,1852402720,1918967909,1701672295,225670254,1684955402,544370479,1953068915,1936025699,1919903264,1701344288,1869770784,1835102823,1768251936,1679845230,1735746149,778331495,168626701,1629513026,1701994871,1634235424,1752440948,541991013,1835888483,543452769,1702128737,1948283762,1981834600,1702194273,543584032,543516788,1914722369,1936287589,779249012,168626701,221064493,1326058762,1968114189,1953853556]},{"sector":7,"length":512,"data":[544175136,542060361,1953656688,168626701,1953397075,540702817,1869619279,1646294130,224752761,538976266,538976288,542592800,1953656688,1919907616,537529700,538976288,1327505440,1869619268,1679848562,1685221239,168626701,543516756,1886680399,1663071349,1634561391,673211502,1663052111,1702065505,1162092659,541545794,1998614388,1702127986,1701344288,1701868320,1768319331,1981834341,1702194273,1869875725,1701344288,1701868320,1768319331,1226859621,1881165615,779383407,1701336096,542592800,543452769,1981826127,1634300513,544437358,1953067639,543236197,1685221239,225603360,1970234378,2003135586,543453807,1970037110,1869881445,1701344288,1701868320,1768319331,1226859621,1881165615,779383407,1953451552,1752440933,1146036325,1836016416,1684955501,1633880589,1852776558,1646295404,1937055845,1864393829,808984686,540424243,1814065775,1919251553,1869770784,1936942435,779317871,168626701,221064493,1342835978,1917848077,1701143407,1920213092,224748385,1393167626,1635020409,1344289400,1631410976,1701995620,542995315,1836412507,1567778146,168626701,543516756,1668248144,543450469,1835888483,543452769,539578408,1668183398,1852795252,1768693875,1948280171,1411409256,1701011826,1836016416,1684955501,693381152,1919903264,1819042080,1852377613,1970435187,1869182051,1864397678,1919248500,1634235424,1752440942,1701978213,1952540016,1163012128,1931487568,1852404340,1277176935]},{"sector":8,"length":512,"data":[743460687,1279345440,1629498444,1226859630,168645710,1953721961,1952675186,1936617321,1866866734,543236210,1701864818,1931506785,1852404340,1852383335,1970435187,1869182051,1142959214,1196769861,1702389024,1702131043,1752440947,1762266469,1920234350,1769235317,1948282479,1868767343,1701605485,1852795252,1866866734,543236210,1347374924,1936615712,1668641396,1852795252,1162092588,541545794,1667594341,1936028789,1701344288,1852115469,1701996916,1869573152,1869881456,1836016416,1952803952,778989417,1919895072,1126195488,541871169,1226863215,539776078,1430406468,2019893319,1953850213,1948283749,1696621928,1919513710,1661603173,543976545,1763734127,1919251566,1953527154,544240928,1629515636,1763730542,1970037614,1735289188,1701344288,1952805408,544109173,1953721961,1952675186,778989417,1952858400,168653413,1667594341,1869182069,1936269422,1836016416,1952803952,1142959205,1196769861,1852793632,1970170228,1629516645,1953046643,1701798944,1868963955,1752440946,1918115941,543515489,1835888483,778333793,1917848077,1769173861,1159751534,1380275278,1952866592,1629516389,1869762592,1684366691,1836016416,1684955501,1818851104,1969299564,1701998452,1952540016,1684955424,1853187616,1869182051,1935745134,1718159885,1869504800,1919248500,1869762592,1684366691,1836016416,1684955501,1935767328,1953391904,1684370021,218762542,757935370,168626701,168645200,1668248144,543450469,1970562386]},{"sector":9,"length":512,"data":[168652402,2035485197,2019652718,1380982842,168626701,543516756,1668248144,543450469,1970562386,673214066,539578960,1835888483,543452769,1953069157,1752440947,1969430629,1852142194,1970479220,1970238050,1701734772,544825888,1668248176,1768187237,168650606,1953718640,1701344288,2019913248,1163010164,1377840212,541480005,1226863215,542393682,1953721961,1952675186,544108393,1667852407,1936269416,1953459744,1936027168,543450484,1881174639,1919381362,168652129,1836213620,1952542313,778989417,1819033888,1752461088,1763734117,1920234350,1769235317,544435823,1818455657,1852400757,1851859047,1701716089,1684370547,1818321696,1864397676,1852383346,1920099700,1937010805,1918962189,2019893349,1953850213,1998611557,1869116521,1931506805,1886416756,778530409,168626701,221064493,1359613194,1968245261,168653929,2035485197,2019652718,223420474,1409944842,1361077608,544500085,1835888483,543452769,539578664,1953069157,1162092659,776426818,168626701,221064493,1376390410,1766066701,1634496627,1919885433,1685024032,544826985,1768383858,1919251571,218762611,1853444874,980967796,1528844832,1768383858,1919251571,1985683549,1702194273,218762589,1701336074,1734693408,1702130537,1868767346,1851878765,1378361444,1998597161,544105832,1684370293,1953068832,1953853288,1881170208,1835102817,1919251557,1633886252,1936028533,1162086925,541545794,1679847284,1819308905,1948285281,1663067496]}],[{"sector":1,"length":512,"data":[1702129263,544437358,1948280431,1948280168,1701278305,1919950964,1634887535,544417645,542462019,1768383858,1919251571,168636019,543516756,1769238639,1818324591,1734701600,1702130537,1634738290,1701667186,544367988,1819044215,1969316640,1142973811,1196769861,544175136,1886611812,544825708,224749684,1852793610,1953391988,1718558835,1701344288,1734701600,1702130537,1851859058,1919950948,1953525103,1919903264,1847615776,1981839205,1702194273,1750540334,1142976101,1196769861,1768163853,1634496627,1948283769,1663067496,1702129263,544437358,1948280431,1914725736,1936287589,1936876916,1953046572,1668179232,1936024687,1701344288,1869770784,1936942435,168653423,1734437990,1935745139,1819239968,1937207148,218762554,538976266,1734437958,538976288,538976288,538976288,1699946528,538976372,1634036803,537529714,757932064,757935405,757935405,757935405,757935405,757935405,757935405,221064493,538976266,1919252047,2003790950,538976288,538976288,1448026144,538976288,168646222,1142956064,1667592809,1852795252,538976288,538976288,542000160,1428168736,537529680,1850286112,1920099700,544501877,538976288,538976288,538986821,1229201440,538970637,1734955808,538976366,538976288,538976288,1310728224,538976327,223105056,538976266,1869768026,538976288,538976288,538976288,1381638176,538976288,168647246,1092624416,1818851445,2037539177,1918976800,538999154,541278496]},{"sector":2,"length":512,"data":[1310728224,537529665,1632641056,2037672306,538976288,538976288,538976288,538985808,1330651168,538970637,1918976800,538999154,538976288,538976288,1126178848,538976345,222514720,1225395466,1752440934,1701978213,1953720679,1629516389,1836410738,544501349,1730179945,1852143209,1953046572,1851876128,543515168,1701670249,1952541028,544828517,1819045734,1684371311,2036468237,1701344288,2003136032,1818326560,539911541,1881173838,1886220146,1769414772,1629514860,1634037872,1852383346,1634235424,1633886324,221144435,1409944842,1881171304,1701015410,1919906675,1634493984,1663071079,1646292577,1751326821,1701277281,1852383332,1870099488,2036430624,1411395187,1713399144,1953722985,1853453088,544760180,1851877475,225666407,1684957450,1684633193,543973749,1734437990,168639091,1378683405,1528841760,1316771407,1313111126,2085639548,1148995909,1196325961,2085376124,1316770394,1128365146,2084654716,1350321488,1497594959,1564692092,168626701,543516788,1701344367,2037588082,2019652718,1818851104,1702043756,1752440948,1163599973,541869661,1768383858,1919251571,218762554,542256394,1180517723,1530667084,1870093668,1981834354,1702194273,218762558,757935370,168626701,168643922,1886611780,544825708,542657869,1768383858,1919251571,1143480435,1196769861,1852776536,220821868,1393167626,1635020409,1377843832,218762573,1701336074,541938208,1835888483,543452769,1886611812,1937334636]},{"sector":3,"length":512,"data":[1481461024,1734701600,1702130537,673215346,1629513321,1818845558,1701601889,168635945,757926413,218762541,223236618,1936278538,2036427888,1431324192,1734701600,1702130537,168653682,2035485197,2019652718,1314005050,224219739,1409944842,1377854824,1868767310,1851878765,1768169572,1634496627,1752440953,1868767333,1852142702,1718558836,1701344288,1869375008,1852404833,1869619303,544501353,1768383858,1919251571,1142959731,1196769861,1913261400,1701080677,1948283762,1663067496,1702129263,1864397934,1752440934,543519589,1768383858,1919251571,1852383347,1701978656,1650549857,539125100,1634692198,1735289204,1768910880,1713402990,1634562671,168635508,1430406468,1768169543,1634496627,1948283769,1663067496,1702129263,1763734638,1634869358,1701322871,1868963960,1952542066,1681989678,1769236836,1818324591,1142978924,1196769861,1970479192,1919905904,168653684,543516788,542264914,1835888483,543452769,1667852407,1768169576,1634496627,1948283769,1663067496,1702129263,1763734638,1634869358,1701322871,1868963960,1952542066,218762542,757935370,168626701,168646738,796157267,1634036835,2019893362,1684956532,673211493,1647129139,539587689,1768383858,1919251571,1685024032,218762597,1853444874,980967796,223892000,1409944842,1377854824,1868767320,1851878765,1936269412,1952669984,543520361,1948280425,1663067496,1701999221,1126200430,1763726672,543236211,942878776,1919885366,1952801312]},{"sector":4,"length":512,"data":[779249012,1481771533,1818851104,1869881452,1701603175,1952801312,1852138871,1701344288,1835627296,543517808,1647130161,1914729577,1936287589,544367988,1886611812,544825708,1768453928,1763731555,1752440947,1678380389,1969317477,539587692,543452769,543516788,1819047270,758264608,544500066,1768383858,1919251571,1936286752,2036427888,218762542,757935370,168626701,1393167699,1668440421,1701650536,2037542765,168626701,1953397075,540702817,1634869331,543516526,1953720684,168626701,1918985555,673212515,1763715411,1937055859,1948279909,1768300655,1948279918,1864394088,1920295779,1668179314,1718558821,1931501856,1768121712,543385958,1702132066,544370464,1769104755,168653669,1646290543,1936028793,1953068832,544106856,1702043745,1852140903,168636020,2017790477,1819307361,221934437,1409944842,1768300655,1629512814,1864395884,1920295779,1668179314,1864397669,1126637670,825368644,1852383271,1835363616,544830063,1768383858,1142976111,808532563,1177627952,168639046,1395460621,808464672,824208416,1126182960,825368644,824183309,976499506,842150192,824183309,976499506,1128608048,168626701,1713401684,543452777,543976545,1769108595,544434030,1818585122,539127660,1142976105,825244243,1177366576,977684038,168626701,824202029,1176514608,541476422,1818585127,220688236,842080266,809120819,221393457,842080266,825898035,221327922,842080266,1161442355,222512193]},{"sector":5,"length":512,"data":[755633418,168635693,223611405,1634882570,168650083,2035485197,2019652718,542384186,1684094299,1936028260,1528847731,1651340654,224227941,1409944842,1411409256,1701011826,1836016416,1684955501,693381152,1752637484,1965059685,543450483,1752459639,544503151,1634738273,1701667186,745694580,1969316640,544433523,1430406468,1946815815,2019893359,1953850213,1752440933,1852383333,1970435187,1869182051,1952522350,978535200,539906121,1868981570,1948280178,1763730792,1920234350,1769235317,1763733103,1695157619,1969448312,744777076,1701344288,1852793632,1953391988,1718558835,1701344288,1734701600,1702130537,1635131506,1650551154,544433516,543519329,1768976227,1948279909,1752440943,1628048741,1635087459,1346576492,1701978197,1953720679,779317861,1952858400,1948283493,1763730792,1920234350,1769235317,1746955887,1696625505,1969448312,744777076,1684955424,1685091616,1684370529,1752435213,1667309669,1818326388,1431323424,1734701600,1702130537,673215346,1818455657,1852400757,1346969703,1948265513,1663067496,1702129263,544437358,1948280431,1629513064,1635087459,1124732268,1914721616,1936287589,1936876916,1701994784,1886348064,543450473,1801675106,544175136,543516788,1768383858,1919251571,1918989856,1818386793,1629516645,1948279918,168650088,1953394531,1937010277,543584032,1936025716,1635131493,1650551154,544433516,543519329,1886611812,1702453612,1411395172,1864394088,1869182064]},{"sector":6,"length":512,"data":[543973742,1919181921,225669989,1918988298,1952804193,1663070821,1646292577,1937055845,1948279909,1886593135,1718182757,1752440953,1953701989,1769239137,1629513582,1701995620,539915123,543516756,1769238639,1818324591,1868761613,544501365,1634886000,1702126957,1633886322,1700929646,1702065440,1869881444,1701868320,2036754787,1701344288,1836412448,544367970,1763731055,1920234350,1769235317,544435823,168652660,1667594341,778400885,544166944,1717987684,1852142181,1952541044,1752440933,1684086885,1936028260,1634738291,1701667186,544367988,1836020326,1701344288,1970234144,168653934,1634886000,1702126957,1948265586,1629513064,1701995620,1881174899,1835102817,1919251557,1937075488,1700929652,1701998624,1701078371,1769414756,1629513844,1025646702,1310731810,224752751,1634235402,1752440948,1768300645,544502642,1702132066,544497952,543516788,1667592307,1701406313,1684086884,1936028260,1970086003,1646294131,1752440933,1953701989,544502369,1629513327,1635125773,543451500,1953721961,1952675186,778989417,1701990432,1852404595,1313153127,542262612,1702127201,543236210,1667330644,1868767333,1851878765,1769414756,1629514860,1919906933,1634037861,1628048756,1713398894,1952673397,544108393,1763734369,1851859046,1701344367,1918115954,543515489,1835888483,543452769,544432503,1702129253,778331506,168626701,1948280393,1663067496,1701999221,1126200430,1346976339,1768910880,544437358]},{"sector":7,"length":512,"data":[1629515636,1313415278,1886330964,1701080931,1162092588,658986306,1700929651,1769365864,544372079,1701864804,225666158,544108298,543516788,1920103779,544501349,1970037110,1718558821,1701344288,541938720,1769238639,539913839,1763731017,1936269428,673198112,543516788,1634100580,695495797,1162092588,222778690,1818851082,1701978220,1852399975,1852793632,1819243124,1701345056,1752440942,1313415269,1634213972,1700929651,1881173605,1701015410,1684370291,1716068398,541938720,824210281,1162092588,222778690,1818851082,1953701996,572551269,1869901417,1752440866,1313415269,168635988,757926413,218762541,223171594,1634882570,1830839651,224748655,1393167626,1635020409,1411398264,811278413,224211324,1409944842,1411409256,1701011826,1685015840,1868767333,1851878765,1411915876,539765069,1937007987,1701344288,1414416672,1634890784,1830839651,778396783,543574304,1763734633,221257843,1701344266,1650811936,1701275509,1769414770,1914727532,1767991141,1868767342,1869771886,1752637548,1948282469,1226859880,1746949198,1646293857,544105829,1668248176,1702064997,168636004,1411409481,1936269389,539767072,543516788,1969382756,1919248231,1818851104,1953701996,572551269,1869901417,1752440866,1313415269,168635988,757926413,218762541,168645898,1935765077,1651336563,1763730796,1920234350,1769235317,225668719,1393167626,1635020409,1428175480,1634884384,1566926702,168626701,543516756]},{"sector":8,"length":512,"data":[1935765077,1651336563,1663067500,1634561391,673211502,539765077,1852139639,1702065440,1769414756,1970235508,1851859060,1634738297,1701667186,745694580,1969316640,225666419,1111835658,1948272469,1701978223,1629512801,1869770864,1634560376,2037146996,540160800,1702132066,1718558835,1835363616,544830063,1918989427,1735289204,544497952,543516788,1953066601,225206633,978535178,1981829193,1702194273,1886593139,1718182757,543450473,1948282473,1713399144,543517801,1684104552,1763734117,1851859046,1163412768,1818846752,1936269413,1634692128,744777060,1919879693,1635021600,1852404850,1952522343,978535200,1747988529,543582496,544829025,1701344367,2037653618,1864394096,1768300646,1864394092,1869488242,1818846752,1936269413,1634692128,778331492,1866861069,1634017394,1763731555,1920234350,1769235317,1763733103,1752440942,1830843241,1919905125,1142959225,1196769861,1936286752,1702064993,1701601901,1948786803,1936613746,1702125932,1711934835,544042866,1751343469,543518313,1701080931,544175136,1702064993,2037146221,1851878432,1734440295,1948264805,1763730792,1920234350,1769235317,1629515375,1679844462,1819308905,225671521,1701344266,1684300064,1936942450,1752440876,1634541669,1852401763,1868767333,539780452,543452769,543516788,1920102243,1869640549,1852400750,1935745127,1651336563,1814067564,1969712737,778397537,1750338061,1886330981,1852795252,1914727521,1701277281,1918988320]},{"sector":9,"length":512,"data":[1952804193,1663070821,1646292577,1937055845,1948279909,1886593135,1718182757,543236217,1918989427,1735289204,1684300064,1936942450,1862929708,543236210,1918989427,1735289204,1684955424,1684956448,543649385,1919181921,745763685,544370464,1953701985,1769239137,1629513582,1701995620,1629516659,1629512814,1852140576,778597479,1968376333,1902474082,1953391989,1634620704,1835365235,543517794,1835888483,1935961697,1953068832,1953853288,2037276960,1918988320,1952804193,1663070821,1702065505,1111835680,1948272469,1930038639,1953653108,544497952,543516788,1953721961,1952675186,544108393,1819045734,1852405615,1752440935,1634476133,1763734643,1920234350,1769235317,1881173615,1701015410,1684370291,226058784,1701344266,1701998624,1970235766,1851072627,1702064993,1701601901,1836016416,1684955501,1917853742,1769173861,1159751534,1380275278,1952866592,1629516389,1851072622,1702064993,1701601901,1868761613,1851878765,1769414756,1629514860,1919906933,1634037861,1851859060,1969627236,1769235310,1629515375,1718165619,1869504800,1919248500,1634620704,1835365235,543517794,1835888483,224685665,1953068810,1953853288,1914724640,1701277281,1935767328,1953391904,1684370021,218762542,757935370,168626701,1443499350,544695657,1885957222,168626701,1953397075,540702817,218762582,1701336074,1701402144,1818632311,1663070313,1634561391,673211502,1679829334,1819308905,544438625,543516788,1735357040]}]],[[{"sector":1,"length":512,"data":[544039282,1886680431,1931506805,1701147235,1718165614,1111835680,168642389,544432503,1918989427,543450484,1752459639,1701344288,541470496,1769238639,539913839,1936028240,1851859059,1701519481,1869881465,1952805408,544109173,1142976372,1196769861,218762542,757935370,168626701,1460276567,1702127986,1818846752,1919885413,1936286752,1702043755,1919906915,218762611,1853444874,980967796,1528846112,1919181921,1567847269,538970637,538976288,542580768,1919181921,544437093,1986622052,1953701989,1937011297,1869898597,1970151538,1919246957,1702061679,1919906915,218762611,1701336074,1769101088,1663067508,1634561391,673211502,1663052119,1702065505,1162092659,541545794,1998614388,1702127986,978862624,1646286915,1936028793,544175136,543516788,1886680431,168653941,1701603686,1750343726,1886330981,1852795252,1629514849,1701995620,1881174899,1835102817,1919251557,1701868320,1768319331,1948283749,1931502952,1953653108,543649385,1920298867,168650083,1919181921,779318117,1701336096,1717920800,1953264993,1635021600,1852404850,1869815911,1701016181,1684300064,1936942450,544434464,1747988529,1867391022,1948280180,225730920,1634692106,1735289188,1713398048,543517801,1836020326,1701344288,1111835680,1663059797,1634561391,1814062190,543518313,1998615151,543716457,543516788,1684107084,1836016416,1684955501,1769409037,1931504748,1109423205,1480800856,544175136,543516788,1702521203]},{"sector":2,"length":512,"data":[543584032,543516788,1701603686,543236140,1952540006,543519349,1634036835,544828530,1702129257,1684366446,1869875725,1684627744,544106784,543516788,1668571504,1735289192,543584032,1667594341,1650553973,779314540,168626701,543516756,1953067607,1868767333,1851878765,1633886308,1818304622,1646292851,1937055845,1948279909,1920409711,543519849,543518319,1830842991,543519343,1768386412,543973731,1952671091,225669743,544175114,1768169569,1679846259,1702259058,1750343726,1919164517,543520361,1970235507,1646290028,1886593125,1718182757,543450473,1713402721,1948283503,1277191528,543449455,1835888483,778333793,168626701,221064493,1477053706,2017790477,1684955504,1830839397,1919905125,1160257657,539579213,1835888483,1935961697,168626701,1953397075,540702817,1663058264,1953396079,2035485197,2019652718,1146626106,1851877408,224750692,1853444874,980967796,541939744,1768386412,1886151011,543516513,1937336432,1818321769,1701273968,1851877408,224750692,1853444874,980967796,542267424,1684955496,1663067500,1953396079,2035485197,2019652718,1398284346,168626701,543516756,542330181,1835888483,1935961697,1096296480,1146626092,1297621036,1381507116,1398284332,1918967849,1937055845,1948279909,1701847151,1919903346,1635131501,1970235762,1158286707,1713394509,1952673397,1936617321,1096294446,1819042080,1952539503,1696625509,1851879544,543450468,1869440365,539785586,1679836248]},{"sector":3,"length":512,"data":[1819042149,1952539503,168653669,1634760805,1684366446,1835363616,746156655,541939744,1936744813,1814061344,1667852143,1881173089,543516513,1629515636,2036887584,1633905011,1634738284,221013351,542267402,1818322290,1633906540,544433524,1634760805,1684366446,1835363616,544830063,543452769,1679840088,1819308905,544438625,1634760805,1684366446,1835363616,544830063,1952543859,221148021,1953451530,1752440933,2019893349,1684955504,1830839397,1919905125,1868767353,1851878765,1629516644,1679844722,1650553705,543450476,1679849826,1969317477,1931506796,1701015145,1701344288,1628048761,1864394098,1768693862,543519860,543519605,1948282740,1667854457,1679846497,1735746149,1735289191,1750343726,1634541669,1700929657,1634624800,1684368482,544825888,1768318308,1735289198,1296370189,1145914195,544175136,1852383281,1111835680,1093551957,1629506899,1914725486,1769300581,1852400748,1162092647,541545794,543452769,1430406468,221141063,755633418,168635693,1967524365,1769235310,1818324591,226063465,757935370,757935405,757935405,168635693,544370502,543516788,1667330644,1344285797,1701015410,539780197,543452769,1768383826,1919251571,1836016416,1684955501,1629498483,1919251558,1111835680,1663059797,1819307375,1936028773,1752435213,1886330981,1952543333,1936617321,1936024608,1651077731,1629512805,1702260578,1953046572,1936286752,1702064993,1701601901,1752440947,1701716069,1763734648]},{"sector":4,"length":512,"data":[1920234350,1769235317,168652399,543452769,1886611812,1937334636,1701344288,1684300064,1936942450,543584032,543516788,1953721961,1952675186,745434985,1701344288,1667329312,1701734760,1685021472,1629498469,168649838,543516788,1920102243,1869640549,1852400750,1935745127,1651336563,1814067564,1969712737,778397537,1919895072,1701344288,1634882592,1629513059,1344300142,1701015410,168649829,1835888483,1935961697,1718165548,1701344288,1936615712,1668641396,1852795252,1852793632,1852399988,543236211,1869440365,1864399218,1634887024,539780206,1430406468,1768169543,1634496627,168653689,543516788,1919181921,544437093,1952540788,1701344288,1701867296,1684955506,1717924384,544436837,1629515636,1948279918,1663067496,1702129263,544437358,1948280431,225730920,1684300042,1936942450,1750343726,1702043749,1852140903,1701978228,1953720679,1931506277,1768121712,1684367718,544106784,543516788,1919181921,544437093,1948283753,1679844712,1969317477,168653932,1835492723,544501349,1768383858,1919251571,1919903264,1701344288,1936615712,1668641396,1852795252,1919885356,1701344288,1734701856,1953391981,1734701600,1702130537,1930038642,1768121712,1684367718,544825888,1702043745,1852140903,1986994292,1769108069,221144420,1326058762,1881171310,1634234981,1847620464,1865248367,1869182562,1965060981,1713399155,1948283503,1377854824,1936287589,544367988,1835888483,543452769,1819635575,1700929636]},{"sector":5,"length":512,"data":[225408032,1852793610,1819243124,1701344288,1635021600,1852404850,1684086887,1936028260,1868963955,1752440946,1701716069,1411413112,1701011826,544370464,1668248144,543450469,1835888483,224685665,544825866,1684107116,543649385,1701716065,1635131511,543520108,1869901417,542327584,795111009,1226863215,1092628048,1629512814,1735290732,1701344288,1835103008,1768693861,745760110,1869482509,1651453294,1970235766,1937055859,1713402725,1948283503,1092642152,1835365235,543517794,543452769,1702129221,1868767346,1851878765,1998615396,1684829551,543515168,168652660,1702128737,1752440946,1852383333,1970435187,1869182051,1629516654,1865376878,1633951858,1713398132,1948283503,1881171304,1919381362,1646292321,1735289189,1650811936,1701275509,168636004,1750534669,1142976101,1196769861,1869770784,1936942435,1629516645,1634882592,539780451,1668248144,744777061,1734693408,1702130537,1864379506,1851072626,1702064993,1701601901,1836016416,1684955501,1762266412,1768169588,1634496627,1629516665,1835365235,544828514,1735287148,1701273973,1935747104,1936024608,1651077731,1629512805,1702260578,1868963881,1851859058,2036473977,1981834612,1702194273,1919879693,1902474016,1668179317,1718558821,1954112032,1635131493,1936029036,1634235424,1953046644,1667592736,1768843119,544433530,1629516641,1818326560,1763730537,1920234350,1769235317,221146735,1919895050,2037276960,1752461088,1646293605,543519865]},{"sector":6,"length":512,"data":[1970037110,1142959205,1196769861,1936286752,2036427888,1752440947,1111760997,1702064160,762274933,1953721961,1952675186,225341289,1819239946,1702326124,2036473956,1701344288,1954112032,1635131493,778401132,1111835680,1830831957,1713404257,543975777,1914728308,1735353189,1702521198,1646289184,543519865,1970037110,1628048741,1634738291,1864397938,543236198,1768710518,1852383332,1970435187,1869182051,1868963950,1851859058,1718558841,1701344288,1819239968,1769434988,1914726254,1869832549,221934446,537529610,1750343712,2036473957,1763730804,1634738291,1864397938,1851859046,1936615712,1668641396,1852795252,1634235424,1936269428,1701868320,1768319331,1869881443,1814061344,1919251553,538970637,1852139296,1952543333,544108393,540424312,1668248176,1869837157,168636018,538970637,1701336096,1936286752,1702064993,2037146221,1869770784,1936942435,1684628512,1953459744,1635021600,1629516914,1752440948,1768300645,544502642,1702132066,543584032,537529697,1635131424,543451500,1953721961,1952675186,778989417,168626701,1411391520,1646290280,543519865,1679848297,778138721,168626701,1702129486,1634235424,1162092660,658986306,1650532467,1953066089,1869881465,1702389024,1702131043,544104736,1953721961,1952675186,544108393,1919903272,1701344288,1634882592,168650083,543452769,1668248144,543450469,1835888483,1935961697,1868832809,1847620453,1679848559,1852141669,1852776548,1937008928]},{"sector":7,"length":512,"data":[1768055072,2037672300,544175136,1868785010,2053729895,1752440933,1762266469,1920234350,1769235317,221146735,1141509386,1196769861,1869572128,1948283755,1713399144,1869376623,1735289207,1953392928,1970434661,980644976,168626701,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1818322290,1685024045,538976357,538976288,1953460848,1702126437,1869426020,673211748,1229803588,805965097,1768169520,1701079414,544825888,1869768058,538976288,538976288,538976288,1629495328,2036430700,538976371,538976288,1629495328,2036430700,805965171,1769152561,1701603182,1702130477,538976368,538976288,538976288,538976288,1629495328,2036430700,538976371,538976288,1629495328,2036430700,805965171,1919033395,1886085477,1953393007,538976288,538976288,538976288,538976288,1629495328,2036430700,538976371,538976288,1629495328,2036430700,805965171,1852383286,1768710518,1886330980,1701080931,538976288,538976288,538976288,1126178848,1212372033,810831433,540097846,1629495328,2036430700,805965171,1953701955,543908705,1819631974,538976372,538976288,538976288,538976288,1126178848,1212372033,810831433,540097859,1629495328,2036430700,805965171,1701257284,1634887022,1919950956,1667593327,1852795252,1969317408,538997868,1126178848,1212372033,810831433,540097860,1629495328,2036430700,805965171,1634738245,1713399143,1953264993,538976288,538976288]},{"sector":8,"length":512,"data":[538976288,538976288,1847599136,1919252069,538976288,538976288,1629495328,2036430700,839519603,1919950898,1634887535,1702109293,1852403058,1869182049,538976366,538976288,1629495328,2036430700,538976371,538976288,1847599136,1919252069,168626701,1430406468,1634934855,544433526,543452769,1953719666,1936028271,1701344288,1869770784,1835102823,1126200103,1920233071,1127050351,1313417248,858923092,1629497704,168649838,1953067619,1818321769,1920099616,673215087,542395977,694694962,1953392928,1970434661,1981838448,1869898597,539784050,1987015280,1852400745,1868963943,1700929650,1919251572,1936263693,1952541807,544108393,2004116834,544105829,543516788,1969382756,1919248231,1684955424,1701344288,1869770784,1835102823,1768251936,1679845230,1735746149,778331495,168626701,1852139607,1679843616,1735746149,543450471,1735357040,544039282,1836213620,1952542313,539784037,1430406468,1769414727,1679846508,1819308905,1948285281,1696621928,544500088,1701080931,1651444237,1852399988,1713398885,544042866,542395977,543699250,1668183398,1852795252,1749300256,1750343726,1768431717,1646291047,543519865,1948283753,1696621928,544500088,1701869940,807930381,1919905341,745300333,1128083744,762081908,840969283,1769104189,1633905012,1919230060,745697138,1413296928,539578963,543452769,543516788,544698220,1702132066,544434464,224749684,1952805386,544109173,1701080931,218762542]},{"sector":9,"length":512,"data":[1111835658,542656341,1886418291,1937011311,1650811936,1768384373,1864394606,1346642022,1663060301,1852139884,1919950964,1634887535,539915117,1852139607,544106784,1953460848,1702126437,1869426020,168650084,543516788,1836020336,1663071344,1735287144,1713402725,544042866,1752392036,690825248,544175136,1752392040,543646068,539566888,1679847284,1953459813,1752440933,1346576485,1869422677,221144420,1225395466,1920234350,1769235317,1864396399,1634887024,225666158,757935370,757935405,757935405,757935405,757935405,1409944877,1763730792,1920234350,1769235317,1864396399,1634887024,544433262,543519329,543516788,1701470831,544437347,1998614127,1751345512,1701344288,1936615712,1668641396,1852795252,1864501773,1634887024,577987956,1866866734,1162092658,742872386,1701344288,1864394099,1667590754,1663071092,1646292577,1868767333,1635021678,745763950,1734701600,1702130537,539784050,168653423,1869440365,539916658,1701650497,2037542765,1701867296,1684955506,1701868320,1768319331,1948283749,1864394088,1702061670,1684086900,1936028260,1718558835,1701344288,1952539680,1869881441,1886325261,1952543333,1852776549,1867784238,1718182944,1701995878,1634301038,1830839668,1919905125,1886331001,1851880037,1713402724,544042866,1936617315,1953390964,1830825075,1919905125,1862929785,1634887024,544433262,1953723757,543515168,1818455653,1684370287,544106784,1635086707,1646290290,1801675122]}],[{"sector":1,"length":512,"data":[779318373,168626701,544370502,1768169569,1952671090,1835363616,544830063,1919250543,744779361,1701344288,1717989152,544499059,1919181921,544437093,1948280431,1679844712,543257697,168653673,1667592307,1701406313,1852383332,1701344288,1701867296,1684955506,1866866734,1851859058,1684957472,1667592809,1701650548,2037542765,1701867296,1684955506,1752440876,1718558821,1952805734,1684081165,1936028260,1718558835,1701344288,1952539680,1936269409,1818321696,1634497891,543450484,1914729569,1949134453,543518057,1852404597,1752440935,1868767333,1852142702,1864397684,1862929766,1864394094,2004099186,1701978223,1953720679,544436837,543452769,1864396385,1869182064,543973742,1886611812,1701011820,1953391981,1850286126,758526240,544500066,1701080931,1752440876,1913261413,1936287589,1936876916,1851876128,543515168,1633820769,1914725747,1936287589,544367988,542655016,1109422703,1864378704,1851859058,1684957472,1914730597,1936287589,544367988,541676328,1142977135,220997961,544370442,543518319,1696622191,778593121,1701336096,1819239968,1769434988,1696622446,1886216568,544433516,1970039913,1634890867,1948280180,1679844712,1701209705,1668179314,168653669,2004116834,544105829,1936617315,1953390964,1701867296,1684955506,1914711155,1936287589,544367988,1919250543,1935961697,1768169516,1952671090,1835363616,544830063,1919250543,1935961697,1628048684,1763730542,1919509614,544498533]},{"sector":2,"length":512,"data":[1869440365,1864399218,1634887024,980640878,168626701,1293951008,538990159,743981344,540028977,540745760,1702260557,1752440947,1635131493,543520108,540028977,1869901417,223887648,538976266,542527309,1480663072,542655020,991961120,1886339872,544433513,543516788,1970037110,1852383333,542655008,1092644724,537529688,1330454560,538976342,1529632833,1563439153,1126185760,1701408879,1752440947,1870078053,1629512818,1396973684,808464698,544175136,168646721,1293951008,538990159,743194912,726680155,540761394,1768976195,1948283749,1646290280,543519865,1394635873,1346517587,1948267051,1279336559,168626701,1243619360,538988621,808464672,538976288,540745760,1953719620,1952542313,544108393,1936090735,1763734629,808525939,537529648,1296703520,538976336,538990657,538976288,1142962976,1769239397,1769234798,1864396399,1702061670,1936269428,1701344288,1818326560,1763730805,1480663150,538970637,1347242528,1528832032,1563439153,538976288,1698963515,1852404851,1869182049,1718558830,1952805734,544434464,543516788,1685221239,544497952,825905988,168636464,1243619360,538988621,1480743712,538976349,540745760,1953719620,1952542313,544108393,1936090735,1763734629,1752440947,1870078053,1629512818,1396973684,223887930,538976266,542133578,1113268256,1563700056,991961120,1936016416,1634625908,1852795252,1717989152,544499059,1948283753,1998611816,543453807,1142977633]},{"sector":3,"length":512,"data":[1480735315,168637483,538970637,1310735136,544366949,1819042147,1870078067,1780509554,544502645,1701538156,1701344288,1836411424,1852383344,1970435187,1869182051,1629516654,1702260578,218762542,1111835658,1931495253,1702125940,1953391981,755633523,757935405,757935405,757935405,221064493,1768444938,1702043763,1869182051,1701060718,544435297,1752459639,1701344288,1635021600,1701668212,544437358,1952540788,1111835680,1914718037,1735353189,1702521198,1752637555,224750697,544106762,1702064993,2037146221,1685024032,168636005,1631914509,1931503715,1702125940,1953391981,1667460896,1701408885,543236211,1735289203,1814062444,778399337,1919895072,1667327264,1953701992,1835365473,745827941,1701344288,1919510048,168653939,1918986339,1702126433,1752440946,1763734625,1869488243,543236212,1667330163,1919885413,1948279072,1830838881,544502645,1629513058,1835365152,1819239273,1864396399,1752440946,1930038629,1953653108,543584032,1635131489,543451500,1953721961,1952675186,544108393,1835363949,1667853935,541138990,1768777075,1869377379,1629498478,1752440948,1953701989,544502369,168650351,1953701985,1835365473,544501349,1629516399,1752660334,543519333,1752459639,1629515369,1635021600,1701668212,539784302,1937072483,1142977381,1196769861,544175136,1869506409,168650098,543516788,1634559346,1701080681,1718558834,1701344288,1852402720,168636005,1933642253,1701998624,1970235766]},{"sector":4,"length":512,"data":[544828531,1702129518,1830825060,1919905125,1886331001,1851880037,1830843236,544502645,1696621922,1869374318,543450483,1931505257,1918989681,1919033445,1701536609,221148020,1225395466,1684086894,1769236836,1948282479,1752440943,1953046629,544435557,1635018084,1684368489,1868718368,539780470,1430406468,1953701959,1835365473,1937010277,1851876128,1668180256,1701082476,1752435213,1868963941,2003790956,979857001,168626701,1411391520,1126196584,1914721616,1936287589,544367988,1701667182,1864900723,1919248500,1634235424,1346969710,168639017,538976288,1480663072,542655008,1142970435,537529688,538976288,541868320,1109411905,1212293196,541868832,1142966339,1212424268,538970637,538976288,1109413971,537529680,538976288,541676320,168642884,538976288,1396908064,542328096,1394627396,218762579,538976266,543516756,1647129139,1126200425,1914721616,1936287589,544367988,1701667182,1864900723,1919248500,1634235424,1229267054,221915472,538976266,1159733280,1159747649,1159747650,1159747651,1159747652,1159745619,1159745602,1159743827,168642884,538976288,1397104672,223561504,537529610,1750343712,1870078053,544433266,1380009294,1919887392,692407840,1684955424,1380009504,1886330924,1852795252,2037148769,1819239968,1702326124,2036473956,1381257248,537529644,1752637472,543712105,543519329,1684370293,544175136,1919252079,1701079410,1701344288,1717920800,1953264993,1919903264]},{"sector":5,"length":512,"data":[1864397677,1752440934,1094918245,1629506636,1243636846,168644685,1763713056,1920234350,1769235317,779316847,1701336096,1717920800,1953264993,1919903264,1718558829,1243636000,1763725389,1920234350,1769235317,1663069807,1646292577,1752375397,745828975,538970637,1634037280,1864379506,1634082930,1679830130,1852141669,1735289188,544108320,543516788,1953719652,1952542313,778989417,1701336096,1717920800,1953264993,1919903264,1718558829,168648992,1126178848,541871169,1953721961,1952675186,544108393,544104803,1847616866,544366949,1713402479,539783777,1701864804,1852400750,1852776551,1701344288,1936024608,1634625908,1852795252,537529646,1867391008,1948280180,544498024,1430406468,1769414727,1679846508,1969317477,1948284012,1634082927,1852776562,1763735916,1752440934,1701060709,1852404851,1869182049,1936269422,538970637,1667592736,1768843119,1818386810,1935745125,1713398048,1629516385,1701995620,539784051,1667852407,1701650536,544435809,1952540788,544500000,1953723757,543515168,537529697,1868767264,1635021678,1864397934,1752440934,1868963941,1931505010,1701668709,1866101870,1702061670,1713905780,1696625263,1886216568,539780460,1347242530,808470048,1179007536,690106438,537529646,1716068384,1701344288,1936024608,1634625908,1852795252,544434464,1667592307,1701406313,2036473956,1830838560,1919905125,1886331001,1851880037,1713905764,1696625263,1886216568,221013356,538976266]},{"sector":6,"length":512,"data":[1347242530,828055584,576532528,1142959145,1196769861,1818851104,1701060716,1819631974,1869881460,1634037280,1411395186,1864394088,1869182064,543973742,542266448,225665384,538976266,1696624494,1667589734,1852776564,1701344288,1936941344,1818389861,1919950969,1936024431,168636019,538970637,1701336096,1919907616,1109422948,541414489,544370472,539580738,543452769,1146244951,1919887392,693065504,1684955424,1331119136,673203282,1142977135,220997975,538976266,1769238639,1818324591,1713404268,1869376623,543450487,1344305506,539775572,1667852407,1918967912,1937055845,1948279909,1886593135,1718182757,1752440953,2037653605,1713399152,168653423,1830821920,1919905125,1633951865,539910516,544370502,1953721961,1952675186,1936617321,1634235424,1635000436,1948280171,1864396663,1634887024,745759854,1111835680,1998604117,225209449,538976266,1970500449,1948280173,544498024,543516788,1701869940,1919903264,1701344288,1952539680,1886593121,1718182757,543450473,1629518178,1835363616,544830063,1919250543,543452769,1668571501,225666408,538976266,543516788,1701869940,1919903264,1701344288,1752461088,1864397413,1634887024,539911278,544370502,1953721961,1952675186,1936617321,1634235424,1635000436,1864394091,1864394094,1634887024,221013102,538976266,543516788,1701869940,1937075488,1700929652,1701868320,1768319331,539911269,543516756,1769238639,1818324591,1381257248,1935763488]},{"sector":7,"length":512,"data":[544173600,1701209701,1864397923,537529710,1752440864,1935745125,1651336563,1881176428,1701015410,221148019,537529610,1866866720,1818632306,1769234799,1881171822,1953393007,1668312864,1936024687,1752440876,543519333,1936291941,540221556,1768186977,1852795252,1830841441,1919905125,2037653625,745760112,538970637,1330398752,673207361,1176531567,539765068,1112887108,673203532,1142977135,1629497679,1411409006,1163155778,1919887392,692212768,537529658,538976288,1279664160,1176510532,1413566284,808540960,168647984,538976288,1176510496,542135379,1112887108,1528841548,1563439153,538970637,538976288,1414743584,1112809552,541414489,808464731,218762589,538976266,543516756,790643268,542589984,1145315375,1702064160,762274933,1953721961,1952675186,1936617321,1752637484,543712105,543519329,1684370293,544175136,1702064993,1701601901,538970637,1954112032,539959397,1685221239,1679830816,1651865455,1870095724,1981834354,1702194273,1411395187,1702061416,1702064160,762274933,1953721961,1952675186,1936617321,1701994784,538970637,1919905312,1819042157,1937055865,1948279909,1702043759,1935745140,543515753,1667330163,1868963941,1851859058,1852383332,1634301033,1702521196,1952539680,1411395169,544826728,225337699,538976266,1869835361,543515168,1684370293,544175136,1953397107,1769170280,1763730810,1920234350,1769235317,544435823,1952540788,1111835680,1663059797,1869508193]},{"sector":8,"length":512,"data":[1935745140,1651336563,221144428,538976266,1702129486,1634235424,1162092660,541545794,1819044215,1953459744,1819042080,1629517679,1634890784,1852402793,1868767335,1852140909,1852776564,1701344288,1835103008,1768693861,168650094,1629495328,1852776563,1718558821,1701344288,1881171315,1685415283,1852386671,1970435187,1869182051,221148014,537529610,1750343712,1936728165,1868854629,1936615725,1668641396,1852795252,1380917363,1936269383,1702065440,1869881444,1952805664,1701344288,1635021600,1852404850,1684086887,1936028260,1868963955,1752440946,537529701,1935745056,1651336563,1864399212,1852383334,1970435187,1869182051,221148014,537529610,1162092576,541545794,1667590243,1713402731,1696625263,1919906418,1935745139,544500000,1702064993,1701601901,1634017395,1931503715,1702125940,1953391981,1716068398,544104736,1869771365,537529714,1936269344,1952801824,1702126437,1142959204,1196769861,1869902624,1629516656,1835365235,1852402786,1752440935,1953701989,1835365473,544501349,543452769,1886611812,1937334636,538970637,543040032,1869771333,1864376946,1752440942,1768693861,1713399150,1869376623,1735289207,1701344288,1635021600,1701668212,539915374,543516756,1769172848,1852795252,543584032,224749684,538976266,1701994851,1852383348,1633904996,544433524,543516788,1633906540,1852795252,544106784,543516788,1952543859,1852140901,1752637556,543519333,1430406468,1701060679,1952671092]},{"sector":9,"length":512,"data":[168649829,1948262432,1696621928,1919906418,218762542,1769166090,1881171822,543516513,1885957222,1735289200,757926413,757935405,757935405,757935405,757935405,1225395501,1162092646,541545794,1931506537,1953653108,1998611557,543716457,543516788,1864386095,1869182064,1752440942,1881173605,543516513,1885957222,1735289200,544434464,1684370293,1141509422,1196769861,1818851104,1920409708,543519849,543976545,1763731055,1864397684,1970304117,1869881460,1684633120,1881173861,543516513,1752637489,543517801,1735357040,225272178,1953853194,544503152,1819044215,543515168,1953067639,544105844,1981837172,1868915817,1734438944,774905957,1852396320,1830839651,544502639,1735357040,1936548210,1702065440,1701344288,1969424909,1852142194,1768169588,1634496627,1634738297,1864394087,1852383346,1701344288,1935762208,1718558821,1819633184,1919120236,544105829,1735357040,1936548210,1634738220,807429479,1752435213,1998615401,543976553,1885693291,1111835680,1931954005,1953853216,544503152,1634755955,1702125938,1869768224,1752440941,1864397921,1752440934,1701060709,1734833506,168649829,1735357040,778920306,1702057248,1701344288,1663063584,1634561391,1948279918,1769349231,1948284773,1881171304,1919381362,1864396129,1970304117,168636020,1702129486,1734438944,1818632293,1768976489,1864394606,544828526,1802661751,1852383347,1635021600,1918985326,1868767332,544370540,1954047348,1685024032]}]],[[{"sector":1,"length":512,"data":[673215333,691219760,218762542,1111835658,1931495253,1885958755,168653684,757935405,757935405,757935405,1107954989,1969316709,1142973811,1196769861,1702065440,1752440947,1953701989,1633971809,1763730546,1953853550,1684955424,1953853216,544503152,1769366884,745760099,1684955424,1667588640,1702065505,1752435213,543519589,1769366884,544433507,544104803,1914725730,1919509605,1702126437,1142959204,1196769861,1851876128,543515168,1701077357,544175136,1970302569,1919295604,168652143,795111009,1864397423,1970304117,1869881460,1948279072,544503909,1701603686,1750343726,1830843241,1936026465,544500000,1936945008,1701601897,544175136,1667329136,1162092645,222778690,1836016394,1684955501,1851859059,1953701988,1835365473,1937010277,544106784,1702109281,1713403000,744844393,1931501856,1633889647,1684368492,1111835680,1931495253,1885958755,1629498484,168649838,1835169139,1948284009,1713399144,543517801,1142976372,1196769861,1919903264,1869770784,1936942435,778530409,168626701,221064493,1309281546,1095715872,777275716,223631444,1411403274,544434536,1629516649,1111835680,1931495253,1885958755,1752440948,1998615649,543976553,2037411683,1330594336,1146045268,1229073989,1309281614,544175136,543516788,1936877926,1702043764,1919906915,543584032,1986622052,776020069,1953451552,1752440933,1948284001,544434536,1819044215,541985293,1802661751,1819176736,1718165625,1701344288]},{"sector":2,"length":512,"data":[542330656,1868785010,2053729895,1948283749,1679844712,1701540713,543519860,168653665,1634213966,1735289206,1981833504,1684630625,1919903264,779379053,541985293,1414483778,1162104643,1313423918,541854221,221261873,824203018,807415856,824193056,223414797,755633418,168635693,540740109,1163280723,777142861,223631444,1411398410,544434536,1629516649,1111835680,1931495253,1885958755,1752440948,1998615649,543976553,1702257011,1701344288,1380076832,544175136,543516788,1701603686,1380076832,1313423918,224463373,1987013898,746087456,168636472,544632685,824997987,1869416973,2019696758,808464940,1869416973,2019631222,825242156,1852377613,858857588,1852377613,221454452,1728711946,544344589,168654946,1913261360,225993504,808464906,544082445,779248237,225339746,840988426,168636464,218762609,757935370,168626701,1498619963,1380013651,1481911891,990514516,1768444960,1936269427,1142972704,1196769861,1919120160,544501865,1952540788,1818851104,1969496172,1948282989,1142973800,891310927,1498619947,1380013651,1635000403,778398818,540740109,1702129486,1950949434,1818851104,1869488236,1870078068,1763732338,1397563502,1397703725,544370464,1142965072,1142969167,1196769861,1628048686,1869416973,1751195766,221394220,1953392906,221327904,1935961098,745108256,1530557285,875264098,1812598109,1931506532,1936010345,2019711802,1563832619,1869482509,218762608,824207114]},{"sector":3,"length":512,"pattern":0,"data":[168637488,1346641979,1953505346,1394617458,1881166918,539783796,1129270339,1881154635,539783796,542003011,225604720,543450122,1647997797,829169784,990514480,1718968864,544367974,1702521203,2003044877,221408288,1646279434,1701209717,1881174898,539783796,542327875,745698416,1111705120,1413894957,1920233504,1684277773,224619552,1176517386,1797276227,544236901,1853189987,1678380404,845946999,540740109,1970561889,1679846497,1702259058,1814047859,1667852143,1679846497,1702259058,1678380403,845946978,540740109,541873486,1769366884,1746953571,1701077349,1678380402,829169762,1946815794,540740109,223626835,543450122,1933210468,879501417,2003044877,221408288,543319050,224539500,543319050,224539500,543319050,224539500,543319050,224539500,543319050,224539500,168653834,1145249851,1678380371,980640800,1814063475,168638517,896278628,1678380344,943025184,543427085,221787500,1814062090,168638517,218762609,757935370,2573]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"data":[758843917,1411394861,544434536,1701603686,1935767328,1852139296,1952543333,1646290021,1802313849,1818386804,1697543013,221144440,990514442,539831597,1919250511,543452769,1701869940,1936288800,221148020,757938954,1750343725,1998616933,543519333,1684104562,1869768224,1768300653,1226859884,1381258062,1497713454,218762542,1819307786,1937011561,1650551840,1646292069,224752761,1886325002,1983580524,543451503,1868963885,1852383346,1970435187,1869182051,1998615406,1869116521,1864397941,1634887024,225666158,1886325002,1347362924,1280065887,1599098667,539777089,1096765519,1328237644,1296654160,540745805,1031300201,1864379441,1144877926,151653736,543977583,1096765519,1328237644,1297243984,1347362860,1280065887,1599098667,541936969,1684611131,741490040,1936092960,1747988797,1862863373,1327524976,909205328,1328230963,1297243984,1347362860,1296910687,990459987,2019846432,539767613,1030973039,224932657,1886325002,1347362924,1280065887,1599098667,539774290,1096765519,1328237644,156393296,1684611131,741621112,1936092960,1748382013,1862863373,1327524976,1279352656,1347365708,539775583,1096765519,1328237644,1297243984,1763719945,893220964,1718558764,959528307,151653736,543977583,828330063,1347365686,743264863,1599098656,1328231985,156393296,1684611131,741752184,1936092960,1749233981,1862863373,1327524976,909205328,1328230963,743595856,1599098656,842217009,1599098667]},{"sector":6,"length":512,"data":[540739917,1031300201,1864379447,826110822,168650822,1819307785,1599098656,842217009,1599098667,1327508562,909205328,1328230963,1297243984,1763719968,943552612,1718558764,842153331,151653736,543977583,861884495,1347365682,1096766047,990463044,2019846432,539769149,1030973039,224933170,1886325002,1347362924,859189599,1347365682,743264863,1599098656,842217009,1599098667,540745810,1031300201,539766833,1030973039,224933682,1886325002,1347362924,859189599,1347365682,743264863,1599098656,944590153,1763719945,826112100,1864379441,842888038,168650817,1819307785,1599098656,827082066,154284854,1684611131,842087800,1718558764,1144143219,151653736,543977583,1180651599,1296650817,540739917,1031300201,539767601,1030973039,224937522,1886325002,1347362924,1380009567,156058957,1684611131,875642232,1718558764,825441651,151653736,543977583,1298092111,990458934,2019846432,741683517,1936092960,1748185917,1862863373,1327524976,1279352656,1347365708,156062303,1684611131,909196664,1718558764,892550515,151653736,543977583,828330063,724710198,1381978191,1145323871,1763719945,826112100,1864379447,859665254,168650807,1819307785,1599098656,1328231985,1296654160,1327508557,1296654160,990459981,2019846432,741880125,1936092960,1748579133,1862863373,1327524976,1179475792,1413566284,1763719945,826112100,1864379449,859665254,168650819,1819307785,1599098656,1431258189]},{"sector":7,"length":512,"data":[155536450,1684611131,808598904,1718558764,1160985971,151653736,543977583,1398755407,1327508564,1414750032,540739913,1031300201,539767090,1030973039,224931892,1886325002,1347362924,1230263135,1347362860,156521311,1684611131,842153336,1718558764,859061619,151653736,543977583,828330063,743131203,1599098656,743003219,1599098656,990467155,2019846432,741552701,1936092960,1748382781,1862863373,1327524976,842227536,1599098667,540739917,1031300201,539767858,1030973039,224936244,1886325002,1347362924,724971871,1298092111,1763719945,842889316,1864379445,876442470,168650819,1819307785,1599098656,154155085,1684611131,909262200,1718558764,1161051507,151653736,543977583,1398755407,990464340,2019846432,741814845,1936092960,1747989821,1862863373,1327524976,1127309136,539773768,1398755407,990464340,2019846432,741880381,1936092960,1748120893,1862863373,1327524976,1481465680,540739928,1031300201,539769138,1030973039,224933173,1886325002,1347362924,724971871,1096765519,540745816,1031300201,539766835,1030973039,224933685,1886325002,1347362924,859189599,1347365682,539775583,828330063,724710198,1381978191,1327508557,1296654160,154686285,1684611131,825441656,1718558764,959790451,151653736,543977583,828330063,724710198,1381978191,1146047839,1347362860,859189599,1347365682,539775583,1230983247,944983373,1763719945,859666532,1864379442,893219686,168650820]},{"sector":8,"length":512,"data":[1819307785,1599098656,842217009,1599098667,1327508562,909205328,1328230963,1297243984,1347362860,859189599,1347365682,1296910687,1763719968,859666532,1864379443,909996902,168650801,1819307785,1599098656,842217009,1599098667,1330470738,1327508548,909205328,1328230963,743595856,1599098656,842217009,1599098667,156061001,1684611131,875773304,1718558764,892747123,151653736,543977583,1096765519,1328237644,1480679248,1347362860,1296910687,540739896,1031300201,539768115,1030973039,224934198,1886325002,1347362924,1280065887,1599098667,539777089,1147097167,540745816,1031300201,539768371,1030973039,224936758,1886325002,1347362924,990458719,2019846432,741815101,1936092960,1749431869,1862863373,1327524976,1296654160,990459981,2019846432,741880637,1936092960,1748055869,1862863373,1327524976,1163026256,990459980,2019846432,741946173,1936092960,1748186941,1862863373,1327524976,909205328,1328230963,1297243984,1763719945,876443748,1864379440,926774118,168650805,1819307785,1599098656,1328231985,1297243984,1763719968,876443748,1864379441,926774118,168650807,1819307785,1599098656,842217009,1599098667,539774290,1398755407,1163020101,540739911,1031300201,539767348,1030973039,224934199,1886325002,1347362924,1195725663,742868306,1599098656,842217009,1599098667,990465362,2019846432,741553213,1936092960,1749235517,1862863373,1327524976,1279352656,1347365708,743981407]},{"sector":9,"length":512,"data":[1599098656,726420545,1298092111,1397114447,1763719945,876443748,1864379444,926774118,168650822,1819307785,1599098656,726420545,1298092111,1397114447,1347362860,1280065887,1599098667,990468161,2019846432,741684285,1936092960,1748121661,1862863373,1327524976,725114704,1381978191,1145323871,1347362860,1328232543,1296654160,540739917,1031300201,539768372,1030973039,224933176,1886325002,1347362924,859189599,1347365682,1096766047,539771972,828330063,724710198,1230983247,990465357,2019846432,741815357,1936092960,1748514877,1862863373,1327524976,909205328,1328230963,743595856,1599098656,1397704787,539777609,945770575,1599098667,991972690,2019846432,741880893,1936092960,1749170237,1862863373,1327524976,909205328,1328230963,743595856,1599098656,1397704787,539777609,828330063,1347365686,156062303,1684611131,959724920,1718558764,1178090867,151653736,543977583,1230983247,741887309,1599098656,726420545,1096765519,540739928,1031300201,539766837,1030973039,224932665,1886325002,1347362924,743982175,1599098656,726420545,1096765519,540745816,1031300201,539767093,1030973039,224933433,1886325002,1347362924,859189599,1347365682,990465375,2019846432,741487933,1936092960,1748580669,1862863373,1327524976,909205328,1328230963,1296654160,540739917,1031300201,539767605,1030973039,224936505,1886325002,1347362924,1296910687,990459987,2019846432,741619005,1936092960]}],[{"sector":1,"length":512,"data":[1749301565,1862863373,1327524976,1279352656,1347365708,743264863,1599098656,540739889,1031300201,539768117,1030973039,224937529,1886325002,1347362924,1280065887,1599098667,539774290,1130319951,540745804,1031300201,539768373,1030973039,224932417,1886325002,1347362924,1280065887,1599098667,539774290,1230983247,154684749,1684611131,926236024,1718558764,893468019,151653736,543977583,828330063,1347365686,1296910687,1763719945,893220964,1864379448,1094546278,168650808,1819307785,1599098656,1347365688,156062303,1684611131,959790456,1718558764,1094794611,151653736,543977583,828330063,724710198,1381978191,1327508557,909205328,1328230963,743595856,1599098656,944590153,1763719945,909998180,1864379440,1094546278,168650819,1819307785,1599098656,842217009,1599098667,539774290,828330063,724710198,1381978191,1347362860,155992927,1684611131,825638264,1718558764,809647475,151653736,543977583,828330063,724710198,1096765519,1327508568,909205328,1328230963,1599233872,155468865,1684611131,842415480,1718558764,876756339,151653736,543977583,828330063,724710198,1381978191,1145323871,1347362860,859189599,1347365682,156778847,1684611131,859192696,1718558764,927087987,151653736,543977583,1163874383,540739923,1031300201,539767862,1030973039,224936258,1886325002,1347362924,156451679,1684611131,892747128,1718558764,1128414579,151653736,543977583,1398755407]},{"sector":2,"length":512,"data":[540739923,1031300201,539768374,1030973039,224937282,1886325002,1347362924,156451935,1684611131,926301560,1718558764,809713011,151653736,543977583,1180651599,540739923,1031300201,539768886,1030973039,224932419,1886325002,1347362924,156452703,1684611131,959855992,1718558764,876821875,151653736,543977583,861884495,1347365682,1298092639,539771983,1130319951,540739922,1031300201,539766839,1030973039,224933443,1886325002,1347362924,743588703,1599098656,1328230963,1599233872,155471693,1684611131,825703800,1718558764,960707955,151653736,543977583,861884495,1347365682,1298092639,539771983,1147097167,540739922,1031300201,539767351,1030973039,224936771,1886325002,1347362924,743588959,1599098656,1328230963,1599233872,155471693,1684611131,859258232,1718558764,1178811763,151653736,543977583,861884495,1347365682,1298092639,539771983,1415532623,540739922,1031300201,539767863,1030973039,224932420,1886325002,1347362924,743593055,1599098656,1328230963,1599233872,155471693,1684611131,892812664,1718558764,893664627,1762266472,1296900198,1347769176,151653712,543977583,1298092111,539777101,861884495,1347365682,223171167,1886325002,1347362924,724710239,1381978191,1327508557,1296916304,151653720,543977583,1298092111,539777101,912216143,1347365684,223171167,1886325002,1347362924,724842079,1381978191,1327508557,1296916304,1695157592,1718183022,168626701]},{"sector":3,"length":512,"data":[1296913217,1158235215,1864389969,2019846512,168626701,757935419,1936933152,1818389861,540701285,1635017060,544108320,1970238055,221148016,757938954,1716068397,1114196000,543519865,807419197,1763716145,544417652,807542881,1919954246,2020173413,1919361058,779122031,168626701,1869768545,544436341,1700946284,1870078060,168649842,544695305,1748187184,221264672,2003044618,808988704,825958504,1678313997,1110515831,991979585,151653682,807434084,543704646,168637243,544695305,1748452145,221526816,2003044618,1162227744,893067368,1678313997,1177559159,991979574,151653686,824211300,543699248,168638267,544695305,1747988529,221788960,2003044618,910372896,960176232,1678313997,942678135,991979590,168636465,544695305,1747993648,825309984,1678313997,1144004727,991979570,168636977,544695305,1747993392,858864416,168626701,757935419,1936280608,1718558836,1936941344,1818389861,1830842981,1869440366,1935894894,1684955424,1952539680,168636001,757935419,1918989856,1953390953,824210215,1918967854,1701672295,673215598,975790397,758843917,538979629,543582496,540811361,808548400,1864383024,1646290286,543519865,1868787823,221144420,757938954,538976301,1629513321,540884512,808548400,640032816,1008754976,846737440,540684336,544175988,1702132066,1177559584,1886334242,1701080931,990514478,539831597,1718165536,1042309408,2016419901,540028978,1629496870]},{"sector":4,"length":512,"data":[807418912,808727160,1885741114,1936615712,1668641396,1852795252,990514478,539831597,1718165536,1042309408,2016419901,976237618,1717924384,544436837,1629515636,1970238055,1528853360,1919115629,1195450479,690507858,544434464,1684370293,168635997,757935419,1918989856,1953390953,840987431,1918967854,1701672295,1763734638,1852383347,544761188,1869901417,1920098592,1864399201,1684957552,221149285,1829375242,1936288878,1634476148,543974754,1702132066,1829308941,1092642158,991969601,1936092960,224931901,1981810954,1634300513,807433326,745027379,168636448,1852121097,1918989924,1953390953,1829308941,1092642158,539771969,1598903105,156778817,1718558779,1748188531,537463309,1769103734,544501345,1748329520,942874668,537463309,1986293349,1634300513,168653934,1701735689,1296122144,1396777004,1094803277,540739928,1030973039,168650807,1635131401,1851877746,1680875636,539781172,168638515,1852121097,1918989924,1953390953,1829308941,1092642158,991974209,1936092960,224936509,1981810954,1634300513,807433326,745039411,168636448,1852121097,1918989924,1953390953,1829308941,1092642158,991970116,1936092960,224937277,1981810954,1634300513,1092645998,676352583,691153968,741548076,1297301792,1129270367,1279410507,151653701,1918989856,1953390953,875638816,824192104,537463309,1769103734,544501345,1347569473,841756968,840969257,1396777004,1330405197,1111575363,168641868]},{"sector":5,"length":512,"data":[1635131401,1851877746,825237620,539781168,1092627508,1281314131,1095451471,222645314,1981810954,1634300513,807433326,745026097,168637728,1852121097,1918989924,1953390953,1829308941,1092642158,991970372,1936092960,1749233981,537463309,1769103734,544501345,1347569473,808202280,857746473,1396777004,1330405197,1111575363,168641868,1635131401,1851877746,808460404,539781172,151653681,1918989856,1953390953,1380401440,741419088,539765040,1092627506,1281314131,1095451471,222645314,1981810954,1634300513,807433326,745025584,539767840,1598903105,1262702412,1162625601,537463309,1769103734,544501345,1748119600,221585452,1696598282,1635148910,1851877746,151653748,543518317,541347393,1718558779,1093811571,151653736,1918989856,1953390953,1380401440,741353552,539765044,1092627507,1281314131,1095451471,222645314,1981810954,1634300513,807433326,745026610,168636704,1635131401,1851877746,1195450484,824725586,740897836,539767328,1598903105,1262702412,1162625601,537463309,1769103734,544501345,1747989040,741613612,1297301792,1129270367,1279410507,151653701,1918989856,1953390953,842149920,891300968,537463309,1986293349,1634300513,168653934,1701735689,1347567904,540739916,1030973039,224933939,1981810954,1634300513,807433326,745026358,539768352,1396777004,1095589709,221399107,1696598282,1635148910,1851877746,151653748,543518317,1314213698,540739908,1030973039]},{"sector":6,"length":512,"data":[224936755,1981810954,1634300513,807433326,745026102,539768608,1396777004,1095589709,221333571,1696598282,1635148910,1851877746,151653748,543518317,541479746,1718558779,808729971,151653736,1918989856,1953390953,1667379488,941632616,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1396842597,540745810,1030973039,224932916,1981810954,1634300513,824210542,745038946,539768864,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,1096241986,1092627536,1147096403,990458419,1936092960,1748513853,537463309,1769103734,544501345,1748525873,741941292,1092627488,1298091347,877151041,537463309,1986293349,1634300513,168653934,1701735689,156516896,1718558779,1144274291,151653736,1918989856,1953390953,862007584,824192104,740305968,1297301792,1128353119,168637256,1635131401,1851877746,1195450484,841502802,740897836,741421344,1092627488,1298091347,860373825,537463309,1986293349,1634300513,168653934,1701735689,1129595424,1864383264,893219686,168650804,1635131401,1851877746,1647386740,539781218,539766833,1598903105,1262702412,1162625601,1396777004,1095589709,221464643,1981810954,1634300513,1092645998,676352583,691481650,825303084,1396777004,1330405197,1111575363,539772236,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1413619813,540745810,1030973039,224937013]},{"sector":7,"length":512,"data":[1981810954,1634300513,824210542,745026402,741355808,1297301792,1129270367,1279410507,1092627525,1298091347,860373825,537463309,1769103734,544501345,1347569473,908866088,824192041,1092627505,1281314131,1095451471,742739010,1297301792,1128353119,168637256,1852121097,1918989924,1953390953,1829308941,1109419374,991974228,1936092960,1748383293,537463309,1769103734,544501345,1751277873,808525868,1396777004,1330405197,1111575363,539772236,1598903105,1212367181,151653683,1918989856,1953390953,1380401440,741484624,539765045,539767089,1598903105,1262702412,1162625601,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,1280065859,1864383241,909996902,168650822,1635131401,1851877746,1697652852,539781176,168636977,1635131401,1851877746,1195450484,858280018,740897324,221262880,1981810954,1634300513,1092645998,676352583,691219507,875634732,537463309,1769103734,544501345,1751202096,858857516,537463309,1986293349,1634300513,168653934,1701735689,1463960352,1396777004,826564429,540739894,1030973039,224933943,1852639498,1464016997,539772228,1598903105,154284868,1718558779,959921523,151653736,1918989856,1953390953,943271968,807414888,537463309,1986293349,1634300513,168653934,1701735689,1129071392,1864383264,926774118,168650820,1635131401,1851877746,1714430068,539781176,151653680,1684956448,1769103734,225734241,1852639498]},{"sector":8,"length":512,"data":[1279467621,540745796,1030973039,224931896,1981810954,1634300513,807433326,745038694,168636448,1852121097,1918989924,1953390953,1829308941,1126196590,991971660,1936092960,1748187197,537463309,1769103734,544501345,1751213616,221257772,1696598282,1635148910,1851877746,151653748,543518317,1398033475,1864383241,943551334,168650806,1635131401,1851877746,808525940,539781174,740305968,1297301792,1128353119,168637000,1852121097,1918989924,1953390953,1829308941,1126196590,991970125,1936092960,1749104701,537463309,1769103734,544501345,1748330032,221257772,1696598282,1635148910,1851877746,151653748,543518317,1448037699,540739905,1030973039,224937016,1981810954,1634300513,824210542,745027380,539768864,1396777004,1095589709,221661251,1696598282,1635148910,1851877746,151653748,543518317,1448037699,990463297,1936092960,1748056381,537463309,1769103734,544501345,1748186161,741875756,1092627488,1298091347,910705473,537463309,1986293349,1634300513,168653934,1701735689,1330463520,990462550,1936092960,1748318525,537463309,1769103734,544501345,1748120625,741875756,1092627488,1298091347,910705473,537463309,1986293349,1634300513,168653934,1701735689,1330463520,155533910,1718558779,960052595,151653736,1918989856,1953390953,909390112,941632616,539762732,1598903105,1212367181,151653686,1684956448,1769103734,225734241,1852639498,1296244837,155407951,1718558779]},{"sector":9,"length":512,"data":[1144601971,151653736,1918989856,1953390953,842281248,941632616,539762732,1598903105,1212367181,151653686,1684956448,1769103734,225734241,1852639498,1296244837,155539023,1718558779,826359155,151653736,1918989856,1953390953,875835680,941632616,539762732,1598903105,1212367181,151653686,1684956448,1769103734,225734241,1852639498,1296244837,155670095,1718558779,893468019,151653736,1918989856,1953390953,1714696480,941632616,539762732,1598903105,1212367181,151653686,1684956448,1769103734,225734241,1852639498,1296244837,1162303055,1864383241,1094546278,168650809,1635131401,1851877746,875634804,539781220,740305976,1297301792,1128353119,168638024,1852121097,1918989924,1953390953,1829308941,1126196590,1280724813,1864383241,1094546278,168650820,1635131401,1851877746,875634804,539781219,740305976,1297301792,1128353119,168638024,1852121097,1918989924,1953390953,1829308941,1126196590,1280724813,540739909,1030973039,224932162,1981810954,1634300513,824210542,745039156,539768864,1396777004,1095589709,221661251,1696598282,1635148910,1851877746,151653748,543518317,1448037699,990462286,1936092960,1748320829,537463309,1769103734,544501345,1748382769,741875756,1092627488,1298091347,910705473,537463309,1986293349,1634300513,168653934,1701735689,1330463520,1161907798,1864383241,1111323494,168650809,1635131401,1851877746,875634804,539781170,740305976,1297301792]}]],[[{"sector":1,"length":512,"data":[1128353119,168638024,1852121097,1918989924,1953390953,1829308941,1126196590,1314279245,540739906,1030973039,224937026,1981810954,1634300513,824210542,745026356,539768864,1396777004,1095589709,221661251,1696598282,1635148910,1851877746,151653748,543518317,1448037699,155533902,1718558779,826490227,151653736,1918989856,1953390953,926167328,941632616,539762732,1598903105,1212367181,151653686,1684956448,1769103734,225734241,1852639498,1296244837,1129207375,1864383241,1128100710,168650805,1635131401,1851877746,875634804,539781171,740305976,1297301792,1128353119,168638024,1852121097,1918989924,1953390953,1829308941,1126196590,1314279245,540739909,1030973039,224934211,1981810954,1634300513,824210542,745026868,539768864,1396777004,1095589709,221661251,1696598282,1635148910,1851877746,151653748,543518317,1448037699,990463822,1936092960,1749304125,537463309,1769103734,544501345,1751462961,741875756,1092627488,1298091347,910705473,537463309,1986293349,1634300513,168653934,1701735689,1330463520,1162301014,1864383241,1144877926,168650801,1635131401,1851877746,875634804,539781219,740305976,1297301792,1128353119,168638024,1852121097,1918989924,1953390953,1829308941,1126196590,1314279245,540739916,1030973039,224933188,1981810954,1634300513,824210542,745038900,539768864,1396777004,1095589709,221661251,1696598282,1635148910,1851877746,151653748,543518317]},{"sector":2,"length":512,"data":[1448037699,155536462,1718558779,960773491,151653736,1918989856,1953390953,1714696480,941632616,539762732,1598903105,1212367181,151653686,1684956448,1769103734,225734241,1852639498,1296244837,1330533967,1864383241,1144877926,168650820,1635131401,1851877746,875634804,539781169,740305976,1297301792,1128353119,168638024,1852121097,1918989924,1953390953,1829308941,1126196590,1314279245,540739920,1030973039,224932165,1981810954,1634300513,824210542,745038388,539768864,1396777004,1095589709,221661251,1696598282,1635148910,1851877746,151653748,543518317,1448037699,990466894,1936092960,1748321597,537463309,1769103734,544501345,1748579377,741875756,1092627488,1298091347,910705473,537463309,1986293349,1634300513,168653934,1701735689,1330463520,156913238,1718558779,960839027,151653736,1918989856,1953390953,892612896,941632616,539762732,1598903105,1212367181,151653686,1684956448,1769103734,225734241,1852639498,1296244837,156194383,1718558779,1145388403,151653736,1918989856,1953390953,808726816,941632616,539762732,1598903105,1212367181,151653686,1684956448,1769103734,225734241,1852639498,1296244837,156259919,1718558779,826686835,151653736,1918989856,1953390953,1630810400,941632616,539762732,1598903105,1212367181,151653686,1684956448,1769103734,225734241,1852639498,1296244837,1162892879,1864383241,1178432358,168650805,1635131401,1851877746,875634804]},{"sector":3,"length":512,"data":[539781217,740305976,1297301792,1128353119,168638024,1852121097,1918989924,1953390953,1829308941,1126196590,1347833677,540739919,1030973039,224934214,1981810954,1634300513,824210542,745038388,539768864,1396777004,1095589709,221661251,1696598282,1635148910,1851877746,151653748,543518317,1448037699,540739923,1030973039,224937030,1981810954,1634300513,824210542,745027636,539768864,1396777004,1095589709,221661251,1696598282,1635148910,1851877746,151653748,543518317,1448037699,540739930,1030973039,1748054065,537463309,1769103734,544501345,1748251697,741875756,1092627488,1298091347,910705473,537463309,1986293349,1634300513,168653934,1701735689,1347240736,1864383264,826110822,224933168,1981810954,1634300513,1092645998,676352583,691481648,221454380,1981810954,1634300513,807433326,745038643,168636704,1635131401,1851877746,1195450484,824725586,740898604,168636960,1635131401,1851877746,858792052,539781176,151653684,1918989856,1953390953,1630744608,891300968,537463309,1986293349,1634300513,168653934,1701735689,1347240736,990462547,1936092960,808530237,151653736,1918989856,1953390953,912338976,807414888,537463309,1986293349,1634300513,168653934,1701735689,1347240736,539776851,1598903105,154546500,1718558779,825310579,168650803,1701735689,1347240736,539771987,1598903105,154284868,1718558779,825310579,168650804,1635131401,1851877746,1630543988]},{"sector":4,"length":512,"data":[539781175,151653680,1684956448,1769103734,225734241,1852639498,1296244837,1212373072,540739911,1030973039,1748513073,537463309,1769103734,544501345,1748001329,741613612,1297301792,1129270367,1279410507,1092627525,1298091347,877151041,537463309,1986293349,1634300513,168653934,1701735689,1347240736,1195918168,990462520,1936092960,1144074557,151653736,1918989856,1953390953,1380401440,741615696,539765041,539768113,1396777004,1095589709,221595715,1696598282,1635148910,1851877746,151653748,543518317,1230327875,540739908,1030973039,1748054577,537463309,1769103734,544501345,1748132145,741351468,1092627488,1298091347,893928257,537463309,1986293349,1634300513,168653934,1701735689,1146569504,1396777004,826564429,540739894,1030973039,1748316721,1829308941,1126196590,539775300,1598903105,154284868,1718558779,842087795,168650806,1635131401,1851877746,959455348,539781177,151653680,1684956448,1769103734,225734241,1852639498,1094983781,540745793,1030973039,1749103153,537463309,1769103734,544501345,1748447792,221257772,1696598282,1635148910,1851877746,151653748,543518317,542327108,1718558779,842087795,168650820,1635131401,1851877746,842014836,539781222,151653680,1684956448,1769103734,225734241,1852639498,1111760997,1396777004,1111777101,1864383241,826110822,224931891,1852639498,1145315429,1396777004,1145331533,1864383241,826110822,224932403,1852639498]},{"sector":5,"length":512,"data":[1162092645,540745795,1030973039,1748251441,537463309,1769103734,544501345,1748513840,925966380,537463309,1769103734,544501345,1347569473,824980776,824192041,1092627510,1281314131,1095451471,222645314,1696598282,1635148910,1851877746,151653748,543518317,542525764,1718558779,858865011,168650817,1635131401,1851877746,1195450484,908611666,740898348,221655328,1696598282,1635148910,1851877746,151653748,543518317,539776836,1598903105,990467908,1936092960,1144205629,151653736,543518317,1163152965,540739922,1030973039,1749431089,537463309,1769103734,544501345,1748525872,942743596,539762732,1598903105,1212367181,151653681,1684956448,1769103734,225734241,1852639498,843456613,154226008,1718558779,875642227,168650803,1885741065,1769103734,544501345,1748591664,741351468,812003360,151653736,1684956448,1769103734,225734241,1852639498,1095114853,990466882,1936092960,926167357,151653736,1987077664,1634300513,807433326,745027940,539766816,1748067632,537463309,1986293349,1634300513,168653934,1701735689,1145128480,540739908,1030973039,1749169201,537463309,1769103734,544501345,1747988530,959520812,537463309,1769103734,544501345,1748250674,808591404,537463309,1635151974,1851877746,1680875636,539781176,539767090,1748001584,537463309,1635151974,1851877746,1680875636,539781219,539767346,1748001584,537463309,1986293349,1634300513,168653934,1701735689]},{"sector":6,"length":512,"data":[1145128480,990466116,1936092960,909455677,151653736,1987077664,1634300513,807433326,745039204,741552672,811806752,151653736,1987077664,1634300513,807433326,745039204,539766816,1748067120,537463309,1986293349,1634300513,168653934,1701735689,1279411744,540739908,1030973039,1749300529,537463309,1769103734,544501345,1748447794,909254700,537463309,1986293349,1634300513,168653934,1701735689,1396852256,990466132,1936092960,808857917,151653736,1918989856,1953390953,926102048,840969320,151653686,1684956448,1769103734,225734241,1852639498,1128669285,990466888,1936092960,859189565,151653736,1987077664,1634300513,807433326,745027940,539766816,1748002096,537463309,1986293349,1634300513,168653934,1701735689,1279477280,539777093,1598903105,1414086999,1864383241,826110822,224933686,1852639498,1313218661,1480936515,1864383241,826110822,224933942,1713375498,1918989936,1953390953,1650733088,807414888,1697652780,168650802,1852121097,1918989924,1953390953,1829308941,1176528238,1448037699,540739906,1030973039,1749235249,537463309,1635151974,1851877746,1680875636,539781217,539767090,1748001584,539762732,1598903105,1212367181,151653686,1684956448,1769103734,225734241,1852639498,1128669285,1112952653,540739909,1030973039,1748055857,537463309,1635151974,1851877746,1680875636,539781217,539767090,1748001840,539762732,1598903105,1212367181,151653686,1684956448]},{"sector":7,"length":512,"data":[1769103734,225734241,1852639498,1128669285,1163284301,1864383241,826110822,224933431,1713375498,1918989936,1953390953,1633955872,840969320,807414833,745027683,1092627488,1298091347,910705473,537463309,1986293349,1634300513,168653934,1701735689,1296254496,1112430159,1864383241,826110822,224936503,1713375498,1918989936,1953390953,1650733088,840969320,807414833,745025635,1092627488,1298091347,910705473,537463309,1986293349,1634300513,168653934,1701735689,1296254496,1112430159,540739909,1030973039,1747990577,537463309,1635151974,1851877746,1680875636,539781218,539767090,1748001840,539762732,1598903105,1212367181,151653686,1684956448,1769103734,225734241,1852639498,1128669285,1314279245,540739909,1030973039,1748318257,537463309,1635151974,1851877746,1680875636,539781218,539767090,1748525872,539762732,1598903105,1212367181,151653686,1684956448,1769103734,225734241,1852639498,1128669285,1314279245,540739925,1030973039,1749104689,537463309,1635151974,1851877746,1680875636,539781218,539767090,1748526128,539762732,1598903105,1212367181,151653686,1684956448,1769103734,225734241,1852639498,1128669285,1431719757,1864383241,826110822,224937528,1713375498,1918989936,1953390953,1633955872,840969320,807414833,745027684,1092627488,1298091347,910705473,537463309,1986293349,1634300513,168653934,1701735689,1329808928,540739917,1030973039,1748252977,537463309]},{"sector":8,"length":512,"data":[1769103734,544501345,1747988786,959520812,537463309,1769103734,544501345,1748250930,808591404,537463309,1635151974,1851877746,1680875636,539781176,539768882,1748001840,537463309,1635151974,1851877746,1680875636,539781176,807414832,224932196,1696598282,1635148910,1851877746,151653748,543518317,1297040198,540739913,1030973039,1749432625,537463309,1635151974,1851877746,1680875636,539781218,539768882,1748002352,539762732,1598903105,1212367181,151653686,1987077664,1634300513,807433326,745038436,539766816,1748067888,539762732,1598903105,1212367181,151653686,1684956448,1769103734,225734241,1852639498,1128669285,1346981199,1864383241,826110822,224933953,1713375498,1918989936,1953390953,1717841952,840969320,807414840,745025638,1092627488,1298091347,910705473,537463309,1635151974,1851877746,1680875636,539781222,807414832,745025894,1092627488,1298091347,910705473,537463309,1986293349,1634300513,168653934,1701735689,1329808928,990466125,1936092960,826421565,151653736,1918989856,1953390953,942748192,824192104,151653689,1918989856,1953390953,1664168480,840969320,151653680,1987077664,1634300513,807433326,745027684,741880352,946090016,151653736,1987077664,1634300513,807433326,745027684,539766816,1748591664,537463309,1986293349,1634300513,168653934,1701735689,1329808928,156258381,1718558779,1110523251,168650819,1885741065,1769103734,544501345]},{"sector":9,"length":512,"data":[1751475248,741351468,962867232,151653736,1684956448,1769103734,225734241,1852639498,1128669285,990466895,1936092960,809709885,151653736,1987077664,1634300513,807433326,745027940,539766816,1751541296,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1145446501,1414742853,540739920,1030973039,1748321073,537463309,1635151974,1851877746,1680875636,539781177,807414832,224933478,1696598282,1635148910,1851877746,151653748,543518317,1397310534,1092627529,1465863507,156518721,1718558779,1127300467,168650809,1701735689,1145980448,155800393,1718558779,1127300467,168650817,1885741065,1769103734,544501345,1751278640,741351468,828715040,151653736,1684956448,1769103734,225734241,1852639498,1145446501,990467657,1936092960,1162031421,151653736,1918989856,1953390953,808661536,824192104,151653689,1918989856,1953390953,875770400,840969320,151653680,1987077664,1634300513,807433326,745027684,741421600,812003360,151653736,1987077664,1634300513,807433326,745038692,741487136,946221088,151653736,1684956448,1769103734,225734241,1852639498,1145446501,156259913,1718558779,1144077683,168650809,1885741065,1769103734,544501345,1751475248,858923052,1714429996,168650808,1885741065,1769103734,544501345,1751475248,741351468,962998304,151653736,1684956448,1769103734,225734241,1852639498,1145446501,156390985,1718558779,1160854899]}],[{"sector":1,"length":512,"data":[168650800,1635131401,1851877746,858923124,539781176,168638769,1635131401,1851877746,858923124,539781219,168636466,1885741065,1769103734,544501345,1748526128,825368620,1714429996,168650808,1885741065,1769103734,544501345,1751344176,842145836,1714429996,168650800,1852121097,1918989924,1953390953,1829308941,1176528238,1381386564,540739920,1030973039,1749173553,537463309,1635151974,1851877746,1680875636,539781221,539767602,1748002352,537463309,1635151974,1851877746,1680875636,539781221,807414832,224932198,1696598282,1635148910,1851877746,151653748,543518317,1229866310,1396777004,1096245069,990467145,1936092960,843460925,151653736,543518317,1313164870,540739913,1030973039,1748190769,537463309,1635151974,1851877746,1680875636,539781218,807414832,224931941,1696598282,1635148910,1851877746,151653748,543518317,1163019846,540739909,1030973039,1748452913,537463309,1635151974,1851877746,1680875636,539781220,539768626,1748001584,537463309,1986293349,1634300513,168653934,1701735689,1380337184,156255557,1718558779,1177632115,168650818,1885741065,1769103734,544501345,1751540784,926031916,1664098348,168650800,1852121097,1918989924,1953390953,1829308941,1176528238,1145323849,1864383241,826110822,224937542,1981810954,1634300513,840987758,745026096,221524512,1981810954,1634300513,840987758,745027120,221590048,1696598282,1635148910,1851877746,151653748]},{"sector":2,"length":512,"data":[543518317,1329809734,540739917,1030973039,1748250674,537463309,1769103734,544501345,1748119858,875700268,537463309,1769103734,544501345,1748382002,892477484,537463309,1986293349,1634300513,168653934,1701735689,1128875552,156257615,1718558779,808598899,168650809,1635131401,1851877746,825368692,539781217,168637490,1635131401,1851877746,825368692,539781221,168637746,1852121097,1918989924,1953390953,1829308941,1176528238,1447642185,1864383241,842888038,224937264,1981810954,1634300513,840987758,745026099,221524512,1981810954,1634300513,840987758,745027123,221590048,1696598282,1635148910,1851877746,151653748,543518317,1229211974,990466646,1936092960,858862141,151653736,1918989856,1953390953,1630745120,840969320,151653684,1918989856,1953390953,1697853984,840969320,151653685,1684956448,1769103734,225734241,1852639498,1229332581,990463052,1936092960,942748221,151653736,1918989856,1953390953,858796576,840969320,151653684,1918989856,1953390953,925905440,840969320,151653685,1918989856,1953390953,1714565664,824192104,151653685,1684956448,1769103734,225734241,1852639498,1229332581,155997517,1718558779,825376115,168650822,1635131401,1851877746,808591476,539781217,168637490,1635131401,1851877746,808591476,539781221,168637746,1852121097,1918989924,1953390953,1829308941,1176528238,1396919881,990466132,1936092960,875704893,151653736,1987077664]},{"sector":3,"length":512,"data":[1634300513,807433326,745027940,539766816,1748461104,537463309,1986293349,1634300513,168653934,1701735689,1313424928,539776073,1598903105,1414086999,1864383241,842888038,224933938,1852639498,1313218661,1414090313,1864383241,842888038,224934194,1713375498,1918989936,1953390953,1650733088,807414888,1697652780,168650803,1852121097,1918989924,1953390953,1829308941,1176528238,156521289,1718558779,842153331,168650820,1635131401,1851877746,825368692,539781171,168637490,1635131401,1851877746,825368692,539781175,168637746,1852121097,1918989924,1953390953,1829308941,1176528238,1347703625,1864383241,842888038,224932403,1981810954,1634300513,840987758,745038385,221524512,1981810954,1634300513,840987758,745039409,221590048,1981810954,1634300513,840987758,745039411,221589792,1696598282,1635148910,1851877746,151653748,543518317,1431521606,540739906,1030973039,1748579122,537463309,1769103734,544501345,1748120114,875700268,537463309,1769103734,544501345,1748382258,892477484,537463309,1986293349,1634300513,168653934,1701735689,1397311008,156385877,1718558779,858930547,168650821,1635131401,1851877746,842145908,539781217,168637490,1635131401,1851877746,842145908,539781221,168637746,1852121097,1918989924,1953390953,1829308941,1176528238,991970380,1936092960,859058749,151653736,1918989856,1953390953,825242144,824192104,151653689,1918989856,1953390953]},{"sector":4,"length":512,"data":[892351008,840969320,151653680,1918989856,1953390953,1647456800,840969320,151653686,1987077664,1634300513,807433326,745027940,741814816,811806752,151653736,1684956448,1769103734,225734241,1852639498,1279664229,990458180,1936092960,1144271421,151653736,1987077664,1634300513,807433326,745027940,539766816,1748526384,537463309,1986293349,1634300513,168653934,1701735689,1145849376,156512844,1718558779,892484979,168650801,1885741065,1769103734,544501345,1748591664,741351468,962932768,151653736,1684956448,1769103734,225734241,1852639498,1279664229,1160924228,1864383241,842888038,224933173,1713375498,1918989936,1953390953,962867232,807414888,1697652780,168650849,1852121097,1918989924,1953390953,1829308941,1176528238,1229997132,1864383241,842888038,224934197,1713375498,1918989936,1953390953,962867232,807414888,1697652780,168650850,1852121097,1918989924,1953390953,1829308941,1176528238,1196180556,540739890,1030973039,1749300530,537463309,1635151974,1851877746,1680875636,539781177,807414832,224944997,1696598282,1635148910,1851877746,151653748,543518317,1279544390,990458446,1936092960,825635389,151653736,1987077664,1634300513,807433326,745027940,539766816,1751409968,537463309,1986293349,1634300513,168653934,1701735689,1145849376,540739930,1030973039,1748317746,537463309,1635151974,1851877746,1680875636,539781177,807414832,224945509,1696598282]},{"sector":5,"length":512,"data":[1635148910,1851877746,151653748,543518317,1128549446,540739927,1030973039,1748579890,537463309,1769103734,544501345,1748578866,892477484,537463309,1986293349,1634300513,168653934,1701735689,1145849376,156651077,1718558779,909262195,168650819,1635131401,1851877746,842145908,539781169,168638770,1852121097,1918989924,1953390953,1829308941,1176528238,1313162316,539776854,1598903105,154546500,1718558779,909262195,168650822,1701735689,1145849376,1146506821,1396777004,860118861,540739890,1030973039,1747990322,537463309,1769103734,544501345,1748054578,959586348,537463309,1986293349,1634300513,168653934,1701735689,1431127584,540739916,1030973039,1748252466,537463309,1769103734,544501345,1748512818,959520812,537463309,1769103734,544501345,1751330866,808591404,537463309,1635151974,1851877746,1680875636,539781176,539767090,1748525872,537463309,1635151974,1851877746,1680875636,539781219,539767346,1748525872,537463309,1986293349,1634300513,168653934,1701735689,1431127584,990466124,1936092960,1178022461,151653736,1987077664,1634300513,807433326,745039204,741552672,946024480,151653736,1987077664,1634300513,807433326,745039204,539766816,1748591408,537463309,1986293349,1634300513,168653934,1701735689,1330529824,540739920,1030973039,1748383794,537463309,1635151974,1851877746,1680875636,539781177,807414832,224931940,1696598282,1635148910,1851877746]},{"sector":6,"length":512,"data":[151653748,543518317,1413566534,990465601,1936092960,1094201917,151653736,1987077664,1634300513,807433326,745027940,539766816,1748198960,537463309,1986293349,1634300513,168653934,1701735689,1380992544,990465349,1936092960,1161310781,151653736,1987077664,1634300513,807433326,745027940,539766816,1748526640,537463309,1986293349,1634300513,168653934,1701735689,1380992544,154225989,1718558779,959593843,168650802,1885741065,1769103734,544501345,1748591664,741351468,895889440,740306024,1297301792,1128353119,168637256,1852121097,1918989924,1953390953,1829308941,1176528238,1312904272,1864383241,842888038,224933689,1713375498,1918989936,1953390953,962867232,807414888,1714429996,168650802,1852121097,1918989924,1953390953,1829308941,1176528238,1229213266,990467150,1936092960,1111044669,151653736,1987077664,1634300513,807433326,745027940,539766816,1751344688,537463309,1986293349,1634300513,168653934,1701735689,1397900832,156389204,1718558779,959593843,168650822,1635131401,1851877746,842145908,539781173,168638770,1852121097,1918989924,1953390953,1829308941,1176528238,1330926418,539776850,1598903105,154546500,1718558779,1093811571,168650802,1701735689,1397900832,1146244948,1396777004,860118861,540739890,1030973039,1748189490,537463309,1769103734,544501345,1748316722,959586348,537463309,1986293349,1634300513,168653934,1701735689,1095976480,539772246]},{"sector":7,"length":512,"data":[1598903105,1414086999,1864383241,842888038,224933697,1852639498,1313218661,1163280723,1864383241,842888038,224933953,1981810954,1634300513,840987758,745026867,221852192,1696598282,1635148910,1851877746,151653748,543518317,1447121734,539776837,1598903105,154546500,1718558779,1093811571,168650818,1701735689,1095976480,742671702,1297301792,842220639,1864383241,842888038,224936769,1981810954,1634300513,840987758,745026867,221852192,1696598282,1635148910,1851877746,151653748,543518317,1094931270,990463308,1936092960,809644605,151653736,1987077664,1634300513,807433326,745027940,539766816,1751410224,537463309,1986293349,1634300513,168653934,1701735689,1163085344,156061780,1718558779,1110588787,168650804,1885741065,1769103734,544501345,1751278640,741351468,879046688,740306024,1297301792,1128353119,168637000,1852121097,1918989924,1953390953,1829308941,1176528238,156125523,1718558779,1110588787,168650809,1885741065,1769103734,544501345,1748591664,741351468,1701195808,740306024,1297301792,1128353119,168637256,1852121097,1918989924,1953390953,1829308941,1176528238,1129204051,990466895,1936092960,1161966141,151653736,1987077664,1634300513,807433326,745027940,539766816,1751279152,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1397104741,156521041,1718558779,1127366003,168650803,1885741065,1769103734,544501345]},{"sector":8,"length":512,"data":[1748591664,741351468,1634086944,151653736,1684956448,1769103734,225734241,1852639498,1397104741,540745812,1030973039,1748452146,537463309,1769103734,544501345,1748054322,959520812,537463309,1769103734,544501345,1748316466,808591404,537463309,1635151974,1851877746,1680875636,539781220,539768626,1748001840,537463309,1986293349,1634300513,168653934,1701735689,1414743584,540739920,1030973039,1749435186,537463309,1769103734,544501345,1748578610,959520812,537463309,1769103734,544501345,1751396658,808591404,537463309,1769103734,544501345,1751266098,909254700,537463309,1635151974,1851877746,1680875636,539781220,539768626,1748526128,537463309,1986293349,1634300513,168653934,1701735689,1414743584,539776835,1598903105,1414086999,1864383241,842888038,224934212,1852639498,1313218661,1464030291,1864383241,842888038,224936260,1981810954,1634300513,840987758,745027891,221590048,1696598282,1635148910,1851877746,151653748,543518317,1163154246,539776590,1598903105,1414086999,1864383241,842888038,224937028,1852639498,1313218661,1313166419,540739926,1030973039,1749369906,537463309,1769103734,544501345,1748054834,959586348,537463309,1986293349,1634300513,168653934,1701735689,1414743584,1465273925,1396777004,826564429,540739894,1030973039,1748059442,1829308941,1176528238,1313166419,539771990,1598903105,154284868,1718558779,1160920435,168650802,1635131401]},{"sector":9,"length":512,"data":[1851877746,858923124,539781169,168638770,1852121097,1918989924,1953390953,1829308941,1176528238,1465078867,1396777004,1096245069,990467145,1936092960,910504509,151653736,543518317,1414745670,990467923,1936092960,927281725,151653736,1987077664,1634300513,807433326,745039460,741356320,811937824,740306024,1297301792,1128353119,168637000,1635131401,1851877746,858923124,539781220,168637746,1852121097,1918989924,1953390953,1829308941,1176528238,155342163,1718558779,1160920435,168650821,1635131401,1851877746,842145908,539781168,168638769,1635131401,1851877746,842145908,539781172,168636466,1885741065,1769103734,544501345,1748526128,825368620,1697652780,168650800,1885741065,1769103734,544501345,1751344176,842145836,1697652780,168650808,1852121097,1918989924,1953390953,1829308941,1176528238,1346524499,1864383241,842888038,224934214,1713375498,1918989936,1953390953,1701064736,840969320,807414835,224933989,1713375498,1918989936,1953390953,1701064736,807414888,1697652780,168650809,1852121097,1918989924,1953390953,1829308941,1176528238,1380078931,1864383241,859665254,224931888,1981810954,1634300513,840987758,745027634,221851936,1981810954,1634300513,840987758,745038642,221262368,1713375498,1918989936,1953390953,946090016,840969320,807414833,224933989,1713375498,1918989936,1953390953,1667510304,840969320,807414834,224931941,1696598282,1635148910]}]],[[{"sector":1,"length":512,"data":[1851877746,151653748,543518317,1112888134,990466130,1936092960,1110455101,151653736,1987077664,1634300513,807433326,745039204,741552672,811937824,151653736,1987077664,1634300513,807433326,745039204,539766816,1748067632,537463309,1986293349,1634300513,168653934,1701735689,1398031904,540739924,1030973039,1748119859,537463309,1635151974,1851877746,1680875636,539781177,807414832,224932965,1696598282,1635148910,1851877746,151653748,543518317,1329812806,540739917,1030973039,1748382003,537463309,1635151974,1851877746,1680875636,539781220,539768882,1748002096,539762732,1598903105,1212367181,151653683,1987077664,1634300513,807433326,745038948,539766816,1748067632,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1430659173,1229803331,1864383241,859665254,224937521,1713375498,1918989936,1953390953,1650733088,840969320,807414840,745027685,1092627488,1298091347,910705473,537463309,1635151974,1851877746,1680875636,539781218,807414832,745027941,1092627488,1298091347,910705473,537463309,1986293349,1634300513,168653934,1701735689,1129661984,1346981199,1864383241,859665254,224933938,1713375498,1918989936,1953390953,1717841952,840969320,807414840,745027685,1092627488,1298091347,910705473,537463309,1635151974,1851877746,1680875636,539781222,807414832,745027941,1092627488,1298091347,910705473,537463309,1986293349]},{"sector":2,"length":512,"data":[1634300513,168653934,1701735689,1129661984,156257615,1718558779,858996083,168650801,1885741065,1769103734,544501345,1751409712,942809132,1697652780,539781176,1396777004,1095589709,221464643,1713375498,1918989936,1953390953,1684287520,807414888,1697652780,539781177,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,1329812806,156258381,1718558779,858996083,168650817,1885741065,1769103734,544501345,1751213104,741351468,962932768,740306024,1297301792,1128353119,168637256,1852121097,1918989924,1953390953,1829308941,1176528238,1414086999,1864383241,859665254,224937523,1981810954,1634300513,807433326,745038393,168636448,1852121097,1918989924,1953390953,1829308941,1176528238,156057944,1718558779,875773299,168650802,1885741065,1769103734,544501345,1748591664,741351468,895823904,151653736,1684956448,1769103734,225734241,1852639498,1480990821,990464067,1936092960,909390653,151653736,1987077664,1634300513,807433326,745027940,741880352,946024480,151653736,1987077664,1634300513,807433326,745027940,539766816,1748591408,537463309,1986293349,1634300513,168653934,1701735689,1415071264,1413693778,1864383241,859665254,224937012,1713375498,1918989936,1953390953,962867232,807414888,1714429996,168650804,1852121097,1918989924,1953390953,1829308941,1176528238,1479691353,1864383241,859665254,224932149,1713375498,1918989936]},{"sector":3,"length":512,"data":[1953390953,962867232,807414888,1714429996,168650801,1852121097,1918989924,1953390953,1829308941,1176528238,1479691353,990458192,1936092960,892678973,151653736,1987077664,1634300513,807433326,745027940,539766816,1748592176,537463309,1986293349,1634300513,168653934,1701735689,1414285344,1864383264,859665254,224934197,1981810954,1634300513,807433326,745026662,168636448,1852121097,1918989924,1953390953,1829308941,1226859886,156649796,1718558779,892550515,168650819,1635131401,1851877746,1195450484,908611666,740898604,221655328,1696598282,1635148910,1851877746,151653748,543518317,1280658761,1864383241,859665254,224937525,1981810954,1634300513,1092645998,676352583,691350582,909189164,537463309,1769103734,544501345,1751540017,741875756,1092627488,1298091347,860373825,537463309,1769103734,544501345,1751266864,825434156,539762732,1598903105,1212367181,151653681,1918989856,1953390953,1647718432,857746536,740305970,1297301792,1128353119,168636744,1635131401,1851877746,909123700,539781177,539767603,1396777004,1095589709,221333571,1981810954,1634300513,807433326,745027894,741618464,1092627488,1298091347,826819393,537463309,1986293349,1634300513,168653934,1701735689,156125472,1718558779,926104947,168650801,1635131401,1851877746,1697652852,539781172,168637747,1635131401,1851877746,1697652852,539781219,168638003,1852121097,1918989924,1953390953]},{"sector":4,"length":512,"data":[1829308941,1226859886,991970126,1936092960,909587261,151653736,1918989856,1953390953,808726560,824192104,151653687,1918989856,1953390953,1380401440,741681232,539765040,539768369,1598903105,1262702412,1162625601,537463309,1986293349,1634300513,168653934,1701735689,1397639456,540739906,1030973039,1749235507,537463309,1769103734,544501345,1751332400,741351468,1092627488,1298091347,826819393,537463309,1986293349,1634300513,168653934,1701735689,1397639456,1092627543,1147096403,990459441,1936092960,808989501,151653736,543518317,1146310217,1396777004,860118861,540739890,1030973039,1748056115,537463309,1769103734,544501345,1751397936,741351468,1092627488,1298091347,826819393,537463309,1986293349,1634300513,168653934,1701735689,1414416672,1864383264,859665254,224933432,1981810954,1634300513,807433326,745038691,221721376,1981810954,1634300513,807433326,745038947,221786912,1696598282,1635148910,1851877746,151653748,543518317,827608649,1864383241,859665254,224936504,1981810954,1634300513,807433326,745025894,539766816,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,1330925129,1864383241,859665254,224937528,1981810954,1634300513,807433326,745039203,168636448,1852121097,1918989924,1953390953,1829308941,1226859886,155473486,1718558779,959659379,168650802,1635131401,1851877746,808525940,539781176,740305968]},{"sector":5,"length":512,"data":[1297301792,1128353119,168637512,1852121097,1918989924,1953390953,1829308941,1226859886,1347180110,540739911,1030973039,1748384051,537463309,1769103734,544501345,1347569473,925644584,840969257,740305977,1297301792,1128353119,168637512,1852121097,1918989924,1953390953,1829308941,1226859886,743720274,1297301792,909198431,1864383241,859665254,224936249,1852639498,1380524133,742675525,1297301792,842220639,1864383241,859665254,224936505,1981810954,1634300513,807433326,745039459,168636448,1852121097,1918989924,1953390953,1829308941,1243637102,540739905,1030973039,1749432627,537463309,1769103734,544501345,1748449072,959651884,537463309,1769103734,544501345,1748449329,842080300,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1095376997,540745797,1030973039,1748320563,537463309,1769103734,544501345,1748186928,959651884,537463309,1769103734,544501345,1748187185,842080300,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1112154213,1864383241,859665254,224936513,1981810954,1634300513,807433326,745026103,221852448,1981810954,1634300513,824210542,745026104,741486880,1092627488,1298091347,860373825,537463309,1986293349,1634300513,168653934,1701735689,1161972256,1864383264,859665254,224932162,1981810954,1634300513,807433326,745027127,221852448,1981810954,1634300513,824210542]},{"sector":6,"length":512,"data":[745027128,741486880,1092627488,1298091347,860373825,537463309,1986293349,1634300513,168653934,1701735689,155404832,1718558779,1110654323,168650807,1635131401,1851877746,925900916,539781170,168638771,1635131401,1851877746,942743668,539781170,539767345,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,1515733834,1396777004,826564429,540739894,1030973039,1749303859,1829308941,1243637102,1515733829,1396777004,860118861,540739890,1030973039,1749369395,537463309,1769103734,544501345,1748198704,959651884,537463309,1986293349,1634300513,168653934,1701735689,155535904,1718558779,1127431539,168650802,1635131401,1851877746,925900916,539781172,168638771,1635131401,1851877746,942743668,539781172,539767345,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,990463818,1936092960,943928125,151653736,1918989856,1953390953,1714892832,857746536,151653689,1918989856,1953390953,1714958624,824192104,740305970,1297301792,1128353119,168637256,1852121097,1918989924,1953390953,1829308941,1243637102,991970631,1936092960,1162031933,151653736,1918989856,1953390953,1681338400,857746536,151653689,1918989856,1953390953,1681404192,824192104,740305970,1297301792,1128353119,168637256,1852121097,1918989924,1953390953,1829308941,1243637102,540739916,1030973039,1748255795,537463309,1769103734,544501345]},{"sector":7,"length":512,"data":[1751332656,959651884,537463309,1769103734,544501345,1751332913,842080300,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1279926373,540745797,1030973039,1749107763,537463309,1769103734,544501345,1751463728,959651884,537463309,1769103734,544501345,1751463985,842080300,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1313480805,540745793,1030973039,1747993907,537463309,1769103734,544501345,1748383536,959651884,537463309,1769103734,544501345,1748383793,842080300,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1313480805,990463297,1936092960,910504765,151653736,1918989856,1953390953,842477600,857746536,151653689,1918989856,1953390953,842543392,824192104,740305970,1297301792,1128353119,168637256,1852121097,1918989924,1953390953,1829308941,1243637102,991969870,1936092960,1128608573,151653736,1918989856,1953390953,859254816,857746536,151653689,1918989856,1953390953,859320608,824192104,740305970,1297301792,1128353119,168637256,1852121097,1918989924,1953390953,1829308941,1243637102,155533902,1718558779,1177763187,168650802,1635131401,1851877746,925900916,539781175,168638771,1635131401,1851877746,942743668,539781175,539767345,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,541281866,1718558779]},{"sector":8,"length":512,"data":[1177763187,168650808,1635131401,1851877746,925900916,539781171,168638771,1635131401,1851877746,942743668,539781171,539767345,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,541412938,1718558779,1177763187,168650821,1635131401,1851877746,925900916,539781173,168638771,1635131401,1851877746,942743668,539781173,539767345,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,541544010,1718558779,808729971,168650804,1635131401,1851877746,925900916,539781221,168638771,1635131401,1851877746,942743668,539781221,539767345,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,1162301002,1864383241,876442470,224936240,1981810954,1634300513,807433326,745038647,221852448,1981810954,1634300513,824210542,745038648,741486880,1092627488,1298091347,860373825,537463309,1986293349,1634300513,168653934,1701735689,1280199200,1864383264,876442470,224931889,1981810954,1634300513,807433326,745038903,221852448,1981810954,1634300513,824210542,745038904,741486880,1092627488,1298091347,860373825,537463309,1986293349,1634300513,168653934,1701735689,1280199200,540739909,1030973039,1748382004,537463309,1769103734,544501345,1751529264,959651884,537463309,1769103734,544501345,1751529521,842080300,539762732,1598903105,1212367181,151653683,1684956448,1769103734]},{"sector":9,"length":512,"data":[225734241,1852639498,1313480805,540745807,1030973039,1749233972,537463309,1769103734,544501345,1748055856,959651884,537463309,1769103734,544501345,1748056113,842080300,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1313480805,540745808,1030973039,1748120116,537463309,1769103734,544501345,1751267120,959651884,537463309,1769103734,544501345,1751267377,842080300,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1313480805,540745811,1030973039,1748513332,537463309,1769103734,544501345,1748580144,959651884,537463309,1769103734,544501345,1748580401,842080300,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1313480805,540745818,1030973039,1749365300,537463309,1769103734,544501345,1748318000,959651884,537463309,1769103734,544501345,1748318257,842080300,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1330258021,1864383241,876442470,224932915,1981810954,1634300513,807433326,745025591,221852448,1981810954,1634300513,824210542,745025592,741486880,1092627488,1298091347,860373825,537463309,1986293349,1634300513,168653934,1701735689,156256800,1718558779,859061619,168650817,1635131401,1851877746,925900916,539781217,168638771,1635131401,1851877746,942743668,539781217,539767345,1396777004,1095589709]}],[{"sector":1,"length":512,"data":[221464643,1696598282,1635148910,1851877746,151653748,543518317,541413450,1718558779,875838835,168650800,1635131401,1851877746,925900916,539781217,168638771,1635131401,1851877746,942743668,539781217,539767345,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,542068810,1718558779,875838835,168650806,1635131401,1851877746,925900916,539781218,168638771,1635131401,1851877746,942743668,539781218,539767345,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,990466890,1936092960,1127494717,151653736,1918989856,1953390953,943140896,857746536,151653689,1918989856,1953390953,943206688,824192104,740305970,1297301792,1128353119,168637256,1852121097,1918989924,1953390953,1829308941,1243637102,540739930,1030973039,1748120884,537463309,1769103734,544501345,1748252464,959651884,537463309,1769103734,544501345,1748252721,842080300,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1296703589,540745808,1030973039,1748514100,537463309,1769103734,544501345,1751278896,959651884,537463309,1769103734,544501345,1748591920,842080300,537463309,1769103734,544501345,1347569473,875311912,874523689,151653680,1918989856,1953390953,1380401440,741550160,539765045,168637489,1635131401,1851877746,1697652852,539781217,168637233,1852121097,1918989924,1953390953]},{"sector":2,"length":512,"data":[1829308941,1277191534,155600961,1718558779,909393267,168650803,1635131401,1851877746,959455348,539781222,151653680,1684956448,1769103734,225734241,1852639498,1095508069,540745810,1030973039,1748383284,537463309,1769103734,544501345,1748119601,741875756,1092627488,1298091347,843596609,537463309,1986293349,1634300513,168653934,1701735689,1396984864,1864383264,876442470,224936246,1981810954,1634300513,807433326,745026915,168638240,1852121097,1918989924,1953390953,1829308941,1277191534,991974213,1936092960,1144403005,151653736,1918989856,1953390953,878915616,924855400,537463309,1986293349,1634300513,168653934,1701735689,1397115936,1864383264,876442470,224931895,1981810954,1634300513,824210542,745026658,539768608,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,542328652,1718558779,926170483,168650804,1635131401,1851877746,1647386740,539781173,740305975,1297301792,1128353119,168637256,1852121097,1918989924,1953390953,1829308941,1277191534,991974227,1936092960,943141949,151653736,1918989856,1953390953,845295904,924855400,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1162616933,540745793,1030973039,1749235508,537463309,1769103734,544501345,1751398448,221716524,1696598282,1635148910,1851877746,151653748,543518317,1447118156,540739909,1030973039,1749432116,537463309]},{"sector":3,"length":512,"data":[1769103734,544501345,1748591408,741351468,1092627488,1298091347,826819393,537463309,1986293349,1634300513,168653934,1701735689,1145523232,540739924,1030973039,1748187188,537463309,1769103734,544501345,1347569473,841758504,840969257,740305977,1297301792,1128353119,168637000,1852121097,1918989924,1953390953,1829308941,1277191534,156517449,1718558779,942947699,168650807,1635131401,1851877746,1195450484,925388882,740897580,741945888,1092627488,1298091347,843596609,537463309,1986293349,1634300513,168653934,1701735689,1145850912,540739924,1030973039,1749170228,537463309,1769103734,544501345,1347569473,841758760,874523689,740305969,1297301792,1128353119,168637000,1852121097,1918989924,1953390953,1829308941,1277191534,156717901,1718558779,942947699,168650822,1635131401,1851877746,1195450484,925388882,740898348,741422112,1092627488,1298091347,843596609,537463309,1986293349,1634300513,168653934,1701735689,1095715872,1280065860,1864383241,876442470,224932665,1981810954,1634300513,824210542,745026864,539766816,1396777004,1095589709,221399107,1696598282,1635148910,1851877746,151653748,543518317,1262702412,1396777004,1330405197,1163021123,807414864,157823078,1718558779,959724915,168650807,1701735689,1146047520,990462547,1936092960,960050237,151653736,1918989856,1953390953,1667313696,807414888,537463309,1986293349,1634300513,168653934,1701735689]},{"sector":4,"length":512,"data":[1146047520,539776851,1598903105,154546500,1718558779,959724915,168650819,1701735689,1146047520,539771987,1598903105,154284868,1718558779,959724915,168650820,1635131401,1851877746,1630543988,539781220,151653680,1684956448,1769103734,225734241,1852639498,1330389093,990466127,1936092960,826356797,151653736,1918989856,1953390953,845492256,857746536,151653689,1684956448,1769103734,225734241,1852639498,1330389093,743919695,1297301792,909198431,1864383241,876442470,224932929,1852639498,1330389093,742674511,1297301792,842220639,1864383241,876442470,224933185,1981810954,1634300513,807433326,745026149,221852448,1696598282,1635148910,1851877746,151653748,543518317,1347374924,540739909,1030973039,1748582708,537463309,1769103734,544501345,1748067632,959651884,537463309,1986293349,1634300513,168653934,1701735689,1330596896,743916880,1297301792,909198431,1864383241,876442470,224936769,1852639498,1330389093,1145393231,1396777004,860118861,540739890,1030973039,1749303604,537463309,1769103734,544501345,1748067632,959651884,537463309,1986293349,1634300513,168653934,1701735689,1330596896,990468688,1936092960,826422333,151653736,1918989856,1953390953,828715040,857746536,151653689,1684956448,1769103734,225734241,1852639498,1330389093,1465536591,1396777004,826564429,540739894,1030973039,1748255284,1829308941,1277191534,1515212623,1092627524,1147096403]},{"sector":5,"length":512,"data":[990458419,1936092960,893531197,151653736,1918989856,1953390953,828715040,857746536,151653689,1684956448,1769103734,225734241,1852639498,1330389093,1162760271,1864383241,876442470,224934210,1981810954,1634300513,807433326,745025637,221852448,1696598282,1635148910,1851877746,151653748,543518317,1347374924,743916878,1297301792,909198431,1864383241,876442470,224936770,1852639498,1330389093,1162760271,1092627524,1147096403,990458419,1936092960,1145189437,151653736,1918989856,1953390953,811937824,857746536,151653689,1684956448,1769103734,225734241,1852639498,1330389093,1515081807,1864383241,876442470,224932163,1981810954,1634300513,807433326,745025637,221852448,1696598282,1635148910,1851877746,151653748,543518317,1347374924,743922254,1297301792,909198431,1864383241,876442470,224932931,1852639498,1330389093,1515081807,1092627524,1147096403,990458419,1936092960,893596733,151653736,1918989856,1953390953,811937824,857746536,151653689,1684956448,1769103734,225734241,1852639498,1397497957,540745804,1030973039,1748583220,537463309,1769103734,544501345,1748185137,741875756,1092627488,1298091347,843596609,537463309,1986293349,1634300513,168653934,1701735689,1381256224,1864383264,876442470,224937027,1981810954,1634300513,1092645998,676352583,691219512,825499692,539762732,1598903105,1212367181,151653682,1684956448,1769103734,225734241,1852639498]},{"sector":6,"length":512,"data":[1330454629,540745814,1030973039,1748059188,537463309,1769103734,544501345,1748001072,875831340,537463309,1769103734,544501345,1748132144,892608556,537463309,1769103734,544501345,1748514864,221519916,1981810954,1634300513,807433326,745038136,168637728,1635131401,1851877746,942678132,539781219,168636980,1635131401,1851877746,942678132,539781221,168637236,1635131401,1851877746,1647321204,539781168,168638004,1635131401,1851877746,1647321204,539781176,168638260,1635131401,1851877746,1195450484,958943314,740896812,168636960,1635131401,1851877746,842080372,539781168,539766839,1396777004,1095589709,221464643,1981810954,1634300513,824210542,745026098,741422880,1092627488,1298091347,860373825,537463309,1769103734,544501345,1748054577,842473516,539762732,1598903105,1212367181,151653683,1918989856,1953390953,858927392,924855400,740305971,1297301792,1128353119,168637256,1635131401,1851877746,842080372,539781172,539767863,1396777004,1095589709,221464643,1981810954,1634300513,824210542,745027122,741685024,1092627488,1298091347,860373825,537463309,1986293349,1634300513,168653934,1701735689,1448037664,990462547,1936092960,910570557,151653736,1918989856,1953390953,878784544,807414888,537463309,1986293349,1634300513,168653934,1701735689,1448037664,539776851,1598903105,154546500,1718558779,1177828723,168650809,1701735689,1448037664,539771987]},{"sector":7,"length":512,"data":[1598903105,154284868,1718558779,1177828723,168650817,1635131401,1851877746,1630543988,539781173,151653680,1684956448,1769103734,225734241,1852639498,1330454629,156783446,1718558779,1177828723,168650821,1635131401,1851877746,1647386740,539781221,539768884,1396777004,1095589709,221464643,1981810954,1634300513,824210542,745039458,741946400,1092627488,1298091347,860373825,537463309,1986293349,1634300513,168653934,1701735689,1448037664,990468186,1936092960,892351805,151653736,1918989856,1953390953,912404768,874523752,740305976,1297301792,1128353119,168637256,1635131401,1851877746,1647386740,539781175,539769140,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,541873485,1718558779,808795507,168650819,1635131401,1851877746,1195450484,908611666,740897836,221655328,1696598282,1635148910,1851877746,151653748,543518317,541541710,1718558779,808795507,168650822,1635131401,1851877746,1195450484,908611666,740897580,741749024,1297301792,1129270367,1279410507,151653701,1684956448,1769103734,225734241,1852639498,1330520165,540745808,1030973039,1748185397,537463309,1769103734,544501345,1747990832,221257772,1696598282,1635148910,1851877746,151653748,543518317,542396238,1718558779,825572723,168650806,1635131401,1851877746,1195450484,908611666,740897324,741749024,1297301792,1129270367,1279410507,151653701,1684956448]},{"sector":8,"length":512,"data":[1769103734,225734241,1852639498,1380917349,1864383241,893219686,224936241,1981810954,1634300513,1092645998,676352583,691088432,741548076,1297301792,1129270367,1279410507,151653701,1918989856,1953390953,1664102432,824192104,537463309,1769103734,544501345,1347569473,824979752,840969257,1396777004,1330405197,1111575363,168641868,1635131401,1851877746,808460404,539781176,1092627508,1281314131,1095451471,222645314,1981810954,1634300513,807433326,745038128,168637728,1852121097,1918989924,1953390953,1829308941,1327523182,539772754,1598903105,155669071,1718558779,842349939,168650808,1701735689,1414876960,1864383264,893219686,224936242,1981810954,1634300513,807433326,745027173,221263136,1981810954,1634300513,807433326,745039205,221328672,1696598282,1635148910,1851877746,151653748,543518317,1398035791,540739906,1030973039,1749430837,537463309,1769103734,544501345,1751463472,741351468,1092627488,1298091347,826819393,537463309,1986293349,1634300513,168653934,1701735689,1414876960,539776851,1598903105,154546500,1718558779,859127155,168650803,1701735689,1414876960,539771987,1598903105,154284868,1718558779,859127155,168650804,1635131401,1851877746,909123700,539781222,740305968,1297301792,1128353119,168636744,1852121097,1918989924,1953390953,1829308941,1344300398,991973455,1936092960,959657277,151653736,1918989856,1953390953,1380401440,808527952]},{"sector":9,"length":512,"data":[740896812,221394208,1981810954,1634300513,807433326,745027637,221720864,1981810954,1634300513,807433326,745039409,221722144,1981810954,1634300513,807433326,745027376,221525536,1981810954,1634300513,807433326,745027377,221656608,1981810954,1634300513,824210542,745025889,741881376,1092627488,1298091347,860373825,537463309,1769103734,544501345,1748590897,959848492,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1330651237,539771216,1598903105,154546500,1718558779,875904371,168650817,1701735689,1347375136,539771969,1598903105,154284868,1718558779,875904371,168650818,1635131401,1851877746,909123700,539781169,740305968,1297301792,1128353119,168636744,1852121097,1918989924,1953390953,1829308941,1344300398,742805583,1297301792,909198431,1864383241,893219686,224931893,1852639498,1330651237,742671952,1297301792,842220639,1864383241,893219686,224932149,1981810954,1634300513,807433326,745038905,168636448,1852121097,1918989924,1953390953,1829308941,1344300398,155734869,1718558779,892681587,168650805,1635131401,1851877746,892346484,539781168,168638257,1635131401,1851877746,1195450484,858280018,740898348,221262880,1981810954,1634300513,807433326,745038134,741618976,1092627488,1298091347,826819393,537463309,1769103734,544501345,1748514352,859119660,539762732,1598903105,1212367181,151653681,1918989856]}]],[[{"sector":1,"length":512,"data":[1953390953,1697656864,908078184,151653685,1918989856,1953390953,909193248,908078184,151653686,1918989856,1953390953,1697722400,908078184,151653687,1918989856,1953390953,909127712,908078184,151653684,1918989856,1953390953,811675936,908078184,740305976,1297301792,1128353119,168637256,1635131401,1851877746,1630609524,539781176,539769142,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,1213420880,1092627521,1147096403,990459441,1936092960,1161180477,151653736,543518317,1213420880,539771969,1598903105,154284868,1718558779,909458803,168650822,1635131401,1851877746,909123700,539781168,740305968,1297301792,1128353119,168636744,1852121097,1918989924,1953390953,1829308941,1344300398,1179145045,1396777004,826564429,540739894,1030973039,1748252469,1829308941,1344300398,1179145045,1092627524,1147096403,990458419,1936092960,892810557,151653736,1918989856,1953390953,1664692256,807414888,537463309,1986293349,1634300513,168653934,1701735689,1279480352,1864383264,893219686,224934199,1981810954,1634300513,1092645998,676352583,841756977,891300905,151653685,1918989856,1953390953,1380401440,842082384,740897324,221656352,1981810954,1634300513,1092645998,676352583,841757489,891300905,740305975,1297301792,1128353119,168636744,1852121097,1918989924,1953390953,1829308941,1377854830,991973955,1936092960,825767229,151653736]},{"sector":2,"length":512,"data":[1918989856,1953390953,1380401440,825305168,740897580,221590816,1981810954,1634300513,1092645998,676352583,858534449,891300905,151653686,1918989856,1953390953,1380401440,858859600,740897580,741815584,1092627488,1298091347,826819393,537463309,1986293349,1634300513,168653934,1701735689,1296323104,990466643,1936092960,959984957,151653736,1918989856,1953390953,842215712,807414888,539762732,1598903105,1212367181,151653685,1684956448,1769103734,225734241,1852639498,1146232933,155405648,1718558779,943013235,168650820,1635131401,1851877746,858857588,539781171,740305968,1297301792,1128353119,168638024,1852121097,1918989924,1953390953,1829308941,1377854830,1129534532,1864383241,893219686,224932153,1981810954,1634300513,824210542,745025843,539766816,1396777004,1095589709,221595715,1696598282,1635148910,1851877746,151653748,543518317,743458130,1297301792,1129270367,1346720331,1714429996,990472243,1936092960,892941629,151653736,543518317,1162888530,1396777004,1330405197,1163021123,807414864,157823846,1718558779,959790451,168650807,1701735689,1346720288,1092627546,1281314131,1380664143,539775045,1748198960,1864383241,893219686,224934201,1852639498,1163010149,742739536,1297301792,1129270367,1346720331,1714429996,990472242,1936092960,1111045437,151653736,543518317,1313883474,1092627546,1281314131,1380664143,539775045,1748133424,1864383241,893219686]},{"sector":3,"length":512,"data":[224937017,1852639498,1163010149,540745812,1030973039,1749432629,537463309,1769103734,544501345,1748198192,221257772,1981810954,1634300513,807433326,745026147,221787424,1696598282,1635148910,1851877746,151653748,543518317,1179927890,1396777004,826564429,540739894,1030973039,1748255029,1829308941,1377854830,1145459781,1396777004,860118861,540739890,1030973039,1748320565,537463309,1769103734,544501345,1751278384,221257772,1981810954,1634300513,807433326,745038179,221787424,1696598282,1635148910,1851877746,151653748,543518317,541871954,1718558779,1094008179,168650818,1635131401,1851877746,1195450484,824725586,691022897,892674092,537463309,1769103734,544501345,1347569473,741486888,539765040,168638005,1635131401,1851877746,1195450484,824725586,691022899,926228524,539762732,1598903105,1212367181,151653681,1684956448,1769103734,225734241,1852639498,1330782309,540745810,1030973039,1748189749,537463309,1769103734,544501345,1347569473,741421352,539765041,168637749,1635131401,1851877746,1195450484,824725586,691088434,909451308,537463309,1769103734,544501345,1347569473,741552424,539765041,539768629,1396777004,1095589709,221333571,1696598282,1635148910,1851877746,151653748,543518317,541938514,1718558779,1110785395,168650818,1635131401,1851877746,1630609524,539781217,740305968,1297301792,1128353119,168637768,1852121097,1918989924,1953390953]},{"sector":4,"length":512,"data":[1829308941,1394632046,155600961,1718558779,1110785395,168650822,1635131401,1851877746,959455348,539781221,151653680,1684956448,1769103734,225734241,1852639498,1095966821,540745804,1030973039,1748124469,537463309,1769103734,544501345,1347569473,741421352,539765044,168637749,1635131401,1851877746,1195450484,824725586,691285042,909451308,537463309,1769103734,544501345,1347569473,741552424,539765044,539768629,1396777004,1095589709,221333571,1696598282,1635148910,1851877746,151653748,543518317,1129070931,1864383241,893219686,224936259,1981810954,1634300513,807433326,745027172,168636448,1852121097,1918989924,1953390953,1829308941,1394632046,991973953,1936092960,1145255229,151653736,1918989856,1953390953,1380401440,825305168,740898604,221590816,1981810954,1634300513,1092645998,676352583,925643313,891300905,151653686,1918989856,1953390953,1380401440,858859600,740898604,741815584,1092627488,1298091347,826819393,537463309,1986293349,1634300513,168653934,1701735689,1111642912,1864383264,893219686,224933188,1981810954,1634300513,1092645998,676352583,691219504,741548076,1297301792,1129270367,1279410507,151653701,1918989856,1953390953,1664167968,824192104,537463309,1769103734,544501345,1347569473,858534184,840969257,1396777004,1330405197,1111575363,168641868,1635131401,1851877746,825237620,539781176,1092627508,1281314131,1095451471,222645314]},{"sector":5,"length":512,"data":[1981810954,1634300513,807433326,745038129,168637728,1852121097,1918989924,1953390953,1829308941,1394632046,1112752451,1864383241,893219686,224932677,1981810954,1634300513,807433326,745039201,168636448,1852121097,1918989924,1953390953,1829308941,1394632046,1465073987,1396777004,826564429,540739894,1030973039,1748387125,1829308941,1394632046,1146306883,1396777004,860118861,540739890,1030973039,1748452661,537463309,1769103734,544501345,1751540016,221257772,1696598282,1635148910,1851877746,151653748,543518317,1096041811,1864383241,893219686,224936517,1981810954,1634300513,824210542,745027385,741946656,1092627488,1298091347,860373825,537463309,1986293349,1634300513,168653934,1701735689,1413829408,990463297,1936092960,1178940733,151653736,1918989856,1953390953,859386144,891300968,740305977,1297301792,1128353119,168637256,1852121097,1918989924,1953390953,1829308941,1394632046,155341893,1718558779,1177894259,168650803,1635131401,1851877746,959520884,539781170,539769141,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,1112819027,540739909,1030973039,1748452917,537463309,1769103734,544501345,1748384049,959782956,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1163075685,990462804,1936092960,1111897405,151653736,1918989856,1953390953,842608928,891300968,740305977,1297301792]},{"sector":6,"length":512,"data":[1128353119,168637256,1852121097,1918989924,1953390953,1829308941,1394632046,155538501,1718558779,1177894259,168650822,1635131401,1851877746,959520884,539781172,539769141,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,1196705107,1864383241,909996902,224932656,1981810954,1634300513,824210542,745039417,741946656,1092627488,1298091347,860373825,537463309,1986293349,1634300513,168653934,1701735689,1413829408,990463303,1936092960,925906493,151653736,1918989856,1953390953,1681469728,891300968,740305977,1297301792,1128353119,168637256,1852121097,1918989924,1953390953,1829308941,1394632046,155997253,1718558779,808861043,168650818,1635131401,1851877746,959520884,539781219,539769141,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,1280591187,540739909,1030973039,1749430326,537463309,1769103734,544501345,1751464241,959782956,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1163075685,155274836,1718558779,825638259,168650803,1635131401,1851877746,959520884,539781174,539769141,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,1314145619,990463297,1936092960,925972029,151653736,1918989856,1953390953,842608928,891300968,740305977,1297301792,1128353119,168637256,1852121097,1918989924,1953390953,1829308941]},{"sector":7,"length":512,"data":[1394632046,1112429637,1864383241,909996902,224936497,1981810954,1634300513,824210542,745026361,741946656,1092627488,1298091347,860373825,537463309,1986293349,1634300513,168653934,1701735689,1413829408,155533902,1718558779,825638259,168650822,1635131401,1851877746,959520884,539781175,539769141,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,1314145619,540739907,1030973039,1748185654,537463309,1769103734,544501345,1748187441,959782956,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1163075685,155536980,1718558779,842415475,168650807,1635131401,1851877746,959520884,539781173,539769141,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,1314145619,540739911,1030973039,1749168694,537463309,1769103734,544501345,1751464241,959782956,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1163075685,1162301012,1864383241,909996902,224937522,1981810954,1634300513,824210542,745038649,741946656,1092627488,1298091347,860373825,537463309,1986293349,1634300513,168653934,1701735689,1413829408,990465102,1936092960,858994237,151653736,1918989856,1953390953,1681469728,891300968,740305977,1297301792,1128353119,168637256,1852121097,1918989924,1953390953,1829308941,1394632046,1280201797,540739909,1030973039,1748448054]},{"sector":8,"length":512,"data":[537463309,1769103734,544501345,1751529777,959782956,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1163075685,156192340,1718558779,859192691,168650818,1635131401,1851877746,959520884,539781169,539769141,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,1314145619,540739920,1030973039,1749431094,537463309,1769103734,544501345,1751267633,959782956,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1163075685,156454484,1718558779,875969907,168650803,1635131401,1851877746,959520884,539781177,539769141,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,1314145619,540739930,1030973039,1748448310,537463309,1769103734,544501345,1748318513,959782956,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1163075685,990465876,1936092960,1110718013,151653736,1918989856,1953390953,809054496,891300968,740305977,1297301792,1128353119,168637256,1852121097,1918989924,1953390953,1829308941,1394632046,156259397,1718558779,875969907,168650822,1635131401,1851877746,959520884,539781217,539769141,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,1347700051,540739909,1030973039,1748186422,537463309,1769103734,544501345,1751202097,959782956,539762732]},{"sector":9,"length":512,"data":[1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1163075685,156192852,1718558779,892747123,168650807,1635131401,1851877746,959520884,539781218,539769141,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,1398031699,1864383241,909996902,224936501,1981810954,1634300513,824210542,745027641,741946656,1092627488,1298091347,860373825,537463309,1986293349,1634300513,168653934,1701735689,1413829408,540739930,1030973039,1749431606,537463309,1769103734,544501345,1748252977,959782956,539762732,1598903105,1212367181,151653683,1684956448,1769103734,225734241,1852639498,1196630117,990467140,1936092960,859190845,151653736,1918989856,1953390953,1380401440,741812304,539765040,539769138,1396777004,1095589709,221399107,1696598282,1635148910,1851877746,151653748,543518317,541870163,1718558779,909524339,168650807,1635131401,1851877746,1195450484,824725586,691285041,892674092,537463309,1769103734,544501345,1347569473,741486888,539765044,168638005,1635131401,1851877746,1195450484,824725586,691285043,926228524,539762732,1598903105,1212367181,151653681,1684956448,1769103734,225734241,1852639498,1213407333,990463052,1936092960,1177957949,151653736,1918989856,1953390953,878784800,908078184,740305968,1297301792,1128353119,168637256,1635131401,1851877746,1630609524,539781173,539767094,1396777004]}],[{"sector":1,"length":512,"data":[1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,542263379,1718558779,926301555,168650806,1635131401,1851877746,1195450484,824725586,691350577,892674092,537463309,1769103734,544501345,1347569473,741486888,539765045,168638005,1635131401,1851877746,1195450484,824725586,691350579,926228524,539762732,1598903105,1212367181,151653681,1684956448,1769103734,225734241,1852639498,1213407333,990463058,1936092960,1161246269,151653736,1918989856,1953390953,1667313952,908078184,740305968,1297301792,1128353119,168637256,1635131401,1851877746,1630609524,539781220,539767094,1396777004,1095589709,221464643,1696598282,1635148910,1851877746,151653748,543518317,1413761363,1864383241,909996902,224933176,1981810954,1634300513,1092645998,676352583,691088439,959586348,539762732,1598903105,1212367181,151653682,1684956448,1769103734,225734241,1852639498,1280516197,990467140,1936092960,959985213,151653736,1918989856,1953390953,1380401440,741877840,539765040,539767092,1396777004,1095589709,221399107,1696598282,1635148910,1851877746,151653748,543518317,1465077075,1864383241,909996902,224937016,1981810954,1634300513,1092645998,676352583,691285047,825499692,539762732,1598903105,1212367181,151653682,1684956448,1769103734,225734241,1852639498,1414733925,540745795,1030973039,1748056374,537463309,1769103734,544501345,1748592176,221257772]},{"sector":2,"length":512,"data":[1696598282,1635148910,1851877746,151653748,543518317,541348947,1718558779,959855987,168650804,1635131401,1851877746,1714430068,539781220,151653680,1684956448,1769103734,225734241,1852639498,1414733925,540745801,1030973039,1748449590,537463309,1769103734,544501345,1751279152,221257772,1696598282,1635148910,1851877746,151653748,543518317,1397707859,540739906,1030973039,1749104950,537463309,1769103734,544501345,1751212336,221257772,1696598282,1635148910,1851877746,151653748,543518317,1397707859,1092627543,1147096403,990459441,1936092960,1144600125,151653736,543518317,1397707859,1092627524,1147096403,990458419,1936092960,1161377341,151653736,1918989856,1953390953,1650536480,807414888,537463309,1986293349,1634300513,168653934,1701735689,1381258016,1864383264,909996902,224932417,1981810954,1634300513,1092645998,676352583,691088440,825499692,539762732,1598903105,1212367181,151653682,1684956448,1769103734,225734241,1852639498,1431511141,540745794,1030973039,1748386102,537463309,1769103734,544501345,1347569473,892088360,857746473,1396777004,1330405197,1111575363,168641868,1635131401,1851877746,842014836,539781219,151653681,1918989856,1953390953,1380401440,741419088,539765045,1092627506,1281314131,1095451471,222645314,1981810954,1634300513,807433326,745027634,539767840,1598903105,1262702412,1162625601,537463309,1769103734,544501345,1751200304]},{"sector":3,"length":512,"data":[221585452,1696598282,1635148910,1851877746,151653748,543518317,1163090259,1380275278,1864383241,909996902,224932930,1981810954,1634300513,824210542,745026611,539766816,1396777004,1095589709,221661251,1696598282,1635148910,1851877746,151653748,543518317,1163090259,156518744,1718558779,1110850931,168650808,1635131401,1851877746,858857588,539781173,740305968,1297301792,1128353119,168638024,1852121097,1918989924,1953390953,1829308941,1411409262,156521285,1718558779,1110850931,168650819,1635131401,1851877746,1630543988,539781176,151653681,1918989856,1953390953,1380401440,741746768,539765040,151653682,1918989856,1953390953,876097568,874523752,537463309,1769103734,544501345,1748252720,221585452,1696598282,1635148910,1851877746,151653748,543518317,1381123414,1864383241,909996902,224933187,1981810954,1634300513,1092645998,676352583,691285048,825499692,539762732,1598903105,1212367181,151653682,1684956448,1769103734,225734241,1852639498,1163272293,990467922,1936092960,960706109,151653736,1918989856,1953390953,1380401440,741877840,539765045,539767092,1396777004,1095589709,221399107,1696598282,1635148910,1851877746,151653748,543518317,1414086999,1864383241,909996902,224937027,1981810954,1634300513,807433326,745038393,168636448,1852121097,1918989924,1953390953,1829308941,1461740910,1447971138,540739908,1030973039,1747993654,537463309,1769103734]},{"sector":4,"length":512,"data":[544501345,1748578353,741351468,1092627488,1298091347,877151041,537463309,1986293349,1634300513,168653934,1701735689,1297241888,990466643,1936092960,876885565,151653736,1918989856,1953390953,808661280,807414888,539762732,1598903105,1212367181,151653685,1684956448,1769103734,225734241,1852639498,1096294501,990463044,1936092960,943994429,151653736,1918989856,1953390953,811807008,874523752,1396777004,1330405197,1111575363,539772236,1598903105,1212367181,151653684,1684956448,1769103734,225734241,1852639498,1129848933,990463816,1936092960,1145321021,151653736,1918989856,1953390953,809054240,908078184,151653682,1918989856,1953390953,809054240,908078184,151653683,1918989856,1953390953,909652000,874523752,1396777004,1330405197,1111575363,168641868,1635131401,1851877746,942678132,539781174,1092627509,1281314131,1095451471,222645314,1696598282,1635148910,1851877746,151653748,543518317,1413565528,1864383241,909996902,224933957,1981810954,1634300513,807433326,745027428,168636448,1852121097,1918989924,1953390953,1829308941,1478518126,1112817996,1864383241,909996902,224936517,1981810954,1634300513,807433326,745027428,168636448,1852121097,1918989924,1953390953,1829308941,1478518126,991973967,1936092960,1162163773,151653736,1918989856,1953390953,1380401440,741353552,539765046,1092627507,1281314131,1095451471,222645314,1981810954,1634300513,807433326]},{"sector":5,"length":512,"data":[745026611,168636704,1635131401,1851877746,1195450484,824725586,740898348,539767328,1598903105,1262702412,1162625601,537463309,1769103734,544501345,1747989296,741613612,1297301792,1129270367,1279410507,151653701,1918989856,1953390953,842215456,891300968,537463309,1986293349,1634300513,168653934,1701735689,743654688,1297301792,1195725663,842014764,990472246,1936092960,1128674877,151653736,543518317,539775811,1598903105,742868307,1697787936,540739944,1030973039,1749370422,1829308941,1394632046,1092627539,1398754643,539772741,1748382512,1864383241,926774118,224931888,1852639498,1396973669,1396777004,1163091789,807414855,157836595,1718558779,808926579,168650802,1701735689,743654944,1297301792,1195725663,909123628,990472244,1936092960,875575101,151653736,543518317,539775815,1598903105,742868307,892743712,540739944,1030973039,1748381751,1718159885,1481461024,1347442003,1829308941,1159751022,223563085,1981810954,1634300513,824210542,745027383,539766816,1396777004,1095589709,221595715,1696598282,1635148910,1851877746,151653748,543518317,1146507085,537463309,1769103734,544501345,1751463473,909582380,539762732,1598903105,1212367181,151653685,1918989856,1953390953,1698115872,924855400,740305975,1297301792,1128353119,168637768,1852121097,1918989924,1953390953,1829308941,1293968750,223434319,1981810954,1634300513,824210542,745039414,741881632]},{"sector":6,"length":512,"data":[1092627488,1298091347,893928257,537463309,1769103734,544501345,1751529265,959914028,539762732,1598903105,1212367181,151653685,1684956448,1769103734,225734241,1684956426,168650345,1852115469,1852661604,1953720684,1650551840,1646292069,224752761,990514442,539831597,1634953540,1835365235,1919249506,1868767290,1701998701,1684370291,1650553888,1864394092,1752440934,1886330981,1701080931,1887007776,221148005,757938954,1716068397,1701344288,1702127904,1634213997,1752440947,1868963941,1952542066,676613920,740915320,544500000,1701209458,1948283762,1635000431,543517794,1819307815,1937011561,168635943,757935419,1752452896,1769435749,1763730803,544417652,1864396385,1702061670,1868963956,1852383346,1852990836,1948281953,1701601889,1768171296,1886218867,168635943,1886325261,1701869940,1634476147,543974754,1702132066,1678313997,1414471778,691286056,676613932,740897840,807949391,1328294197,892348500,1414474793,691089448,676613932,740897072,875058255,1328294192,808724564,540739881,757084208,540487712,1767992616,1886330990,1701080931,1918988320,168634740,543319049,807949391,1328294196,875571284,1414474793,691351592,676613932,740898096,807949391,1328294193,825239636,1414474793,691090472,807411756,157823536,942678075,807415072,151653734,1327522404,875571284,1414474793,691286056,676613932,740898096,807949391,1328294197,825239636,1414474793,691089448]},{"sector":7,"length":512,"data":[676613932,740897332,875058255,990456114,540029216,925966381,1678313997,1414471778,691286056,676613932,740897840,807949391,1328294197,892348500,1414474793,691089448,676613932,740897072,875058255,1328294195,859056212,540739881,757086257,224801056,1650723082,676613920,740897840,807949391,1328294196,892348500,1414474793,691351592,676613932,740897072,807949391,539765041,1093677088,1414474856,691023912,840973065,539828272,168638258,543319049,807949391,1328294196,875571284,1414474793,691351592,676613932,740898096,807949391,1328294193,825239636,538979369,1749102640,676613932,153694256,942809147,840969504,151653734,1327522404,875571284,1414474793,691286056,676613932,740898096,807949391,1328294197,825239636,1414474793,691089448,807411756,745029936,807949391,990456112,540029728,926097453,1678313997,1414471778,691286056,676613932,740897840,807949391,1328294197,892348500,1414474793,691089448,676613932,740897072,808460320,1328310337,808462420,540739881,757086259,224801568,1650723082,676613920,740897073,824726607,1328294193,825305172,1414474793,691089704,676613932,740897073,824726607,1328294193,825305172,1414474793,691089704,874527497,539828272,168638260,543319049,824726607,1328294193,825305172,1414474793,691089704,676613932,740897073,824726607,1328294193,825305172,1414474793,691089704,676613932,153694513]},{"sector":8,"length":512,"data":[942940219,874523936,151653734,1327522404,825305172,1414474793,691089704,676613932,740897073,824726607,1328294193,825305172,1414474793,691089704,676613932,740897073,824726607,990456113,540030240,926228525,1678313997,1414471778,691089704,676613932,740897073,824726607,1328294193,825305172,1414474793,691089704,676613932,740897073,824726607,1328294193,825305172,540739881,757086261,224802080,1650723082,676613920,740896816,807949391,1328294192,925902932,1414474793,691417128,807411756,745029936,1093677065,538979432,1749102640,807411756,157827376,808853563,908078368,151653687,1327522404,892545108,1414474793,691089960,676613932,740898355,824726607,1328294214,808462420,1414474793,691023912,676613932,740896816,807949391,990456112,540554784,1714823213,1678313997,1414471778,691483176,676613932,740898610,841503823,1328294199,926034004,1414474793,691483176,676613932,740898610,841503823,1328294199,926034004,540739881,757084215,221722400,1650723082,676613920,740898610,841503823,1328294199,926034004,1414474793,691483176,676613932,740898610,841503823,1328294199,926034004,1414474793,691483176,924859145,539828280,168650295,543319049,808460320,539781172,875573280,538979432,1748250672,807411756,745026608,807949391,1328294196,875571284,1414474793,691351592,676613932,153695536,808984635,941632800,151653687,1327522404]},{"sector":9,"length":512,"data":[875571284,1414474793,691286056,676613932,740898096,807949391,1328294197,1093806164,1414474793,691482664,676613932,740901426,808460320,990472244,540555296,1714954285,1678313997,1414471778,691023912,676613932,740902195,858281039,1328294213,1160980564,1414474793,692400936,676613932,740902195,858281039,1328294213,1160980564,540739881,757084217,221722912,1650723082,676613920,740896816,807949391,1328294192,1144006740,1414474793,691023912,676613932,740896816,807949391,1328294192,808462420,1414474793,691023912,958413577,539828280,168650297,543319049,841503823,1328294211,1127360596,1414474793,692335144,676613932,740901938,807949391,1328294192,808462420,1414474793,691023912,676613932,153694256,811671611,1629498656,151653687,1327522404,825239636,1414474793,691089448,676613932,740896816,807949391,1328294192,808462420,1414474793,691023912,676613932,740896816,807949391,990456112,540565792,1717641261,1678313997,1414471778,692400680,676613932,740902194,841503823,1328294213,1160915028,1414474793,692400680,676613932,740902194,841503823,1328294213,1160915028,540739881,757084258,221733408,1650723082,676613920,740902450,841503823,1328294214,1177692244,1414474793,692466216,676613932,740902450,841503823,1328294214,1177692244,1414474793,692466216,1646279433,539828280,168650338,543319049,808460320,539781172,875573280,1414474856]}]],[[{"sector":1,"length":512,"data":[692138792,676613932,740896816,807949391,1328294199,925902932,538979369,1748250672,807411756,157824048,811802683,1663053088,151653687,1327522404,842082388,1414474793,691023912,676613932,740901171,807949391,1328294192,892479572,1414474793,691417640,676613932,740896816,807949391,990456112,540566304,1717772333,1678313997,538976354,1748250672,807411756,745026608,808460320,539781172,875573280,1414474856,691417640,676613932,740898354,807949391,1328294192,808462420,540739881,757084260,221733920,1650723082,807411744,745027120,808460320,539781174,909127712,538979432,1748381744,807411756,745027120,909127689,538979432,1748381744,807411756,157824560,946085947,1679830304,151653734,1327522404,926034004,1414474793,691483176,676613932,740898610,841503823,1328294199,858925140,1414474793,691221032,676613932,740897331,858281039,990456114,540042528,929374253,1678313997,1414471778,692269096,676613932,740901680,807949391,1328294212,926034004,1414474793,691286568,676613932,740897842,858281039,1328294195,858990676,540739881,757086309,224814368,1650723082,807411744,745029936,807949391,539765040,1093677088,538979432,1749102640,676613932,740896816,807949391,539765040,875573280,538979432,1748250672,1713388297,539828272,168638310,543319049,807949391,1328294192,808462420,1414474793,691023912,676613932,740896816,807949391]},{"sector":2,"length":512,"data":[1328294192,808462420,538979369,1748250672,807411756,157824048,946217019,1713384736,151653734,1327522404,842016852,1414474793,691154984,676613932,740897328,807949391,1328294194,842016852,1414474793,691154984,676613932,740897328,807949391,990456114,808464672,824192288,673199920,1702129225,1919361132,544241007,168634673,543319049,807949391,1328294195,858794068,1414474793,691220520,676613932,740897584,807949391,1328294195,858794068,1414474793,691220520,676613932,153695024,808525883,539828280,224800817,1650723082,676613920,740898611,858281039,1328294199,926099540,1414474793,691483432,676613932,740898611,858281039,1328294199,926099540,1414474793,691483432,824195849,757084209,925970720,1850288160,543974772,1970238055,691150960,1678313997,1414471778,691548968,676613932,740898867,858281039,1328294200,942876756,1414474793,691548968,676613932,740898867,858281039,1328294200,942876756,540739881,540553521,825303085,151653734,1327522404,959653972,1414474793,691614504,676613932,740899123,858281039,1328294201,959653972,1414474793,691614504,676613932,740899123,858281039,990456121,808595744,824192288,673199922,1702129225,1919361132,544241007,220815666,1650723082,676613920,740897328,807949391,1328294194,808527956,1414474793,691024168,676613932,740896817,824726607,1328294192,808527956,1414474793,691024168,824195849]},{"sector":3,"length":512,"data":[757086258,1714565408,1850288160,543974772,1970238055,691216496,1678313997,1414471778,691024168,676613932,740896817,841503823,1328294200,1160783956,1414474793,691548712,676613932,740902192,841503823,539765048,808464416,540739944,540029745,858857517,1227366455,1818588270,1869768480,891318389,151653673,1327522404,959588436,1414474793,691614248,676613932,740899122,841503823,1328294201,959588436,1414474793,691614248,807411756,745025584,808460320,990472240,942879008,824192288,673211955,1702129225,1919361132,544241007,168634678,543319049,824726607,1328294212,1144072276,1414474793,692334888,676613932,740901937,841503823,153889081,1747988528,676613932,740899122,824726607,990456132,808726816,824192288,673199924,1702129225,1919361132,544241007,168634679,543319049,824726607,1328294195,858859604,1414474793,691220776,676613932,740897585,824726607,1328294195,858859604,1414474793,691220776,676613932,153695025,875634747,539828280,543568945,1886339880,1701015410,1919906675,691561504,1678313997,1414471778,691351848,676613932,740898097,824726607,1328294211,1127295060,1414474793,691351848,676613932,740898097,824726607,1328294197,892414036,540739881,540030257,892411949,151653687,1327522404,858859604,538979369,1747988528,676613932,740897585,824726607,1328294195,1144072276,1414474793,691613992,676613932,740901937,824726607]},{"sector":4,"length":512,"data":[990456121,943010080,824192288,673211957,1919971139,1936024431,544370547,220805476,1650723082,676613920,740901425,824726607,539765059,942682144,1414474856,692203816,807411756,745027632,942682121,538979432,1748512816,807411756,157825072,909189179,539828272,221722161,1650723082,676613920,740898865,824726607,1328294200,942745684,1414474793,691548456,676613932,740898865,824726607,1328294200,942745684,1414474793,691548456,824195849,757086262,1714827552,1866672160,1668248176,1869837157,1633951858,151653673,1327522404,892414036,1414474793,691351848,676613932,740898097,824726607,539765045,808464416,805907560,745027632,808460320,539781168,808464416,540739944,540030769,925966381,151653687,1327522404,942745684,538979369,1747988528,676613932,740898865,824726607,539765048,808464416,1414474856,692138280,807411756,745025584,824726607,990456129,943141152,824192288,673211959,1919971139,1936024431,544370547,220815972,1650723082,676613920,740898097,824726607,1328294197,892414036,1414474793,691351848,807411756,745027632,824726607,1328294211,1127295060,538979369,1747988528,824195849,757084216,926429472,1678313997,1414471778,691286312,676613932,740897841,824726607,1328294196,875636820,1414474793,691286312,676613932,740897841,824726607,1328294196,875636820,540739881,540555313,942743597,1126703206,1869770863,1936942435]},{"sector":5,"length":512,"data":[1679848047,168634723,543319049,824726607,1328294198,909191252,1414474793,692269352,676613932,740901681,824726607,1328294198,909191252,1414474793,691417384,676613932,153695793,959520827,539828272,221722929,1650723082,676613920,740897841,808460320,1328310320,875636820,1414474793,691286312,676613932,740901937,808464393,1414474856,692334888,676613932,153696561,959520827,539828280,543570225,1886339880,1701015410,1919906675,694445088,1678313997,1414471778,692203816,676613932,740901681,824726607,1328294210,1110517844,1414474793,692269352,676613932,740901681,808460320,539781168,808464416,540739944,540041521,1630609453,151653687,1327522404,959522900,1414474793,691613992,676613932,740899121,824726607,1328294201,959522900,1414474793,691613992,676613932,740899121,824726607,990456121,945893664,824192288,673212001,1919971139,1936024431,544370547,220816740,1650723082,676613920,740898609,824726607,1328294199,1127295060,538979369,1748512816,676613932,740898609,824726607,1328294199,925968468,1414474793,691482920,824195849,757084258,929181984,1678313997,1414471778,691613992,807411756,745025584,824726607,1328294201,959522900,1414474793,692138280,676613932,740902448,824726607,1328294209,1177561172,540739881,540566065,1647386669,1126703206,1869770863,1936942435,1679848047,168634726,543319049,824726607,1328294210,1127295060]},{"sector":6,"length":512,"data":[1414474793,692203816,676613932,740901425,808460320,1328310328,1127295060,1414474793,692269352,807411756,157823024,1664163899,539828272,221733681,1650723082,676613920,740896816,807949391,1328294192,808462420,1414474793,691023912,676613932,740896816,807949391,1328294192,808462420,538979369,1747988528,824195849,757086307,1717776672,1866672160,1668248176,1869837157,1919361138,1936749935,151653673,1327522404,808462420,1414474793,691023912,676613932,740896816,807949391,1328294192,808462420,1414474793,691023912,676613932,740896816,807949391,990456112,811872544,824192288,168638308,543319049,807949391,1328294192,808462420,1414474793,691023912,676613932,740896816,807949391,1328294192,808462420,1414474793,691023912,676613932,153694256,1680941115,539828280,224814129,1095783178,1598378834,1163084098,1970365728,757081120,1953525536,1936027769,168626701,757935419,1701336096,1936028192,1718558836,1701344288,1629513075,1931502962,1701148017,778331514,1678313997,741345634,808460320,539781172,875573280,1414474856,691548200,676613932,740898864,807949391,1328294192,808462420,1414474793,691023912,808467209,1678313997,1414471778,691023912,676613932,740896816,875058255,1328294198,942942292,1414474793,691483688,676613932,740899124,875058255,1328294209,1110714452,809175337,151653688,1327522404,808462420,1414474793,691023912,676613932]},{"sector":7,"length":512,"data":[740896816,807949391,1328294192,808462420,1414474793,691023912,676613932,740898864,807949391,990456120,168636465,543319049,807949391,1328294200,942680148,1414474793,691548200,676613932,740898864,807949391,1328294200,942680148,1414474793,691548200,676613932,153696304,221786427,1650723082,676613920,740898864,807949391,1328294200,942680148,1414474793,691548200,676613932,740898864,807949391,1328294200,1127229524,1414474793,692269096,808598281,1678313997,1414471778,692269096,676613932,740901680,807949391,1328294211,1127229524,1414474793,692269096,676613932,740901680,807949391,1328294211,1127229524,842729769,151653688,1327522404,1127229524,1414474793,692269096,676613932,740901680,807949391,1328294211,1127229524,1414474793,692269096,676613932,740901427,858281039,990456130,168636467,543319049,858281039,1328294210,1110648916,1414474793,692204328,676613932,740901427,858281039,1328294210,1110648916,1414474793,692204328,676613932,153698867,221786939,1650723082,676613920,740901427,858281039,1328294210,1110648916,1414474793,692204328,676613932,740901427,858281039,1328294210,875833428,1414474793,691287080,808729353,1678313997,1414471778,691023912,676613932,740901168,858281039,1328294211,1144203348,1414474793,691352616,676613932,740898100,807949391,1328294192,1093675092,876284201,151653688,1327522404,1127426132,1414474793]},{"sector":8,"length":512,"data":[692335400,676613932,740898864,807949391,1328294196,875571284,1414474793,691482664,676613932,740901168,807949391,990456119,168636469,543319049,807949391,1328294199,808659028,1414474793,691090216,807411756,745026608,807949391,1328294209,942680148,1414474793,691548200,676613932,153694259,221787451,1650723082,676613920,740897075,807949391,1328294196,875571284,538979369,1748250672,676613932,740899120,807949391,1328294201,959457364,1414474793,691613736,808860425,1678313997,1414471778,691613736,676613932,740899120,807949391,1328294201,959457364,1414474793,691024168,676613932,740896817,807949391,1328294210,1110452308,909838633,151653688,1327522404,1110452308,1414474793,692203560,676613932,740902448,858281039,1328294196,842016852,1414474793,691023912,676613932,740896816,807949391,990456112,168636471,543319049,807949391,1328294192,808462420,1414474793,691023912,676613932,740896816,807949391,1328294192,808462420,1414474793,691023912,676613932,153694256,221787963,1650723082,676613920,740896816,824726607,168634693,1293969001,1431525453,168644688,543319049,875058255,1328294211,1161046100,1414474793,691023912,676613932,740901940,875058255,168634694,1768189541,218762598,942755850,1902446902,808525941,224931888,942821386,1902446902,808591477,224931888,942886922,1902446902,808657013,224931888,942952458,1902446902]},{"sector":9,"length":512,"data":[808722549,224931888,943017994,1902446902,808788085,224931888,943083530,1902446902,808853621,224931888,151653642,1734962273,221388910,990514442,539831597,1634953540,1835365235,1919249506,1868767290,1701998701,1684370291,1650553888,1864394092,1684086886,1769236836,1818324591,1718511904,1634562671,1852795252,990514478,539831597,1937008962,825045024,1937055793,1819042165,1918967929,1752440933,1718558821,1952805734,543584032,543516788,1835363949,1667853935,1635000435,778398818,758843917,1109404973,544437353,825045553,1918967861,1752440933,1885544549,1752637557,543712105,1920233065,1668637807,1948279909,544434536,1868787823,221144420,1862929674,1718511984,1634476143,543974754,1685221239,1678313997,1293951095,1145134926,1293954116,1145134926,1293954116,1145134926,1293954116,1145134926,540739908,168636464,544695305,1598967072,742671425,1598967072,742671425,1598967072,1213420880,1313677356,1347375199,807418633,151653684,538998628,1331646029,1293954130,1380933454,1313677356,743591775,1598967072,990466639,221786144,2003044618,1313677344,743591775,1598967072,539775567,1348423245,742937429,1697722400,990472240,224604192,2003044618,1313677344,1128546655,1313677356,1128546655,1313677356,1128546655,1313677356,1128546655,824195849,151653680,538998628,1096765005,539771716,1096765005,539771716,1348423245,742937429,1598967072,156258128,875634747,1678313997]}],[{"sector":1,"length":512,"data":[1293951095,1112760142,1293954114,1112760142,1293954114,1112760142,1293954114,1112760142,540739906,168638513,544695305,1598967072,742539859,1598967072,742539859,1598967072,1213420880,1313677356,1347375199,824195849,151653731,538998628,1096765005,539771982,1096765005,539771982,1096765005,539771982,1096765005,990463054,221262368,2003044618,1313677344,1145979231,1313677356,1145979231,808460332,745025840,1598967072,155271492,875700283,1678313997,1293951095,1431527246,1293954114,1431527246,1293954114,1431527246,1293954114,1431527246,540739906,168638514,544695305,1598967072,742544723,1598967072,742544723,808529952,539781169,1147096653,990466881,224604704,2003044618,1313677344,1380931679,1313677356,1380931679,1313677356,1380931679,1313677356,1380931679,857750281,151653680,538998628,1482640973,539775567,1482640973,539775567,825242160,1293954152,1094803278,540739905,168637491,544695305,1598967072,743460163,1598967072,743460163,1598967072,743460163,1598967072,156257603,942874683,1678313997,1293951095,1296260942,1293954128,1296260942,807414864,1748054067,1313677356,1396785503,857750281,151653731,538998628,1230982733,539771726,1230982733,539771726,1230982733,539771726,1230982733,990462798,221262880,2003044618,1313677344,1129204063,1313677356,1129204063,1313677356,1129204063,1313677356,1129204063,874527497,151653684,538998628,1147096653,539771717]},{"sector":2,"length":512,"data":[1147096653,539771717,1147096653,539771717,1147096653,990462789,221787168,2003044618,1313677344,1128612959,1313677356,1128612959,1313677356,1128612959,1313677356,1128612959,874527497,151653731,538998628,1348423245,742937429,1598967072,1213420880,1313677356,1398100063,1293954120,1431330638,990464083,221263136,2003044618,1313677344,1398100063,1293954120,1431330638,539773011,1348423245,742937429,1598967072,1213420880,891304713,151653684,538998628,1348423245,539775055,1348423245,539775055,1348423245,539775055,1348423245,990466127,221787424,2003044618,1313677344,1347375199,1313677356,1347375199,1313677356,1347375199,1313677356,1347375199,891304713,151653731,538998628,909652304,1293953824,1431330638,742475859,942755872,539697206,1348423245,742477903,942755872,539697206,1113542221,1145984335,844111916,723531320,1598967072,1280332353,908081929,151653680,538998628,909652816,807414560,1748054068,860889132,723531320,808792096,539781169,909652816,807414560,1747988784,860889132,723531320,842018848,990472240,221525536,2003044618,827334688,723531320,1598967072,1213420880,827334700,723531320,1598967072,1280658761,827334700,723531320,1598967072,1213420880,827334700,723531320,1598967072,1280658761,908081929,151653688,538998628,909652304,1293953824,1313431374,539771475,909652304,1293953824,1313431374,539776851,909652304,1293953824,1431265102]},{"sector":3,"length":512,"data":[742544212,942755872,539697206,1331646029,1465078869,908081929,151653731,538998628,1247759949,1293954127,1313496910,1293954127,1112170318,1313677356,1161906783,924859145,151653680,538998628,1247759949,1293954138,1313496910,1293954138,1112170318,1293954117,1095393102,924859145,151653684,538998628,1247759949,1293954131,1313496910,1293954131,1347051342,1293954117,1347051342,540739919,168638519,544695305,1598967072,539774026,1247759949,539772231,1247759949,539772236,1247759949,540739911,168649527,544695305,808529952,539781168,808464688,807414888,1747988529,825237548,157825072,808984635,1678313997,1293951095,1163157326,539776083,1415532109,743723845,1598967072,1195918168,1313677356,1212373087,540739911,168637496,544695305,1598967072,743853901,1598967072,743853901,1598967072,743853901,1598967072,156651341,943202363,1678313997,1293951095,1330470734,1293954134,1162633038,1293954113,1330470734,807414870,1748526642,941636361,151653731,538998628,1314868813,539775055,1482640973,742869059,1598967072,1195918168,1313677356,1212373087,540739911,168636473,544695305,1598967072,1195918168,1313677356,1212373087,1293954119,1129865038,539772744,1482640973,155666499,876159035,1678313997,1293951095,1111711566,1293954135,1464033102,1293954116,1094934350,539774028,1465863757,156518721,943267899,1678313997,1293951095,1431330638,742803539,1598967072,1179668304]},{"sector":4,"length":512,"data":[1313677356,1212240735,1293954118,1095524174,991970888,224606496,2003044618,1313677344,1448037727,1313677356,1448037727,1313677356,1448037727,1313677356,1448037727,1629502217,151653680,538998628,1298091597,1112757839,1313677356,1448037727,539776851,1130319437,1112756301,1313677356,1347240799,990467923,221536544,2003044618,1313677344,1397052511,1293954132,1163157326,539776083,1398754893,1112756052,1313677356,1330926431,990467923,221798688,2003044618,1313677344,1146047583,539771475,1281314381,1465074767,1313677356,1094931295,539771475,1398754893,1465073987,1629502217,151653731,538998628,1298091597,539776591,1298091597,539776591,1298091597,539776591,1298091597,990467663,221274656,2003044618,1313677344,1448037727,1313677356,1448037727,1313677356,1448037727,1313677356,1448037727,1646279433,151653684,538998628,1298091597,539776591,1298091597,539776591,1298091597,539776591,1298091597,990467663,221798944,2003044618,1313677344,1448037727,1313677356,1448037727,1313677356,1448037727,1313677356,1448037727,1646279433,151653731,538998628,808595760,807414888,1747989041,1313677356,1413829215,1313677356,1413829215,1663056649,151653680,538998628,1281314381,539775813,1281314381,539775812,808465200,807414888,1747988531,1663056649,151653684,538998628,909652304,1293953824,1313169230,743589204,942755872,539697206,1281314381,1163280709,1313677356,1413829215,1293954118]},{"sector":5,"length":512,"data":[1163026254,990463572,221799200,2003044618,1313677344,1414416735,1313677356,1414416735,1313677356,1414416735,1293954127,1380540238,990467141,224617248,2003044618,825237536,745025585,825307168,539781168,942747952,807414888,1748513073,1679833865,151653680,538998628,1096765005,539774273,1096765005,539771969,1398754893,742607937,1598967072,1413565528,540739906,168637540,544695305,875638816,539781176,943010096,807414888,1748514353,825237548,157825079,946085947,1678313997,807411831,1748514865,825237548,745027641,1630613536,539781176,945959216,540739944,168649572,544695305,1598967072,1347374924,743922254,1598967072,1347374924,539776858,1281314381,1464880975,1313677356,1480804959,540739930,168636517,544695305,1598967072,539774537,1230982733,1293954126,1431265102,1293954132,1431265102,540739924,168637541,544695305,1598967072,1280065859,1313677356,1347242591,1313677356,1347242591,1313677356,1347242591,1696611081,151653688,538998628,1230982733,1293954126,1313431374,1313677356,1414877023,1313677356,1414877023,1696611081,151653731,538998628,942682160,1344285800,540424243,1313677355,1414416735,807414833,1748119600,808460332,543700528,811999291,1678313997,1293951095,1279811406,1293954132,1296260942,807414851,1748513329,825237548,157825074,879108155,1678313997,1293951095,1279483726,1293954115,1414750030,1293954115,1279483726,1293954121,1414750030]},{"sector":6,"length":512,"data":[540739913,168638566,544695305,1598967072,742673475,1598967072,742675539,1697787936,539781168,808661296,540739944,168649574,544695305,1598967072,742671425,1598967072,539775567,1096765005,539771716,1398754893,990462530,808464672,1678313997,1293951095,1312907086,1293954116,1431527246,1293954114,1331191630,1293954130,1296260942,540739920,221524017,2003044618,1313677344,1145323871,1313677356,743591775,1598967072,742605889,1598967072,155337299,808525883,151653688,538998628,1096765005,539771982,1398754893,539771477,1482640973,539775567,1130319437,990466125,1664102688,1678313997,1293951095,1330798414,1293954124,1330798414,1293954130,1129471822,1293954124,1129471822,540739922,221262129,2003044618,1313677344,1279808351,1313677356,1380471647,1313677356,1279349599,1313677356,1380012895,824195849,168637489,544695305,1598967072,743198546,1598967072,743591762,1598967072,743195474,1598967072,156386130,825303099,151653688,538998628,1398754893,539774024,1398754893,539775560,1398754893,539774017,1398754893,990466625,1664168224,1678313997,1344282743,540424241,1313677355,1280266847,827334700,723531320,1598967072,743591762,942755872,539697206,1381977677,539774019,909652304,1293953824,1129471822,540739922,221262385,2003044618,827334688,723531320,1598967072,743196755,942755872,539697206,1398754893,539775560,909652304,1293953824,1095982926,1344285772]},{"sector":7,"length":512,"data":[540424241,1313677355,1380012895,824195849,168637490,544695305,1598967072,1414743380,1313677356,1397052511,1293954132,1330536270,1293954132,1162764110,540739911,221786673,2003044618,1313677344,1280658783,1313677356,1431128415,1293954124,1229217614,1293954134,1145659214,990467657,1664233760,1678313997,1293951095,1313431374,1293954115,1162108750,1293954115,1094934350,539774028,1130319437,155995201,858857531,151653680,538998628,1247759949,539775053,1247759949,539775053,1348423245,742937429,808464416,990472240,875770144,1678313997,1344282743,540424242,1313677355,1145852767,1344285780,540424242,1313677355,1381258079,844111916,723531320,1598967072,1413762124,844111916,723531320,1598967072,156390476,858857531,151653688,538998628,909652560,1293953824,1163288398,539775570,909652560,1293953824,1163288398,539776850,808464432,807414888,1747988528,824195849,168649523,544695305,942821408,539697206,1398754893,743720007,942821408,539697206,1398754893,743720009,942821408,539697206,1281314381,743720007,942821408,539697206,1281314381,156517449,875634747,151653680,538998628,909652560,1293953824,1297309518,539776851,808464432,1344285800,540424242,1313677355,1397574751,1344285783,540424244,1313677355,1447971167,155668556,875634747,151653684,538998628,1180651085,742671425,1598967072,1280658758,1313677356,1329808991,1293954125,1128685390,542133583]},{"sector":8,"length":512,"data":[875634747,151653688,538998628,1180651085,742544723,1598967072,1112888134,1293954130,1145462606,539776585,1180651085,1381386564,824195849,168649524,544695305,1598967072,1145323846,1313677356,1431127647,1293954124,1128685390,539774287,1180651085,1347243843,824195872,168636469,544695305,1598967072,1112888134,1313677356,1431520863,539775554,1180651085,743852356,1598967072,1447642182,540739922,221525297,2003044618,1313677344,1145849439,808460332,745025584,1598967072,743723846,1598967072,1347703622,824195849,168638517,544695305,1598967072,1162103878,539776590,1180651085,1464026188,1313677356,1397638751,1447970132,1313677356,1397638751,156713812,892411963,151653731,538998628,1180651085,539771980,1180651085,742933336,808661024,539781176,1180651085,156259411,909189179,151653680,538998628,808530736,807414888,1748525873,825237548,745025636,1680945184,990472248,875966752,1678313997,1293951095,1229348686,742671425,1598967072,1431128390,1293954124,1229348686,743264067,1598967072,1329809734,990466125,943075616,1678313997,1293951095,1229348686,742544723,1598967072,1431521606,539775554,1180651085,1447642185,1313677356,1145652831,156390985,909189179,151653731,538998628,909653584,1293953824,1128685390,1112952653,911220780,723531320,1598967072,1330463558,539772246,909653584,1293953824,1128685390,1112952653,1344285765,540424246,1313677355,1296254559]},{"sector":9,"length":512,"data":[156587599,925966395,151653680,538998628,808464432,807414888,1748513075,808460332,745025584,808464416,990472240,876032288,1678313997,1293951095,1229348686,539771980,808464432,1293954152,1229348686,539776083,1180651085,1347703625,824195849,168638519,544695305,808464416,539781168,1180651085,539771980,808464432,1293954152,1397120846,990466132,1664561440,1678313997,1344282743,540424246,1313677355,1296254559,1112430159,911220780,723531320,1598967072,1330463558,742739542,943083552,539697206,1180651085,1448037699,742736462,943083552,539697206,1180651085,1448037699,991974734,808988960,1678313997,807411831,1747989043,911220780,723531320,1598967072,1329812806,539773261,909653584,1293953824,1128685390,743001423,808464416,990472240,876097824,1678313997,1293951095,1095130958,539771972,1180651085,743200077,1598967072,1297040198,1313677356,1329808991,991973453,943206688,1678313997,1293951095,1397120846,539771477,1180651085,1380078931,1313677356,1229211231,1293954134,1145462606,156390985,942743611,151653731,538998628,1180651085,742671425,1598967072,1280658758,1313677356,1329808991,1293954125,1128685390,542133583,959520827,151653680,538998628,1180651085,1380078931,1313677356,1431520863,1293954114,1145462606,743593545,1598967072,1447642182,824195849,168637497,544695305,1598967072,742673478,808464416,539781168,1180651085,539776083,1180651085]}]],[[{"sector":1,"length":512,"data":[156259411,959520827,151653688,538998628,1180651085,1330926418,807414866,1747988528,1313677356,1397638751,742741569,1598967072,1414745670,990467923,1664692512,1678313997,1293951095,1179017038,742737234,1598967072,1212373062,1313677356,1414743647,1313677356,1414743647,540739920,221274417,2003044618,860889120,723531320,1598967072,1329812806,1344285773,540424243,1313677355,1129662047,743460175,808464416,539781168,808464432,540739944,221536561,2003044618,1313677344,1095321183,539771972,1180651085,1280658761,1313677356,1128875615,539774287,1180651085,1297040201,540739920,221798705,2003044618,1313677344,1397311071,539771477,1180651085,1112888137,1293954130,1229348686,743852356,1598967072,1229211974,990466646,1667313952,1678313997,1293951095,1095130958,743457860,1598967072,1280658758,1293954128,1128685390,743460175,842215456,991979576,811741472,1678313997,1293951095,1397120846,1347568213,1313677356,1431520863,539775042,1180651085,1381386564,1293954128,1145462606,156259913,1647386683,151653684,538998628,1180651085,742673481,808464416,539781168,1180651085,743723849,1598967072,1414744390,540739920,221798961,2003044618,1313677344,1279411807,1293954116,1229348686,539771980,1180651085,1347703618,1313677356,1397311071,990466132,1667379488,1678313997,1293951095,1179017038,1346717010,1313677356,1129858655,1293954120,1397120846,539775060,1180651085,156259411]},{"sector":2,"length":512,"data":[1664163899,151653680,538998628,808661808,1344285800,540424246,1313677355,1129662047,1346981199,911220780,723531320,1598967072,1297040198,539775049,808464432,540739944,221537073,2003044618,1313677344,1145849439,1293954097,1279680334,1412582468,1313677356,1145849439,742732364,1598967072,1346653254,540739913,221799217,2003044618,1313677344,1145849439,741492556,1598967072,1279544390,539767374,1180651085,744113228,808464416,990472240,1667445024,1678313997,1293951095,843472718,741428568,1598967072,843864390,1293954136,1346789198,743326036,1598967072,1413566534,990465601,811872544,1678313997,1293951095,1481006926,1128354388,1344285780,540424243,1313677355,1380992607,741428549,1598967072,1128612934,743461971,1598967072,1129204038,156259411,1680941115,151653684,538998628,1180651085,1296388688,1313677356,1280919135,827349042,1313677356,1364411999,539776082,909652816,1293953824,1397120846,1329811017,540739923,221799473,2003044618,1313677344,1314014815,1414416708,1313677356,1129530975,742739009,942886944,539697206,1180651085,743328083,942886944,539697206,1180651085,156454723,1680941115,990514531,539831597,543516756,1953719666,543584032,1936025716,1918967909,1903370341,2053465461,221144165,2003044618,741351456,858861600,539781176,808726832,1344285800,540424242,1313677355,1380011103,808467209,1678313997,1344282743,540424242,1313677355,1280527455]},{"sector":3,"length":512,"data":[844111916,723531320,1598967072,1145130828,743197761,942821408,539697206,1130319437,743658572,942886944,539697206,1281314381,1094992207,991972428,168637488,544695305,942952480,539697206,1230982733,742676046,942952480,539697206,1465863757,1447971138,1344285764,540424243,1313677355,1448037727,860889132,723531320,1598967072,156651341,221786171,2003044618,860889120,723531320,1598967072,743853901,942886944,539697206,1298091597,539776591,909652816,1293953824,1330470734,1344285782,540424243,1313677355,1448037727,1127234313,1678313997,1344282743,540424245,1313677355,1297241951,539775571,909653328,1293953824,1146249038,742609748,943018016,539697206,1381977677,1381190980,911220780,723531320,1598967072,1297106002,825952579,151653680,538998628,909653584,1293953824,1498636110,1414415699,539775557,909653584,1293953824,1498636110,1230521683,1344285780,540424246,1313677355,1330463583,539774806,909653584,1293953824,1296260942,1330533967,875641609,1678313997,1344282743,540424246,1313677355,1330463583,539771478,909653584,1293953824,1296260942,1161909839,911220780,723531320,1598967072,1448037699,1344285786,540424246,1313677355,1330463583,156913238,221786427,2003044618,911220768,723531320,1598967072,1448037699,539772226,909653584,1293953824,1296260942,742479439,943083552,539697206,1130319437,1398165325,911220780,723531320,1598967072,1448037699]},{"sector":4,"length":512,"data":[990466894,168641329,544695305,943083552,539697206,1130319437,1347833677,1344285765,540424246,1313677355,1330463583,743395414,943083552,539697206,1130319437,1280724813,911220780,723531320,1598967072,1448037699,990463303,168636466,544695305,943083552,539697206,1130319437,1280724813,1344285765,540424246,1313677355,1330463583,539772758,909652816,1293953824,1330274126,860889132,723531320,1598967072,156192330,221524539,2003044618,860889120,723531320,1598967072,539771466,909652816,1293953824,1095393102,1344285765,540424243,1313677355,744114783,942886944,539697206,1247759949,990468686,168638514,544695305,942886944,539697206,1247759949,539772226,909652816,1293953824,1095393102,860889132,723531320,1598967072,539775818,909652816,1293953824,1313496910,842729811,151653699,538998628,909652816,1293953824,1347051342,1344285765,540424243,1313677355,1330661983,860889132,723531320,1598967072,539774026,909652816,1293953824,1196056398,859507013,151653680,538998628,909652816,1293953824,1279942478,1344285765,540424243,1313677355,742869599,942886944,539697206,1398754893,743396421,942886944,539697206,1398754893,1330533445,875772681,1678313997,1344282743,540424243,1313677355,1413829471,1344285762,540424243,1313677355,1413829471,539772225,909652816,1293953824,1163091790,539777620,909652816,1293953824,1163091790,156913236,221786939,2003044618]},{"sector":5,"length":512,"data":[860889120,723531320,1598967072,1112819027,1344285765,540424243,1313677355,1413829471,1344285761,540424243,1313677355,1413829471,1344285779,540424243,1313677355,1413829471,990466894,168641331,544695305,942886944,539697206,1398754893,1162892357,860889132,723531320,1598967072,1347700051,1344285775,540424243,1313677355,1413829471,1344285772,540424243,1313677355,1413829471,990463303,168636468,544695305,942886944,539697206,1398754893,1162630213,860889132,723531320,1598967072,1196705107,860889132,723531320,1598967072,1213420880,860889132,723531320,1598967072,156258128,221525051,2003044618,894443552,723531320,1598967072,1230327875,1344285764,540424243,1313677355,743719519,942886944,539697206,1398754893,742673480,942886944,539697206,1398754893,155470920,221787195,2003044618,860889120,723531320,1598967072,1213420880,860889132,723531320,1598967072,743460688,943018016,539697206,1381977677,539774291,909652816,1293953824,1413635918,876290131,151653699,538998628,909652816,1293953824,1213423438,539771986,909652816,1293953824,1213423438,539771986,909652816,1293953824,1296654158,539774037,909653072,1293953824,1296260942,1212373072,893061447,151653680,538998628,909653072,1293953824,1296260942,1212373072,1344285767,540424243,1313677355,1397967967,860889132,723531320,1598967072,743593026,942886944,539697206,1281314381,990466886,168637493]},{"sector":6,"length":512,"data":[544695305,942886944,539697206,1281314381,539775815,909652816,1293953824,1330470734,743987798,942886944,539697206,1298091597,1482315343,842014764,157825125,221787451,2003044618,860889120,723531320,1598967072,742609986,942886944,539697206,1113542221,539772499,909652816,1293953824,1396858702,1344285778,540424243,1313677355,1448037727,990468179,168641333,544695305,942886944,539697206,1298091597,1481856591,877666348,723531320,1598967072,1145323864,877666348,723531320,1598967072,1145323864,842014764,157823078,221263419,2003044618,877666336,723531320,1598967072,1096241986,1344285776,540424244,1313677355,1465074271,539775041,909653072,1293953824,1396858702,743457111,942952480,539697206,1113542221,1346459475,875969289,1678313997,1344282743,540424244,1313677355,1465074271,539775041,909653072,1293953824,1396858702,743457111,942952480,539697206,1113542221,1346459475,877666348,723531320,1598967072,1096241986,909838672,151653688,538998628,1230982733,539771726,1147096653,539771717,909652816,1293953824,1413635918,860889132,723531320,1598967072,542331970,222508603,2003044618,860889120,723531320,1598967072,743593026,942886944,539697206,1113542221,539771732,909653328,1293953824,1296260942,1212373072,742537287,1598967072,156258128,221263675,2003044618,1313677344,1448037727,1313677356,1330529887,1293954128,1128685390,539775816,1180651085]},{"sector":7,"length":512,"pattern":538979376,"data":[156451393,221525819,2003044618,1313677344,1398031967,1293954132,1481006926,539774273,909652816,1293953824,1430675278,1347243843,1293954128,1313234766,155799109,221787963,2003044618,1313677344,1145980511,743002953,1598967072,1279479366,539777093,1180651085,1229867342,1344285780,540424242,1313677355,1163085407,156061780,222508859,2003044618,1313677344,1329808991,743460941,942821408,539697206,1180651085,1398035278,1762266455,1296900198,1347769176,151653712,538998628,909653328,1293953824,1330470734,539771990,909653328,1293953824,1330470734,539775318,909653328,1293953824,1296392014,539775821,909653328,1293953824,1330470734,168641622,544695305,943018016,539697206,1298091597,223434319,1684956426,168650345,758843917,1142959405,1935766377,1651336563,980575596,1650553888,1663067500,1702260335,544437362,1903390325,2053465461,1847616613,1700949365,1948283762,1903370351,2053465461,221144165,757938954,1160847405,1144139056,1918967878,2019893349,1684956532,1864393829,1685021552,673215333,2015381040,221129080,1930038538,1635023473,1634476130,543974754,1702132066,1678313997,538976354,538979377,538979378,538979379,538979380,538979376,538979381,538979382,825952567,168636485,543319049,741875744,741941280,741351456,741351456,741351456,741351456,741351456,154148896,944058683,1678313997,538976354]},{"sector":8,"length":512,"pattern":538979376,"data":[538979376,538979376,825952560,168636486,543319049,741351456,741351456,741351456,741351456,741351456,741351456,741351456,154148896,944124219,1678313997,824189026,824192048,824192049,824192050,824192051,538979380,824192048,538979381,842729776,168636464,543319049,741351456,741351456,741351456,741351456,741351456,741351456,741351456,154148896,942682683,1678313997,824189026,824192054,824192055,824192056,840969273,840969264,538979377,538979376,842729776,168636465,543319049,741351456,741351456,741351456,741351456,741351456,741351456,741351456,154148896,942748219,1678313997,840966242,840969266,840969267,840969268,840969269,840969270,840969271,840969272,842729785,168636466,543319049,741356320,741421856,741487392,741552928,741618464,741684000,741749536,154612512,942813755,1678313997,538976354,538979376,538979376,538979376,538979376,538979376,538979376,538979376,842729776,168636467,543319049,741351456,741351456,741351456,741351456,741351456,741351456,741351456,154148896,942879291,1678313997,538976354,538979376,538979376,538979376,538979376,538979376,538979376,538979376,842729776,168636468,1293969001,1431525453,168644688,543319049,741351456,741351456,741351456,741351456,741351456,741351456,741356337,154219313,942944827,1678313997,538976354]},{"sector":9,"length":512,"data":[538979376,538979376,858860592,842729778,168636469,543319049,741351456,741351456,741351456,741351456,741351456,741351456,741552945,154415921,943010363,1818561037,168650099,543319049,741351456,741351456,741351456,741351456,741351456,741351456,741351456,154148896,942944827,1678313997,538976354,538979376,538979376,538979376,538979376,538979376,538979376,538979376,842729776,168636469,543319049,741351456,741351456,741351456,741351456,741351456,741351456,741351456,154148896,943010363,1852115469,224815460,1650723082,942874656,959651884,808722476,825499692,842276908,859054124,875831340,892608556,909261577,151653680,538993252,539768372,539768628,539768884,539769140,539766837,539767093,539767349,990458677,221787698,1650723082,875896864,892674092,909451308,926228524,943005740,959782956,808853548,825630764,926038793,151653680,538993252,539767350,539767606,539767862,539768118,539768374,539768630,539768886,990460214,221787954,1650723082,808919072,825696300,842473516,859250732,876027948,892805164,807411756,807411756,942816009,151653680,538993252,539768375,539768631,539768887,539769143,539766840,539767096,539766816,990458424,221788210,1650723082,859316256,876093484,892870700,909647916,926425132,943202348,959979564,809050156,959593225,151653680,538993252,539766816,539766816,539767097]}],[{"sector":1,"length":512,"data":[539767353,539767609,539767865,539768121,990459449,221788466,1650723082,926490656,943267884,807411756,807411756,807411756,807411756,807411756,960045100,1093810953,151653680,824205924,824979504,824979760,824980016,824980272,824980528,824980784,824981040,990459696,221790514,1650723082,807411744,807411756,807411756,807411756,807411756,807411756,807411756,807411756,1110588169,151653680,538993252,539766816,539766816,539766816,539766816,539766816,539766816,539766816,990457888,221790770,1650723082,807411744,807411756,807411756,807411756,807411756,807411756,807411756,807411756,1127365385,151653680,538993252,539766816,539766816,539766816,539766816,539766816,539766816,539766816,990457888,221791026,1650723082,807411744,807411756,807411756,807411756,807411756,807411756,807411756,807411756,1144142601,151653680,538993252,539766816,539766816,539766816,539766816,539766816,539766816,539766816,990457888,221791282,990514442,539831597,1886593077,1702064737,1869768480,225669237,151653642,824205924,824981552,539769136,539766816,539766816,539766816,539766816,539766816,990457888,221267250,1650723082,807411744,807411756,807411756,807411756,808530220,825307436,842084652,858861868,1160919817,151653688,538993252,824979488,539767857,539766816,539766816,539766816,539766816,539766816,990457888,221267506]},{"sector":2,"length":512,"data":[1650723082,892416288,807411756,807411756,807411756,807411756,807411756,807411756,807411756,1177697033,151653688,824205924,539768369,539766816,539766816,539766816,539766816,539766816,539766816,990457888,221261875,990514442,539831597,1886593078,1702064737,1970300448,1869768480,225669237,1393167626,1380405318,1397773647,1970365728,1095783200,1598378834,1163084098,673196832,757081120,2054255392,543318388,151653673,824205924,539768625,539766816,539766816,539766816,539766816,539766816,539766816,990457888,221786163,1650723082,942747936,959525164,807411756,807411756,808595756,825372972,807411756,807411756,825441033,151653680,538993252,824979488,539767346,539766816,539766816,539766816,539766816,539766816,990457888,221786419,1650723082,858927392,875704620,892481836,909259052,926036268,807411756,807411756,807411756,842218249,151653680,538993252,824979488,539768882,539766816,539766816,539766816,539766816,539766816,990457888,221786675,1650723082,959590688,807411756,807411756,807411756,807411756,807411756,807411756,807411756,858995465,218762544,757938954,1766072365,1936941427,1818389861,540701285,1818386804,1718558821,1701735712,1768845165,1948283747,544498024,1851877475,1763730791,1752440942,1919950949,1852142437,1864394083,543236198,1414086999,758843917,1763716397,1920234350,1769235317,221146735,1997147402]},{"sector":3,"length":512,"data":[828531060,544695305,842150704,858795112,745025842,808596272,858795112,745026354,1698246960,825240680,745039413,1697984816,858795112,224931891,2003044618,959524896,168650854,1650553975,1634476082,543974754,1685221239,1678313997,1313677431,1279477343,168646725,544695305,1180651085,1230195012,1678313997,1313677431,1313162847,151653705,1293973348,1229348686,223627598,2003044618,1598967072,1447121734,151653701,1293973348,1397120846,223822676,2003044618,1598967072,1163154246,168646222,544695305,1180651085,1465078867,1678313997,1313677431,1414743647,168646483,1415012174,1695105601,673215857,539828260,1650553975,790636850,168636960,758843917,1142959405,1935766377,1651336563,980575596,1650553888,1713399148,1864397423,1634887024,544433262,1667852407,1634213992,1629513078,1718182944,1701995878,1830843502,1869440366,543385966,225603430,757938954,1752440877,544368997,1646277171,1981838441,1769173605,544435823,1748383272,1701998624,695757158,218762542,1635019786,154234722,807434084,745027641,1748459824,960049196,825240680,745038645,1664692528,825240680,745039161,1697984816,909126760,168650852,544695305,1751540528,1684090924,1630547048,808216629,745039414,1748055600,1681469484,909126760,808216624,224944953,2003044618,1650667552,1664101480,808216673,745039457,1751277872,1953237517,846160481,1650551840,1998613605,224686703,2003044618,1598967072]},{"sector":4,"length":512,"data":[1162106691,1678313997,1313677431,1347240799,168641619,544695305,1130319437,168644932,544695305,1180651085,1313162316,168641622,544695305,1180651085,1330926418,168641618,544695305,1180651085,1163280723,151653700,1293973348,1397120846,1447970132,151653700,1293973348,1313431374,168641619,544695305,1230982733,1146373458,1678313997,1313677431,1146047583,168641619,544695305,1298091597,1146312271,1678313997,1313677431,1414877023,168641619,544695305,1348423245,1145131087,1678313997,1313677431,1347375199,168641606,544695305,1348423245,1095258965,151653700,1293973348,1431330638,1145456723,1678313997,1313677431,1413829215,168641606,544695305,1381977677,1145459781,1678313997,1313677431,1094931295,168641619,544695305,1398754893,1146310484,1598949901,1111577676,1902452815,606609525,1814048032,1868718452,790636850,168636960,758843917,1142959405,1935766377,1651336563,980575596,1650553888,1713399148,1864397423,1634887024,544433262,1667852407,1634213992,1629513078,1718182944,1701995878,1830843502,1869440366,543385966,225603430,757938954,1752440877,544368997,1646277171,1981838441,1769173605,544435823,1748448808,1701998624,695757158,218762542,1635019786,154231138,807434084,745026405,1748133168,828715052,1697655912,808216625,745025637,1748002096,1953237517,845242977,1650551840,1998613605,224686703,2003044618,1598967072,1480803658,151653722,1293973348,1330405198]},{"sector":5,"length":512,"pattern":0,"data":[222580815,2003044618,1598967072,1347374924,168641605,544695305,1281314381,1515212623,151653700,1293973348,1330405198,1162760271,151653700,1293973348,1330405198,1515081807,1309281604,1096043615,1696612674,673215857,539828260,1650553964,539570785,221388847,990514442,539831597,1634953540,1835365235,1919249506,1635000378,543517794,1814062703,1634427759,543517794,1953721961,1952675186,1936617321,168626701,1801678700,543318388,1700946284,1870078060,168649842,544695305,1630548272,825240680,745026096,1747988784,825307180,825240680,745027632,808464688,808463464,825240680,151653736,807434084,1751330865,808529964,808216628,745025586,1748054576,959590444,808216674,1751541042,959590444,808216627,1751475506,1678313997,842014839,745038392,1684353584,842017896,745025593,825831984,842017896,745025893,825438512,842017896,745025637,808661296,151653736,807434084,1751265841,842084396,808216673,1748578353,808529964,808216625,808216632,808216633,1751265329,808529964,168650803,544695305,1748513072,959524908,825240680,745038896,892350768,842017896,808216632,745027890,811676208,842017896,224932193,2003044618,909652000,942681192,808216631,1751461937,808529964,808216630,745025587,1748054832,1598949901,1262702412,1970365705,539240480,1869357101,1635019619,790636898,168636960]},{"sector":6,"length":512,"data":[1449317609,16286544,-654900611,-661985063,1947198336,1450229254,-1979699992,-771444264,266567915,113116788,1828951,-478094198,-1106873313,250107804,-125609984,-570131200,-557621511,-20750647,1342224331,-150992200,-614951965,-1010180568,-2081649835,1994329324,-59339276,-1979708999,282349060,805684358,-203248848,-1017256565,-2081649835,1465263340,-1929087349,96072318,-1952058624,1190528638,125075707,2147182208,-609604176,-1059458450,-656542503,-908137255,-2080481569,1930624638,-641672911,-572925700,1190591614,578044157,-595686057,1610584552,-1962929736,-1054081458,-596210367,1015083011,1174566192,-375065783,280494229,-28955904,-587261720,-581539818,1190591614,125043197,1449135836,1476284159,-388202867,-1923088558,1317789046,-1048358402,536445711,1093957465,2130770307,774944783,-1327892565,-1179978960,199950352,783328499,1096106,-201437653,-8552284,1325626672,2105604075,24456959,-1540560049,-1515573584,1706599845,-27882709,75092515,766827255,180261547,309504,-151530957,-1309023662,805591044,1610277546,1575324510,-1677720382,1947633469,-13722362,778170926,1643257599,259375139,1212057902,109850210,-1530961334,-821621246,1651548718,1209990958,-402427294,1623916545,-1944130421,702667,326250957,244111502,512516690,45703760,-843042048,-1207602383,567102719,-1956483421,-2134297640,56727870,-2092367502,146341834,-2093888256,-919402301,-855635784,341216049,-1944359960]},{"sector":7,"length":512,"data":[-939388984,-1207375423,835518473,-65773943,1636703883,-855637320,1636868913,1637097099,-855637320,1637262129,-1185391938,-1951596542,-1206023176,835518466,92903794,1466364130,1048636723,1946182256,-1203419902,835519237,1650724489,1650859657,1748928870,-1232519582,1654874730,50772066,243872205,512320088,-1989778854,1046633534,1650374281,1589534566,1716676184,-1095052749,-662000637,62441868,-2093888254,-25098558,-311273371,800283238,-855506760,1846426417,-1961921183,862056982,-200374327,33667169,1629434317,1746846712,585842673,1073768478,1746803947,384516120,1076848670,1746800875,183189568,1078880286,1746797803,-1909571479,-1889382370,-2141076474,6451262,1617065247,773778571,1649417870,-1961474421,1317738590,475433754,-1944160629,1586239566,-1623293922,427032673,-1990044509,-949856738,410523206,-1990105951,1719671878,-346489317,373737250,1719674745,1187511323,-1553846244,512320060,243884594,378102336,914973240,1629446704,1717593803,773778571,1649417870,1166763623,1569417004,-1956223184,1718039629,1731745163,1732015499,1731218828,-2143527540,6397758,1419977588,1444841826,-949590174,410528837,258342912,1633945271,1166632551,1702913848,-346489291,-949590227,662252613,-2140733440,1744581989,944097126,25136,1648141158,1647451785,1648365193,941001062,808880482,1634082658,-2144416922,6451262,-899283852,46792708,1048587776,1946182256,-53516799,-661731188,646697102]},{"sector":8,"length":512,"data":[113729892,83779942,854066974,-402426603,599405624,338356283,616170356,112955,1008990184,-1962445555,1315030550,993796587,1060949108,537673844,373055788,-1818748809,-785902872,781683683,-972634310,-1087836575,-755014882,-829708053,1654712705,1638010371,1097014975,-1426906960,-1321300802,-391843065,654259118,633233766,-937522373,1662959457,1952332972,1963539663,1664006152,-348948504,222079727,1397746293,1530103272,-2132904629,6398014,116839285,1954570657,1049869004,-402651207,11809653,-1108666675,1712924136,115589954,-726868,-943457566,-396270074,1947024389,840862483,641263714,1713859816,1638405769,1638669961,1633953419,-1587339585,-169320020,-1438994382,1651771078,954907904,1638669963,-1575455256,74736242,1715003837,-10377055,-1440698155,1008924904,1012823053,-943360965,6452486,1662959360,1918975062,2004499462,-1428216830,1947024556,1950039056,1948269580,1949973512,1963539460,-11697952,656730240,-205629874,-2082567358,-829750586,2042634924,1372489723,515886635,1587999587,-25096588,-512602982,-639017378,-25236994,56249534,-180584393,749475698,-1740147467,1209889864,1950881652,1929591819,1946552400,16050530,1651773056,-337033664,14018816,1651942060,243320970,1578132084,977054808,-1293371275,1947024422,1966816260,1662959533,-374685302,-2035548024,1013085446,1587180800,222080088,993797236,1021911156,1967031295,-2055929758,1963142238,645654554,125046076]},{"sector":9,"length":512,"data":[1638669963,-369175831,1973485278,1662959458,-1085543510,-778869986,-441480221,643295320,980684092,427041340,359933756,772315624,2147438138,-704670946,1679753089,-342682249,-1394570730,192154940,175424570,520061354,-370117020,-391315676,222045692,515819125,-1407284381,378234465,-812949080,1374211627,378103550,1877565864,-1834285826,46371499,-1442724949,2000062915,1017929314,1006924813,-1106545349,99309720,1651979913,515877982,1947024483,1966816260,49473795,440663,-1410088909,76238431,-2132811995,1962934909,-910207181,833880,1969205234,1976109863,38046217,1379720996,-377469067,-1998981620,-1998060979,623151653,1346232287,-389647020,-1041554053,1651916416,1462138112,-1185305409,-1343094778,1444574559,627828909,276118076,627304536,727307195,-1576564007,-1779735946,-1933617314,1816921,1594370024,226520946,73238532,1931017088,61969163,-33232686,1256915732,-1341377152,519798786,208938615,1914502016,1947107385,854270050,1965571200,749513771,1996962864,88442888,1948859564,-33101541,1009790124,-1997113593,78644549,1965030272,67993609,48956848,1161429168,-2046331902,3932741,-521545867,300461057,-399085049,1300760354,140347655,-401975927,-109042490,1008893698,-400657094,132654265,139299591,-1996141175,1435043933,537755658,-385766935,-1628962651,1968913444,17662198,1009030376,1324315741,1503444823,-402650951,1918830432,284917827,-1015020173,-2145522936]}]],[[{"sector":1,"length":512,"data":[1962935677,611313687,1965702222,1569211919,610527237,-402214424,1374357269,294272,1569195381,-2146833660,1962935677,90015752,-349944600,-45946568,109897900,1009007080,134968362,1560348493,173347080,-555212821,606332934,-1665181874,-389467303,1918830324,92111060,-1999735552,182977885,1949121572,1965767880,-9901821,-2080413463,1962935421,125665325,-2145094656,108331069,-384823936,243269866,-1333763468,122025474,1074230276,1947107392,1166541922,-370873597,226557132,71666178,-1476049654,-165317360,1963198277,1947107359,1166770274,2009348612,1472497154,-1185380161,-1343094776,-1143966369,1793786374,1651773056,71666308,1963345162,71666440,1166656646,67484420,359808,1300893813,284786692,-511662724,83460103,243285109,-1979161996,61933165,1166730706,1947483141,1962949770,1007988738,612400144,-756545017,1166688741,1962949636,97353733,272382187,119822716,87877642,-885389708,11731572,138775121,-120453199,157649497,326485050,1963607355,167819022,175376477,-914307074,-2147226816,2106097865,72190211,586672206,1007470467,1008169997,1007907899,-2129890004,1935885055,585099270,-369293591,96926684,-1070377217,-1184728129,-1410138105,1651979915,1928146092,1946631189,-1576241401,-253009277,1653018240,-370545919,-1387332689,-768359290,-150974277,1652138995,1996545853,1926773780,-2079424496,-527826590,1652400812,1653018240,2000062722,-1963816094,-1923739492,-1086193737]},{"sector":2,"length":512,"data":[-1834786018,3976290,1031812212,1016296703,-737643968,-2010740720,67300194,-1953261554,-782700913,-1702393109,1946518616,-2116944114,1515650940,-947662988,-372577524,1031864164,-1594329601,279470727,78124148,145231989,915138932,1015046775,-385649409,1973484315,1946172514,1978678305,-2029586935,-344719006,2040599787,1040065634,-545849089,-1186858817,-1359871993,116839797,1947230836,1652138258,1996554045,1106231238,-234878535,-1950583378,191004446,-1609796389,-654941562,1199890640,1722316039,1638405771,1638669963,1651771126,-1341819902,-101390181,1013085600,-402426880,1956706794,1954588770,-1979440104,-2141031898,-1005960988,158614564,91505724,-873961552,1948683001,1653055586,1651640054,-1475644352,-166693600,192233668,1084755691,-990509707,-1341819903,-106633114,1013085856,-401837056,1681717658,243271026,-1591713164,-125083015,37810049,4003699,-2145095166,23233550,101201956,613900925,-338162681,-754732771,-771283729,2097547488,-1947741854,-2075994235,1342665956,1407717296,101341433,1273520773,1652400633,1653016310,1343321090,1492729320,1651771126,-1979354104,-114235196,1652244107,192216843,-1258074742,141921536,-1946606616,191004478,-1609861889,-1852284282,-402098803,1049360656,-16031103,1972177268,-1852265468,1727594472,1638405769,1652768384,-166497533,627209222,116787061,1950376583,-2096708091,1706885986,698738776,515836131,-391842973,-202822610,42199288,1166684395,-1324932092]},{"sector":3,"length":512,"data":[148951555,-345867002,71666209,-2052978908,-1994921118,-345866434,33945105,1049184117,116089467,117720566,243284853,-1609538937,86794888,1081356924,51707140,1653018240,39684632,158653194,1653018240,1975728644,-2046412268,-2045938590,1013089798,-2147060480,73565966,33679811,1006781834,1914991617,-2062647286,65732962,1006781834,1009284096,-2146994942,543328014,71043563,243324789,-1975491961,-2073917922,973370587,-1564052029,243294854,-1023122809,-1979592472,-346498681,-167595893,1080193542,2105738869,125042698,1653018240,-972771264,-1996356539,-1570603202,1049191046,-1329372543,26339337,-1610612039,1101554292,27795316,67895924,-2146648540,-1973259102,-2141031898,69484772,91538442,24396860,-1474393279,-1948712095,-2090751474,1166737617,173378312,-786709717,-1325054584,989385223,996898244,-966298174,-352254907,-1474393183,244065,-1979034229,1048642117,16802425,1010893170,1007186944,1007907844,-163613430,1080193542,-771028875,45102197,78648043,1653018240,63013696,1651640054,1224832064,244046083,-779918934,71665664,721962379,-1982784573,1435043141,-2126608121,-722877598,1827231744,-1977700100,938149213,753606576,1006978442,1978103556,-2096708091,20710754,548461684,565188331,1166676715,1912814597,1929788621,-2096708091,581960802,-1325048438,149148163,-2141029090,40011534,1946436922,8513817,738477450,1929788440,-771509772,2097547488,-2029092766,-2134703006]},{"sector":4,"length":512,"data":[-278755546,-1324857973,-336014841,138775301,-1002831696,1161515893,-1337035510,5105665,-1995938422,1049166917,-154967423,274892550,116787060,1946444423,-2027519952,1015085922,-2147126238,274892558,1652950726,-1259776000,125665787,267059457,17268097,-1979127037,-1739021433,1946436923,904485057,41779451,951546880,-1301020091,-152114344,376767493,1946289654,71666437,112204523,1651771126,1209103364,1166675691,1964981252,88443395,-1072953564,1652360713,1653018240,2067695874,758956898,743444852,1477065776,609224818,1010904287,-1007331322,259271996,-1191165976,-771031039,-16108427,-1396493707,-1962922008,-1177941045,561250305,-604515593,13796341,1954596598,-359594,-940175243,-2146732928,141950975,1954595830,1094828803,-617364671,468242995,171209245,334015704,-152407523,662040774,-788527943,-489500189,-2132218886,393544185,1946286976,-75480555,1108308994,1946483584,-75480567,-385649656,1435038984,76268294,1021304613,1344435525,1686815882,-538673150,1503444823,571729,-645156878,1968725849,-738769400,-350698624,-220624111,722433455,-75478055,-2147257840,1178994883,-1007041544,773442280,1651719808,1711371264,369499713,400156703,-2144461049,6452030,-211353228,-2144428122,6452030,-1972960908,24444756,1971988071,369499903,398977055,1956519687,369512809,-544512505,-1939661121,671541464,-1112917328,1315322090,1724287846,1048587846,1946182259,954318083,548984319]},{"sector":5,"length":512,"data":[-1031099616,-1205343512,-1968496608,669116614,-1423957832,-773304232,-1438994393,-1956230298,-12359997,521543381,670361683,1493639007,1933475886,24379490,-385621145,521600867,-389871850,-706208719,-388330725,28974088,1947024384,466020363,589033704,1107391954,-571936117,-1106086649,431571069,-1096486144,1692942569,665381159,-59224381,-1956438337,661055683,985552726,659417177,112746079,1915866368,113738509,1307099531,-389903577,258352968,662029059,-754839706,149602662,-2140981313,56727870,619185522,-402068697,548939560,-1079268576,-1031052475,-1087955992,-397188279,-2091178166,-1645541181,-400844568,-628417722,-1172607000,222035969,937954164,458745883,24498723,374728770,-2132217205,1662959382,-387398774,-1440698330,1946629096,33863744,-2145322112,835518935,-1047835022,-1339635736,1048619578,1946182256,-1542494712,-1243082544,-389903578,548415152,33732778,-696922114,1393971432,1529271784,-1368043965,1392685507,857662419,-1948741952,394986055,-2048369889,-1438994394,-907345481,-1100800321,1692942579,114214,-391329045,1354242765,984918867,1634509227,-400138264,915089042,515858826,1541938787,-389641472,548415052,41130,642377808,-1582686032,-661979135,-1339672600,60926496,-388986112,548415020,1960518570,-1101639141,45678600,1960721152,568871687,571648,-1071469908,1516174048,-234676392,1011227762,1006924877,-401377958,-1628756434,1239998091,-1962576890,191228115]},{"sector":6,"length":512,"data":[-389817458,222042737,-370667916,440133657,1639585417,1639718537,1640367815,515838723,-1178586269,-1410138088,-1340018813,-1163809921,-1130321055,-1816614303,-1113543936,2142284385,1634640299,-503902031,-2090623483,-1968504622,-1416383294,-1318904130,-393759680,208930276,1849098030,-401249695,48957004,1299322317,-1083990338,-1130274018,628025441,-396248415,548939112,1569565472,1095984,1009693868,1007055392,-1979549826,1126664416,-1339731224,-387798496,770131398,1944648587,-1173978331,377688161,-2130681412,1919164158,222086070,2142836853,-1306621184,378234465,-1956224594,1943077874,-17796,1686796267,-538672898,1967455360,1008733243,-385649300,1765604693,-404159627,1970814205,-1723957238,57803361,1023344873,-385649299,1648164464,2000423028,1681654900,-845018507,425453665,-1569452740,1815879692,1323832181,418572313,115591819,1226381544,501845995,8436209,1647058571,-401133336,512301317,-1956224590,-338588686,-972634368,-1592540575,-1914150478,-1438994396,-315373941,169142352,1158378584,-257683610,611772432,-397359477,548938864,-1923568864,-857198499,-2083615981,74584001,41077307,-835990901,334096449,-1906192992,1013035550,1013216375,1366848612,24440099,-397366169,548414527,540825770,2117862514,783286902,1124567078,-1185357086,-936706032,548931444,-492131552,1713313529,1638807177,-2146191128,1650576702,1170605685,-74764825,607184978,-230994342,-1085928589,512451358,1357472178]},{"sector":7,"length":512,"data":[378094335,1103323566,-24909359,590837758,1728148717,601024685,-492166992,-2085164051,-372177983,-24909359,589002748,1728148717,-316452691,-1385758348,1478733800,-1339839512,-488461792,-164392981,166300651,318892272,1647058571,-401162776,222042108,-397262988,-812968320,727916218,-1047830582,1925645128,319678681,-1014041973,1651719808,-1961987072,-91527465,-155775130,-910749850,379908967,-1090054625,-739745424,318498834,-389837885,984621896,954908074,1651719808,-1123781632,-1956235039,-1193934910,-391438304,-397208893,-396687021,686297809,-1439780829,1407734355,-1101309405,-919379154,1637891712,1446212608,-1956471105,996254774,1919002166,336062471,393350576,1637891712,-2146667251,125110844,-1610154426,-1394545823,-1990090590,1583457334,-1058533397,-1274645230,-350106360,-855591932,1948269590,1947024435,1946696751,1949121565,49906448,76063347,1914107368,-341032549,314042386,1662959434,-1931262229,-1628942775,-393876718,-2132077915,76029411,1381101867,382003372,1499120266,-401467672,1891567734,301525089,1108484328,1013128895,-166169587,208930754,-1048325641,-215961596,-14161494,-1425404488,-369162519,-919395706,1647058571,-2146117912,6452030,728107892,1715562186,-346921391,1103768325,-1712827823,354609174,-377368693,1048601374,1946182259,-1906350529,-108828989,1714123777,1721329240,191295991,1712420032,6495934,-212769280,1499898983,-277526426,1741327206,515786467,-1536691357]},{"sector":8,"length":512,"data":[1499873003,-211607904,887859815,-2084336033,611582457,-2083376296,-763166216,200406784,-1106611008,-212770018,1967675812,-473265162,1662959119,149660915,1662951513,-1426896470,-1077737706,515774305,-476992157,1722639883,-7098990,-203274537,-389238589,612894598,1006930627,-402426676,1002637178,1952597014,-1002536494,1950424929,507412512,427032675,1650593419,-517270301,1340604592,714752,1206387120,1646658304,99140450,-6035456,862322923,1725729755,-692060365,26404887,1352732533,1379306338,-1949267102,1479475144,1634640226,-796135285,1048627339,1946182256,788489729,914580060,-1006673340,-1946209434,46629884,1963023336,1679752965,1048626018,1946182256,520054273,-1815911832,-1553845599,-392994366,515838492,-1413467293,356902990,343149884,1640111755,1712585192,-1817483630,117327787,-454335714,-401122881,922746648,1911054916,104917006,-1184730462,1424556031,-397387258,1012465445,-2128972340,409060414,-1189972672,1021902847,1959541766,512321032,-2065079748,-1005155554,233105505,1092614785,1961362292,-326702818,-400615684,378212377,-873963068,1662959373,-398428482,1453400139,542566498,-1582679376,1307075156,545318944,-387163159,1381176400,-401298456,-1696066488,-1957144300,-1947628560,1354892225,-1022114165,635962228,568875040,539015200,734366635,-963948350,125092635,57996043,1478495208,-383776792,11739194,-2130811766,-58662940,-1977911991,-538672928,1951923328,-1723957235]},{"sector":9,"length":512,"data":[175244129,1967455360,-398245115,233313385,339208212,1946286976,-334727416,-350235928,-974590709,1711663903,532015341,-400559639,915079184,512647570,91578774,-1809936850,-2094087327,6439998,-1261728573,-858032,1381047156,112742483,1479658752,-1056120383,-787806998,1072224907,1499093760,-1807842365,1064566881,-1226287586,274500095,-1262280866,-4265903,535300980,178176,-661966387,-1807842365,460587105,-1830267362,274500607,-389865634,192216988,1849098030,-400463263,-842858492,-1957313759,854361068,-1996024314,1988742782,-564229678,-1981655415,1183442510,4623338,869680777,-296842807,-1979953527,1183579726,-263812858,1727153801,-1949401459,12059742,-1976447741,-1952453018,1988873854,-564229166,-1948100981,1183573582,-1027012630,102629380,1713313376,1499608717,-854160712,-184468433,-1021376671,-1531044074,604292672,-398426694,80088090,1084733965,-1593044503,104554860,1354981742,1979708648,-397257969,915087096,1049322034,1532650044,1692975960,-400002032,91553500,1929357288,1048587963,1912758737,869304846,-1195180298,-839290107,-855446751,1062713893,-1609912855,3957196,1538918005,196667713,259262120,1647451707,-92207499,57934080,-1947554839,-1191539725,-2135278336,-18094080,1793655667,45650699,868823874,-165556782,107072518,1911062133,-1173850882,2011709565,-395646197,110034793,1398169964,37108518,-554198016,637891485,144899,855639225,-773402149,737862355]}],[{"sector":1,"length":512,"data":[1926831095,1977236232,1945123586,-1168221430,1005076953,1529801483,471239006,1646568290,859963576,-841862199,1030689,78763811,-150736941,12140468,-841052418,-523861727,1958820623,-851528465,-1021372895,-851528624,116808481,1946444236,15433991,14320386,-622308781,-402426626,213846763,1948002,-1410088909,1646003855,1646528143,-1090515266,-1515888272,28878245,8436299,-849217861,-385649887,1877478033,734300928,1023421958,57802880,-1560248136,918839658,-1389993468,-1990055773,-1939720138,-1000198138,-1990064074,-1939719114,-966643194,6408966,-386398442,-1550582355,750739820,-391402654,582548843,656325157,512631245,378102124,244056074,521535500,-1100896065,-1520999876,1647485349,112811691,-1012534528,-1889100698,1717714950,1647847049,1947024579,-2132768214,-58711860,-1408731794,-1273944856,-2141459457,1635087612,286779564,1637557898,-2130779008,1182008060,-1092021271,-1683996817,1946172513,1065139719,76034052,-1105427736,-1667219579,1962884193,1065926156,1637549626,-1916927116,476702783,-400773655,-756543310,985827856,2002884870,1637589695,641392778,75456922,1637623432,-396996413,-538439584,1577925648,-388729768,-397341249,57998492,-1323439112,65721092,-741962797,64720104,1975663555,616991499,-2132833521,-1019605021,102670169,-1326964970,773785355,1651719808,-1642892288,57018227,-117217551,-1536691203,-369318809,1939798177,66126597,-1527513607,-1830159196,8437752]},{"sector":2,"length":512,"data":[393481532,1947237096,1949252626,1918974990,2004499462,-1428216830,-1327109204,1049209344,1448567288,8519553,-8313740,477233285,-1141156467,45701481,-208973568,-1014760821,-217796347,1493469862,-303954828,-861797968,515858017,-1404151965,1963801770,1556045562,2156544,-1084086110,401080428,1646895616,1600331454,-1431550121,-92992196,-953444520,-1012250552,1947024556,267773961,792524404,-1202839948,182987009,1017925884,-402033651,74715103,-227201220,20731982,-1018691211,1947024556,264890589,11597428,1017925290,1007055457,604141434,548973279,-1414812896,-1070355541,-1414812757,-1979665469,-461308316,1341948127,-527819915,-2132810624,225728508,1637432960,-2146799101,91571452,1994933059,253421583,256829522,1946286976,-401311988,921177878,-296054257,251848899,-1844499224,-389812390,585633488,1716671247,-278504872,-82908989,1464872564,-2081649835,-57997076,-1203925658,835518475,1173755762,292816901,-217750144,33901952,1651383947,-855634760,1482672433,512437955,-896834962,-1056644415,129502441,-1020146432,1647451787,1048576176,1912824217,-88414195,258345076,-1050230014,1084756200,109971139,-1956224462,-161334242,1080193542,258346356,57067967,-1977194535,63112963,126494425,-1962491129,-396217826,393412463,-1956199538,-161334242,1080193542,258345844,644336063,119080072,651756483,-1022949496,-94705634,1156061556,1344303871,1493141992,-611447436,1730316903,979829384]},{"sector":3,"length":512,"data":[-1911756030,-628403237,126363530,526059322,-104660619,-10164029,1725664798,24435339,520587879,-17981,1023372008,-1173392180,116801560,1950376562,512321025,-1966906820,-538672928,1968372864,235530250,856554728,-955651127,1398916614,201320479,1030737,-1560341016,57959026,-1956248650,-2057159626,-401377847,515834137,375099,158707442,-380550823,115867854,987807489,-234872903,-1977518674,-2136465851,-265156236,-428487938,-1476349463,604468288,48660543,-392641022,1307246798,57999164,-402613783,-148635439,950538292,-1947663500,1941978112,29816372,104599157,1077683572,-2143541390,468394098,292816188,128451636,-1981283467,1916812288,1921006608,8316937,-402621464,1978138744,840862464,-1190859934,-1085210623,-1956224226,-389238570,-997523762,129895539,414836801,-384238104,-1202658088,1722482689,-1951701354,-1437029437,1648637695,-402232344,1923284538,652761698,-2116930569,409060414,-401574592,200015571,1648430720,105572353,960495802,1969341462,149117198,377350225,-1023286695,-369169943,116848623,1950376562,-1018796543,1651640054,1711633472,1723905807,516157443,1647451790,1913058862,24395874,-1021334425,42206918,1896283648,95021154,-1100882241,112802400,-662000640,-2029861245,-796152329,-2131261523,242492155,175423523,-1965519330,-853166909,-572383455,-1084128066,-1515913206,-1526720833,1641037440,-1207602176,281871616,-850657096,1390980129,-1723957236,443679585]},{"sector":4,"length":512,"data":[-398478658,914364371,-1207869027,58007662,-1419352392,-391511888,-1966925818,1021256708,1174500690,-1402876254,-2146688792,-10380738,1307175028,1963801622,363718915,1480384292,1312600948,1295832436,-391377291,1048579069,1963024847,390261189,-551178930,980467679,-234876743,-1075868753,947217182,259343676,-511701878,1241088223,-109041036,-1423608752,-1951784784,-857203105,1963801611,126571278,-401123352,1012598646,-402099187,-1427633280,-1021867765,1064650300,-1444369330,1963801611,382527494,1007113704,1323856909,-539023955,-1187331905,-1343094768,-8295051,192363216,-135379573,1074143696,-1962415262,101310021,1894277696,-2133791989,56727870,1161578866,615269749,-1077639457,179911280,1974465024,-1075868874,96887582,-1330952379,1602988576,188868638,259329340,126576211,-401161496,1012598506,1393521677,-1962226712,451435467,-1994946293,1321402959,-1948050455,862071838,154134729,1359679464,160884818,-903128742,1662971777,1926179663,100002015,552130439,-1094480378,-223583458,-1375505234,1464940149,-1493972341,-399936161,-2024667619,-389837833,984618600,-12284502,-1206493208,-1179973107,1435303947,-1830267915,-1957012714,98691326,-1109245607,-402263831,222038699,1843924852,33194762,-1830256009,-1642690550,1069399649,-1469997408,805608449,-401914744,-574745077,57974079,-398469442,1139348991,-2132768234,-58662940,-943688627,-413022714,141289506,321617,-1007033767,-1560576536,512451186]},{"sector":5,"length":512,"data":[849437244,1277049698,992769378,1969376774,1899921446,175374434,1648101063,244056740,118907442,941525790,807308898,-1959294110,-400620961,868482257,-77993783,326487356,-78518207,192152380,1637746422,1009284097,-2142866175,23216398,954779955,1172852987,-1673766909,-1142422667,-1002536704,1950351457,-185472765,-1189907735,-1947729918,-1949011456,-161336802,1080193542,-1956249228,1952594998,-964467199,-59774974,-388461885,1383462308,857604279,-774336832,-85732893,76167109,989803648,-83589116,-611580044,-62396385,534285507,1648113287,1647445639,1648365195,941525790,807308898,116097890,931743302,-1996339319,-1994455985,-2141046754,-60669658,79201003,-1959670526,79951577,1391002485,-225745153,-1006894872,-1963291928,-385927968,242416296,989495016,-1979222816,-90511164,-1007041544,805735942,-389837726,225770062,941525862,-2144966814,-335675037,941525769,1736451682,-1022886399,1640367815,222045266,602426485,1651679994,-1956236172,1717679126,-2090415477,108208065,-18074,1097269247,1382437222,1711873512,1717134939,1717679265,728158347,-651467071,1942174566,378258403,-896835148,1931460995,-18149,549000939,840862464,114026594,1711841512,1639192201,1639456393,-397258431,1499138266,-1956531039,734079952,1942174681,1397801964,1253659217,1138264584,28967095,1141749760,1499079117,1354979419,-1185787565,-437581718,1641037440,-1207012352,281871616,382533812,-855309896]},{"sector":6,"length":512,"data":[-1058487536,-395938811,141882424,1945437160,-183179005,-784433106,393347681,29282442,-389874080,96010148,567146867,-4986724,-855446627,1063107110,-611396724,1633953419,645120910,41290812,-1952969552,1250200304,1050328639,515895299,327018595,2028532363,1063501331,-401378584,-1846996042,1640800479,91489448,-348045894,1962949639,1096530438,-402600471,108327868,-381649478,515702978,-16875421,-293599374,-524058114,173443343,1018491787,-2135242445,-201857024,-1169131150,-1679277713,1646043392,1913714819,-1983892734,-1073018810,870843252,1646567699,-402241911,1340609304,1098430995,1526756840,-1207282037,-1037304320,556672,1178273909,-1962708474,-1903098298,-851397410,991893025,857044417,-523861550,105785615,140411039,-1630505728,250334581,-398360134,1102315574,-402620230,1052046209,-2084363827,-1480981768,-2094959551,-1195768840,-2095483839,-910555656,-2096008127,-642119432,-1089899455,-1645723245,1099807250,1323895220,839814387,1007077218,857796706,1648272320,-1939719517,1348612118,1647847049,3336280,1634778819,1978845160,-13433327,-1933588594,-1515870976,324200613,599507719,344679938,-1207677813,835518981,-33110397,1976565443,-1645689876,1813940995,-224663455,-2130722072,6410302,12060020,-1995387643,727803942,-1990104538,-100651482,-2141057860,56727870,1634077810,1647584910,1647718030,1583289067,-2091033250,1515914948,1482250586,46433112,1712785159,1647847051,1637811910]},{"sector":7,"length":512,"data":[922707456,-10067392,1717711414,1648113407,1648428790,740199938,-83790750,788189030,1640236743,-953269985,-295582202,-1899459544,-338129200,113716855,1072783812,-953280021,6407174,772860736,1640236743,132857903,-1006188754,-96462751,1007062830,110046818,-1892785614,778190854,1647318668,646524518,-863215048,817681550,371066466,-1723957217,410125153,1647584908,1647718028,-1885496218,1784824326,-1654219776,283861094,1364283472,1397969490,1426517123,1465341526,1634215563,-2034697220,-2094019306,-1071971848,-396213085,512356797,786981228,-402186752,645984635,-956407231,23174918,1641037440,-1207602176,281871617,1640251009,175456543,567102900,-398379585,-1077735180,1172857200,505247217,-1896467705,9223902,-1515870890,520511397,-963709389,-1526722882,-1012554331,-1207819333,835518980,-1995077274,-947714995,-20709882,1726772687,-768383392,-1153803074,-1951595997,-1194750768,835518981,-805387266,1634136181,-1740734269,158662753,1635565399,1593839080,-1169010493,-404203149,-1017619715,1978717160,861281807,-1092710666,-1515913076,526296485,113661635,-1107205736,-1243061904,-349735440,-6297580,-960297194,6395910,1978704872,2092848880,-13412511,-1933588594,-1515870976,241065893,118932231,599482470,344679938,-1207677813,835518981,-33110397,1976565443,1583441644,-397009213,915140712,512647564,91578768,-1910600146,3965025,-1329389730,518152,48767152,1393078272,-1185918383]},{"sector":8,"length":512,"data":[-729087999,1477453032,-1017423526,-1423957832,-1163248976,-812948706,243911211,-1444388446,115907584,1064475920,1640367815,244001006,-836017754,1017908340,1008104461,-1441631222,-1293355806,-1327009024,520061194,1308783203,-1539929777,1637917281,-1951789648,1654569679,-957822421,-1172575473,1760060060,-400591361,158724048,-850915144,1958774063,-401951739,179367969,-1090554648,-353869154,509068035,-1958591993,-855591686,1946172438,1960852728,1946696948,1954495515,1323870743,1963801855,-97824796,-91502709,1258243464,-1024762038,-780862917,-14161841,1048628203,1962959264,-1077675774,915104414,909861284,91382182,1912607976,-1606516721,108334433,1963605120,-1007139327,1358342633,-1957539501,859813111,1662958043,-903096437,-1763176844,185168623,50689216,49019074,-1499203182,1532582497,113689432,1006657994,-400919235,512426825,862347826,31516882,-1105819290,-1038186143,-905511327,1048626017,1946182090,-1096718829,1017341537,1640145250,-966643037,6408710,-34740029,1647058571,216582451,1048597249,1946182259,-903125495,1365660262,-903150357,-773303982,740199170,1933475938,510918754,-972979736,23229190,-1956226714,-100440327,-1494736782,-91527678,1583793038,1676198687,-108308223,175307267,-1962766104,1589874426,-1846951137,840862682,16824930,1383337276,-402570776,222036608,1381189748,-150961989,-1324976934,-1947544823,37546234,1375889384,-1153318272,394805101,-402523160,1381171800]},{"sector":9,"length":512,"data":[35317846,1943485258,-896843079,-2147336984,6410558,1516113269,1977289563,526080165,1539557643,-1889414469,38244103,1476677513,1510360975,166250803,-2145684242,6451262,1468601460,-1223727606,-356423973,1933475856,41156962,1468650035,-389854968,-169279804,112897,175377724,-402541592,-896859683,1371762147,-352280088,-1746382588,-706193920,1998601217,-480682461,1933475926,225706082,57035110,1712223178,-335558269,-905754360,-4652173,-1012117761,1815879692,1048585588,1912824217,-397253103,-1956249448,1717200586,460837179,-397273621,-896859820,2010200922,-402068722,-1813511809,-2096860672,-373095228,515889524,1947024483,1948728566,1948400652,20244488,-347662968,-1394570733,125092922,-613151428,-1393235030,-126565318,1006716904,-1009355507,1377710522,1651705542,-8617984,-1407552220,1961696232,15919124,-1202660725,835518466,-661935758,-346500981,1239043,20244566,74725948,-1012117922,-388330664,-397410011,1951986214,1929823759,-397213342,1381171348,-1017423258,-1023364120,1961677800,-1723957203,645006177,258363750,-144258302,1073742017,1952015872,-397192683,1381171304,1515936102,283338745,57035110,-397229110,-896860036,-905754278,1364676803,-1187352385,613023760,-2132811995,1933640060,1974465041,-1948568784,361438845,1599731782,1048626008,1912824217,1967471644,21269016,-551172986,637407,158707698,-1960936053,-347733411,1482643925,-1326922759,-1409125633,3205315]}]],[[{"sector":1,"length":512,"data":[-1835511694,-391324877,-260964314,1978714102,309569,-741219631,-804586782,-397154069,-618397740,-1020562085,587199464,-1021086218,1009790032,1477211657,740297808,1996831841,-2096495609,-1007156540,-389809832,222036010,32053876,535342296,1965833216,384325135,1963801600,749755908,46433219,-551244605,423379244,-1404110986,-76275652,-143390404,1948269763,1946762254,1949056010,1950039046,-1019397118,1654130374,-1775859456,-1547685022,-1918672247,-1205957790,-254744479,1952608930,-1928429563,113651810,-972856687,-2141024250,1652754119,149422080,1973107720,-1928429560,-51888030,1653580295,-661978956,1029870243,175243744,1374723978,-1014955849,-1752563232,11947162,-1618222127,-225751294,212976523,104523987,57827971,-2141027422,-92270617,-10194164,-346411884,129362113,-1268609118,31458560,117827779,-1010629736,1654132352,-2079424496,-18349726,1925200902,-771509784,-1743770392,-1597783293,119825021,-1010629736,-478100598,-1927379761,135886178,-1973252834,808461528,-161313530,74711491,1653685896,-10557096,-2096737815,1784844862,-119012491,-1215474170,-25083149,91570991,1946610408,116451555,1654261447,-2124546048,-2143161402,1651769404,1654195910,1077718016,113653618,1008755353,1008431968,-1274449072,-1895368961,376701282,1653476992,-1926854128,283410530,-527824661,-2131696512,-662015764,-15801469,-346431337,-2137810921,208808187,1508804491,1977910443,82530055,1508808703,1946172544]},{"sector":2,"length":512,"data":[-1439911931,-1902076181,584119906,1969392902,15722755,-1157625415,280646952,-2076134400,-1189186108,1287323668,2538069,-997977932,112791413,1436334848,-1275065670,1959035936,-1910110163,-74754206,-1834886006,1974465122,-1946549490,-205094603,103344194,-156767393,125055171,1651640054,-370051776,27788634,-1834931852,1977910370,163141618,1106231040,1969204978,244198,1460069608,-396150081,-2141256261,23236110,-1459655703,607286274,-1912207354,1653776738,-1082792828,-1084752348,96027128,-1095831040,913590914,-1359871311,-2017547915,-1912146358,645203042,-347434050,1946724385,-1834920042,1437908834,-234869063,-158829137,23236102,650019188,-1911652279,-1184954270,-397017080,1465779829,1594197480,-1946221591,-480077298,1654169629,376770728,309600424,-141832313,1974345904,80184317,-835979385,-1084775181,-1197382882,146466913,1722432176,-1100893023,116799722,1950376562,954318339,548460287,-1994486870,1664728674,-288229589,427744827,-1957437909,-588752930,146597893,515857241,-1328600221,-341118176,97118428,985211056,1926179683,1605038850,1654130422,-1106414584,2105556967,24453375,138799174,-396856387,266536435,727936440,1642615233,-1527555832,-1610577943,104096408,2121598632,1653751425,1987313805,-2140970056,1281571390,1048644469,542335804,-394067083,-1874952188,125567074,-394067084,-1958197244,136505576,-1593547032,-796171628,-1341654040,-1851741635,-523134878,-1029731437,529407577]},{"sector":3,"length":512,"data":[-41821557,611607395,1667104129,158602359,-1979431030,-773323417,38242823,-402430070,126486472,-402561142,99289024,-1058535542,-454549753,1654169607,427033000,309659816,-2090691935,175380472,1946193469,16465157,1072235381,-555170820,1925200899,26929411,-2147206936,23236110,1653409526,-402426879,2107638747,-2134432670,543329806,1653409526,-385649632,243269788,-956013928,6460422,-1828307968,1957321648,132350843,1501863818,1963508726,79951385,1119365236,336497488,-1928923550,225771874,1653673726,1119356907,470715224,-1810986654,-1007244446,-1340443645,1404611115,269388617,29619810,1152386676,1644957323,1653870081,2097608363,779403362,1652360950,-400919168,26739671,1013093382,2100016128,-164776956,1193642200,-351870232,-1439977459,17035240,-396192762,1571817164,87868330,1538263413,53602474,1342214889,71042852,-1729624459,1652466179,1971365976,1950394390,59369493,108855356,96917750,-1662499027,-402396410,2107638531,1007101026,-1604160252,607937150,78644341,119822315,208995644,1652360950,-402295360,216728287,1163593159,-471316665,-1436700670,-798851424,-790048536,1007101160,-952011772,1195727621,46721095,1652434570,1958790390,-1440042988,-990498128,-1341557632,1086649908,951059060,-1436700502,1527105475,-397981883,1571816094,1659421610,1941978114,-24844029,-402527767,384500309,-1341999896,-1928923643,24453218,1652400704,-385979159,119800371,1654197898]},{"sector":4,"length":512,"data":[1654132232,2080439424,-2146864115,326377724,1195705798,-778565628,-2020895776,-1012180596,-1157494040,820596045,1653579777,11586795,548718827,1186472427,1336978252,1413593258,1152912363,1438165839,1287170882,1961405253,-1205212414,-391446700,-1069809187,645933171,-369270120,283704826,1095153666,542292139,-1876522837,-2147095710,-43870170,1006745832,-385649728,1072299485,41609217,32106576,1911030900,1843941378,89057282,-391497040,74711511,88270936,88009048,-1744690456,1374171115,29485058,-162519180,1080193542,-169343371,82805505,37415002,1639194251,1653153283,101962499,233333174,166302213,1913058821,192233570,1639187971,1653147139,1711601641,100886168,57041332,-379418362,-1604844321,119825021,57934140,-369453591,2107702004,-1828248478,-1420536904,-1196808016,-1022744272,82363307,1380170497,192349244,113640821,1006985859,-383879935,-320339830,1380236032,-454552597,1912814592,1929788654,-2096708091,1421542498,-1817472174,-1012256756,1006684904,1013019398,-2147126270,-27092954,91358268,1652754118,-2146434045,543332366,-385969175,3932491,2100015251,-1327761916,-342644179,16547879,-157540484,274896902,-152566156,82805504,-1660855320,-397408140,904397140,837376004,18212868,-2147208471,274896910,-102962856,1654007435,1345222584,1653147335,113704960,25229,1653606086,-2096707712,-2147483550,-77424602,-1090460952,179919310,1957622272,-1995505909,28621666]},{"sector":5,"length":512,"data":[-1023381058,1654132352,637704,-472786645,1913453443,-861959416,835161,1664794563,-1207946776,-1414914016,-639018837,518393,-388889679,-154990812,-2141024762,243272565,-394239346,2107768971,1652400226,1653711043,-1813982824,1504479115,-1438994261,10938563,10676304,1476625384,-1023180824,-1813982824,-1668838576,-1822905511,-1911652157,116789346,-1022336371,-1402783041,2133123210,2044994218,-1440698122,1665335169,-2000422542,-1990029274,-1335715266,553418833,-58715532,1946910464,1497544716,1163180203,1152387819,1331148970,1146271915,1344321707,1381284011,-1440698197,116793027,1967153778,915101206,512647604,53371320,-1402828490,117383006,1724080777,918906454,778461620,1653159427,1583787111,-1996030177,-165756062,1080193542,-1957292171,-1906199498,778156062,1653159427,-2095096147,40012038,1716938435,1639200453,906178150,-1385733495,-2095096218,40012038,1913059011,376782946,1639200395,1639456398,44165292,385447243,-1271494369,-983121055,1734456374,42854572,385381707,914974239,-2084347468,6462014,234947700,-141860198,-812910333,1664805249,1330576727,-60840717,1066581699,-167769159,23233542,1153833076,-1667221751,1979661409,1637589012,1652753978,-1648488078,1153876799,-1683999223,-2096743839,-1609993374,805593731,-1022933880,-41201577,-1184722271,-1343094777,-1089440424,-114599801,87738675,-1463941762,1594536255,980467395,-1184686401,116785160,1946247581,-402214654,417857621]},{"sector":6,"length":512,"data":[1662959362,1637680886,1444115713,-1325087101,4646916,988299614,23390208,78714347,1442859496,-402564632,-1084358161,112288542,-402642968,1019085283,1639235426,849454501,113683298,-402431336,-1587087793,-1553571268,-154967628,23174406,-1331359115,1552656957,-402158818,548405636,-1007689046,-1515567696,-1951777360,-1956241828,23455751,-492166992,952026091,1654569818,-1187521178,-1331363837,-209212867,-209212058,21948496,-492166992,1359131117,-209214299,-1956205210,-2018679088,-510727949,837290100,-1438994431,212931819,-2132225178,56727870,501745010,-402396415,-1956249302,-513087294,1048579188,1912824217,16640005,31982571,-1440698367,-2018188711,19261683,-1319479203,619238154,-741832178,1026603469,1365450431,-1420536904,1470873995,548929960,1423648,57977587,-1425404488,-775582881,617468365,1444639747,-1319484226,1996635141,1514782220,91489201,-1314246480,1587868416,1048585451,1951556046,-396994809,384551206,-402111349,783286416,441258,-2048393077,48988928,968881789,11855971,180781913,955875393,-580482443,-1016947162,-1187336002,-2052259832,-1956495354,57937476,-1424079733,-492166992,-580467731,-1100833226,817455802,1296939069,-1413379157,71600998,1711288040,686294155,539015168,180781995,1946272246,1474842888,515856640,-109035165,1725068600,1654531801,-1398100797,-92995524,-1050259261,31985896,-1974446080,125124,-1320071080,-387395068,1482227714,-1878782172]},{"sector":7,"length":512,"data":[658510887,726713258,-402229305,515833867,-819242653,-1426906960,1031819203,1207596064,-1425404488,515559307,-389403805,158724007,-1275067973,-529799104,1443816387,-1146293621,246677511,-152956723,213893982,1948002,-1410088909,-4503372,-2094936577,2104627707,567101620,117340018,-1679269315,750736354,-1414812830,-495130453,1647451787,-1957117042,651363280,136841,1980760125,-1312804094,1222693636,1647878984,-1413467241,-1030990412,37128998,639749376,657095,-1943656674,-2147480562,6409022,117312117,-970563125,-1023344634,1634469516,-1907834740,-1557774144,-970588159,2054,1827145502,1048822751,1962959348,377993288,-1071435827,1049182069,109863496,1049190986,109863500,1048601166,1962959473,1275512616,-1945983902,-1201517042,567096623,1643257481,1643382412,-1207795782,567092527,-1186938438,-18350040,97240062,278136150,357372862,402331290,417732771,89523542,471145054,500767997,547364671,574300469,608707293,620897516,82642142,19346688,1342383934,658966055,788854562,1480742977,1480874051,1346523219,1229211987,1279676489,1397052228,1396921171,1397183302,1646027304,1646289444,1645503032,1644978704,1648386620,1647206956,1647469104,1647731252,67110912,8389120,1048640,65540,1347769934,1280330052,1095653966,1129205584,1313101391,1196312901,1128354394,1497580880,774268774,1701068342,-1381174286,-1515934806,-1347508314,1869507948,-505360948,-2103777054]},{"sector":8,"length":512,"data":[-2139062143,-2139062144,128,0,0,0,16843009,-1010678718,768592842,1936941347,1818389861,541133157,1684300123,1936942450,1868762461,1918988397,541264229,1735287154,1684086885,1936028260,1969491315,1141469293,1467761243,542983292,1851880027,224224615,1886221668,1953392928,1970434661,1141470320,1852383305,1920099700,544501877,1970234203,224228462,1886221668,1413762080,541869065,1701602675,1919906915,1868782368,1567911541,1836409869,1129128048,1751326786,158230881,1678593348,544238965,544503909,1869440365,1141471602,1885020248,1769175400,1600938339,1919181921,1567847269,1953391885,1158247013,1684300064,1936942450,1768708896,224228467,1819044198,1914717705,1701277281,1936288800,1869024628,1528841993,1684300093,1936942450,1650139229,1801545074,1852403568,224228212,544761192,795108449,157447539,1635131464,828732780,1818326560,221406581,1970302569,1531513204,1564769367,1919905824,1869352308,1713398881,157641833,1633361996,1701995620,224228211,1684107116,1667592992,1936879476,1629506569,1701995620,1679848307,1702259058,1667592992,544370548,1853189987,1869417844,1292461430,1851879968,1629513063,1701995620,1930261363,1126200421,1830835536,157639791,2019237965,1417432700,2015895645,774778941,1310731318,544173629,743788614,859657248,1998599736,543716457,691484722,1835101709,541985125,1919179611,979727977,1634753373,1717397620,1852140649]},{"sector":9,"length":512,"data":[543518049,1735549275,1953720684,1863146845,1970304117,1531906420,1564769367,1919905824,1635131508,224753004,1668248176,157574501,1029382224,1919181921,1567847269,1868782368,1567911541,1869770765,1684366691,1952805408,158233205,1896698448,158624117,1701973329,1953720679,1376350821,1701993248,1953720679,1528853093,1970037110,224222565,542657869,1768383858,1919251571,223171081,542462022,1768383858,1919251571,1531859465,1947032914,1818716015,942874725,1701978166,1376351079,1702038872,1751347809,1914721033,1701277281,1936288800,1920208244,157639521,1029382228,1919181921,1567847269,1868782368,1567911541,1634890765,1830839651,157639791,1528843604,1563524144,1634628877,1835365235,157641826,1918574677,1701277281,1769344349,1713403749,158361964,1920404822,543519849,1701603686,1528846089,1919181921,1567847269,1769109261,1931502964,1869898597,1460237170,1684300064,1936942450,1769104416,1931502966,1869898597,1868767346,225734261,1869770765,1937010797,757538874,540876839,1818322290,909669935,1685024045,656423781,1025517347,1869770784,1952671092,1831691365,224748655,1917132894,1534226290,1701998445,1918307677,543519849,1953460848,544498533,1869771365,1851064434,2003791467,1853169774,1140880489,1702259058,1953459744,1634038304,1426094436,1869507438,1663069815,1634561391,1140876398,543257697,1869771365,1699938418,1696623461,1919906418,1802392832,1853321070,1684368672,1948279145]}],[{"sector":1,"length":512,"data":[6647929,1952671059,1847620207,1713402991,1684960623,1802392832,1853321070,1920099616,1459647087,1702127986,1969317408,1375761516,543449445,1819631974,1699151988,1634887022,1634082924,1920298089,335544421,2067869985,2070566732,547394953,1684104562,1920409600,1761637481,1679845230,1702259058,939548448,792082480,1998600248,6845545,540424312,1752459639,1953853184,1431324192,942809088,1851457591,1935959397,909670432,1701731165,544433253,1565872198,1935830875,1952803951,942890341,1701978166,1864397671,1634890752,1830839651,543515759,539828272,1934904905,1701994784,1920204832,1684366177,1869770752,1936942435,536896613,1970173224,694445427,1986610176,543515753,1869771365,604638578,1735289171,1932354924,544236916,1702129257,1886745202,604638580,1634038338,1768910955,1763734638,1919251566,1953527154,1227098637,1818326638,1864393833,1685021552,604638565,1667331155,1634082923,225733749,1699161098,1634887022,1919950956,1667593327,1852795252,1969317408,168653932,1734430756,1634082917,225733749,1396909066,1028671802,1836008192,1684955501,1953459744,1886745376,1953656688,1763730533,1919950958,1667593327,761554292,1701080941,539232781,1752459639,544503151,1329864801,2019893331,1684956532,168653413,1297105956,1852121161,544830068,1802465128,539780197,544695662,1920233061,1600077177,1597661023,224354143,1634038282,1869426028,1728079204,543519841,544501614,1701012321]},{"sector":2,"length":512,"data":[1651078003,1124099436,1869508193,1920409716,543519849,1634038370,1768910955,218133614,1869762570,1835102823,1919251488,1634625901,543450484,1600085800,168634719,1163412772,1818846752,1663071077,1869508193,1700929652,1769109280,1852142708,1310984717,1768300655,1634624876,1730176365,1852143209,1461979661,1769236850,606103406,1954112032,168653669,1936278564,1969627243,168651884,1920091428,1595961967,543121247,1852141679,543649385,1701603686,1176766989,543517801,544501614,1853189990,604638564,1752457552,1953459744,1970234912,168649838,1667449124,544437093,1768842596,168649829,1936607524,1768318581,1852139875,1701650548,2037542765,1847855629,-1499093905,-676483929,-1432064404,11445932,1107312718,542244928,4866560,1912619594,1415184506,5396992,1515323532,2249216,917522,131084,6029378,67117680,805307904,806748182,806753280,1946190848,369100800,1446912,8257546,2118234,2120278,5263962,5266006,1308631630,2752556,1048610,7471186,503324242,1213071442,5130240,1543528556,643432528,643432546,1310851186,5123072,5242964,675414048,3031552,1879056962,1375756800,1375740506,1577070170,1583087708,838874624,872430592,973092864,1607168,-2046786024,-2045116390,1869312,604014108,612499586,9577472,-2097142638,-1174372352,-956236031,-167707135,65792,-1895774719,-771698688,49152,-1052688128,1094778883,1090521028]},{"sector":3,"length":512,"data":[773441,248725825,-1018937088,1145110556,1090529988,3720270,-867151295,1329725500,1086606933,-967622144,1396834372,1107314898,-801024173,-733872051,1413611604,1107320259,6738516,1876120642,1279345408,1124104396,7984962,-985376957,1279459453,1124106435,8635468,-2033628093,1414284032,1124109011,9290573,1448037699,1124110785,1096175437,1124111813,-1034530995,1296236697,-985508273,1296236701,-1581033905,1330463488,10863958,1448037699,1124116935,1196838733,1124117957,-866758835,1296236721,-984852913,1296236725,-1051830705,1296236729,1095652943,1124122053,1314279245,1124123074,1314279245,12961090,1448037699,13222734,1448037699,13485390,1448037699,13748046,1448037699,-708491442,1330463488,-640922026,1330463488,-984854954,1296236765,-816949681,1296236769,-800172465,1296236773,-749840817,1296236777,-632400305,1296236781,-238070193,1330463488,16109654,1448037699,16368976,1448037699,16633680,1448037699,1124139475,-631877811,1296236805,1124143312,-1034727347,1296236819,349655888,1347240705,18400339,1481657667,499599427,1347240705,1195918168,18989624,1230327875,1124148676,19317847,718357571,-1052687359,1094975789,1140928723,1140928962,1140929220,20497221,1003899204,1020740609,1414415617,21025349,1297625670,1174488241,1221804609,1145128449,1174492100,-800832447,1111884122,22922316,1414742598,1174495440,1691568195,1279477249,23451717,1279479366,23713861]},{"sector":4,"length":512,"data":[1330463558,24035926,1330463558,1942307414,1296254465,2026198607,1296254465,-1035053489,1128661373,1314279245,25347394,1330463558,-2017112490,1296254465,-716286385,1128661388,-715763891,1128661393,27053391,1297040198,1174513097,1229803331,1174515408,-800239805,1128661433,-800043697,1128661437,29545295,1128612934,-959425453,1229211137,29870419,1229213254,30132563,-699841466,1145438678,-573548983,1229211137,32035414,1447642182,32493650,-917617338,1313210864,-188133819,1380337153,33080645,1163019846,33345605,1145129286,1174536644,-850443447,1229324806,-800239805,1229324811,282478916,1145652738,366106185,1279870466,1174543556,-866824887,1229324833,1414742862,1174545872,-733393335,1313210918,-733393335,1229324842,36688979,1414744390,1174550224,-1034595511,1229324859,-767404717,1279656512,1174555332,1320240204,1145849346,1389638220,1145849346,1455764044,1145849346,39504208,1279544390,39760455,1279544390,40022606,-633058234,1279656550,1775715140,1145849346,1825984069,1145849346,-682209723,1279656557,1447970116,1174565316,2093765965,1431127554,42192972,-800108986,1346765447,-834579391,1346765451,-1882372782,1380992514,-1800319675,1414546946,43568705,1145983558,-1663807927,1397900802,-1613607084,1397900802,-682471596,1380319904,1380930643,1174578372,-984202925,1313211045,-984202925,1397097128,-683321791,1397097129,-1002088895,1397097133,-984858301,1397097137,-850373563]},{"sector":5,"length":512,"data":[1397097142,45862473,1313428294,-1059893437,1364411906,46453842,-858500282,1414743554,1174591184,-683453357,1313211095,-683453357,1397097178,-699513516,1313211099,1313166419,1174593238,1313166419,48224086,1163154246,-473672114,1414743554,48551763,1414745670,49010515,-1034595514,1397097206,-36683179,1431520770,50909762,1112888134,51368018,-732736442,1430651667,483217219,1129661955,633949519,1129661955,-800502449,1430651694,-800239805,1430651703,1347243843,1174617296,-733396649,1480983359,54775105,-935110586,1480983370,1128354388,1174621908,-667792295,1497760594,1347957324,1208178353,56218700,-699841463,1296630620,57592917,57921097,2042842697,1397639427,1224965570,2128040782,1397639427,1224967108,59298894,-1319874999,1313407884,59756372,-1000976823,1313407891,-951038890,1380516759,60347461,1413829193,1241750724,1241752257,61392193,61784650,-1262140854,-1161606653,1480804867,1241758682,-631749819,-985005121,-951450683,1196032971,1241764293,1241765836,64865612,-473870774,1095649795,1241770437,66044494,-985510326,1313473525,1241775043,67224910,130502218,1196313092,1241779653,68406350,-984854966,1313473561,1241784271,69587022,735268426,-632403452,-817232847,-800455625,1347028029,1241793477,71946064,72340298,72735306,1624264010,1212238852,1275356102,73912897,1792230476,-750433276,1179386989,1275359699,74830663,2043892556,-1052423164,1162609788]},{"sector":6,"length":512,"data":[-2134550975,1145523204,1275364564,-1999354807,1145850884,1275366612,-1864936627,1095715844,-867417788,1330381972,76991299,1396985676,1275369922,-682408881,1330381978,-1631300796,1330596868,1275371984,-682602673,1330381986,-1497083825,1330596868,78234960,1347374924,78305093,1347374924,78562373,1347374924,1275376090,1515212623,1275376343,1515212623,1275377348,1313886031,1275378117,1313886031,79353669,1347374924,-1094433458,1330596868,-1042657712,1330596868,-681947568,1330382018,1515081807,1275381444,80399443,-825076660,-699446012,1330447603,-155036842,1448037636,83351379,1398165325,1292172228,-665627057,1330447618,165173846,-866824955,1162741004,1308954823,85184591,399789902,634539781,-950907131,1431242022,1325738964,-1034726315,1431242031,819417940,1414876933,87409747,1188056912,1347375109,1342523329,-1002352561,1330644300,88983120,1179668304,1342525892,1791513429,1398099973,90947912,1213420880,91276353,1213420880,1342534086,1179145045,1376089540,92130371,-2049817774,1296323077,92918355,1297106002,1376095683,-1017949116,1163003281,1376097232,-1782230971,1346720261,1376098266,-984723387,1163003289,-1680191920,-733654523,1163003296,94488148,1179927890,1376102340,95407183,-1210953902,-850177531,1095959995,96388680,-959692461,1279349509,1392888259,97636929,-540917165,1094931205,98746963,1396786003,1392894935,-1001176765,1163068903,99336532,1096041811,1392897989]},{"sector":7,"length":512,"data":[-205368251,1413829381,100123970,-1017887405,1163068923,100648276,-950778541,1163068931,130369364,1413829382,1392905164,-984853435,1163068943,331435604,1413829382,398803278,1413829382,102482510,1314145619,102745410,1314145619,1392911299,-984722363,1163068967,734482004,1413829382,801457998,1413829382,104057934,1314145619,104318284,1314145619,1392917455,-800172987,1163068991,1137921620,1413829382,105372238,-816560813,1163069003,105893972,1347700051,1392923589,-816819131,1163069015,106681172,-632011437,1196623455,107205700,1808549971,1279808262,1392931524,108712520,-1001240493,1230177921,109433924,-733721517,1297286793,109958995,-1866247085,-1001106682,1414727315,1392940745,-1034727596,1414727321,-1697164465,1330926342,111068243,-1563274157,-1034595578,1498613424,1414415699,112513605,1163090259,-1194047144,1397052422,1443283412,-976072123,1380275718,1460062679,-858502847,1229084422,-792439218,1297241862,114610771,-1002159784,1129842393,115656520,-733918120,1280837351,-356363199,-766552058,-750450952,-750582022,-749533444,-750516482,-750385408,-750319870,1296369412,118018893,-1000976563,1330448143,370594134,218962201,370588346,218962201,370541244,218962201,370589374,218962201,370589888,218962201,370543626,218962201,370543626,218962201,370543626,218962201,926354442,926365495,926365495,926365495,926365495,926365495,926365495,926365495,202127159,168434719]},{"sector":8,"length":512,"data":[1637550602,202135965,1936919564,1936946035,1936946035,1936946035,67400563,370541572,370546969,528029977,-1274280836,-1263225676,202159284,202116143,2139032588,202146434,218958860,202116108,-2054878196,-2054847099,-2004318843,-2004318072,67405960,522128552,205063172,1903103144,67374092,1903232004,101059596,101058054,1936918022,1768518515,757961619,1819046703,202020502,202115594,202114052,202116108,269485060,269488144,320016400,320017171,-1616964845,-1616928865,-1566400609,-1566399838,-1515871582,-1515870811,269526437,892679477,892679477,829763957,2004287605,2004318071,1431633920,7820629,1010586999,1010580540,1077951548,1077957202,3948608,1280654396,1380994133,134762504,1246365704,1246382666,1077955146,134234176,4849664,1308641866,1077956096,1376272448,1044250706,1044266558,1128480318,1128485458,4080451,5586494,1380994133,1381126224,1280049152,1280068684,1179012172,1178994770,4998726,860769356,1380987726,1376276560,202113106,202116108,202113036,202116108,202116108,202116108,67111948,203563524,202116108,-808858426,202167762,202116108,572662306,572662306,572662306,572662306,757935405,757935405,757935405,757935405,-1431655766,-1431655766,-1431655766,-1431655766,655147714,-993742676,-1330895092,521541154,-1960894681,572982415,378506018,623182870,623191333,892675365,707406378,202414387,202116108,202116108,1460407308,-619913512]},{"sector":9,"length":512,"data":[1769697,1769499,1769499,122421275,118097709,118097674,118097674,122423050,1442272,1441814,1441814,122421270,132450093,132450277,132450277,122423269,2098989,2097184,2097184,65568,153223594,153225506,153225506,16845090,158990767,158992762,158992762,33622394,23789570,23789931,23789931,50397547,83689489,83690749,83690749,83690749,29099261,29098428,29098428,29098428,122421692,122423116,122423116,122423116,120391500,120391469,120391469,120391469,391251757,271259442,872488997,806368513,390869024,390862067,352457971,387454216,96671519,88671663,98108740,88933822,97846592,97191353,91227600,91489643,16778599,16777472,154796296,157747514,114166119,114165454,114165454,114165254,117441272,157747559,157747559,157747559,6031719,5636512,123799884,131008319,114165218,114165454,114493134,24119002,154796407,151521594,104401167,132777536,114165745,114165454,114165454,114165454,114165454,114165454,114165454,114165454,18876110,128844064,99747758,50333165,298451712,129177099,85198771,85918996,17827123,18350352,786712,131727367,21498227,23593304,25690488,27787672,112329144,106169984,83428694,118686969,5637907,98371037,83428829,118686969,526099,144665,82313222,19398780,6750504,7407865,7080195,48236798]}]],[[{"sector":1,"length":512,"data":[1769776,1443594,2099173,158992674,1769835,1443594,2099173,158992674,130023787,124782533,147916661,131401948,130025440,124782533,147916661,131401948,398460896,393222085,416356213,399841500,154802144,117770554,116786939,29426931,83690733,5636540,98369622,122422749,686620672,639510813,692070089,10566,684392448,638724327,687023640,639893504,31343915,38994828,74515048,43320446,31326882,38994828,74515048,43320446,53674658,69533696,57803818,71762795,53675063,50857161,51381290,30409160,46989784,47448824,52691675,48431915,1645019882,1645568542,25163,792,49414144,51838976,797,819,1646658602,1647272505,52453954,1650025626,31326208,38994828,74515048,43320446,31326882,38994828,75367016,44172401,53674645,69533696,63308842,65470464,46007401,69534921,882050090,13483,46989312,47448824,52691675,48431915,31720170,40371090,75825960,44631159,49414811,51838976,32178973,32572146,46465821,69862601,53478442,1650484386,54001664,54919998,55903054,56951645,30474240,62260440,80675743,41759662,61276927,69076191,62731285,873399295,12919,20971832,650388968,544613930,1160066602,919488850,919484110,919484110,1499084494,1467635592,1764190081,1631545649,1620074783,1633968264,1620533559,1633509505]},{"sector":2,"length":512,"data":[1632461103,1622958421,1623417012,901996717,893990319,903427396,894252478,903165248,902510009,896546256,896808299,950351207,940325001,952449029,940718238,952055807,951138455,942815416,943208491,927741989,1368995629,953561155,927742166,1472870189,954282065,888355041,1099252101,810300929,905721335,921646831,809960168,808923186,921188072,1231112545,1077674736,1077690428,1077690428,1077690428,83705916,809697724,810299473,1368272967,114165549,33031065,76349912,884147395,42795703,51315205,40838151,1503470697,1503091107,1503877533,67305985,117835008,2312,0,0,0,0,0,218893066,983054,0,0,319951120,5396,0,0,421009174,488381210,555753246,623125282,0,0,0,0,0,0,0,-2088632320,0,-2080374784,0,-2038104064,690497318,757869354,825241390,892613426,959985462,1027357498,1094729534,1162101570,1229473606,19274,1330531660,1375752528,1448432723,1515804759,1549467648,1616862813,25185,1660944384,1734763876,1802135912,0,0,0,0,0,0,0,0,0,0,0,0,28012,0,0,1903193966,29184,0,115,0,116,0,117,0]},{"sector":3,"length":512,"data":[30582,31096,31232,0,2122153083,127,32768,0,129,0,52495138,52626208,23003550,53477726,33423775,45154950,65012488,71238704,73532514,10944664,22806681,27132316,7143774,11337935,7274661,10289249,10223712,13238475,11206831,25034849,58917285,66520023,84804697,105317689,119932641,121964344,124258137,129566649,152438776,14811363,14745825,14680288,106628444,109577841,112920225,16908554,1114128,16777480,65536,17039628,2162720,49218203,49152659,49087115,43057808,19989217,19923680,19530027,16843017,589832,16974091,1638424,17105165,2687016,44106400,8847494,17170702,3211312,117702912,319819018,505092374,656745249,808266537,976696370,1145192510,1296779590,1566135633,1734697824,1886219113,2088334963,-1970830465,-1819177075,-1633904234,-1415011168,-1263357778,-1111836490,-909720640,-707604532,0,1076101120,937459712,1128383353,0,-1610612736,16386,0,1074120704,0,-100663296,16392,0,1074568256,0,-1018167296,16399,0,1074983972,0,-1734967296,16406,536870912,1075429052,0,-294967296,16412,-117440512,1075877122,0,-1169967296,16419,-1525678080,1076291796,0,-1853561046,16426,552894464,1076737510,-1610612736]},{"sector":4,"length":512,"data":[-480270031,16432,-910228480,1077186075,728806814,-1647989336,-1781055383,-1929048509,1084141353,-3168555,-1032315063,-134463277,2056226778,1091098599,-979692381,-273437930,849232189,-1379886813,1098089743,-2132177696,-1816508471,-1494793816,-1178228525,1105044482,2145785770,-1240030933,-1080868334,-1567521381,1112001064,958879083,-529467507,1631994492,204814210,1118959918,-482555600,-1974298881,392577767,-1493969217,1125947793,-1644568946,-1434522629,-1849212079,-1599166962,1185145625,-855595380,-1757438808,202852854,1971749237,1296615798,-343576885,-2043900914,-1478209381,893073811,1408086712,-1840596852,-301081212,1575311167,996001085,1519558283,1106542703,-751951822,-257532444,1421877409,1631030437,-1680246836,-1151923558,1519084681,1562761355,1742469513,1452932677,-1506742403,-201823442,-928858329,1853939037,2110148462,-1821505677,-1751420461,1375898144,1965409376,2078350516,-2100735261,1508931704,291663573,2076880437,-1189843603,-401917825,1638694684,16802226,218891779,-505683954,98297051,604047105,536946177,604184835,-419306237,100795393,33620226,67371778,851979,917519,219024655,185469711,84938081,67175425,16843780,16843009,135270432,134744072,135270408,68161791,134744068,134744072,421396746,488380443,1465467418,1146050383,1180127575,1414480972,1279808322,1178947151,117835073,2047672072,-2096660473,219348999,217386229,219745525,218696954,229117220]},{"sector":5,"length":512,"data":[229117352,229117352,229707176,238095831,244911765,247074468,250089150,252514047,254480032,257429329,257888095,257888095,257888095,257888095,1646268255,1030058849,1061109567,1061109567,1835625504,1060992105,1061109567,541015871,1920234593,1061109565,1397555263,1397703725,1480928768,1127089221,1224887631,1919251566,543973742,1869771365,604638578,84281610,134480130,1279478849,1279413316,1212368961,1212303428,1480808513,1480742980,1346523219,1229211987,1396921157,1396986707,1397183302,1296913491,1380209219,1647202900,1647338034,1647600172,774267446,1701068342,-202182501,104008012,127141792,827733141,853488338,855061220,858665769,859190066,861090626,862335863,866923401,872559538,874918930,877016126,881013856,857748665,3224767,1480851507,1414745155,1396986691,1397117765,1397969735,773403848,774647333,777006663,1465079619,1346983764,1028670525,1953525093,1314999929,-134270959,-134236606,335504962,-1259012176,-197065053,99885751,-5962492,17020148,-2101939135,262388,-1242234971,-197063869,183812791,-5961212,-647441,-5824786,-3634448,-15168528,-1987120647,-92081921,-11814160,2055926004,1002172660,-2014251777,-1158613766,-252379157,-252413307,1224711098,-1136083828,-13815682,-2144339464,-8368641,1325383758,1374682912,-1874001952,946271231,-127601665,-1469778945,-395971585,-1469778945,1214641151,-1201081345,409531391,-932711425,1751708671]},{"sector":6,"length":512,"data":[-395971585,-1469778945,-127601665,946271231,-127601665,-1738148865,1751708671,-932711425,409531391,-1201081345,1483011071,2020078591,-664341505,-1738148865,140833791,677901311,677901311,2020078591,-2006518785,1214641151,305379071,296925377,-14347644,-117448653,-13617927,76018164,1606349567,-1602030849,804911359,806158288,-5239041,-1860764418,-2047756,-33558332,-7192850,-995261,-1978301,1419842464,1153471811,1174388950,1615183991,1252851649,-11881985,-2043837,-495958790,893711359,1156841408,-201338827,-3656380,-1065007885,-2059078657,1156841424,-201340795,-2587324,-667597581,-1508661761,-795065516,-3047357,-259242765,-244300557,-867830785,-1337592848,-1817706511,-1673276248,-645905448,-648002049,-800853761,-800849921,1157300214,-1342185104,1129623571,-700125035,2001076216,-111131144,-1298943489,-124435500,-993724,1173387077,-83889824,-2068412,-4183227,-4142267,-106841952,-1497848321,950599673,-1342211671,-413512,2041788594,-1576492545,-4215223,2040805539,-137346049,1883568895,145162211,-1459664473,-1278629496,-1196752961,-1375733333,-8802760,-1532927072,-347895123,-800849984,-800849944,-800849943,-800849942,-800849941,-800849940,-800849939,-374538258,-9590017,1839921656,-1550605569,-929741868,-3615164,1170765637,1140836704,1140838608,1140847568,-251660080,-667581,-864189,-208829,-117461589,-5395463,-5394182,-1380910600,-36682753,1883566079]},{"sector":7,"length":512,"data":[1139867620,-251658544,-274365,-339901,-1532599387,-3134651,615113639,725977778,-1308950568,-1342504983,-101122195,-83923537,-523352593,-1426118221,1129622291,-700129131,2001076200,-379566616,-1382830849,-392870956,-2042300,1172338501,1140842848,-251665200,-253744059,-2027451,-393460493,-378518285,-867830785,-1337592856,1173422057,1173415980,-251664112,-1499068,1140813872,1140843984,-800864020,-800849975,-800849932,-800849935,1078788089,-12532225,-2031050556,-1893601608,-292544018,552530208,1665662962,352314441,-1866402799,-1071517953,-285607681,1073680418,-13221659,-11514896,-234921920,-234913710,-117453369,-5226247,2062571301,388300604,-231184,2029045539,119930796,-1279504,2029045539,-101122132,620697415,1283059815,-254334977,671071356,477950007,-253286657,671075451,1820127367,-267966977,603974777,-1401360185,-266918657,637533304,1014689879,-266918657,620756088,-1669730121,-259577857,654273660,-864292633,-264820737,671030396,-1132662569,-260627457,654269560,2088497303,-252238337,620747898,-1669730121,-265870337,654249080,746319943,-263772417,654257275,2088497303,-257481217,620727418,1283059815,1217874431,-1108820772,-13809378,-268455887,1040164944,1195245463,1200156927,-1752633089,-1484263169,-15258369,-3129618,-12728593,-7485713,-3553041,-7747601,-7319057,-1070206731,922351871,-951648496,1190787327,2001141703,1190787327,2001141623,1190787327]},{"sector":8,"length":512,"data":[658964343,1190787327,658964263,1190787327,1357905703,-907018248,741539609,-2077569742,-366271189,775392044,-2100646087,-263824656,1525737306,962326680,-259367952,872360796,-101122240,-251686861,-1947168629,-1980694559,1636429840,-11483905,-16726796,-184614867,-184569661,-1056746572,-187517196,620987394,306772991,-285240502,-117481438,-1339887879,456445439,49482129,-260962448,-2047830910,-101122283,-11526418,271710712,-1122952705,1445064328,78979310,153225121,-266337629,-2064628606,-101122107,-16769298,-1070532104,-765996801,1507192536,-743976705,-1445597656,-1604324609,-262147073,1348465407,-168561153,-168561165,1022555634,-2474768,1883240952,-805348801,-298265929,-788547116,-293023225,-218166827,838803589,-137298080,-705791789,-532480007,-723004929,-371790232,-206244609,-1208696568,-2079853454,922690824,-101122208,-251678666,-251696257,-251712642,-251667587,-251716737,-251667587,-251692162,-251663487,-251704447,-251659392,-251683967,-251716737,-251667587,-251712642,-251696257,-251712642,-251671682,-251683967,-251659392,-251704447,-251663487,-251688067,-251679872,-251720832,-251671682,-251708547,-251700352,-251700352,-251679872,-251675777,-268469378,-788554299,-294071305,-251659819,-2081391485,1204944845,-688994093,-2047803575,1300689148,-305795073,701034495,-372838401,-3125761,1325338703,540409712,905574655,-923795600,-1242235015,-188674669,217322168,-14348924,-12558093]},{"sector":9,"length":512,"data":[-7315213,46367028,1160332329,1774841855,-1177948161,-9424641,-3124495,-16752654,76345844,759049727,-467012545,-1758732,1140797507,-1242235088,-197062429,267674296,-5959932,787883766,1056323318,1710646518,-13601294,-223579406,-218124937,2012413554,65535,0,4194304,0,0,0,0,0,0,0,0,0,0,0,0,16777216,10,1654547102,0,0,0,0,0,0,0,686686208,0,25088,0,0,0,0,0,0,0,0,0,0,0,92,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,852096,1253367947,1048584653,1946182092,-1208227837,1151486953,1196769861,1702240344,1869181810,774971502,224473651,1141509386,1196769861,794501208,1528847686,1769104475,1564108150,1952542811,1768316264,1634624876,1528849773,1818718817,1567912809,218762589,790634506]}],[{"sector":1,"length":512,"data":[538976326,538976288,1634624800,543517794,1701273968,1768711712,1852403824,537529703,1818846752,1835101797,1713381477,543517801,1679847284,1735746149,544370464,1835104357,224751209,1629495306,1768712050,538997875,1918988320,1952804193,544436837,1702259047,1869881454,1869770784,1835102823,168626701,544370502,1768693857,1864397939,1701060710,1734833506,543649385,1835888483,1935961697,1970413612,1162092654,1481069890,1684955424,1887007776,541007973,1948284001,1881171304,1886220146,168636020,1986939172,1684630625,1769435936,543712116,225976365,842015754,792015407,-67095751,-89929588,1644077921,-1553857885,12083566,1008848176,-1023315198,1013175970,-955550973,-1876445946,-569981296,71091001,113640819,2011894467,1996932870,-2037346263,52379076,117312882,171794897,-33263097,-1201549050,-617397248,225583565,-2138971520,91587066,1637877446,1140897792,-855637573,-2012974559,1415684374,1959017304,18987277,74769874,1637418750,113672171,1744986521,-1667370494,-255527336,117337972,-594845287,1727849603,1717069468,895928459,262144,-1654239130,1483119718,-1654238874,996598667,-28937023,1717672198,895926667,2097152,-1654239130,1483119718,-1654238874,1958820710,-1070373336,-2090425841,494666232,1086337894,258384399,253223610,1640957586,254067850,41289276,-1717434704,1637458017,1013029538,-616336635,1515895011,-571700400,1012400254,1343059200,1476427481,-2096087259]},{"sector":2,"length":512,"data":[125059064,1637484230,-2145391617,56727870,-388425611,-102830375,-522600231,-581903906,-1638399874,251528309,-1717542502,1637589601,-1570661728,1048600988,1929601433,1723776547,-1392489287,-1878538605,113703394,-969005321,-819520506,-952464193,-954195963,538968645,-1409252930,-76275652,-143390404,896872252,1950301356,1021256740,-1274055354,1007734031,-958367997,23187462,-895297045,1673116259,567085492,-850656840,1655945761,567085492,-850657096,-391360991,96057171,979418624,-1402872129,567096756,1166810505,80184066,-1265455726,-501101275,-850217750,1200301601,1975551486,-1022966259,113699602,-1946132015,-1969010488,-852183967,-1944155871,-1912173471,112729697,567146845,-1945088885,275914714,567103924,141941051,1636972169,1637095049,1674985088,-1207340541,801969664,343261218,-1896873800,-671808,-1184641346,-1477246972,82510452,1651574526,-557906146,-389510080,-1203252568,-1578630492,-1900006446,101328576,41223300,-928835408,-801210271,628359265,-1977159542,-33273322,83998922,-919400243,146014391,-58060595,-855244616,-1210961136,-855460863,-1106829808,-2067857398,-945445535,83360836,-1090630516,-1935343594,244121164,1891590508,-1044060063,610676152,1222151152,1633985352,78725184,-471209005,54395131,57803608,58786684,60556163,98502079,124847973,214109107,283775193,284102892,287183132,295833889,296489384,332272585,349639754,391059277,396826530,404428764]},{"sector":3,"length":512,"pattern":0,"data":[408754205,437721579,470424584,507517967,516300442,537796379,539828267,615195649,654386833,655042310,673458028,674572339,683157582,684796093,708323890,709962317,927608883,931673934,933771156,934098858,936523712,14458]},{"sector":4,"length":512,"data":[942878217,218762550,1163157258,842224728,1734701856,1953391981,1702065440,1881158195,543257185,1818391920,656434025,1162104643,151653671,1970500449,1661560173,1415527027,861165637,1935944754,1094999866,168640852,1920233061,976368505,1829308941,1628010095,875572344,157823024,1699166985,1346642036,1981827405,1769173605,1713401455,1952673397,225341289,1852377354,825428340,151587176,1818313531,1346642028,168642893,158494473,1936876918,745434985,151611489,1869894459,1830839666,1919904353,1919252000,1852795251,1661536781,1628008557,809053292,151587176,1735737915,1830844775,1919905385,1919252000,1852795251,1836412448,544367970,151653695,157642346,151610944,1867397897,1829308941,1628010095,809053292,990447881,1684107084,1919902496,1952671090,1981834341,1769173605,168652399,154812480,158163297,990447881,1768714323,1768169588,1937008999,2013858317,157771875,1630300257,151587180,1635210043,1768169584,1937008999,1862863373,1870072178,1881171058,1981837940,1769173605,841707119,158884140,1869894459,1830839666,1919905385,1919252000,1852795251,1829308941,1695118959,1865181555,1702061670,1852383348,1953722214,1346046322,1953393007,544175136,1769108595,168650606,1818321673,1919945068,158625385,1346046217,1953393010,1920234272,224882281,1869416714,2019625334,809710636,151611440,1919243323,1634625901,1713399156,1952673397,225341289,1852377354,825362804,151587176]},{"sector":5,"length":512,"data":[1952797243,544109173,1142976372,168645455,1919945229,980708969,1685023753,151609971,1195051273,1663071333,1634885992,1919251555,1661536781,1628008557,154152044,1312491785,543976565,151653695,1678337386,157642351,1497041161,168653669,1987013897,745301001,168651873,1987013897,745038089,157823536,1329269001,1970304117,1751326836,1667330657,544367988,1668183398,1852795252,1762200077,839480430,151611441,1631795977,1142975596,168645455,1886218761,1769107465,168653934,1701736292,1701972282,1594494324,1415071060,1696608819,225666158,1594494218,1415071060,1734701833,1953391981,1702065440,1881159217,543257185,1818391920,656434025,1162104643,151653671,1970500449,1661560173,1415527027,743725125,1597666148,1096040772,1852115469,981037684,1829308941,1628010095,1147087992,155276353,1867266825,1679844449,543257697,1835492723,225734245,1869416714,1935935862,158884140,1396377865,1142977637,151653715,158756717,1932294242,151587187,1634683963,1397956708,1829308941,1628010095,1936010360,990447881,1684107084,542328096,1347637288,151653673,157447539,1630304354,151587192,1952794427,1718182944,1701995878,543515502,1869770792,1835102823,2053731104,1852383333,1918988320,1634887521,695429232,1627982349,1644782692,673721464,1702521203,1931503215,724134772,791229745,991966769,543450177,1667331187,1769152619,1763730810,1634738286,1919377778,1936224353,1829308941,1628010095]},{"sector":6,"length":512,"data":[1093938280,151587176,1634030139,1668246636,543519841,1869440365,1713404274,1952673397,225341289,1852377354,825362804,151587176,1818313531,1329864812,151653715,158756717,824997985,1748449334,1144719625,541674832,1953721961,1634495585,1852795252,1701339936,168651619,1953392905,1749430793,1946749453,158626661,1630304353,151587192,1297105979,1919950921,1852142437,222240884,1852442890,1869482362,1953722216,990447881,168652622,1937076233,1936001384,990447881,1702256979,1297105952,1852121161,544830068,1919181921,544437093,1931505263,1801675124,1919903264,1818321696,151653740,1752397168,225010697,1702103306,1929999475,1769155689,990447881,1986622032,543519841,1635017060,1701146144,543450468,151653695,1074362986,151587174,225398331,1869416714,2019690870,157905708,1278937353,543449455,1998608450,543716457,1986622064,543519841,1635017060,2053731104,151653733,158756717,875325537,151611448,1816214281,1633906540,1830839668,1919905125,1969627257,1769235310,168652399,1953392905,1748054537,990447881,1819042115,1397703712,1778977293,1869482339,225273197,1869416714,1936001398,158884140,1278937353,543449455,1998607173,543716457,1986622064,543519841,1635017060,1734701856,1953391981,1077938701,1869416762,1885473142,225473324,1869416714,2019625334,151597356,1951611657,544502369,842211425,1953063469,1768710944,225734245,1633880330,1678339180,1685221239,1920233504]},{"sector":7,"length":512,"data":[1885494048,990447965,1953066569,543973737,1953068915,1948280931,1919950959,1667593327,761554292,1701080941,1778977293,1852377443,1919251561,218762610,824195850,1768041782,1919950964,1667593327,761554292,1701080941,1919098924,1702125925,758264608,544500066,1701080931,1818587936,1869898597,1851859058,1969889380,1948282989,842211439,1953063469,1685021472,218762597,1869416714,2019756406,151597356,1816214281,1633906540,824206708,1936024608,1885958755,225603444,1870137610,2019625330,158884140,1094387977,1668246636,543519841,542393420,1668506980,1953524082,544436847,1668183398,1852795252,1762200077,856257646,151611441,1631795977,1142975596,222907728,1667893514,1769497865,151653748,158756717,1630304354,151587192,1634683963,1480728676,1953068832,1702043752,1952671084,168653423,1987013897,746087177,1480938591,154284884,1867266825,857760865,1768041778,1868767348,1931502948,1701668709,168653934,1987013897,746087433,168654947,1818784521,746087433,151587124,1952794427,1852402720,544366949,1919181921,544437093,1937008994,825045024,151653685,158492787,824997987,151587122,1952794427,1852402720,544366949,1919181921,544437093,1937008994,758526240,168638769,1987013897,746086665,925904944,990447976,544499027,1835492723,544501349,1702060386,1684300064,1936942450,1853187616,1869182051,151653742,158625385,157823283,1127942409,543976545,1229803588,1829308941]},{"sector":8,"length":512,"data":[1678341743,1177562232,1749435974,1278937353,543449455,541799478,1835492723,544501349,1768778092,151653748,158494584,1663858787,151653752,158756717,808220769,1748512816,1396377865,1931506789,1701668709,1814066286,1953066345,1853187616,1869182051,151653742,158625385,157823283,1127942409,543976545,1229803588,1829308941,1628010095,1935879288,990447881,544499015,168645443,1918987273,746087177,151615585,1699166985,1868767348,1931502948,1667591269,544370548,1701012321,1914729331,1952999273,151653747,158756717,1663855715,151587176,1634683963,1279467620,1953068832,1667309672,1936942435,1734963744,225670248,1869416714,1751320950,1747989548,990447881,1684107084,1954047264,1701080677,1667309668,1936942435,1734963744,544437352,1717920808,1953264993,1953063456,1952805664,151653673,158756717,808220769,1748578352,1396377865,1679848549,1919120229,1869901929,1667309682,1936942435,1734963744,544437352,1668183398,1852795252,1762200077,856257646,151611441,1631795977,1142975596,222907728,1970276618,1695115379,168654946,1937076233,1718552936,1952805734,1953391904,842234226,1913195021,157578341,990447881,1886221642,544175136,1647129139,1663071337,224748655,1846152458,1936681071,1830828660,1678341743,1718561912,1952805734,1920099616,828863341,1778977293,1678340205,1836086121,168650611,1701670766,1829321325,1678341743,1718561912,1952805734,1920099616,845640557,1778977293]},{"sector":9,"length":512,"data":[1678340205,1836086121,168650611,1953066601,980578917,158756717,1865185380,1702061670,1919230068,1735617906,1678380339,1836086121,1832544115,1628010095,959458408,151587176,1936278587,2036427888,1920234272,543649385,1668183398,1852795252,1762200077,839480430,151611441,1631795977,1142975596,168645455,1953069157,1869416762,2019625334,809710636,151611441,1919243323,1634625901,1713399156,1952673397,225341289,1852377354,825362804,151587176,1952797243,544109173,1142976372,168645455,1480938591,1852115284,168653668,1147079181,155276353,1835492723,544501349,828732277,1634738230,1881170290,1768710773,1143414883,658592833,1919224333,1735617906,1650729009,1867392777,1297105952,1869094985,1763734643,1635021678,1684368492,858860583,741355820,220668967,1920099594,845640557,157443104,1953451559,1869505824,543713141,1869440365,1713404274,1763734127,1769236846,2053729377,1869182049,824977262,808528947,656680748,1919224333,1735617906,1650729011,1346643721,1763723597,1769236846,2053729377,1869182049,1634082926,1684368489,858860583,741355820,220668967,1718511882,1920234351,157443104,2003783207,544106784,1647129139,1881175145,1702129522,1684370531,1685024045,1142959205,541674832,1936876918,544108393,1980370215,1769173605,1679847023,807864674,657469486,741552428,808202289,1147079181,155276353,1935961701,168626701,1128354899,1702037835,1852140903,1634738292,1931501938]}]],[[{"sector":1,"length":512,"pattern":0,"data":[1801675124,1414735648,659243841,1953696269,1650723179,842019081,1969496116,692004976,1414728205,155927361,1935961701,1695091213,1695114350,2037544046,2573]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[23026253,131074,4259872,1507327,-1594489856,262144,30,65537,4259844,4]},{"sector":4,"length":512,"pattern":0,"data":[67156070,140980685,1006667814,-1342016112,-2046110630,157706208,-1107260922,93,1768,12084736,-1407070900,141819964,45404298,-202694195,195,0,-1912599112,-1932292904,-2082985024,1253327043,-2017975859,-2060464874,106395072,1962313047,-1260483830,1914817864,-1950314930,112876,1912626943,112967,835567667,-661961358,-1962934087,81969617,-1207113279,835518471,872415162,571593,-930336307,-1966603761,-1203718707,835518473,1751536486,0,12241766,-1173820672,65732633,-1275051846,-1205744375,567102465,0,0,1142976334,541674832,1953722216,1936615712,1819042164,168649829,1953451556,1869505824,543713141,1869440365,1713404274,1763734127,1769236846,2053729377,1869182049,604638574,1229803588,1768843552,1818323316,1952545385,544108393,1818845542,168649829,2003783204,544106784,1647129139,1881175145,1702129522,1684370531,1685024045,1142959205,541674832,1936876918,544108393,808463920,2573]},{"sector":5,"length":512,"data":[758843917,1679830317,1852401253,1881174885,1701015410,1701999972,990514547,539831597,1702326096,828788594,990514480,539831597,1634692166,1114592372,168641603,757935419,1869366816,1867805793,225604691,990514442,1701336096,1629513075,1646290290,544437353,1948282473,1176528232,1953701968,1937077345,1919907616,168636004,1346767373,1397050463,1095259219,1902446926,825237621,1175063912,1363500880,1414283605,1902446927,808722549,218762600,1480674570,541939022,544567653,168638001,1329793549,542397262,1835492723,225734245,1946815754,1678339685,808525937,168636462,829318516,1902381366,808333600,221655397,1946815754,828337765,544498697,1697656369,990447921,808333361,1678313997,774971508,154297648,808532745,221261360,1952712970,808333600,151597925,808202555,808333360,1678313997,774971508,154428720,808532745,808464428,168636462,544498697,1697656369,990447925,741355569,774910000,151653680,824210532,912601134,825952521,808464428,808464428,168636462,544498697,1697656369,990447927,808202289,808202288,808333360,1678313997,774971508,154690864,808532745,808463408,808463408,221261360,1952712970,808333600,151599461,808202555,808202288,808202288,808333360,1678313997,774971508,808543536,825952521,808463408,808463408,808463408,221261360,1952712970,808333600,154218853,808532745,808463408,808463408,808463408,221261360,1952712970]},{"sector":6,"length":512,"data":[808333600,154284389,741423881,741355568,741355568,741355568,774910000,151653680,824210532,828715054,990447923,808202289,808202288,808202288,808202288,808333360,1678313997,774971508,875652400,825952521,808202288,808202288,808202288,808202288,808333360,1678313997,774971508,892429616,825952521,808464428,808464428,808464428,808464428,808464428,168636462,1702103565,909205358,544498697,1697656369,168638001,544498697,1697656369,168636979,544498697,1697656369,168638516,544498697,1697656369,168637494,544498697,1697656369,168636472,544498697,1697656369,168638009,544498697,1697656369,221393201,1952712970,808333600,942813541,1678313997,774971508,875652400,151653684,824210532,828715054,168636470,544498697,1697656369,221656881,1952712970,808333600,842608997,1678313997,774971508,808609072,151653688,824210532,845492270,168637490,544498697,1697656369,221262898,1946815754,845114981,1679832629,774971508,892495152,218762550,1411398410,1914725736,1767992677,1735289198,1886938400,1852141167,1629516660,1864394098,544828526,1701012846,1918989171,1868963961,808525938,1954112045,1868832869,1701601909,168636019,1678313997,774971508,825582896,151653682,824210532,929378350,168638518,544498697,1697656369,875704369,1678313997,774971508,842097968,168636472,544498697,1697656369,909325617,1678313997,774971508,925984048,168636985]},{"sector":7,"length":512,"data":[544498697,1697656369,942944306,1678313997,774971508,858940720,168637488,544498697,1697656369,808858930,1678313997,774971508,942826800,168638001,544498697,1697656369,842477619,1678313997,774971508,859006256,168638514,544498697,1697656369,876098867,1678313997,774971508,942892336,168636468,544498697,1697656369,909717556,1678313997,774971508,859071792,168636981,544498697,1697656369,942683700,1678313997,774971508,942957872,168637494,1329793549,542397262,1935961701,168626701,1480938591,1702043732,1852140903,218762612,841877770,151598648,1701985033,1702260589,1096238624,544429129,1868981602,1176528242,1852383312,1970435187,1869182051,168653678,758843917,1663053101,1701604449,2036473956,1869366816,1867805793,225604691,757938954,1852383277,2019631162,2021161021,758843917,1830825261,1718183023,980641129,746086944,746087456,225207072,1342835978,1919252335,808543823,1869770784,1937055843,1931506533,218762601,1970276618,1629513843,151653752,544238947,539785313,151653680,543516522,168642112,1734700553,225992992,977289226,1711868429,221340780,1869416714,1818370166,1818304556,1627982349,1646290030,807414892,151611494,1953063483,758128755,151653683,1075864938,151653702,544632685,1865181555,1702061670,1702109300,221339502,1633880330,1830841452,808545397,1077938701,151653690,544632685,539782242,168651873,1987013897,745300768,168637472]},{"sector":8,"length":512,"data":[1919447817,745300512,225207072,1851853066,1818370148,1714429996,990447976,1937008994,925709344,1778977293,1178607717,1829308941,1931507311,1718561897,1952805734,1852142624,221655391,1633880330,1830841452,808545397,1077938701,151653690,544632685,539782242,168650849,1684955401,745300512,1751527712,1648036105,544437353,842083640,1778977293,1178607717,1829308941,1931507311,1718561897,1952805734,1852142624,909455967,1661536781,543976545,829191533,1074400560,168639040,1886351369,225992992,1835206922,2019631216,221257772,1735002378,1178607717,1711868429,1886808420,678720288,539765041,168653939,1952805385,1077938701,151653690,1819635046,1953702000,740897064,225735456,1701972234,218762612,1819634954,221917233,1701054730,1818370147,1829308941,1646294639,221260904,1970276618,1629513843,151653752,544632685,824997985,151653680,543978861,168654946,1751349257,2019696743,225993004,1869613322,2019631216,1711868429,1948279916,1702132066,1920233504,2019711776,1931488032,168648041,1970103817,1931505772,691087476,1953701932,1913195021,225342565,1342835978,1919252335,808543823,1684956448,218762608,1126185738,1702260335,1629516914,1869375008,1852404833,1869619303,544501353,1768383858,1919251571,544175136,1229148993,538979913,544370502,1702129257,1818324594,1702065440,990514478,1701336096,1936028192,544500853,1635216481,1746957177,1696625505,1952670072,824211820]},{"sector":9,"length":512,"data":[1768169528,1937008999,1769414700,2048944244,544174693,1684300144,543649385,1948282479,168650088,1701584955,1763734630,1701978214,1919513969,221144165,168639242,1850023995,981037684,676614944,1025517872,1847615776,1700949365,1869881458,1852793632,1953654134,540024876,1394621756,691021908,824196128,775500101,154864141,541672480,1851859005,758657312,1918986339,1702126433,1969365106,1919247974,990514478,1685024032,1701406313,1230184563,742999084,1093425219,218762584,1869366794,1867805793,541344578,1668248176,168626701,1937076233,1885479016,1829308941,1646294639,1886596208,1929972237,1931502197,842083440,168626701,1411398409,1713399144,1886679906,1936615712,1668641396,1852795252,1852793632,1953654134,1752440947,1869881445,1718558832,1701344288,1635021600,1948281699,224469103,540739850,1801675120,1109419109,1713390659,544043631,1948282473,1646292581,1936028793,1769414700,1948280948,1679847287,1953064809,1701847155,2036473970,539911540,1701336096,1886352416,990448141,1954112032,1634213989,1752440947,1769152613,539782759,1667852407,1702305896,1852270880,778400367,168626701,1935828489,1948282996,1702132066,1920233504,1885494048,1563570477,168626701,1310735113,1998616431,1701716069,1948279909,1853169775,1801675120,1701344288,1145258528,544175136,1229148993,168635977,1812531725,1931501925,1528835177,875393122,151653725,544632685,539785315,1074400569,168639040]}],[{"sector":1,"length":512,"data":[1987013897,745300256,1769167648,990447965,2021160992,2021138552,1092647032,541147457,1111638594,1678313997,1931502437,1762266473,221257830,1869416714,1751195766,154148908,807418633,540028976,808464432,1094795552,1111629889,168641090,1919906313,746086688,151598112,1111629883,807420482,540028976,808464432,1094795552,151653697,544370546,539781217,990447924,808464416,1111629872,807420482,540028976,1094795585,1818561037,168650099,543319049,1748255792,1747988780,540739849,544039265,540685873,808464432,1094795552,808460353,1109405744,222446146,1668811018,1629513576,1751198828,540739849,808464432,1111638560,808460354,1092628528,222380353,1684956426,168650345,1684300041,746086688,858796832,168650800,1869902601,168654707,1869573129,1111498864,1829308941,1931507311,1885482096,1879640589,1646293103,151653744,225731954,1175063818,1952542572,1128427348,1852121156,168652900,772344333,909652024,168626701,1866670139,1919252078,543236212,1651863396,1881171308,1768121714,1852795251,1836412448,544367970,1629515636,1920234272,778530409,221973005,1159740170,2037544046,1885741114,1025535593,758133024,1702132066,1970234400,543517794,1663070068,1702260335,168653938,1881147707,1648654963,540876908,1918986339,1702126433,1969365106,1919247974,221973005,1159740170,980707704,1936728096,1818379386,1663057184,1702260335,1684370546,1818326560,168650101,990514491]},{"sector":2,"length":512,"data":[2054385696,543973956,1970235507,1646290028,1952522341,1634036768,824210547,2036473913,544433524,1735290732,218762542,1869366794,1867805793,544371795,1129271888,1685353248,1819042147,1163089184,1769152595,543777824,1768973936,1344289390,1411404372,1163155778,1936728108,1818379386,1414537274,1497505874,168641876,1330383373,541868355,1886930281,1331109946,168641618,1094930252,2037194828,1952543859,1331109946,168641618,1094930252,1885741132,540700265,1415135828,1275727173,1279345487,1417311008,1534094693,979186226,1415135776,218762565,841877770,151598648,1701985033,1702260589,1096238624,544429129,1868981602,1176528242,1852383312,1970435187,1869182051,168653678,758843917,1394617645,1768121712,1663069281,543519585,1869768058,1935763488,1701143072,1768300654,1919251564,1629512805,1634038380,673216868,1920235622,544498529,1818845542,1868963955,1702502514,774467442,168626701,1987013897,745108256,1718639392,1567517040,1812531725,1679843685,1528835177,1852403814,151653725,544632685,539785315,151653685,544236914,1937141613,218762615,1869416714,1768169590,1885020204,1648654963,168648044,758843917,1126182189,1801676136,1919903264,1847615776,1952540517,543520361,1651340654,221147749,151653642,1953719668,1954112032,1953505381,1717248114,728656240,942431545,168650800,544893449,168642112,1684955401,1954112032,1953505381,1717248114,728656240,925654329,990472294]},{"sector":3,"length":512,"data":[1634231072,543516526,1881173876,1953067887,224753257,1869416714,1818304630,657270572,990447881,1869902624,1629513074,1852402976,1931506549,225339241,1953696010,224555887,977289226,168626701,757935419,1634692128,1970217060,1635131506,543520108,1869901423,1701344288,1635021600,221145955,151653642,543452262,1954112116,1953505381,1717248114,1567517040,1711868429,1931502700,218762612,1126185738,1970302319,1948280180,1663067496,1702063980,1881175155,1919252335,543584032,1646276657,2003790949,1701344288,1836412448,779248994,1700208672,1851876128,1730180135,1629516901,990514542,1635280160,1981838435,1702194273,1667588640,1702065505,543584032,1853190002,1735289188,1461723182,1868767333,543452277,544499047,1936682083,2036473957,1684300064,543649385,168652393,1869357115,674247015,1953390957,1634956137,1646275625,1763734645,1953702004,543976553,1819635575,1948741220,543515168,1667332197,538979956,1668180307,1702305893,543976487,1702257000,225408032,1663056650,1801676136,1701344288,1936028192,544500853,2004446817,539785569,1931965545,1818850080,1948285292,1635197039,543519859,1818458467,1998615397,2037543535,543649385,1970233953,990514548,1701344288,1851878688,1936943476,168636001,990514491,1701336096,1886938400,1852141167,1936269428,1935761952,1818321769,1814067564,674391919,1852403814,538979881,1936681044,1718558821,1970239776,1869117216,1835364896,1700949349]},{"sector":4,"length":512,"data":[990514546,1735156000,1634886245,1634038304,1702521196,1634235424,1869357172,1713910375,695101808,1814067232,808544111,539570728,1869357117,674247015,1852403814,1998597161,1751345512,225667360,1998600970,544498024,1998611831,779382369,168626701,1954047497,1952670066,990447904,1028936480,1634541630,1936290926,539779443,1869641829,1953391982,1885741100,168652393,1953719817,1953702000,990447904,1869767712,1752440944,1634541669,1936290926,168649075,1684825609,154298220,540739849,1752397168,1735355424,841494577,151653673,1819635046,1953702000,740897064,544502560,1394621193,540876884,828862316,1885743152,740912745,1768973856,151653742,1953720678,1767579760,1567651909,540739849,1025528915,1768973856,218762606,757938954,541138989,1647128625,543519865,1651863396,1663067500,1663069793,2037543521,1835819296,544502639,1679833393,1953064809,1646275699,1713402997,1886679906,1819176736,1953702009,1936028271,1701344288,758843917,1730161965,1634886005,1701147758,942743652,1226842158,1870209126,1701980021,1768907808,824207214,2036477232,1679844724,1818391919,539784037,1851877475,1948280167,656434536,539440689,656437108,774322225,168626701,1886216969,1164532512,744321144,168638513,1668180489,1953459744,1869374818,221786487,151653642,543452262,151614579,1394621193,540876884,1852403814,1885741100,168652393,1852990985,1953392996,990447904,542397216,1852383293]},{"sector":5,"length":512,"data":[1885743220,740912745,1768973856,151653742,1836016486,1953702000,153694504,1394621193,540876884,1852403814,1953701932,1937077345,1952805664,1711868429,1937011566,1834688631,1635021689,168648052,1936028681,2036473972,1881171316,1528853108,1953724781,824931425,1176513629,1363500880,1414283605,151653711,1847622250,1902474351,225206645,990514442,539831597,1746953559,543520353,1763733089,1734702190,539062885,544163616,1986948963,544502373,1763734633,544175214,1702109281,1646293101,1701209717,168636018,1879640589,543716213,168651108,1634036745,745104416,2054380320,1886217556,151653725,1819042147,1869366816,1867805793,222577474,1869613322,1768169584,168626701,1987013897,746086688,1480674592,726488398,151653681,544632685,539785315,2017814875,168648048,1651864329,746086688,225993504,1852377354,2019762275,1812531725,1931501925,1528835177,1700035187,224227437,1684080906,1769152612,2019631148,168626701,757935419,1701336096,1717989152,762929709,543518319,1701081711,1718558834,1734438176,1970563438,1881171300,1818390386,1646292325,2003790949,1851876128,1953064992,544437536,1701995880,990514478,539831597,1780507991,544502645,1835627124,1717989152,1701344288,1936683040,1818388851,1701584997,1852400737,1702502503,221146994,151653642,544238947,1702132066,1920233504,1769167648,807873629,151653671,544894570,168642112,1668180233,225014560,1701054730,2019762275]},{"sector":6,"length":512,"data":[1077938701,218762554,757938954,1866670125,1948285296,1914725736,544502629,1948280431,1663067496,1702260335,1684370546,1145258528,1818326560,1948280181,1970217071,1969365106,1919247974,218762542,1701972234,1869422704,224555894,1835665674,1952850032,1769489779,218762612,1953459722,1635086693,168639084,1651797870,2003790949,221919281,990514442,539831597,1702256968,1935828512,1914728564,1684960623,544175136,1881159473,1701011820,168636019,1829308941,1629517423,1293954168,1431197761,151653709,543323507,539785313,2017814875,151608688,1684086843,1953723754,1886938400,1852141167,1869881460,221720864,1633880330,1344302188,1919252335,808543823,168626701,1766137915,1919248500,543520544,1702257000,1635280160,2037150819,540487968,1768384868,539784052,1998615151,1634213989,1696621942,1952670072,824211820,1768169526,1937008999,1461723182,1633886309,990514542,1952801824,544498533,1952540788,1852793632,1769236836,1629515375,1629512814,1937074788,1869488244,168636023,1711868429,544042851,1919907697,1953505380,1952129138,909209189,537529693,991961120,2016442400,813201528,1701650480,544435809,544239476,1931503215,1801675124,1948270112,909209189,538970637,540745760,2021142648,825260152,1634037024,1948283758,1864396911,1953701990,543908705,1702109244,221655406,538976266,2015378208,2021161009,540029048,1851876717,1869881459,1718558832,1635021600,1025534819,1852142624]},{"sector":7,"length":512,"data":[168638001,1936614921,544699252,1937337691,1567908212,1946749453,544502629,1702132066,1920233504,2037209888,1952543859,744304939,1599096352,1397966156,1312901204,1778977293,1178607738,1711868429,543978861,1919907697,1953505380,1952129138,224226917,1701054730,1767579747,1567651909,1077938701,218762554,757938954,1866932269,1852793632,1953654134,544175136,776225602,168626701,1937076233,1768169576,1812531725,538992997,539781476,1417311067,1567649125,1661536781,543976545,1634692166,1114592372,168641603,1886351369,225010720,151653642,942684206,218762550,1701579018,1769152609,1935351852,1835357306,1563503472,1881160457,1953393007,544175136,1986948963,1702130277,1969365092,1919247974,168626701,757935419,543574304,543516788,1869641829,1953391982,544434464,2004116834,544105829,540356909,543452769,539768369,1931502967,1819635560,2019893348,1936028272,1752440947,1629516649,543236211,1651340654,168653413,757935419,1953068832,1953853288,1768125216,1769238117,543385958,1635020654,1852795252,218762542,1869416714,2019762294,1767579692,1567651909,1879640589,543716213,168654947,1684300041,746087200,1314406733,825052501,1661536781,1663070317,1095576696,1297436248,825045546,1879640589,1663070319,151653752,1713398122,540439412,1765476617,1668489318,1953391977,1667851881,1953459744,1869182049,218762606,1226849034,1752440934,2019893349,1701736304,1763734638,1701585011]},{"sector":8,"length":512,"data":[1948283763,544104808,1869768058,1702305836,1936615712,544502373,657338407,1752440876,757100133,225993573,1814051594,1768186213,2048943982,1936683621,1752440876,824208997,1768169526,1937008999,543584032,1953390957,1634956137,1226842158,1752440934,2019893349,1701736304,1763734638,990514547,1936683040,1986622569,1998597221,1868767333,1696627056,824932451,1734960160,745763945,1701344288,543236206,1768121700,543973741,1852403568,1831346292,1700952417,1948265513,225338728,1948269322,1914725736,1767992677,1735289198,758526240,544760677,1768384868,221148020,151653642,543387241,168654947,1886216969,746087200,168636448,543648265,168642112,1987013897,746086688,657468967,1929972237,2004053876,1846086157,1663068005,151653752,544632685,539782241,220672039,1701972234,1953702000,224555887,1869416714,2019762294,1095573548,1297436248,1778977293,1713401965,221475700,977289226,1913195021,1830842469,1651734127,1829308941,1629517423,774319212,151653671,1936684147,151653730,544632685,539785315,1314406733,168643925,1651864329,746087200,1164532512,224227448,1937008138,168639027,1885696521,1987013920,168649331,758843917,1411394861,544041330,543581807,1767993972,1735289196,1919253024,221148015,1074400522,168639040,1886216969,1954112032,1953505381,1683693682,1563503977,657467180,1778977293,1075870318,151653702,543384932,168651108,1886218761,222445600,977289226]},{"sector":9,"length":512,"data":[168626701,757935419,543574304,1663067511,1918985580,1864393829,1629516917,1948281964,1679844712,1835623269,1679846497,1953064809,1797270643,543976553,543516788,1768121700,543973741,1852403568,1948265588,221146991,151653642,544238947,1702132066,1920233504,1768184608,744304941,657336096,1778977293,1075870318,151653702,543384932,168651108,221921344,1835665674,1952850032,1769489779,218762612,1937008138,168639030,1867391035,1868767351,1919252078,1752440948,1948283753,543236207,1851880563,1685217636,1937055788,1701601889,1919903264,779379053,1716068384,1701146144,744777060,1830838560,1937075817,540740109,1852270963,544434464,1701997665,544826465,1936028272,544501349,1948282473,1864394088,1869050997,543649385,1717990754,539783781,543452769,1629514084,1634038380,1881176420,1953393007,990514547,1935765536,1953046644,218762542,1869416714,157447030,540739849,2037411683,1701344288,1919510048,1679848563,1953064809,1829308941,1629517423,774319212,151653671,1936684147,151587170,1819287611,1763733615,543236206,1768121700,543973741,1852403568,151653748,1937141613,151587191,1868767291,1713404272,544372079,1701998445,1734960160,225670249,1869416714,225932150,1869416714,158823286,540739849,2037411683,1870099488,1919905056,1768169573,1937008999,168626701,807429737,168626701,1750343739,1919950949,1718906473,543630624,1667592307,1701406313,1920213092,544435561]}]],[[{"sector":1,"length":512,"data":[543581807,1767993972,1735289196,1919253024,1746957167,778400357,541663264,1819502948,543517545,1936287860,990514476,544174880,1702242121,1936286752,1701601889,1953046628,1126178862,1701670255,1864397934,1948284021,1763730792,540024934,543452769,1768189541,1718165606,1970239776,1851881248,1752440948,221148009,1074400522,168639040,1886216969,1954112032,1953505381,1683693682,1563503977,657467180,1778977293,1178607738,1678313997,1679844197,151653737,544238954,168641088,221921344,1684956426,168650345,758843917,1394617645,1702260584,544106784,543516788,1869641829,1953391982,1226842158,1870209126,1970479221,1919905904,808525940,1954112045,1701978213,745761889,1835364896,1700949349,1869881458,758843917,1629498669,2003790956,1679832096,1953064809,1868963955,1752440946,2019893349,1701736304,221148270,151653642,544632685,657225825,220685611,1869416714,2019827830,1767579692,1567651909,1627982349,1679844462,1679830136,151653752,544435818,168642112,1734700553,225993760,1869416714,1751195766,657270572,1077938701,151653690,1936684147,218762615,1668811018,1629513576,2019830904,1829308941,1931507311,824192105,151653680,544632685,875329635,1077938701,151653690,544370552,539785316,168654948,1986618377,225014560,1970276618,1679845491,151653752,1886351212,222445600,1869416714,1818435702,168637484,221921344,1869613322,2019631216,1627982349,1629512804,807873644]},{"sector":2,"length":512,"pattern":0,"data":[151653671,1936684147,151653730,1886351212,222445600,990514442,1684300041,745104416,151598112,1869619259,544501353,1948282740,1768780389,1869898094,218762610,1126185738,1851876716,544240928,543452769,1746956135,778399087,168626701,1165194342,980707704,1718159885,168636448,1987013897,746086688,168651108,1651864329,746086688,1148875611,224226402,1869416714,2019762294,221327916,1970473226,2019762274,225993004,1869416714,1818304630,656418604,1913195021,1931505765,1651732340,1852115469,224815460,1701972234,218762612,1869366794,1867805793,544371795,1346653765,168626701,1480938591,1852121172,168653668]},{"sector":3,"length":512,"data":[1953720648,226062959,537529610,807411744,1697986862,825318176,1851869728,2037539189,808464928,538991923,1702390086,543236196,543651170,1948282473,1629513064,1835365235,1919249506,537529646,807411744,1714764078,808540960,1885688608,1651336564,840987237,1563635760,1766203424,543450488,1701670771,1853453088,544760180,1868787305,1952542829,1818845801,1701409897,168636019,538976288,943271472,926047008,1952665376,1919246959,808464928,538991923,1701078081,1296375908,1868767315,1851878765,1629516644,1663067246,1920561263,1952999273,1852793632,1769236836,779316847,168626701,538976288,757935405,1663053101,1735287144,1646293861,2003790949,1852793888,2036473957,1885432352,1752458600,168626701,538976288,960048688,926047008,1885688608,1651336564,840987237,1563832368,538970637,538976288,1646275872,1768318837,1226848888,1635196998,1869488243,1768169588,1634496627,543450489,1920102243,1819566949,168636025,538976288,757080096,542328352,543452769,1914721095,1936287589,1936876916,1936286752,2036427888,1763730533,1346576486,1936269397,858798112,774583864,538970637,538976288,1377840416,1768169560,1634496627,1948283769,1931502952,1684955508,543453793,1647129139,1914729577,1936287589,1936876916,537529646,538976288,539828256,1701978194,1953720679,1528853093,1970037110,1965055333,1919247470,1851880563,1948283748,1931502952,1684955508,543453793,1647129139,1914729577]},{"sector":4,"length":512,"data":[1936287589,1936876916,537529646,807411744,1631140142,942824224,1885688608,1651336564,840987237,1563832368,538970637,538976288,1646275872,1768318837,1243626104,1515733829,1684105248,1869772576,1881171822,1768318322,908599416,539781174,1970235507,1646290028,926294117,221129064,538976266,538976288,541138989,543452769,1853169749,1936876900,1684955508,1701344288,758264608,544500066,1868787823,544433508,1347374924,1316772392,2084928602,1143555406,537529646,807411744,1647917358,959601440,1885688608,1651336564,840987237,1563832368,538970637,538976288,1277177120,1684955424,1847613216,1998616431,543912559,1752459639,1413563936,1679831603,1702259058,168636019,538976288,960048688,844832867,1699946553,1835365488,544367970,909127730,537529693,538976288,539828256,1663064146,1735287144,539911269,544698190,1948284009,1818716015,824210277,842215222,1953063456,1734701600,1702130537,1969496178,221147245,538976266,538976288,1314005037,1936286752,2036427888,1818632307,1769234799,1881171822,1953393007,1734701600,1702130537,1953702002,1937077345,537529646,807411744,1681471790,842029856,1952665376,1919246959,808464928,168647990,538976288,757080096,1735746080,980969830,542003744,1886611812,1702453612,1919230052,762474354,1852403568,544367988,1768383858,1919251571,1920409715,778530415,538970637,774905888,543504697,540160347,1869898575,544367970,909127730]},{"sector":5,"length":512,"data":[537529693,538976288,539828256,1663062616,1634561391,1629512814,1684366436,544175136,1818322290,1633906540,1159751028,1746948941,1818521185,168636005,538976288,757080096,541153312,1835888483,543452769,1869376609,1948283767,1818304623,1633906540,2048943476,544174693,1701273968,1852776563,1397572896,808334368,537529646,538976288,539828256,1528843604,1563524144,1684300064,1948279909,1700929647,1818386720,1869881445,1769435936,543712116,1869881428,1701344288,760433952,542330692,1430406468,537529671,538976288,538976288,1886220131,1651078241,1646290284,1986095205,1920298857,1752442912,1763734625,1411394675,1836411424,1763734384,544175214,1414416679,662206496,168635945,538976288,960048688,828055654,1666129975,1700949876,808591474,224212528,538976266,538976288,1701060653,661091682,1296375923,1969627219,1769235310,544435823,544825709,1802661751,1702257952,1769414766,1629513844,1768432160,1852138596,1296375842,168635981,538976288,757080096,1735746080,980969830,1936286752,2036427888,543584032,1886413165,1701601889,1734438944,1679848293,661546089,1667309684,1853189987,1868963956,1835081842,1953396079,224816928,538976266,538976288,1752440864,543519589,1701273968,1027416179,221130784,538976266,959328288,1528850233,1327510834,1651471459,840987237,1563832368,538970637,538976288,1646275872,1768318837,1428175480,1935767328,1634628896,543517794,1914728308]},{"sector":6,"length":512,"data":[1735353189,1702062446,1397054240,1914723664,1952541797,1830839397,1919905125,1886331001,1851880037,168653668,538976288,538976288,778643488,1830825573,1696626287,1529641057,1567650661,168635945,538976288,960048688,811278440,1867391031,1651336566,840987237,1563832368,538970637,538976288,1646275872,1768318837,1377843832,2037543968,543649385,1679847284,1819308905,1663072609,1702129263,1864397934,1717903462,1952671078,543520361,1919181921,544437093,225665384,538976266,538976288,1633886240,1684370293,1193304352,1763722832,947265646,1869425974,1763730788,1752440934,1629516649,1701995620,1998615411,1176531809,1749435974,543584032,1145456198,168636008,538976288,757080096,743917856,742672672,542592800,543452769,1763722319,1701605485,1953391981,221144165,538976266,959328288,1528850745,1310733361,1835365999,544367970,909127730,537529693,538976288,539828256,1718056290,540702825,1751326817,543452265,542135120,544432503,1634038371,543450484,544503138,544501614,1836213620,1952542313,539780197,1937072483,543649385,1701603686,537529715,538976288,538976288,544501614,1646292852,1818435685,1684370287,1950949422,1667588640,543518049,1769366127,544437615,1931503209,1852400756,1684955424,544370479,1868854387,1998615669,224752229,538976266,538976288,1701978144,1701996900,1684370531,544175136,1701603686,573055091,1046231619,1430406468,2034114631,690125177]},{"sector":7,"length":512,"data":[538970637,774905888,543832377,540422491,1702260558,1919246957,808464928,168647990,538976288,757080096,1735746080,980969830,1769174304,1411409774,543582496,1920103779,544501349,1953721961,1952675186,544108393,1629516649,1313415278,2021138516,1851861024,1920213092,224748385,538976266,538976288,1869422624,1025533284,691019837,1869902624,1684369520,1650811936,1701275509,1852776549,1852383333,1970435187,1869182051,1630150766,1919251558,1752440874,1313415269,1680351316,168650101,538976288,538976288,544175136,947396705,1701060662,1852270963,1634039584,1936027243,221129075,538976266,538976288,1969365037,2020173415,1752440890,774905957,543766841,1718056290,1746958441,1931502689,543518063,1651470960,1936549228,544108320,1734833506,1917198457,1329882469,168635987,538976288,808463921,892492576,1987005984,1700949349,808591474,224212528,538976266,538976288,1969365037,2020173415,1701060666,1734833506,1931961701,1347637280,1935767328,1986097952,1629512805,1919251558,1869770784,1835102823,1634692128,1852776548,539785580,225736034,538976266,538976288,1752440864,1746957161,1948283745,1700929647,1852793888,1986338917,544830053,1701669236,1701344288,1650811936,1701275509,1701978226,1852399975,1868767347,1869771886,168636012,538976288,757080096,1701344288,1763730802,1869488243,543236215,1229803588,1635213600,1981834610,1769173605,1864396399,1162092646,742872386]},{"sector":8,"length":512,"data":[1111835680,743982933,1701995296,1634038881,224750690,538976266,538976288,1919295520,1948282223,1931502952,1668445551,168636005,538976288,757080096,1735746080,544762214,1679847017,1935766377,1651336563,980575596,1413829152,1768169542,1869488228,1634214004,1629513078,1919902496,1886610802,1768189551,1377855342,1145459781,538970637,538976288,1696604192,2037544046,1869883424,1769435936,543712116,1752459639,1701998624,544762214,694695478,538970637,774971424,1528836400,1310733874,1835365999,544367970,909127730,537529693,538976288,539828256,1718056290,540702825,540164941,1852074340,1998615591,778793583,538970637,538976288,1914711328,1936287589,544367988,1701667182,1633886323,1700929646,1702065440,1851859044,1701345145,1998611826,1701995880,1847615776,1700949365,1936269426,1886938400,1702126437,537529700,538976288,538976288,1763734369,1953853550,537529646,824188960,540160046,540619355,1702260558,1919246957,808464928,168647990,538976288,757080096,1735746080,980969830,541665056,1629497188,656434286,660873295,1684628512,544483182,1802661751,1667588640,1702065505,1701344288,1918988320,544367987,1970500449,224683373,538976266,538976288,1145643040,1684955424,541347616,1835888483,1935961697,537529646,538976288,539828256,1430406468,1646286919,1768318837,1411398264,1851859005,1028071524,1684628512,544483182,1802661751,544106784,1953460848,1702126437]},{"sector":9,"length":512,"data":[1869426020,221144420,538976266,538976288,1969365037,2020173415,1869357114,1852400737,543236199,1701603686,544497952,1953459809,544367976,1633906540,1852795252,1634235424,1396908142,808464698,1635197032,1869488243,537529716,538976288,538976288,1886418291,1702130287,1852383332,1919252000,1852795251,774905971,757086521,808333600,168635953,538976288,757080096,1650811936,1701275509,1633886322,1700929646,1634692128,543450468,1751607656,537529646,824188960,540225582,1176514907,1970430565,544830049,925904946,537529693,538976288,539828256,1430406468,1969365063,2020173415,1919950906,1869182565,1981838197,1769173605,1864396399,1162092646,776426818,541937475,543451492,544501614,1768711538,2037146209,1936028192,168653925,538976288,538976288,1969300000,1915580276,1952805733,1919033378,1886085477,1953393007,1965564019,543450483,544370534,1668248176,1769173861,1226860398,695424078,537529646,538976288,539828256,1430406468,540694599,1847609668,1998616431,1936421487,544106784,1818322290,1685024045,1935745125,1818588960,168636012,538976288,757080096,541934624,1835888483,543452769,1701078113,168636004,538976288,875572785,540171040,1668440397,808591464,224212784,538976266,538976288,1634541613,1735289195,1852404512,761621607,1885697139,1919448096,1751610735,1701344288,1397703712,1919249184,543974766,1936945008,1701601897,537529646,824188960,540356654]}],[{"sector":1,"length":512,"data":[1092628827,1818849904,808464928,168647991,538976288,757080096,1869770784,1835102823,1769497888,1868767348,1679844708,1819308905,1684371809,537529646,538976288,539828256,1679838532,1819308905,544438625,543516788,542135120,1835101730,221127269,538976266,538976288,1969299501,1701998452,1952540016,1919903264,539771936,539777092,1851859028,542449764,1701078113,168636004,538976288,757080096,1111835680,978863957,542655520,1701078113,168636004,538976288,909127217,825383712,2036419872,808464928,168647991,538976288,757080096,1735746080,980969830,1397576480,1296838487,1763727187,1935745134,1651336563,544367980,1852074340,1629516839,1885692771,543236212,1647129139,1864397929,1634887024,221144174,538976266,538976288,1969365037,2020173415,1464803386,541347631,1852074340,1629516839,1885692771,1752440948,1635131493,543520108,1634886000,1702126957,168636018,538976288,757080096,2036689696,657270560,1886745376,1953656688,1763730533,541401198,1835888483,543452769,1931505524,544236916,1801675106,1685217655,537529646,824188960,540487726,1310733147,1835365999,544367970,925904946,537529693,538976288,539828256,1718056290,540702825,1702129253,1735289202,1851879968,544433511,1752459639,1886418208,1646293605,1684960623,1935767328,1717924384,1684370293,537529646,538976288,539828256,1430406468,1646286919,1768318837,1763719800,1701322854,1663070316,1998611565]},{"sector":2,"length":512,"data":[1702127969,1868963940,543236210,1887004011,1936942450,1953046572,1936286752,2036427888,168649829,538976288,538976288,1918986016,1701273954,543582496,542462019,544432503,1881173609,1702129522,1684370531,1685024045,1851859045,1464016996,1297106003,1635197001,1937055859,221144165,538976266,538976288,1920213037,1852400481,1852383335,1629515636,1313415278,1411915860,691085389,2003791392,1919907616,1763734379,1852383334,1920099700,544501877,1952671094,1881174639,1953393007,537529715,538976288,538976288,1377857396,1663061327,778396783,538970637,774971424,1528838192,1310733106,1835365999,544367970,925904946,537529693,538976288,539828256,1718056290,540702825,1835492723,544501349,1717924464,1998616681,1814066017,544502639,544370534,1835363949,1667853935,1769414771,1970235508,1918967924,1701672295,225670254,538976266,538976288,1881677856,1751348321,544825888,1734700111,539905824,1802856515,695625057,537529646,824188960,540618798,540029787,1701012804,1919246957,808464928,168647991,538976288,757080096,1111835680,978863957,1986360096,1818325605,1735746080,1702390118,1868963955,541139058,543452769,1634213973,1768711278,857761646,1768041778,1868767348,1931502948,1701668709,779318382,538970637,538976288,1646275872,1768318837,1428175480,1819308832,1814066281,1936027241,543582496,1953721961,1952675186,544108393,1702521203,1668834592,1701078373,775299172]},{"sector":3,"length":512,"data":[538970637,538976288,1646275872,1768318837,1293957752,1684628512,544483182,1802661751,1953068832,1965170792,1919250544,1970233888,539124846,1735287154,221148005,538976266,538976288,1162092589,1481069890,1634231072,979724142,544106784,1647129139,1663071337,543515759,1835492723,1937010277,542449708,1886611812,1702453612,1128603748,1935745112,1919510048,168653939,538976288,538976288,1701867296,1684955506,1919903264,1330596896,1948285008,1852383343,1633904996,1948280180,544498024,542655301,1965060969,543450483,1953721961,543449445,1126196847,168635992,538976288,538976288,2003783200,656433440,1763714884,1952522355,1751343476,1948279909,1752440943,1886330981,1701080931,1330391072,1148735567,1031282732,1515093082,1316767100,1763715397,1702130542,221144161,538976266,538976288,1969365037,2020173415,541139002,1852074340,1663071271,1936682856,1752440933,1752375397,544502383,1769159976,1684368999,1868963881,1864396146,1918967910,1835562089,1667855461,538970637,538976288,1763713056,1920234350,1769235317,544435823,1667522856,1684086828,773860452,539569710,1159751273,542654767,544432503,1936877926,1886330996,1851880037,168636004,538976288,808529457,892492576,1851869728,2037539189,808464928,168647992,538976288,757080096,1111835680,978863957,544175136,1702129257,1885692786,1346642036,1763723597,1769236846,1931504737,1668573559,544433512,1881173876,1702129522]},{"sector":4,"length":512,"data":[1684370531,1685024045,168635493,538976288,538976288,1414416672,1749430816,544434464,544698222,1802465128,1814062181,1919251553,1750343726,1629516649,2003790956,1869881459,1650811936,1629513589,1768714352,1769234787,225668719,538976266,538976288,1752637472,543712105,1953721961,543976545,1768253556,2003771506,1346642030,1746946381,544502639,1769108836,1763731310,1769236846,2053729377,1869182049,168636014,538976288,757080096,1111835680,978863957,541869088,1701080693,1635021682,544433262,1864396385,1869182064,543973742,1970234146,539128942,1969713761,1953391981,537529646,824188960,540094766,540422235,1919051078,2037539189,808464928,168647992,538976288,757080096,1735746080,980969830,1650811936,1701275509,1869357170,1679848563,1735746149,660956519,1766334579,1685221207,1279673640,1852383273,1634038304,1869426028,221144420,538976266,538976288,1969365037,2020173415,1718165562,1650811936,1701275509,1702043749,1380130932,1296113712,1953063456,1684955424,1279673632,541278496,1734437990,1851858988,538970637,538976288,1696604192,1885692792,1852795252,1748054304,1667460896,1684370037,544106784,543516788,1969382756,1919248231,537529646,538976288,539828256,1430406468,1646286919,1768318837,1193294456,1836016416,1684955501,1935767328,1634628896,543517794,1931505524,1915712613,1869902693,1646290290,1801545074,1852403568,1763734388,537529702,538976288,538976288]},{"sector":5,"length":512,"data":[1867999560,1160275058,539578441,1853055351,1663071271,1918985580,537529646,538976288,539828256,1430406468,1646286919,1768318837,1428175480,1852270880,1684370031,1466517536,543453807,1629513327,1836410738,661941861,1718558835,1952805734,1918988320,168636020,538976288,757080096,1111835680,542656341,1718056290,540702825,1734942789,1701998446,1766334564,1685221207,543584032,1969713761,1953391981,1864397607,1702061670,1634738292,221148274,538976266,538976288,1162092589,1481069890,1735746080,980969830,1679838496,661546089,1667309684,1953523043,1919510048,1629516915,1836410738,661941861,1718558835,1952805734,1176518176,776357446,538970637,538976288,1142959392,1196769861,1969365080,2020173415,1970413626,1852403310,1852383335,1448365600,1629506884,1881171054,1936942450,543649385,1819440195,1998603053,1701603688,1650811936,1701275509,537529701,538976288,538976288,1763734377,1919950958,1667593327,761554292,1701080941,544173600,1735290732,1679848037,1936748402,544175136,1818322290,1685024045,168636005,538976288,757080096,1111835680,978863957,542003744,544698222,1684956530,544436837,1634692198,1735289204,1768910880,1914729582,1936287589,544367988,1953394531,544501349,1886351984,2037150309,538970637,538976288,673194016,1430406468,1953701959,543976553,1953723754,1936286752,2036427888,1634869363,1701322871,1868963960,1952542066,1919903264,2053731104,1701978213]},{"sector":6,"length":512,"data":[1852797793,221129075,538976266,538976288,1162092589,1481069890,1229201466,1953457952,544104736,1769238639,1818324591,1868769056,661941877,1918988320,1952804193,221147749,538976266,538976288,1162092589,1481069890,541335610,1634100580,544500853,1835492723,544501349,1953653104,544434464,1667590243,543450475,1763731049,1936269428,1818326560,1763730537,1836064878,224748655,538976266,538976288,1851858976,1751326820,1701277281,1869881444,1818326560,1864394101,1818435686,1953391977,1142977319,1718165587,779054624,538970637,774971424,1528836657,1176515633,1970430565,544830049,942682162,537529693,538976288,539828256,1718056290,540702825,1735288172,807430260,544106784,1735287154,1635197029,1948741235,1953392928,1919971941,1684370533,544432416,1797272630,168635970,538976288,757080096,1111835680,542656341,1718056290,540702825,1852383301,1869770784,544501869,1701080941,1684628512,544483182,1802661751,1953068832,842211432,1953063469,1717989152,1937007987,537529646,538976288,539828256,1430406468,1646286919,1768318837,1277180536,1684955424,1679841056,661546089,1870078068,1998613362,543716457,1717990754,1864397413,1702061670,1027481716,808464672,778580016,538970637,538976288,1142959392,1196769861,1969365080,2020173415,542187578,1818847351,1701060709,1734833506,1998611813,1763734369,1836064878,543515759,1937072483,1629512805,1179666208,224815392,538976266]},{"sector":7,"length":512,"data":[538976288,1766334496,1685221207,1346979112,1919885353,1466517536,677671535,693130053,1935767328,544483182,1869768058,537529646,538976288,539828256,1430406468,540694599,1629505860,1953064036,1634627433,544828524,1886611812,1937334636,1297105952,2019893321,1953523043,544108393,1952671094,779317871,538970637,538976288,1142959392,1196769861,1998600792,544105832,1852732786,543649385,1310748265,1296324180,1162092588,1448630338,1143882820,1998605388,543976553,1814062434,1701077359,1998597220,1751345512,538970637,538976288,1998594080,543976553,1701536109,1629506592,1461740654,1919907616,1769414763,1931503732,1869898597,1864397682,1752440942,1881174889,1718903148,778924655,538970637,538976288,1142959392,1196769861,1142962776,1869488205,1870078071,544435058,1881173609,1702129522,1684370531,1685024045,1935745125,1818588960,168636012,538976288,757080096,2003791392,1819042080,1836016416,1684955501,1918967923,1701060709,1769104243,543450466,1142976105,1196769861,1415074862,537529646,824188960,540225838,540488283,1919051078,2037539189,808464928,168647992,538976288,757080096,1111835680,1646282581,1768318837,1277180536,1684955424,1998608160,543716457,1952671091,544436847,1802661751,1713398885,1142977135,1196769861,1852776536,1763735916,829825134,775041326,538970637,774971424,1528837169,1243623985,1635085921,840989042,1564028976,538970637,538976288,1142959392]},{"sector":8,"length":512,"data":[1196769861,1969365080,2020173415,1143414842,661678368,1969316640,543450483,2037588065,2019652718,1920099616,221147759,538976266,538976288,1162092589,1481069890,1735746080,980969830,543582496,1969382756,1919248231,1702130464,1684369520,1953392928,1851859055,1414416672,544106784,1953460848,1702126437,1869426020,221013348,538976266,538976288,1752440864,1633886309,544830066,1734437990,1935767328,1701602080,1684370017,537529646,538976288,539828256,1835606088,1987015280,221144165,538976266,538976288,1869815853,1701016181,1852793632,1953654134,1948279909,1632444527,1931505011,1635020409,168636024,538976288,757080096,1835103008,1936026736,544106784,1836278093,1853453088,544760180,1701078113,168636004,538976288,892415537,842095392,1919959328,840985705,1564028976,538970637,538976288,1646275872,1768318837,1763719800,829825134,758394926,825110902,1914711092,1869902693,1735289202,1650811936,1701275509,544417637,1702129257,1886745202,1702240372,1919906915,537529715,538976288,538976288,841691954,1633886260,1684370293,1830838560,1919905125,1868767353,1886745202,1852795252,540551200,1702132066,1679829363,1948280181,543236207,1852797559,1702043751,1852140903,537529716,538976288,538976288,1768383858,1919251571,1818326560,221144437,538976266,825110816,844832822,1883316272,543975794,959459378,537529693,538976288,539828256,1718056290,540702825,1668181287]},{"sector":9,"length":512,"data":[1868767271,1851878765,1635197028,1701978227,1952671082,539911269,1953397075,1663072353,1735287144,1948279909,1831280751,661528675,537529646,538976288,539828256,1718056290,540702825,1981836905,875638321,825110829,656419893,1679828839,661546089,1701978228,1650551148,1679849836,1667593317,1752637556,1701344357,543236210,1998614626,168653665,538976288,538976288,1954047264,1634628197,168636012,538976288,757080096,1735746080,980969830,661071648,1836016416,1684955501,1970234144,1730176108,1663071333,1969647215,543450483,1864399202,1685021552,1145249893,775106592,538970637,538976288,1142959392,1196769861,1969365080,2020173415,1629954106,1868767271,1851878765,1734942820,1701998446,1768431716,1685221239,543584032,1920103779,544501349,1936090735,1763734629,537529710,538976288,538976288,1647129139,1931506793,1701668709,779318382,538970637,538976288,1142959392,1196769861,1969365080,2020173415,1752637498,1679847013,1735746149,543516007,544432503,1881173609,1702129522,1684370531,1685024045,1851859045,1752440932,168652389,538976288,538976288,1919251488,1634625901,543450484,1769108836,1696622446,1969448312,1852795252,543584032,539455527,656437871,1663051636,1634561391,539780206,543516788,544830068,168652660,538976288,538976288,1936028192,1701998452,544104736,1702129257,1818324594,544236064,544825709,1702257000,1969316640,543450483,1869440365,1663072626]}]],[[{"sector":1,"length":512,"data":[1970434671,1869182064,168636014,538976288,925969969,942824224,1919959328,840985705,1564028976,538970637,538976288,1646275872,1768318837,1377843832,842218528,1953063469,1734701600,1702130537,1008746098,544695662,1970037110,1679834725,661546089,1870078068,1763732338,829825134,775303470,538970637,538976288,1646275872,1768318837,1142962808,1128877392,775303500,541938497,1853055351,1629516839,1835103008,543517808,544370534,909189217,1953063469,1297105952,1818435657,1953391977,537529646,538976288,539828256,1718056290,540702825,1701080693,1869815922,1663067501,1768189551,1852795252,1831280755,1635196967,1769152627,1953391980,1914730860,1667590757,778331508,538970637,774971424,1528838193,1293957169,840989025,1564028976,538970637,538976288,1142959392,1196769861,1969365080,2020173415,1314005050,1902473760,1701996917,543236196,942878776,1346576438,168635989,538976288,757080096,1111835680,542656341,1718056290,540702825,1629507154,2036430700,1935745139,1701672307,1752440932,1663071329,1701999221,1830843502,543515759,1914729321,762077541,1701080941,537529646,538976288,538976288,1702326088,745694582,1701344288,2036427808,544503151,1176528495,1163280723,1397900847,542265172,1717987684,544436837,544370534,1953460848,1702126437,1869426020,221144420,538976266,538976288,1969365037,2020173415,1093083194,1868767271,1851878765,1768169572,1948741220,1667457312]},{"sector":2,"length":512,"data":[544501861,1702043745,1663920493,1852796015,1734963744,1629516904,1919251558,1701344288,538970637,538976288,1830821920,1869440366,543385966,1635280168,1701605485,1818435642,220805987,538976266,538976288,1718165549,1431323424,544434464,942878776,539765558,543516788,1647129139,1981838441,1769173605,1864396399,1397104742,793073217,1414746694,1763725903,1937055859,1847616613,221017967,538976266,538976288,1752637472,543712105,1919970665,1936029295,1936286752,2036427888,543584032,543516788,542462022,1952543859,221148021,538976266,538976288,1915166765,1868767271,1851878765,1159740004,1629506630,1684366436,544175136,540424243,1768383858,1919251571,1936286752,2036427888,537529646,538976288,539828256,544370534,1162103878,539776590,1163154246,539776590,1447121734,1851859013,1380327524,1380930643,909189164,540160815,544500066,1769103734,1937010273,1953068832,537529704,538976288,538976288,1717990771,1936029801,1143953184,1919252256,1684086885,979658084,1145849376,1465273925,1145849391,1146506821,1397104684,1447970132,1397108567,1447970132,773860420,168635950,538976288,757080096,1111835680,978863957,1836197664,1868767271,1851878765,1684086884,543450468,1679847284,1819308905,1293973857,1914722381,1936287589,1936876916,537529646,538976288,539828256,1430406468,540694599,1953721961,1952675186,1936617321,1448037664,1293954116,743528015,1296909600,1684086867]},{"sector":3,"length":512,"data":[543450468,1629515636,1835365235,1919249506,1684955424,538970637,538976288,1679826976,1935766377,1651336563,779249004,538970637,538976288,1814048032,1970239841,1718558836,1650553888,544433516,1679847017,1735746149,778855028,543387241,1768189805,1684367718,544175136,1701536109,1701344288,1937055853,537529701,538976288,538976288,1651341683,1667853423,1852793632,1851880563,1629516660,1629512814,1701995620,1936028531,1750343726,1629516649,2003790956,1869881459,1685024032,544826985,1936287860,538970637,538976288,1713381408,543517801,1701996900,2037150819,537529646,824188960,540619054,540553563,1869898575,544367970,808529970,537529693,538976288,539828256,1430406468,1646286919,1768318837,1646279288,1801545074,1852403568,1931506548,1998615653,543716457,1868767303,1852075125,1646294055,1701978213,544499059,1948280425,168650088,538976288,538976288,1650811936,1701275509,544417637,1920103779,544501349,1701080941,1701980192,1831693409,543515759,1919950895,1667593327,761554292,1701080941,1768169513,1751326820,1701277281,538970637,538976288,1763713056,1684632430,776413285,538970637,774971424,1528836146,1327509554,1651471459,840987237,1563439408,538970637,538976288,1142959392,1196769861,1646279256,1768318837,1718558840,774993440,1830828337,1718183023,543450473,1847619444,1734964833,543519841,1970238049,1629512814,1970234144,543517808,168650351,538976288]},{"sector":4,"length":512,"data":[538976288,1398227744,1229803588,1735746080,168636019,538976288,825372209,959601440,1952665376,1919246959,825242144,168647984,538976288,757080096,1111835680,542656341,1718056290,540702825,1702129257,1818324594,1701995040,1869638497,1937010281,1952805664,544825888,1919885396,1931497504,1819044212,1684105248,538970637,538976288,1881153568,1818390386,544435557,1629513321,1685024032,2004033637,1751348329,1667460896,1684370037,537529646,824188960,540160558,540094811,1702260558,1919246957,825242144,168647984,538976288,757080096,1111835680,542656341,1718056290,540702825,1852797559,1635131495,543520108,1344300655,1679839315,1819308905,1684371809,1953068832,1296310376,543582496,1969382756,1701144423,538970637,538976288,1998594080,1746957153,1702128737,1852383332,1634038304,1869426028,1629513060,1919251558,1768843552,1818323316,1769435936,543712116,1881173876,1702129522,1684370531,1685024045,168636005,538976288,757080096,1111835680,542656341,1718056290,540702825,1701734764,1936941344,1818389861,1679848037,661546089,1634214004,1701602414,759386144,1634493810,1702259060,1684300064,1936942450,168653669,538976288,538976288,1919902496,1952671090,1763735916,1869815910,1701016181,544370464,1953719652,1952542313,544108393,544432503,2016419902,1179010630,537529646,824188960,540226094,540356955,1769107521,808591468,224211249,538976266,538976288,1969365037]},{"sector":5,"length":512,"data":[2020173415,660678432,1836016416,1684955501,1852121146,1769104756,1629513582,1734701856,1953391981,1734701600,1702130537,1634607218,1830839661,1746958689,224753249,538976266,538976288,1948393504,1768780389,1702125934,1679827556,1735746149,1701737760,1667592312,1818518900,168636025,538976288,757080096,1735746080,980969830,542332960,1635216481,1629516665,1836413811,840983653,1159738677,1746948941,1818521185,539915109,544698190,1948284009,1936025970,544175136,225731943,538976266,538976288,1752440864,1970151525,1919246957,543584032,542330181,1684955496,544433516,1965062498,1735289203,1397572896,1713386528,1952673397,544108393,842019893,168636008,538976288,757080096,660678432,1836016416,1684955501,1752440890,1702043749,1852140903,1919950964,2020173413,1853453088,544760180,1763734369,1936269428,1886218528,1701668204,1684370542,226058784,538976266,538976288,1397563424,1111835680,1763723093,1667309683,1953523043,1847616613,673216367,1768453920,1763731555,543236211,1835492723,544501349,1768383858,1919251571,1819239968,1702326124,537529700,538976288,538976288,1629518178,1819239200,689991279,537529646,538976288,539828256,1701603686,1801547040,1647212645,1629516897,1684366436,537529646,824188960,540291630,540291163,2037151050,825242144,168647985,538976288,757080096,1735746080,980969830,1852402720,1935745125,1651336563,544367980,1852074340,1696625703]},{"sector":6,"length":512,"data":[1685021550,842211429,1953063469,1684300064,1936942450,543649385,1752459639,1112101664,538970637,538976288,1646272544,543519865,1920102243,1819566949,1852383353,774993440,221131570,538976266,538976288,1701060653,543651170,1769104243,1142977648,1128877392,775303500,542262099,1701078113,168636004,538976288,892481073,942693152,1735737632,544502645,825307186,537529693,538976288,539828256,1635131442,1851877746,673215348,539369542,1629497671,1684366436,544175136,1701536109,1633824376,218762612,538976266,757935392,539831597,544695662,1702258020,1836085100,544501349,1918989427,543450484,1668440397,808591464,1646277425,1129717881,218762562,538976266,841888032,811278390,1967792177,840983918,1563636016,538970637,538976288,1629498656,1684366436,742540320,542589984,543452769,1663059012,1634561391,779314286,538970637,538976288,1663053088,1851876716,1881174133,1769173601,1864394606,542253158,1835888483,543452769,1931505523,1701011824,1918967923,1948741221,1701146144,778331492,538970637,538976288,1629498656,1684366436,1413763616,1629504339,1377854574,1129140292,1936615712,1668641396,1852795252,168636019,538976288,757080096,1936286752,1702064993,1701601901,1668312864,543515759,543699512,1701538156,1668312864,543515759,778580024,538970637,538976288,1713384736,1684371561,1887007776,1763734383,1263345774,1279410516,1127109445,538970637,538976288]},{"sector":7,"length":512,"data":[1142959392,1196769861,1914714712,1987013989,1696621669,1634890872,1935762464,544433512,1293971049,1914722381,1936287589,544367988,1886221668,537529646,538976288,539828256,1634953572,1835365235,543517794,1213420880,1835886880,1953068832,1953853288,1564760864,1146244951,544432416,543516788,1702521203,544434464,1634758753,1953391986,537529646,538976288,539828256,1226860137,1397703790,1634493984,1936269415,1952805664,1702065440,1330201120,1852383315,1634038899,1718558820,1397703712,1919903264,1663059232,1634561391,1763730542,1953853550,537529646,538976288,539828256,1635216481,1965060985,1109419379,542330697,1970302569,1868963956,1701322866,1931505772,1635020409,1634738296,778400629,538970637,538976288,1142959392,1196769861,1931491928,1919971445,544437093,1918986339,1702126433,1042314098,1749366560,544106784,1663064132,1634561391,1948279918,1700929647,1852793632,1953720691,225734245,538976266,538976288,1769414688,1142974580,1836016416,1684955501,537529646,538976288,539828256,1735550317,1814062181,1684759407,1702259058,1684955424,1819178272,1684759407,1702259058,1970237984,1701734772,1869881459,1684369952,543515509,1702521203,537529646,538976288,539828256,1702390118,1969365092,1852383335,1663063328,1634561391,1998611566,1751345512,1836020512,1835627621,1663071077,1702065505,1852776548,1864399212,1814062446,543518313,1646292852,537529701,538976288,538976288]},{"sector":8,"length":512,"data":[1886680431,1713402997,1629516399,1919906933,1634037861,168636020,538976288,757080096,1953849632,1885696623,544498021,544370534,1868767312,1851878765,1684086884,778331492,538970637,538976288,1629498656,2003790956,1634038304,1818386788,1818632293,1769234799,1882023790,1953393007,1734701600,1702130537,1948283762,1700929647,1668180256,1701082476,1852383332,538970637,538976288,1142956064,1196769861,1297040174,1769174304,1847617390,1176532837,1397707856,1679839828,1852401253,168636005,538976288,757080096,1936286752,1702064993,1701601901,1279349536,1684955424,1397052448,1969496148,1667853424,543519841,1868787823,779314532,538970637,538976288,1713384736,1684371561,1397572896,1818585120,2037588080,2019652718,1936026912,1701273971,544106784,1920298867,1663067491,778396783,538970637,538976288,1914711328,1987013989,1159750757,1663062861,1634561391,544433262,1836020326,1717920800,1953264993,1769300512,221144172,538976266,538976288,1684086829,543450468,1953397107,1142978657,1887007835,1277189477,1852140576,543716455,1679847284,1819308905,1814067553,1952935525,2036473960,544433524,1918989427,1735289204,1869768224,537529709,538976288,538976288,543516788,1953718636,1684300064,1936942450,1936286752,2036427888,221144165,538976266,538976288,1684086829,543450468,673206864,1668248176,543450469,1970562418,539586162,1835888483,543452769,1667852407,1919950952,1701143407]},{"sector":9,"length":512,"data":[1881174884,544502625,543516788,1954047342,538970637,538976288,1377837088,539776069,1179927890,544370464,1413829193,1768453920,1763731555,1869488243,1701716084,1684370547,1953068832,1953853288,1869902624,1852403824,168636007,538976288,757080096,1835364896,1684371055,1935830816,1952803951,2004033637,1751348329,1634231072,1952670066,1881174629,1701015410,1852404595,168636007,538976288,757080096,1163089184,977355859,1919252000,544826985,542135120,1629516649,1146298484,808528705,1700929640,1701998438,1769174304,221144942,538976266,538976288,1818304557,544698220,542527309,744973683,544026482,543452769,542527309,745353074,543647091,1646292852,1935745125,1651336563,543450476,1752459639,544503151,1970365810,1852404329,537529703,538976288,538976288,1146244951,1381257248,537529646,538976288,539828256,1634953572,1835365235,543517794,542527309,744973683,544026482,543452769,542527309,745353074,543647091,1752459639,544503151,1146244951,1381257248,537529646,538976288,539828256,1634953572,2003790956,1986947360,1684630625,1701867296,1684955506,1836016416,1634625890,1852795252,1852383347,1936941344,1818389861,221147749,538976266,538976288,1886724141,1702125924,1398284388,1836016416,1684955501,544175136,1802661751,1953068832,1296375912,775102547,168635954,538976288,757080096,2020173344,1646290021,1763731317,1398284398,1836016416,1684955501,1885696544]}],[{"sector":1,"length":512,"data":[544502383,1948280431,1818326127,1836412448,544367970,1746953839,1818521185,221148005,538976266,538976288,1751326765,1701277281,1852402720,1970233189,1969365108,1919247974,2053731104,1869881445,909455904,1954112032,221148005,538976266,538976288,1684086829,543450468,1936943469,543649385,1970037110,1869881445,1886938400,1852141167,1635000436,543517794,1176530537,1397707856,1227772500,221135694,538976266,538976288,1768759341,544370542,1702521203,1953525536,2053729641,1869182049,221148014,538976266,538976288,1868767277,544501365,1701734764,1868963955,1634738290,1852404597,1852383335,1818585120,2037588080,2019652718,2019914784,1768169588,1634496627,168636025,538976288,926035505,909269792,1853180448,808591461,224211761,538976266,538976288,1868832813,544483182,1886611812,544825708,541213517,1701667182,543582496,1329864764,775168083,538970637,538976288,1914711328,1987013989,1931502693,1830843493,543515759,1835888483,1935961697,541927456,1851859064,1129128036,539588640,1836020326,1717920800,1953264993,1769300512,221144172,538976266,538976288,1768759341,544370542,1702521203,1953525536,2053729641,1869182049,221148014,538976266,538976288,1701650477,1684367218,1397572896,1818585120,1852383344,1830842228,544106849,1886152040,1684955424,1835364896,1684371055,541022240,1835888483,778333793,538970637,538976288,1679830304,1948741231,1936286752,2036427888]},{"sector":2,"length":512,"data":[1701868320,1768319331,1746953317,1818521185,1852383333,541349920,1835888483,778333793,538970637,538976288,1713384736,1684371561,1735746080,544106784,1663062872,1634561391,1914725486,1919905893,1718558836,1851877408,1936026724,537529646,538976288,539828256,1701078113,1296375908,1850286163,1768710518,1969627236,1769235310,1696624239,1919906418,1936026912,1701273971,537529646,824188960,540553774,540225627,1969714497,840987763,1563636016,538970637,538976288,1914711328,1987013989,1864393829,1819243362,543519845,1953721961,1952675186,544108393,1667590243,168636011,538976288,757080096,1684300064,1965057125,1668244590,1852140917,543450484,1129070931,1684955424,1414416672,1852383281,1970435187,1869182051,221148014,538976266,538976288,1684086829,543450468,1163090259,1380275278,1684955424,1398362912,1414092869,1936615712,1668641396,1852795252,168636019,538976288,757080096,1835364896,1684371055,1869509920,1667851878,543973737,1330463558,543384406,1634298977,779314547,538970637,538976288,1713384736,1684371561,1414221088,1162625601,541273683,1646292852,1684826485,1869770784,1819436400,1937055865,543649385,543452271,542330692,1126191949,1836016416,1701603696,168636018,538976288,757080096,2020173344,1293968485,1111577675,777209164,1869881411,1869770784,1819436400,1634214009,1701602414,1667329312,1701734760,1701868320,1768319331,1769234787,1998614127,224949353]},{"sector":3,"length":512,"data":[538976266,538976288,1768169504,1936941427,1818389861,1852779897,1763735916,1920234350,1769235317,1981836911,1634300513,779318382,538970637,538976288,1763716384,1970037614,1931502948,1830843493,543515759,1835888483,1935961697,541927456,1851859064,1129128036,539588640,1142976105,1196769861,168635992,538976288,757080096,1668180256,1701082476,1869116192,1634541687,1852401763,1868767333,1864394084,544828526,1852139639,1146047776,1413829445,541347139,1679848297,1852401253,221144165,538976266,841888032,1528848696,1092630576,1937074037,808591476,224211761,538976266,538976288,1684086829,543450468,1515210066,1684955424,1346720288,1629510222,1935763820,221148005,538976266,538976288,1701978157,1702260589,1852383332,1920102243,544498533,1145851462,1629509443,1176527982,1413829454,1629506896,1935763820,221148005,538976266,841888032,1528848952,1092628785,1937074037,808591476,224211761,538976266,538976288,1684086829,543450468,1163019846,1629507653,1965057134,1668244590,1852140917,543450484,1634692198,1735289204,1768910893,1629516910,1935763820,221148005,538976266,841888032,1528849208,1092629042,1937074037,808591476,224211761,538976266,538976288,1818304557,544698220,1663064132,1634561391,1948279918,1700929647,1668180256,1701082476,1852383332,1111835680,1127106389,221138255,538976266,841888032,1528849464,1092630834,1937074037,808591476,224211761,538976266]},{"sector":4,"length":512,"data":[538976288,1768300589,543450488,1869642100,544106784,1414745673,1380920914,168635972,538976288,757080096,1936286752,1869376609,1330454647,1869881430,1869768239,1380130925,168635953,538976288,757080096,1684957472,1952539497,1397104741,542593876,1763727425,543236211,725039154,1936615712,1668641396,1852795252,537529646,538976288,539828256,1869506925,1869815922,1701016181,1685021472,1818435685,1970168165,168636016,538976288,942812721,828055653,1699946549,1835365488,544367970,858861618,537529693,538976288,539828256,1634036835,544241006,1096043341,1397050434,1948271406,1701978223,1702260589,1918990112,1735289198,1851859059,1700929636,1397637408,541270089,1886220131,1851877740,168636020,538976288,757080096,1852402976,1931506287,1668445551,1868767333,1663067492,1851876716,221147253,538976266,538976288,1768169517,1936941427,1818389861,842211429,1953063469,1734964000,2019896686,1684956532,1344300133,541610837,778923369,538970637,774971424,543569970,540029787,1953523027,1700949349,808591474,224211761,538976266,538976288,1768169517,1634496627,1296900217,1701978200,1953720679,544436837,1931505257,1684955508,543453793,1768383858,1919251571,1919903264,779379053,538970637,538976288,1663053088,1735287144,1230970981,1415071060,1734701856,1953391981,1634493216,1847620467,543518049,1948282739,544498024,1263421772,1230253856,1998608718,1936421487,537529646]},{"sector":5,"length":512,"data":[824188960,1731736110,942824224,1952665376,1919246959,825242144,168647987,538976288,757080096,1852270880,543519343,543453037,1937008994,1701345056,1768169582,1936941427,1818389861,543649385,542527309,796414531,796414532,544756308,1953721961,1952675186,1936617321,537529646,824188960,540619310,540029787,1970168138,544830049,875638834,537529693,538976288,539828256,1330925638,978474067,1684300064,1377854565,1663062606,1634561391,1948279918,1768169583,1634496627,1634869369,1818632311,1769234799,1882023790,1953393007,1734701600,1702130537,221148018,538976266,538976288,1162092589,1481069890,1920213050,1226862689,908088398,544106784,1818322290,1685024032,1851859045,1919950948,1667593327,543450484,1701080941,537529646,538976288,539828256,1970499173,1948280178,544498024,1886152040,1853453088,544760180,1937072496,1870078053,544435058,1886351984,2037150309,544108320,792806477,541148995,1953724787,779316581,538970637,538976288,1830825248,1919905385,2053731104,1886330981,1768778100,1769234810,779316847,538970637,538976288,1914711328,1987013989,1965057125,1667591790,1634956133,1176533362,1414086999,1700929651,1701998438,1869375008,1852404833,1869622631,544501353,1953721961,1952675186,1936617321,537529646,538976288,539828256,1869440370,543450486,1953718636,1668312864,543515759,1836020326,1869375008,1852404833,1869622631,544501353,1952543859,1679848309]},{"sector":6,"length":512,"data":[1819308905,221149537,538976266,538976288,1852383277,1633904996,1226859892,540103758,1629516649,909652768,1852383275,1970435187,1869182051,168636014,538976288,757080096,1936286752,2036427888,542328352,543452769,1830835015,1919905125,1701978233,1701995878,1936024430,537529646,538976288,539828256,661548900,1768169588,1634496627,1701650553,2037542765,1717924384,1852142181,1763730787,1162616934,168635969,538976288,757080096,1869770784,1819436400,1768169593,1634496627,1145839737,1162620755,1179397971,1196175187,1397501779,1701650515,2037542765,1717924384,1852142181,779314531,538970637,538976288,1679830304,1819308905,1126201697,793529409,542133578,542261574,1869440365,1914730866,1919247973,1701015141,537529646,538976288,539828256,1702390118,1886330980,1851880037,1701519460,1713402745,1394635375,542393420,543452769,1465077075,537529646,538976288,539828256,1869506925,1869815922,1701016181,1685021472,1818435685,1970168165,168636016,538976288,959589937,811278433,1699094580,1635086946,840989042,1563701552,538970637,538976288,1679830304,1667855973,1919164517,1919252073,1919252000,1852795251,1969365050,543452265,1430406468,1498623559,1852383315,1634038899,1718558820,1163412768,537529646,538976288,539828256,1869376609,1313415287,741744724,1864385312,541335666,1646292852,1920213093,1701867617,1852383332,1111835680,1127106389,221138255,538976266,538976288]},{"sector":7,"length":512,"data":[1818304557,1937334647,1634890784,1313415280,540418132,543452769,1852383299,1869770784,1952671092,1830839397,778396783,538970637,538976288,1914711328,1987013989,1293968485,1480936257,1413562926,1701650491,1684367218,1953392928,1095573615,1110328651,221140033,538976266,538976288,1768300589,543450488,543651170,1277193833,1684955424,1663063840,1634561391,544433262,1869771365,1701650546,1734439795,1768169573,1634496627,1869750393,1852404853,168636005,538976288,757080096,1869770784,1819436400,1852383353,1634301033,1702521196,1986097952,1226859621,840979534,1629513779,840983662,1981835316,1702194273,1868963955,1852383346,1920099700,225734773,538976266,538976288,1768169504,1634496627,1634214009,1914727267,1769239919,779314542,538970637,774971424,543308082,540094811,1919051078,2037539189,825242144,168647988,538976288,757080096,2020173344,1935762208,1969365093,1852383335,1952138272,1566929017,1814055968,1952935525,2037588072,2019652718,1918988320,1735289203,537529646,538976288,539828256,1869440370,1293968758,1679835715,1852401253,1869815909,541934624,1835888483,543452769,1629516649,2036430700,1919950963,1852142437,168636020,538976288,757080096,1936614688,543519349,1663061316,1634561391,1679844462,544433519,544501614,1886611812,544825708,1696624225,1634890872,1970234734,1852121203,779711092,538970637,538976288,1663053088,1801676136,1919903264,1819634976]},{"sector":8,"length":512,"data":[1635019124,1852402547,1397563495,1397703725,221131808,538976266,538976288,1818304557,1937334647,1769497888,1937055860,543649385,542395977,543699250,1668183398,1852795252,1749234720,537529646,538976288,539828256,1869506925,1769152626,1864394106,1835627632,1952545385,1936617321,537529646,824188960,1664692782,909204256,1650804256,1918989682,808591481,224212017,538976266,538976288,1868832813,544483182,543519605,1447118156,1852383301,1869366816,1867805793,544371795,1998614388,543912559,941649519,792082480,943206456,537529646,538976288,539828256,1869440370,543450486,762212206,1851880563,1685217636,1195725600,1702064160,762274933,221147247,538976266,538976288,1768759341,544370542,1702521203,1953525536,2053729641,1869182049,221148014,538976266,538976288,1818435629,1970168165,1701060720,1701013878,1769104416,544367990,1818850658,168636004,538976288,959589937,844832868,1699094584,1635086946,840989042,1563701552,538970637,538976288,1679830304,1819308905,1931508065,543518049,1869771365,1868963954,541859954,543452769,1868767319,1851878765,1763734372,1869488230,1818846752,1835101797,1768366181,778986870,538970637,538976288,1830825248,1919905385,1970238240,543515506,1701080931,1701602080,1886744161,537529646,824188960,1698247214,808540960,1918979360,840984675,1563701552,538970637,538976288,1830825248,1919905385,2053731104,1886330981,1768778100]},{"sector":9,"length":512,"data":[1769234810,779316847,538970637,538976288,1159736608,743656781,1448037664,1851859012,1330454628,1847611734,1830844271,1635085921,544828524,1701078113,1869881444,1111835680,1112819541,1313418828,1868963907,537529714,538976288,538976288,1430406468,1127110727,673205583,1398295885,693129301,1835364896,1852405359,1986994279,1701343845,1713398881,544042866,1430406468,1329802823,168635981,538976288,808660529,942693152,1919959328,840985705,1563701552,538970637,538976288,1830825248,1919905385,2053731104,1886330981,1768778100,1769234810,779316847,538970637,538976288,1629498656,1684366436,1734438944,1919295589,543518049,1886611812,544825708,1478520692,1868767315,1851878765,168636004,538976288,757080096,1634231072,543516526,1701734764,544106847,1717990754,1931506277,543521385,824209268,1646276659,1936028793,537529646,538976288,539828256,1969513842,1914725731,1684632421,544501349,1702521203,543584032,1769366884,1679844707,1702259058,1969365106,778333289,538970637,538976288,1965042976,1142973811,1162564431,1868963929,1852383346,544503152,1814062697,1701077359,1851859044,1850286180,542330692,544501614,779380083,538970637,538976288,1679830304,544239474,541344854,1886418291,779383407,538970637,774971424,543240243,540553563,1702260558,1919246957,825242144,168647988,538976288,757080096,1852793888,1965061159,1142973811,1162564431,1718165593,1142963232]}]],[[{"sector":1,"length":512,"data":[891310927,537529646,538976288,539828256,1430406468,540694599,661548900,1936269428,543520115,542395977,543704626,1008756329,1397703712,221131552,538976266,538976288,1684086829,543450468,1868852853,1701672291,1684370542,909652512,1095715872,1280065860,1936615712,1668641396,1852795252,537529646,538976288,539828256,1869506925,1869815922,1701016181,1685021472,1818435685,1970168165,168636016,538976288,808660529,811278434,1698963505,1651336547,840987237,1563701552,538970637,538976288,1679830304,1948741231,1819042080,1931507567,1830843493,543515759,1835888483,543452769,539577640,1931505524,1629516901,1818326560,1746953589,1701341033,1752440946,1948282465,168650088,538976288,538976288,1952669984,543973749,777343043,538970637,538976288,1679830304,1948741231,1819042080,1931507567,1830843493,543515759,1835888483,543452769,692276520,544175136,544499059,1346773089,1718165589,1701344288,1763730802,1948741235,1701736224,537529646,538976288,539828256,1869506925,1869815922,1701016181,1685021472,1818435685,1970168165,168636016,538976288,825437745,875649824,1918979360,840984675,1563832624,538970637,538976288,1713384736,1684371561,1735746080,544106784,792148018,540489779,1702126948,1869182051,168636014,538976288,757080096,1684300064,824206437,1679832632,1667593317,1852795252,537529646,538976288,539828256,1701078113,1853169764,1969450852,1953391981]},{"sector":2,"length":512,"data":[857760869,1277179448,1094992207,1763724364,1920234350,1769235317,221146735,538976266,538976288,1919950893,1919250543,1679849836,1819308905,1746958689,544238693,1954047348,1701345056,1850286190,542330692,1931506537,221148261,538976266,538976288,1768759341,544370542,1920298867,1663067491,543515759,1634036835,779122030,538970637,774971424,1528836659,1092630576,1818849904,825242144,168647990,538976288,757080096,1684300064,1881171045,543516513,1885957222,1735289200,1886745376,1953656688,1177495584,168635945,538976288,757080096,1801547040,1314005093,1684955424,542332960,1835888483,1935961697,1702065440,1635021600,1918985326,1970217060,1953853556,1970237984,1701734772,537529646,538976288,539828256,1702390118,1768759396,544370542,543651170,1478520425,1868767315,1851878765,1701978212,1953656688,543584032,1886413165,1701601889,1734438944,221148005,538976266,538976288,1162092589,1481069890,1701978170,1919906931,1864393829,1819243362,543519845,1953721961,1952675186,544108393,1667590243,168636011,538976288,757080096,1852402976,1931506287,543521385,1769238639,1635412333,1852795252,168636019,538976288,757080096,1852402976,1931506287,1668445551,1868767333,1663067492,1851876716,221147253,538976266,858665248,1528848690,1092628786,1818849904,825242144,168647990,538976288,757080096,1701602080,1886744161,1918988320,1735289203,543584032,539774276,1327508553]},{"sector":3,"length":512,"pattern":0,"data":[1684955424,541938208,1835888483,1935961697,537529646,538976288,539828256,1953069157,543582496,542330692,168635953,538976288,757080096,1919249696,543450471,1663058765,1634561391,1763730542,544175214,1868767309,1851878765,168636004,538976288,757080096,1819042080,1142978415,1868767320,1851878765,1869881444,1919907616,1852776555,840982816,221132344,538976266,538976288,1701978157,1702260589,1195462688,1229735493,1701060688,1701734758,544174880,1701273968,1768711712,1852403824,791158887,1763715398,1818304627,1937334647,1701998624,1953391987,537529646,538976288,539828256,1851877475,1830839655,543515759,1835888483,543452769,1965059956,1763730803,1864397684,1981836919,1634300513,1936026722,537529646,538976288,539828256,1634953572,2003790956,758264608,544500066,1768383858,1919251571,1176513651,1851859027,1397170276,544108320,1647130161,1881175145,1701015410,1919906675,168636019,538976288,757080096,1852402976,1931506287,543521385,1769238639,1635412333,1852795252,168636019]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"data":[538976291,538976288,1936287828,544434464,543516788,1701603686,1852383776,779252851,578381163,1752637484,543712105,1937334643,1634236192,1752440948,1886330981,1851880037,1768697188,1797289075,544438629,1851876717,218762542,538977034,538976288,1836008224,1953391981,1918967923,1935745125,1936024608,1651077731,1763730533,1763844206,1920234350,1952805678,168635938,538976291,538976288,1768186945,1852795252,2037148769,543236140,1768777075,1819239213,1629515375,2003790956,1868767347,1852140909,1763734388,1633951854,1814061428,1936027241,218762542,540094474,1096765519,1328237644,1480679248,1347362860,1280065887,1599098667,541936969,538976288,538976288,538976288,538976288,538976288,538976288,1684093728,1684089956,1851862115,1919888484,1651864364,774774828,805965102,1347362866,1280065887,1599098667,539774290,1096765519,1328237644,1296654160,538976333,538976288,538976288,538976288,538976288,538976288,991961120,744776801,744711265,744779361,1831629423,1932293743,539779701,221130286,540225546,828330063,724710198,1381978191,1327508557,1296654160,540562253,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1684093728,1684089956,1851862115,1919888484,1651864364,774774828,805965102,1347362868,1280065887,1599098667,539774290,1096765519,1328237644,542269264,538976288,538976288,538976288,538976288,538976288,538976288,991961120]},{"sector":6,"length":512,"data":[744776801,744711265,744779361,1831629423,1932293743,539779701,221130286,540356618,1096765519,1328237644,743595856,1599098656,726420545,1381978191,538976333,538976288,538976288,538976288,538976288,538976288,538976288,1684093728,1684089956,1851862115,1919888484,1987013932,1651864364,774774828,805965102,1347362870,724971871,1381978191,1327508557,909205328,1599098667,538976338,538976288,538976288,538976288,538976288,538976288,538976288,991961120,1819308641,925895181,1599098656,842217009,1599098667,1327508562,909205328,1328230963,541941584,538976288,538976288,538976288,538976288,538976288,538976288,1648042016,1684960623,2018254892,805965139,1347362872,859189599,1347365682,539775583,828330063,724710198,1381978191,538976333,538976288,538976288,538976288,538976288,538976288,991961120,1987013987,539785336,744911714,1920164384,1835606060,539782261,745693548,1819503648,959449613,1599098656,1328230963,1599233872,541344833,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1648042016,1885435763,1093667341,1599098656,842217009,1599098667,539774290,828330063,724710198,1381978191,538976288,538976288,538976288,538976288,538976288,538976288,1648042016,1646275700,539783796,745763938,1668571680,1110444557,1599098656,842217009,1599098667,539774290,1230983247,540560717,538976288,538976288]},{"sector":7,"length":512,"data":[538976288,538976288,538976288,538976288,538976288,1648042016,1646275700,539783796,745763938,1668571680,1127221773,1599098656,827082066,540160822,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1664819232,795634785,544238954,1918985582,2020220972,805965176,1347362884,1380009567,541936969,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,991961120,1819042147,1886218799,1734701856,1936092986,1160776205,1599098656,1297236294,538987845,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1664819232,795634785,544238954,544366950,1835363675,805965149,1347362886,875973983,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,991961120,2020633955,946301027,1713384546,744778857,1936287264,168652916,1327509553,1279352656,1347365708,541938271,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1667589179,1852383276,1763716195,745305453,774778400,825297421,1599098656,842217009,1599098667,1145134930,538976324,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1681596448,539779941,744713833,1886351392,1970282540,168650867,1327510065]},{"sector":8,"length":512,"data":[909205328,1599098667,743263561,1599098656,944590153,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1953391931,168653413,1327510321,1179475792,1413566284,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1684825659,1936072748,773860468,168635950,1327510577,1145921360,1279415631,538976325,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1684825659,1936072748,773860468,168635950,1327510833,1414750032,1347362860,1230263135,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1768187451,1713384566,745305453,1835230752,2021160559,774778412,909183501,1599098656,743003219,1599098656,538989651,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1715150880,744776801,1768187424,773860470,168635950,1327511345,1127309136,539773768,1398755407,539773268,1398755407,538976340,538976288,538976288,538976288,538976288,538976288,538976288,538976288,2021156411,168652920,1327511601,842227536,1599098667,538976333,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,2020173371,168654968,1327511857,909205328,1599098667,538976333,538976288,538976288]},{"sector":9,"length":512,"data":[538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,2020173371,168654968,1327513905,944594768,538976304,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1818388027,1713384548,1886679906,1110510093,1599098656,541676627,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1715150880,539780204,745829222,774778400,1127287309,1599098656,1263026993,1347362860,1230263135,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1715150880,1667069275,225996143,541339914,1298092111,538980408,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1818639136,1713384548,225473651,541405450,1298092111,538990680,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1817918240,1532851068,1567194215,539784292,1986098022,1713384549,1869902706,1713384562,1852138604,822742390,1347362886,724971871,1096765519,538976344,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,991961120,1937011558,839519607,1347362864,859189599,1347365682,539775583,828330063,724710198,1381978191,1327508557,1296654160]}],[{"sector":1,"length":512,"data":[540562253,538976288,538976288,538976288,991961120,1819635049,825362957,1599098656,842217009,1599098667,1330470738,1327508548,909205328,1328230963,743595856,1599098656,1397574985,538976312,538976288,538976288,1765482528,225211757,540160522,828330063,724710198,1381978191,1347362860,859189599,1347365682,743264863,1599098656,842217009,1599098667,541936969,538976288,538976288,1835612960,168651893,1327510322,909205328,1328230963,1599233872,742674253,1599098656,842217009,1599098667,1327508562,909205328,1328230963,1296654160,538976333,538976288,1970104635,839519596,1347362868,1280065887,1599098667,539777089,1230983247,540560717,538976288,538976288,538976288,538976288,538976288,538976288,538976288,991961120,1629515369,2019654764,2019648892,1835606060,839519597,1347362869,1280065887,1599098667,539777089,1147097167,538976344,538976288,538976288,538976288,538976288,538976288,538976288,538976288,991961120,1629515369,2019654764,2019648892,2019827756,909249037,1599098656,538976307,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1765482528,857764974,926026253,1599098656,944590153,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1765482528,2015392878,1629498488,2015388769,1629498488,2015391073,839519608]},{"sector":2,"length":512,"data":[1347362872,1279611487,538976312,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,991961120,746092650,1869573152,746092656,1886218784,1869116192,168653938,1327511858,909205328,1328230963,1297243984,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1818321723,1835695212,1970306160,1528850547,1567450477,1093798413,1599098656,1328231985,1297243984,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1815814176,539783796,1952738412,1835802668,539785075,1920099702,1702240300,539785074,225604723,541209098,828330063,724710198,1381978191,1327508557,1163091792,1195725383,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1869429536,1916543094,2084464485,1835363675,1008741469,1919378803,839519550,1347362883,1195725663,742868306,1599098656,842217009,1599098667,538987858,538976288,538976288,538976288,538976288,538976288,538976288,991961120,544632685,1734701884,1009532530,1046963570,1701665660,168648045,1327514674,1279352656,1347365708,743981407,1599098656,726420545,1298092111,1397114447,538976288,538976288,538976288,538976288,538976288,538976288,1987013947,2087477536,1702656097,539785313,1835363675,839519581,1347362885,1280065887,1599098667,1179012941,1327508563]},{"sector":3,"length":512,"data":[1279352656,1347365708,542654815,538976288,538976288,538976288,538976288,538976288,991961120,544632685,1835363675,1629498461,2019654764,2019648892,1177684493,1599098656,1347365688,1096766047,539771972,945770575,1599098667,541936969,538976288,538976288,538976288,538976288,538976288,538976288,1832591392,1008760431,1046963570,1765548076,222195053,540029706,828330063,724710198,1381978191,1145323871,1347362860,859189599,1347365682,1296910687,538976288,538976288,538976288,538976288,538976288,1869429536,1916543094,742287205,1835613216,168640109,1327509811,909205328,1328230963,743595856,1599098656,1397704787,539777609,945770575,1599098667,538987858,538976288,538976288,538976288,538976288,1987013947,539785338,1937141613,856296824,1347362866,859189599,1347365682,539775583,1398755407,1230196552,1327508570,909205328,1599098667,538987858,538976288,538976288,538976288,991961120,2054582125,1830825080,2020832879,858982925,1599098656,944590153,1347362860,1280065887,1599098667,538990657,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1866145824,1763734645,539782509,1635544161,1634040952,856296824,1347362868,743982175,1599098656,726420545,1096765519,538976344,538976288,538976288,538976288,538976288,538976288,538976288,538976288,991961120,544503151,1630304356,2019654764,2019648892,892537357,1599098656,842217009]},{"sector":4,"length":512,"data":[1599098667,538976333,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1882923040,1528852591,1567450477,909314573,1599098656,842217009,1599098667,541936969,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1882923040,543716213,1835886908,856296766,1347362871,1296910687,538982483,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,991961120,1752397168,1954112032,1953505381,1765548146,222195053,540553994,1096765519,1328237644,1297243984,1347362860,538980703,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1752382240,1931488364,539783784,745303922,1919906336,774774828,856296750,1347362873,1280065887,1599098667,539774290,1130319951,538976332,538976288,538976288,538976288,538976288,538976288,538976288,538976288,991961120,745302131,1919447840,1869750316,1914711148,539783791,221130286,541143818,1096765519,1328237644,1297243984,1347362860,1296910687,538976312,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1752382240,1931488364,539783784,745303922,1919906336,774774828,856296750,1347362882,724971871,1230983247,538987853,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,991961120,544499058]},{"sector":5,"length":512,"data":[1914711160,543585381,856296824,1347362883,1328232543,1297243984,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,991961120,2020894067,856296824,1347362884,859189599,1347365682,743264863,1599098656,842217009,1599098667,1327508562,1296654160,538982477,538976288,538976288,538976288,991961120,1684826227,1752375340,168649842,1327514931,909205328,1328230963,1297243984,1347362860,859189599,1347365682,539775583,1130319951,538976332,538976288,538976288,538976288,538976288,1818784571,1931488356,224686696,541471498,828330063,724710198,1096765519,1327508568,909205328,1328230963,1599233872,541344833,538976288,538976288,538976288,538976288,538976288,1668823840,168650600,1327509556,909205328,1328230963,1599233872,742671425,1599098656,842217009,1599098667,538990657,538976288,538976288,538976288,538976288,538976288,1751349307,587861351,1701336096,2019913248,1769152628,1970086008,1646294131,1852383333,1667329312,1701734760,1685221152,221147749,540095498,1163874383,873074003,1347362866,223560543,540226570,1398755407,873074003,1347362868,223560799,540357642,1180651599,873074003,1347362870,223561567,540488714,861884495,1347365682,1298092639,539771983,1130319951,538976338,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1869429536,1916543094,742287205,2018657056]},{"sector":6,"length":512,"data":[942934541,1599098656,539775555,861884495,1347365682,1298092639,538985551,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1832591392,1126200943,539785298,1734701628,873073982,1347362873,724710239,1381978191,1146047839,1347362860,542262367,538976288,538976288,538976288,538976288,538976288,538976288,538976288,991961120,544632685,1734701628,1380199486,873074040,1347362881,743588959,1599098656,1328230963,1599233872,541347661,538976288,538976288,538976288,538976288,538976288,538976288,538976288,991961120,544632685,746082884,1701985312,168640103,1327514164,842227536,1599098667,1330470738,1327508548,1381261136,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1987013947,1701985312,1412185703,168654930,1327514420,1381261136,1347362860,724710239,1381978191,1146047839,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1987013947,2018661408,1701985324,168640103,541340707,1298092111,539777101,861884495,1347365682,541938271,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1869429536,168649846,541406243,861884495,1347365682,743264863,1599098656,542657869,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1869429536,168649846,541471779,1298092111,539777101,912216143,1347365684]},{"sector":7,"length":512,"pattern":0,"data":[541938271,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1869429536,168653174,540030243,912216143,1347365684,743264863,1599098656,542657869,538976288,538976288,538976288,538976288,538976288,538976288,538976288,538976288,1869429536,168653174]},{"sector":8,"length":512,"data":[538976291,538976288,1936287828,544434464,543516788,1701603686,1852383776,779252851,577008239,1226842158,1768366196,544433526,543516788,1701081711,1919950962,1919247973,1701015141,1752440947,168653921,538976291,538976288,1953723757,543515168,1886610802,1702126437,2036473956,1701344288,1936941344,1818389861,221147749,587861258,538976288,1126178848,1701670255,544437358,543519329,1679848289,1919120229,1684365929,544106784,1936615714,1932423796,774009957,168626701,538976291,538976288,1751343429,1869490208,1868770670,1852140909,1814047092,543518313,1970235507,1646290028,543236197,1919508848,543584032,1937335659,1411391534,1948280168,1701601889,1852139309,1952543333,224882281,538977034,538976288,1869770784,1835102823,1818851104,1751326828,543908709,1952540788,1701344288,1685221152,1864397413,1852383334,1970435187,1869182051,1635131502,1851877746,1713402740,1696625263,224944993,538977034,538976288,1936615712,1668641396,1852795252,544106784,543516788,1701603686,1852383776,779252851,578053491,544434464,1886220131,1651078241,1998611820,543716457,1751343461,1767993376,168636018,538976291,538976288,1847617097,539784303,1998615657,543976553,1701995379,221146465,805965066,825237555,858786317,221392928,540094730,168636465,840970290,839519538,926031926,942803469,222507040,541471242,168636976,807415859,839519538,892346436,1160907277,221524000]},{"sector":9,"length":512,"pattern":0,"data":[540094730,168638770,807418162,856296773,909320247,942869005,222376736,541471498,168637488,807421491,873073973,875569200,808716813,221589536,541470986,168638769]}]],[[{"sector":1,"length":512,"data":[538976291,1936287828,544434464,1936615714,1932423796,740455525,1701344288,1767992608,1852383342,1970435187,1869182051,1702043758,1701060724,1769104243,1869182064,1768300654,221144428,587861258,1411391520,1713399144,1634562671,1718558836,1768453152,1768300659,1763730796,1935745139,1819239968,1937207148,1176510510,1953722985,543584032,745303137,1634492960,1814063982,1936027241,539167245,1851858976,1768693860,544433518,1936681079,1768300645,544502642,1918986339,1702126433,1936269426,656433440,1629497123,1663067506,1701670255,1814066286,1936027241,218762542,538977034,1752452896,1769435749,539780467,1751343461,1852402720,1868767333,1936290670,1864397684,1852776550,1919885413,1919905056,1768300645,1935961189,1702043692,1634886000,543450484,168655202,538976291,1667330163,673215333,544503138,544501614,1935827316,168635945,539167245,1750343712,1768300645,544502642,1818585446,1936269412,1701344288,1668312864,543515759,1818585446,538979940,1814066249,1936420719,1802071072,1752440933,1868963941,2003790956,979857001,539167245,538976288,1583292448,2021161070,539167245,1919885344,1583292448,2021161070,2021161007,539167245,1919885344,1583292448,2021161070,2021160995,539167245,1919885344,1583292448,2021161070,2021161002,539167245,1699225632,221930866,538977034,543105056,1764237344,1919950950,1852142437,1931487604,1768843113,1936025958,1634235424,1752440948,1768693861]},{"sector":2,"length":512,"data":[1629513070,1768714352,1864397669,544828526,1948282740,168650088,538976291,538976288,1936941344,1818389861,221147749,538977034,1851662368,1764237344,1919950950,1852142437,1763715444,811475059,1919903264,1145127200,544370464,743260481,540106272,544370534,539771460,1713386078,1142977135,168635479,538976291,538976288,540237344,544370534,539771972,1713386590,1327526511,539772754,543452769,1713386846,857764463,1768038450,1886330996,1851880037,1919950948,2020173413,587861294,538976288,544766072,1629516649,1886330990,1701080931,1701735712,1768845165,168636003,538976291,657401632,1634037024,1752440942,1948284001,1713399144,1869376623,1735289207,1668312864,543515759,1948283753,857761128,1768041778,1635131508,1851877746,1718558836,1701344288,539167245,538976288,1713381408,1953722985,1701736224,1851858988,543236196,543700534,1717924464,1998616681,543976553,1953068915,221145187,538977034,589766688,1701650471,1948282465,544498024,543516788,1819045734,1852405615,1886330983,1701080931,544434464,543516788,1647129139,1981838441,1634300513,1864397934,1752440934,587861349,538976288,538976288,1936877926,1852776564,1629498469,1629512814,1748448800,1701998624,544762214,1819044215,1769435936,778593140,539167245,656416800,1830823722,544104805,1952540788,1701344288,1701998624,1768187235,1864394606,1685021552,1668227173,1936880995,1953068832,543236200,1414086999]},{"sector":3,"length":512,"data":[1936615712,1668641396,1852795252,587861307,538976288,538976288,543516788,1819045734,1852405615,1998597223,1869116521,221148277,587861258,1411391520,1914725736,1767992677,1735289198,1701406240,544433260,1668506980,1700948338,1701344288,1936683040,1818388851,1635131493,1851877746,1864397684,1752440934,1852383333,1970435187,1869182051,168636014,538976291,2036688980,1986095136,1752440933,1868963941,2003790956,543649385,1836216166,980644961,539167245,538976288,1281302560,1915713656,225327918,538977034,538976288,2018271008,712126328,168652347,538976291,538976288,2021149791,992375343,587861358,538976288,1595940896,2021149764,1798992431,225327979,538977034,1919240224,168639077,538976291,538976288,538976351,543582504,1936028272,695496293,1634037024,1948283758,544498024,1936287860,1918989856,1953390953,544434464,1646292852,1937055845,1864393829,544828526,168655202,538976291,538976288,538976288,543516788,1702064993,1701601901,168636018,538976291,538976288,538976324,543582504,1936028272,695496293,1634037024,1948283758,544498024,1936287860,1918989856,1953390953,544434464,1646292852,1937055845,1864393829,544828526,168655202,538976291,538976288,538976288,543516788,1634953572,1835365235,1919249506,587861294,538976288,1277173792,673194016,1881171561,1702061426,539587694,1851876717,1752440947,1948284001,544434536,1629516649,1668246560,1818386795]},{"sector":4,"length":512,"data":[1852383333,1970435187,1869182051,168636014,538976291,538976288,538998904,543519329,543518319,1948283503,1646292855,1936028793,543584032,543516788,1953721961,1952675186,544108393,1818585446,168636004,538976291,538976288,538997295,543582504,1936028272,695496293,1701868320,1768319331,1948283749,572548456,1881154162,544502369,1629515369,1146047776,1195725344,1296387375,1954112032,168636005,538976291,538976288,538976302,1768189545,1702125923,1752440947,1948284001,1763730792,1920234350,1769235317,1746955887,1847620449,1886330991,1851880037,221148004,538977034,538976288,538978848,1684957472,1952539497,1948283749,544498024,543516788,1702132066,544434464,1919950945,2020173413,1330391072,1864387395,1163010162,774778448,168635945,538976291,538976288,538976294,1768189545,1702125923,1752440947,1948284001,1646290280,543519865,1629516649,1734701856,1953391981,1701998624,779643238,539167245,538976288,1798971424,1768366187,544433526,1763733089,2019910766,1953392928,1752440943,1768300645,572548460,1953721961,1701523058,539894393,1634227232,1768300660,1730176364,1936029289,539167245,538976288,538976288,1752440864,1886330981,1851880037,1768693860,1629516915,1668248435,1702125929,1869881444,1701344288,2036689696,1411391534,1797285224,1663072613,1769172591,544437363,168650351,538976291,538976288,538976288,544175988,544761192,1768384868,221148020,538977034]},{"sector":5,"length":512,"data":[538976288,544095008,1718167584,1701998624,1953391987,1852383273,1633904996,544433524,543516788,1668248176,1869837157,1852776562,1768453920,1948280931,225667432,538977034,538976288,538976288,1936615712,1668641396,1852795252,1919510048,1629516915,1634037872,778331506,1699225632,1847616882,2036428064,543515168,1752440881,1735749490,775299176,220400141,538977034,1701336096,1685221152,1864397413,1752440934,1635131493,1851877746,1763734388,1835606131,1953656688,745827937,1667588640,1702065505,1701344288,1936941344,1818389861,1998615141,543976553,1701536116,539167245,1752440864,1768300645,544502642,543518319,1952540788,1953064480,1752440947,1852383333,544503152,1701734764,218762542,538977034,1717916192,1852142181,980641123,539167245,1095311392,540160813,1702129225,1916870764,1953065059,1970561893,1394632050,2004117103,543519329,1702257988,1701867372,544417650,1970168141,539782241,1970040662,840983917,168626701,543252833,221132595,1630559754,1679844449,926038581,811469325,544039265,842675300,1628048695,857764705,168636006,543384673,791885900,858798642,976498976,1277178160,841953336,540160058,976236876,824194096,892353074,1684081165,944513124,976236339,807416624,825244212,808995872,809119791,810295346,875575856,976367648,168637744,543452769,791885900,858798644,976499232,1277178160,875507768,540160058,976237132,840971312,892353074]},{"sector":6,"length":512,"data":[1918962189,908094576,909130291,168636987,1853189986,842408036,993472570,1644825905,807429747,979591782,859519024,1935804941,1714430066,809133154,221461304,1647664650,1885435763,1667641376,959461944,168637499,807433314,976445798,859521328,1650864160,976498529,859521584,1952582157,810295395,979526246,859521328,1714441248,925852002,994193466,1644825907,1277194868,862086704,994127930,810295347,794911334,1110456886,168637243,544437346,1634086988,1093679714,1277178683,1633838640,809121071,221461314,1818321674,946151532,541274170,841967206,540619322,858744422,541405242,809132345,1661603140,1664055138,543515767,221132857,1668047626,775448096,1818429965,1667637348,1661603118,1713400172,168636001,1937009763,812003360,842739254,1835207181,895885411,1661603118,1635151725,879112224,942684727,168638011,1987013987,807429473,976434278,909850672,1835207181,543323759,842294832,993538106,1661603126,1651928941,1714430053,809121332,221657912,1835228938,543389295,842294832,993538106,1594494262,1987013987,1714430053,809120820,221657912,1869439754,807430006,979776614,909850672,1835207181,1701279343,879112224,942684772,168638011,1987013987,1714430060,809132852,221657912,1869439754,543517814,1697932848,993538106,1594494262,1987013987,807428462,976630886,909850672,1667172877,1853255533,807429473,976368742,909850672,1667172877,1853255533]},{"sector":7,"length":512,"data":[1714430050,809120564,221657912,1835228938,1651406447,1714430053,809121588,221657912,1835228938,1668183663,879112224,942684723,168638011,1869439839,543518326,892626480,993538106,1594494262,1987013987,807429998,979711078,909850672,1667172877,1853255533,807429479,979580006,909850672,1667172877,1853255533,1714430060,809133108,221657912,1835228938,1819178607,1714430053,809133620,221657912,1869439754,544173686,825517616,993538106,1594494262,1987013987,807432302,979514470,909850672,1835207181,1936619119,879112224,942684729,168638011,1987013987,807434862,976565350,909850672,1835207181,544175727,808740400,993538106,1594494262,1987013987,1714430064,809132340,221657912,1869439754,543518838,1630823984,993538106,1661603126,1886809965,1714430063,809132596,221657912,1869439754,807433078,976761958,909850672,1835207181,544896623,875849264,993538106,1661603126,941650029,976695091,857748272,825244259,791689248,842021431,976761632,857748528,892353121,1835207181,543322992,221132385,1886216970,1664055155,1685287021,775381280,1835207181,1751349360,810295399,976249446,876295216,1835207181,1751349360,543307879,929261104,809120047,221592390,1970299658,807429225,775053670,168637755,795113315,544302179,221133113,1633772554,775369248,1633946125,1714561139,1594494254,1650733406,1583286797,224683059,1667589130,976761888,1277178161,825189734]},{"sector":8,"length":512,"data":[540029242,1717980228,825897263,1678380336,1713403497,976629558,168636465,1681022559,1695157623,1919251566,976773920,825963057,845548045,540110200,812005732,1711934766,544432737,828717412,1711934766,543450209,808400996,540225850,808412004,540291386,811808868,540356922,811819876,221655354,1684104714,1679847524,976249701,1595946801,828597604,1711934766,543452258,875521636,222376250,1935828490,1679847540,976629606,168640817,1936221030,1698260000,168635952,1701602150,1852189304,2019912803,1700946976,168635954,1869439846,1679843958,976249697,909849905,1667631629,1651928941,1633951845,825897060,221657909,1835230730,543520367,946037092,993341754,1711934774,1987013987,1679843950,976249698,909849905,1667631629,1853255533,1679844706,976249954,909849905,1667631629,1853255533,1650729061,825899107,221657909,1835230730,1970173551,1684169760,892418616,168638011,1869439846,1679848822,976774241,909849905,1667631629,1679846767,976367416,1679831857,976367459,1679832113,976249912,1595949873,828651620,1682186286,976249955,168641329,1836016486,1650729065,825897062,540425027,1717724255,909848113,1667631629,1885957487,1717986336,1127299632,1595946555,828794468,221657902,1868785162,1679847533,976432952,1679831857,976432995,1679832113,976774200,1595949873,962869348,1682186286,976774243,1142965041,811885924,222507322,1868785162,544239725,962880868]},{"sector":9,"length":512,"data":[1711934766,544436067,1717975396,221461294,1701078538,1886679907,1715037216,168635958,1936286822,1852189289,1769171300,1700946976,168635953,1986618470,792224800,858864182,795042848,875641398,1714971680,892418608,1717789728,909195832,1684408845,544241257,946234724,540487994,1717920863,168635961,1986618470,946086002,825898799,1667506227,825898799,946085940,825899110,1667506229,825897062,1711934774,1920362852,1701060720,825897062,1683955767,774989413,1701186061,1714055534,1768842606,1700946976,168635952,1701996134,1684283493,825897059,1711934786,1701147238,1717837936,825897059,1711934786,1684300137,794911776,942750256,795173920,959527472,1768294925,544042851,841965924,540553530,841966948,221851962,1667851786,544238959,858743140,540553530,858744164,221851962,1684629002,1679849065,976629601,1679833137,976629605,168638769,1768188262,1679848054,976695137,1679833137,976695141,168638769,1684826470,794977312,942750256,795239456,959527472,795239456,1177565749,1768294925,543978861,825188708,540553530,825189732,221851962,1852401162,1886679907,1715037216,168635959,1768843622,1852189300,1953066601,1700946976,168635955,1953720678,794977312,942750258,795239456,959527474,1768294925,544240755,858743396,540553530,858744420,540619066,925853284,222703674,1936287242,1679843957,976498529,1679833137,976498533,168638769,1970497894,1679848034]}],[{"sector":1,"length":512,"data":[976564065,1679833137,976564069,168638769,543452262,808401252,540225850,808412260,540291386,892297828,541339962,811809124,222441786,1684825610,962863153,221132901,1684825610,544485996,962935140,1711934766,845964396,962863205,221143397,1684825610,1679845744,778200377,1818626573,845638756,1698260000,168636003,1818520678,1679831662,778331449,1818626573,1679850084,778396985,1818626573,544695140,892287332,221851962,1684825610,544632421,875510116,222638394,1818648330,1986946404,1818636151,1986946404,962863204,825898031,1711934789,543978861,825178212,540225850,825189220,540291386,946026596,540356922,946037604,221655354,1970103818,1679847532,976773989,1595946801,962815332,1711934766,544239470,811874660,1711934766,1635017072,962863214,221131622,1919968778,1679846757,775448121,1885735437,829252978,1715037216,859516469,1885735437,544104820,845560164,1711934766,1768189554,1679848558,778266169,1919289869,1919906931,795108384,1160854068,1717504525,1869902706,1714386802,1869902706,1679844466,976498532,168641841,1986098022,1852189285,1702257011,795108384,1160854070,1717504525,1702257011,1936076663,1684371041,795108384,1160854070,1936067085,1701601635,1715037216,168636004,1952805734,1679846768,775185762,168636987,1852404582,1715037216,859516517,1936067085,1868787305,962863219,992895590,1711934771,1953657203,1715037216,168636001,544502630]},{"sector":2,"length":512,"data":[841955684,540225850,841966692,540291386,811885668,222441786,1953719818,962863216,825897775,1684283443,825897775,1650729012,825898799,1684283460,825899108,1682186306,976774201,1142964785,811886180,541208890,1684431940,1110522424,1936067085,712467316,1953721958,1679849315,976695097,168638769,1702130534,1714058862,1702130542,1679849070,976629561,168641841,1953719903,2004250213,1953719855,1685483109,792290336,1160854070,1936067085,712471412,1953721958,1679849331,976250214,842745393,795108384,959527479,1936067085,1679843957,976498488,1679831857,976498531,1679832113,976250168,1679832369,976774499,168638001,1651864422,1701060720,825899109,1683955767,775513445,1936067085,544367221,892287076,540225850,892298084,540291386,946157668,540356922,811950948,221655354,1970497034,544240226,811951460,540487994,1701143647,168635953,1953723494,1698260000,168635956,1868789094,1684283501,825897061,540228419,1701078111,859516465,1969621517,1768779619,1700946976,1127299640,1595946555,962945636,221657902,1668638218,1885957487,1701209120,1127299640,1595946555,962946660,221657902,1668638218,544238959,946168932,994259258,1683955763,775513444,168637243,1868789094,544239725,962945380,221461294,2003197706,544500065,221143609,1635280394,962863213,221132133,1668834826,962863208,825899107,1683955779,775512889,1684292640,825899107,1682186307,976773990]},{"sector":3,"length":512,"data":[168641329,1920235622,544498529,879114596,1711934766,2016570489,1715037216,168635953,845969766,540110968,963000676,1745489198,1713402988,168635956,1986618473,792094240,808532535,1835600397,1713400949,976564022,807415857,979788134,859519024,979514912,825962546,1647730464,993079866,959848497,993145402,912203825,858929721,168636731,1696624233,875706932,979592480,168637746,543387241,825897012,1716265009,976236389,1142960177,795240012,808532528,1852377613,908092019,825962083,1852377613,1764718451,543454062,992896054,1762266417,1663071342,909261411,979657504,168638258,829714025,774989344,168637243,1869901417,778396448,1852377613,807429238,775434342,168637499,1819700841,807430000,791752806,1160854071,168637499,1952805481,1701996847,1663067252,168636006,924868970,942815799,946221088,1127234103,168637243,543514986,842674999,1714430008,809120568,221461315,543320586,842674743,1714430008,809120312,221461315,1700948490,976631584,807417906,976631910,859521840,1784613389,842473571,540553786,842556976,994259002,1779043635,595228771,2019779946,862265466,221786682,1701469962,976500512,807417906,976500838,859521840,1735002637,979777312,807417906,979777638,859521840,1735002637,1681334373,540553786,1681417776,994259002,1779043635,1664557164,540553786,1664640560,994259002,1779043635,924869996,942815845,946221088,1127234149]},{"sector":4,"length":512,"data":[168637243,1634626143,976631584,807417906,976631910,859521840,1784613389,543514990,842674743,1714430008,809120312,221461315,1852464906,859250786,540553786,859334192,994259002,1594494259,1700949610,976697120,807417906,976697446,859521840,1784613389,924869486,942815795,946221088,1127234099,168637243,1701735007,976566048,807417906,976566374,859521840,1784613389,924870510,942815845,946221088,1127234149,168637243,1735289439,1664557157,540553786,1664640560,994259002,1594494259,543977066,842687543,1714430008,809133112,221461315,1852464906,924869996,942815846,946221088,1127234150,168637243,544173674,842674487,1714430008,809120056,221461315,1852464906,1647779952,540553786,1647863344,994259002,1779043635,924873582,942815801,946221088,1127234105,168637243,544894570,842675511,1714430008,809121080,221461315,544172554,842674231,1714430008,809119800,221461315,1886019338,979449632,807417906,979449958,859521840,1885997581,1631002725,540553786,1631086128,994259002,1779043635,924872560,942815842,946221088,1127234146,168637243,924873578,942815800,946221088,1127234104,168637243,924875370,942815796,946221088,1127234100,168637243,544238954,842687077,962928696,541274170,875521638,540619322,892298854,541405242,809132389,1812598084,543582305,221144633,1918987274,812003360,942684722,168636987,544433260,809121123,1812598071]},{"sector":5,"length":512,"data":[1663071077,925907508,1718356493,1714430067,809120866,221461303,1936157706,1650864160,925907509,168637243,544437100,845309488,993472570,1812598067,941646181,925907556,1701579277,543520353,992885091,1812598065,544498791,825255472,825897519,221395781,1684630538,1714430068,858730800,994390330,1812598066,544498796,808478256,842674735,221395777,1936550922,1714430071,909062448,994128442,1812598066,1633968495,807431276,775237734,1142960699,925918768,221461294,1668246538,811999339,1812598058,1651729519,778264864,1869351437,796357476,1935961964,1684086884,1594494254,1886351212,976381216,168638514,1886351212,1869357943,543453295,842674789,1594494264,1886351212,828711013,221786682,1869373194,2003136623,1869573155,543450480,842674533,1594494264,1886351212,828711034,221786682,1869573130,595032688,1886351212,1696621690,942815793,1818167821,1852862319,811933797,221786682,1869373194,1701736559,1869357943,1701736559,811933796,221786682,1869373194,2054058095,976250144,168638514,1886351212,595032686,1886351212,543455854,842674277,1812598072,807431283,976433254,842741808,1953237517,1714430066,858730544,994128442,1829375282,1629517423,1144142384,976380192,941638962,875575864,979449888,941634864,1110588003,979712032,1646281522,1177696816,976773664,1663053875,976236342,807416368,976237158,859518772,845557792,942946866,807416635,976302694]},{"sector":6,"length":512,"data":[859519284,845557792,1093941811,807416635,976499302,859521588,845557792,1127496246,168637243,1937141613,878780514,1829375278,2004055663,1987013935,1629512819,168635957,1937141613,1714430072,859465058,540228401,1717724720,993145658,1829375283,2021291631,1650864160,825440822,807416635,976708198,859517491,1970080269,912662636,825898031,1846152496,1277192037,858732134,221262138,1886350858,774912288,1869482509,1716265076,976367414,168636465,1277194863,825176888,540225594,809132848,944513073,976301872,1277178416,809121840,1630543924,221589562,878599946,224883311,1953853194,976643360,1696609075,875772517,1970211341,543322996,992896310,1862929713,2004055157,1953853231,908092531,825962086,1869613581,1714954352,859451439,943005749,540094778,876242481,925900852,540095546,876230449,1714430003,876228961,540228405,962684464,993408058,1879706931,794914927,1634758512,825630820,221330222,1886351370,1869623142,543450736,221144121,1937076234,808788072,540094778,909076070,540619322,859463990,540097335,859453494,540097334,876242224,909189170,540226618,876242225,909123636,540095546,811689520,993342522,1714430003,876230753,221461302,1937076234,1882153320,1634235253,808853604,221330222,1937076234,1882154600,1718121333,1664688228,1913261358,1679846499,976367408,1679833139,976367410,1663056179,976367408,825966899,1668418061,811868274]},{"sector":7,"length":512,"data":[859452207,845422648,859452207,811802681,859452207,221330241,1835299338,807432819,775041894,168637755,1836082290,1714430051,992883507,1913261366,1668510820,862335008,893070897,1701972493,862330992,1913261354,543518821,220869478,1701994250,1713404528,168634931,1852859762,845553765,1594494250,1852859762,845553786,1913261354,1663071333,1663053363,1110653490,1701972493,1915709044,1684436069,778199840,979460896,168641075,543977330,808398948,540554042,808399460,540619578,808398947,994128698,1913261361,1679848047,976301872,1679833139,976301874,1663056179,976301872,825966899,1936853517,1714430061,992895329,1930038581,543582305,221144377,1818325770,811884320,859452463,1683955768,976498482,1595947315,875507811,994128698,1682186289,976629552,1142962227,909062756,540619578,791700292,1093876278,168636731,1668047219,775316512,1634929165,811868274,859453231,845422648,859453231,811802681,859453231,221330241,1650619146,859327520,809120559,1664163891,540094522,791689292,842021427,942754848,540291130,809132337,1930038581,1651728739,778395936,1668483597,796357473,1935762291,1717641316,1930038574,543257701,926508592,994259770,1930038579,1700885605,962998304,1127430707,168637243,1651795315,962998304,1127430706,168637243,1651795315,1714430053,859452985,221461315,1702059786,807428980,976370022,859521843,1935608333,543519845,876176944]},{"sector":8,"length":512,"data":[994259770,1930038579,543650917,1715037744,994259770,1930038579,1701278821,962998304,1127430756,168637243,1819567475,962998304,1127430755,168637243,1819567475,1714430053,859465017,221461315,1702059786,543256180,909731376,994259770,1594494259,1853121907,807429473,976370022,859521843,1935608333,1651405925,962998304,1127430707,168637243,1952805727,543515246,926508592,994259770,1594494259,1853121907,1714430051,859452217,221461315,1702059786,543518324,892954160,994259770,1594494259,1853121907,1714430055,859465017,221461315,1702059786,1701277300,962998304,1127430755,168637243,1952805727,807431278,979646822,859521843,1935608333,1819178085,1714430053,859465273,221461315,1952805642,807432046,976304486,859521843,1935608333,1886286949,962998304,1127430754,168637243,1853121907,1714430067,859453753,221461315,1952805642,807434862,976566630,859521843,1702038029,807432052,976238950,859521843,1935608333,544240741,1631151664,994259770,1930038579,1701868645,962998304,1127430753,168637243,1886676339,1714430063,859464249,221461315,1952805642,1714430067,859453497,221461315,1952805642,1714430074,859452473,221461315,1684501258,1714430068,808399152,994390330,1930038578,1679846504,976498480,1679833139,976498482,1663056179,976498480,825966899,1752369677,807429228,976511334,859522099,1634086944,1160985141,168637243,544368755,892285028,540554042]},{"sector":9,"length":512,"data":[892285540,540619578,892285027,994128698,1930038577,543453800,1667327536,994325306,1714430003,859464801,221461317,1684632330,1714430068,825176368,994390330,1930038578,544498796,808478256,842674223,221395777,1936552714,1714430071,875508016,994128442,1930038578,1713398644,168635961,543454323,221144166,1769239306,778200608,1953696269,543322991,221143393,1869902602,1932490611,1685286772,778199328,1953696269,1714430066,825176112,994128442,1930038578,1277190773,892285752,540225594,809132850,944513073,976564016,1277178416,809121842,1630674996,221589562,1937339146,1702129253,1714430066,992883763,1930038582,2019914617,807433321,775238502,168638011,1953719668,976773408,1713385776,976236342,1142960688,825177702,540160058,809120824,945758260,892353076,1702234637,807432818,791687270,1093810740,168636987,2003985782,812003360,976564016,842744114,1635191309,958428265,168636002,1852400247,807429238,775499878,168637499,1936552567,1714430066,992882739,2013924661,543450209,1667641420,875575856,168637499,1734894456,976238880,1595950643,876228665,1281302576,809121336,944513076,892353078,1819806221,1595962465,221132644,1634498570,1679843956,168635959,544370552,791885900,858798646,976499488,1277178160,909062200,540160058,976237388,857748528,892353074,1936001549,909270816,1661603110,845095027,168633957,1595962227,220608051,544433162]}]],[[{"sector":1,"length":512,"pattern":0,"data":[644166495,1936067085,875978528,1728711974,912203891,168633909,1835885859,1714430067,992884535,587861301,1685483373,912666656,1144273509,807417147,979711846,893076788,1831012877,544306799,1714841136,994456634,1714430005,893019703,221592368,10]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"data":[538976288,538976288,538976288,538976288,538976288,542461511,1162757447,541868370,1279415632,1277182793,1313162057,537544019,538976288,538976288,538976288,538976288,538976288,1700143136,1869181810,741548142,540619296,1701737802,808464928,537528887,2037411651,1751607666,1126703220,808591401,1176516400,543516018,1952870227,1701994871,1970226720,1952539758,745434985,1668172064,1748770862,980448372,1936076591,1919888998,171847527,1702249760,1852799346,1936269413,1919250464,1953786221,1948279909,1868767343,1629518192,1679844462,1920234345,1953849961,1702240357,1952539250,1663069545,1701408879,1864370803,1752440934,1814066025,1852138345,1679844723,1836409711,745827941,1953849888,1634231072,1852401518,1953046631,544434464,544501614,1869376609,778331511,538970634,538976288,538976288,538976288,538976288,538976288,538976288,1917853728,1651335525,168453484,1750343712,1313284197,1699160149,1634887022,1968185452,1667853410,1667845152,1702063717,544434464,1919295585,539780453,2037411683,1952867692,1667853344,1702063717,1919903264,1718579978,1918990196,1851859045,1953439844,544367976,1684957547,1718558835,1919907616,170816363,1411391498,1814062440,1852138345,544433523,544370534,1953722221,1718580000,1918990196,1851859045,1953439844,544367976,1667330672,1633905012,1870078060,544435058,543519329,1769170276,1684368999,544175114,1701536116,1635213600,1870209145]},{"sector":4,"length":512,"data":[1713402485,1684366706,1948282223,1752375407,543519329,543452769,1851877475,1948280167,1998611816,1936421487,1109401646,1868767353,1634890862,170685555,543516788,542461511,1701733703,543973746,1818391888,1277191017,1852138345,1763730803,1852383347,1684956532,1948279909,1969692783,1851880033,543516020,1920298873,1701996064,1836016741,175076384,1918986355,1851859045,1751326820,1701277281,1819042080,1919252000,1852795251,1718558835,1881170208,1919381362,757951841,1830842228,543517537,1701999987,544500000,1634559346,544435817,1701147238,1718579978,1918990196,1868963941,1818304626,1953046636,1937055859,779317861,1700208672,1752440876,1917198437,1394632037,2004117103,543519329,1853189958,1769234788,539782767,543519605,174418036,542461511,1701733703,543973746,1818391888,1277191017,1852138345,1713399155,1830842991,544502639,1864394351,1931506293,2004117103,996504161,544500000,1819308129,544433513,1869835361,175076384,544829025,1701344367,1870078066,1914727282,1634036837,543450483,1936287860,2036430624,544825888,544437353,1752462689,779317871,1868111904,1633886325,1885413486,544828528,1948284009,1870203503,1881174645,1919381362,745762145,1869575200,537528878,1701336864,1702305902,1701868320,1864395617,1919295590,1931502949,2004117103,744845921,543520544,543519329,1701209458,1852404338,1869881447,1701996064,1836016741,1869488172,1919945332,778396521,1968119840]},{"sector":5,"length":512,"data":[1699160178,1634887022,1968185452,1667853410,1667845152,1702063717,1918967923,1701060709,1852270963,1948279909,1634541679,1931502955,543519349,1952540788,1970239776,1986095114,1752440933,1919295589,1868850533,1869881453,1936286752,1651077748,543519861,1768976227,1864397669,1919295590,1931502949,2004117103,543519329,1684955432,1634231072,543516530,175271782,1835362420,543582496,544567161,1752394103,1948265513,544498024,544567161,1701012850,543520361,1920298867,1663067491,543515759,1663070831,1730178657,1763734629,1718165620,1970239776,1851881226,1953046644,1752440876,2032170081,1663071599,1663069793,1735287144,1752440933,1869815909,1635218534,1864394098,1937055858,1768956005,1936024421,543584032,1763734633,1701716078,1919289975,1881171301,1919381362,745762145,1684955424,1634235424,1870209140,1852514421,2032170863,1663071599,1679847009,1752440943,543519589,1852401780,170816359,1411391498,1919950959,1667593327,1870209140,1914729077,1952999273,1998597235,1701716069,1948279909,1919950959,1852143205,1953439860,1936876904,1869768224,1701060717,1852406126,1870209127,1752435317,543519589,1751607666,1864397684,1935745138,1735289195,1970239776,544175136,1920103795,1701080677,1752440946,1769087077,1937008743,1411391534,1701995880,1701998438,1870209068,1634214005,1661625718,1635021413,1914728041,1869640549,1651077998,1953066089,544433513,2032166505,1679848815,1920234345,1953849961]},{"sector":6,"length":512,"data":[1868767333,1936025968,543584032,543516788,1952870259,1701994871,1919885356,174483744,544567161,1768189805,1763735910,1914714740,1869640549,1651077998,1953066089,544433513,1914728308,1701868389,1948284003,1713399144,1684366706,1864396143,1953439846,1936876904,537528878,1919895072,1635280160,1701605485,1718165548,1970239776,1936286752,1651077748,543519861,1768976227,1864397669,1970479206,1629513827,1869770784,1835102823,1752637484,1701344357,1919355506,1936290913,544370464,544370534,1701191777,2032151653,1830843759,544502645,1936941424,544108320,1948282740,1914725736,1885954917,1953391977,1752440947,1634934885,1711957357,1684366706,544435567,1952540788,1970239776,1667592736,1702259045,538979940,544567129,1953723757,1801547040,1970479205,1948280178,544498024,2036689012,1869881388,1914711151,1768252261,1862952310,1633886322,1701257326,1752440948,1869815909,1701016181,1685021472,538979941,543452737,544567161,1953723757,1869116192,1752440951,1948282213,1702061416,1919251488,1931506541,1752440943,1795848549,544698222,1768253556,1769087090,1937008743,537528878,1986348064,1886350437,544436837,1952540788,1702065440,1701344288,1431193376,1280329504,1869770784,1952671092,1970239776,1769087090,1937008743,1953068832,2004099176,1953701999,980643941,691087370,1936941344,544502373,2037411683,1751607666,1852776564,1701344288,1718580000,1918990196,1629498469,673211502,1864378674]},{"sector":7,"length":512,"data":[1919247974,1970239776,1768453152,1766596723,1936614755,1768360549,1735289206,1970239776,1734700064,1881173089,1768780389,1869181811,1869881454,1886348064,1679830137,1920234345,1953849961,1851859045,1919889252,1685024032,544826985,170816617,1176510474,1948283503,1679844712,1818588773,1919250543,1629497203,1629512814,1869116533,539456370,1953460848,1769235301,539782767,543516788,541872199,1634036835,544828530,1819310181,1936615777,1634235402,1752440948,543519333,1847620457,1635197039,1851880050,1713404276,1948283503,544434536,1701147238,1718580000,1918990196,538979941,544370502,1752461154,1702065440,539456370,174354017,1752462689,661877359,1801548576,1948265573,1193305448,1914719312,1769304421,544433522,1952540788,1685024032,1701406313,1702240356,1869181810,1646293870,1634541669,1684368242,175333664,1851877475,744777063,544174880,1952540788,1701344288,1881174633,1818390386,544435557,1819044215,1953459744,543515168,1920234593,1953849961,1696621669,1852797554,1937076069,1948285292,1969293935,1919903860,1718558835,1701998624,1970235766,1702240371,1869181810,170816366,1394614282,543518063,1769366884,544433507,543519329,1769170276,1684368999,544175136,2037278052,1702065440,1629516658,1936024419,1869881459,1936615712,1819042164,544370464,175011186,1768189805,1684367718,1919252000,1852795251,1718558835,1701344288,1718580000,1918990196,1852383333,1701079411,1701344288]},{"sector":8,"length":512,"data":[1629498477,1869116524,543713141,543516788,1970168173,1952670054,1919251061,1851876106,544171040,539914099,1768444960,1936269427,1853187616,1701667172,1818326126,1763735916,1836016494,1769234800,543517794,1752459639,1701344288,1835622688,174485280,1953460848,1769235301,1965057902,1936876915,1919295527,1868850533,1869881453,1634231072,543516526,543516788,1952870259,1701994871,1411391534,1931502952,1702130553,1769234797,1634732643,1919251572,1718558830,1668641568,1650532456,543519605,1969447791,1763734386,1752440942,1918967909,1864393061,1919950950,1668637807,1713402740,1763734127,1986618478,1635083369,1948283756,1937050223,1998597221,1751345512,544434464,1667592816,1818588009,1752637561,543519333,1763734633,1869422707,1965061235,1667457390,1635020901,778398818,1750343712,1717924453,744845935,174421792,1702257000,1936024608,1701734249,1752440932,1981838185,1769173605,1864396399,1752440934,1346838629,1869881420,1869770784,1768057192,1752440948,1919950949,1769235297,1713399139,1948283503,1702063976,1869770762,1952675172,538979955,1931503177,543712117,1651470960,1936549228,1769103648,1931502963,1953718901,1769238113,2037148769,544106784,1701344367,1868832882,1852399981,1998597235,1953696357,543452769,1684104562,1869881465,1954047264,543452773,1936287860,1869770784,1769171318,1948282479,1752440943,543519599,1634561892,544435817,1713401449,1920300149,1702240357,1869181810]},{"sector":9,"length":512,"data":[1862955886,1752440934,1346838629,1629498444,1701716083,1684366437,544175136,1953460848,544498533,543516788,1701147238,544042852,1965057647,1936876915,537528878,1852392992,2037148769,1986338860,544830053,1735357040,544039282,1948283753,1634038376,1701733748,1868767332,1635021678,2037150830,544825888,1952870259,1701994871,1952542752,1937010277,1951599150,1936028769,1869116192,543452277,544501614,1869376609,1634738295,1953391988,1869881459,1936028192,1667854964,1701060724,1869374838,1852140912,1851859060,1937055844,1718558821,1718579978,1918990196,1852776549,1852139296,1818325605,1920299053,1702063984,1836016416,1702131056,539784050,544503138,1948282473,1702063976,1634235424,1868832884,1702305836,1936291616,1869881448,1870029066,1948279913,1931502952,1768121712,1679846497,1701277281,1752440946,1881175137,1852142689,1629516660,1768714352,1948279909,543236207,1701147238,1869770784,1835102823,1970234144,1829397612,543517537,1696625769,1667589734,1702259060,1881176428,1919971186,1635018089,539916658,544166944,1986359920,544501349,1936287860,1752440876,1346838629,1935745100,1701999987,1752440947,1879733345,1852142689,1663071092,1869508193,1700929652,1702065440,1869881444,1852142112,544367972,543516788,1735357040,544039282,762212206,1701147238,537528878,1701336096,1701998624,1702062435,1919251488,1629516653,1663067246,1768189551,1852795252,1868963955,1868767346,1852406128]}],[{"sector":1,"length":512,"data":[1679830119,1920234345,1953849961,544108393,174354017,1768189805,1633904998,1852795252,1819239968,779579244,538970634,538976288,538976288,538976288,538976288,538976288,1380275232,1092637517,1126188110,1229213263,1313818964,537528915,539897888,1768318276,1769236846,779316847,538970634,1768444962,1766596723,1936614755,1914708581,1919247973,1869881459,1919252000,1852795251,1864381216,1752440934,1313284197,1699160149,1634887022,1968185452,1667853410,1667845152,1702063717,537528878,1866670624,1769109872,578054247,1936482592,1701650543,544435809,2037411683,1751607666,1768697204,1814062443,544438113,1952540788,1886413088,1948285292,1953439855,544367976,1684957547,1718558835,1919907594,539784043,1751348595,544432416,1768777075,1684959075,1869898613,1634541682,779316083,538970634,1701336098,1869762592,1835102823,1701978146,1936876902,544175136,544829025,2037411683,1751607666,1818386804,1870078053,1814063986,1852138345,543450483,1701080693,1752440946,1275753321,1852138345,539911539,1667319072,1768693864,1936614755,1763730789,1684086899,1936028260,543450483,572552033,578121593,572530734,1701013836,1701147502,1629495923,571106414,1768121714,1852139888,539128692,544825709,1763730786,1986618478,1635083369,1864397676,1919885426,1768841575,1769234810,779316847,538970634,572550996,1768189805,539130214,1870078049,1830841202,1936613733,544175136,2037411683,1869768224]},{"sector":2,"length":512,"data":[1919885421,1633968416,1629516912,1864395884,1634738290,1864397938,1752440934,1870078053,1762290546,543236206,1752392038,544108393,1970365810,1852404329,1868767335,1769109872,544499815,1836213616,1769173865,539782767,1701344367,1752440946,1948282465,1830839656,1852402529,1718558823,175005984,1667332197,1868767348,539916656,1701336096,1936028192,1769237621,1998612334,543912559,1663071081,1701604449,543236196,1685024034,1701406313,1702240356,1869181810,1864376942,1752440934,1634011749,1701407858,1870078066,1864395634,543236210,1802661751,1633821216,543450483,539127407,543516788,1819435365,544367977,1802661751,537528878,572539168,1702260579,543450482,1802661751,1701650466,544435809,1752459621,1948283493,1965057384,1685024110,1701406313,1917853796,1634887535,1919885421,1998610720,543912559,1702060386,1852770916,1701344288,1869762592,1835102823,537528878,544166944,1869770786,1634165104,539125108,1870078049,1830841202,1936613733,544175136,1629515620,1752463726,543649385,1752459639,544500000,1952540788,1769414700,1970235508,1701841524,1936289138,1852795251,1870077996,543452277,1701536109,1970239776,1919509536,1819566949,1919885433,1667592992,1633971823,2037148018,1634298912,543517794,175271782,1919315561,1701277289,1953391981,1684960544,1629516389,1768714352,1818386787,1868767333,1769109872,544499815,746021228,1668834592,544501861,1667594341,1852404853,1953046631]},{"sector":3,"length":512,"data":[544108320,1868761697,1953853549,1864397413,1869422706,2036754788,543649385,1919950945,1952544361,1868767333,539916656,1869762592,1634165104,1852795252,1668180256,1701082476,1868767347,1852406128,1678388327,1920234345,1953849961,544108393,1953068840,1919885416,1953068832,1953853288,1685024032,1667851881,1869182049,539765102,1768644973,1629513582,1818845558,1701601889,544175136,174418036,1818391920,539779945,543452769,1931505257,543518063,1853189987,1701409396,1953439859,544367976,1769235297,1769236854,1629516645,1702305907,170814572,1411391498,1663180911,1702260335,1629495929,1919907616,1701650539,544435809,544829025,1684957547,543584032,1886351984,1952540513,544108393,1952540788,1634624800,1936026722,1752461088,1879732837,1769239137,1948283749,1634541679,1864394091,1701978226,1986618723,1868767333,1936025968,1293951022,543519333,1702129257,1952670066,544108393,1752459639,1965056288,544367987,1869768820,174614389,1868767329,1953853549,1847620197,1870099557,539782002,1752459639,544173600,1851880052,1919247987,543584032,1868767329,539785584,1847620457,1663071343,1702260335,1735289209,537528878,544096544,1702129257,1952670066,543520361,1919251317,1953392928,1634103909,1679844707,1819308905,544438625,1886404898,1919971186,1702125929,1734691872,1310747745,1667855471,170029925,1948282740,1696621928,1852142712,1752440948,1763734625,1852383348,1685417059,1629516645]},{"sector":4,"length":512,"data":[1852793632,1768842614,544501349,543452769,1836020336,1852141161,544828532,1769171318,174419042,1952540006,543519349,1952540788,691087392,1936286752,2036427888,1851859059,1886413088,1919971186,1702125929,1886348064,1734963833,1847620712,1667855471,1629498469,673211502,1946822962,1936485477,1701344288,1702065440,1752440946,1948284001,1701995880,544434464,1998614382,1634890337,544830574,544370534,543516788,1802661751,2019895328,1953523043,544175136,174418036,1702131813,1948284014,544498024,1920098679,1769238113,1629516645,1881171314,1769369458,694445412,1752440876,1814066273,1852138345,1936024947,2036428064,1852793632,544826742,174418036,1802661751,1684960544,1948283493,544434536,1701013836,744846190,1684955424,2003789856,544175136,2003134838,1663066400,544829551,1948280431,544434536,1701013836,778400622,1716068384,1701344266,1953392928,1634103909,1881171299,1702061426,544437358,1768693857,1864397939,1937055846,1663070821,1634561391,544433262,1864397423,1869182064,539784046,1751348595,544432416,1701644897,539784558,1919950945,1852403055,544501349,1835365481,544106784,543516788,1953720684,1701145888,1948283764,544434536,1953067619,1869181541,168439406,774971424,1970230048,543515506,1701080899,537528878,1701336096,1869816352,1701016181,1685021472,1713381989,1629516399,1919907616,1701650539,544435809,543516788,1717924464,1701999205,1868963940,1864396146]},{"sector":5,"length":512,"data":[1752440934,1870078053,1711958898,1830842991,1852402529,1869422695,1768319332,1769234787,544435823,1763733364,538979956,1784827682,544498533,1701080931,1701650466,544435809,544829025,762212206,1920298867,1711957347,544043631,1629513327,1919907616,168439403,541138976,1635013410,1918985326,1850286180,1718773108,577069921,1634037024,1629516654,1852383342,1718773108,543515489,1952540788,1953064224,544367976,1629516649,1718558830,1768122726,1930062945,1684955508,543453793,1768318308,543450478,1629518178,1667592736,1768843119,543450490,1851880563,1685217636,1868701811,539785572,539783791,1948282473,1663067496,543519585,1762289263,1919251566,1701011814,1886593139,1718182757,543450473,544370534,1634738273,1667855474,1918987381,1869770784,1835102823,1735289197,1851878432,1734440295,1864379493,1948280174,175399272,1998615401,1818584169,1937055865,1629512805,1735290733,1986356256,1886350437,544436837,1802661751,543649385,1948282473,544498024,1735287148,1701273973,537528878,1701336096,2035491360,1835365491,1651067936,1769103730,539128677,1629513327,2019893358,1953850213,1701601889,1919907616,1852383339,1685417059,1851859045,1768453241,539780974,1701344367,1752435314,1948282465,1998611816,543912559,1629516641,1869117216,539780460,1952540788,694233120,544434464,1818455657,1684366453,544106784,543516788,1836216174,1713400929,544043631,1879729775,1634427745,1735289191]},{"sector":6,"length":512,"data":[1293967648,1919904353,1836008224,1701736304,539784302,544503138,1667852407,1936269416,1953459744,1918988320,1718558836,1634235424,1632444532,175271786,1886220099,1852141167,1629498484,673211502,1931487586,1702261349,1852776563,1948285292,1852121199,1701601889,1702065440,543584032,543516788,1802661751,1953068832,1752440936,1292530785,1919904353,1836008224,1701736304,539784302,1948283503,1835606127,1835363440,544501349,1951604833,1633971809,1226859634,1919251566,1701011814,1919903264,1768453920,1629513827,1835600494,1835363440,1635020389,1852795252,544434464,1767994977,1818386796,1869881445,1701344288,1651863584,543385964,1931505257,1668445551,1868767333,1713399140,778924655,172040224,1784761634,1126199919,1869639023,1953391982,1763716130,1752440942,1663071081,1702129263,539784312,1851876717,543236211,1869242733,1936007282,1953391987,543973737,1886220131,1852141167,1797786228,1701737061,1998597228,1868852841,2037588087,1835365491,1851858988,1869815908,695103264,543584032,543516788,1667592307,1667851881,1701867296,1769234802,1931503470,1702130553,1764231789,1851859046,1864378745,1752637550,543712105,543516788,1667594341,1650553973,1998611820,543912559,1936618866,1919885356,1663066400,1768975727,544367980,1684370293,175076384,1685025392,543515509,543516788,1802661751,1919885356,544104736,1701470831,1663071331,543515759,1702129257,1701998706,544367988,1684370293]},{"sector":7,"length":512,"data":[544175136,544109938,170816617,1411391498,572548456,1920102211,1869640549,1852400750,1867718759,1701016181,1868963874,543236210,1802661751,544106784,1701470831,1663071331,543515759,1836216166,1634037024,1629516654,1946840172,1931502952,1668445551,1868767333,1847616868,1701078373,1869881444,1852139296,1952543333,1763716197,1635021678,539782252,543452769,1919903272,544104736,1667594341,1650553973,1997170028,694907503,1853190688,1701344288,1784835872,544498533,1701080931,1684955424,544175136,1768189805,1948285286,1998611816,745239151,1668180256,1768191340,1931503470,1885958755,1948283764,1868761711,1869771886,1752440940,543519599,1769235297,1769236854,539915109,2003781664,1919252069,1953046572,1701798944,1869488243,1852383348,1685417059,1752440933,1870078053,1931963250,1937330954,544040308,1919052108,1701409377,1864379507,1701257330,1634887022,1970285932,1936683122,1869881445,544435311,1730179695,1919250021,2037148769,1635148064,1650551913,1713399148,174417266,1735357040,1936548210,1768453920,1629513827,1965057394,543450483,1869442677,1768319332,1763730533,1701847150,1919903346,1735289197,1869116448,1629513075,1986622563,1701409897,1969365107,1752631924,543712105,543519329,544501614,1953653104,543584032,543516788,1802661751,1176510510,1696625263,1886216568,539780460,1920102211,1869640549,1852400750,1867718759,1701016181,1668180234,1701082476,1852383347,1718773108]},{"sector":8,"length":512,"data":[543515489,1768318308,1769236846,1713401455,1936026729,1936941344,1634296687,543450484,1752459639,1970238240,543515506,1701603686,1868963955,1752435314,1870078053,539782002,543452769,543516788,1920298867,1663067491,543515759,544370534,1918986355,1814062181,1634886249,1936025970,1684955424,1853449248,1667853665,2037148769,1852402698,543450475,1885500787,1919381362,544435553,1952540788,1701344288,1919907616,1936269419,1701868320,1768319331,1819042147,1701060729,1852270963,1948279909,1701978223,1919513969,1930046565,543712117,1646293857,1852383353,1634560372,1679844724,543257697,1835888483,1667853941,1869182049,1919885422,1852793632,1819243124,1869375008,1700929655,1701148532,1752440942,174420847,1885500787,1919381362,544435553,543452769,1701344367,1634738290,544437362,1948280431,1998611816,778793583,538970634,543516756,1920102211,1869640549,1852400750,1867718759,1701016181,1701146144,1869488228,1852383348,1685417059,1851859045,1768453241,1948280686,544498024,1919251317,1633880691,1701978222,1701733735,1702125938,1953849632,1952542063,1818321769,1713404268,544042866,1701344367,1634738290,544437362,1948280431,1126196584,1701999215,1852797043,1735289188,1970230026,778396530,538970634,543516756,1920102211,1869640549,1852400750,1867718759,1701016181,1919903264,1998610720,543912559,1931505257,1668445551,1868767333,1713399140,544043631,1948283753,175399272,1701667187]},{"sector":9,"length":512,"data":[1919907616,168439403,775036960,1935753760,1344299881,1768780389,1869181811,170816366,1092624394,1914727532,1952999273,1919361139,1702129249,1853169764,544367972,1936287860,1667845152,1702063717,1701994784,1634887456,1684370542,1919903264,1701344288,1919251488,1718558829,1886348042,1734963833,1864397928,1752440942,1917853797,1634887535,1629498477,1629512814,1763730802,1986359922,1650549615,1881171308,1769369458,543450468,543516788,1952543859,1661625445,1768189551,1852795252,1918967923,1701650533,538979956,1936287828,1667845152,1702063717,1886938400,1768122732,544828532,1768318561,544435570,1920298873,1819178272,1953066345,1879729253,1768780389,1869181811,1869881454,1853190688,1701344288,1835955488,1718183023,543450473,1735357008,778920306,1750343712,1970217061,1953853556,1869768224,1970413677,1852403310,174137447,1702260579,543450482,1802661751,544434464,1702260579,543450482,1948285282,544434536,1701013836,543519598,2037149295,543582496,543516788,1886680431,539784309,1702259047,1953046638,1868761715,1852142702,1663052916,1953721967,1953854569,1629516645,1987011360,1684370021,1919907616,538979947,1936287828,1667845152,1702063717,1801675040,1819766638,1701274725,1870209139,1913287285,1952999273,1718558835,1767990816,1937055858,1919885413,1752461088,1696625253,1986622833,1852140641,1629498484,1919950963,1684633199,1646290021,1868767353,1769109872,544499815,779575660]}]],[[{"sector":1,"length":512,"data":[538970634,544567129,544825709,1701536109,1970413612,1851859054,1919950948,1734439023,543519841,1702260579,543450482,1802661751,1752440947,2032170081,1679848815,1869488239,1868761716,2036692590,1769414700,1970235508,1868767348,1953064046,1936617321,544174880,1735290732,544432416,1920298873,1667853344,1702063717,1752461088,1769435749,1914725747,1767992677,1762292590,1868963950,778396530,1868111904,1634541685,1868767353,2036692590,1987011360,1684370021,1919907616,1948283755,1953439855,1936876904,1919903264,1701344288,1819243296,1970282597,1936683122,1718553189,1986095136,543649385,1835362420,1801547040,1869422693,1768319332,1769234787,544435823,1818458213,1986622325,544828517,544370534,745893753,544370464,1987015280,543515753,175468409,1752459639,1667327520,1953066089,544433513,544370534,1852732786,543649385,1936681076,1870078053,745761650,1869770784,1701079414,1752440932,2032170081,1663071599,1819307375,1769414777,1946839156,1948280168,1936552549,543584032,1936287860,1667845152,1702063717,544106784,1986948963,1852406117,1818304615,1634541676,1769104756,1713400929,1998615151,1751345512,1970239776,175072288,544501614,1953394531,543977330,2037411683,1751607666,538979956,1936681044,1752440933,1830843253,1852402529,1919885415,1853190688,1735289198,1701344288,1987011360,1684370021,1919907616,1711960939,2032169583,1830843759,544502645,1931505508,2019893359,1937075299]},{"sector":2,"length":512,"data":[1818588777,1852776569,1970239776,1700929650,1718378856,1853169708,544367972,1920298873,1919509536,1769235301,1628073583,1663067246,1920233071,539782255,1948282479,1936552549,1634235424,1919950964,1651075183,1948284009,544040296,1836020326,1801547040,543649385,544829025,1768976227,1864397669,1870203494,1663070837,1920561263,1952999273,1830839397,1919251553,543973737,1937012079,543515753,1768253556,1701978226,1769234796,1752395375,1998614633,543716457,779448185,538970634,1986948931,1852406117,1853169767,544367972,544829025,1701344367,1768104050,1836409714,1851880563,544433507,1881174889,1768780389,1684370548,1819243296,544828517,1701080693,1752435314,1868767333,1953064046,1936617321,1635021600,543450484,1869374818,538979959,1818391891,1852138345,1735289203,544434464,544501614,1869376609,996435319,1667592992,1852795252,170930464,1701536109,1953046643,1852732704,1936024421,2037539187,537528878,539898656,1953460816,1769235301,1428186990,1936876915,1699487783,543973735,1751607634,1176531828,544042866,1769238081,1919501101,1986884963,1769238117,1277193839,170817377,1310728202,1868767343,1701995894,1870078052,1931504498,1819042152,543515168,1835361636,1881171045,544502369,1629513327,1717903470,1952671078,543520361,1751344500,1869377390,1633904999,1701644908,1920299873,1853169765,544367972,544829025,1819308129,1650549609,1814062444,1713403745,1768320117,1852402796]},{"sector":3,"length":512,"data":[1651449959,1634167148,1852795252,1853169779,544367972,1769239137,174419043,1864380721,1752440934,1230446693,1663061840,1920561263,1952999273,1701999648,544830561,1886348385,543450484,840986223,1698963504,1651336547,824210021,741751097,175271712,1768778099,544366956,1937203564,1869770784,1768057192,1735289204,544370464,1953719666,1952672114,543649385,1668442467,1702260085,1869182062,1718558830,1668641568,1701644904,1920299873,170816357,1461723146,544105832,544567161,1986948963,1629518181,1987011360,1684370021,1919907616,2032151659,1998615919,1702259041,2037276960,1734700064,1881173089,1919252335,544175136,1651666790,1661625449,1969451625,1852143213,1852795252,543584032,1751344500,1869377390,1633904999,1701650540,1920299873,1948283749,1752440943,2019893349,1953391988,1668641568,1768104040,1836409714,1953391990,175009641,1696625513,1667589734,543450484,1696627042,1668441464,1852404585,1769087079,1937008743,1684960544,1948283493,544434536,1701013836,543519598,1752459639,1936028192,1952671088,175076384,543516788,1702260579,543450482,1802661751,1851858988,1870209124,1768169589,1634493299,1629515113,1763735918,1852142702,1852795252,544175136,1768778092,1886330996,1952543333,544108393,1829401199,1718183023,1952539497,544108393,1948280431,1998611816,543912559,1629516641,1634037024,1864397678,1852121190,1668444006,744975977,1634165024,1953721961,1701344288,1919907616]},{"sector":4,"length":512,"data":[175318891,1919251317,2032151667,544372079,1948283503,1685219688,1918988320,1936025972,1701584935,543973735,1751607666,1948283764,1868963951,1684628082,1919509280,1986884963,1769238117,1864396399,1702103654,1869506659,1768386412,543973731,1935762797,1936028277,537528878,539898912,1986948931,1852406117,1700143207,1952539250,1126198633,1701408879,168439411,1868111904,1634541685,1868767353,2036692590,1919252000,1769234786,1868767341,1936025968,543584032,543516788,1735357008,661479794,1869815923,1701016181,1685021472,1935745125,1970239776,1667592714,1702259045,745826592,544106784,544829025,1768187245,539782517,1987015280,1684366441,1634235424,1870209140,1868767349,1768977262,1970238819,544828531,174354017,1919971425,1769107567,1818588257,1970282617,1936288866,1852776552,1667327264,1868767336,1629518192,1885413486,1886351984,1952541042,1868767333,1769109872,544499815,1769238382,171664739,1885693291,1953392928,544498529,543976545,1769238382,544433507,1952543859,543649385,1952540788,1768453152,1766596723,1936614755,1851859045,1851859044,1869482617,1701850478,1936289138,1702259059,1919251488,1629516653,1684366436,544106784,1868784481,1998611570,543716457,1952671091,544108393,1885413431,544828528,1948282740,1663067496,996500591,1701145354,1852383344,1952670068,1819042080,1953459744,1936024425,543584032,543516788,1702060641,543515502,1629513327,1998616942,1634890337]},{"sector":5,"length":512,"data":[997815406,1684955424,1986619168,1818304613,1701972588,1768974691,1937010277,1663066400,544829551,1948280431,544434536,1701013836,543519598,1852796001,1769414759,1948280948,1344300392,1919381362,170814817,1495277578,1830843759,1663072609,1735549288,1851859045,1919950969,543515497,1847620207,1919950959,543515497,544370534,1751343461,1886348064,1752440953,2032170081,1663071599,1702260335,1628056697,2032165998,1830843759,1864399201,1919247974,1886745376,1953656688,544370464,1920098679,2037673569,1869770784,1952671092,544108393,544370534,1701191777,168439397,775233568,1852785440,1769563510,1293969262,1718183023,543450473,1920298835,1444963683,1769173605,779316847,538970634,544567129,544825709,1986948963,1629518181,1919907616,1633820779,543450483,1948282479,1344300392,1919381362,539782497,1948283503,1830839656,1718183023,1952539497,1936617321,175076384,1685025392,543515509,1713402985,544042866,543516788,1735357008,745365874,544106784,543516788,1836216166,543584032,1920298867,1663067491,543515759,1701080693,1752440946,1702103653,544435570,1931503215,1769235301,874540655,1919950892,1684633199,1948279909,544498024,544567161,1869835361,1701145888,1818304628,1718558828,1701344288,1663067507,1768189551,1852795252,168442483,538976288,1411393889,1998611816,543912559,1953723757,1918984992,1881176434,1768779634,1953391982,1953459744,1936024425,1635021600,1735289204]},{"sector":6,"length":512,"data":[1634235424,1870209140,1869422709,1768319332,537551973,1763713056,1629498484,1730176110,1852405353,543236199,1701602674,1953390966,1952539680,168439397,538976288,1411393890,1998611816,543912559,1953723757,1918984992,1881176434,1768779634,1953391982,1953459744,1936024425,1635021600,1735289204,1634235424,1953046644,175335712,538976288,1701602674,1684370273,1684960544,1948283493,544434536,1701013836,543519598,543452769,544829025,1684959075,1869182057,1629516654,1684366436,1684960544,1931506277,1769235301,537554543,924852256,1411391534,544434536,1970365810,1835364969,544501349,1768189805,1936025958,1701344288,1902473760,1701996917,1953391981,544106784,1952671091,544108393,1869881396,538976266,1701519904,1763733605,1667331182,1818304628,1869488236,1701013876,170795635,538976266,539583264,544567129,1953723757,1667853344,1702063717,1701344288,1953391904,543519337,1802661751,1935745068,1998610720,1701605224,1853169708,544367972,1936287860,538976266,1667845152,1702063717,544175136,1870229089,1998611822,1663070056,1936026991,1953392928,1869619311,1936028531,1852795251,543584032,1868767329,539916656,1768444960,538970739,1766596640,1936614755,1769414757,1948281964,1701995880,1701998438,1886413088,539785580,1852796001,1769414759,1629513844,1629518190,1768714352,1818386787,1702043749,1869182051,171384942,538976288,1768186977,1852795252,1948281953,1936552549,1869881388]},{"sector":7,"length":512,"data":[1701344288,1869117216,1864394092,1752440934,1870078053,539782002,543452769,543976545,544437353,1953653104,537537651,1914708000,1918986085,1936026724,1718558835,2003789856,1701344288,1918967929,1634738277,1734437731,539911269,1768444960,1766596723,1936614755,1768366181,544433526,537554798,1881153568,1768780389,1869181811,1869881454,1667853344,1702063717,1701344288,1919907616,1852383339,2037276960,1752461088,1998615141,539785569,544503138,1679848553,544433519,175402862,538976288,1635151465,1633970540,1931502964,543712117,1836213616,1769173865,1763733103,1870209126,1634214005,1931502966,1918988389,1818588257,1701978233,1986618723,1763730533,168439412,538976288,1226844516,1752440934,1870078053,1746955122,1763734369,1919251566,1769235297,1965057398,544367987,1702129257,1667327602,539784037,1751343461,1937075488,1768169588,1634496627,538970745,1883316256,1886351984,1952541042,1699487845,543973735,1769238350,997418339,2003789856,1919252069,1718165548,1701344288,1869762592,1835102823,1935763488,1953392928,1667330661,1702259060,538976266,1953392928,1634103909,544433507,1952540788,544171040,544501614,1886611812,544825708,1919971393,1769107567,543519841,1634166092,1867391084,1701013876,2032151667,175273327,538976288,1802661751,1701146144,1869488228,1634541684,1948280171,544040296,1931505508,168439407,541138976,1886220131,1952541801,544108393,1629513327,1987011360]},{"sector":8,"length":512,"data":[1684370021,1919907616,1769414763,1864394868,1919248500,1885696800,1952543329,1851859045,1852383332,1701864804,1852138606,1870072436,745761650,1768453920,1629513827,1847616882,1646294127,1752440953,544368997,1970561390,1696621938,1852142712,1852795251,1718558835,1701344288,1987011360,1684370021,1919907616,1628056683,1998611566,1751345512,1701994784,1953459744,1836016416,1701734754,1769414756,1763731572,1970479220,1629513827,1869881459,1919903264,543236205,1735549292,1881174629,1919381362,170683745,1864396393,1852776562,1981833504,1836412015,1718558821,1931501856,1634889588,1864394087,1768169586,1769108595,1769239906,1830841967,1969841253,1763716205,1633886323,1684368492,175005984,1734828322,1634166130,539125108,1948280425,1663067496,1768975727,1769234796,1629515375,1763730542,1914729332,1819636581,1735289204,1886348064,1734963833,1629516904,1847616882,1963619439,543450483,1814065012,1953066345,1701344288,1667457312,544437093,1814065775,1818322789,1734963744,544437352,1948280431,1663067496,1768975727,1769234796,1931964015,1702065440,1644852082,1852799333,1752637540,1948284001,1763730792,1986618478,1635083369,1870078060,544435058,1836213616,539915369,1668172064,1769174380,1864396399,543236198,1702260579,543450482,1802661751,544106762,1629515361,1701996391,1702125927,1701798944,1869488243,1633886324,543519605,1936287860,1667845152,1702063717,544175136,1819308129,1869881465]},{"sector":9,"length":512,"data":[1701344288,1752461088,1879732837,1937011297,543584032,543516788,1919379297,1952540517,168439397,775299104,1852785440,1769563510,1310746478,1395486319,1668445551,1866866789,779316594,538970634,544567129,544825709,1986948963,1629518181,1987011360,1684370021,1919907616,1852383339,1784835872,544498533,1701080931,1919903264,1853169773,544367972,543516788,1836213620,1718553203,1667592992,1852795252,540287091,543452769,1881156661,1769369458,543450468,1952540788,1970239776,1936482592,1868767343,2036692590,1701344288,1667329290,1701734760,1634038317,1818386788,1866670181,1936028274,1684959088,543649385,1920298835,1965057379,1919247470,1701344288,1919251488,1864397677,1752440934,1277195113,1852138345,170681715,1864396393,1864394094,1752440934,543519589,1937334647,537528890,1629495328,1866670121,2036692590,1701344288,1784835872,544498533,1701080931,745433376,544370464,1868721509,1684367716,745433376,1881170208,1769175400,543973731,1685025392,175399797,538976288,1668180264,1768191340,1629513582,2036887584,1633905011,1768169580,1769108595,1769239906,1830841967,1969841253,539765101,1868784481,1851879533,543450473,1948285282,537552232,1126178848,1701999215,1852797043,1735289188,1970230048,543515506,1702390118,1852776548,1679843616,1650553461,1881171308,1769175400,543973731,1768187245,537554293,1663049760,1869902709,1769103725,1965062508,543450483,544370534,1952870259]}],[{"sector":1,"length":512,"data":[1701994871,1953392928,1751347813,1701277281,537528878,1646272544,1866670121,2036692590,1701344288,1784835872,544498533,1701080931,745433376,544370464,1868721509,1684367716,745433376,1881170208,1769175400,543973731,1685025392,175399797,538976288,1668180264,1768191340,1629513582,2036887584,1633905011,1768169580,1769108595,1769239906,1830841967,1969841253,539765101,1868784481,1851879533,543450473,1629518178,538976266,1769109280,1852142708,1717989152,539783781,1768710518,1868963940,1952522354,1634036768,1948284019,1701147240,1634040096,1629516658,1981834350,1684630625,1919903264,175333664,538976288,1735290732,544432416,544567161,1701209711,1886593138,543519329,1953653104,1919885427,1937072928,1701670772,1970479218,1919905904,1868963956,1752440946,1881175137,1969516402,537556067,1830821920,1818584175,1869881388,1986619168,1851859045,1701736313,1869117216,1936683040,1936942451,1948283749,1864394088,1667590754,1868767348,1696621924,1701344361,824713330,174137385,538976288,2037411683,543584032,543516788,1920102211,1869640549,1852400750,1867718759,1701016181,1919903264,1819042080,1701344288,1718580000,1918990196,1852383333,1701344288,538976266,1869770784,1952675172,1634235424,1936269428,1987011360,1684370021,544825888,1936287860,1667845152,1702063717,1852776492,1679843616,1650553461,1881171308,1769175400,174874979,538976288,1768187245,1663069557,1869902709,1769103725]},{"sector":2,"length":512,"data":[1965062508,543450483,544370534,1952870259,1701994871,1953392928,1751347813,1701277281,1868963884,543236210,1667854960,1869488229,538976266,1919905056,1752440933,2032168545,544372079,1935762802,1650552431,1663067500,544502639,1881171567,1769175400,1819042147,1701847161,1919903346,1735289197,1768453152,538970739,1868767264,2036692590,543649385,1931503215,1668445551,1864379493,841490546,1667309609,1936942435,544175136,2037411683,1701344288,538976266,1919894304,1886610802,1768189551,1394632558,1668445551,1919295589,1629515119,1952804384,1802661751,1919251232,544367990,1847620705,1751326831,1701278305,537528878,1663049760,1866670121,2036692590,1684957472,1684633193,543973749,1768976227,1864397669,1752440934,1651449957,1952671082,1685021472,1769414757,1629513844,1886348064,1718558841,1701344288,538976266,1769109280,1852142708,1717989152,1948283493,1919950959,1684633199,1752440933,1866670181,1936028274,1684959088,543649385,1920298835,539911523,1768444960,538970739,1818304544,1852990836,1986622561,1936269413,1819042080,1684371311,1819176736,1668227193,1769169251,1818324591,1629518188,1847616622,1868787311,1919249773,1818323299,539785580,174354017,538976288,2037149295,543582496,544567161,1701012850,1684371049,1701344288,1784835872,544498533,1701080931,1953068832,1970479208,1629513827,1718558830,745694566,544106784,1868784481,537551986,1998594080,543716457,1935832435]},{"sector":3,"length":512,"data":[1769235301,908095087,168439394,538976288,1126181220,1702260335,1752440953,1651449957,1952671082,1685021472,2036473957,1717989152,1852404325,1667309671,1936942435,1869768224,543236205,1769170276,1952542311,537551973,1881153568,1701011820,1919363104,1936290913,544370464,544370534,1751326817,1701278305,1629498409,1864393838,1919247974,1970365728,1818326633,544501349,1701012321,1948283763,1752440943,538970725,1866670112,1936028274,1684959088,543649385,1920298835,1763730787,1752440942,1634934885,1998611821,1948285281,1970238056,1948280935,1931502952,543518049,1667329136,1952522341,175074848,538976288,1953658214,544367976,1918986339,539911527,1970231584,1701146144,1869488228,1701978228,1919513969,1701978213,1768974691,1937010277,544175136,2037411683,1701344288,538976266,1919894304,1886610802,1768189551,1394632558,1668445551,1818304613,543649391,1752459639,1701344288,1784835872,544498533,1701080931,1226842158,1752440934,1819287653,543515489,537554804,1663049760,544829551,543516788,1701470831,1663071331,543515759,1629516649,1952804384,1802661751,1919251232,745694582,1701344288,1919894304,1886610802,1768189551,1394632558,1668445551,538970725,1634541600,1700929657,544108320,1768169569,1919247974,544501349,1987208563,673215077,1919250543,1684370529,544825888,544567161,1629516399,1768453152,1881171058,2037674593,538970665,1752440864,1931506785,1869639797,544437362]},{"sector":4,"length":512,"data":[1769304421,1701601654,1663071342,1769566319,1713399662,1818846049,1701409897,1881156723,1769369458,543450468,544567161,1852399981,1852399988,538976266,1701602080,1679848033,1667592809,1852795252,1701716083,1948284024,1752440943,1651449957,1952671082,1685021472,1634934885,1735289209,1701345056,1948280178,1768300655,1948279918,537552232,1126178848,1701999215,1852797043,1735289188,1970230048,778396530,1699880992,1685217639,1936942444,543584032,1952540791,1919251232,544367990,1953722216,1752440947,538970725,1866670112,1936028274,1684959088,543649385,1920298835,539780451,544567161,1634559346,1864396393,1734962274,1684370529,544175136,1970499173,1948280178,544498024,1763734633,538970739,1986076704,1634494817,543517794,544370534,1814066017,543649391,1847620449,1701078373,1869881444,1952543520,2036757353,1701344288,1914725747,1769304421,1701668210,779318382,538970634,694493216,1852785440,544826742,543516788,1701470831,1663071331,543515759,1852404597,1701847143,1949135461,1701850479,1948283493,1936613746,1936943469,745434985,1869770784,1701079414,538970724,1870209056,1852383349,1836216166,1752461088,1881174629,1936876901,1701345056,1948280178,1864394088,1667590754,1868767348,1629513060,1126196334,1701999215,1852797043,1735289188,538976266,1970230048,543515506,1948280431,1998611816,543912559,543519329,1852400994,1718558823,1701995878,1869881444,1701344288,1852139296]},{"sector":5,"length":512,"data":[1818325605,1651863584,543385964,1847620705,538970735,1751326752,1701278305,1684960544,1931506277,1702060661,1869182051,1681268846,537528878,1931493664,1918988389,1701601889,1919905824,1852795252,543584032,543516788,1701470831,1663071331,744842351,1869117216,1931502963,1668445551,1868767333,1763730788,2019893363,1685417059,1711957093,544042866,543516788,1920102211,1869640549,1852400750,1867718759,1701016181,544432416,2035490913,1835365491,1651067936,2037539186,1701716012,1847616613,1646294127,1852377701,1685417059,1763730533,1868767342,2036692590,543649385,543516788,1701470831,1663071331,543515759,1802661751,537528878,572539168,1919251285,1869762592,1952675172,1936269346,1953064224,544367976,539570472,1663180897,1970499183,544367981,1685025392,578052981,1752637484,543712105,1851876717,1851859059,1634994809,1651074926,1881171308,1869836901,543973742,1886351984,2037674597,1768453920,1763731555,1869488243,1818324338,1965062508,543450483,544370534,1936876912,1818324591,1634082860,2037148013,1919879724,1970235424,1869112691,1881171052,1869640309,745760115,544370464,539570728,1954115169,1735289192,1936024608,1701734249,1919885412,1819243296,1868963940,1852383346,1886547811,1952543343,175009641,1869901417,1679843616,1819043191,778530409,1850286112,1952801824,1768780389,1735289198,1701345056,1919248500,1881170208,1969516402,1763734627,543236211,1936617315,1919249781]},{"sector":6,"length":512,"data":[1869770784,1952675172,1868827180,1718903413,1663069301,1936028513,1634235168,1646292076,1701978213,1986817907,1763730533,1634082926,544370550,1663067759,1919252079,778397537,1866866720,543236210,1953653104,1819632489,1879732833,1969516402,1914729571,1768252261,543450486,1629518178,1918988320,1969449332,544366956,1919251317,1847730220,1634562671,544828524,1684370293,1701978146,1936876902,544175136,2037647969,1633905008,1919885420,1836016416,544108397,543519605,1948280431,544498024,1935764579,1718558835,1869770784,1952675172,1701978156,1685217639,1936942444,543584032,543516788,1952543859,1862955893,1752440934,1634738277,1667855474,1918987381,1702065440,1919885426,543584032,543516788,544825719,1998614121,1751345512,1701344288,1918988320,1969449332,544366956,1919251317,1952669962,1819042165,1937055865,539784037,1696625263,1667592312,1864397684,1936269426,1886938400,1702126437,1869881444,1702065440,1752440876,1919950949,1668637807,538979956,1919950913,1668637807,1936263796,1663066400,1970499183,544367981,1685025392,544498549,1634166130,1701602418,1864397683,1752637542,1701344357,1752440946,1919950949,1668637807,1634214004,1970479219,1635021666,1634301038,1868761708,1919249773,1818323299,1852383276,1953723748,1818323314,544370464,762212206,1936617315,1919249781,1702065440,1965042803,1936026734,1970479219,1965058147,544433523,1919968626,1852142437,1752435316,1852776549]},{"sector":7,"length":512,"data":[1931508076,1768843113,1633904998,1830843502,543515759,1965057647,1864394099,1752440934,1919950949,1668637807,168439412,1226973216,1635021678,1952541804,544108393,1868983881,1952542066,577662825,1919903264,1428185376,544367987,1685025360,544498549,1851876717,1851859059,1701650553,1685022836,1879714931,1701015410,1701999972,1629498483,1869116533,1635412338,1852795252,2036689696,1864379507,1953439858,544367976,1868983913,1952542066,544108393,1970365810,1684370025,544175136,1953721961,174877793,543452769,1667594341,543519861,1768189805,1684367718,1919252000,1852795251,1718558835,1663066400,1919252079,1998611557,543912559,1948282473,544498024,1919251285,1869762592,1952675172,1869768224,543230573,1768189805,1684367718,1919252000,1852795251,543584032,544437353,1920102211,1869640549,1852400750,1867718759,1701016181,1411391534,1763730792,1919903342,1769234797,1830841967,175403893,1717990771,543515497,1696624500,1920299886,1752440933,1948284001,1663067496,1769238127,1684370798,1853187616,1869182051,1735289198,543584032,543516788,1768189805,1684367718,1784835872,175399781,1701080931,544434464,1847619177,1633886319,1881171315,1702258034,1684370542,544370464,1702129257,1919247986,1998611557,543716457,1701605235,1646295404,1969316709,1829397875,1718183023,1952539497,544108393,544432488,1852138850,1684106528,168439397,1716068384,1970239776,1852793632,544826742,1864396385]},{"sector":8,"length":512,"data":[1667590754,1868767348,1998611812,543912559,1701080693,1752440946,1931506537,1769235301,1763733103,1864379502,1769414770,539781236,1930064495,1768121712,1633904998,544828524,544370534,543519605,539782761,1934958689,1344303717,1969516402,539784291,543452769,543516788,1986948963,1852406117,1668227175,1936880995,175333664,1953653104,543584032,1920213089,1634954849,1869182051,1852383342,1768453920,1948280931,1914725736,1952999273,543584032,1936945008,1769173861,1629515375,1965057134,1864394099,1752440934,1934953061,1344303717,1969516402,1763734627,1920213107,1718840929,1701999205,1869881444,1701344288,1667592736,1701408873,1763734638,1701847150,1952804978,2037672309,544370464,544370534,1768295009,543450488,1836213620,1701980192,1685217639,1936942444,543584032,544698216,543516788,1851880052,1952670067,544108393,1663071081,1634885992,1919251555,1684372073,1948265513,1124754792,1701999215,1852797043,1735289188,1970230048,543515506,1986948963,1684371813,1684960544,1948283493,544434536,1952671091,544108393,1953723757,543515168,1868784481,1851879533,174351721,1948285282,1226859880,1635021678,1952541804,544108393,1868983881,1952542066,778989417,1967267872,1752440948,1914729321,1769304421,1701668210,1679848558,544433519,544501614,1819308129,1718159993,1768255008,1919248500,1970239776,1919905312,2037276960,1768453152,1881171058,2037674593,1952805408,1936615777,1701344288]},{"sector":9,"length":512,"data":[1768055072,2037672300,544175136,1953721961,174877793,1768189805,1684367718,1784835872,544498533,1701080931,544108320,543516788,1919251285,1869762592,1952675172,1868965920,2019893362,1819307361,1948265573,1998611816,543912559,175333736,1852138850,1936615712,1819042164,1763730533,1330782318,170797389,1411391498,1914725736,1769304421,1701668210,1948284014,1919950959,1684633199,1850286181,1818326131,1769234796,1226862191,1919903342,1769234797,1679847023,544433519,544501614,1818455657,543515765,1701972577,1919513969,1852140901,1869881460,1852793632,1970170228,1869881445,1869770784,1701079414,1886745376,1953656688,1919251232,1701013878,1635196972,1851880050,539785588,1965060719,1952539760,1711960933,1629516399,1919907616,1752440939,1746957409,1646293857,544105829,1768189805,1684367718,544370464,1953721961,1701604449,2036473956,1701344288,1667592736,1701408873,539784302,1713402479,1946841711,1428186472,544367987,1685025360,544498549,1998614121,1751345512,544500000,544432488,1852138850,1685024032,1701406313,1919885412,1936615712,1819042164,539911269,1667449120,544437093,1629515636,1952804362,1802661751,2036428064,543515168,1768842596,1998611557,544105832,543516788,1768189805,1633904998,1852795252,1937008928,543583333,1702125933,1818323314,1629518188,1628071022,1919252068,2037146995,1717985568,1937007461,1701344288,1701867296,1769234802,1864396399,1752440934,1701716069]}]],[[{"sector":1,"length":512,"data":[1919907700,1919885419,1869182496,1702125932,1752440947,1970413669,544433516,174354017,1953460848,1819239279,1868963955,1868767346,1853189485,1952539497,544108393,1869767521,1948283763,1847616872,1870099557,170814322,1126178826,1701999215,1852797043,1735289188,1970230048,543515506,1986948963,1684371813,1851858988,1850286180,1818326131,1769234796,1226862191,1919903342,1769234797,1881173615,1769369458,744777060,544106762,1868784481,1998611570,543716457,1936287860,1667592992,1852795252,1937075488,1700929652,544106784,1868963937,1952542066,1634235424,1936269428,1651863584,1818454380,1868827257,1701672291,1684370542,1851861024,1769414756,1629513844,1835606126,1835363440,1635020389,1852795252,1635148064,1650551913,1948280172,1752440943,1970282597,1667853410,175008032,1920298867,1663067491,543515759,1836216166,1629498409,1830839406,544502645,1970365810,543519337,1931505518,1768121712,1881173089,2004054881,543453807,1797288559,1713404261,1963618927,1667330158,1735289195,1701978156,1852400737,1919885415,1886348064,1735289209,537528878,539899680,1768186945,1852795252,1411411041,1936552549,537528878,1681990176,1769236836,1818324591,1919250464,1936943469,1936617321,1918967842,1702109285,544435570,1952540788,1886745376,1835363440,544501349,543516788,1836213620,1718558835,1768453152,1766591091,1936614755,2036473957,1801547040,543649385,1701017701,1869182064,1713402734,544042866]},{"sector":2,"length":512,"data":[543518319,1830842991,543519343,1763731055,1663071092,1768189551,1852795252,1091186291,1953064036,1634627433,1701847148,1936289138,1852795251,1752440947,1629516897,1629513074,1768714352,1818386787,1869881445,1701344288,1953391904,543519337,1735357008,544039282,1818323059,1700924012,1701999648,1684370529,544432416,1970235508,1948280935,544826728,1701995895,1668180256,1701082476,1852383332,1768453152,1766596723,1936614755,1948265573,1752440943,2019893349,1953391988,1634235402,1752440948,1629518181,1981834610,1684630625,1684960544,1629516389,1768714352,1818386787,1634476133,538979959,1629513289,1953064036,1634627433,1701847148,1936289138,1852795251,1885407859,544828528,2037149295,544175136,1953653104,543584032,543516788,1735357008,745365874,1634235424,1634738292,1830843506,1646295393,1937055845,1931502693,1918988389,1818588257,1853164153,544367972,1936681076,1701847141,1936289138,1852795251,1646275699,1948284021,1696621928,1919513710,1917853797,1634887535,1701978221,1852399981,1869029491,1852990838,1646290021,1752435321,1277195113,1852138345,1998611827,1869116521,1914729589,1918986085,1869881444,1701344288,1684300064,1869182057,543973742,1836213616,1769173865,779316847,538970634,1852139607,1970239776,1852793632,544826742,1868767329,1864399216,543236198,1702260579,543450482,1802661751,1870209068,1634541685,1952522361,1970239776,1886330994,1852795252,1835364874,543520367]},{"sector":3,"length":512,"data":[544829025,1768186977,1852795252,1881173089,1768780389,1869181811,1713402734,544042866,1952540788,1886348064,1864379513,1919295602,1629515119,1881176430,544502369,1762289263,538979956,1684291880,1869182057,543973742,1836213616,1769173865,544435823,544825709,1998611810,1953786226,1948282469,1701978223,1919513969,1752440933,544368997,175011695,1869440370,543973750,1663069801,1635021413,1663069801,1936028513,1701345056,1870209134,1869422709,2036754788,1701344288,1919907616,539569771,1970231584,2036428064,1634496544,1628071267,1953064036,1634627433,1701847148,1936289138,1852795251,1852776563,1952541984,1634300517,1629498476,1684366436,544825888,544567161,1629515636,1987011360,1684370021,1919907616,1711942763,1998615151,1751345512,1970239776,1986095136,1919885413,1851876128,1986619168,1885413477,1886351984,1952541042,1868767333,1769109872,544499815,1836213616,1769173865,170815087,1310728202,1769436271,1953720436,1768189537,1629513582,1864399214,1919248500,1869770784,1769171318,1864396399,1752440934,1277195113,1852138345,539780467,544370534,1702125933,1818323314,1970239776,1684300042,544175136,1868767329,1701995894,1870078052,539782002,544567161,544825709,543582504,1752462689,2053730927,1646290021,1752440953,1868767333,1769109872,544499815,1684828008,544436837,1946838639,544498024,1702125933,1818323314,1970479145,1701605488,1953391981,1701344288,1919251488,1864397677]},{"sector":4,"length":512,"data":[1752440934,1277195113,1852138345,1998611827,543716457,1836213620,168442483,538976288,1142958433,1818456937,1768778081,1998612334,1634890337,544830574,1814065775,1953066345,543649385,1650551148,1953066089,1768169593,1919247974,1819569765,1919295609,1948282223,537552232,1948262432,1936552549,543584032,1952671091,1936617321,540356896,543452769,1864382001,1752440934,1277195113,1852138345,540763507,168456815,538976288,1377839458,1769304421,1735289202,1701998624,1987208563,1869182049,1718558830,1701868320,1768319331,1914725477,1869832549,1818386798,1701584997,543973735,1769238382,544433507,537555567,1629495328,1869116533,1952522354,1651077748,1869182069,1763734382,1752440942,1830843489,1919251553,543973737,1763734127,1752440942,1883316325,1886351984,1952541042,1699487845,174874983,538976288,1769238350,544433507,1886611812,1702453612,2036473956,1919907616,1663071083,1635020399,1852403305,1953046631,1919885371,538970634,694362144,1869762592,1768057192,1735289204,1936289056,1919968626,1852142437,1769234804,1864396399,1752440934,1919885413,1852401513,543584032,1952540788,1952541984,1634300517,1864379500,538970738,1701978144,1919513969,543649385,1952540788,1685024032,1701406313,1702240356,1869181810,1864397678,1970479206,1830840419,1919251553,543973737,1830839650,1701540449,1852383332,538976266,1634038304,1634627443,543517794,1937334647,544432416,1717987684,1852142181]},{"sector":5,"length":512,"data":[1919295604,1948282223,1864394088,1768384882,543973742,1936876918,997093225,175271712,538976266,539583520,1768778060,1735289204,1701344288,1702065440,1919903264,1651863584,1768122732,1881176436,1869640309,544433523,1847617135,1936026977,543584032,1701013868,1919906670,1919885427,538976266,1953849632,1936879464,543584032,543516788,1702125933,1818323314,1919885371,538970634,694493216,1667580960,1768843628,1948280686,1919361135,544501345,1751607666,1965060980,1919247470,1634890784,1634559332,1814063986,1713403745,1965060719,1864394099,1869815910,537552237,1948262432,1701077362,1835101728,539784037,1684107892,1918987621,539784043,1931506287,1769370213,1830839651,1936421473,1919885371,538970634,694558752,1902465568,1769105781,1763731310,1835361390,1768319342,1769234787,1864396399,1768693862,1936614755,544436847,543452769,1752462689,544436847,1948280431,175399272,538976288,1702125933,1818323314,544825888,1870229089,1998611822,1663070056,1702260335,1948283769,1830839656,1919251553,543973737,544370472,1768189805,1684367718,1919252000,1852795251,1718558835,538976266,695494944,1953068832,1868767336,1634890862,1635087459,1935745132,1886221683,1852795252,1718558835,1634298912,1768712546,1948285300,1752440943,1701978213,1768974691,745827941,1919903264,538976266,2037276960,1634298912,1768712546,1948285300,544498024,1936025716,1868767333,1634890862,1635087459,1935745132]},{"sector":6,"length":512,"data":[1886221683,1852795252,1768169587,1952671090,1763735916,1936683117,1852776549,538976266,1869116448,1814062451,1852138345,1936879475,1684955424,1953849632,1936879464,537528878,1819033888,1752461088,1847620197,1882025583,1768780389,1986622323,1684086885,1769236836,1818324591,1919251488,1629516653,1663067506,1769172591,1701995876,1713512548,1752461941,1913287269,1920234341,1769235305,577990255,1953068832,544106856,543516788,1851876717,543649385,1931503215,1769235301,824209007,538979888,1948280393,1344300392,1919381362,1629515105,1870209139,1701972597,1986618723,1763730533,1864379508,1851859058,1634738297,1864397938,1953046630,1868767276,1767994478,1629516654,1953459744,543515497,1952543859,543649385,1952540788,544500000,1728738153,1919252079,543450478,1948285282,544434536,1701013836,543519598,1852796001,1769414759,1629513844,1919251488,1752440941,1763734625,543236211,1953658214,175269224,1953719666,1952672114,745434985,1970239776,2036428064,1835364896,543520367,1952540788,1919251488,538979949,1629513289,1667853344,1702063717,1668244512,1852140917,1868767348,1767994478,1628074862,1920296480,1919248500,1936028192,1667854964,1852795252,1953849888,1919250464,1937009005,1818587680,1852138345,1735289203,544370464,1986948963,1852406117,1853169767,544367972,1936287860,1667845130,1702063717,1870209068,1634541685,1684086905,1869881444,1663066400,1919252079,1998611557,543912559]},{"sector":7,"length":512,"data":[1702125933,1818323314,1987012384,1701737061,2036473956,1701344288,1919251488,1862955885,1752440934,1814066273,1852138345,1679844723,1836409711,745827941,1869770784,1701079414,1752440932,1948284001,1713399144,1752461941,1914729061,1920234341,1769235305,1679847023,175334767,544501614,1987212659,543520361,1751348595,1818587680,1852138345,1735289203,544370464,1986948963,1852406117,168439399,1716068384,1970239776,1684300064,1919251488,1948283757,543236207,1702260579,543450482,1802661751,544106784,1868784481,1998611570,543716457,1936287860,1667592992,1852795252,1870209068,1970080373,1881175155,1701011820,1852383276,1701344288,1818587680,1851881061,1869815924,1701016181,1818846752,539784037,1953701985,1835365473,544501349,1948280431,1628071272,1953064036,1634627433,1702109292,544435570,1952540788,1886413088,1948285292,1752440943,543519599,1701603686,1864379507,543236210,1769238382,1763730787,1667851374,1852404833,1752631911,543519333,1713401716,543452777,543516788,1819308129,1650549609,1948280172,1936552549,537528878,1684291872,1869182057,543973742,1836213620,1881156723,1768780389,1986622323,1919885413,1852796448,1919250477,1936943469,744846953,2036428064,543515168,1952543859,1763730533,1752440942,1868958309,1864396146,543236198,1634755955,1702125938,1998616940,1953786226,1814064741,1852138345,539780467,1931506287,1702125940,1935745124,1668834592,1769238629,997420655]},{"sector":8,"length":512,"data":[1701344266,1868718368,1914725750,1769304421,1701668210,544437358,1819308129,1768235129,1919248500,2036430624,537528878,539899936,1836213588,1952542313,778989417,538970634,544567129,544825709,544501614,1886351984,1952540513,1919885413,1685024032,544826985,1868767329,1701995894,1870078052,1696623474,1885692792,1935745140,1886938400,1936942450,1879734636,1769369458,543450468,1701080693,1752440946,1277195113,1852138345,539911539,2037268768,1953784096,1953525093,1752461088,1769435749,1948280179,1919950959,1734439023,543519841,1829401199,1718183023,1953046649,544434464,1684631414,1851858988,1769414756,1629514860,1836020853,1667855457,2037148769,1919251488,1634625901,2032166260,544372079,1751607666,1965060980,1919247470,1768453130,1766596723,1936614755,1764237413,1970037614,1735289188,2037276960,1952542752,544501349,1701013868,1936028526,1634887456,1684370542,1684960544,1948283493,1948280168,1685219688,1918988298,1634887521,1864394864,1702043750,1869182051,825303150,168439337,1866997792,1702258039,1763716210,1870209126,1700995189,543519585,543976545,1819240822,1869182049,1718558830,1768453152,1766596723,1936614755,1948265573,544105832,1920298873,1667853322,1702063717,1869768224,543236205,1953653104,1819632489,1663070817,1920561263,1952999273,1819240480,544367972,1914729321,1936615781,1702125940,1630019684,1919945257,1936291439,1634627433,746155116,1819178272,544437093]},{"sector":9,"length":512,"data":[543452769,1769238133,1752440940,1868767333,1769109872,544499815,1684828008,1696625253,1768714360,1819568483,1851859065,1768295012,1819042158,1702109305,1852403058,1936028769,1970239776,1768693874,1936614755,1629498469,673211502,1881155938,1634562661,1953391982,539785580,1948280425,1663067496,1920561263,1952999273,1819240458,544367972,1818845542,1869881459,1953459744,544826985,544567161,1948280431,1981834600,1634496361,1852795252,544825888,1701670771,1634038304,1634627443,543517794,1851876717,1919945331,544370537,908095348,1633951792,1629516665,1919251558,1701344288,1936024352,1769234803,170815087,1293950986,1868919407,745694582,1970239776,1768693874,1936614755,1919295589,1629515119,1918988320,1969449332,544366956,2037411683,1751607666,1869095028,1919247468,175335712,1852401010,1952543859,1881171045,1634562661,1953391982,1763735916,1752440934,1868767333,1769109872,544499815,1684828008,1847620197,1718187119,544433513,544567161,1948280431,1980392808,1634496361,1852795252,544825888,1701670771,1634038304,1634627443,543517794,1851876717,1948265587,544434536,1948283753,1713399144,1953722985,1835627552,1870209125,1634214005,1913283958,1768252261,543450486,1769238382,1864394083,1769349222,1952541807,544108393,1948280431,544434536,1701013836,543519598,1919903272,2037276960,1919907616,1713383787,544042866,1952540788,1886348042,1734963833,1746957416,1701080175,1629498482]}],[{"sector":1,"length":512,"data":[2032165998,1663071599,543519349,543516788,1819240822,1869182049,1919950958,544370537,857763700,1633951792,1629516665,1919251558,1970239754,1701978226,1885955427,1718558836,1701344288,1953459744,778396521,538970634,1836213588,1952542313,544108393,2032166511,544372079,1751607666,1965060980,1919247470,1768453152,1702043763,1869182051,1868832878,1847620453,1948284015,1768780389,1702125934,1701344288,1667853322,1702063717,1718558835,1918988320,1936025972,1869117216,1986095136,1701978213,1986618723,1663067237,1701408879,1919885427,1734963744,544437352,1836020326,1970239776,1684960544,1946841701,544434536,1701013836,778400622,1716068384,1970239776,1769087090,1937008743,1986095136,1700929637,1948282469,1768780389,1702125934,1851859044,1869488228,1701847156,1851878770,1819569765,1701972601,1953721961,1684370529,1870209068,1868832885,1953459744,1635086624,2036754796,544175136,1701012850,543520361,544695662,1701013868,1936028526,1919903264,1701344288,1835103008,1634536037,1769104756,1965059169,1919247470,1667592992,1852795252,774910240,538970634,1092628025,1885692771,1668178292,1867391077,1699881076,1919513969,1713398885,1210085999,1852405345,1866670183,1936025968,537528878,1970231584,1701994784,1953459744,1902473760,1701996917,1869881444,1667457312,544501861,1936287860,1667845152,1702063717,544106784,1701081711,1869881458,1667592736,1702259045,175271712,544109938,1868767329]},{"sector":2,"length":512,"data":[1864399216,1752440934,1917853797,1634887535,538979949,1768123969,1918987372,1919950969,1734439023,1869182049,1718558830,1663066400,1919252079,1998611557,174813807,1969447791,1852404338,1869815911,2037146988,544432416,1868767329,1902474094,1668179317,1718558821,1769174304,1881171822,762471781,1882025844,544367973,1851880052,1936289139,1852795251,544175114,1701012850,543520361,1868767329,1814067568,2003135337,543519593,1936027492,1953459744,1902473760,1701996917,1667457312,1635020901,778396526,1866997792,1702258039,1846160498,1768453231,1864394606,1919248500,1634235424,1752440942,1277195113,1852138345,1730176371,1953390962,1870209139,1701847157,1936289138,1852795251,544175136,1886351984,1952540513,1919885413,1685024010,544826985,544829025,1702260579,543450482,1802661751,1411391534,1702061416,1952669984,1936617321,1718511904,1735289202,1868767333,1769109872,544499815,2032166505,1679848815,1869482607,1667309684,1953523043,1768453152,1766596723,1936614755,538979941,1919248468,1919903333,1646275685,1869422713,2036754788,543649385,1881174639,1634758514,1769234791,1629513582,1987011338,1684370021,1919907616,2032151659,1763734895,1667851374,543519841,1920298873,1667457312,1635020901,543515502,1948280431,544434536,1701013836,543519598,1679847284,1869815919,537528878,774910240,1953841440,1952542063,1277191017,1852138345,1735289203,543584032,1853321028,1701999731,1377856865]},{"sector":3,"length":512,"data":[1885954917,1953391977,168439411,1631920160,1948280931,543518057,544567161,1986948963,1629518181,1987011360,1684370021,1919907616,1948265579,1914725736,1885954917,1953391977,1953849632,1952542063,1818321769,1913289068,1768252261,544433526,1768693857,1936614755,1919295589,1948282223,1864394088,1768384882,543973742,1701013868,1919906670,1948265587,1970413679,1830825070,1718183023,1851859065,1919945316,1734439023,543519841,1952540788,1919907616,1931488363,1701470837,1948284003,1752440943,1277195113,1852138345,539911539,1970231584,1701994784,1953459744,1936028192,1936617328,1701601897,1919903242,1718510880,1768125039,1663068014,1819307375,1668178281,2036473957,1768453152,1881171058,1769239137,1998615397,543716457,1936287860,1667845152,1702063717,537528878,544096544,1953391906,544830569,1851880052,1952670067,577662825,544434464,1920213089,1634954849,1869182051,1920213102,1718840929,1769108069,1663068014,1920233071,1864395887,1851859046,1735552778,2053729889,1869182049,1864379502,1970479218,1635021666,1634301038,544828524,543976545,1702064993,1864397684,1852776550,1864379493,1970479218,1986618466,1852400745,1851859047,1735552778,2053729889,1869182049,1864379502,1701650546,1852401522,1919885415,1768841575,1769234810,779316847,1716068384,1869770784,1634165104,1852795252,543584032,1868767329,1701995894,1870072420,1914727282,1819636581,1713402740,544042866,1696624225,1953068142]},{"sector":4,"length":512,"data":[1920213113,1634954849,1869182051,1696607342,543712097,1953653104,1869881465,1634235424,1920207476,1634954849,1869182051,1752637550,1701978223,1986618723,1629516645,1886348064,1718558841,1701344288,1919907616,1818304619,1914728307,1768252261,544433526,1952540791,1919252069,1667853322,1702063717,1869881459,1701344288,1919907616,1752440939,1634738277,662271090,1919950963,1667589221,1869837157,1852383346,1953392928,1936028261,1634214004,1919885412,1970234144,1728734316,543520361,1701080693,1752440946,1919950949,1869182565,1881174901,1734439521,1752195442,1819287596,1629516661,1734963744,1948284008,1869619311,1936028531,1852795251,543584032,174418036,1920102211,1869640549,1852400750,1867718759,1701016181,543584032,543516788,1802661751,1869768224,1752440941,1919950949,1667589221,1869837157,1852383346,1953392928,1936028261,1763716212,1752435302,1919950949,1667589221,1869837157,1634214002,1953046643,544370464,544104803,544499047,1998615657,543716457,1935762802,1650552431,1696621932,1919903334,170816372,1495277578,1830843759,1847621985,1763734639,1936683117,1851859045,1969627257,1701344370,1701978226,1769108595,1869182051,1864397678,1752440942,2019893349,1768125029,1864394099,1752440934,1769081445,1937008743,1634887456,1684370542,544370464,1768318561,1684368754,1684960544,1948283493,544434536,1701013836,778400622,1866866720,2019893362,1819307361,2032151653,1830843759,1846180193]},{"sector":5,"length":512,"data":[1763734639,1936683117,543236197,1701013868,543519598,744842598,2037346848,2037673057,1919885356,1752461088,1663070821,1735549288,1868963941,2019893362,1768125029,1864394099,1769081446,1937008743,1634887456,1684370542,1684960544,1948283493,544434536,1701013836,744846190,1684955424,1970239776,2036428064,1953459744,1768843552,1952541044,1768693861,1634167156,1852795252,1852385290,1685417059,543649385,1919098977,762540911,1767992419,1919885421,1970234144,1919251566,1767992419,1852383341,1814061344,1970501473,539587689,1701604449,1735289191,1634235424,1851853428,1634738297,1953391988,1634493216,1763732841,1852383347,1852404326,543450471,1830844770,1852402529,1965042791,1735289203,1702043692,1852402796,1864379495,1919247974,543649385,175271782,1701601651,1919885356,1886218528,1769239151,1948280686,1344300392,1919381362,1864396129,1851859058,1869619321,1869182066,1718558830,779381024,538970634,539898161,1702125904,779318382,538970634,1663180865,1920233071,1953849961,539128431,1629516649,1886348064,1734963833,1746957416,1701080175,1752637554,1969299567,1919903860,1936030313,1702065440,1684960544,1948283493,175335784,1701013836,543519598,1948280431,1344300392,1919381362,1864396129,543236210,1802661751,544108320,1667852407,1752440936,1917853797,1634887535,1936269421,1935761952,539911269,1701336096,1919907594,1752440939,1814066037,1852138345,543450483,1663071081,1701604449]},{"sector":6,"length":512,"data":[1752440932,1868767333,1769108590,1869903202,544417650,1852793634,1651077748,1919906933,1919252000,1852795251,168439330,541138976,1953394531,1969383794,661811060,1696735347,1852142451,1818323316,1952542752,544501349,1767992419,539128685,543519329,543976545,1702125936,1663071342,1835622764,2003765875,543450478,1663070831,1920233071,1701604463,2036473956,1701344288,1852793632,1651077748,1919906933,1752637484,1701344357,1818304626,1684104562,1667309689,1919513969,1864393829,1701317234,1717658994,544367988,1970365281,1684370025,1752440876,1998615649,1684829551,543515168,1919315561,1701277289,2036473956,1836020512,1634541669,1919250030,1701847084,1953066354,174351732,1948285282,544434536,1701013836,744846190,543584032,1768644973,539780974,1852404597,1864379495,1702043762,1852402796,1953046631,1868767347,1769108590,1869903202,1702240370,1869181810,1644833902,1679848565,1869488239,1852383348,1685417059,1818435685,1936550241,1634235424,1870078068,543452277,1763730786,1769105006,1684367214,1819176736,1935745145,1661624608,1702063727,1852142961,1864394083,1969627238,1701344370,1869422706,1768319332,1769234787,1864396399,1752440934,1868767333,1769108590,1869903202,1702240370,1869181810,538979950,175271750,1886549360,1936028527,543584032,1936287860,1717920800,1953066601,745434985,1868767776,1869771886,1763713644,1970037614,544433508,543516788,1751607666,1869881460,1634887456]},{"sector":7,"length":512,"data":[1879733358,1852142689,1970479220,1667853410,1702063717,1852383347,1830838560,1701736033,1868767346,1936290670,1953391988,1953068832,1752440936,1701978213,1919513969,1852140901,1864397684,1752435302,1277195113,1852138345,170812787,1159733258,543712097,1953394531,1969383794,544370548,1851880039,2032169844,1629517167,1852796448,1668834605,1769174380,539780470,1819438967,1684633444,1914711141,1818327407,1714256244,174417266,1702125936,1814066286,1852138345,1965057395,1919247470,1701344288,1852793632,1651077748,1919906933,1696625447,1852142451,1818323316,1952542752,544501349,1767992419,539784045,1829400436,744844129,1702065440,1702043692,539782252,1701209711,1868963954,1634934898,539780460,1869639017,1629516914,1864393838,1919248500,1702062455,1853190688,1869422636,2036754788,1684955424,1869770762,1634165104,1948280180,1663067496,1702129263,544437358,1763731055,1663071092,1920233071,1953849961,1981837935,1769173605,170815087,1226842122,1752440942,1868963941,2003790956,543649385,1701996660,1634738277,1919377778,1936224353,543236140,1952542754,544501349,1701013868,577074030,544434464,544829025,1919973477,175338341,1701996385,1852140901,1919885428,1836016416,1836345709,745827941,2003789856,1919252069,1852138528,1852403055,1684370529,1869488172,1869881460,1718510880,1701016175,1881170208,1852142689,1932003956,543712117,1629516641,2019893358,1936028272,1701847155,1936289138]},{"sector":8,"length":512,"data":[1852795251,544175136,1667330672,1701013876,1881170208,1852142689,1919885428,1987011360,1851879013,1869488244,1869881460,1702195978,1919903264,1952542752,544501349,1919315561,1701277289,1953391981,538979881,572550996,1851880039,1931485812,543712117,1634738273,1953391988,1667853344,1702063717,544175136,1634732641,544830578,1851876717,1869881459,1801547040,1970479205,1629513827,1734418542,1835361650,544501349,1663070831,1768779119,1852140916,1869488244,1869881460,1718510880,1701016175,1879728416,1852142689,1734418548,1936615777,1752440948,1634738277,779711602,538970634,2032166473,1663071599,1702260335,543236217,1702260579,543450482,1802661751,1852514348,1852405615,544828519,2037146994,543649385,1629515375,1952542752,544501349,1701013868,744846190,1684955402,1701344288,1919894304,1886610802,1768189551,1394632558,1668445551,1718558821,1701344288,1919907616,1936269419,1953459744,1635148064,1650551913,1713399148,1629516399,1852799342,1869875813,1886348064,1713384569,543516018,1663067759,1735549288,1851859045,1853169764,544367972,543516788,1836213620,1718558835,1768453152,1766596723,1936614755,1948265573,1970238056,1629513831,1651863562,1818454380,1986076793,1634494817,543517794,2004116846,543912559,1987208563,1864397413,1953439858,544367976,1684104562,544828521,1701012321,1651078003,1830839660,1936613733,1752435244,2032168549,1830843759,544502645,1752459621,673215077]},{"sector":9,"length":512,"data":[1663052081,1702065505,1701344288,1919894304,1886610802,1768189551,1394632558,1668445551,1869881445,543515168,1628073843,1818845558,1701601889,1919885356,691152928,1920098592,1701277281,544175136,1919968612,543520361,1920298873,1718379891,543584032,543516788,1701733730,544500070,1948280431,1879729512,1852142689,1768693876,1936614755,1868963941,1752440946,1881174889,1769239137,1634497891,1870078066,539782002,673215087,1629497651,1851880050,539780455,1629515369,1851878688,175269230,1936617315,1702130537,1998615662,543716457,543516788,1970365810,1835364969,1937010277,543584032,1936287860,1667845152,1702063717,1869881388,1954047264,543452773,543516788,1702125936,1812624494,1852138345,1948280179,1868832879,1953721975,1835099506,1667592736,1701408873,779318382,1260527648,1769434990,2037147502,1818587680,1735289209,1701650466,544435809,544567161,1702257000,1952669962,543973749,2003791467,1734632812,1752440933,539784289,544503138,544370534,543516788,1702125936,1814066286,1852138345,539780467,1920298873,1852793632,1769563510,1948280686,1661625704,1919252079,1998611557,543912559,1629515369,1970234144,2037544046,1919885356,1970239776,1701978226,1768974691,661941861,1937055859,1718558821,1701344288,1987011360,1684370021,1919907616,1852377707,1663066400,1953396079,539785586,1819635575,1852383332,1852404326,1864394087,1864394094,1869422706,1763730802,1953391972,1634297449]}]],[[{"sector":1,"length":512,"data":[543517794,1702125936,544437358,1948282473,175399272,1853189987,544830068,1952540788,1970239776,1986095136,1701978213,1852797793,544175136,1768711522,543520357,543519329,1768710518,168439396,1716068384,1970282540,1635087218,1948284014,1919885423,544106784,1852731235,1769235301,1998614127,543716457,1769152609,1701603182,1634890784,1667330926,1852795252,175271712,1634890337,1835362158,745827941,1970239776,1852793632,746153334,544370464,1886351984,1952540513,2036473957,1869770784,1769108835,1663068014,1702260335,1668178297,1718558821,174137388,1702260579,543450482,1802661751,1851858988,1919361124,544501345,1634738273,1953391988,1667853344,1702063717,544175136,1701670771,543584032,543516788,1953653104,175334761,1701012850,1852405353,1752440935,1868767333,1701995894,1870078052,1629514610,1869116533,1769630066,1948280686,544040296,1965059956,539780467,1886351984,1952540513,1830825061,1718183023,1919879801,1852793632,544826742,1886593121,1718182757,1663066985,544829551,1948280431,1663067496,1919252079,1998611557,745239151,1701344288,1752440942,1634738277,1953391988,1667853344,1702063717,1970239754,1634887456,1763734638,1969299571,1634561908,1633905012,544828524,1702131813,1684366446,544175136,543976545,1768121714,1852139888,1864397684,1752440934,1868767333,1701995894,1870072420,1629514610,1998611566,1936421487,1935761952,1864393829,1953046638,537528878,1881162016]},{"sector":2,"length":512,"data":[1852142689,1768693876,1936614755,1936269413,1768170016,1769104243,1634625901,2037542772,1718165538,544500000,1936027492,1953459744,1668180256,1701082476,1953068832,175008104,543516788,1886348147,1718558821,1937008928,1987011360,1734439525,1881156709,1768451954,1937008994,1701344288,1702389024,1936286578,1718558821,1919885356,175335712,1684959075,1869182057,543450478,1948282479,1847616872,1697476207,1668441464,543519593,1864394351,1864394094,1869422706,1864394098,1752440934,1769087077,1937008743,1634235424,1918967924,1886587493,1718182757,1818321769,1730181484,1953390962,1965057125,1919247470,1768453152,1766596723,1936614755,538979941,544567129,544825709,544501614,1986948963,1629518181,1987011360,1684370021,1919907594,1718165611,1970239776,1701994784,1881170208,2037674593,544175136,1629515361,1851880050,1701668199,1998615662,543716457,1752440929,543453801,1953653104,1752440953,1763734625,1852377715,1701344288,1937072672,1936027241,1718558835,1936286752,1651077748,1852404853,1869815911,1635218534,539780466,1701080693,1752637554,543712105,544567161,1701536109,2036428832,1953391981,544175114,543516788,1919510644,1634738276,544830578,1702060386,1852776548,1701344288,1954047264,544501349,2032166511,544372079,1769235297,2037672310,543584032,1986948963,1852406117,1752435303,1870078053,539782002,543452769,1701080693,1752637554,543712105,543516788,1919510644,1634738276]},{"sector":3,"length":512,"data":[544830578,1851880039,539784052,1629515636,1864399214,1752440934,1634732645,1701409906,1752637555,1870078063,543452277,1701012850,543520361,543516788,1702260579,543450482,1802661751,1869768224,1870209133,1629498485,1936286752,1835627107,1952542313,175731311,1702125936,1814066286,1852138345,673211763,1763715425,1868767342,1667591790,1852795252,1953068832,1868767336,1936025968,543584032,543516788,1702260579,543450482,1802661751,1852793610,1702454646,2036473956,1970239776,1919887392,1886348064,544433513,1701077357,1869768224,1752440941,543519599,1768976227,740914021,544370464,539583016,1835627120,1818849889,1868958329,1851859058,1852383332,1852793632,1952671086,544108393,1752459639,1701868320,1768319331,1919950947,1668637807,1864397684,1868767346,1818849389,1869182049,1948283758,175399272,1953394531,544106849,543516788,1702260579,543450482,1802661751,1853169708,1936942444,1970239776,1953391904,1684370021,1953392928,1752440943,1629516897,1851880050,1701668199,170685550,1948283503,544498024,1702125936,1814066286,1852138345,1998611827,1730179937,1953390962,539780197,1869181552,1869881458,540553760,1668440397,808591464,170800944,1310728202,1768453231,1763731310,1752440942,1277195113,1852138345,1931502963,1819042152,543515168,1936617315,1702195828,1935745124,1668834592,1768191340,1864394606,1768693874,1769236845,1628071790,1763735918,1768714349,1814062181,1852138345]},{"sector":4,"length":512,"data":[1864394099,1953439858,544367976,1701209444,1936028526,544175136,1919315561,1701277289,1953391981,1634235424,1634541684,1953434233,2003985768,543519593,1629513058,1818845558,1701601889,544175136,544567161,1701080693,1885413490,1667853424,1701601889,1952542752,544501349,779575660,538970634,539898417,1394634574,1701999221,1919247470,543584032,1701344335,539456370,1701147206,778923876,538970634,1663067721,1768189551,1852795252,1918967923,1835606117,1702063984,1852776548,1970239776,1752639520,1701344357,2036473970,1970234144,1864397938,1919247474,1734418476,1835361650,544501349,1862955631,1919248500,1702062455,1752440873,1663071329,1920233071,1667851361,1752440948,1868767333,1953064046,1936617321,543584032,1936287860,1667845152,1702063717,1752440876,1679849829,1869488239,2019887732,1702065507,1970239776,1869768224,1752440941,1868767333,1953064046,1936617321,543584032,1936287860,1667845152,1702063717,1226842158,1870209126,1633886325,1953459822,1852793632,544826742,1868761697,1701995894,1870078052,1931504498,1935745135,544175136,1769234803,544826995,1970104691,1851880556,1937076069,2032171372,544372079,1768710767,1769234791,544435823,1701080693,1752440946,1275753321,1852138345,1629513075,1629512814,1864399214,1919248500,1919250464,1701734772,1864397934,1734962274,1869182049,539784046,1852139636,544432416,1868767329,1902474094,1668179317,1870209125,1634541685,1869482617]},{"sector":5,"length":512,"data":[1868767348,2036692590,544500000,1629516897,539913324,1919895072,1635280160,1701605485,1718165548,1970239776,1919377696,1948280165,1702109295,544435570,1952540788,1818390304,1952540521,1870209125,1869875829,1819239200,1952671084,1914724640,1818327407,1713404276,1713402479,1752461941,1663070821,1702260335,1735289209,1869768224,1752440941,543519599,1998614388,544042856,544567161,1986948963,1946843493,1344300392,1919381362,539782497,543516788,2037149295,2036430624,1970239776,1970234144,1931502700,1936290913,1646295398,543716463,1936681076,1702109285,544435570,543452769,1936287860,1667845130,1702063717,1970239264,1646290028,1869881445,1717924384,1852399986,1953391904,1818587753,1919295609,1663069551,1702260335,1735289209,1701344288,1869762592,1835102823,537528878,775106848,1702057248,1953068832,1752440936,1313284197,1715544149,1869768038,1852131104,1818325605,1651855392,543385964,1701013836,778400622,538970634,2004119374,1936225385,1684955508,543649385,544829025,1701344367,1919950962,1936291439,544108393,1948280431,544434536,1701013836,744846190,1970239776,1986095136,1701841509,1936289138,1852795251,544175136,1802398060,544370464,1651339107,543518313,544829025,1702260579,543450482,1802661751,1953068832,543236200,1802661751,1667853344,1702063717,1853164132,544367972,1936876918,544108393,1718558771,1701344288,1431193376,1717977376,544174693,1701733703,543973746]},{"sector":6,"length":512,"data":[1818391888,1277191017,1852138345,1763730803,544175214,1769152609,1701603182,1836016394,1701734754,1870078052,539782002,543452769,1663070068,1702260335,1752440953,1701978213,1953265011,543649385,1802661751,1411391534,1948280168,1936552549,543584032,1936287860,1667845130,1702063717,1818851104,1868767340,1852404846,1948280181,1885413487,544828528,1948282740,1881171304,544502369,1667852407,1936269416,1701344288,1987011360,1684370021,1919907616,1644833899,1948284021,1931502952,1768121712,1914727521,1769304421,1701668210,544437358,1948280431,1193305448,1092638030,1919247974,1699160175,1634887022,1968185452,1667853410,1667845152,1702063717,1702038060,1869182051,858857582,1868767276,1919247214,1735289198,1953392928,1667330661,1852795252,1919448096,1751610735,1847615776,1870099557,1998613362,543976553,1819308129,1869881465,1701344288,1836016394,1634625890,1852795252,544432416,1751348595,537528878,775172384,1986351648,1684370281,1919243808,1852795251,1718558835,1768453152,1766596723,1936614755,168439397,1750343712,1917198437,1394632037,2004117103,543519329,1853189958,1769234788,1830841967,1881176417,1768710773,1914726515,1936291429,1629512805,1865376878,1701716082,1702240375,1869181810,1864397678,1752435302,1313284197,1699160149,1634887022,1968185452,1667853410,1667845152,1702063717,1869768224,1769218157,1948280173,1769218159,539911533,1668633376,1701716072,1702240375,1869181810]},{"sector":7,"length":512,"data":[1998615406,174877801,1931502946,1818848617,1763734113,1886593134,1953067625,544175136,543516788,1936028272,544501349,1936876918,745434985,1953849888,2036428064,1718182944,544367974,1679847017,1767994469,1869881452,1684300042,1936942450,2003136032,1869770784,1835363426,1919885427,1852793632,1852990819,168439411,1631920160,1981835363,1769173605,1763733103,1768366195,544105846,1768169569,1852404851,1936291175,1735289192,1919252000,1852795251,1836412448,779248994,1716068384,1701344288,1869762570,1835102823,1701868320,1768319331,1948283749,544498024,1700995169,1767994482,1970151534,1919246957,1981834341,1769173605,1864396399,1752440934,1313284197,1699160149,1634887022,1968179820,1667853410,1667845152,1702063717,1919885856,2037276960,1952541728,1981837925,1769173605,539127407,1819308129,544433513,1763733364,2032151668,1746957679,543520353,174418036,1769238639,1864396399,1868963942,2003790956,543649385,543516788,1836213620,1851859059,1868767332,1953064046,1936617321,1953064224,544367976,1948280431,544498024,1651340654,1684370021,1919251978,1852795251,544370464,1629513327,1814067566,1919251553,1919252000,1852795251,1651863584,1752394092,1646290021,1752440953,1917198437,1394632037,2004117103,174420577,1853189958,1769234788,539913839,543574304,543516788,1735357008,544039282,1936027492,1953459744,1701868320,2036754787,1981833504,1769173605,1847619183,1700949365,1718558834]},{"sector":8,"length":512,"data":[1701344288,1431193354,1852131104,1818325605,1651855392,543385964,1701013836,744846190,1970239776,2036428064,1869112096,543519599,544829025,1936876918,544108393,1919252069,1651863584,1752394092,1644848229,1752440953,1917198437,1394632037,2004117103,543519329,1853189958,1769234788,170815087,1226842122,1752440934,1917853797,1634887535,1886593133,1718182757,544433513,1952540788,1881170208,2037935986,1851876128,1667589152,543515753,1667852407,1969627240,1701999988,1919251978,1852795251,1718558835,1701344288,1431193376,1852131104,1818325605,1651855392,543385964,1701013836,543519598,544104803,1965057378,744777075,1634235424,1919950964,662272111,1970276979,1667853410,1635021600,1701668212,1864397934,1667309670,1953523043,1701015137,543584032,1702240353,1869181810,1701847150,1851878770,1819569765,1969299577,1919903860,1936030313,1970239776,544175114,1869572195,1948280179,544498024,1936876918,544108393,544370534,543516788,1735357008,778920306,538970634,1702125900,1768693874,1936614755,1702240357,1869181810,1830843246,1730181473,543520361,544567161,1768186977,1852795252,1864395873,1768169586,1919247974,175402597,1836213616,1769173865,779316847,1866997792,1702258039,1847602290,1684086895,1769236836,1818324591,1818390304,1952540521,1936617321,1701994784,1886218528,1684370287,544108320,175730273,1752462689,1864397423,1868767346,1769109872,544499815,1684828008,1629516389]},{"sector":9,"length":512,"data":[543236211,1970496882,1864397932,1870209126,1663070837,1936682856,543649385,1713401716,1869376623,174137463,1702125932,1702240370,1869181810,168439406,892411936,1766072366,1634493299,1919249769,543584032,1920098647,2037673569,537528878,1162368032,1226851666,1330520147,1380013856,1414414674,1329995865,1213472850,1380982853,1095911247,1411394637,1213472847,1480925253,1414415700,1380274208,1414809933,1109410885,1346439769,1128877136,1162625601,1463897120,1159733294,1346716504,1213669460,1327517253,1380272212,1163086167,1096045344,541345108,1461734985,1230260562,1411401550,1126188360,1381584975,1414022985,1280264202,1397900612,1145979168,542265135,1162368079,1095770194,1162433618,1380982867,1145656911,1213472837,1380982853,1095911247,1092755533,1397301331,1230446626,1431259220,1096228948,1312903762,1326078292,1312890950,1229660249,539771982,1213483333,1159746117,1163022424,1145394003,542265120,1280331081,742671689,1129204000,1229215052,539772750,542397762,542396238,1229801804,541345108,170676052,541411412,1280331081,541345097,1381122391,1230261825,1327518533,1162682438,1095254866,1111577678,1414089801,1312890969,1229332548,1397050964,1329995859,541139026,1414676816,1280656201,1342853697,1330664021,539903315,1162368032,1414415648,541413961,1263749458,542327072,1411403604,1361069384,1229734229,1092639060,1344291918,1330008645,1312902482,1327514947,1213472838,1380982853]}],[{"sector":1,"length":512,"data":[1095911247,1397295693,1414092576,1331241032,538979925,1431259219,1411400780,1344292168,1380405074,1344294209,1163284306,1178944544,1230259013,539772246,542461785,1431524161,1411401037,1126188360,542397263,1091192399,1310739532,1397048133,1498562899,1380274976,1229146454,539772750,1095779666,1327518281,1329799250,1128616530,1313818964,537528878,775303456,1835617312,1952543849,544108393,1277191791,1768055145,2037672300,537528878,542001440,1159745358,1414415702,1280202016,542331717,1431389522,1145393737,542720544,1280331841,1111573321,1277183308,1327519553,1195450450,1145390418,542069792,1461734985,1230260562,1460291406,541871177,542723649,1498435395,1212631378,1330126932,1380271180,1380917292,1498300704,1213484832,1344295493,1498698305,1330140960,1146047776,1162430025,1312890963,1380921156,1313817376,1398359382,1162368010,1330794528,1296126535,542327072,1297237328,1163154505,1111564356,742741583,541409824,1111574860,1411401036,1331241039,1329995861,1094983762,1162297677,1226845267,1431061326,1196312900,1498300704,1313163018,1279349317,1347625004,1095320389,1226845260,1145652046,1096044101,1380917324,1313817376,1431389523,1230261829,1142967361,1195461953,1092637509,1230195026,1327515470,1327518805,1213472838,1398082117,1380917317,1095649568,1229736258,1411406164,1398087759,1213472837,1380982853,1095911247,1227366477,1431061326,1196312900,1414873632,1414483488,1296649248]},{"sector":2,"length":512,"data":[1145394249,542069792,1397968716,172379936,1096040772,542265120,1096040772,1229275680,1377847118,1162104389,541345106,1128353353,1095914819,1327514964,1330389074,1397052243,1398100768,1313423700,1109410885,1331241049,1380917333,1229476896,1342850130,1230262849,1327518533,541139026,1279869254,541413973,1411401295,1344292168,1380405074,1411403073,1347362895,1413567045,1230446661,1092634708,1327520078,1380272212,1330794528,1296126535,170666323,1313166917,541477152,1212372307,1280264224,542262596,1327518287,1380272212,1380012064,1210079572,1109414721,542000453,1230390337,541345107,1411401295,1344292168,1230197583,1229736258,1327520084,1431505478,1142966339,1195461953,170808133,824188938,1226845751,1919251566,1952805488,1869182049,1718558830,1667584800,1852795252,892412019,1684955424,775303456,538970634,1948280393,1679844712,1818456937,1701669217,1718558834,1918990112,1953390962,1851859065,1768693860,1635019117,1852795252,543584032,1650551148,1953066089,1919950969,1684633199,1628071013,1702260578,1851876128,544501614,1730176354,1852143209,1668246560,1814064225,1818322789,1717986592,544498533,1868784481,1852400754,1869881447,1701344288,1948283497,1936552549,1701972524,2003134838,543649385,1920298851,1931506548,1819042152,1886413088,1814067564,1818321775,2002873376,1634235424,1869422708,1663071347,1702063980,1629518188,1869770864,1634560376,175334772,1629515361,1819243362]},{"sector":3,"length":512,"data":[543519861,1986617719,1864397413,1818304614,1768104044,543975798,1650551148,1953066089,1852383353,1852793632,1952671086,544108393,1752459639,1701344288,1869762570,1835102823,1853169708,1936942444,1998610720,1634890337,544830574,1629516399,1836413811,1869182064,1718558830,1634298912,1768712546,1629518196,1836016483,1768841584,1629516645,1886348042,1718558841,1701344288,1869762592,1835102823,544106784,1970562418,1713401458,1629516399,1701144096,537528878,538976288,538976288,538976288,538976288,538976288,541347397,1411401295,1397576261,1145979168,1313817376,1230260548,173231695,538976266,538976288,538976288,2003781664,544175136,1819308097,1750343801,543519589,1836213588,1869881459,1970231584,1699618930,1917853815,1634887535,168457069,1716068384,1970239776,1986356256,1886350437,1847615776,1881175909,1919381362,539782497,543452769,544567161,1953390967,544500000,1646292852,1718558821,1701344288,1701996320,1936028769,1869613684,1651078003,1965057388,1948280179,1752440943,1970282597,1667853410,1752440876,1700929637,1998615667,1948285281,1667309679,1986357608,1752440933,1763734377,1869881459,1801547040,1953046629,1701996042,1869815909,1635218534,1998611826,1751345512,1702257952,1852799346,1633886309,1701978222,1953720676,1969383794,1629513076,1663067246,1735287144,1853169765,544367972,1936025716,1702109285,779316594,538970634,1679847252,1869815919,1952522284,1751343476]},{"sector":4,"length":512,"data":[1701344288,1819239968,1769434988,1847617390,1667855471,1948283749,1752440943,1919950949,1634887535,538979949,1763734601,1634934899,1953719654,544175114,1635021921,1948280931,544040296,1948282740,1931502952,1953653108,543584032,1751343461,1970238240,543515506,1701603686,544175136,1953722221,1717986592,1769235301,2037146998,1635021578,1948280180,1696621928,1970037624,1852795251,543584032,1920098679,2037673569,1851859003,1634017380,1713399907,543517801,1970235507,1746953324,543520353,1814066273,1953718629,1701344266,1868767776,1769109872,578054247,1852402720,1851859045,543236196,1852403568,544367988,1998614388,1701995880,1701344288,1819633184,1869488236,1701013876,544434464,1853189990,168439396,538976288,1701736315,1852402720,1869881445,1986619168,1752440933,1919950949,1634887535,544417645,1701667182,1684955424,1646289184,1717922162,1701079328,1718558817,1634236192,1953046644,1701798944,175976051,538976288,2037411651,1751607666,1126703220,2038112297,2104648037,1853562912,543518049,1629513327,1869116533,168459634,538976288,1936287828,1869770784,1835102823,544434464,1701147238,1718580000,1918990196,2032155237,1663071599,1914728033,1936286821,1651077748,543519861,1629516905,1865376878,1869422706,2036754788,538976266,544500000,1701080693,1752440946,1702109285,544435570,1948280431,1193305448,1193301326,1919250021,1344302177,1768710773,1766596707,1936614755,1935745125]},{"sector":5,"length":512,"data":[1651863584,1752394092,1646290021,538970745,1752440864,1917198437,1394632037,2004117103,543519329,1853189958,1769234788,539782767,1752459621,1981837925,1769173605,857763439,543584032,543516788,1701013836,744846190,175271712,538976288,544497960,1920298873,1953525536,695103337,2037276960,1952541728,1981837925,1769173605,170815087,538976266,1768444960,1919950963,1634887535,1936269421,1936286752,1651077748,1684370549,544106784,543516788,1701867368,1634235424,1953046644,1818851104,1700929644,1702065440,745305446,538976266,1953849888,1414092576,1414877000,1498300704,1380013856,1414414674,1998601049,1869116521,1696625781,544105846,543516788,1819307369,543450473,1920098679,2037673569,174485280,538976288,1129465165,1414414664,1279869505,542725193,1176531567,1162761289,1176523603,1092637263,1380012064,1430473044,542261580,1347573072,776295247,1699946528,1752440933,538970725,1313284128,1699160149,1634887022,1968185452,1667853410,1667845152,1702063717,1919903264,1919905056,1701060709,1818845556,168439411,538976288,544567129,1970235507,1746953324,543520353,1701012850,1684371049,1663066400,544829551,1948280431,1193305448,1193301326,1919250021,1344302177,1768710773,1766596707,1936614755,538970725,1818304544,543649391,1752459639,1768453152,1919950963,1634887535,538979949,1847617097,539784303,543516019,1953785916,791624304,779581303,779447911,795308655,1701013868]},{"sector":6,"length":512,"data":[1936028526,170802735,1936474378,1684086895,1852383332,1836216166,1869182049,1852776558,2003789856,544175136,1953394531,544498529,544567161,1696627042,1952671084,1768845170,1851859043,1634738276,544367984,1818845549,537528878,543574304,543516788,1735357040,544039282,1936027492,1919251488,1634625901,1852383340,1634887028,1869182051,1830825070,543517537,1864397929,1970304117,543236212,1919903859,1869482612,1701013876,1802071072,1752440933,1998615401,544105832,1931506793,1953653108,1852383347,544104736,1702129257,1952670066,543520361,1701080941,537528890,2065702944,1785688688,2104779621,1866670112,1769109872,544499815,539575080,1634040187,539000178,1819633275,1835101804,537558373,1411391520,544434536,1735357040,544039282,1701670755,1769414771,1092642932,1280267074,1279611989,1330520153,1380013856,1414414674,1713388377,1679848047,1767994469,1948283756,543518841,1869116256,662118519,538970670,1750343712,1763734377,1919295603,1931502949,2004117103,744845921,1684955424,1970239776,1701994784,1818588960,1701670755,544175136,1768187250,1769108595,1702131042,175401248,538976288,1701080693,1700995186,1767994482,1868767342,1953064046,1936617321,2037653563,1612735856,2003789939,539452192,544370534,1635018084,779316329,1750338058,2036867173,1752461168,1667855461,1663069281,1634561391,544433262,1869116256,662118519,1684955424,1752391712,1663072111,1752375335,1684829551]},{"sector":7,"length":512,"data":[1869116192,1752440951,1885413477,1886351984,1952541042,1634732645,544437362,1948280431,1193305448,1919250021,1344302177,1768710773,1766596707,1936614755,538979941,1663067727,1936881007,2032151653,544372079,1735357040,661479794,1868767347,1851878765,1829401444,1952999273,543515168,1717987684,1852142181,1713388404,1629516399,1230325536,1953392928,1634103909,539780451,544567161,1819635575,1937055844,1851859045,1650532896,544503151,578318178,537528878,1970231584,1869116192,543452277,1869835361,1952802592,1970239776,1835343986,2037345392,673215077,2032166505,1998615919,543912559,1629516641,1869770784,1835102823,695362925,544370464,1869112179,170683503,1629513321,539785582,1931505524,544106345,1663180897,1920561263,1952999273,1936286752,1767992419,577922413,1919903264,1701344288,1869770784,1835102823,1718165548,1667591712,1634956133,170817906,544370502,1701998445,1718511904,1634562671,1852795252,544108320,1936287860,1851858988,1869095012,1869881463,1886413088,1629518188,1713398894,1869376623,1752440951,1313284197,1346838613,1931488332,1007314277,1886680168,1999580986,1731098487,1865315694,1815046002,1852138345,796091763,168439358,1750343712,1313284197,1699160149,1634887022,1968185452,1667853410,1667845152,1702063717,1701798944,1869488243,1701847156,1953066354,1668180256,1869640303,1769234802,2032166766,544372079,1735357040,174940530,1869901417,1869770784,1701409392]},{"sector":8,"length":512,"pattern":0,"data":[2037539188,1869770784,1835102823,538979955,2032166473,544372079,1735357040,544039282,1629516649,1651864352,1953853298,543518313,1919052140,746156641,1970239776,2036428042,1852793632,1701079411,1953046642,1919905056,1937055845,1819633253,544175136,1836213616,1814066281,1768648297,1881171822,1919971186,1635018089,1629518194,1768714352,1769234787,544435823,1752459639,1701344266,1651076128,2037539186,1226842158,1752440934,1763734377,1752637555,2032170081,1998615919,544501345,1679847284,1965042799,1948280179,1193305448,1277187406,1702064997,1699160178,1634887022,1968179820,1667853410,1667845152,1702063717,1936615712,1684104564,543584032,1936287860,1667845152,1702063717,1109401646,1713402997,1953722985,1819287596,1702060389,1634038304,1748765284,980448372,2004299567,1852255863,1919889013,1752182631,1936682089,2036887663,2036889391,1953459757,1885826093,1952984684,775842925,10]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"data":[1751344448,1718558831,1762266470,623779942,775765297,544630116,1869901671,1986356256,1718159885,824520224,1697529149,1634890872,1953457952,2019893359,224490100,543582474,1026630958,1768697405,1730177902,544175215,1802398060,168626701,1869112165,1769292320,1852400748,1162092647,776426818,223170371,1635215882,757099891,1869377390,757100391,544106850,540301101,1346323501,540032333,544163373,1430406468,1329802823,1701060685,778532194,225276769,1751344394,1967267951,1768189033,1142974318,1196769861,1329802840,1779043661,1836278135,1869491488,1869049708,1768041760,1462575214,1143808052,1028476991,1177362481,1162092655,1481069890,1297040174,1650811936,1630431093,168652147,1869901671,1684956448,168626701,1954047290,168649074,1869112165,1769292320,1852400748,1162092647,1481069890,1329802820,539828301,1969382756,1702240359,1869181810,1718558830,1650811936,225994613,1635215882,757099891,1869377390,757100391,544106850,540301101,1346323501,540097869,544163373,1430406468,776230983,541937475,1094927405,1229472596,825250894,757084221,1413563204,1313425475,1026764884,1701060656,778532194,225276769,1695157514,544172131,1818850626,1735289188,1111835680,1163413333,1297040174,1746939168,1936420719,1953392928,1970434661,544437360,539768368,1629504304,807429230,1852383300,1634038304,1869426028,168650084,1935767402,1848451181,1735355503,1647124591,757100137,757085271]},{"sector":2,"length":512,"data":[1297104708,757084477,1142976326,1196769861,1127105880,757091663,1413563204,1313425475,1026961492,1143808049,1129595203,1414416712,826098480,1128541472,1212372033,810831433,540097860,1969382756,1935748711,218762605,1751344394,1967267951,1768189033,1142974318,1196769861,1127106136,757091663,1297105952,1818435657,1953391977,1851876128,544501614,1768189805,1763735910,1919251566,1953527154,825237619,858791980,1144004652,1684955424,222638112,1635215882,757099891,1869377390,757100391,544106850,540301101,1346323501,540097869,544163373,1430406468,776362055,541937475,1094927405,1229472596,825447502,1679831357,1735746149,1836278062,168626701,1986356282,1667566093,1109421928,1684826485,543649385,1430406468,1498623559,539828307,1769366884,1679844707,1702259058,1702240370,1869181810,1718558830,1650811936,168650613,1935767402,1848451181,1735355503,1647124591,757100137,757085271,1297104708,757084221,1142976326,1196769861,1398362926,1145318688,1163282770,540097874,1094927405,1229472596,909136974,1679831357,1735746149,1836278062,1869023757,1696624500,168649838,1815742989,225144425,1751344394,1967267951,1768189033,1142974318,1196769861,1297040174,2003438093,1684894561,1869491488,1869049708,878128416,1061432608,809323856,1866870048,1111835680,1328432981,1679837762,1735746149,1836278062,1768688141,790653806,1869377390,790654823,2037279092,1650811936,221996917,1751344394]},{"sector":3,"length":512,"pattern":0,"data":[1967267951,1768189033,1142974318,1196769861,1329802840,1779043661,1836278135,1848451172,1735355503,1462575215,1143808052,1028476991,1177362481,1162092655,1481069890,1245859630,1650811936,1630431093,168652147,1802398060,1869492000,1869049708,1769221920,1679849838,1735746149,168639352,543974756,1969382756,1865296487,168651362,1869901671,1684956448,168626701,544040306,1646292820,1684826485,1953068832,1095573608,221924691,1835364874,543976736,542392623,1819242031,544171887,540235567,1346323503,540032333,543508015,1430406468,1329802823,1701060685,778532194,225276769,1835364874,543976736,542392623,1819242031,544171887,540235567,1346323503,540097869,543508015,1430406468,1127110727,1679838543,1735746149,1836278062,1701972493,1701060717,1701060716,711423330,1784835886,1698302477,168649838]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[1751344448,1718558831,1913261414,1109421413,1684826485,1802313843,1818386804,1697543013,539911544,1852141647,1952536352,661483363,541270131,1886220131,1919249513,544434464,1684370293,1913261358,1411411301,544434536,1885697139,544434464,2037149295,1902473760,1701996917,1718165604,1701736224,543584032,543516788,1819045734,1852405615,1768300647,544433516,1701995895,1685024032,1701406313,168639076,544040306,1763715377,1920234350,1952805678,1701972493,691150957,1936615712,1798206068,168655205,544040306,1763715379,1920234350,1685221166,1701972493,691282029,1953197344,1701601889,224603763,1818457866,2020551968,540224800,1635019629,1936026722,168649518,544040306,1646292820,1684826485,1953068832,1766662248,1936683619,544499311,1868767299,1818849389,1965060709,1948280179,1713399144,1869376623,1735289207,1852402720,168639077,544040306,790654051,790657103,1830826839,1650553963,779314540,658787]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"data":[168634927,1411394080,544434536,1735357040,544039282,1684104562,1852383347,1701344288,1918989856,1937076073,1952539680,1768300641,745760108,1919250464,1836216166,1869815923,1663067501,1801676136,168635507,1629497888,1730176110,1919250021,1936028769,1701344288,1650553888,544433516,1684366702,1713398885,1629516399,1835365235,544828514,543452769,1634953572,1835365235,779709538,706742797,706742797,1701336096,1886284064,1713402997,1936026729,1701994784,537529658,1762199850,1920234350,1952805678,1936607497,1668641396,1852795252,1952805664,706742797,1852377353,779252851,158950763,1851880020,1952541811,544108393,1836020326,1634231072,1952670066,1797288549,544438629,1864396660,1634887024,1814062190,544502633,1701869940,537529715,1762199850,1920234350,1685221166,1685212937,1852404325,1701978215,1769234796,544435823,1696624500,1919903342,1864394083,1752440942,1886330981,1851880037,168653668,168634912,1411394080,1864394088,1970304117,1635000436,1936026722,1701994784,1769109280,1852142708,544175136,1430406468,1279415367,1129204014,1752637484,543712105,1763734377,1970037614,543450468,168655202,1142958624,1196769861,1297301806,537529646,168636202,1763904013,1970037614,1008756068,1818522739,1747870313,587861310,1818455657,543515765,1685353276,1747873641,587861310,1818455657,543515765,1685353276,778531425,168640104,1668180259,1701082476,1953709088,1735289202,222193710]},{"sector":8,"length":512,"data":[1852384010,1685417059,1664884837,1701869940,222193710,587861258,1768318308,1293968750,1331648577,1498701644,156452176,221394953,1701061386,1701734758,1480674592,1331646047,156451922,808651017,1680017933,1852401253,1229725797,1162626382,151593038,824188960,168636979,1717920803,543518313,1599619405,1598903105,541213012,840966153,221787184,1701061386,1701734758,1480674592,1380863327,156451653,538976265,221261876,1701061386,1701734758,1480674592,1447121759,1298089029,1397572942,808519968,1680017933,1852401253,1095573605,1280532312,1598575425,1381256773,156452169,168636466,1717920803,543518313,1599619405,1213415752,1414415711,1397049682,221589769,1701061386,1701734758,1480674592,1096045407,1313169234,1162433108,892406099,1680017933,1852401253,1095573605,1330405208,1096043331,1313169218,1162433108,808788051,1680017933,1852401253,1095573605,1195466584,1347768146,1414415711,1397049682,221524233,1701061386,1701734758,1213418784,156517961,822675721,707731506,1836412448,544367970,1646290543,544437353,1869374818,1634541687,1852401763,2037653605,706766192,587861295,1768318308,1394632046,1297371727,151587150,538980361,1931487791,544502383,1835363949,1667853935,791289971,168626701,1701869940,543581540,1918986339,1869562377,1851876716,587861307,1768318308,1411409262,157644146,587861297,1768318308,1176528238,1702063201,168636425,1680017933,1852401253,1431183461]},{"sector":9,"length":512,"data":[1380270669,153712680,2053731112,677801829,790636920,2053731104,677801829,690583594,168626701,1918986339,1852402720,1229740901,1162626382,221994318,1852793610,1663071347,544366952,1818846762,1835101797,168639333,544501353,1701734764,221998958,1762266378,1847620718,2036689759,540876915,168639280,1970435187,1797289059,1635023205,226173026,1852377354,1701519476,168639353,1953392905,1818326560,221996405,1852377354,1769414772,996701284,998050317,168626701,544501353,1819238254,1887007839,1025536869,221982752,1920234250,544498549,1954112875,1864393313,2036689772,1952672100,1480674651,1598836575,1162893652,221994323,1634231050,1865031794,1835101804,1297838949,1331648577,1498701644,1565738320,790634555,1868767274,1767994478,544433518,1701734764,1718558835,1397639456,1261326932,706763077,1762266415,1864397934,1717989228,1534354803,1599619405,1415531599,1397051481,168639325,1852377613,1601052788,1935962735,807419168,1930038587,1668641396,1701519476,1650553977,1701521952,1685221241,1095588657,1598971736,1396986447,168639325,1970435187,1797289059,1635023205,1797922914,1919908197,1297822308,1314871361,1146244959,221994323,1869562378,1851876716,1685221152,1818324339,1095588716,1280270168,1348031583,995971909,168626701,168634927,1159735840,1952544113,1713402725,1948283503,1629513064,1835365235,1919249506,1650553888,221144428,539631626,1936025684,1752375397,1684829551]}],[{"sector":1,"length":512,"data":[543515168,543516788,1701667187,544432416,1679847017,1735746149,1836278062,537529646,168636202,1680017933,1852401253,1396777061,1313169229,805904452,224814712,1701061386,1701734758,1297301792,155337823,1719152649,587861349,1768318308,1092642158,1147096403,805898583,224683640,1701061386,1701734758,1297301792,155468895,1719152649,587861347,1768318308,1092642158,1331645779,153110354,1650882608,1680017933,1852401253,1396777061,1096245069,805917769,224487032,1701061386,1701734758,1297301792,842220639,2016413984,168638822,1717920803,543518313,1598903105,540422468,1719152649,587861304,1768318308,1092642158,1096764755,153114689,929462320,1680017933,1852401253,1396777061,1163091789,805904455,221668984,1701061386,1701734758,1297301792,1129270367,1346720331,1719152672,587861301,1768318308,1092642158,1281314131,1095451471,155536450,879130672,1680017933,1852401253,1396777061,1095589709,154552387,862353456,1680017933,1852401253,1396777061,1095589709,154159171,1684371504,168626701,544501353,1935761262,1635016557,540876898,168639280,1769172597,1684368999,1634231072,1935745138,1650553965,1480674651,1297301855,1111577695,168639325,1953696269,1952675186,1919839520,2065720165,1929972237,1668641396,1852645492,543384946,2019913258,168639348,1634231049,1932140658,1852404340,168639335,1953392905,1852140576,151653691,544501353,1936090735,222000229,1852377354,1935745140]},{"sector":2,"length":512,"data":[1717989229,997483891,539635488,1936090735,1763734629,1935745134,1650553965,221194784,222002442,1762266378,1847620718,1834970485,1667592814,168639347,1970435187,1830843491,1667592814,1819176224,1534358377,1599619405,1163021901,995971907,1953696269,1952675186,1919839520,706765669,1701342829,221996129,1762266378,1847620718,1986098015,1834968165,1936549230,807419168,1762266427,1931506798,1684371041,1701735775,1095588717,1095982936,1598309718,1296387661,221994323,1762266378,1847620718,1634497375,1700751475,1769108590,221999973,1953392906,1634497312,1635018867,1702059874,1095588721,1280532312,1598575425,1381256773,1565738313,1762266427,1931506798,1752392044,1600282996,1297837677,1398757441,1213415756,1414415711,1397049682,168639325,1852377613,1601052788,1752392040,1953391967,1936025970,1762266427,1746957422,1953002337,1935630945,1297838437,1214208065,1598575425,1381256773,1565738313,1762266427,1746957422,1953002337,1834967649,1095588718,1095262040,1163872339,1230132302,995971909,168626701,544501353,1953718126,1700754017,1769108590,221999973,1953392906,1635021600,1650553970,1902474079,1480674651,1096045407,1313169234,1162433108,221994323,1953392906,1635021600,1650553970,1533963615,1599619405,1380013139,1414415711,1397049682,168639325,1852377613,1601052788,1801678700,996303220,1852377613,1869357172,1635019619,1095588706,1330405208,1096043331,1313169218,1162433108,221994323]},{"sector":3,"length":512,"data":[1762266378,1847620718,1919377759,1936749935,1762266427,1629516910,1970238055,1533632368,1599619405,1330792257,1163874389,1230132302,995971909,1852377613,1734418548,1886744434,1718511967,1480674651,1380401503,1599100239,1381256773,1565738313,218762555,1768912394,1634082916,1663593577,1953721967,1634231072,1831477362,1634956133,539780455,690892334,226167309,1635125514,1936288863,1918967924,221999975,151653642,1935630710,1953653108,1735549224,1830825075,1634956133,992568679,1980303885,1769107558,677803118,1701082227,539783794,1936942445,744843105,1735549216,221981043,1635125514,1684956511,1735549224,221981043,1970276618,656958324,740781660,1685353248,695366245,151653691,1953069157,992555304,226298381,1175063818,541412425,1886330922,1701998181,1663591521,1953721967,1634231072,1881809010,694711393,226167309,1229326602,706757964,168639334,1711868429,1713388832,1852141679,1952542760,572533864,992551538,1762200077,1713905766,540884256,1280070990,226172969,1879640330,1869771365,1634740338,992569460,151587341,1953069157,992555304,2097744397,1711868429,1852140649,543518049,1634738237,221997172,1768687882,1869505902,807419168,151653691,1970562418,1713401458,2097810747,168626701,1684631414,1852402720,1718578789,678193505,1936617315,1751326836,706769505,1936942445,744843105,774778400,2064256297,1980303885,1768709985,1629516915,997418866,168626701,1919968777]},{"sector":4,"length":512,"data":[1718906473,1685353256,745697893,1766597152,622880110,1718558820,1931829280,538982951,1814047778,1852141161,1713384559,1852140649,694512993,151653691,1935630710,1953653108,1735549224,1830825075,1634956133,992568679,1980303885,1769107558,677803118,1701082227,539783794,1936942445,744843105,1735549216,221981043,1635125514,1684956511,1735549224,221981043,1970276618,656958324,740781660,1685353248,695366245,151653691,1953069157,992555304,226298381,1980370186,543451503,1836589098,1869376609,1853171811,1852270963,1763730533,1814066286,539782757,1936617315,1751326836,706769505,695822455,226167309,1870006538,706765929,544371824,1634541629,1668246636,1852140584,168639273,1762200077,1881677926,1025536628,1431183421,539577420,1818845542,1631789608,1953459822,1819042080,1952539503,1965367397,1954112032,1713402725,622883439,539763315,745432428,2036889376,168639273,1952805385,544109173,997356656,226298381,1107954954,1701605231,1730178657,1768715365,1177052526,541412425,694576682,226167309,1852377354,997073012,168626701,1919903241,993732640,226172969,1762199818,1713905766,1937007975,1852402728,1277176933,1279610441,539774533,539584102,1310735677,692866133,1952805408,544109173,1936482630,168639333,724240649,1701734764,221998958,1762199818,1814569062,1533374057,1025531184,589766717,1663052071,1769238127,996504942,151587341,540876910,1819440243,1814589029]},{"sector":5,"length":512,"data":[694513257,824192288,151653691,543582473,1008758312,2082484256,1768693884,1851483502,1025581149,1851533088,168634663,1812531465,1852141161,1767990895,1948395628,1814065007,778530415,221980962,1762199818,1848123494,807419424,539371040,1701734764,825060955,1027416157,1918641952,757082407,221998637,1762199818,1848123494,540884256,1663052080,1769238127,996504942,151587341,1701734764,542994011,1546068029,221980464,1913194762,1920300133,1918115950,221996405,226298122,168656138,1852377613,1701257332,2036689780,1634231080,707403890,220819568,168655626,1953392905,2036689696,151653691,1918986339,544221728,1881808957,168639344,1762200077,707272806,1027416176,656418592,545029152,1025536042,1546068029,2082482036,1881809020,540884256,539441959,706772092,1027416176,811345696,168634663,1768687881,1869505902,1818845542,1701519912,2019893369,1952671088,690119781,151653691,544826731,1881808957,221981483,1718159626,1881810976,540877088,539435047,706749990,1025581168,1952196384,640032807,544221728,656424225,639641403,1881808934,540877088,657480743,226172969,1795754250,1025538405,1701521440,1010573433,539572256,1881809020,221981483,1762199818,707272806,1025581168,656418592,539371040,555773994,1546068029,639641460,1881808934,540877088,539441959,706749990,1025581168,811345696,168634663,1812531465,1852141161,1767990895,1797400684,1948285285,1814065007]},{"sector":6,"length":512,"data":[577203823,168639273,168656137,1886398985,1881160992,151653691,1970562418,1797287538,222001509,168656138,707725837,706742797,1918979337,1752440939,1768366181,544105846,544826731,1852403568,544367988,1931506529,1819042157,1935745068,1818588960,1935745132,2037276960,1852401780,1836261479,1701604449,1752440946,168652385,1762208288,1630019700,1919902563,1735289188,544175136,1953721961,1919889010,221129060,791289866,168626701,1684631414,1918987552,1634562923,1932029036,1668641396,1701519476,1650553977,1886071328,2064256297,1762200077,1763734638,218762555,1919879434,1634562916,1801153644,539828336,1701538927,1667851385,1025531252,1970426912,168639333,1919903241,543762464,993009725,1008757024,1868525088,997418098,1764436768,151653673,543582473,2036689704,845443695,542992731,1797274941,168634736,1829308681,1936421473,1819042157,2036689704,828666479,693987675,2097810747,168626701,168634927,1092626976,1629512804,1954112032,1869881445,1701344288,1936941344,1818389861,1948283493,1701601889,1935747104,1650553965,168635945,1411394080,1713399144,1634562671,1718558836,1768453152,1635000435,543517794,1679848297,1919120229,1684365929,544106784,1869357153,1663068014,1701670255,1763734638,1701060718,778532194,745370465,706742797,1836020512,1701345125,1998611826,1768453225,1752440942,1768759397,1630366062,1835365235,1919249506,537529646,168636202,1870006797,1629512809]},{"sector":7,"length":512,"data":[1952408676,1935761263,1650553965,1936618792,1701734249,1751326820,1646293601,694514809,226167309,1718159626,1601054752,1601008481,543318388,1293958462,1096767553,1415531859,220807745,1812531466,1852141161,1767990895,1092757612,1835365235,1919249506,1650553888,1864394092,1718773110,779579244,221980962,1935739146,1650553965,1633644123,1952410995,724263521,540876893,1702132066,2097810747,168626701,1769172597,1684368999,1634231072,1701257330,1667329396,1701734760,1634231080,707403890,539783280,1819242306,544104805,1601399140,1734437990,2064256297,1661536781,544366952,1025536042,1886399008,151653691,1769172597,1684368999,1634231072,1635131506,996504940,168626701,543582473,544221736,656424225,539567931,1970562418,807431794,151653691,997206827,1762200077,707272806,540811376,539439143,706772092,540942448,690435623,151587341,1701734764,1634103150,573074537,543449442,1751343469,543518313,1701869940,221980962,1635125514,543520108,1965563965,1734964078,543450478,1918986339,1881810985,757082923,657467168,168639273,543582473,1768169768,1818648435,220817249,1627982090,1952408676,1935761263,1650553965,1853171752,1852270963,1663067237,695361896,1297301800,1128353119,723529800,1818326560,690578805,151653691,544239658,997204029,1913195021,1920300133,1635131502,996504940,226298381,1930038538,1668641396,1701519476,1650553977,1814047264,1969975151,2036689776]},{"sector":8,"length":512,"data":[1953392936,2036689696,2064256297,1929972237,1668641396,1701519476,1650553977,1886071328,218762555,1868957962,1797791858,540876912,1701538927,1667851385,1797274484,540811376,1701538927,1667851385,539697268,1112364366,1864913477,2036689772,1952672100,723532585,695233323,151587341,673212009,544826731,1797274941,1799236976,539588965,1970562418,1797287538,168639344,1852402697,1718578789,678193505,1851876130,1713402919,543452777,544826731,740448293,2036689696,168639273,1952805385,544109173,1280070990,2097810747,168626701,1918986339,1931487776,2003855723,1702127976,1634231080,1881809010,2064256297,1997081101,1701603688,1881810976,540884256,539435047,706772092,1027416176,1952196384,723527975,221999147,1701972234,1852994932,221999136,168656138,707725837,706742797,1952531465,1851859041,1702043748,544241012,1718973555,1868963942,1752440946,1768169573,1936941427,1818389861,1881174629,1701015410,1852404595,168636007,221194784,789187850,1631848746,1864393076,1868767342,1668248176,1869837157,1919361138,1936749935,221194784,1963592970,1734964078,543450478,544501353,1919381606,1953527151,1566270049,2065710368,962885680,539768933,962885680,539766886,962885680,998062182,168626701,1717920803,543518313,1330792270,542330965,168638729,1680017933,1852401253,1380393061,676353359,671689065,540423474,540549163,673718314,757082473,690565408,1680017933,1852401253]},{"sector":9,"length":512,"data":[1329799269,1764250192,671686697,540423474,540549163,1196302378,1347768146,539697235,706754097,694757408,587861289,1768318308,1176528238,1330792272,1764249685,841484585,723531317,706754592,1380404768,1397773647,824191776,539631670,539697208,539631672,690579752,1680017933,1852401253,1347625061,1163088449,1396785759,841490501,723531317,706754592,1380404768,1397773647,824191776,539631670,539697208,539631672,1112364366,1713918533,1869768560,1635020917,220801378,789187850,1680023594,1852401253,1347362917,1162628169,541868359,791289904,1680017933,1852401253,1347362917,1112495956,155538521,587861298,1768318308,1327523182,1330792272,153112661,587861300,1768318308,1327523182,1347371856,906561874,1680017933,1852401253,1347362917,1380405318,156259663,587861304,1768318308,1327523182,1163022416,156780870,168636465,1717920803,543518313,1230196815,1162629197,221393161,1701061386,1701734758,1414549280,1397051481,842074400,539635465,1948282991,1936027769,1635021600,1746957426,543519333,1668180264,1701082476,1769152627,1701605485,1936748320,791289897,168626701,1717920803,543518313,1397051984,151603013,707725617,1701344288,1931502963,1819635560,1700929636,1701344288,1835103008,1935745125,544106784,1969382756,1935748711,791289965,1680017933,1852401253,1380982885,1346720325,221382921,1701061386,1701734758,1163022368,1515210066,221514016,1701061386,1701734758]}]],[[{"sector":1,"length":512,"data":[1163022368,1262702412,221776160,1701061386,1701734758,1163022368,155464243,829960201,587861296,1768318308,1344300398,842220882,805898561,221262456,789187850,537529642,1866860842,1886593138,1702064737,1713404268,1701604457,1634738276,544437362,1948280431,1864394088,1685021552,1634541669,1998597232,1634213989,1663067510,1953396079,1634759269,225670258,153755658,1948282740,1629513064,1702260578,1752637484,543712105,543519329,1886220131,1936942450,1763730533,543236206,1886218611,1998611820,221149537,791289866,168626701,1393109551,1936875888,1868767333,1668248176,1869837157,1919361138,1936749935,221194784,1963592970,1734964078,543450478,544501353,1717530739,1869768560,1635020917,542989154,813375549,1681482872,807414832,1698260088,807414832,1700881528,807414840,1700947064,807414832,1684366456,807414840,1701209208,222002480,587861258,1768318308,1310745966,1330792275,542330965,218762549,1701061386,1701734758,1380406048,676353359,671689065,1380012115,1113539923,541414209,892477483,539697206,539631672,694757416,824192288,168634665,1717920803,543518313,1196443219,1347768146,539584808,1095783208,1598378834,1163084098,840968992,723531317,706754592,1196641824,1347768146,539697235,539631672,690579752,1680017933,1852401253,1330520165,151606096,1095783208,1598378834,1163084098,840968992,723531317,706754592,1196641824,1347768146,539697235,539631672]},{"sector":2,"length":512,"data":[1112364366,1932022341,1885757296,1970238055,1650553968,168634665,1852377613,1886330996,1701869940,1347374683,221994323,1953392906,1768976160,1534027374,1397772110,168639325,1769172597,1684368999,1634231072,1886330994,1751343469,1347374683,221994323,789187850,537529642,1699225642,1629513074,1948280178,1948280168,1701601889,1868963955,1752440946,1634541669,1881173609,1701015410,1919906675,1869768480,779317365,706742797,218762543,1920234250,544498549,151653755,544501353,997287283,539635465,1970365811,1701015141,1836412448,544367970,1948280431,1730176360,1886744434,221194784,1852377354,1852383348,154890086,1998596655,1751345512,1869768480,1847619701,1700949365,1953046642,544434464,168636202,1919361149,1953527151,1566270049,226172989,813369610,741357688,1330792224,824725589,153910569,1226844719,1818588270,1869768480,824209525,221194784,813369610,741423224,1330792224,824725589,221019433,813369610,741488760,1330792224,824725589,221019433,813369610,741554296,1330792224,841502805,221019433,813369610,741368952,1330792224,858280021,153910569,1226844719,1818588270,1869768480,840986741,221194784,813369610,741434488,1330792224,858280021,221019433,813369610,741500024,1330792224,875057237,221019433,813369610,741565560,1330792224,875057237,221019433,813369610,741368696,1330792224,891834453,153910569,1226844719,1818588270,1869768480,840986741]},{"sector":3,"length":512,"data":[791289953,2064189965,828602416,1380393004,676353359,746400053,2064189965,912685104,1380393004,676353359,746400054,539635465,1702129225,1919361132,544241007,791289907,2064189965,929462320,1380393004,676353359,746400054,2064189965,1717991472,1380393004,676353359,746400055,539635465,1702129225,1919361132,544241007,791289909,2064189965,1380012115,1113539923,541414209,2016419883,539766832,1431261767,691546192,790637693,1850286122,543974772,1970238055,540418160,168636202,1347648265,1163088449,1396785759,539697221,825260080,1380393004,676353359,159197497,1226844719,1818588270,1869768480,924872821,221194784,222002442,789187850,1680023594,1852401253,1196302437,1347768146,540614739,1768453160,1635197043,1868832883,1629513070,1702260578,791289897,168626701,1970435187,2065724515,539635465,1918988403,1730176371,1886744434,791289971,1762200077,1931506798,154890597,1931487791,1702195557,543515502,1651340654,1864397413,1752440934,1919361125,544241007,168636202,1953392905,1718511904,789134191,1752637482,543712105,1970238055,1970151536,1919246957,544500000,706769769,2097810735,1601205024,1970238055,1650553968,1025531227,168655648,2016443145,539780454,1330792275,824725589,153910569,539635465,1702129225,1919361132,544241007,791289908,2064189965,1380012115,1113539923,725963585,1633843248,1196630060,1347768146,2099851816,707725612,1953384736,1730178149]},{"sector":4,"length":512,"data":[1886744434,706754592,151653679,1095783291,1598378834,1163084098,1668821035,1394617399,1431261767,691218512,789130365,1850286122,543974772,1970238055,540614768,168636202,2016443145,539780664,1330792275,875057237,153910569,539635465,544501582,1226862177,1818588270,1869768480,706769013,151653679,1668821115,1394617398,1431261767,691349584,151596157,1226844719,1818588270,1869768480,824209525,791289905,2064189965,929265712,1196630060,1347768146,2099852584,998050317,168626701,589310511,1768318308,1310745966,1330792275,542330965,1948786741,544434536,544432503,1701736292,1868718368,539583862,168636202,707725837,706742797,1701987081,1936028769,544104736,1920233061,1852383353,1701344288,1936286752,1702064993,1701601901,1869357170,1886743407,1650553888,168650092,221194784,1980370186,543451503,1702129253,1650553970,1764255084,1763734638,1852383276,2037653620,539780464,544501353,1868983913,2064256297,1762200077,1864900710,1887007856,1567185765,540877088,168634672,1768687881,1869505902,1818845542,1967399464,1667853424,543519841,1868983913,1952542066,544108393,544370534,1701080681,1680154744,1763716130,168639273,1953525513,1533374585,1025531241,1887007776,168639333,1768976137,1534027374,1025531241,1718511904,168639343,218762621,220868362,153755658,544499015,1701322849,2037260408,1701601890,1869768224,1752440941,1852383333,544503152,1701734764,544370464]},{"sector":5,"length":512,"data":[1818845542,537529646,168636202,1852377613,1701257332,1652125300,677735522,1918986339,220816160,168655626,543582473,1042309928,807870525,640032807,1008755488,958865469,1914710311,1920300133,543367278,807870509,168639271,543582473,1042309928,1629954109,640032807,1008755488,1713840189,1914710311,1920300133,543367278,1629954093,539697191,221982769,1768687882,1869505902,1818845542,1699226152,1768169592,544500071,1701869669,1684370531,1936615712,1684104564,543584032,660809056,1663052834,168639273,1952805385,544109173,221983021,168656138,707725837,706742797,1952794377,1746952480,1646295141,543519865,1836020326,1701344288,1886284064,1814066293,543518313,543452769,1633972341,1948280180,1881171304,1953393007,1629516389,1919902563,1735289188,221149548,791289866,168626701,544501353,1651795303,677737593,1918986339,1881811488,168634736,151653755,1918986339,544221728,1881808957,168639344,1953392905,1936613664,997352823,168626701,1936613641,544367991,1701257277,1652125300,677735522,724267050,168639273,1936613641,544367991,1630019645,1702327150,1010573426,539571232,1701257340,1652125300,677735522,724267050,168639273,1886398985,1881160992,151653691,1970562418,1629515378,1702327150,168639346,218762621,220868362,153755658,544499015,794828897,1679828850,1919120229,1869901929,1919295602,1948282223,1763730792,1953853550,1852402720,1851859045,1886724196]},{"sector":6,"length":512,"data":[1702125924,1701344288,1768910880,1919251566,706742797,1667457289,1768190575,2037147502,537529646,168636202,1852377613,1701257332,1634497396,1663592563,544366952,1886399018,2064256297,1661536781,544366952,1025536042,1886399008,151653691,544501353,2004053601,221999717,151653642,673212009,555773994,791093309,1814047015,1852141161,1767990895,1612851308,1696605999,1667592312,577004916,168639273,1881877257,151653691,673212009,1008758826,657467168,545029152,1042313258,657925920,1768693801,1869505902,1818845542,1666130472,543973748,1768384868,2019893364,1952671088,690119781,151653691,2004053601,1025536613,544221728,807870509,168639271,1881877257,151653691,544239658,997204029,1913195021,1920300133,1851859054,1919252339,2097810747,168626701,544501353,1702129253,678325618,1918986339,1953704480,1663052914,544366952,1920234282,1684956511,2064256297,1661536781,544366952,221999146,151653642,673212009,1601009006,1701998189,1042314083,1095573565,1313693528,1396917586,151653673,1852402697,1718578789,678193505,1869567010,1851878688,1852645497,1852796261,577987433,168639273,1762200077,707272806,544371827,656424253,539567915,151653755,543582473,1935633960,1684371041,1701735775,1042314093,1095573565,1095982936,1598309718,1296387661,168634707,1812531465,1852141161,1767990895,1411524716,1830842223,544829025,1835363949,1667853935,1869881459,1986097952,992551525]},{"sector":7,"length":512,"data":[151587341,1702257011,1852661604,1851485541,1986098015,1834968165,1936549230,542976811,1970151485,1852661613,1935893874,151653691,1932208905,221999732,226298122,151653642,540876912,1818324344,677605228,1601336435,543452773,1953701933,539697266,572533809,1835363949,1667853935,1835101728,992551525,1829308941,1936288878,1970166644,1852661613,1935893874,1953705565,1735289202,1881160992,151653691,1768713837,1851487347,1834970485,1667592814,1814977907,1025535589,1920234272,1684956511,1931488544,221999732,1752631562,543517801,1920234280,1931492384,1700754036,539583598,1881809019,1025518379,1751328800,1948873313,1886418287,707293797,695366771,1953701947,992684914,168656160,544221705,993009725,1829308941,1936288878,1970166644,1852661613,1935893874,1935748701,1717989229,544499059,1601052733,1601008481,996303220,1913195021,1920300133,1970151534,1852661613,1935893874,221981483,168656138,707725837,706742797,1919241481,1931502951,544502383,543516788,1768189545,1702125923,1634869348,543516526,1830839919,1869440366,543385966,1868785010,779314290,706742797,587861295,1394632297,1297371727,1930038606,1668641396,1852645492,543384946,1852645418,1919906655,1953704052,1952675186,1919839520,706765669,1918989427,1763716212,1814066286,220819045,168655626,1920234249,544498549,1701998189,1881808995,706751537,539767408,1936613674,997352823,1929972237,1668641396,1852645492]},{"sector":8,"length":512,"data":[543384946,1701325354,1886413921,151653691,544501353,168639337,1762200077,1814052128,790654565,221983264,1718159626,543762464,807419197,151653673,1952805385,544109173,1918989427,168639348,1879640589,540876849,1935634029,678720111,1918989427,1763716212,168639273,540176393,1852645437,1919906655,1953704052,544502369,745087019,1852140576,1763716384,168639273,1634035721,544239716,1629888573,1702327150,168639346,1919903241,993732640,226172969,1762199818,1932009574,1835233908,829433968,1953709613,1735289202,846209068,1953709613,1735289202,540811305,2065705264,151587341,1701325321,1886413921,1881160992,168639281,1745422601,1885626725,540876912,758214694,2019913278,168639348,1879640329,540876849,1634035754,997224548,151587341,543582473,540110888,1310735677,692866133,168655648,151587081,1634035754,544239716,846209085,151653691,1644759305,1801545074,151653691,226298121,2097744138,1936483616,226173029,151587082,1634035754,544239716,846209085,151653691,1701316873,1886413921,639647008,1043149424,1954047342,151653691,846203145,706755872,1684104552,221999216,151587082,673212009,1025520240,1431183421,539577420,151653755,705235209,1684104552,1025536112,993095712,151587341,1919027465,996893029,151587341,168656137,226298121,226298122,1701972234,1852994932,1936613664,997352823,226298381,1852121866,224815460,789187850,537529642,1750337834]},{"sector":9,"length":512,"data":[1914729321,1935958373,1701344288,1767992608,1768300654,539780460,1936615714,1932423796,774009957,706742797,218762543,1768912394,1701978212,1767859297,1229334643,706757964,220803430,168655626,1953392905,221997344,151653642,1702129253,1650553970,807953772,744894584,1414549280,1497517911,539772244,1380012115,1113539923,692409153,151653691,1702129253,1650553970,807953772,741749368,1347440416,1229342034,1344285784,1163085138,545005639,1008742440,691544124,789134121,1702043690,1936007271,221194784,1852115210,1953654132,1701601889,846737448,1327508581,1163022416,743983430,1163022368,541541715,824713340,540818464,992553272,539635465,543647091,706769763,151653679,1702129253,1650553970,807953772,741749624,1347440416,1229342034,1344285784,1163085138,545005639,1008742952,691544124,789134121,1702043690,1936924775,221194784,1852115210,1953654132,1701601889,863514664,1327508581,1163022416,743983430,1163022368,541541715,858267772,540818464,992553272,539635465,543647091,706769764,151653679,1702129253,1650553970,807953772,741619320,1347440416,1229342034,1344285784,1163085138,545005639,1008743464,691544124,789134121,1702043690,1936072807,221194784,1852115210,1953654132,1701601889,913846312,1327508533,1163022416,743983430,1163022368,541541715,891822204,540818464,992553272,539635465,543647091,706769767,151653679,1702129253,1650553970,807953772]}],[{"sector":1,"length":512,"data":[741369464,1347440416,1229342034,1344285784,1330398546,992561987,539635465,1701344367,1919950962,2020173413,706769765,151653679,1702129253,1650553970,807953772,741500536,1347440416,1229342034,1344285784,1163019602,221981008,1852115210,1953654132,1701601889,1719152680,1327508531,1163022416,743983430,1163022368,542131538,1380982908,1346720325,221981018,1852115210,1953654132,1701601889,913846312,1327508534,1163022416,743983430,1163022368,692335155,151653691,1702129253,1650553970,807953772,741815928,1347440416,1229342034,1344285784,842220882,221980993,1886325002,1751343469,913846363,1025531188,1836085024,1533567841,892762160,540876893,1634562159,811296867,1563833976,1864383776,1667329392,2016435048,542979894,993206333,168626701,1919903241,543762464,993009725,1008757024,1297436192,676480322,1970238055,1650553968,723532585,220817707,1695090954,1919251566,1818386804,1919363173,1953527151,1767596641,1702047325,1327508593,1330792272,539775061,1970238055,1650553968,777873755,1868983913,168639273,1919903241,543762464,993009725,1008757024,1297436192,676480322,1734307955,1886744434,694313332,724246587,168634729,1852115209,1953654132,1701601889,1601205032,1970238055,1650553968,777873755,745629043,1196445472,1347768146,1886593068,1869768543,1635020917,1567185762,1718511918,221981039,1868957962,1764237426,807419168,543760443,993534012,1764436768,151653673]},{"sector":2,"length":512,"data":[1953391881,1635021413,677735522,946108464,1763715872,1347362860,1380994883,1329799212,1764250192,221980969,1868957962,1764237426,807419168,543760443,1431183420,1380270669,1735419432,1886744434,694313332,724246587,2065705321,151587341,1769172597,1684368999,1953392928,1025534496,1735419424,1886744434,1533174132,221994345,1963526410,1734964078,543450478,544501353,540876907,1042311720,691544126,807415072,993551480,168626701,1718159625,543893536,540549182,673217660,539369578,1717991472,540811305,811825200,151653673,1634076937,573074537,543449410,1970037110,1868963941,1885741170,1970238055,1650553968,1566844251,1763716130,168639273,1852115209,1953654132,1701601889,1347371816,694888530,941632288,673196832,543828008,2016419878,539584102,2016419885,539570275,857751102,168635433,1325992201,1196443216,1347768146,1346773036,1431261767,694757456,168639273,168656137,1919903241,543762464,993009725,1008757024,1297436192,676480322,1717530739,1869768560,1635020917,540748130,694758187,168655648,1853163785,1852270963,1763730533,1780511854,1931492640,1885757296,1970238055,1650553968,995977563,151587341,1769172597,1684368999,1953392928,1025534752,543828000,941637182,539828265,946108464,218762555,1762199818,1797791846,941637152,545029152,639658536,1719152672,1008740710,1668821024,168634672,1711868169,678193505,1684095522,1818326560,1713399157,1931506287]},{"sector":3,"length":512,"data":[1885757296,1970238055,1650553968,1566844251,1763716130,168639273,1852115209,1953654132,1701601889,1347371816,694888530,941632288,673196832,543828008,2016419878,539584102,2016419885,539570275,857751102,168635433,1325992201,1196443216,1347768146,1179852844,1330792272,1764249685,221980969,226298122,1752631562,543517801,1952802600,1701734764,691103272,159064105,1814047279,544239471,1919252079,1852402720,1763734373,1752440942,1768300645,706766188,151653679,1953392905,1701735712,1830825069,1818320750,168639348,1751320841,706769505,706751600,539766896,1819504682,745042785,1752181280,745042785,1936730656,997351796,151587341,1819242306,544104805,1601008481,2037149295,1852402783,168639333,1853163785,1852270963,1663067237,544366952,1650553953,1684300127,1969516133,168639341,151587341,1601008481,2037149295,1852402783,540876901,1936482630,168639333,812648713,1814052128,996503145,151587341,673212009,1701734764,542978139,656424253,539567967,151653755,1935739145,1852792685,1818196332,543518313,1918115901,221996405,151587082,812657451,151653691,168656137,1952516361,1633641057,1852138596,544044388,1546068029,221980464,1762199818,707272806,1025519728,1579622461,2065705255,151587341,1635021577,543385972,1936617315,1853169780,1852270963,1663067237,544366952,1635020917,542989154,151653693,1098582281,1096764755,539777089,1598903105,539771460,1598903105]},{"sector":4,"length":512,"data":[539776836,1598903105,539771972,1598903105,742871631,1297301792,842220639,168639357,151587341,1881877257,168639280,1627982089,1600282996,1701078113,1836409966,1965047072,1650553968,812657243,757082923,657467168,168639325,226298121,1879640330,1931492640,1751347828,812656754,539435052,221980967,1762199818,1881677926,540884256,1280070990,544219177,812654653,1931488032,1701606004,812656750,168639273,151587341,1663052335,1801676136,1919903264,657401632,589766700,1851858983,707207268,1702043687,1634886000,1936879476,221194784,151653642,1819504649,543716193,1701650493,1919443821,741371944,657401632,544219180,812654637,168639273,1752172809,543716193,1701650493,1919443821,741371944,656615200,544219180,812654637,168639273,1936722185,544366964,1701650493,1919443821,741371944,657073952,544219180,812654637,168639273,1718159625,1936730144,1752392044,540877088,1280070990,226172969,151587082,1835363949,1696611616,1919251566,1881697901,1881156656,1935764595,221981032,151587082,1600414817,1633644404,1635020147,1396779106,826564429,221980982,153759498,724240649,1768713837,1834710131,1567450478,1836278062,1936090735,154891365,1948265007,544434536,543518319,661549929,842211444,1953063456,221194784,151587082,1936730923,1752392044,151653691,1852639497,1953259871,1696611616,1919251566,1881697901,1935764595,1881156712,168639273,1627982089,1952408676]},{"sector":5,"length":512,"data":[1935761263,1650553965,1297301800,842220639,168639273,545065225,1702063205,543582496,1634234408,555772019,1431183421,539577420,151653755,1852639497,1025535333,1953391904,1852666469,741371944,1634234400,992569459,151587341,1684300041,1601139807,1953330017,1093165665,1147096403,992556593,707725837,722012425,1819176235,1534358377,1835363949,1935748701,1717989229,997483891,539635465,1936287860,1701736224,1853057312,857764903,1768038450,791289972,151587341,1881877257,1752392040,151653691,1852639497,1953259871,1696611616,1919251566,1881697901,1752392040,695214124,151653691,1684080905,1869897572,1836278111,677536116,1598903105,691155780,151653691,1696627977,543519596,673212009,1635021680,1025581170,1280658976,2065705292,151587341,1601072393,544500833,1852121149,1836213620,812656750,1936728108,695361908,707725627,1953459744,1752440933,1701978213,1936876918,706767969,151653679,1684080905,1869897572,1836278111,677536116,1598903105,1414086999,168639273,722012425,1953722411,221999713,151587082,1835363949,1696611616,1919251566,1881697901,1918989427,695214124,151653691,1696627977,543519596,151653755,1852639497,1025535333,1953391904,1852666469,741371944,992571424,151587341,218762621,1762199818,1630019686,1600282996,1701078113,1836409966,540877088,657480743,1684086825,1869897572,1836278111,677536116,1650553953,1684300127,1969516133,221981037,151653642]},{"sector":6,"length":512,"data":[1635016969,1684103010,1684956516,1025535349,1297301792,1145980255,151653691,1835363593,678716787,1935962735,1819042157,741351468,1801416224,544438629,1769152554,1718576506,1869562408,1851876716,221980969,1997080842,1701603688,1881810976,540884256,690429991,153123616,1814047279,544239471,1919252079,1936615712,1668641396,1852795252,1918989856,1953390953,791289971,151587341,1869562377,1851876716,1869351200,1650551651,221996396,151587082,1819242306,544104805,1836278025,1819176799,168639353,1107888393,1701605231,153120353,1601399140,2037149295,151653691,1853163785,1852270963,1663067237,158490984,1751343469,996503145,151587341,1936618761,1701734249,1852383332,1952516468,1767858785,221996654,151587082,1769172597,1684368999,1953392928,1635016969,1701535586,540876921,168639280,1963526409,1734964078,543450478,158625385,1650553953,1920235615,540876897,168639280,151587341,1768453897,673211756,1025536042,539435069,723527975,221999147,151587082,1601008481,2037149295,1629502752,1868524915,1601793134,1701734764,151653691,1768163593,1852792691,1025538412,1818314272,221996403,151587082,673212009,1025536042,1596399677,2065705255,539635465,1629513321,1835365235,1919249506,1819176736,791289977,151587341,724240649,168639344,151587081,1601008481,2037149295,1411398944,996504946,151587341,168656137,1695090953,543519596,673212009,1025536042,1143414845,2065705255]},{"sector":7,"length":512,"data":[539635465,1679844969,1935766377,1651336563,544367980,2037149295,221194784,151587082,1881877257,151653691,1678313737,1868526441,544828526,1918115901,221996405,151587082,151653757,1869351177,1650551651,1025533292,1818314272,221996403,151587082,673212009,1025536042,1277632573,2065705255,151587341,724240649,168639344,151587081,1801678700,1701601889,1411398944,996504946,151587341,1718159625,1768171552,1852792691,1025538412,1631985725,694514540,151587341,1627982089,1952408676,1935761263,1650553965,1297301800,1129270367,1279410507,221980997,151587082,151653757,1952516361,1767858785,1025533550,1025534240,1952802592,1702132066,695215656,151653691,1718159625,543762464,807419197,694562936,168655648,151587081,540876905,1651795303,677737593,992571430,151587341,1952516361,1767858785,1025533550,909455904,1763715872,151653691,1762199817,540879648,1380012115,1113539923,994399041,151587341,168656137,1762199817,1864900710,1887007856,1567185765,540884256,1380405327,693130575,168655648,151587081,544501353,540876906,1937007975,1752392044,695215656,151653691,1762199817,1797289070,218762555,151587082,1919903241,543893536,993009725,724246587,2065705323,151587341,1762199817,1797791846,540884512,1734434670,1886744434,2065705331,151587341,151587081,673212009,1601055531,1869768545,544436341,1095573566,1195466584,1347768146,1414415711,1397049682,151653673]},{"sector":8,"length":512,"data":[151587081,1768687881,1869505902,1818845542,1867784744,1634541679,1629518190,1970238055,1852121200,1701409396,992551539,151587341,151587081,1869768545,1767862389,542993243,996745277,151587341,151587081,1869768545,1767862389,1801152110,540876893,1650553953,1718511967,151653691,151587081,1701995017,221997921,151587082,226298121,151587082,1718159625,1734420512,1886744434,1801152863,1027416157,220817696,151587082,1644759305,1801545074,151653691,2097744137,151587341,1952516361,1767858785,1025533550,846737440,723529780,706754592,723544864,221997600,151587082,1025534217,1768976160,1534027374,723541353,221997600,151587082,151653757,1718159625,1886332960,1701869940,542992731,1327512893,1347371856,2065705298,151587341,1718159625,1881810976,540884256,690433831,168655648,151587081,1953392905,1025534496,1952802592,1935764595,1881548904,168639273,151587341,1627982089,1600282996,543583849,2016419901,540028978,543825963,540549162,1764237355,807415072,691561592,151653691,151587081,540876905,1852403823,1767599974,539697245,168639338,151587081,1818566781,2065720691,151587341,1627982089,1600282996,1634890872,1730166048,2036495461,640181620,221981040,151587082,1718159625,1952524320,2019517025,543257204,2016419900,220803171,151587082,1812531465,1852141161,1767990895,1109534828,1931502689,1852793701,1936007268,1701863779,1954112032,992551525,151587341]},{"sector":9,"length":512,"data":[1762199817,1864383776,1718511984,1567185775,941632288,673196832,1635017000,1954045794,757096818,1668821024,1042295088,691216446,151653691,151587081,673212009,2037674095,1767597424,1027416157,1179668256,1330792272,220811349,151587082,1762199817,1864383776,1718511984,1567185775,673196832,1650553953,1920235615,539369569,221980983,151587082,168656137,2097744137,151587341,1769435913,543712116,728771112,2065705259,151587341,1935762185,774316133,168639015,151587081,1751343469,543518313,1701257277,1667329396,1701734760,745547304,1936286752,1819176799,221981049,151587082,543582473,1935745320,1852792685,539588972,151653755,151587081,1702129253,1650553970,1764255084,1347362860,1347242323,539772236,1835363949,168639273,151587081,1836085001,1533567841,1025531241,1667329312,1701734760,151653691,2097744137,151587341,1919027465,996893029,151587341,1935762185,707207269,789133863,1869357098,1864395619,1701978226,774778480,1701998624,544762214,168636202,151587081,1600414817,1633644404,1635020147,1396779106,1330405197,1163021123,221981008,151587082,1684300041,1601139807,1953330017,673735265,1769172597,1684368999,1634231072,1952524658,1767858785,992568942,539635488,1667592307,543973737,1702060387,221194784,151587082,1635016969,1684103010,1684956516,1025535349,811345696,168639271,151587081,1634038370,168639339,1661536521,543519585,975644199,539635465]}]],[[{"sector":1,"length":512,"data":[1835492723,544501349,1717924464,706771049,151653679,1627982089,1952408676,1935761263,1650553965,1297301800,1195725663,168639273,151587081,1600414817,1633644404,1635020147,1965566050,1734964078,543450478,1918986339,1635017001,1852399458,540748134,1931487791,1768121712,1663069281,543519585,168636202,151587081,1650553953,1684300127,1969516133,540876909,657480743,151653691,1644759305,1801545074,151653691,1633880329,656434547,540682042,151653755,1929971977,1668641396,1701519476,1650553977,1886071328,1814052128,1969975151,2036689776,1952802600,679044459,690581542,151653691,1762199817,1998615662,1752458345,1797274912,2000563568,1752458345,151653691,1762199817,1780511854,218762555,151587082,1667329289,1701734760,1730166048,1634563173,1852401763,1881548901,1768169516,1852792691,992573804,151587341,1718159625,1679894560,1868526441,695823470,168655648,151587081,543582473,1685221160,1818324339,1886083948,1864379680,2036689772,1952672100,168634717,151587081,1768687881,1869505902,1818845542,1633034792,1851877746,1864397684,1864397941,1919885414,779248996,221980962,151587082,1634535689,1836280690,678194273,992571499,151587341,226298121,151587082,1635016969,1701535586,540876921,1043165291,1970037110,539697253,168639281,151587081,673212009,1042311464,892477501,640032822,1008757024,1095783200,1598378834,1163084098,151653673,151587081,1763736700,540884512]},{"sector":2,"length":512,"data":[1380012115,1113539923,541414209,892477483,2065705270,151587341,1762199817,1999118438,1752458345,840973856,151653673,151587081,1852402697,1718578789,678193505,1684633378,1713399924,1970039137,690120050,151653691,151587081,1952737655,540876904,168639281,151587081,151653757,1762199817,1764237414,673195552,1952737655,539828328,220801329,151587082,1768687881,1869505902,1818845542,1769415208,543716452,1734962273,1852140910,1634082932,1920298089,992551525,151587341,1718159625,1629562912,1868524915,695823470,151587341,1711868169,673215087,540876906,1025534248,2016419901,992555065,1008757280,1684633376,540764276,694823723,168655648,151587081,707725577,1579163657,1583242846,1583242846,1818959904,1701274741,1919903264,1347374624,1936615712,539914868,168636202,151587081,1852115209,1953654132,1701601889,1786538280,1819222060,1936090735,1801155685,1983786352,1702194273,1830825053,695035246,151653691,151587081,1836085001,1533567841,545005673,1025531242,1667329312,1701734760,151653691,151587081,543582473,1668246568,1818386795,2065705317,151587341,151587081,543582473,1818193448,1953194863,1042309729,1095573565,1330405208,1096043331,1313169218,1162433108,168634707,151587081,151587081,1701734764,1634103150,573074537,544173908,2037277037,1668246560,1818386795,1852383333,1970435187,1869182051,690123630,151653691,151587081,1869351177,1635019619,1601067874]},{"sector":3,"length":512,"data":[1801678700,1566728564,1763720480,1780513824,151653691,151587081,724240649,1869373294,1635019619,168639330,151587081,226298121,151587082,226298121,151587082,151653757,1919027465,996893029,151587341,1717920777,1953264993,151653690,1812531465,1852141161,1767990895,1394747500,1635020409,1919230072,779251570,221980962,151587082,151653757,1718159625,1952524320,1633641057,1852138596,544044388,656424225,539439196,1679828518,1868526441,544828526,1176517949,1702063201,226172969,151587082,1635016969,1852399458,540876902,1650553953,1718511967,673196576,1819238254,1887007839,723546981,539570464,1952522283,1801413217,222001509,151587082,1684300041,1601139807,1953330017,673735265,1769172597,1684368999,1634231072,1630022002,1600282996,543583849,941637182,221980969,151587082,543582473,1952524328,1767858785,1042310766,691544126,540884512,1598903105,1212367181,168634672,151587081,1767990793,1092757612,1835365235,1919249506,1650553888,1763730796,1869881459,1969365103,690125171,151653691,1627982089,1952408676,1935761263,1650553965,1853171752,1852270963,1663067237,695361896,1650553953,1718511967,168639273,151587081,673212009,1650553953,1920235615,1025581153,220803104,151587082,1684080905,1869897572,1836278111,677536116,1936618792,1701734249,1751326820,1630106209,1600282996,1634890872,168639273,2097744137,151587341,543582473,1819504680,543716193,1310735649]},{"sector":4,"length":512,"data":[692866133,168655648,151587081,673212009,1819500398,1600680801,1920233061,544433513,1293958462,1398757441,1213415756,1414415711,1397049682,151653673,151587081,1701734764,1634103150,573074537,544173908,2037277037,1634497312,1696622707,1769108590,690123621,151653691,1929971977,1752392044,1600282996,1534158195,1819500398,1600680801,1920233061,1567843689,1763720480,151653691,1929971977,1752392044,1600282996,1851485805,1634497375,1700751475,1769108590,542995301,1852645437,1953259871,151653691,722012425,1935633963,1752392044,1953391967,1936025970,151653691,545065225,1702063205,543582496,1634234408,555772019,1431183421,539577420,151653755,1762199817,1848123494,1935763551,1852137320,1701409396,1027481715,1480674592,1396787295,1313169224,1162433108,168634707,151587081,1852402697,1718578789,678193505,1869567010,1851878688,1634214009,1696622707,1769108590,690123621,151653691,1745422601,1953002337,1935630945,1851486565,1935763551,1852137320,1701409396,1025531251,221997344,151587082,1935763465,1650553960,1533963615,1634230126,1700751475,1769108590,542995301,1852645437,1953259871,151653691,722012425,1751084587,1600680801,1920233061,997418345,151587341,1696627977,543519596,673212009,1635021680,1025581170,1280658976,2065705292,151587341,1718159625,1601054752,1918989427,1953391967,1936025970,540884512,1599619405,1380013139,1414415711,1397049682,151653673,151587081]},{"sector":5,"length":512,"data":[1701734764,1634103150,573074537,544173908,2037277037,1635021600,1852121202,1701409396,992551539,151587341,1953696009,1635021409,1702059874,1601067889,1918989427,1953391967,1936025970,540876893,168639337,151587081,1918989427,1600282996,1851485805,1635021663,1852137330,1701409396,1025531251,1601072416,997485665,151587341,724240649,1953718126,1700754017,1769108590,221999973,151587082,151653757,790658313,1852121130,1752637540,543517801,1769103734,1937010273,221194784,1762199818,707272806,1025581168,811345696,168634663,1812531465,1852141161,1767990895,1394747500,1635020409,1919230072,779251570,221980962,1762199818,1630019686,1600282996,1701078113,1836409966,540877088,657480743,226172969,151587082,1600414817,1633644404,1635020147,1952524386,1633641057,1852138596,695039332,707725627,1297301792,1145980255,1718165548,1886413088,1633905004,543517794,168636202,226298121,226298122,168656138,707725837,706742797,1769099273,1696625774,2037540214,1852401780,1852776551,1948282740,1713399144,778398825,706742797,218762543,1920234250,544498549,1868983913,543384946,707725691,1920234272,1936158313,544175136,544503152,1869901417,1836016416,1953391981,1701406240,544433260,168636202,1953392905,1902474016,221998958,1751320842,706769505,1769108595,221996910,1948286218,1868786786,1852140909,1566274420,2065710368,2064189965,572533808,1852399981,1668312864,543515759]},{"sector":6,"length":512,"data":[1953653104,221019426,1199245578,1347768146,740897064,1850286624,543974772,1970238055,573644912,168635517,1380416265,676353359,539765043,1953384738,1730178149,1886744434,2099393056,151653676,1330792315,891834453,572533801,1702129225,1919361132,544241007,2099405106,151653676,1330792315,908611669,572533801,1702129225,1919361132,544241007,746398259,2064189965,1431261767,691480656,1226973228,1818588270,1869768480,891318389,221019426,1199245578,1347768146,740898856,1850286624,543974772,1970238055,573972592,168635517,1380416265,676353359,539765049,1953384738,1730178149,1886744434,2099394336,151653676,1347371899,691021906,1126309932,1869770863,1936942435,1679848047,746398264,2064189965,1380994883,740897064,1866670624,1668248176,1869837157,962863218,221019426,1132136714,676483151,539765042,1886339874,1701015410,1919906675,576807968,168635517,1329822473,858280528,572533801,1919971139,1936024431,544370547,2099405412,151653676,1347371899,691284050,1126309932,1869770863,1936942435,1679848047,746398307,2064189965,1380994883,740898088,1866670624,1668248176,1869837157,1684283506,221019426,1132136714,676483151,539765046,1886339874,1701015410,1919906675,577070112,168635517,1329822473,925389392,572533801,1919971139,1936024431,544370547,2099406436,151653676,1196443259,1347768146,740896808,1866670624,1668248176,1869837157,1919361138,1936749935,221019426]},{"sector":7,"length":512,"data":[763037962,1310731313,2102152277,168639357,1870006797,1881171049,1683977333,1229334647,706757964,539767398,1936617315,1751326836,706769505,1700946284,1763716204,706770030,1635017060,1763716208,1847620718,2064256297,1661536781,1953721967,1634231072,1764368498,1937009006,221999732,1852377354,996745332,168626701,1970300425,1814590324,1818583649,691168812,151653691,1818847351,1848123493,807419424,226172969,1762199818,1937009006,1025536628,1952195104,572553060,151653691,1919903241,543762464,1848123453,540884000,541007928,540680302,540748088,540942441,757087024,539584813,151653755,1885735177,678655093,1953066601,745698419,691168800,151653691,1852377353,1953723497,540876914,992095266,151587341,1919968777,1718906473,741500456,623911456,740452472,1633954336,728785268,221980971,2097744138,151587341,1953853542,1545742451,539763310,992555622,151587341,1026367598,221984800,226298122,168656138,1751321101,706769505,1667592307,1533174132,540876893,1096229499,740447305,1380917792,539763271,574899234,1143087148,539763287,574768162,168639357,1918986339,1886595616,1635017573,1566257762,2065710368,1129270306,1346720331,572533794,575096147,168639357,1870006797,1679844457,1953525109,1701601889,1229334643,706757964,220803686,168655626,1953392905,1717989152,997483891,1929972237,1668641396,1852645492,543384946,1886285098,151653691,1918986339,1969302048]},{"sector":8,"length":512,"data":[1920234360,151653691,1970435187,1763734627,1919903342,706765669,1886151284,221999732,1852377354,745087092,221997600,1853163786,1852270963,1763730533,1797289070,996941868,168626701,543582473,1836412456,1919839583,544432997,807419197,151653673,1767990793,1310861420,1935745135,1651336563,544367980,1835363949,1667853935,690102643,218762555,707725578,537463309,1867718698,1948284018,1830839656,1869440366,1935894894,1886150944,1700946280,1633905012,779709548,537463309,168636202,543582499,1414680403,168644173,1752067337,543449445,1852645437,1919906655,1852647540,1953720684,1970151468,1852661613,1935893874,168639273,1936483619,151653733,1701342829,1025533025,1819176224,997487465,1711868429,673215087,540876905,1763719984,1847606304,1834970485,1667592814,1763720051,220801835,1829308682,1936288878,1567185780,2019913262,540876916,1819176230,1534358377,1563503465,151653691,1768713837,1851487347,1834970485,1667592814,1563503987,2019913262,540876916,1280070990,587861307,1768189541,218762598,1885735178,1953393010,845555814,1545740332,757939054,1750343725,1713402729,543517801,544432503,1701733735,1702125938,2036473956,1953197344,1701601889,2019896947,1851534949,221980962,151653642,168634927,539631625,1852404304,1970217076,1886330996,1953720684,224222067,706742538,218762543,1885735178,678655093,997088290,539831597,1919250511,543452769,1701869940,1936288800]},{"sector":9,"length":512,"data":[1546548084,168632942,538970377,757938978,1750343725,1998616933,543519333,1684104562,1869768224,1768300653,1226859884,1381258062,1497713454,1550736430,168632942,538970377,1819307810,1937011561,1650551840,1646292069,1550152825,1869896814,1952214128,1768912443,539828324,544370534,1953721961,1952675186,1936617321,1953068832,1953853288,1701867296,1684955506,577657971,845553708,168639273,1919903241,543762464,993009725,1008757024,1868525088,2037669740,997418352,1764436768,226172969,1718166282,168636448,1853163785,1852270963,1663067237,544366952,1699445363,1563712377,151653691,543582473,1802268456,1768192357,1767601251,1701523037,540942457,1179023408,226172969,151587082,1699445363,1563450233,673201440,1769172597,1684368999,1634231072,1864903026,2036689772,1952672100,777873755,544826731,941637182,168639273,1929971977,2036681594,542978395,1965563965,1734964078,543450478,1918986339,1819224105,1685677419,1534354281,1798200681,639662437,1182281760,221980998,151587082,1699445363,1563581305,656424224,992424028,151587341,1818566781,2065720691,151587341,1266316041,811301221,540876893,1936618792,1701734249,1751326820,673804897,1701538927,1667851385,1567185780,2036689710,168639273,1929971977,2036681594,542978395,1546068029,221980464,2097744138,151587341,1769107558,677803118,539767398,1869896738,622881904,622865523,997481587,1936092960,1750607165,740453980]}],[{"sector":1,"length":512,"data":[1266316064,539785573,1634626671,1534289261,539778409,1718578287,1952805734,693987675,587861307,1702063205,151587341,1769107558,677803118,539767398,1869896738,622881904,997481587,2019846432,745874749,1936092960,1750607165,740453980,1852600096,1936026977,744319323,824928544,1819222060,1936090735,1767601253,221981021,1852121866,224815460,226298122,789187850,1885735210,1953393010,845555814,1545740332,1297301870,1547980621,1431389556,1551181088,539763310,1819238254,1887007839,824931173,706755369,151653679,1769107558,677803118,539767398,1097751586,1330466131,1165253700,1864389969,2019846512,690122332,218762555,707725578,537463309,1967398954,1864396909,1629516917,1970238055,1852399472,168636006,791289865,168626701,1970300425,573076340,758869596,1092627757,1835365235,1919249506,1633951802,1864393076,1919361134,1936749935,577657902,151587341,757938978,1716068397,1114196000,543519865,807419197,1763716145,544417652,576462945,1882015280,1768318322,539122808,1970238055,1851534960,220360284,571017482,1869768545,544436341,1700946284,1870078060,1851548786,1713384482,221980978,1868957962,1764237426,807419168,543760443,1601052732,1869768545,997421173,1764436768,226172969,1711868170,1852404336,1713923700,572533810,2003072092,858793248,1952213080,1551181115,539763310,1869768545,1767862389,1767597678,1763716189,168639273,168656137,789121549,151653674]},{"sector":2,"length":512,"data":[1142958624,544238965,544503151,1953330017,221143649,706742538,218762543,1885735178,678655093,997088290,539831597,1953720652,543584032,1702064993,1701601901,1852645490,1852796261,544433001,543452769,1635017060,577657902,151587341,992092192,539831597,1769103734,661941857,774971507,1735549216,1852140917,1026039924,1547315553,168632942,538970377,757938978,538976301,1629513321,807418912,808464760,1852776506,2036473957,1864394100,1685021552,1851534949,151653666,572530697,757935419,1763713056,543236198,807419198,808464760,539371040,540811361,808613936,1948269104,1646292855,543519865,1177559644,1865228892,1685021552,1851534949,151653666,572530697,757935419,1763713056,543236198,807419198,808465016,539371040,540811361,875722800,1713388080,1852383344,1970435187,1869182051,1851534958,151653666,572530697,757935419,1763713056,543236198,807419198,808727160,1701978170,1936876902,544175136,1869768545,544436341,1667329371,1092644722,676352583,1936269353,1702065440,1546542436,168632942,538970377,757938978,1635131437,1851877746,544417652,1629498930,1836410738,544501349,1763734377,2019910766,1953392928,1918967919,544825714,1852403823,779642212,1851551324,151653666,572530697,1768713837,1814066291,1818583649,1954112032,577657957,845553708,168639273,1919903241,1852647456,540876912,1701342829,539780193,1936090735,1025537125,540749856,544239213]},{"sector":3,"length":512,"data":[1310735649,994856021,1886285088,1830829344,1043165294,1954047342,226172969,1829308682,1043165294,1936090735,1025537125,1717989152,544499059,993140779,151587341,1936090735,723547237,1852645437,1816014192,723545701,221983264,1711868170,1852404336,1713923700,572533810,1852666972,1931812965,1830824994,1043165294,1769108595,992569198,168626701,543754505,1852645437,1631464816,1718578547,1952805734,218762555,1762199818,1630019686,1635020147,1567185762,540884256,1598903105,540422468,1629496870,1635020147,728324962,1025531185,1396777021,860118861,2065705266,151587341,1919968777,1718906473,741500456,539763232,1598903105,1547055428,1864383348,624784230,1851549784,1763716130,168639273,545065225,1702063205,543582496,1836278056,1533174132,1042308457,1396777021,1096245069,539579465,151653755,1885735177,1953393010,845555814,740433964,1297301792,1551050079,1864383348,624784230,1851549784,1931488290,1952671088,1633378913,1635020147,1567185762,1092627744,1465863507,1565804865,694755372,151653691,1696627977,543519596,673212009,1836278056,1533174132,1025531241,1396777021,1163091789,2088509511,1836278048,1533174132,1025531241,1396777021,1330405197,1163021123,539568464,151653755,1885735177,1953393010,845555814,740433964,1297301792,745743711,858793248,1952213112,1718558779,1478835571,577657960,1886593068,1635017573,1633366626,1635020147,1567185762,1092627744,1281314131]},{"sector":4,"length":512,"data":[1380664143,744312901,1836278048,1533174132,1563503465,694755372,151653691,1696627977,543519596,151653755,543820041,996745277,151587341,1768453897,673211756,1953330017,1784373857,540942429,1598903105,541541715,1629496870,1635020147,1567251298,1092631584,1465863507,693389633,168655648,151587081,1953068915,673212515,1953330017,1784373857,2065705309,151587341,1633880329,1092642163,1096764755,221927489,151587082,1885735177,1953393010,845555814,740433964,1297301792,1480671583,221980962,151587082,1919027465,996893029,151587341,1633880329,1092642163,1147096403,221918769,151587082,1885735177,1953393010,845555814,740433964,1297301792,909198431,221980962,151587082,1919027465,996893029,151587341,1633880329,1092642163,1147096403,221917747,151587082,1885735177,1953393010,845555814,740433964,1297301792,842220639,221980962,151587082,1919027465,996893029,151587341,226298121,151587082,724265481,151653691,226298121,151587082,1769107558,677803118,539767398,997481506,1936092960,1750607165,740453980,992569632,168626701,1711868169,673215087,543825979,1601052732,1601008481,996303220,226172969,151587082,1634231049,1814700146,1936417647,1025536628,992092704,151587341,1751320841,1830842977,1936221025,828076660,1025531186,572685088,168639357,151587081,673212009,1953330017,1784373857,1027416157,1182281760,168634694,151587081,1701995017,221997921]},{"sector":5,"length":512,"data":[151653642,1762199817,1630019686,1635020147,1567251298,540884256,1598903105,1262702412,1162625601,226172969,151587082,1869351177,1953721187,540876914,1297301794,1129270367,1279410507,221979205,151587082,728369417,168639275,151587081,151653757,789121289,1752440874,660959845,543236211,1651470960,544040300,1752459639,1128612896,1684955424,1129204000,221194784,151587082,543582473,1836278056,1533174132,1025531242,2016419901,220808774,151587082,1919027465,996893029,151587341,1718159625,1935747104,1650553965,542992987,1092631870,1298091347,810042177,539371040,1953330017,1784373857,1027350621,1297301792,1128353119,539571784,151653755,151587081,1769107571,677803118,1751343469,745698419,1396777504,1095589709,1965377603,1629498402,1635020147,1567251298,1092627744,1298091347,810042177,168639273,151587081,724265481,151653691,2097744137,168626701,151587081,540876907,1953392936,1836278057,1533174132,706764138,909455904,1629498144,1635020147,728390498,221994289,151587082,1025534985,622881568,1601054752,1952410735,1936027769,992555307,151587341,543885577,543891517,1848123439,1600941919,1701869940,691088243,218762555,151587082,543582473,1042311976,2016419901,639645764,543891494,807419196,692470904,151587341,1711868169,1852404336,1713923700,572533810,1713402972,1918989936,1953390953,992551456,151587341,1818560777,168650099,151587081,1919968777]},{"sector":6,"length":512,"data":[1718906473,741500456,1952195104,1918989856,1953390953,992551456,168626701,151587081,673212009,1027481707,846737440,220803124,151587082,1885735177,1953393010,845555814,1092755500,676352583,623670565,539765109,740455717,543893536,2016419885,691024946,540950048,673197107,539828331,875722800,639641904,539768608,221981036,151587082,1936483593,151653733,151587081,1769107558,677803118,539767398,858793250,539781240,740455717,539781920,221981036,151587082,723544585,993140797,168626701,151587081,673212009,1027481707,1148727328,640032824,1008757536,2016419901,539575876,151653755,151587081,1769107558,677803118,539767398,622865442,1752707888,1629498402,1635020147,1567251298,168639273,151587081,724265481,151653691,2097744137,151587341,1718159625,1814702112,1936417647,1025536628,1546068029,639641392,1634541606,1953720419,1563450226,540884256,657480743,151653673,151587081,1769107558,677803118,539767398,577657890,168639273,151587081,1702063205,543582496,1667329320,1920234344,542978139,656424253,690434140,151587341,1711868169,1852404336,1713923700,572533810,1931812908,740453980,1668246560,1920234347,168639273,151587081,1702063205,151587341,1711868169,1852404336,1713923700,572533810,1931812908,1931812908,740453980,1668246560,1920234347,1634541612,1953720419,221981042,151587082,151653757,1885735177,1953393010,845555814,1545740332]},{"sector":7,"length":512,"data":[1852121204,1918989924,1953390953,690122332,151653691,543754505,996810813,151587341,151653757,151653757,1953853542,1545742451,1684956526,1819176287,544502633,1700946284,2036473964,1851549044,740453980,691168800,218762555,1718159626,1718560800,1952805734,540884512,1008742696,1397563452,1413892424,2065705257,151587341,1769107558,677803118,1701082227,539783794,543434018,1702132066,1718558835,1701735712,1768845165,539915107,1634227232,544417652,544173940,2037277037,577657902,1718558764,1952805734,168639273,2019887369,824734825,168639273,168656137,1763904013,221257830,707725578,537463309,1917853738,544501353,543516788,1852403823,544761188,1634890337,168636025,791289865,168626701,2020958473,544371827,1545740349,757939054,1916870701,544825714,1646290543,543519865,1936090735,544437349,544370534,543516788,1768714351,544437363,1634890337,1630019705,1702260578,220343849,571017482,758869596,1226845485,1936269428,1702065440,2036473956,1701344288,1936941344,1818389861,1948283493,1634934895,1931502966,1701011824,577657902,151587341,1869503522,1684957552,1814067301,1818583649,1954112032,1550736485,543319156,741351456,168639266,1919903241,543762464,993075261,1008757024,1601052733,1952410735,1936027769,724246587,2065705321,151587341,1769107558,677803118,539767398,628303138,740451379,2020958496,745698419,1869377312,1702061670,761879412,757095729]},{"sector":8,"length":512,"data":[1414549280,1397051481,168639273,1718159625,1764239392,924853792,1027416105,220804896,151587082,1937274209,1025536628,1851531808,1650750556,221979168,1695090954,224752492,151587082,1937274209,1025536628,573317664,151653691,587861373,1768189541,218762598,707725578,537463309,1917853738,544501353,544503151,2037674095,1566270832,537463309,168636202,1711868429,1937012080,758850088,1142959405,1935766377,1651336563,980575596,1836016416,1936028272,543450483,1818386804,1718558821,1701344288,1668312864,543515759,1701869940,220343923,537463050,1851531808,757935419,543574304,543516788,1835365481,1935763488,1701344288,1919903264,544498029,2015908943,539765112,1914729577,1919247973,1869881459,1650553888,656434540,1768714351,661877875,168632878,538970377,997088290,539831597,1701344335,1936291698,1953046629,1629516583,1718558830,1952805734,1919903264,1953392928,1634628197,1635000428,543517794,1936286759,661679466,168632878,538970377,1550736418,1953525614,1936027769,1650551840,1646292069,577074297,845553708,168639273,2020958473,544371827,1545740349,1685347438,992092258,1946749453,1953524834,540876914,1668047476,1701670255,997422190,168626701,1919903241,543762464,993009725,1008757024,1095783200,1598378834,1163084098,543760443,941636907,226172969,1711868170,673215087,540876906,1780497200,941636640,724246587,2065705322,151587341,1970300425,1630040948]},{"sector":9,"length":512,"data":[1953724533,1713384562,221980978,151587082,673212009,2037674095,1767597424,1780493088,1027481693,1414549280,1397051481,226172969,151587082,1953392905,1025538336,221982752,151587082,543582473,1953525544,1533374585,539697257,1042308458,1414549280,1397051481,151653673,151587081,544370534,1025538344,540750112,1027350649,1868525088,2037669740,997418352,724269344,151653673,151587081,543582473,1869377320,1702061670,762927988,1025531185,1886330941,1701869940,723544411,693987872,151587341,151587081,1701995017,221997921,151587082,543582473,1008761128,1601052733,1952410735,1936027769,151653673,151587081,1769107558,677803118,539767398,676613922,1479684133,539763241,221981049,151587082,1936483593,151653733,151587081,1818845542,1718559272,1952805734,1953459744,1970234912,1713398894,622883439,622869109,539763288,745155433,1953525536,1533374585,1567239017,168639273,2097744137,1936483616,151653733,1711868169,1852404336,1713923700,572533810,807739424,577263667,1886330924,1701869940,723544411,693987872,151653691,1969293577,1920234360,572538144,221979180,2097744138,151587341,1769107558,677803118,539767398,997481506,842016032,539828344,2016555045,1763716130,543760428,691478571,151653691,543582473,1025534248,1651777597,1920233580,1702051373,695168625,168655648,1711868169,1852404336,1713923700,572533810,1931814944,539763241,1818391592,728921200]}]],[[{"sector":1,"length":512,"data":[1043147051,1769108595,992569198,151587341,151653757,2020958473,544371827,1545740349,1685347438,992092258,2097744397,168626701,1919968777,1718906473,741500456,1851531808,1380012115,1113539923,541414209,544567653,539828260,2037674095,1551066480,992551534,168626701,2020958473,544371827,1545740349,757939054,1750343725,1701978213,1864397939,1752440934,543519589,543519329,1702195571,1684372069,577657902,1952195104,538993252,538976288,992095280,1711868429,673215087,540876905,1380012115,1113539923,742740801,826108704,543760443,1330520124,540758864,694758187,151587341,673212009,1025534504,1953525536,1533374585,539581801,807419169,226172969,151587082,673212009,1027481706,1414549280,1397051481,226172969,151587082,1953392905,1025538336,221982752,151587082,543582473,1042311720,1414549280,1397051481,151653673,151587081,544370534,1025538344,540750112,1027350649,1868525088,2037669740,997418352,724269344,151653673,151587081,543582473,1869377320,1702061670,762927988,1025531185,694820925,151587341,151587081,1701995017,221997921,151587082,543582473,1008761128,1601052733,1952410735,1936027769,151653673,151587081,1769107558,677803118,539767398,1332946210,807741524,573134898,1969299500,1920234360,695803948,151653691,1695090953,224752492,151587082,1634076937,573074537,1936090735,1847620709,1713402991,1684960623,1919903264,980755744,576202016]},{"sector":2,"length":512,"data":[745087020,992569888,151587341,1696627977,224752492,151587082,1919968777,1718906473,741500456,1931813408,807739424,577263667,1969299500,1920234360,694820908,151653691,728434953,168639275,1762199817,673718374,539369579,1025517879,691019837,168655648,151587081,1769107558,677803118,539767398,997481506,1479684133,1797270562,992557101,151587341,1969293577,1920234360,572538144,1952214620,572547684,151653691,545065225,1702063205,151587341,1969293577,1920234360,572538144,221979180,2097744138,1711868429,1937012080,1851531816,1713384482,221980978,151653642,168634927,539631625,1852404304,1970217076,1886330996,1868983913,168648027,791289865,168626701,1970300425,573076340,740453980,691168800,151653691,544370534,1025534248,540750112,540811369,1763719991,220801835,1711868170,1852404336,1713923700,572533810,947201360,1702124598,622884209,1851549784,1763716130,543760428,1293958204,1179207763,221981012,151653642,1953853542,1545742451,1635015790,1852270956,1851535904,1713384482,221980978,151653642,1953853542,1545742451,757939054,1766072365,1936941427,1818389861,540701285,1886220131,1936942450,1948279909,1701601889,543584032,1768186977,1852795252,1763732577,1919903342,1769234797,573468271,151587341,1545740320,757939054,1765941293,807433076,540094765,1635087221,544828524,543519329,543516788,1936090735,1864397925,1752440934,1852645477,1852796261]},{"sector":3,"length":512,"data":[544433001,1818386804,220343909,537463050,1851531808,757935419,1953055264,842080371,540356909,543519329,543516788,544567395,1667852407,1852383336,1685025396,1684366197,1768453152,1886330995,1701080931,168632878,538970377,1550736418,1768976238,544171630,1700946284,1870078060,1851548786,1713384482,221980978,151653642,544370534,1025534248,540749856,540811369,1380012115,1113539923,994399041,723544352,691281981,168655648,1969293577,1920234360,572538144,2003072092,221979168,1711868170,673215087,540876906,1780497200,874527776,724246587,2065705322,151587341,1970300425,1630040948,1953724533,1713384562,221980978,151587082,673212009,1634562159,1767598179,693987883,151587341,1885735177,1953393010,845555814,539107372,947201360,573251638,1886330924,1751343469,1781229915,221981021,151587082,673212009,2037674095,1767597424,1780493088,1027481693,1414549280,1397051481,226172969,151587082,1919968777,1718906473,741500456,1293951520,1931829070,1830824994,1936288878,1886346100,1868983913,1781229915,1932418397,1852404340,221981031,151587082,1818566781,168650099,151587081,1769107558,677803118,539767398,807739426,577271860,1886330924,1868983913,1781229915,221981021,151587082,1937274209,1025536628,573317664,151653691,168656137,1885735177,1953393010,845555814,1545740332,622869364,1551381040,539763310,221981033,226298122,1969293578,1920234360,572538144]},{"sector":4,"length":512,"data":[757935419,1701336096,1936028192,1718558836,1701344288,1629513075,1931502962,1701148017,778331514,539127388,1685347362,807411831,221979180,1868957962,1764237426,1394621728,1397899600,1094868805,539772243,540876907,1763719985,1310735392,995315791,1764436768,226172969,1762199818,673718374,540876906,2037674095,1767597424,555755869,691019837,168655648,1711868169,1852404336,1713923700,1629498418,1953724533,221981042,151587082,673212009,1634562159,1767598179,168634717,151587081,1769107558,677803118,539767398,626008098,540424309,539763243,1634562159,1767598179,221981021,151587082,673212009,1027481706,1414549280,1397051481,226172969,151587082,1919968777,1718906473,741500456,1293951520,1931829070,1830824994,1936288878,1886346100,1868983913,1566402907,1920234286,694644329,151653691,545065225,1702063205,151587341,1885735177,1953393010,845555814,539107372,2016686117,539763304,1852403823,1767599974,221981021,151587082,992684907,151587341,543582473,543893544,691216422,540884256,2065705264,151587341,1885735177,1953393010,845555814,1545740332,807746420,740448306,757099296,992556064,151587341,1969293577,1920234360,572538144,1952214620,572553060,151653691,545065225,1702063205,151587341,1969293577,1920234360,572538144,221979180,2097744138,2097744397,1711868429,1937012080,1851531816,1713384482,221980978,151653642,168634927,539631625,1852404304]},{"sector":5,"length":512,"data":[1970217076,1903370356,1650553978,537463309,168636202,1711868429,1937012080,1851531816,757935419,1936278560,1702064993,1701601901,1948269170,1701601889,1852793632,1953654134,1853169779,1702195571,1684372069,1836412448,1936876898,544175136,1702195571,1684372069,168632878,538970377,997088290,539831597,758138161,541475890,543519329,1702131813,1684366446,1668312864,1936024687,1177561120,695760928,168632878,538970377,1550736418,2054255470,543318388,1700946284,2036473964,1851549044,1713384482,221980978,151653642,540876907,168639280,1919903241,543762464,1347625021,1163088449,1396785759,1763720005,1310735392,995315791,723544352,691544125,168655648,1718159625,543762464,1394621757,1397899600,1094868805,723535187,909455904,151653673,1885735177,1953393010,845555814,1545740332,757939054,1965367341,1634759456,543519602,1970238055,1851552624,740453980,1196641824,1347768146,221981011,1695090954,543519596,673212009,1027416169,1095783200,1598378834,1163084098,840968992,723531317,706754592,1196641824,1347768146,2065705299,151587341,1919968777,1718906473,741500456,1851531808,757935419,544548128,1918988403,1713399155,1730180464,1886744434,1550736499,539763310,1112364366,1932022341,1885757296,1970238055,1650553968,221980969,151587082,1769107558,677803118,539767398,1346786082,1431261767,1696617296,1394636145,1397899600,1094868805,723535187,606087200,1931488544]},{"sector":6,"length":512,"data":[1635023473,1546199138,992551534,151587341,151653757,2020958473,544371827,1545740349,543319156,168639266,1868957961,1781014642,807419168,543825979,993534012,1781213984,226172969,151587082,1769107558,677803118,539767398,628303138,740451379,2020958496,745698419,1953525536,1533374585,539697257,1025531242,540024893,540024895,724246586,221981035,151587082,1937274209,1025536628,573317664,151653691,168656137,1885735177,1953393010,845555814,1545740332,1478835060,740453980,992569632,2097744397,168626701,220868361,706742538,1769099296,1864397934,1948284021,1663067496,1851876716,1948282997,1701601889,168636019,791289865,168626701,1970300425,573076340,758869596,1142959405,1935766377,1651336563,980575596,1650553888,1864394092,1852645478,1852796261,544433001,1952540788,1634231072,543516526,1948282473,572548456,151587341,1881284640,1702061426,543515502,1629513327,1229018912,572531284,758869596,1763716397,1920234350,1769235317,1546546799,577657966,845553708,168639273,1953853449,678913119,539767398,1635022626,740438370,1635021600,1650553970,1902474079,1601052716,1918989427,1953391967,1936025970,168639273,543582499,151653680,544370534,1025534248,540749856,540811369,1953718126,1700754017,1769108590,540767077,694758187,151587341,1918989427,1600282996,1767599725,540876893,1768713837,1935373427,1953653108,1834967649,1567185774,1718562397,1952805734]},{"sector":7,"length":512,"data":[151653691,1601467760,1713928036,572533810,1650553975,539763250,1918989427,1600282996,539782765,1953718126,1700754017,1769108590,992572261,1696795149,224752492,1885735178,678655093,1635022626,1814049378,1818583649,1919907616,577657956,845553708,168639273,1919903241,543762464,993009725,1008757024,1935633952,1601331572,1920233061,997418345,1764436768,151653673,1919968777,1718906473,741500456,1952195104,1293973348,1931829070,740453980,1819176224,1534358377,1918989427,1600282996,1767599725,1932418397,1852404340,221981031,1852121866,224815460,1885735178,1953393010,845555814,1310859308,1096046431,1702124610,673215857,539828260,1650553975,790636850,1851535904,221980962,151653642,1953853542,1545742451,757939054,1766072365,1936941427,1818389861,540701285,1818386804,1868963941,1886330994,1851880037,1998615396,1751345512,1986095136,543236197,1717987684,1852142181,220340340,571017482,1835363949,1667853935,1919903264,1545740322,757939054,1752440877,544368997,1646277171,1981838441,1769173605,544435823,1748383272,1701998624,695757158,1550736430,539763310,992555622,1879640589,1683977333,845555831,1814175788,1868718452,539763249,1935764595,1650553960,1902474079,1601052716,1935764595,1852137320,1701409396,221981043,1718166282,168636448,1919903241,543762464,993009725,1008757024,1935633952,1752392044,1953391967,1936025970,724246587,168634729,1819478281,1953002337]},{"sector":8,"length":512,"data":[1834967649,1567185774,1830829344,1936288878,1819499380,1953002337,1834967649,1567185774,1718562397,1952805734,151653691,1601467760,1713928036,572533810,1650553964,740438639,1634497312,1635018867,1852661602,1601052716,1935764595,1852137320,1701409396,221981043,1818567434,168650099,1970300425,573076340,1650553964,1814049391,1818583649,1919907616,577657956,845553708,168639273,1919903241,543762464,993009725,1008757024,1935633952,1752392044,1953391967,1936025970,724246587,168634729,1885735177,1953393010,845555814,1545740332,544695412,627002957,577657971,1852645420,1953720684,1634497371,1635018867,1852661602,1566402907,1920234286,694644329,587861307,1768189541,151653734,1769107558,677803118,539767398,1281314338,1329742164,1902474332,606609525,1814048032,1868718452,790636850,1851535904,221980962,151653642,1953853542,1545742451,757939054,1766072365,1936941427,1818389861,540701285,1818386804,1868963941,1886330994,1851880037,1998615396,1751345512,1986095136,543236197,1717987684,1852142181,220340340,571017482,1835363949,1667853935,1919903264,1545740322,757939054,1752440877,544368997,1646277171,1981838441,1769173605,544435823,1748448808,1701998624,695757158,1550736430,539763310,992555622,1879640589,1683977333,845555831,1814175788,1633837428,539763249,1752392040,1600282996,745629043,1751084576,1600680801,1920233061,695428457,587861307,807429737,1711868429]},{"sector":9,"length":512,"data":[673215087,540876905,1763719984,1847606304,1935763551,1852137320,1701409396,723532659,220817707,1745422602,1953002337,1834967649,1567185774,1830829344,1936288878,1634229108,1635018867,1852661602,1566402907,1717989166,997483891,1879640589,1683977333,845555831,1814175788,1633837428,539763250,1752392040,1600282996,539782765,1634230126,1700751475,1769108590,992572261,1696795149,224752492,1885735178,678655093,1635019810,540172642,1700946284,1870078060,1851548786,1713384482,221980978,1868957962,1764237426,807419168,543760443,1601052732,1752392040,1953391967,1936025970,724246587,168634729,1885735177,1953393010,845555814,1545740332,544695412,627002957,577657971,1852645420,1953720684,1935763547,1650553960,1533963615,777870697,1769108595,992569198,1696795149,1718183022,1711868429,1852404336,1713923700,572533810,1414291278,1547780673,1970365812,539240480,1953243181,845242977,539959337,577657906,168639273,1711868429,1937012080,1851531816,757935419,1936278560,1702064993,1701601901,1948269170,1701601889,543584032,1801678700,1701601889,1936615712,1668641396,1852795252,1550736499,740303470,691168800,151653691,1601467760,1713928036,572533810,1801678700,543318388,1700946284,1870078060,1851548786,1814047778,1953194863,539779681,1869373294,1635019619,221981026,1885735178,1953393010,845555814,1310859308,1129270367,1702124619,673215857,539828260,1801678700,694313332]}],[{"sector":1,"length":512,"data":[840970016,690122332,218762555,168656138,1852377613,1634541684,690515561,226167309,1229326602,706757964,221983078,1229326602,706757964,221983334,1852377354,1718558836,1952805734,218762555,707725578,537463309,1699881002,1763730529,1752440942,1701519461,1768169593,1869182051,2037539182,151653678,221194784,151653642,1025519974,1701867296,1634038382,1763846244,1920234350,2036689710,221980962,1718552842,1952805734,1327512864,1348031568,723538757,221983008,1752631562,543517801,1952802600,1701734764,691103272,226172969,1661536522,544366952,1025536042,1852402720,168639333,1751320841,706769505,540876913,1668445299,1881698920,992419884,221980967,1762199818,1763734638,218762555,1762199818,1898455142,226172969,151587082,1025536298,811345696,168639271,1896417545,221981997,151587082,1818847351,1898455141,1881161248,539371040,544287272,656424253,2082481952,1898586236,540884256,661937191,2065705257,151587341,1898580233,656424224,992424028,151587341,762382601,168639277,2097744137,151587341,218762621,1762199818,1848123494,2036689759,1027481715,1480674592,1598836575,1162893652,168634707,1711868169,678193505,1869567010,1851878688,1701519481,573469561,168639273,1819216137,1685677419,1534354281,1701535598,777876345,544826731,1701257277,2036689780,695215656,151653691,1025536009,1768649504,1768454000,1881695604,168639273,1868957961,1764237426,807419168]},{"sector":2,"length":512,"data":[723532603,539584811,151653755,1718159625,543762464,1847606590,1600941919,1701869940,2065705331,151587341,1751320841,706769505,540876913,1818324344,677605228,1819440243,1881697893,539697193,572533809,1919250543,543452769,1701869940,1835101728,992551525,168626701,151587081,1668445299,1898477936,695214124,151653691,1762199817,1848123494,1600941919,1701869940,1027481715,1480674592,1598836575,1162893652,168634707,151587081,1767990793,1411524716,1830842223,544829025,1919250543,543452769,1953720684,1887007776,573469541,168639273,151587081,1634626671,1534289261,1819238254,1887007839,542995301,997269565,151587341,1819216137,1936090735,1851487333,1600941919,1701869940,1025531251,1717989152,997483891,151587341,1868957961,992485490,2065705275,151587341,722012425,1717989163,997483891,151587341,1896417545,1931492640,1751347828,745613426,657205024,168639273,151587081,543582473,1025536296,1431183421,539577420,1634038370,168639339,151587081,1898654473,151653691,2097744137,151587341,724240649,1936090735,222000229,151587082,1848322825,1600941919,1701869940,168639347,2097744137,151587341,543582473,1920234280,678456675,1864379504,1835101804,1767600997,1025517917,691019837,151587341,1919027465,996893029,151587341,151653757,1802268425,1768192357,1851487331,2036689759,1982750067,1702194273,1763720480,151653691,1802268425,1768192357,1851487331,2036689759]},{"sector":3,"length":512,"data":[1999527283,1752458345,824196384,151653691,543582473,1920234280,678589555,572533872,1096765519,690113612,540877088,1280070990,151653673,1819216137,1685677419,1534354281,1701535598,777876345,1952737655,540876904,168639282,1818560777,1763730803,1932009574,1953722996,745547890,1347363360,1096766047,690111556,540877088,1280070990,151653673,1819216137,1685677419,1534354281,1701535598,777876345,1952737655,540876904,168639288,724240649,1701535598,221999993,226298122,1667631370,1702063980,691103272,151653691,673212009,1936090735,1042314341,892477501,2065705270,151587341,1769107558,677803118,1701082227,539783794,543434018,1702132066,1718558835,1701867296,1684955506,1936288800,539915124,1634227232,544417652,544173940,2037277037,577657902,1718558764,1952805734,168639273,2019887369,824734825,168639273,168656137,789121549,151653674,1377839648,543449445,1948282473,1864394088,1919247474,543649385,1634493810,1852795252,168636019,791289865,168626701,540108297,1886330941,1701998181,573072481,1953721961,1919889010,992551524,1997081101,1701603688,1701259296,1852402804,828778597,2065705257,151587341,1918986339,544221728,1768693821,221996398,151653642,543582473,1868525096,544433266,1293958462,1314871361,1146244959,168634707,1711868169,678193505,1869567010,1851878688,1919885433,1769104740,1914726254,1920234341,1769235305,779316847,221980962,1795754250]},{"sector":4,"length":512,"data":[1919908197,1851470180,1685221215,1025531251,1869573152,1802532203,1730705765,1701540965,1881548921,221980969,1879640330,1931492640,2003855723,1702127976,992571432,151587341,1870226795,1530029170,1919901550,542995300,1869357117,1886743407,679044459,1802790247,640186725,992553328,151587341,673212009,555773994,1546068029,220800816,151587082,1818845542,2035491368,2019652718,1920099616,1763734127,1919885422,1769104740,1713399662,778398825,221980962,722012426,1868525099,997418098,2097744397,1711868429,1936682083,828778597,168639273,789121549,151653674,1142958624,1752440943,1634541669,1881173609,1701015410,1852404595,168636007,791289865,168626701,540108297,1886330941,1701998181,573072481,1953721961,1702047346,992551540,1913195021,1600414053,1713927017,221980977,1667631370,1702063980,691103272,218762555,707725578,537463309,1918312490,543519849,543516788,1701603686,151653678,221194784,151653642,1025520230,1886348832,573075045,1969382756,1818391655,1886221358,572533794,992551543,1762200077,1713905766,1027416114,1280658976,2065705292,151587341,1920099696,573076079,1969382756,1818391655,1886221358,221980962,1695090954,678717816,221980977,226298122,151653642,1886221668,1818386804,1713927013,221980978,1667631370,1702063980,691168808,218762555,707725578,537463309,1867325482,1948280182,1713399144,543517801,1763733364,1864397684,1768384882,543973742]},{"sector":5,"length":512,"pattern":0,"data":[1769172848,1852795252,151653678,221194784,151653642,1869440370,573072758,1969382756,1818391655,1684827950,221980962,151653642,673212009,1634624882,573072749,1969382756,1818391655,1668180270,572533794,1969382756,1818391655,1684827950,1025517858,825040957,226172969,1879640330,1869771365,1914841202,1835101797,1701060709,1952937314,1764650082,757097326,1701060670,1952937314,1865313378,690119788,151653691,151653757,673212009,1634624882,573072749,1969382756,1818391655,1886221358,572533794,1969382756,1818391655,1668180270,1025517858,825040957,226172969,1879640330,1869771365,1914841202,1835101797,1701060709,1952937314,1949199458,757100653,1701060670,1952937314,1764650082,690119534,151653691,1952805385,544109173,168639281,168656137,1879640589,678655093,1852785698,690105957,151653691,1970562418,807431794,2097810747,2573]},{"sector":6,"length":512,"data":[824183309,1648435246,225736047,537529610,1411391520,544434536,1629516649,1852121198,1668178280,1663067237,1701736300,543584032,543516788,1143821133,1345278799,1329864771,1162092627,541545794,1835888483,543452769,1667852407,1634213992,537529715,1830821920,544829025,1952540006,1936028277,1953459744,1635148064,1650551913,1763730796,1752440942,1919885413,1852401513,1142975585,1196769861,1866866734,1701060722,1818845556,1702043763,1700929637,779579244,168626701,840960525,1766203438,544433516,1919252047,2003134838,168626701,538976288,543516756,1701603686,1852383347,1768453152,1768169587,1769108595,1769239906,1629515375,221930866,537529610,1679826976,1735746149,1836016430,538976288,1701344288,1935761952,2019893349,1953850213,1701601889,537529646,1679826976,1735746149,1868770936,538976365,544104736,1702131813,1684366446,1919252000,1852795251,1768453920,1763731555,1818304627,1142976371,541674832,1918990177,168636005,538976288,1969382756,2020879975,538976372,543236128,1701209458,1668179314,1969692773,778396777,538970637,1768431648,1919906931,2020879993,538976372,1953720684,543584032,1851877475,779314535,538970637,1701978144,1701667937,1954051118,538976288,1936287860,1818846752,168636005,538976288,1768779876,842230883,538978862,842211360,1953063469,1297105952,1818435657,1953391977,1835103008,543517808,1735357040,778920306,168626701,538976288,543516756]},{"sector":7,"length":512,"data":[1819045734,1852405615,1768300647,544433516,543519329,1869835361,1918988320,1718558836,1701344288,1936286752,1651077748,1869182069,1646275694,168653941,538976288,2036689012,543519271,2037149295,1701146144,543450468,1679844969,1735746149,1836016430,544370464,1969382756,1663989863,1763732847,1869881459,543515168,1969382770,980708457,168626701,538976288,1969382756,1935748711,538976365,1933647904,1651336563,544367980,1920298867,1663067491,543515759,544370534,1752461154,1650811936,1663985525,1629515119,1679844462,1735746149,1868770936,168636013,538976288,538976288,538976288,538976288,1933647904,1651336563,1998611820,543716457,1935759178,1919885421,1396788512,1932009549,1830839653,778398561,695492962,537529646,1679826976,1735746149,778855028,543387241,1668180256,1701082476,1818846752,1868963941,1701060722,778532194,745370465,1852793632,1852399988,1635000435,1936026722,1919903264,1701344288,538970637,538976288,538976288,538976288,538976288,1702064993,1701601901,1684955424,1634628896,1835365235,543517794,1835888483,1935961697,537529646,1713381408,1936684144,1764651636,538993518,1668180256,1701082476,1818846752,1868963941,1701060722,778532194,745370465,1852793632,1852399988,1752440947,1869750373,1852404853,1869881445,538970637,538976288,538976288,538976288,538976288,1986948963,544502373,1818632289,1769234799,1882023790,1953393007,1836412448,544367970]},{"sector":8,"length":512,"data":[1092644724,1229538131,537529646,1763713056,1920234350,538978862,538976288,1886284064,1679848565,543257697,544370534,1635019629,1936026722,537529646,1830821920,1650553963,779314540,538976355,1881162528,1919381362,1948282209,1868767343,1818849389,1752440933,1852383333,1852990836,1763732577,1920234350,1769235317,1931505263,168653925,538976288,538976288,538976288,538976288,1635000352,1936026722,1953392928,1869815919,1701016181,1818846752,1701060709,1952937314,1764650082,221143918,538976266,1801547040,1633824357,538976372,1646272544,1751348321,1818846752,1869881445,1769300512,1679844460,1735746149,1836016430,1684955424,1650811936,779642741,778923875,538970637,1634541600,778265963,544498018,538976288,1668571490,1768300648,1948280172,1969365103,543452265,1635019629,1936026722,1702389038,218762542,537529610,1092628019,1684366436,1936280879,1735289203,1634027040,1701999988,218762611,1629495306,1750343726,1679848297,1735746149,544367975,1702131813,544433262,1143821133,1142969167,1196769861,544106784,543516788,1819045734,1852405615,1635197031,221934457,537529610,539828256,543516756,1702064993,1701601901,1851859058,1768169572,1936941427,1818389861,1931506277,1869639797,1629516914,1763732588,1920234350,1769235317,544435823,1818455657,1852400757,1346773095,537529685,538976288,1953721961,1952675186,1936617321,1919903264,1953384736,1663069285,1936746856,1919448096]},{"sector":9,"length":512,"data":[1751610735,1701344288,1852133408,1836411252,1869762592,911222816,1696607273,1885692792,1868963956,1752440946,537529701,538976288,542657869,1953721961,1952675186,1936617321,1935747104,1919903264,1111835680,743982933,1481461024,544434464,1953653104,1819042153,1970479225,1919905904,543450484,1668180339,829825125,691548462,537529646,538976288,543516756,1702064993,1701601901,1851859058,1768169572,1936941427,1818389861,1763734117,1919903342,1870209133,1718165621,2037276960,1936615712,1668641396,1852795252,225667360,538976266,1852383264,1919971425,1769107567,543519841,544370534,543516788,1920103779,544501349,1668248176,1869837157,168636018,538970637,1411394848,1663067496,1701999221,1881175150,1701015410,1919906675,1868965920,1752440946,1970282597,1936683122,1864397669,1935745126,1651336563,544367980,543452769,1634953572,1835365235,1919249506,538970637,1998594080,1768845921,695428974,1851876128,543515168,1818453348,1684370017,544175136,1931502946,1952804207,1735289192,1936483616,1769349221,1752440929,1868963941,2003790956,543649385,1835888483,1935961697,218762554,538976266,538976288,1528851744,1931500920,1126200421,1177507152,1830835536,778396783,538970637,538976288,538976288,538976288,540876848,909652024,942684207,824192056,941636896,909652272,825243695,539768888,540876850,942813240,857746486,941636896,909652784,537529644,538976288,538976288]}]],[[{"sector":1,"length":512,"data":[538976288,1025520672,875575328,539768376,540876853,1953391952,745370985,1025521184,1852133408,1836411252,1869762592,1919887392,1952541728,774468197,538970637,538976288,538976288,538976288,540876884,1752457581,1886348064,1701015410,1919906675,544434464,808984673,540489778,1819176744,1635131513,543451500,1663067753,1701999221,168653934,538976288,538976288,538976288,538976288,1919950880,1936024431,544370547,1629516649,858798112,774452792,538970637,538976288,538976288,538976288,540876878,1752457581,1886348064,1701015410,1919906675,544434464,1702060641,221148270,538976266,538976288,538976288,1847599136,1918967919,1701672295,1025537134,1769107488,1663071342,1701999221,1126200430,1177507152,1948276048,1936027769,218762542,538976266,1680285741,656419879,539764592,539456551,543452769,539456807,543519329,1869903201,1769234797,1819042147,1701978233,1952540016,1763730533,543236198,1851878498,1768693867,1763730798,537529715,538976288,1702129253,778331506,168626701,757080096,1650730784,656419879,539457380,543452769,660890663,1936286752,2036427888,2036473971,745760116,1919907616,1864397668,2003050610,1935962735,1750343726,1634476133,1679848563,1819308905,168655201,538976288,1887007776,1702043749,1952671084,1763730533,1937055859,1713398885,1931506287,1702060661,1852142961,1680285812,1868767271,1851878765,221148004,537529610,539828256,661480487]},{"sector":2,"length":512,"data":[1936286752,2036427888,1752440947,1329864805,1701650515,2037542765,1852793632,1819243124,1869373984,673213283,692208461,1634231072,1629515369,1948279918,168650088,538976288,1920295712,1953391986,1347637280,218762542,538976266,1701978157,1953720679,1847620197,1936026977,1851876128,543515168,1684370293,2037276960,1919248503,1752637541,543519333,1970151521,1919246957,544434464,1701869669,1684370531,225665312,538976266,1852383264,779384176,1919895072,1635280160,1701605485,1965170746,980640544,539127913,572551791,1935941732,577336122,218762542,538976266,1915166765,544760608,875770417,1634541607,1700929657,1702065440,1852383332,1634038899,1718558820,1986095136,543649385,1881173876,1948284021,656434536,875770417,1852776487,168648992,538976288,1885696800,1952543329,1768693861,221144430,537529610,539828256,1914728999,1936287589,544367988,1818326619,660432245,1667457312,1937010789,758264608,544500066,1768383858,1919251571,1835101728,673215333,544370534,942878776,1126181686,774460752,168626701,757080096,1852974880,1768169511,1634496627,1176531833,1914721616,1936287589,1936876916,218762542,538976266,1915166765,1931487096,1668573559,544433512,2004116834,544105829,1647130161,1629516905,857760878,1768041778,1701978228,1953720679,1679848037,1819308905,673216865,544370534,942878776,1126181686,774460752,168626701,757080096,661137184,1851876128,1851877408]},{"sector":3,"length":512,"data":[543517796,1919907684,1635131492,1936029036,218762542,538976266,1764171821,539764599,660891943,1864835116,1629497207,656434286,539452527,1684104562,1769109295,1629513076,1380931360,1919885380,1331119136,1981826130,1702194273,1869768224,1869885293,1881170208,225735279,538976266,1464082464,541348431,1970037110,1914729317,1769304421,1629513074,858798112,539702840,777343043,168626701,757080096,1919952672,1802706983,544436329,544503151,1948280431,1663067496,1701999221,1931506798,1869767285,1852404853,2036473957,1869770784,1684366691,543649385,1953718640,1701344288,2019913248,537529716,538976288,743720274,1413829152,1919885382,1163020576,1752637524,543712105,1847620457,1847620719,1702130533,1769414756,1970235508,1953702004,1768976495,221144942,537529610,539828256,544044071,657554480,1952805664,1920213107,543515489,1835888483,543452769,1701080941,540024876,1919950909,1936024431,1313415283,673215316,1634100580,695495797,537529644,538976288,540876849,1735289203,1932354924,544236916,1934904905,1752442912,1397563493,1397703725,1111835680,1663059797,1634757999,1818388852,1869422693,774464868,168626701,757080096,1920476960,1818304551,1937207148,1634038304,1668246636,1869182049,1718558830,544104736,542330181,1684955496,1629513068,656434286,539451768,1869376609,1629516663,1668246636,1869182049,1718558830,225337632,538976266,1696735264,2037674093,1296375842]},{"sector":4,"length":512,"data":[1634213971,1701602414,1769416736,2048944244,544174693,1701273968,757082483,1953849888,1819176736,1718165625,544104736,541936965,808334454,544434464,1936028272,779382373,168626701,757080096,543582496,542330692,544432488,544499059,544437353,1329884745,1818632275,539780961,1430406468,1769414727,1629514860,1684631414,1769174304,1226860398,840987758,168650801,538976288,1953392928,1634628197,746155116,1768453920,1629513827,2003790956,1769152627,1701603182,1702130477,1852403824,1752440935,1735749490,1329864808,1868767315,221144420,537529610,539828256,1852139607,1768907808,656435054,1969382756,540811367,1701603686,1679830055,1735746149,1818851104,1869488236,1634214004,1763731310,1953046630,1634038304,1936025699,544104736,543452773,168650351,538976288,1818846752,1700929637,1701998438,1668179232,1953396079,1852404325,543236199,539455783,1835888483,778333793,168626701,757080096,1768444960,1701060723,1734833506,1931506277,1936029281,1684955424,1936028192,1701998452,1752440947,1919950949,1634887535,544417645,1953394499,762081138,1851859011,1919098980,1667855465,168651873,538976288,1920099616,1763734127,1919251566,1953527154,1881156723,1769369458,1735289188,1919903264,1952801312,544367988,1819243369,1869182049,1700929646,1701148532,1752440942,1701060709,1734833506,168653413,538976288,1684955424,1701344288,1869770784,1835102823,1768251936,1679845230,1735746149]},{"sector":5,"length":512,"data":[778331495,168626701,757080096,1701336864,543236206,1969382756,1684367207,1869770784,1835102823,1919251488,1634625901,745760116,1111835680,1998604117,543976553,1886611812,544825708,543516788,1953069157,1685021472,537529701,538976288,1635017327,1684369001,1869768224,1850286189,825368692,1969627240,1769235310,874540655,539912260,543516756,1751607656,1954112032,1936269413,1701344288,1769497888,2037653620,168650096,538976288,1026566176,1836216174,539782241,1950563633,1127050354,1026695212,1953067619,1818321769,1920099616,539783791,1398029619,1629497682,1948279918,1814062440,1646294895,543519865,1948283753,168650088,538976288,1952805408,544109173,1701080931,218762542,538976266,1767252013,544171364,1701273968,1768711712,1852403824,1936269415,1886745376,1953656688,539911269,1852139607,1701344288,541470496,1953068915,1763731555,1937055859,1763730533,1702109294,1830843512,224748655,538976266,1752440864,1948282469,1679844712,1735746149,544367975,1819044215,1702065440,1734438944,540090469,1818847351,1919950949,1634887535,1970217069,1953853556,1852139296,1818325605,1965062508,225666419,538976266,1634738208,807429479,1750343726,1982275685,1868767271,1851878765,1769414756,1931504748,544698216,543516788,1735357040,544039282,1886680431,1864397941,1634738286,807429479,218762542,1646272522,541138990,1229803588,1635213600,1981834610,1769173605,1864396399,1752440934]},{"sector":6,"length":512,"data":[1701060709,1734833506,539783781,1430406468,539777095,1629516649,1818845558,1701601889,1769414700,1948280948,168650088,538976288,1819239968,1769434988,1629513582,1953064036,1634627433,1701191788,1920300129,221934437,537529610,539828256,1769170274,544433508,1818322290,1685024045,1885413477,1667853424,1869182049,1763734382,1633886324,1701060718,543651170,1752461154,758526240,544500066,543452769,1647129139,168653929,538976288,1297105952,1818435657,1953391977,1411395187,1701060719,543651170,1229803588,1768710944,1937010277,1142972704,541674832,1953722216,1935763488,544175136,1763730786,1635021678,1684368492,537529646,538976288,1953719636,1998611557,543716457,1685288803,745106800,1885628448,539781485,1483630935,1414406224,743261270,1915892512,539913588,1142976073,1833268079,1851859061,537529700,538976288,1684957527,544438127,959395129,1162686264,1397703712,2020565536,1763734373,1936269428,1902473760,1701996917,1869881444,1852404512,761621607,1885697139,1919448096,1751610735,538970637,1948262432,1763730792,1769236846,1931504737,1668573559,1869881448,1869770784,1952671092,1831691365,744842351,1936483616,1162092645,1481069890,1818851104,1869357164,1663067507,1920233071,168651887,538976288,543584032,543516788,1969382756,1701144423,218762542,538976266,1680285741,540682089,1886611812,544825708,1702129257,1886745202,1702240372,1919906915,220820264,537529610]},{"sector":7,"length":512,"data":[539828256,661414951,1768169530,1634496627,1145839737,1701060692,1769104243,1919906928,539587368,544106792,1953460848,1702126437,1869426020,1864394084,695823470,168626701,757080096,2019829536,1679833639,1819308905,1696627041,1852142712,543450468,1869440365,673216882,1684104562,1634301472,1953384736,1748316448,1751195692,1748449341,1377840681,1769304421,544433522,537529697,538976288,942813240,1126181686,539907408,662201383,544434464,1869903201,1769234797,1819042147,1701978233,1952540016,1763730533,543236198,1851878498,1768693867,1763730798,1852121203,1701995892,168636004,538970637,656420128,539454834,1886611812,1937334636,1481461024,1734701600,1702130537,221148018,537529610,539828256,661549607,1936286752,2036427888,1346773107,1701978197,1953720679,544436837,572550761,1684104562,1701601889,1868963874,1952542066,218762542,538976266,1915166765,539456110,1886611812,1937334636,1431324192,1734701600,1702130537,1763734386,1634869358,1868963959,1952542066,218762542,1663049738,1884233774,1852795252,2037148769,1852776492,1634541669,1969365113,543452265,1667592307,762077545,1886549360,543519599,1936876918,1936617321,543584032,1430406468,168635975,538976288,1853182496,1634542112,1696621931,1634890872,1869881378,1769300512,1948279916,778921320,1701336096,1684300064,1869182057,543973742,1936876918,1936617321,1701994784,218762554,538976266,1162092589,1481069890]},{"sector":8,"length":512,"data":[1329802820,1629502029,1919252000,1852795251,1768453920,1679845475,1853056367,1746957351,543911791,544501321,1629499696,1226859630,807433326,1411395123,225667432,538976266,1818304544,1937207148,544175136,1969382756,1752440935,1981838185,1769173605,1998614127,543716457,1847730273,1634562671,1981817452,1769173605,1864396399,1162092646,776426818,168626701,757080096,1111835680,1163413333,1297040174,543236154,1936876918,544108393,1667852407,1869095016,544435055,1702129257,1886745202,807433076,807414838,1629513795,807429230,1763731524,537529710,538976288,1818322290,1685024045,1411395173,544434536,1713402729,1914729071,543519329,1702060387,1752637555,1931505253,543712117,1701017701,1869182064,1830843246,1864399201,1920295779,538970637,1763713056,1701978222,1831693409,543515759,1819308129,1952539497,1936617321,218762542,538976266,1162092589,1481069890,1329802822,1629502029,1919252000,1852795251,1768453920,1746954339,1936420719,1953392928,1970434661,857764976,1763731505,1919950958,1667593327,761554292,1701080941,538970637,1629495328,1948279918,544105832,1701471602,544437347,544829025,1702130785,544501869,1830842228,1718183023,2019893369,1953523043,544108393,1952671094,544436847,539767088,221000496,538976266,1144004640,1851859048,1160781924,1411395176,544434536,1869376609,1948283767,1679844712,1735746149,1735289191,543584032,760434500,1702131813,1684366446]},{"sector":9,"length":512,"data":[1886413088,1633905004,1852795252,537529715,538976288,1952540788,1685024032,544826985,1936025716,1702240357,1919906915,168636019,538970637,1142959392,1196769861,1398362926,543236154,1936876918,544108393,1952540788,544434464,1142976105,1679840079,1667855973,1919164517,1919252073,1919903264,779379053,1768444960,537529715,538976288,1769103734,544501345,544104803,1965057378,543450483,1679847284,1735746149,1752461088,1679848037,1667855973,1919164517,1919252073,1411395187,1701995880,1701994784,1713398048,168654693,538976288,1667592224,1634298997,1769236850,540701541,1835888483,1935961697,1629507104,1361077358,1701994784,1785033248,1702126437,1663052900,1634561391,544433262,1851859020,542580836,661545315,1700929652,538970637,1965039648,543450483,1814065012,543449455,1998615151,1702127986,1818846752,1629516645,1763730542,1919251566,1953527154,540422176,1986947368,1684630625,1668312864,543515759,1701017701,1869182064,168634734,538976288,544434464,1802465128,221144165,537529610,539911200,543516756,1819045734,1852405615,1701191783,1920300129,1864397669,1397563494,1397703725,1111835680,1629505365,1847616882,1763734639,1701605485,1953391981,221930597,537529610,539828256,1684107084,543649385,773875311,542655816,1701603686,168636019,168626701,539898912,544698184,1914728308,1769300581,1948279916,1142973800,1196769861,1297040174,1111835695,777537365,541937475]}],[{"sector":1,"length":512,"pattern":0,"data":[1634625890,1936025970,168626701,538976288,1162559821,1413562926,544434464,1702129257,1684366446,1919903264,1650815520,1684826485,543649385,543516788,1969382756,1919248231,1852400160,1701409377,1411395187,168650088,538976288,1868785010,1852140909,543450468,1819242356,1919903264,1768453152,1936269427,1701344288,1633110560,1629515123,1835365235,1919249506,1816207406,1852990836,1986622561,746155109,538970637,1095573536,1663061331,1646292577,1937055845,539780197,544503138,1852139636,824205600,1768041782,1297031284,1768693830,1919249262,1818851104,1700929644,1701146144,778331492,168626701,891292173,1866670126,1769109872,225732711,537529610,1411391520,544434536,1735357040,544039282,1663071081,1920561263,1952999273,539780197,544503138,1818584422,1701996064,1869881445,1702065440,544500000,2032169825,1998615919,778597225,538970637,1866866720,1969627250,1663069292,1920561263,1952999273,1852793632,1769236836,745762415,1701147424,1701344288,1818846752,1701060709,778532194,778924897,168626701,538976288,1819631952,1785681440,673210740,892942641,808464941,168634675,538976288,1919184449,544432485,1667592775,841490536,758526000,825307186,537529641,1444945952,1869509221,1916936302,1936420719,808593440,841823025,691417392,2573]},{"sector":2,"length":512,"pattern":0,"data":[1701060643,2020046178,1850018317,1668178280,1142973541,1196769861,1919903264,541282336,542330692,543452769,1143821133,168645455]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]],[[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}],[{"sector":1,"length":512,"pattern":0,"data":[]},{"sector":2,"length":512,"pattern":0,"data":[]},{"sector":3,"length":512,"pattern":0,"data":[]},{"sector":4,"length":512,"pattern":0,"data":[]},{"sector":5,"length":512,"pattern":0,"data":[]},{"sector":6,"length":512,"pattern":0,"data":[]},{"sector":7,"length":512,"pattern":0,"data":[]},{"sector":8,"length":512,"pattern":0,"data":[]},{"sector":9,"length":512,"pattern":0,"data":[]}]]] \ No newline at end of file diff --git a/disks/pc/tools/misc/manifest.xml b/disks/pc/tools/misc/manifest.xml index 8d47b9748..7cda6ddd8 100644 --- a/disks/pc/tools/misc/manifest.xml +++ b/disks/pc/tools/misc/manifest.xml @@ -1,19 +1,19 @@ - + Enhanced DEBUG PC DOS Retro: Enhanced DEBUG for PC DOS and MS-DOS - + Enhanced DEBUG 1.32a - DEBUG.ASM - DEBUG.COM + DEBUG.ASM + DEBUG.COM DEBUG.TXT DEBUGTBL.INC - DEBUGX.COM + DEBUGX.COM DPMICL32.ASM DPMICL32.EXE FPTOSTR.INC - HISTORY.TXT + HISTORY.TXT INSTR.KEY INSTR.ORD INSTR.SET @@ -21,7 +21,7 @@ MAKE.BAT MAKEC.BAT MKTABLES.C - README.TXT + README.TXT README.MD diff --git a/disks/pc/unix/ibm/pcix/1.0/manifest.xml b/disks/pc/unix/ibm/pcix/1.0/manifest.xml index 73a8bb8ab..206a8462f 100644 --- a/disks/pc/unix/ibm/pcix/1.0/manifest.xml +++ b/disks/pc/unix/ibm/pcix/1.0/manifest.xml @@ -1,5 +1,5 @@ - + PC/IX 1.0 diff --git a/disks/pc/unix/microport/system-v/2.3/manifest.xml b/disks/pc/unix/microport/system-v/2.3/manifest.xml index 9bb92f93c..fdd05e54e 100644 --- a/disks/pc/unix/microport/system-v/2.3/manifest.xml +++ b/disks/pc/unix/microport/system-v/2.3/manifest.xml @@ -1,5 +1,5 @@ - + Microport's AT&T UNIX System V-AT 2.3 (5¨) diff --git a/disks/pc/unix/sco/xenix/8086/2.1.3/manifest.xml b/disks/pc/unix/sco/xenix/8086/2.1.3/manifest.xml index 50e82d69d..268a40137 100644 --- a/disks/pc/unix/sco/xenix/8086/2.1.3/manifest.xml +++ b/disks/pc/unix/sco/xenix/8086/2.1.3/manifest.xml @@ -1,5 +1,5 @@ - + SCO Xenix 8086 Operating System v2.1.3 diff --git a/disks/pc/windows/1.00/manifest.xml b/disks/pc/windows/1.00/manifest.xml index d25bd88da..645d46d4b 100644 --- a/disks/pc/windows/1.00/manifest.xml +++ b/disks/pc/windows/1.00/manifest.xml @@ -1,5 +1,5 @@ - + Microsoft Windows 1.00 diff --git a/disks/pc/windows/1.01/manifest.xml b/disks/pc/windows/1.01/manifest.xml index 889d73c4e..6861503d9 100644 --- a/disks/pc/windows/1.01/manifest.xml +++ b/disks/pc/windows/1.01/manifest.xml @@ -1,5 +1,5 @@ - + Microsoft Windows 1.01 diff --git a/disks/pc/windows/1.02/manifest.xml b/disks/pc/windows/1.02/manifest.xml index 90deb410e..1a3bfe18a 100644 --- a/disks/pc/windows/1.02/manifest.xml +++ b/disks/pc/windows/1.02/manifest.xml @@ -1,5 +1,5 @@ - + Microsoft Windows 1.02 diff --git a/disks/pc/windows/1.03/manifest.xml b/disks/pc/windows/1.03/manifest.xml index 3b3f326e0..1504cb854 100644 --- a/disks/pc/windows/1.03/manifest.xml +++ b/disks/pc/windows/1.03/manifest.xml @@ -1,5 +1,5 @@ - + Microsoft Windows 1.03 diff --git a/disks/pc/windows/1.03a/manifest.xml b/disks/pc/windows/1.03a/manifest.xml index e038f2b0b..5e9f9d749 100644 --- a/disks/pc/windows/1.03a/manifest.xml +++ b/disks/pc/windows/1.03a/manifest.xml @@ -1,5 +1,5 @@ - + Microsoft Windows 1.03a diff --git a/disks/pc/windows/1.03b/manifest.xml b/disks/pc/windows/1.03b/manifest.xml index 0c46705f8..5b6e11ab4 100644 --- a/disks/pc/windows/1.03b/manifest.xml +++ b/disks/pc/windows/1.03b/manifest.xml @@ -1,5 +1,5 @@ - + Microsoft Windows 1.03b diff --git a/disks/pc/windows/1.04/manifest.xml b/disks/pc/windows/1.04/manifest.xml index d14828764..c59ff3eac 100644 --- a/disks/pc/windows/1.04/manifest.xml +++ b/disks/pc/windows/1.04/manifest.xml @@ -1,5 +1,5 @@ - + Microsoft Windows 1.04 os2museum.com diff --git a/disks/pc/windows/2.03/manifest.xml b/disks/pc/windows/2.03/manifest.xml index 1bfecc7a4..ad4ddc367 100644 --- a/disks/pc/windows/2.03/manifest.xml +++ b/disks/pc/windows/2.03/manifest.xml @@ -1,5 +1,5 @@ - + Microsoft Windows 2.03 diff --git a/disks/pc/windows/2.0x/manifest.xml b/disks/pc/windows/2.0x/manifest.xml index 91a946c7d..f8e409ea3 100644 --- a/disks/pc/windows/2.0x/manifest.xml +++ b/disks/pc/windows/2.0x/manifest.xml @@ -1,5 +1,5 @@ - + Microsoft Windows/386 2.0x diff --git a/disks/pc/windows/2.10/manifest.xml b/disks/pc/windows/2.10/manifest.xml index d9b5c3bb4..cdb136446 100644 --- a/disks/pc/windows/2.10/manifest.xml +++ b/disks/pc/windows/2.10/manifest.xml @@ -1,5 +1,5 @@ - + Microsoft Windows/386 2.10 diff --git a/disks/pc/windows/2.11/manifest.xml b/disks/pc/windows/2.11/manifest.xml index 0f1dffa32..cb9258108 100644 --- a/disks/pc/windows/2.11/manifest.xml +++ b/disks/pc/windows/2.11/manifest.xml @@ -1,5 +1,5 @@ - + Microsoft Windows 2.11 diff --git a/disks/pc/windows/3.00/720K/manifest.xml b/disks/pc/windows/3.00/720K/manifest.xml index 4ba66e817..0b007394c 100644 --- a/disks/pc/windows/3.00/720K/manifest.xml +++ b/disks/pc/windows/3.00/720K/manifest.xml @@ -1,5 +1,5 @@ - + Microsoft Windows 3.00 diff --git a/disks/pc/windows/3.00/manifest.xml b/disks/pc/windows/3.00/manifest.xml index 14b38e1af..a692aef8b 100644 --- a/disks/pc/windows/3.00/manifest.xml +++ b/disks/pc/windows/3.00/manifest.xml @@ -1,5 +1,5 @@ - + Microsoft Windows 3.00 diff --git a/disks/pc/windows/3.10/manifest.xml b/disks/pc/windows/3.10/manifest.xml index 5a0643026..971758001 100644 --- a/disks/pc/windows/3.10/manifest.xml +++ b/disks/pc/windows/3.10/manifest.xml @@ -1,5 +1,5 @@ - + Microsoft Windows 3.10 diff --git a/disks/pc/windows/3.11/manifest.xml b/disks/pc/windows/3.11/manifest.xml index 689b7efa6..10cb63439 100644 --- a/disks/pc/windows/3.11/manifest.xml +++ b/disks/pc/windows/3.11/manifest.xml @@ -1,5 +1,5 @@ - + Windows for Workgroups 3.11 diff --git a/disks/pc/windows/win10x.xml b/disks/pc/windows/win10x.xml index 43db46da5..370a2dfe9 100644 --- a/disks/pc/windows/win10x.xml +++ b/disks/pc/windows/win10x.xml @@ -2,7 +2,6 @@ - None Windows 1.01 (SETUP) Windows 1.01 (BUILD) diff --git a/disks/pc/windows/win95/4.00.499/manifest.xml b/disks/pc/windows/win95/4.00.499/manifest.xml index 8c99288c9..aa472bd90 100644 --- a/disks/pc/windows/win95/4.00.499/manifest.xml +++ b/disks/pc/windows/win95/4.00.499/manifest.xml @@ -1,5 +1,5 @@ - + Windows 95 (Build 499) diff --git a/disks/pc/windows/win95/4.00.950/manifest.xml b/disks/pc/windows/win95/4.00.950/manifest.xml index d7db2fcd1..3db9a0826 100644 --- a/disks/pc/windows/win95/4.00.950/manifest.xml +++ b/disks/pc/windows/win95/4.00.950/manifest.xml @@ -1,5 +1,5 @@ - + Windows 95 (RTM) 4.00.950 diff --git a/disks/pc/windows/wincomm/manifest.xml b/disks/pc/windows/wincomm/manifest.xml index b645e4a7e..e9cbd0206 100644 --- a/disks/pc/windows/wincomm/manifest.xml +++ b/disks/pc/windows/wincomm/manifest.xml @@ -1,5 +1,5 @@ - + Windows COMM Driver (Source) diff --git a/docs/pcjs/examples/components.css b/docs/pcjs/examples/components.css index b0e03456c..03664918e 100644 --- a/docs/pcjs/examples/components.css +++ b/docs/pcjs/examples/components.css @@ -34,7 +34,7 @@ float: left; font-family: "Lucida Console", monospace; } -.pcjs-control textarea { +.pcjs-controls textarea { font-family: Monaco, monospace; font-size: x-small; } @@ -106,13 +106,13 @@ line-height: 19px; background-color: #000000; } -.pcjs-video-object { +.pcjs-screen { clear: both; height: auto; position: relative; line-height: 0; } -.pcjs-video-object textarea { +.pcjs-screen textarea { position: absolute; left: 0; top: 0; diff --git a/docs/pcjs/examples/components.xsl b/docs/pcjs/examples/components.xsl index ab4a01dc4..4ed28f608 100644 --- a/docs/pcjs/examples/components.xsl +++ b/docs/pcjs/examples/components.xsl @@ -1,5 +1,5 @@ - + @@ -10,8 +10,9 @@ pc + pcjs pcjs - 1.21.6 + 1.21.7 www.pcjs.org @@ -57,7 +58,13 @@ float: -
+ + + js + + + +
@@ -155,6 +162,7 @@ width:; + width:;max-width:; width:auto;max-width:; @@ -203,18 +211,21 @@ -
+
+ + --object -screen + -
+
-
+
@@ -225,11 +236,11 @@
-
[XML]
+
[XML]
- -